@charset "UTF-8";

:root {
  --f-spinner-width: 36px;
  --f-spinner-height: 36px;
  --f-spinner-color-1: rgba(0, 0, 0, .1);
  --f-spinner-color-2: rgba(17, 24, 28, .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 {
  to {
    transform: rotate(360deg)
  }
}

@keyframes f-spinner-dash {
  0% {
    stroke-dasharray: 1, 150;
    stroke-dashoffset: 0
  }

  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -35
  }

  to {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -124
  }
}

.f-throwOutUp {
  animation: var(--f-throw-out-duration, .175s) ease-out both f-throwOutUp
}

.f-throwOutDown {
  animation: var(--f-throw-out-duration, .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, .2s) ease .1s both f-zoomInUp
}

.f-zoomOutDown {
  animation: var(--f-transition-duration, .2s) ease both f-zoomOutDown
}

@keyframes f-zoomInUp {
  0% {
    transform: scale(.975) translate3d(0, 16px, 0);
    opacity: 0
  }

  to {
    transform: scale(1) translateZ(0);
    opacity: 1
  }
}

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

.f-fadeIn {
  animation: var(--f-transition-duration, .2s) var(--f-transition-easing, ease) var(--f-transition-delay, 0s) both f-fadeIn;
  z-index: 2
}

.f-fadeOut {
  animation: var(--f-transition-duration, .2s) var(--f-transition-easing, ease) var(--f-transition-delay, 0s) both f-fadeOut;
  z-index: 1
}

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

  to {
    opacity: 1
  }
}

@keyframes f-fadeOut {
  to {
    opacity: 0
  }
}

.f-fadeFastIn {
  animation: var(--f-transition-duration, .2s) ease-out both f-fadeFastIn;
  z-index: 2
}

.f-fadeFastOut {
  animation: var(--f-transition-duration, .1s) ease-out both f-fadeFastOut;
  z-index: 2
}

@keyframes f-fadeFastIn {
  0% {
    opacity: .75
  }

  to {
    opacity: 1
  }
}

@keyframes f-fadeFastOut {
  to {
    opacity: 0
  }
}

.f-fadeSlowIn {
  animation: var(--f-transition-duration, .5s) ease both f-fadeSlowIn;
  z-index: 2
}

.f-fadeSlowOut {
  animation: var(--f-transition-duration, .5s) ease both f-fadeSlowOut;
  z-index: 1
}

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

  to {
    opacity: 1
  }
}

@keyframes f-fadeSlowOut {
  to {
    opacity: 0
  }
}

.f-crossfadeIn {
  animation: var(--f-transition-duration, .2s) ease-out both f-crossfadeIn;
  z-index: 2
}

.f-crossfadeOut {
  animation: calc(var(--f-transition-duration, .2s)*.5) linear .1s both f-crossfadeOut;
  z-index: 1
}

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

  to {
    opacity: 1
  }
}

@keyframes f-crossfadeOut {
  to {
    opacity: 0
  }
}

.f-slideIn.from-next {
  animation: var(--f-transition-duration, .85s) cubic-bezier(.16, 1, .3, 1) f-slideInNext
}

.f-slideIn.from-prev {
  animation: var(--f-transition-duration, .85s) cubic-bezier(.16, 1, .3, 1) f-slideInPrev
}

.f-slideOut.to-next {
  animation: var(--f-transition-duration, .85s) cubic-bezier(.16, 1, .3, 1) f-slideOutNext
}

.f-slideOut.to-prev {
  animation: var(--f-transition-duration, .85s) cubic-bezier(.16, 1, .3, 1) f-slideOutPrev
}

@keyframes f-slideInPrev {
  0% {
    transform: translate(100%)
  }

  to {
    transform: translateZ(0)
  }
}

@keyframes f-slideInNext {
  0% {
    transform: translate(-100%)
  }

  to {
    transform: translateZ(0)
  }
}

@keyframes f-slideOutNext {
  to {
    transform: translate(-100%)
  }
}

@keyframes f-slideOutPrev {
  to {
    transform: translate(100%)
  }
}

.f-classicIn.from-next {
  animation: var(--f-transition-duration, .85s) cubic-bezier(.16, 1, .3, 1) f-classicInNext;
  z-index: 2
}

.f-classicIn.from-prev {
  animation: var(--f-transition-duration, .85s) cubic-bezier(.16, 1, .3, 1) f-classicInPrev;
  z-index: 2
}

.f-classicOut.to-next {
  animation: var(--f-transition-duration, .85s) cubic-bezier(.16, 1, .3, 1) f-classicOutNext;
  z-index: 1
}

.f-classicOut.to-prev {
  animation: var(--f-transition-duration, .85s) cubic-bezier(.16, 1, .3, 1) f-classicOutPrev;
  z-index: 1
}

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

  to {
    transform: translateZ(0);
    opacity: 1
  }
}

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

  to {
    transform: translateZ(0);
    opacity: 1
  }
}

@keyframes f-classicOutNext {
  to {
    transform: translate(-75px);
    opacity: 0
  }
}

@keyframes f-classicOutPrev {
  to {
    transform: translate(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 .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: .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 .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: translate(-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, .98);
  --fancybox-slide-gap: 10px;
  --f-spinner-width: 50px;
  --f-spinner-height: 50px;
  --f-spinner-color-1: rgba(255, 255, 255, .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: #0000
}

.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: translateZ(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,
.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: #0000;
  min-height: 1px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  transition: none;
  transform: translateZ(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;
  -webkit-user-select: none;
  user-select: none;
  filter: blur(0px)
}

.fancybox__caption {
  align-self: center;
  max-width: 100%;
  flex-shrink: 0;
  margin: 0;
  padding: 14px 0 4px;
  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: .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 .25s ease
}

.is-compact .fancybox__footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 20;
  background: #18181b80
}

.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, .6);
  --f-button-active-bg: rgba(0, 0, 0, .6);
  --f-button-hover-bg: rgba(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, .3);
  --f-button-active-bg: rgba(24, 24, 27, .5);
  --f-button-shadow: none;
  --f-button-transition: all .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, .5));
  --f-button-svg-disabled-opacity: .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: .15s ease-out both f-fadeOut
}

.is-idle.is-compact .fancybox__footer {
  pointer-events: none;
  animation: .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) * -.5)) 0 0 var(--f-spinner-left, calc(var(--f-spinner-height) * -.5));
  z-index: 30;
  cursor: pointer
}

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

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

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

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

.fancybox__container.is-animated[aria-hidden=false]>*:not(.fancybox__backdrop, .fancybox__carousel),
.fancybox__container.is-animated[aria-hidden=false] .fancybox__carousel>*:not(.fancybox__viewport),
.fancybox__container.is-animated[aria-hidden=false] .fancybox__slide>*:not(.fancybox__content) {
  animation: var(--f-interface-enter-duration, .25s) ease .1s backwards f-fadeIn
}

.fancybox__container.is-animated[aria-hidden=false] .fancybox__backdrop {
  animation: var(--f-backdrop-enter-duration, .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, .15s) ease forwards f-fadeOut
}

.fancybox__container.is-animated[aria-hidden=true] .fancybox__backdrop {
  animation: var(--f-backdrop-exit-duration, .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: #18181be6;
  color: #fff
}

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

.fancybox__html5video,
.fancybox__iframe {
  border: 0;
  display: block;
  height: 100%;
  width: 100%;
  background: #0000
}

.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: .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);
  -webkit-user-select: none;
  user-select: none;
  perspective: 1000px;
  transform: translateZ(0)
}

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

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

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

.f-thumbs__viewport {
  width: 100%;
  height: auto;
  overflow: hidden;
  transform: translateZ(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))*-.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 .33s ease
}

.is-modern.is-resting .f-thumbs__slide__button {
  transition: clip-path .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 {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: var(--f-thumb-width);
  height: 100%;
  margin: 0 -100%;
  padding: 0;
  border: 0;
  position: relative;
  border-radius: var(--f-thumb-border-radius);
  overflow: hidden;
  background: #0000;
  outline: none;
  cursor: pointer;
  pointer-events: auto;
  touch-action: manipulation;
  opacity: var(--f-thumb-opacity);
  transition: opacity .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)) * .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 .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
}

.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 .35s cubic-bezier(.23, 1, .32, 1)
}

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

.fancybox__thumbs.is-classic .f-spinner {
  background-image: linear-gradient(#ffffff1a, #ffffff0d)
}

.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(#ffffff1a, #ffffff0d)
}

.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, .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, .65);
  --f-button-hover-bg: rgba(70, 70, 73, .65);
  --f-button-active-bg: rgba(90, 90, 93, .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, .15));
  --f-button-svg-fill: none;
  --f-button-svg-disabled-opacity: .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, .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: .15s ease-out both f-fadeOut
}

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

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

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

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

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

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

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

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

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

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

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

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

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

@font-face {
  font-family: Rheem Sans;
  src: url(/wp-content/themes/RheemTraining/fonts/RheemSans-Light_Italic.woff2) format("woff2"), url(/wp-content/themes/RheemTraining/fonts/RheemSans-Light_Italic.woff) format("woff");
  font-weight: 300;
  font-style: italic;
  font-display: swap
}

@font-face {
  font-family: Rheem Sans;
  src: url(/wp-content/themes/RheemTraining/fonts/RheemSans-Roman.woff2) format("woff2"), url(/wp-content/themes/RheemTraining/fonts/RheemSans-Roman.woff) format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap
}

@font-face {
  font-family: Rheem Sans;
  src: url(/wp-content/themes/RheemTraining/fonts/RheemSans-Bold.woff2) format("woff2"), url(/wp-content/themes/RheemTraining/fonts/RheemSans-Bold.woff) format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap
}

@font-face {
  font-family: Rheem Sans;
  src: url(/wp-content/themes/RheemTraining/fonts/RheemSans-Roman_Italic.woff2) format("woff2"), url(/wp-content/themes/RheemTraining/fonts/RheemSans-Roman_Italic.woff) format("woff");
  font-weight: 400;
  font-style: italic;
  font-display: swap
}

@font-face {
  font-family: Rheem Sans;
  src: url(/wp-content/themes/RheemTraining/fonts/RheemSans-BoldItalic.woff2) format("woff2"), url(/wp-content/themes/RheemTraining/fonts/RheemSans-BoldItalic.woff) format("woff");
  font-weight: 700;
  font-style: italic;
  font-display: swap
}

@font-face {
  font-family: Rheem Sans;
  src: url(/wp-content/themes/RheemTraining/fonts/RheemSans-Light.woff2) format("woff2"), url(/wp-content/themes/RheemTraining/fonts/RheemSans-Light.woff) format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap
}

:root,
[data-bs-theme=light] {
  --rmc-primary-text: #101c28;
  --rmc-secondary-text: #394754;
  --rmc-tertiary-text: #596067;
  --rmc-whtie-text: #ffffff;
  --rmc-disabled-text: #63666a;
  --rmc-placeholder-text: #63666a;
  --rmc-brand-text: #e4002b;
  --rmc-brand-50-1-text: rgb(252.975, 235.875, 239.1);
  --rmc-brand-50-text: #ffdfe5;
  --rmc-brand-500-text: #e4002b;
  --rmc-error-text: #f04438;
  --rmc-warning-text: #ef6820;
  --rmc-success-text: #789d4a;
  --rmc-primary-border: #d6dadd;
  --rmc-secondary-border: #eaecf0;
  --rmc-tertiary-border: #f2f5f7;
  --rmc-disabled-border: #d6dadd;
  --rmc-brand-border: #e4002b;
  --rmc-error-border: #f04438;
  --rmc-focused-border: #1b365d;
  --rmc-primary-fg: #101c28;
  --rmc-secondary-fg: #394754;
  --rmc-secondary-hover-fg: #182430;
  --rmc-tertiary-fg: #596067;
  --rmc-tertiary-hover-fg: #394754;
  --rmc-quaternary-fg: #63666a;
  --rmc-quaternary-hover-fg: #596067;
  --rmc-senary-fg: #d6dadd;
  --rmc-senary-hover-fg: #c6c9cc;
  --rmc-white-fg: #ffffff;
  --rmc-disabled-fg: #d6dadd;
  --rmc-disabled-subtle-fg: #c6c9cc;
  --rmc-brand-primary-fg: #e4002b;
  --rmc-brand-primary-alt-fg: #e4002b;
  --rmc-brand-secondary-fg: #e4002b;
  --rmc-error-primary-fg: #f04438;
  --rmc-error-secondary-fg: #f04438;
  --rmc-warning-primary-fg: #ef6820;
  --rmc-warning-secondary-fg: #ef6820;
  --rmc-success-primary-fg: #789d4a;
  --rmc-success-secondary-fg: #789d4a
}

.text-color--primary {
  color: var(--rmc-primary-text)
}

.text-color--secondary {
  color: var(--rmc-secondary-text)
}

.text-color--tertiary {
  color: var(--rmc-tertiary-text)
}

.text-color--whtie {
  color: var(--rmc-whtie-text)
}

.text-color--disabled {
  color: var(--rmc-disabled-text)
}

.text-color--placeholder {
  color: var(--rmc-placeholder-text)
}

.text-color--brand {
  color: var(--rmc-brand-text)
}

.text-color--brand-50-1 {
  color: var(--rmc-brand-50-1-text)
}

.text-color--brand-50 {
  color: var(--rmc-brand-50-text)
}

.text-color--brand-500 {
  color: var(--rmc-brand-500-text)
}

.text-color--error {
  color: var(--rmc-error-text)
}

.text-color--warning {
  color: var(--rmc-warning-text)
}

.text-color--success {
  color: var(--rmc-success-text)
}

.border-color-primary {
  border-color: var(--rmc-primary-border)
}

.border-color-secondary {
  border-color: var(--rmc-secondary-border)
}

.border-color-tertiary {
  border-color: var(--rmc-tertiary-border)
}

.border-color-disabled {
  border-color: var(--rmc-disabled-border)
}

.border-color-brand {
  border-color: var(--rmc-brand-border)
}

.border-color-error {
  border-color: var(--rmc-error-border)
}

.border-color-focused {
  border-color: var(--rmc-focused-border)
}

.fg-color-primary {
  border-color: var(--rmc-primary-fg)
}

.fg-color-secondary {
  border-color: var(--rmc-secondary-fg)
}

.fg-color-secondary-hover {
  border-color: var(--rmc-secondary-hover-fg)
}

.fg-color-tertiary {
  border-color: var(--rmc-tertiary-fg)
}

.fg-color-tertiary-hover {
  border-color: var(--rmc-tertiary-hover-fg)
}

.fg-color-quaternary {
  border-color: var(--rmc-quaternary-fg)
}

.fg-color-quaternary-hover {
  border-color: var(--rmc-quaternary-hover-fg)
}

.fg-color-senary {
  border-color: var(--rmc-senary-fg)
}

.fg-color-senary-hover {
  border-color: var(--rmc-senary-hover-fg)
}

.fg-color-white {
  border-color: var(--rmc-white-fg)
}

.fg-color-disabled {
  border-color: var(--rmc-disabled-fg)
}

.fg-color-disabled-subtle {
  border-color: var(--rmc-disabled-subtle-fg)
}

.fg-color-brand-primary {
  border-color: var(--rmc-brand-primary-fg)
}

.fg-color-brand-primary-alt {
  border-color: var(--rmc-brand-primary-alt-fg)
}

.fg-color-brand-secondary {
  border-color: var(--rmc-brand-secondary-fg)
}

.fg-color-error-primary {
  border-color: var(--rmc-error-primary-fg)
}

.fg-color-error-secondary {
  border-color: var(--rmc-error-secondary-fg)
}

.fg-color-warning-primary {
  border-color: var(--rmc-warning-primary-fg)
}

.fg-color-warning-secondary {
  border-color: var(--rmc-warning-secondary-fg)
}

.fg-color-success-primary {
  border-color: var(--rmc-success-primary-fg)
}

.fg-color-success-secondary {
  border-color: var(--rmc-success-secondary-fg)
}

:root {
  --rmc-font-display-3xl: 5.5rem;
  --rmc-font-display-2xl: 4.5rem;
  --rmc-font-display-xl: 3.75rem;
  --rmc-font-display-lg: 3rem;
  --rmc-font-display-md: 2.25rem;
  --rmc-font-display-sm: 1.875rem;
  --rmc-font-display-xs: 1.5rem;
  --rmc-font-text-xl: 1.5rem;
  --rmc-font-text-lg: 1.125rem;
  --rmc-font-text-md: 1rem;
  --rmc-font-text-sm: .875rem;
  --rmc-font-text-xs: .75rem
}

:root {
  --rmc-spacing-none: 0;
  --rmc-spacing-xxs: .125rem;
  --rmc-spacing-xs: .25rem;
  --rmc-spacing-sm: .375rem;
  --rmc-spacing-md: .5rem;
  --rmc-spacing-lg: .75rem;
  --rmc-spacing-xl: 1rem;
  --rmc-spacing-2xl: 1.25rem;
  --rmc-spacing-3xl: 1.5rem;
  --rmc-spacing-4xl: 2rem;
  --rmc-spacing-5xl: 2.5rem;
  --rmc-spacing-6xl: 3rem;
  --rmc-spacing-7xl: 4rem;
  --rmc-spacing-8xl: 5rem;
  --rmc-spacing-9xl: 6rem;
  --rmc-spacing-10xl: 8rem;
  --rmc-spacing-11xl: 10rem
}

.rmc-m-none {
  margin: var(--rmc-spacing-none) !important
}

.rmc-mt-none {
  margin-top: var(--rmc-spacing-none) !important
}

.rmc-mr-none {
  margin-right: var(--rmc-spacing-none) !important
}

.rmc-mb-none {
  margin-bottom: var(--rmc-spacing-none) !important
}

.rmc-ml-none {
  margin-left: var(--rmc-spacing-none) !important
}

.rmc-my-none {
  margin-top: var(--rmc-spacing-none) !important;
  margin-bottom: var(--rmc-spacing-none) !important
}

.rmc-mx-none {
  margin-left: var(--rmc-spacing-none) !important;
  margin-right: var(--rmc-spacing-none) !important
}

.rmc-p-none {
  padding: var(--rmc-spacing-none) !important
}

.rmc-pt-none {
  padding-top: var(--rmc-spacing-none) !important
}

.rmc-pr-none {
  padding-right: var(--rmc-spacing-none) !important
}

.rmc-pb-none {
  padding-bottom: var(--rmc-spacing-none) !important
}

.rmc-pl-none {
  padding-left: var(--rmc-spacing-none) !important
}

.rmc-py-none {
  padding-top: var(--rmc-spacing-none) !important;
  padding-bottom: var(--rmc-spacing-none) !important
}

.rmc-px-none {
  padding-left: var(--rmc-spacing-none) !important;
  padding-right: var(--rmc-spacing-none) !important
}

.rmc-gap-none {
  gap: var(--rmc-spacing-none) !important
}

.rmc-m-xxs {
  margin: var(--rmc-spacing-xxs) !important
}

.rmc-mt-xxs {
  margin-top: var(--rmc-spacing-xxs) !important
}

.rmc-mr-xxs {
  margin-right: var(--rmc-spacing-xxs) !important
}

.rmc-mb-xxs {
  margin-bottom: var(--rmc-spacing-xxs) !important
}

.rmc-ml-xxs {
  margin-left: var(--rmc-spacing-xxs) !important
}

.rmc-my-xxs {
  margin-top: var(--rmc-spacing-xxs) !important;
  margin-bottom: var(--rmc-spacing-xxs) !important
}

.rmc-mx-xxs {
  margin-left: var(--rmc-spacing-xxs) !important;
  margin-right: var(--rmc-spacing-xxs) !important
}

.rmc-p-xxs {
  padding: var(--rmc-spacing-xxs) !important
}

.rmc-pt-xxs {
  padding-top: var(--rmc-spacing-xxs) !important
}

.rmc-pr-xxs {
  padding-right: var(--rmc-spacing-xxs) !important
}

.rmc-pb-xxs {
  padding-bottom: var(--rmc-spacing-xxs) !important
}

.rmc-pl-xxs {
  padding-left: var(--rmc-spacing-xxs) !important
}

.rmc-py-xxs {
  padding-top: var(--rmc-spacing-xxs) !important;
  padding-bottom: var(--rmc-spacing-xxs) !important
}

.rmc-px-xxs {
  padding-left: var(--rmc-spacing-xxs) !important;
  padding-right: var(--rmc-spacing-xxs) !important
}

.rmc-gap-xxs {
  gap: var(--rmc-spacing-xxs) !important
}

.rmc-m-xs {
  margin: var(--rmc-spacing-xs) !important
}

.rmc-mt-xs {
  margin-top: var(--rmc-spacing-xs) !important
}

.rmc-mr-xs {
  margin-right: var(--rmc-spacing-xs) !important
}

.rmc-mb-xs {
  margin-bottom: var(--rmc-spacing-xs) !important
}

.rmc-ml-xs {
  margin-left: var(--rmc-spacing-xs) !important
}

.rmc-my-xs {
  margin-top: var(--rmc-spacing-xs) !important;
  margin-bottom: var(--rmc-spacing-xs) !important
}

.rmc-mx-xs {
  margin-left: var(--rmc-spacing-xs) !important;
  margin-right: var(--rmc-spacing-xs) !important
}

.rmc-p-xs {
  padding: var(--rmc-spacing-xs) !important
}

.rmc-pt-xs {
  padding-top: var(--rmc-spacing-xs) !important
}

.rmc-pr-xs {
  padding-right: var(--rmc-spacing-xs) !important
}

.rmc-pb-xs {
  padding-bottom: var(--rmc-spacing-xs) !important
}

.rmc-pl-xs {
  padding-left: var(--rmc-spacing-xs) !important
}

.rmc-py-xs {
  padding-top: var(--rmc-spacing-xs) !important;
  padding-bottom: var(--rmc-spacing-xs) !important
}

.rmc-px-xs {
  padding-left: var(--rmc-spacing-xs) !important;
  padding-right: var(--rmc-spacing-xs) !important
}

.rmc-gap-xs {
  gap: var(--rmc-spacing-xs) !important
}

.rmc-m-sm {
  margin: var(--rmc-spacing-sm) !important
}

.rmc-mt-sm {
  margin-top: var(--rmc-spacing-sm) !important
}

.rmc-mr-sm {
  margin-right: var(--rmc-spacing-sm) !important
}

.rmc-mb-sm {
  margin-bottom: var(--rmc-spacing-sm) !important
}

.rmc-ml-sm {
  margin-left: var(--rmc-spacing-sm) !important
}

.rmc-my-sm {
  margin-top: var(--rmc-spacing-sm) !important;
  margin-bottom: var(--rmc-spacing-sm) !important
}

.rmc-mx-sm {
  margin-left: var(--rmc-spacing-sm) !important;
  margin-right: var(--rmc-spacing-sm) !important
}

.rmc-p-sm {
  padding: var(--rmc-spacing-sm) !important
}

.rmc-pt-sm {
  padding-top: var(--rmc-spacing-sm) !important
}

.rmc-pr-sm {
  padding-right: var(--rmc-spacing-sm) !important
}

.rmc-pb-sm {
  padding-bottom: var(--rmc-spacing-sm) !important
}

.rmc-pl-sm {
  padding-left: var(--rmc-spacing-sm) !important
}

.rmc-py-sm {
  padding-top: var(--rmc-spacing-sm) !important;
  padding-bottom: var(--rmc-spacing-sm) !important
}

.rmc-px-sm {
  padding-left: var(--rmc-spacing-sm) !important;
  padding-right: var(--rmc-spacing-sm) !important
}

.rmc-gap-sm {
  gap: var(--rmc-spacing-sm) !important
}

.rmc-m-md {
  margin: var(--rmc-spacing-md) !important
}

.rmc-mt-md {
  margin-top: var(--rmc-spacing-md) !important
}

.rmc-mr-md {
  margin-right: var(--rmc-spacing-md) !important
}

.rmc-mb-md {
  margin-bottom: var(--rmc-spacing-md) !important
}

.rmc-ml-md {
  margin-left: var(--rmc-spacing-md) !important
}

.rmc-my-md {
  margin-top: var(--rmc-spacing-md) !important;
  margin-bottom: var(--rmc-spacing-md) !important
}

.rmc-mx-md {
  margin-left: var(--rmc-spacing-md) !important;
  margin-right: var(--rmc-spacing-md) !important
}

.rmc-p-md {
  padding: var(--rmc-spacing-md) !important
}

.rmc-pt-md {
  padding-top: var(--rmc-spacing-md) !important
}

.rmc-pr-md {
  padding-right: var(--rmc-spacing-md) !important
}

.rmc-pb-md {
  padding-bottom: var(--rmc-spacing-md) !important
}

.rmc-pl-md {
  padding-left: var(--rmc-spacing-md) !important
}

.rmc-py-md {
  padding-top: var(--rmc-spacing-md) !important;
  padding-bottom: var(--rmc-spacing-md) !important
}

.rmc-px-md {
  padding-left: var(--rmc-spacing-md) !important;
  padding-right: var(--rmc-spacing-md) !important
}

.rmc-gap-md {
  gap: var(--rmc-spacing-md) !important
}

.rmc-m-lg {
  margin: var(--rmc-spacing-lg) !important
}

.rmc-mt-lg {
  margin-top: var(--rmc-spacing-lg) !important
}

.rmc-mr-lg {
  margin-right: var(--rmc-spacing-lg) !important
}

.rmc-mb-lg {
  margin-bottom: var(--rmc-spacing-lg) !important
}

.rmc-ml-lg {
  margin-left: var(--rmc-spacing-lg) !important
}

.rmc-my-lg {
  margin-top: var(--rmc-spacing-lg) !important;
  margin-bottom: var(--rmc-spacing-lg) !important
}

.rmc-mx-lg {
  margin-left: var(--rmc-spacing-lg) !important;
  margin-right: var(--rmc-spacing-lg) !important
}

.rmc-p-lg {
  padding: var(--rmc-spacing-lg) !important
}

.rmc-pt-lg {
  padding-top: var(--rmc-spacing-lg) !important
}

.rmc-pr-lg {
  padding-right: var(--rmc-spacing-lg) !important
}

.rmc-pb-lg {
  padding-bottom: var(--rmc-spacing-lg) !important
}

.rmc-pl-lg {
  padding-left: var(--rmc-spacing-lg) !important
}

.rmc-py-lg {
  padding-top: var(--rmc-spacing-lg) !important;
  padding-bottom: var(--rmc-spacing-lg) !important
}

.rmc-px-lg {
  padding-left: var(--rmc-spacing-lg) !important;
  padding-right: var(--rmc-spacing-lg) !important
}

.rmc-gap-lg {
  gap: var(--rmc-spacing-lg) !important
}

.rmc-m-xl {
  margin: var(--rmc-spacing-xl) !important
}

.rmc-mt-xl {
  margin-top: var(--rmc-spacing-xl) !important
}

.rmc-mr-xl {
  margin-right: var(--rmc-spacing-xl) !important
}

.rmc-mb-xl {
  margin-bottom: var(--rmc-spacing-xl) !important
}

.rmc-ml-xl {
  margin-left: var(--rmc-spacing-xl) !important
}

.rmc-my-xl {
  margin-top: var(--rmc-spacing-xl) !important;
  margin-bottom: var(--rmc-spacing-xl) !important
}

.rmc-mx-xl {
  margin-left: var(--rmc-spacing-xl) !important;
  margin-right: var(--rmc-spacing-xl) !important
}

.rmc-p-xl {
  padding: var(--rmc-spacing-xl) !important
}

.rmc-pt-xl {
  padding-top: var(--rmc-spacing-xl) !important
}

.rmc-pr-xl {
  padding-right: var(--rmc-spacing-xl) !important
}

.rmc-pb-xl {
  padding-bottom: var(--rmc-spacing-xl) !important
}

.rmc-pl-xl {
  padding-left: var(--rmc-spacing-xl) !important
}

.rmc-py-xl {
  padding-top: var(--rmc-spacing-xl) !important;
  padding-bottom: var(--rmc-spacing-xl) !important
}

.rmc-px-xl {
  padding-left: var(--rmc-spacing-xl) !important;
  padding-right: var(--rmc-spacing-xl) !important
}

.rmc-gap-xl {
  gap: var(--rmc-spacing-xl) !important
}

.rmc-m-2xl {
  margin: var(--rmc-spacing-2xl) !important
}

.rmc-mt-2xl {
  margin-top: var(--rmc-spacing-2xl) !important
}

.rmc-mr-2xl {
  margin-right: var(--rmc-spacing-2xl) !important
}

.rmc-mb-2xl {
  margin-bottom: var(--rmc-spacing-2xl) !important
}

.rmc-ml-2xl {
  margin-left: var(--rmc-spacing-2xl) !important
}

.rmc-my-2xl {
  margin-top: var(--rmc-spacing-2xl) !important;
  margin-bottom: var(--rmc-spacing-2xl) !important
}

.rmc-mx-2xl {
  margin-left: var(--rmc-spacing-2xl) !important;
  margin-right: var(--rmc-spacing-2xl) !important
}

.rmc-p-2xl {
  padding: var(--rmc-spacing-2xl) !important
}

.rmc-pt-2xl {
  padding-top: var(--rmc-spacing-2xl) !important
}

.rmc-pr-2xl {
  padding-right: var(--rmc-spacing-2xl) !important
}

.rmc-pb-2xl {
  padding-bottom: var(--rmc-spacing-2xl) !important
}

.rmc-pl-2xl {
  padding-left: var(--rmc-spacing-2xl) !important
}

.rmc-py-2xl {
  padding-top: var(--rmc-spacing-2xl) !important;
  padding-bottom: var(--rmc-spacing-2xl) !important
}

.rmc-px-2xl {
  padding-left: var(--rmc-spacing-2xl) !important;
  padding-right: var(--rmc-spacing-2xl) !important
}

.rmc-gap-2xl {
  gap: var(--rmc-spacing-2xl) !important
}

.rmc-m-3xl {
  margin: var(--rmc-spacing-3xl) !important
}

.rmc-mt-3xl {
  margin-top: var(--rmc-spacing-3xl) !important
}

.rmc-mr-3xl {
  margin-right: var(--rmc-spacing-3xl) !important
}

.rmc-mb-3xl {
  margin-bottom: var(--rmc-spacing-3xl) !important
}

.rmc-ml-3xl {
  margin-left: var(--rmc-spacing-3xl) !important
}

.rmc-my-3xl {
  margin-top: var(--rmc-spacing-3xl) !important;
  margin-bottom: var(--rmc-spacing-3xl) !important
}

.rmc-mx-3xl {
  margin-left: var(--rmc-spacing-3xl) !important;
  margin-right: var(--rmc-spacing-3xl) !important
}

.rmc-p-3xl {
  padding: var(--rmc-spacing-3xl) !important
}

.rmc-pt-3xl {
  padding-top: var(--rmc-spacing-3xl) !important
}

.rmc-pr-3xl {
  padding-right: var(--rmc-spacing-3xl) !important
}

.rmc-pb-3xl {
  padding-bottom: var(--rmc-spacing-3xl) !important
}

.rmc-pl-3xl {
  padding-left: var(--rmc-spacing-3xl) !important
}

.rmc-py-3xl {
  padding-top: var(--rmc-spacing-3xl) !important;
  padding-bottom: var(--rmc-spacing-3xl) !important
}

.rmc-px-3xl {
  padding-left: var(--rmc-spacing-3xl) !important;
  padding-right: var(--rmc-spacing-3xl) !important
}

.rmc-gap-3xl {
  gap: var(--rmc-spacing-3xl) !important
}

.rmc-m-4xl {
  margin: var(--rmc-spacing-4xl) !important
}

.rmc-mt-4xl {
  margin-top: var(--rmc-spacing-4xl) !important
}

.rmc-mr-4xl {
  margin-right: var(--rmc-spacing-4xl) !important
}

.rmc-mb-4xl {
  margin-bottom: var(--rmc-spacing-4xl) !important
}

.rmc-ml-4xl {
  margin-left: var(--rmc-spacing-4xl) !important
}

.rmc-my-4xl {
  margin-top: var(--rmc-spacing-4xl) !important;
  margin-bottom: var(--rmc-spacing-4xl) !important
}

.rmc-mx-4xl {
  margin-left: var(--rmc-spacing-4xl) !important;
  margin-right: var(--rmc-spacing-4xl) !important
}

.rmc-p-4xl {
  padding: var(--rmc-spacing-4xl) !important
}

.rmc-pt-4xl {
  padding-top: var(--rmc-spacing-4xl) !important
}

.rmc-pr-4xl {
  padding-right: var(--rmc-spacing-4xl) !important
}

.rmc-pb-4xl {
  padding-bottom: var(--rmc-spacing-4xl) !important
}

.rmc-pl-4xl {
  padding-left: var(--rmc-spacing-4xl) !important
}

.rmc-py-4xl {
  padding-top: var(--rmc-spacing-4xl) !important;
  padding-bottom: var(--rmc-spacing-4xl) !important
}

.rmc-px-4xl {
  padding-left: var(--rmc-spacing-4xl) !important;
  padding-right: var(--rmc-spacing-4xl) !important
}

.rmc-gap-4xl {
  gap: var(--rmc-spacing-4xl) !important
}

.rmc-m-5xl {
  margin: var(--rmc-spacing-5xl) !important
}

.rmc-mt-5xl {
  margin-top: var(--rmc-spacing-5xl) !important
}

.rmc-mr-5xl {
  margin-right: var(--rmc-spacing-5xl) !important
}

.rmc-mb-5xl {
  margin-bottom: var(--rmc-spacing-5xl) !important
}

.rmc-ml-5xl {
  margin-left: var(--rmc-spacing-5xl) !important
}

.rmc-my-5xl {
  margin-top: var(--rmc-spacing-5xl) !important;
  margin-bottom: var(--rmc-spacing-5xl) !important
}

.rmc-mx-5xl {
  margin-left: var(--rmc-spacing-5xl) !important;
  margin-right: var(--rmc-spacing-5xl) !important
}

.rmc-p-5xl {
  padding: var(--rmc-spacing-5xl) !important
}

.rmc-pt-5xl {
  padding-top: var(--rmc-spacing-5xl) !important
}

.rmc-pr-5xl {
  padding-right: var(--rmc-spacing-5xl) !important
}

.rmc-pb-5xl {
  padding-bottom: var(--rmc-spacing-5xl) !important
}

.rmc-pl-5xl {
  padding-left: var(--rmc-spacing-5xl) !important
}

.rmc-py-5xl {
  padding-top: var(--rmc-spacing-5xl) !important;
  padding-bottom: var(--rmc-spacing-5xl) !important
}

.rmc-px-5xl {
  padding-left: var(--rmc-spacing-5xl) !important;
  padding-right: var(--rmc-spacing-5xl) !important
}

.rmc-gap-5xl {
  gap: var(--rmc-spacing-5xl) !important
}

.rmc-m-6xl {
  margin: var(--rmc-spacing-6xl) !important
}

.rmc-mt-6xl {
  margin-top: var(--rmc-spacing-6xl) !important
}

.rmc-mr-6xl {
  margin-right: var(--rmc-spacing-6xl) !important
}

.rmc-mb-6xl {
  margin-bottom: var(--rmc-spacing-6xl) !important
}

.rmc-ml-6xl {
  margin-left: var(--rmc-spacing-6xl) !important
}

.rmc-my-6xl {
  margin-top: var(--rmc-spacing-6xl) !important;
  margin-bottom: var(--rmc-spacing-6xl) !important
}

.rmc-mx-6xl {
  margin-left: var(--rmc-spacing-6xl) !important;
  margin-right: var(--rmc-spacing-6xl) !important
}

.rmc-p-6xl {
  padding: var(--rmc-spacing-6xl) !important
}

.rmc-pt-6xl {
  padding-top: var(--rmc-spacing-6xl) !important
}

.rmc-pr-6xl {
  padding-right: var(--rmc-spacing-6xl) !important
}

.rmc-pb-6xl {
  padding-bottom: var(--rmc-spacing-6xl) !important
}

.rmc-pl-6xl {
  padding-left: var(--rmc-spacing-6xl) !important
}

.rmc-py-6xl {
  padding-top: var(--rmc-spacing-6xl) !important;
  padding-bottom: var(--rmc-spacing-6xl) !important
}

.rmc-px-6xl {
  padding-left: var(--rmc-spacing-6xl) !important;
  padding-right: var(--rmc-spacing-6xl) !important
}

.rmc-gap-6xl {
  gap: var(--rmc-spacing-6xl) !important
}

.rmc-m-7xl {
  margin: var(--rmc-spacing-7xl) !important
}

.rmc-mt-7xl {
  margin-top: var(--rmc-spacing-7xl) !important
}

.rmc-mr-7xl {
  margin-right: var(--rmc-spacing-7xl) !important
}

.rmc-mb-7xl {
  margin-bottom: var(--rmc-spacing-7xl) !important
}

.rmc-ml-7xl {
  margin-left: var(--rmc-spacing-7xl) !important
}

.rmc-my-7xl {
  margin-top: var(--rmc-spacing-7xl) !important;
  margin-bottom: var(--rmc-spacing-7xl) !important
}

.rmc-mx-7xl {
  margin-left: var(--rmc-spacing-7xl) !important;
  margin-right: var(--rmc-spacing-7xl) !important
}

.rmc-p-7xl {
  padding: var(--rmc-spacing-7xl) !important
}

.rmc-pt-7xl {
  padding-top: var(--rmc-spacing-7xl) !important
}

.rmc-pr-7xl {
  padding-right: var(--rmc-spacing-7xl) !important
}

.rmc-pb-7xl {
  padding-bottom: var(--rmc-spacing-7xl) !important
}

.rmc-pl-7xl {
  padding-left: var(--rmc-spacing-7xl) !important
}

.rmc-py-7xl {
  padding-top: var(--rmc-spacing-7xl) !important;
  padding-bottom: var(--rmc-spacing-7xl) !important
}

.rmc-px-7xl {
  padding-left: var(--rmc-spacing-7xl) !important;
  padding-right: var(--rmc-spacing-7xl) !important
}

.rmc-gap-7xl {
  gap: var(--rmc-spacing-7xl) !important
}

.rmc-m-8xl {
  margin: var(--rmc-spacing-8xl) !important
}

.rmc-mt-8xl {
  margin-top: var(--rmc-spacing-8xl) !important
}

.rmc-mr-8xl {
  margin-right: var(--rmc-spacing-8xl) !important
}

.rmc-mb-8xl {
  margin-bottom: var(--rmc-spacing-8xl) !important
}

.rmc-ml-8xl {
  margin-left: var(--rmc-spacing-8xl) !important
}

.rmc-my-8xl {
  margin-top: var(--rmc-spacing-8xl) !important;
  margin-bottom: var(--rmc-spacing-8xl) !important
}

.rmc-mx-8xl {
  margin-left: var(--rmc-spacing-8xl) !important;
  margin-right: var(--rmc-spacing-8xl) !important
}

.rmc-p-8xl {
  padding: var(--rmc-spacing-8xl) !important
}

.rmc-pt-8xl {
  padding-top: var(--rmc-spacing-8xl) !important
}

.rmc-pr-8xl {
  padding-right: var(--rmc-spacing-8xl) !important
}

.rmc-pb-8xl {
  padding-bottom: var(--rmc-spacing-8xl) !important
}

.rmc-pl-8xl {
  padding-left: var(--rmc-spacing-8xl) !important
}

.rmc-py-8xl {
  padding-top: var(--rmc-spacing-8xl) !important;
  padding-bottom: var(--rmc-spacing-8xl) !important
}

.rmc-px-8xl {
  padding-left: var(--rmc-spacing-8xl) !important;
  padding-right: var(--rmc-spacing-8xl) !important
}

.rmc-gap-8xl {
  gap: var(--rmc-spacing-8xl) !important
}

.rmc-m-9xl {
  margin: var(--rmc-spacing-9xl) !important
}

.rmc-mt-9xl {
  margin-top: var(--rmc-spacing-9xl) !important
}

.rmc-mr-9xl {
  margin-right: var(--rmc-spacing-9xl) !important
}

.rmc-mb-9xl {
  margin-bottom: var(--rmc-spacing-9xl) !important
}

.rmc-ml-9xl {
  margin-left: var(--rmc-spacing-9xl) !important
}

.rmc-my-9xl {
  margin-top: var(--rmc-spacing-9xl) !important;
  margin-bottom: var(--rmc-spacing-9xl) !important
}

.rmc-mx-9xl {
  margin-left: var(--rmc-spacing-9xl) !important;
  margin-right: var(--rmc-spacing-9xl) !important
}

.rmc-p-9xl {
  padding: var(--rmc-spacing-9xl) !important
}

.rmc-pt-9xl {
  padding-top: var(--rmc-spacing-9xl) !important
}

.rmc-pr-9xl {
  padding-right: var(--rmc-spacing-9xl) !important
}

.rmc-pb-9xl {
  padding-bottom: var(--rmc-spacing-9xl) !important
}

.rmc-pl-9xl {
  padding-left: var(--rmc-spacing-9xl) !important
}

.rmc-py-9xl {
  padding-top: var(--rmc-spacing-9xl) !important;
  padding-bottom: var(--rmc-spacing-9xl) !important
}

.rmc-px-9xl {
  padding-left: var(--rmc-spacing-9xl) !important;
  padding-right: var(--rmc-spacing-9xl) !important
}

.rmc-gap-9xl {
  gap: var(--rmc-spacing-9xl) !important
}

.rmc-m-10xl {
  margin: var(--rmc-spacing-10xl) !important
}

.rmc-mt-10xl {
  margin-top: var(--rmc-spacing-10xl) !important
}

.rmc-mr-10xl {
  margin-right: var(--rmc-spacing-10xl) !important
}

.rmc-mb-10xl {
  margin-bottom: var(--rmc-spacing-10xl) !important
}

.rmc-ml-10xl {
  margin-left: var(--rmc-spacing-10xl) !important
}

.rmc-my-10xl {
  margin-top: var(--rmc-spacing-10xl) !important;
  margin-bottom: var(--rmc-spacing-10xl) !important
}

.rmc-mx-10xl {
  margin-left: var(--rmc-spacing-10xl) !important;
  margin-right: var(--rmc-spacing-10xl) !important
}

.rmc-p-10xl {
  padding: var(--rmc-spacing-10xl) !important
}

.rmc-pt-10xl {
  padding-top: var(--rmc-spacing-10xl) !important
}

.rmc-pr-10xl {
  padding-right: var(--rmc-spacing-10xl) !important
}

.rmc-pb-10xl {
  padding-bottom: var(--rmc-spacing-10xl) !important
}

.rmc-pl-10xl {
  padding-left: var(--rmc-spacing-10xl) !important
}

.rmc-py-10xl {
  padding-top: var(--rmc-spacing-10xl) !important;
  padding-bottom: var(--rmc-spacing-10xl) !important
}

.rmc-px-10xl {
  padding-left: var(--rmc-spacing-10xl) !important;
  padding-right: var(--rmc-spacing-10xl) !important
}

.rmc-gap-10xl {
  gap: var(--rmc-spacing-10xl) !important
}

.rmc-m-11xl {
  margin: var(--rmc-spacing-11xl) !important
}

.rmc-mt-11xl {
  margin-top: var(--rmc-spacing-11xl) !important
}

.rmc-mr-11xl {
  margin-right: var(--rmc-spacing-11xl) !important
}

.rmc-mb-11xl {
  margin-bottom: var(--rmc-spacing-11xl) !important
}

.rmc-ml-11xl {
  margin-left: var(--rmc-spacing-11xl) !important
}

.rmc-my-11xl {
  margin-top: var(--rmc-spacing-11xl) !important;
  margin-bottom: var(--rmc-spacing-11xl) !important
}

.rmc-mx-11xl {
  margin-left: var(--rmc-spacing-11xl) !important;
  margin-right: var(--rmc-spacing-11xl) !important
}

.rmc-p-11xl {
  padding: var(--rmc-spacing-11xl) !important
}

.rmc-pt-11xl {
  padding-top: var(--rmc-spacing-11xl) !important
}

.rmc-pr-11xl {
  padding-right: var(--rmc-spacing-11xl) !important
}

.rmc-pb-11xl {
  padding-bottom: var(--rmc-spacing-11xl) !important
}

.rmc-pl-11xl {
  padding-left: var(--rmc-spacing-11xl) !important
}

.rmc-py-11xl {
  padding-top: var(--rmc-spacing-11xl) !important;
  padding-bottom: var(--rmc-spacing-11xl) !important
}

.rmc-px-11xl {
  padding-left: var(--rmc-spacing-11xl) !important;
  padding-right: var(--rmc-spacing-11xl) !important
}

.rmc-gap-11xl {
  gap: var(--rmc-spacing-11xl) !important
}

:root {
  --rmc--width-xxs: 20rem;
  --rmc--width-xs: 24rem;
  --rmc--width-sm: 30rem;
  --rmc--width-md: 35rem;
  --rmc--width-lg: 40rem;
  --rmc--width-xl: 48rem;
  --rmc--width-2xl: 64rem;
  --rmc--width-3xl: 80rem;
  --rmc--width-4xl: 90rem;
  --rmc--width-5xl: 100rem;
  --rmc--width-6xl: 120rem
}

.rmc-width-xxs {
  width: var(--rmc--width-xxs)
}

.rmc-width-xs {
  width: var(--rmc--width-xs)
}

.rmc-width-sm {
  width: var(--rmc--width-sm)
}

.rmc-width-md {
  width: var(--rmc--width-md)
}

.rmc-width-lg {
  width: var(--rmc--width-lg)
}

.rmc-width-xl {
  width: var(--rmc--width-xl)
}

.rmc-width-2xl {
  width: var(--rmc--width-2xl)
}

.rmc-width-3xl {
  width: var(--rmc--width-3xl)
}

.rmc-width-4xl {
  width: var(--rmc--width-4xl)
}

.rmc-width-5xl {
  width: var(--rmc--width-5xl)
}

.rmc-width-6xl {
  width: var(--rmc--width-6xl)
}

:root {
  --rmc-radius-none: 0;
  --rmc-radius-xxs: .125rem;
  --rmc-radius-xs: .25rem;
  --rmc-radius-sm: .375rem;
  --rmc-radius-md: .5rem;
  --rmc-radius-lg: .625rem;
  --rmc-radius-xl: .75rem;
  --rmc-radius-2xl: 1rem;
  --rmc-radius-3xl: 1.25rem;
  --rmc-radius-4xl: 1.5rem;
  --rmc-radius-50: 50%
}

body {
  color: var(--rmc-body-color);
  font-family: Helvetica Neue, Roboto, sans-serif
}

:root,
[data-bs-theme=light] {
  --rmc-blue: #0d6efd;
  --rmc-indigo: #6610f2;
  --rmc-purple: #6f42c1;
  --rmc-pink: #d63384;
  --rmc-red: #dc3545;
  --rmc-orange: #fd7e14;
  --rmc-yellow: #ffc107;
  --rmc-green: #198754;
  --rmc-teal: #20c997;
  --rmc-cyan: #0dcaf0;
  --rmc-black: #000;
  --rmc-white: #fff;
  --rmc-gray: #6c757d;
  --rmc-gray-dark: #343a40;
  --rmc-gray-100: #f8f9fa;
  --rmc-gray-200: #e9ecef;
  --rmc-gray-300: #dee2e6;
  --rmc-gray-400: #ced4da;
  --rmc-gray-500: #adb5bd;
  --rmc-gray-600: #6c757d;
  --rmc-gray-700: #495057;
  --rmc-gray-800: #343a40;
  --rmc-gray-900: #212529;
  --rmc-primary: #1b365d;
  --rmc-secondary: #6c757d;
  --rmc-success: #198754;
  --rmc-info: #0dcaf0;
  --rmc-warning: #ffc107;
  --rmc-danger: #dc3545;
  --rmc-light: #f8f9fa;
  --rmc-dark: #212529;
  --rmc-primary-rgb: 27, 54, 93;
  --rmc-secondary-rgb: 108, 117, 125;
  --rmc-success-rgb: 25, 135, 84;
  --rmc-info-rgb: 13, 202, 240;
  --rmc-warning-rgb: 255, 193, 7;
  --rmc-danger-rgb: 220, 53, 69;
  --rmc-light-rgb: 248, 249, 250;
  --rmc-dark-rgb: 33, 37, 41;
  --rmc-primary-text-emphasis: #101c28;
  --rmc-secondary-text-emphasis: #394754;
  --rmc-tertiary-text-emphasis: #596067;
  --rmc-whtie-text-emphasis: #ffffff;
  --rmc-disabled-text-emphasis: #63666a;
  --rmc-placeholder-text-emphasis: #63666a;
  --rmc-brand-text-emphasis: #e4002b;
  --rmc-brand-50-1-text-emphasis: rgb(252.975, 235.875, 239.1);
  --rmc-brand-50-text-emphasis: #ffdfe5;
  --rmc-brand-500-text-emphasis: #e4002b;
  --rmc-error-text-emphasis: #f04438;
  --rmc-warning-text-emphasis: #ef6820;
  --rmc-success-text-emphasis: #789d4a;
  --rmc-primary-bg-subtle: rgb(206.6, 226, 254.6);
  --rmc-secondary-bg-subtle: rgb(225.6, 227.4, 229);
  --rmc-success-bg-subtle: rgb(209, 231, 220.8);
  --rmc-info-bg-subtle: rgb(206.6, 244.4, 252);
  --rmc-warning-bg-subtle: rgb(255, 242.6, 205.4);
  --rmc-danger-bg-subtle: rgb(248, 214.6, 217.8);
  --rmc-light-bg-subtle: rgb(251.5, 252, 252.5);
  --rmc-dark-bg-subtle: #ced4da;
  --rmc-primary-border-subtle: rgb(158.2, 197, 254.2);
  --rmc-secondary-border-subtle: rgb(196.2, 199.8, 203);
  --rmc-success-border-subtle: rgb(163, 207, 186.6);
  --rmc-info-border-subtle: rgb(158.2, 233.8, 249);
  --rmc-warning-border-subtle: rgb(255, 230.2, 155.8);
  --rmc-danger-border-subtle: rgb(241, 174.2, 180.6);
  --rmc-light-border-subtle: #e9ecef;
  --rmc-dark-border-subtle: #adb5bd;
  --rmc-white-rgb: 255, 255, 255;
  --rmc-black-rgb: 0, 0, 0;
  --rmc-font-sans-serif: "Rheem Sans", Helvetica, Arial, sans-serif;
  --rmc-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --rmc-gradient: linear-gradient(180deg, rgba(255, 255, 255, .15), rgba(255, 255, 255, 0));
  --rmc-body-font-family: var(--rmc-font-sans-serif);
  --rmc-body-font-size: 1rem;
  --rmc-body-font-weight: 400;
  --rmc-body-line-height: 1.5;
  --rmc-body-color: #212529;
  --rmc-body-color-rgb: 33, 37, 41;
  --rmc-body-bg: #fff;
  --rmc-body-bg-rgb: 255, 255, 255;
  --rmc-emphasis-color: #000;
  --rmc-emphasis-color-rgb: 0, 0, 0;
  --rmc-secondary-color: rgba(33, 37, 41, .75);
  --rmc-secondary-color-rgb: 33, 37, 41;
  --rmc-secondary-bg: #e9ecef;
  --rmc-secondary-bg-rgb: 233, 236, 239;
  --rmc-tertiary-color: rgba(33, 37, 41, .5);
  --rmc-tertiary-color-rgb: 33, 37, 41;
  --rmc-tertiary-bg: #f8f9fa;
  --rmc-tertiary-bg-rgb: 248, 249, 250;
  --rmc-heading-color: inherit;
  --rmc-link-color: #0d6efd;
  --rmc-link-color-rgb: 13, 110, 253;
  --rmc-link-decoration: underline;
  --rmc-link-hover-color: rgb(10.4, 88, 202.4);
  --rmc-link-hover-color-rgb: 10, 88, 202;
  --rmc-code-color: #d63384;
  --rmc-highlight-color: #212529;
  --rmc-highlight-bg: rgb(255, 242.6, 205.4);
  --rmc-border-width: 1px;
  --rmc-border-style: solid;
  --rmc-border-color: #dee2e6;
  --rmc-border-color-translucent: rgba(0, 0, 0, .175);
  --rmc-border-radius: .375rem;
  --rmc-border-radius-sm: .25rem;
  --rmc-border-radius-lg: .5rem;
  --rmc-border-radius-xl: 1rem;
  --rmc-border-radius-xxl: 2rem;
  --rmc-border-radius-2xl: var(--rmc-border-radius-xxl);
  --rmc-border-radius-pill: 50rem;
  --rmc-box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15);
  --rmc-box-shadow-sm: 0 .125rem .25rem rgba(0, 0, 0, .075);
  --rmc-box-shadow-lg: 0 1rem 3rem rgba(0, 0, 0, .175);
  --rmc-box-shadow-inset: inset 0 1px 2px rgba(0, 0, 0, .075);
  --rmc-focus-ring-width: .25rem;
  --rmc-focus-ring-opacity: .25;
  --rmc-focus-ring-color: rgba(13, 110, 253, .25);
  --rmc-form-valid-color: #198754;
  --rmc-form-valid-border-color: #198754;
  --rmc-form-invalid-color: #dc3545;
  --rmc-form-invalid-border-color: #dc3545
}

[data-bs-theme=dark] {
  color-scheme: dark;
  --rmc-body-color: #dee2e6;
  --rmc-body-color-rgb: 222, 226, 230;
  --rmc-body-bg: #212529;
  --rmc-body-bg-rgb: 33, 37, 41;
  --rmc-emphasis-color: #fff;
  --rmc-emphasis-color-rgb: 255, 255, 255;
  --rmc-secondary-color: rgba(222, 226, 230, .75);
  --rmc-secondary-color-rgb: 222, 226, 230;
  --rmc-secondary-bg: #343a40;
  --rmc-secondary-bg-rgb: 52, 58, 64;
  --rmc-tertiary-color: rgba(222, 226, 230, .5);
  --rmc-tertiary-color-rgb: 222, 226, 230;
  --rmc-tertiary-bg: rgb(42.5, 47.5, 52.5);
  --rmc-tertiary-bg-rgb: 43, 48, 53;
  --rmc-primary-text-emphasis: rgb(109.8, 168, 253.8);
  --rmc-secondary-text-emphasis: rgb(166.8, 172.2, 177);
  --rmc-success-text-emphasis: rgb(117, 183, 152.4);
  --rmc-info-text-emphasis: rgb(109.8, 223.2, 246);
  --rmc-warning-text-emphasis: rgb(255, 217.8, 106.2);
  --rmc-danger-text-emphasis: rgb(234, 133.8, 143.4);
  --rmc-light-text-emphasis: #f8f9fa;
  --rmc-dark-text-emphasis: #dee2e6;
  --rmc-primary-bg-subtle: rgb(2.6, 22, 50.6);
  --rmc-secondary-bg-subtle: rgb(21.6, 23.4, 25);
  --rmc-success-bg-subtle: rgb(5, 27, 16.8);
  --rmc-info-bg-subtle: rgb(2.6, 40.4, 48);
  --rmc-warning-bg-subtle: rgb(51, 38.6, 1.4);
  --rmc-danger-bg-subtle: rgb(44, 10.6, 13.8);
  --rmc-light-bg-subtle: #343a40;
  --rmc-dark-bg-subtle: #1a1d20;
  --rmc-primary-border-subtle: rgb(7.8, 66, 151.8);
  --rmc-secondary-border-subtle: rgb(64.8, 70.2, 75);
  --rmc-success-border-subtle: rgb(15, 81, 50.4);
  --rmc-info-border-subtle: rgb(7.8, 121.2, 144);
  --rmc-warning-border-subtle: rgb(153, 115.8, 4.2);
  --rmc-danger-border-subtle: rgb(132, 31.8, 41.4);
  --rmc-light-border-subtle: #495057;
  --rmc-dark-border-subtle: #343a40;
  --rmc-heading-color: inherit;
  --rmc-link-color: rgb(109.8, 168, 253.8);
  --rmc-link-hover-color: rgb(138.84, 185.4, 254.04);
  --rmc-link-color-rgb: 110, 168, 254;
  --rmc-link-hover-color-rgb: 139, 185, 254;
  --rmc-code-color: rgb(230.4, 132.6, 181.2);
  --rmc-highlight-color: #dee2e6;
  --rmc-highlight-bg: rgb(102, 77.2, 2.8);
  --rmc-border-color: #495057;
  --rmc-border-color-translucent: rgba(255, 255, 255, .15);
  --rmc-form-valid-color: rgb(117, 183, 152.4);
  --rmc-form-valid-border-color: rgb(117, 183, 152.4);
  --rmc-form-invalid-color: rgb(234, 133.8, 143.4);
  --rmc-form-invalid-border-color: rgb(234, 133.8, 143.4)
}

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

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth
  }
}

body {
  margin: 0;
  font-family: var(--rmc-body-font-family);
  font-size: var(--rmc-body-font-size);
  font-weight: var(--rmc-body-font-weight);
  line-height: var(--rmc-body-line-height);
  color: var(--rmc-body-color);
  text-align: var(--rmc-body-text-align);
  background-color: var(--rmc-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(--rmc-border-width) solid;
  opacity: .25
}

h6,
.h6,
h5,
.h5,
h4,
.h4,
h3,
.h3,
h2,
.h2,
h1,
.h1 {
  margin-top: 0;
  margin-bottom: .5rem;
  font-weight: 500;
  line-height: 1.2;
  color: var(--rmc-heading-color)
}

h1,
.h1 {
  font-size: calc(1.375rem + 1.5vw)
}

@media (min-width: 1200px) {

  h1,
  .h1 {
    font-size: 2.5rem
  }
}

h2,
.h2 {
  font-size: calc(1.325rem + .9vw)
}

@media (min-width: 1200px) {

  h2,
  .h2 {
    font-size: 2rem
  }
}

h3,
.h3 {
  font-size: calc(1.3rem + .6vw)
}

@media (min-width: 1200px) {

  h3,
  .h3 {
    font-size: 1.75rem
  }
}

h4,
.h4 {
  font-size: calc(1.275rem + .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: .5rem;
  margin-left: 0
}

blockquote {
  margin: 0 0 1rem
}

b,
strong {
  font-weight: bolder
}

small,
.small {
  font-size: .875em
}

mark,
.mark {
  padding: .1875em;
  color: var(--rmc-highlight-color);
  background-color: var(--rmc-highlight-bg)
}

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

sub {
  bottom: -.25em
}

sup {
  top: -.5em
}

a {
  color: rgba(var(--rmc-link-color-rgb), var(--rmc-link-opacity, 1));
  text-decoration: underline
}

a:hover {
  --rmc-link-color-rgb: var(--rmc-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(--rmc-font-monospace);
  font-size: 1em
}

pre {
  display: block;
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  font-size: .875em
}

pre code {
  font-size: inherit;
  color: inherit;
  word-break: normal
}

code {
  font-size: .875em;
  color: var(--rmc-code-color);
  word-wrap: break-word
}

a>code {
  color: inherit
}

kbd {
  padding: .1875rem .375rem;
  font-size: .875em;
  color: var(--rmc-body-bg);
  background-color: var(--rmc-body-color);
  border-radius: .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: .5rem;
  padding-bottom: .5rem;
  color: var(--rmc-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: .5rem;
  font-size: calc(1.275rem + .3vw);
  line-height: inherit
}

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

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

.display-1 {
  font-size: calc(1.625rem + 4.5vw);
  font-weight: 300;
  line-height: 1.2
}

@media (min-width: 1200px) {
  .display-1 {
    font-size: 5rem
  }
}

.display-2 {
  font-size: calc(1.575rem + 3.9vw);
  font-weight: 300;
  line-height: 1.2
}

@media (min-width: 1200px) {
  .display-2 {
    font-size: 4.5rem
  }
}

.display-3 {
  font-size: calc(1.525rem + 3.3vw);
  font-weight: 300;
  line-height: 1.2
}

@media (min-width: 1200px) {
  .display-3 {
    font-size: 4rem
  }
}

.display-4 {
  font-size: calc(1.475rem + 2.7vw);
  font-weight: 300;
  line-height: 1.2
}

@media (min-width: 1200px) {
  .display-4 {
    font-size: 3.5rem
  }
}

.display-5 {
  font-size: calc(1.425rem + 2.1vw);
  font-weight: 300;
  line-height: 1.2
}

@media (min-width: 1200px) {
  .display-5 {
    font-size: 3rem
  }
}

.display-6 {
  font-size: calc(1.375rem + 1.5vw);
  font-weight: 300;
  line-height: 1.2
}

@media (min-width: 1200px) {
  .display-6 {
    font-size: 2.5rem
  }
}

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

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

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

.initialism {
  font-size: .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: .875em;
  color: #6c757d
}

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

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

.img-thumbnail {
  padding: .25rem;
  background-color: var(--rmc-body-bg);
  border: var(--rmc-border-width) solid var(--rmc-border-color);
  border-radius: var(--rmc-border-radius);
  max-width: 100%;
  height: auto
}

.figure {
  display: inline-block
}

.figure-img {
  margin-bottom: .5rem;
  line-height: 1
}

.figure-caption {
  font-size: .875em;
  color: var(--rmc-secondary-color)
}

.container,
.container-fluid,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm {
  --rmc-gutter-x: 1.5rem;
  --rmc-gutter-y: 0;
  width: 100%;
  padding-right: calc(var(--rmc-gutter-x) * .5);
  padding-left: calc(var(--rmc-gutter-x) * .5);
  margin-right: auto;
  margin-left: auto
}

@media (min-width: 576px) {

  .container-sm,
  .container {
    max-width: 540px
  }
}

@media (min-width: 768px) {

  .container-md,
  .container-sm,
  .container {
    max-width: 720px
  }
}

@media (min-width: 992px) {

  .container-lg,
  .container-md,
  .container-sm,
  .container {
    max-width: 960px
  }
}

@media (min-width: 1200px) {

  .container-xl,
  .container-lg,
  .container-md,
  .container-sm,
  .container {
    max-width: 1140px
  }
}

@media (min-width: 1400px) {

  .container-xxl,
  .container-xl,
  .container-lg,
  .container-md,
  .container-sm,
  .container {
    max-width: 1320px
  }
}

:root {
  --rmc-breakpoint-xs: 0;
  --rmc-breakpoint-sm: 576px;
  --rmc-breakpoint-md: 768px;
  --rmc-breakpoint-lg: 992px;
  --rmc-breakpoint-xl: 1200px;
  --rmc-breakpoint-xxl: 1400px
}

.row {
  --rmc-gutter-x: 1.5rem;
  --rmc-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--rmc-gutter-y));
  margin-right: calc(-.5 * var(--rmc-gutter-x));
  margin-left: calc(-.5 * var(--rmc-gutter-x))
}

.row>* {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--rmc-gutter-x) * .5);
  padding-left: calc(var(--rmc-gutter-x) * .5);
  margin-top: var(--rmc-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 {
  --rmc-gutter-x: 0
}

.g-0,
.gy-0 {
  --rmc-gutter-y: 0
}

.g-1,
.gx-1 {
  --rmc-gutter-x: .25rem
}

.g-1,
.gy-1 {
  --rmc-gutter-y: .25rem
}

.g-2,
.gx-2 {
  --rmc-gutter-x: .5rem
}

.g-2,
.gy-2 {
  --rmc-gutter-y: .5rem
}

.g-3,
.gx-3 {
  --rmc-gutter-x: 1rem
}

.g-3,
.gy-3 {
  --rmc-gutter-y: 1rem
}

.g-4,
.gx-4 {
  --rmc-gutter-x: 1.5rem
}

.g-4,
.gy-4 {
  --rmc-gutter-y: 1.5rem
}

.g-5,
.gx-5 {
  --rmc-gutter-x: 3rem
}

.g-5,
.gy-5 {
  --rmc-gutter-y: 3rem
}

@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 {
    --rmc-gutter-x: 0
  }

  .g-sm-0,
  .gy-sm-0 {
    --rmc-gutter-y: 0
  }

  .g-sm-1,
  .gx-sm-1 {
    --rmc-gutter-x: .25rem
  }

  .g-sm-1,
  .gy-sm-1 {
    --rmc-gutter-y: .25rem
  }

  .g-sm-2,
  .gx-sm-2 {
    --rmc-gutter-x: .5rem
  }

  .g-sm-2,
  .gy-sm-2 {
    --rmc-gutter-y: .5rem
  }

  .g-sm-3,
  .gx-sm-3 {
    --rmc-gutter-x: 1rem
  }

  .g-sm-3,
  .gy-sm-3 {
    --rmc-gutter-y: 1rem
  }

  .g-sm-4,
  .gx-sm-4 {
    --rmc-gutter-x: 1.5rem
  }

  .g-sm-4,
  .gy-sm-4 {
    --rmc-gutter-y: 1.5rem
  }

  .g-sm-5,
  .gx-sm-5 {
    --rmc-gutter-x: 3rem
  }

  .g-sm-5,
  .gy-sm-5 {
    --rmc-gutter-y: 3rem
  }
}

@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 {
    --rmc-gutter-x: 0
  }

  .g-md-0,
  .gy-md-0 {
    --rmc-gutter-y: 0
  }

  .g-md-1,
  .gx-md-1 {
    --rmc-gutter-x: .25rem
  }

  .g-md-1,
  .gy-md-1 {
    --rmc-gutter-y: .25rem
  }

  .g-md-2,
  .gx-md-2 {
    --rmc-gutter-x: .5rem
  }

  .g-md-2,
  .gy-md-2 {
    --rmc-gutter-y: .5rem
  }

  .g-md-3,
  .gx-md-3 {
    --rmc-gutter-x: 1rem
  }

  .g-md-3,
  .gy-md-3 {
    --rmc-gutter-y: 1rem
  }

  .g-md-4,
  .gx-md-4 {
    --rmc-gutter-x: 1.5rem
  }

  .g-md-4,
  .gy-md-4 {
    --rmc-gutter-y: 1.5rem
  }

  .g-md-5,
  .gx-md-5 {
    --rmc-gutter-x: 3rem
  }

  .g-md-5,
  .gy-md-5 {
    --rmc-gutter-y: 3rem
  }
}

@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 {
    --rmc-gutter-x: 0
  }

  .g-lg-0,
  .gy-lg-0 {
    --rmc-gutter-y: 0
  }

  .g-lg-1,
  .gx-lg-1 {
    --rmc-gutter-x: .25rem
  }

  .g-lg-1,
  .gy-lg-1 {
    --rmc-gutter-y: .25rem
  }

  .g-lg-2,
  .gx-lg-2 {
    --rmc-gutter-x: .5rem
  }

  .g-lg-2,
  .gy-lg-2 {
    --rmc-gutter-y: .5rem
  }

  .g-lg-3,
  .gx-lg-3 {
    --rmc-gutter-x: 1rem
  }

  .g-lg-3,
  .gy-lg-3 {
    --rmc-gutter-y: 1rem
  }

  .g-lg-4,
  .gx-lg-4 {
    --rmc-gutter-x: 1.5rem
  }

  .g-lg-4,
  .gy-lg-4 {
    --rmc-gutter-y: 1.5rem
  }

  .g-lg-5,
  .gx-lg-5 {
    --rmc-gutter-x: 3rem
  }

  .g-lg-5,
  .gy-lg-5 {
    --rmc-gutter-y: 3rem
  }
}

@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 {
    --rmc-gutter-x: 0
  }

  .g-xl-0,
  .gy-xl-0 {
    --rmc-gutter-y: 0
  }

  .g-xl-1,
  .gx-xl-1 {
    --rmc-gutter-x: .25rem
  }

  .g-xl-1,
  .gy-xl-1 {
    --rmc-gutter-y: .25rem
  }

  .g-xl-2,
  .gx-xl-2 {
    --rmc-gutter-x: .5rem
  }

  .g-xl-2,
  .gy-xl-2 {
    --rmc-gutter-y: .5rem
  }

  .g-xl-3,
  .gx-xl-3 {
    --rmc-gutter-x: 1rem
  }

  .g-xl-3,
  .gy-xl-3 {
    --rmc-gutter-y: 1rem
  }

  .g-xl-4,
  .gx-xl-4 {
    --rmc-gutter-x: 1.5rem
  }

  .g-xl-4,
  .gy-xl-4 {
    --rmc-gutter-y: 1.5rem
  }

  .g-xl-5,
  .gx-xl-5 {
    --rmc-gutter-x: 3rem
  }

  .g-xl-5,
  .gy-xl-5 {
    --rmc-gutter-y: 3rem
  }
}

@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 {
    --rmc-gutter-x: 0
  }

  .g-xxl-0,
  .gy-xxl-0 {
    --rmc-gutter-y: 0
  }

  .g-xxl-1,
  .gx-xxl-1 {
    --rmc-gutter-x: .25rem
  }

  .g-xxl-1,
  .gy-xxl-1 {
    --rmc-gutter-y: .25rem
  }

  .g-xxl-2,
  .gx-xxl-2 {
    --rmc-gutter-x: .5rem
  }

  .g-xxl-2,
  .gy-xxl-2 {
    --rmc-gutter-y: .5rem
  }

  .g-xxl-3,
  .gx-xxl-3 {
    --rmc-gutter-x: 1rem
  }

  .g-xxl-3,
  .gy-xxl-3 {
    --rmc-gutter-y: 1rem
  }

  .g-xxl-4,
  .gx-xxl-4 {
    --rmc-gutter-x: 1.5rem
  }

  .g-xxl-4,
  .gy-xxl-4 {
    --rmc-gutter-y: 1.5rem
  }

  .g-xxl-5,
  .gx-xxl-5 {
    --rmc-gutter-x: 3rem
  }

  .g-xxl-5,
  .gy-xxl-5 {
    --rmc-gutter-y: 3rem
  }
}

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

.text-bg-primary {
  color: #fff !important;
  background-color: RGBA(var(--rmc-primary-rgb), var(--rmc-bg-opacity, 1)) !important
}

.text-bg-secondary {
  color: #fff !important;
  background-color: RGBA(var(--rmc-secondary-rgb), var(--rmc-bg-opacity, 1)) !important
}

.text-bg-success {
  color: #fff !important;
  background-color: RGBA(var(--rmc-success-rgb), var(--rmc-bg-opacity, 1)) !important
}

.text-bg-info {
  color: #000 !important;
  background-color: RGBA(var(--rmc-info-rgb), var(--rmc-bg-opacity, 1)) !important
}

.text-bg-warning {
  color: #000 !important;
  background-color: RGBA(var(--rmc-warning-rgb), var(--rmc-bg-opacity, 1)) !important
}

.text-bg-danger {
  color: #fff !important;
  background-color: RGBA(var(--rmc-danger-rgb), var(--rmc-bg-opacity, 1)) !important
}

.text-bg-light {
  color: #000 !important;
  background-color: RGBA(var(--rmc-light-rgb), var(--rmc-bg-opacity, 1)) !important
}

.text-bg-dark {
  color: #fff !important;
  background-color: RGBA(var(--rmc-dark-rgb), var(--rmc-bg-opacity, 1)) !important
}

.link-primary {
  color: RGBA(var(--rmc-primary-rgb), var(--rmc-link-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--rmc-primary-rgb), var(--rmc-link-underline-opacity, 1)) !important
}

.link-primary:hover,
.link-primary:focus {
  color: RGBA(22, 43, 74, var(--rmc-link-opacity, 1)) !important;
  text-decoration-color: RGBA(22, 43, 74, var(--rmc-link-underline-opacity, 1)) !important
}

.link-secondary {
  color: RGBA(var(--rmc-secondary-rgb), var(--rmc-link-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--rmc-secondary-rgb), var(--rmc-link-underline-opacity, 1)) !important
}

.link-secondary:hover,
.link-secondary:focus {
  color: RGBA(86, 94, 100, var(--rmc-link-opacity, 1)) !important;
  text-decoration-color: RGBA(86, 94, 100, var(--rmc-link-underline-opacity, 1)) !important
}

.link-success {
  color: RGBA(var(--rmc-success-rgb), var(--rmc-link-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--rmc-success-rgb), var(--rmc-link-underline-opacity, 1)) !important
}

.link-success:hover,
.link-success:focus {
  color: RGBA(20, 108, 67, var(--rmc-link-opacity, 1)) !important;
  text-decoration-color: RGBA(20, 108, 67, var(--rmc-link-underline-opacity, 1)) !important
}

.link-info {
  color: RGBA(var(--rmc-info-rgb), var(--rmc-link-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--rmc-info-rgb), var(--rmc-link-underline-opacity, 1)) !important
}

.link-info:hover,
.link-info:focus {
  color: RGBA(61, 213, 243, var(--rmc-link-opacity, 1)) !important;
  text-decoration-color: RGBA(61, 213, 243, var(--rmc-link-underline-opacity, 1)) !important
}

.link-warning {
  color: RGBA(var(--rmc-warning-rgb), var(--rmc-link-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--rmc-warning-rgb), var(--rmc-link-underline-opacity, 1)) !important
}

.link-warning:hover,
.link-warning:focus {
  color: RGBA(255, 205, 57, var(--rmc-link-opacity, 1)) !important;
  text-decoration-color: RGBA(255, 205, 57, var(--rmc-link-underline-opacity, 1)) !important
}

.link-danger {
  color: RGBA(var(--rmc-danger-rgb), var(--rmc-link-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--rmc-danger-rgb), var(--rmc-link-underline-opacity, 1)) !important
}

.link-danger:hover,
.link-danger:focus {
  color: RGBA(176, 42, 55, var(--rmc-link-opacity, 1)) !important;
  text-decoration-color: RGBA(176, 42, 55, var(--rmc-link-underline-opacity, 1)) !important
}

.link-light {
  color: RGBA(var(--rmc-light-rgb), var(--rmc-link-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--rmc-light-rgb), var(--rmc-link-underline-opacity, 1)) !important
}

.link-light:hover,
.link-light:focus {
  color: RGBA(249, 250, 251, var(--rmc-link-opacity, 1)) !important;
  text-decoration-color: RGBA(249, 250, 251, var(--rmc-link-underline-opacity, 1)) !important
}

.link-dark {
  color: RGBA(var(--rmc-dark-rgb), var(--rmc-link-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--rmc-dark-rgb), var(--rmc-link-underline-opacity, 1)) !important
}

.link-dark:hover,
.link-dark:focus {
  color: RGBA(26, 30, 33, var(--rmc-link-opacity, 1)) !important;
  text-decoration-color: RGBA(26, 30, 33, var(--rmc-link-underline-opacity, 1)) !important
}

.link-body-emphasis {
  color: RGBA(var(--rmc-emphasis-color-rgb), var(--rmc-link-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--rmc-emphasis-color-rgb), var(--rmc-link-underline-opacity, 1)) !important
}

.link-body-emphasis:hover,
.link-body-emphasis:focus {
  color: RGBA(var(--rmc-emphasis-color-rgb), var(--rmc-link-opacity, .75)) !important;
  text-decoration-color: RGBA(var(--rmc-emphasis-color-rgb), var(--rmc-link-underline-opacity, .75)) !important
}

.focus-ring:focus {
  outline: 0;
  box-shadow: var(--rmc-focus-ring-x, 0) var(--rmc-focus-ring-y, 0) var(--rmc-focus-ring-blur, 0) var(--rmc-focus-ring-width) var(--rmc-focus-ring-color)
}

.icon-link {
  display: inline-flex;
  gap: .375rem;
  align-items: center;
  text-decoration-color: rgba(var(--rmc-link-color-rgb), var(--rmc-link-opacity, .5));
  text-underline-offset: .25em;
  backface-visibility: hidden
}

.icon-link>.bi {
  flex-shrink: 0;
  width: 1em;
  height: 1em;
  fill: currentcolor;
  transition: .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(--rmc-icon-link-transform, translate3d(.25em, 0, 0))
}

.ratio {
  position: relative;
  width: 100%
}

.ratio:before {
  display: block;
  padding-top: var(--rmc-aspect-ratio);
  content: ""
}

.ratio>* {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%
}

.ratio-1x1 {
  --rmc-aspect-ratio: 100%
}

.ratio-4x3 {
  --rmc-aspect-ratio: 75%
}

.ratio-16x9 {
  --rmc-aspect-ratio: 56.25%
}

.ratio-21x9 {
  --rmc-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(--rmc-border-width);
  min-height: 1em;
  background-color: currentcolor;
  opacity: .25
}

.rmc-input {
  --bs-secondary-color: #96999c;
  --bs-border-color: #caccce;
  padding: .455rem .75rem
}

.rmc-input::placeholder {
  font-size: .875rem
}

.rmc-form-control {
  --rmc-input-padding-y: 1rem;
  --rmc-input-padding-x: .75rem;
  --rmc-input-line-height: 1.5rem;
  --rmc-input-border-color: #d6dadd;
  --rmc-input-border-width: 1px;
  --rmc-input-border-style: solid;
  --rmc-input-placeholder-color: #394754;
  height: 3.5rem;
  min-height: 3.5rem;
  display: block;
  width: 100%;
  padding: var(--rmc-input-padding-y) var(--rmc-input-padding-x);
  font-size: 1rem;
  font-weight: 400;
  line-height: var(--rmc-input-line-height);
  color: var(--rmc-body-color);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: var(--rmc-body-bg);
  background-clip: padding-box;
  border: var(--rmc-input-border-width) var(--rmc-input-border-style) var(--rmc-input-border-color);
  border-radius: var(--rmc-border-radius);
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out
}

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

.rmc-form-control[type=file] {
  overflow: hidden
}

.rmc-form-control[type=file]:not(:disabled):not([readonly]) {
  cursor: pointer
}

.rmc-form-control:focus {
  color: var(--rmc-body-color);
  background-color: var(--rmc-body-bg);
  border-color: var(--rmc-input-border-color);
  outline: 0;
  box-shadow: 0 0 0 4px #eaedf0
}

.rmc-form-control::-webkit-date-and-time-value {
  min-width: 85px;
  height: 1.5em;
  margin: 0
}

.rmc-form-control::-webkit-datetime-edit {
  display: block;
  padding: 0
}

.rmc-form-control::placeholder {
  color: var(--rmc-input-placeholder-color);
  opacity: 1
}

.rmc-form-control:disabled {
  --rmc-input-disabled-bg: #f2f5f7;
  background-color: var(--rmc-input-disabled-bg);
  opacity: 1
}

.rmc-form-control::file-selector-button {
  padding: .375rem .75rem;
  margin: -.375rem -.75rem;
  margin-inline-end: .75rem;
  color: var(--rmc-body-color);
  background-color: var(--rmc-tertiary-bg);
  pointer-events: none;
  border-color: inherit;
  border-style: solid;
  border-width: 0;
  border-inline-end-width: var(--rmc-border-width);
  border-radius: 0;
  transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out
}

@media (prefers-reduced-motion: reduce) {
  .rmc-form-control::file-selector-button {
    transition: none
  }
}

.rmc-form-control:hover:not(:disabled):not([readonly])::file-selector-button {
  background-color: var(--rmc-secondary-bg)
}

textarea.rmc-form-control {
  --rmc-input-placeholder-color: #63666a;
  min-height: calc(1.5em + .75rem + calc(var(--rmc-border-width) * 2));
  height: auto
}

.rmc-form-floating {
  --rmc-label-color: #394754;
  position: relative
}

.rmc-form-floating>.rmc-form-control {
  height: 3.5rem;
  min-height: 3.5rem;
  line-height: var(--rmc-input-line-height)
}

.rmc-form-floating>label {
  color: var(--rmc-label-color);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  height: 100%;
  padding: 1rem .75rem;
  overflow: hidden;
  text-align: start;
  text-overflow: ellipsis;
  white-space: nowrap;
  pointer-events: none;
  border: var(--rmc-border-width) solid transparent;
  transform-origin: 0 0;
  transition: opacity .1s ease-in-out, transform .1s ease-in-out
}

@media (prefers-reduced-motion: reduce) {
  .rmc-form-floating>label {
    transition: none
  }
}

.rmc-form-floating>.rmc-form-control {
  padding: var(--rmc-input-padding-y) var(--rmc-input-padding-x)
}

.rmc-form-floating>.rmc-form-control::placeholder {
  color: transparent
}

.rmc-form-floating>.rmc-form-control:focus,
.rmc-form-floating>.rmc-form-control:not(:placeholder-shown) {
  padding-top: 1.625rem;
  padding-bottom: .625rem
}

.rmc-form-floating>.rmc-form-control:-webkit-autofill {
  padding-top: 1.625rem;
  padding-bottom: .625rem
}

.rmc-form-floating>.form-select {
  padding-top: 1.625rem;
  padding-bottom: .625rem
}

.rmc-form-floating>.rmc-form-control:focus~label,
.rmc-form-floating>.rmc-form-control:not(:placeholder-shown)~label,
.rmc-form-floating>.rmc-form-control-plaintext~label,
.rmc-form-floating>.form-select~label {
  --rmc-form-floating-label-transform: scale(.75) translateY(-.5rem) translateX(.15rem);
  color: rgba(var(--rmc-body-color-rgb), .65);
  transform: var(--rmc-form-floating-label-transform)
}

.rmc-form-floating>.rmc-form-control:focus~label:after,
.rmc-form-floating>.rmc-form-control:not(:placeholder-shown)~label:after,
.rmc-form-floating>.rmc-form-control-plaintext~label:after,
.rmc-form-floating>.form-select~label:after {
  position: absolute;
  top: 1rem;
  right: .375rem;
  bottom: 1rem;
  left: .375rem;
  z-index: -1;
  height: 1.5em;
  content: "";
  background-color: transparent;
  border-radius: var(--rmc-border-radius)
}

.rmc-form-floating>.rmc-form-control:-webkit-autofill~label {
  color: rgba(var(--rmc-body-color-rgb), .65);
  transform: scale(.85) translateY(-.5rem) translate(.15rem)
}

.rmc-form-floating>.form-control-plaintext~label {
  border-width: var(--rmc-border-width) 0
}

.rmc-form-floating>:disabled~label,
.rmc-form-floating>.rmc-form-control:disabled~label {
  color: #6c757d
}

.rmc-form-floating>:disabled~label:after,
.rmc-form-floating>.rmc-form-control:disabled~label:after {
  background-color: var(--rmc-secondary-bg)
}

.was-validated .rmc-form-control:valid,
.rmc-form-control.is-valid {
  border-color: var(--rmc-form-valid-border-color);
  padding-right: calc(1.5em + .75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(.375em + .1875rem) center;
  background-size: calc(.75em + .375rem) calc(.75em + .375rem)
}

.was-validated .rmc-form-control:valid:focus,
.rmc-form-control.is-valid:focus {
  border-color: var(--rmc-form-valid-border-color);
  box-shadow: 0 0 0 .25rem rgba(var(--rmc-success-rgb), .25)
}

.was-validated textarea.rmc-form-control:valid,
textarea.rmc-form-control.is-valid {
  padding-right: calc(1.5em + .75rem);
  background-position: top calc(.375em + .1875rem) right calc(.375em + .1875rem)
}

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

.was-validated .rmc-form-control:invalid:focus,
.rmc-form-control.is-invalid:focus {
  border-color: var(--rmc-form-invalid-border-color);
  box-shadow: 0 0 0 .25rem rgba(var(--rmc-danger-rgb), .25)
}

.was-validated textarea.rmc-form-control:invalid,
textarea.rmc-form-control.is-invalid {
  padding-right: calc(1.5em + .75rem);
  background-position: top calc(.375em + .1875rem) right calc(.375em + .1875rem)
}

.rmc-btn-variant-1 {
  --rmc-btn-padding-x: 1.5rem;
  --rmc-btn-padding-y: .455rem;
  --rmc-btn-font-family: Roboto, sans-serif;
  --rmc-border-radius: .5rem;
  font-size: .875rem;
  font-weight: 500;
  line-height: 1.5
}

.rmc-btn {
  --rmc-btn-padding-x: calc(.875rem - var(--rmc-border-width));
  --rmc-btn-padding-y: calc(.625rem - var(--rmc-border-width));
  --rmc-btn-font-family: ;
  --rmc-btn-font-size: .875rem;
  --rmc-btn-font-weight: bold;
  --rmc-btn-line-height: 1.5;
  --rmc-btn-color: var(--rmc-body-color);
  --rmc-btn-bg: transparent;
  --rmc-btn-border-width: var(--rmc-border-width);
  --rmc-btn-border-color: #d6dadd;
  --rmc-btn-border-radius: .5rem;
  --rmc-btn-hover-border-color: transparent;
  --rmc-btn-disabled-opacity: 1;
  --rmc-btn-focus-box-shadow: 0 0 0 .25rem rgba(var(--rmc-btn-focus-shadow-rgb), .5);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: var(--rmc-btn-padding-y) var(--rmc-btn-padding-x);
  font-family: var(--rmc-btn-font-family);
  font-size: var(--rmc-btn-font-size);
  font-weight: var(--rmc-btn-font-weight);
  line-height: var(--rmc-btn-line-height);
  color: var(--rmc-btn-color);
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
  border: var(--rmc-btn-border-width) solid var(--rmc-btn-border-color);
  will-change: transform, opacity;
  border-radius: var(--rmc-btn-border-radius);
  background-color: var(--rmc-btn-bg);
  transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out
}

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

.rmc-btn .rmc-button-icon {
  width: 20px
}

.rmc-btn:disabled,
.rmc-btn.disabled,
fieldset:disabled .rmc-btn {
  --rmc-btn-disabled-color: #c6c9cc;
  --rmc-btn-disabled-bg: #f2f5f7;
  --rmc-btn-disabled-border-color: #d6dadd;
  color: var(--rmc-btn-disabled-color);
  pointer-events: none;
  background-color: var(--rmc-btn-disabled-bg);
  border-color: var(--rmc-btn-disabled-border-color);
  opacity: var(--rmc-btn-disabled-opacity)
}

.rmc-btn-primary {
  --rmc-btn-box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, .05);
  box-shadow: var(--rmc-btn-box-shadow)
}

.rmc-btn-primary:hover {
  box-shadow: 0 20px 24px -4px #10182814, 0 8px 8px -4px #10182808
}

.rmc-btn-primary:focus {
  box-shadow: 0 1px 2px #1018280d, 0 0 0 4px #dd00293d
}

.rmc-btn-primary-green {
  --rmc-btn-bg: #358486;
  --rmc-btn-color: #ffffff
}

.rmc-btn-primary-green-dark {
  --rmc-btn-bg: #215253;
  --rmc-btn-color: #ffffff;
  --rmc-btn-border-color: #215253
}

.rmc-btn-lg {
  --rmc-btn-padding-x: calc(var(--rmc-spacing-2xl) - var(--rmc-btn-border-width));
  --rmc-btn-padding-y: calc(var(--rmc-spacing-xl) - var(--rmc-btn-border-width));
  --rmc-btn-font-size: 1rem;
  --rmc-btn-line-height: 1.5rem
}

.rmc-btn-primary {
  --rmc-btn-color: #fff;
  --rmc-btn-bg: #e4002b;
  --rmc-btn-border-color: #e4002b;
  --rmc-btn-hover-color: #fff;
  --rmc-btn-hover-bg: rgb(193.8, 0, 36.55);
  --rmc-btn-hover-border-color: rgb(182.4, 0, 34.4);
  --rmc-btn-focus-shadow-rgb: 232, 38, 75;
  --rmc-btn-active-color: #fff;
  --rmc-btn-active-bg: rgb(182.4, 0, 34.4);
  --rmc-btn-active-border-color: rgb(171, 0, 32.25);
  --rmc-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
  --rmc-btn-disabled-color: #fff;
  --rmc-btn-disabled-bg: #e4002b;
  --rmc-btn-disabled-border-color: #e4002b
}

.rmc-btn-secondary {
  --rmc-btn-color: #000;
  --rmc-btn-bg: #ffffff;
  --rmc-btn-border-color: #ffffff;
  --rmc-btn-hover-color: #000;
  --rmc-btn-hover-bg: white;
  --rmc-btn-hover-border-color: white;
  --rmc-btn-focus-shadow-rgb: 217, 217, 217;
  --rmc-btn-active-color: #000;
  --rmc-btn-active-bg: white;
  --rmc-btn-active-border-color: white;
  --rmc-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
  --rmc-btn-disabled-color: #000;
  --rmc-btn-disabled-bg: #ffffff;
  --rmc-btn-disabled-border-color: #ffffff
}

.rmc-btn-secondary {
  --rmc-btn-border-color: #d6dadd;
  --rmc-btn-box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, .05)
}

.rmc-btn-secondary:focus {
  box-shadow: 0 1px 2px #1018280d, 0 0 0 4px #98a2b324
}

.rmc-btn-secondary:hover {
  --rmc-btn-hover-bg: #f9fafb;
  --rmc-btn-hover-border-color: #d6dadd;
  --rmc-btn-box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, .05);
  color: var(--rmc-btn-hover-color);
  background-color: var(--rmc-btn-hover-bg);
  border-color: var(--rmc-btn-hover-border-color)
}

.rmc-btn-tertiary {
  --rmc-btn-border-color: transparent;
  --rmc-btn-color: #596067;
  --rmc-btn-box-shadow: none;
  color: var(--rmc-btn-color)
}

.rmc-btn-tertiary:focus {
  box-shadow: none
}

.rmc-btn-tertiary:hover {
  --rmc-btn-hover-bg: #f9fafb;
  --rmc-btn-hover-border-color: transparent;
  --rmc-btn-color: #182430;
  --rmc-btn-box-shadow: none;
  color: var(--rmc-btn-hover-color);
  background-color: var(--rmc-btn-hover-bg);
  border-color: var(--rmc-btn-hover-border-color)
}

.rmc-btn-tertiary:disabled,
.rmc-btn-tertiary.disabled,
fieldset:disabled .rmc-btn-tertiary {
  --rmc-btn-disabled-color: #c6c9cc;
  --rmc-btn-disabled-bg: transparent;
  --rmc-btn-disabled-border-color: transparent;
  color: var(--rmc-btn-disabled-color);
  pointer-events: none;
  background-color: var(--rmc-btn-disabled-bg);
  border-color: var(--rmc-btn-disabled-border-color);
  opacity: var(--rmc-btn-disabled-opacity)
}

.rmc-btn-link {
  --rmc-btn-border-color: transparent;
  --rmc-btn-color: #596067;
  --rmc-btn-font-weight: 400;
  --rmc-btn-box-shadow: none;
  color: var(--rmc-btn-color);
  padding: 0;
  line-height: 1.25
}

.rmc-btn-link:focus {
  box-shadow: none
}

.rmc-btn-link:hover {
  --rmc-btn-hover-bg: transparent;
  --rmc-btn-hover-border-color: transparent;
  --rmc-btn-color: #182430;
  --rmc-btn-box-shadow: none;
  color: var(--rmc-btn-hover-color);
  background-color: var(--rmc-btn-hover-bg);
  border-color: var(--rmc-btn-hover-border-color)
}

.rmc-btn-link:disabled,
.rmc-btn-link.disabled,
fieldset:disabled .rmc-btn-link {
  --rmc-btn-disabled-color: #c6c9cc;
  --rmc-btn-disabled-bg: transparent;
  --rmc-btn-disabled-border-color: transparent;
  color: var(--rmc-btn-disabled-color);
  pointer-events: none;
  background-color: var(--rmc-btn-disabled-bg);
  border-color: var(--rmc-btn-disabled-border-color);
  opacity: var(--rmc-btn-disabled-opacity)
}

.rmc-btn-link-brand {
  --rmc-btn-border-color: transparent;
  --rmc-btn-color: #e4002b;
  --rmc-btn-font-weight: 400;
  --rmc-btn-box-shadow: none;
  color: var(--rmc-btn-color);
  padding: 0;
  line-height: 1.25
}

.rmc-btn-link-brand:focus {
  box-shadow: none
}

.rmc-btn-link-brand:hover {
  --rmc-btn-hover-bg: transparent;
  --rmc-btn-hover-border-color: transparent;
  --rmc-btn-color: #182430;
  --rmc-btn-box-shadow: none;
  color: var(--rmc-btn-hover-color);
  background-color: var(--rmc-btn-hover-bg);
  border-color: var(--rmc-btn-hover-border-color)
}

.rmc-btn-link-brand:disabled,
.rmc-btn-link-brand.disabled,
fieldset:disabled .rmc-btn-link-brand {
  --rmc-btn-disabled-color: #c6c9cc;
  --rmc-btn-disabled-bg: transparent;
  --rmc-btn-disabled-border-color: transparent;
  color: var(--rmc-btn-disabled-color);
  pointer-events: none;
  background-color: var(--rmc-btn-disabled-bg);
  border-color: var(--rmc-btn-disabled-border-color);
  opacity: var(--rmc-btn-disabled-opacity)
}

.rmc-form-check {
  --rmc-form-check-input-width: 1.25rem;
  --rmc-form-check-padding-start: calc(var(--rmc-form-check-input-width) + 12px);
  display: flex;
  gap: var(--rmc-spacing-lg);
  min-height: 1.5rem;
  padding-left: var(--rmc-form-check-padding-start);
  margin-bottom: .125rem
}

.rmc-form-check .rmc-form-check-input {
  margin-left: calc(var(--rmc-form-check-padding-start) * -1)
}

.rmc-form-check-reverse {
  padding-right: var(--rmc-form-check-padding-start);
  padding-left: 0;
  text-align: right
}

.rmc-form-check-reverse .rmc-form-check-input {
  float: right;
  margin-right: calc(var(--rmc-form-check-padding-start) * -1);
  margin-left: 0
}

.rmc-form-check-input {
  --rmc-form-check-input-border-radius: .375rem;
  --rmc-form-check-bg: transparent;
  --rmc-border-color: #d6dadd;
  -rmc-border-width: 1px;
  --rmc-form-check-border: var(--rmc-border-width) solid var(--rmc-border-color);
  flex-shrink: 0;
  width: var(--rmc-form-check-input-width);
  height: var(--rmc-form-check-input-width);
  margin-top: 0;
  vertical-align: top;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: var(--rmc-form-check-bg);
  background-image: var(--rmc-form-check-bg-image);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: var(--rmc-border-width) solid var(--rmc-border-color);
  -webkit-print-color-adjust: exact;
  print-color-adjust: exact
}

.rmc-form-check-input[type=checkbox] {
  border-radius: var(--rmc-form-check-input-border-radius)
}

.rmc-form-check-input[type=radio] {
  border-radius: 50%
}

.rmc-form-check-input:active {
  filter: brightness(90%)
}

.rmc-form-check-input:focus {
  --rmc-form-check-input-box-shadow: 0px 0px 0px 4px #98a2b324;
  border-color: var(--rmc-border-color);
  outline: 0;
  box-shadow: var(--rmc-form-check-input-box-shadow)
}

.rmc-form-check-input:checked {
  --rmc-form-check-input-checked-bg-color: #1b365d;
  --rmc-form-check-input-checked-border-color: #1b365d;
  background-color: var(--rmc-form-check-input-checked-bg-color);
  border-color: var(--rmc-form-check-input-checked-border-color)
}

.rmc-form-check-input:checked[type=checkbox] {
  --rmc-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e")
}

.rmc-form-check-input:checked[type=checkbox]:disabled:checked {
  --rmc-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23c6c9cc' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e")
}

.rmc-form-check-input:checked[type=radio] {
  --rmc-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e")
}

.rmc-form-check-input:checked[type=radio]:disabled:checked {
  --rmc-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23c6c9cc'/%3e%3c/svg%3e")
}

.rmc-form-check-input[type=checkbox]:indeterminate {
  background-color: #0d6efd;
  border-color: #0d6efd;
  --rmc-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e")
}

.rmc-form-check-input:disabled {
  --rmc-form-check-bg-disabled: #f2f5f7;
  --rmc-form-check-border-color-disabled: #f2f5f7;
  --rmc-form-check-color-disabled: #c6c9cc;
  pointer-events: none;
  filter: none;
  opacity: 1;
  background-color: var(--rmc-form-check-bg-disabled);
  border-color: var(--rmc-form-check-border-color-disabled);
  color: var(--rmc-form-check-color-disabled)
}

.rmc-form-check-input[disabled]~.form-check-label,
.rmc-form-check-input:disabled~.form-check-label {
  cursor: default;
  opacity: 1
}

.rmc-form-check-label {
  --rmc-form-check-label-color: #394754;
  --rmc-form-check-label-font-size: .875rem;
  --rmc-form-check-label-font-weight: 700;
  font-weight: var(--rmc-form-check-label-font-weight);
  font-size: var(--rmc-form-check-label-font-size);
  color: var(--rmc-form-check-label-color)
}

.rmc-form-check-supporting-text {
  --rmc-form-check-supporting-text-font-weight: 300;
  font-weight: var(--rmc-form-check-supporting-text-font-weight)
}

.rmc-form-switch {
  --rmc-form-switch-width: 2rem;
  padding-left: calc(var(--rmc-form-switch-width) + .5rem)
}

.rmc-form-switch .rmc-form-check-input {
  --rmc-border-color: #f2f5f7;
  --rmc-form-check-bg: #f2f5f7;
  --rmc-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='21' height='20' viewBox='0 0 21 20' fill='none'%3e%3cg filter='url%28%23filter0_dd_1890_4%29'%3e%3cpath d='M2 10C2 5.58172 5.58172 2 10 2C14.4183 2 18 5.58172 18 10C18 14.4183 14.4183 18 10 18C5.58172 18 2 14.4183 2 10Z' fill='%23ffffff'/%3e%3c/g%3e%3cdefs%3e%3cfilter id='filter0_dd_1890_4' x='-1' y='0' width='22' height='22' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeColorMatrix in='SourceAlpha' type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0' result='hardAlpha'/%3e%3cfeOffset dy='1'/%3e%3cfeGaussianBlur stdDeviation='1'/%3e%3cfeComposite in2='hardAlpha' operator='out'/%3e%3cfeColorMatrix type='matrix' values='0 0 0 0 0.0627451 0 0 0 0 0.0941176 0 0 0 0 0.156863 0 0 0 0.06 0'/%3e%3cfeBlend mode='normal' in2='BackgroundImageFix' result='effect1_dropShadow_1890_4'/%3e%3cfeColorMatrix in='SourceAlpha' type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0' result='hardAlpha'/%3e%3cfeOffset dy='1'/%3e%3cfeGaussianBlur stdDeviation='1.5'/%3e%3cfeComposite in2='hardAlpha' operator='out'/%3e%3cfeColorMatrix type='matrix' values='0 0 0 0 0.0627451 0 0 0 0 0.0941176 0 0 0 0 0.156863 0 0 0 0.1 0'/%3e%3cfeBlend mode='normal' in2='effect1_dropShadow_1890_4' result='effect2_dropShadow_1890_4'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='effect2_dropShadow_1890_4' result='shape'/%3e%3c/filter%3e%3c/defs%3e%3c/svg%3e");
  width: var(--rmc-form-switch-width);
  margin-left: -2.5em;
  background-image: var(--rmc-form-switch-bg);
  background-position: left center;
  border-radius: 2em;
  transition: background-position .15s ease-in-out
}

@media (prefers-reduced-motion: reduce) {
  .rmc-form-switch .rmc-form-check-input {
    transition: none
  }
}

.rmc-form-switch .rmc-form-check-input:focus {
  --rmc-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='21' height='20' viewBox='0 0 21 20' fill='none'%3e%3cg filter='url%28%23filter0_dd_1890_4%29'%3e%3cpath d='M2 10C2 5.58172 5.58172 2 10 2C14.4183 2 18 5.58172 18 10C18 14.4183 14.4183 18 10 18C5.58172 18 2 14.4183 2 10Z' fill='%23ffffff'/%3e%3c/g%3e%3cdefs%3e%3cfilter id='filter0_dd_1890_4' x='-1' y='0' width='22' height='22' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeColorMatrix in='SourceAlpha' type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0' result='hardAlpha'/%3e%3cfeOffset dy='1'/%3e%3cfeGaussianBlur stdDeviation='1'/%3e%3cfeComposite in2='hardAlpha' operator='out'/%3e%3cfeColorMatrix type='matrix' values='0 0 0 0 0.0627451 0 0 0 0 0.0941176 0 0 0 0 0.156863 0 0 0 0.06 0'/%3e%3cfeBlend mode='normal' in2='BackgroundImageFix' result='effect1_dropShadow_1890_4'/%3e%3cfeColorMatrix in='SourceAlpha' type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0' result='hardAlpha'/%3e%3cfeOffset dy='1'/%3e%3cfeGaussianBlur stdDeviation='1.5'/%3e%3cfeComposite in2='hardAlpha' operator='out'/%3e%3cfeColorMatrix type='matrix' values='0 0 0 0 0.0627451 0 0 0 0 0.0941176 0 0 0 0 0.156863 0 0 0 0.1 0'/%3e%3cfeBlend mode='normal' in2='effect1_dropShadow_1890_4' result='effect2_dropShadow_1890_4'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='effect2_dropShadow_1890_4' result='shape'/%3e%3c/filter%3e%3c/defs%3e%3c/svg%3e");
  box-shadow: none
}

.rmc-form-switch .rmc-form-check-input:checked {
  background-position: right center;
  --rmc-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e")
}

.rmc-form-switch.rmc-form-check-reverse {
  padding-right: 2.5em;
  padding-left: 0
}

.rmc-form-switch.rmc-form-check-reverse .rmc-form-check-input {
  margin-right: -2.5em;
  margin-left: 0
}

.rmc-form-switch .rmc-form-check-label {
  --rmc-form-check-label-color: #515d6d;
  --rmc-form-check-label-font-weight: 400
}

.rmc-form-switch .rmc-form-check-supporting-text {
  --rmc-form-check-supporting-text-color: #575b61;
  --rmc-form-check-supporting-font-size: .875rem;
  color: #575b61;
  font-size: var(--rmc-form-check-supporting-font-size)
}

.rmc-form-check-inline {
  display: inline-block;
  margin-right: 1rem
}

.rmc-btn-check {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none
}

.rmc-btn-check[disabled]+.btn,
.rmc-btn-check:disabled+.btn {
  pointer-events: none;
  filter: none;
  opacity: .65
}

.rmc-form-select {
  --rmc-form-select-bg-img: url("data:image/svg+xml, %3csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M4.99993 5.27812C4.9109 5.27812 4.82972 5.26354 4.75638 5.23437C4.68305 5.20521 4.61201 5.15625 4.54326 5.0875L0.657009 1.20125C0.556592 1.10083 0.506453 0.977916 0.506592 0.832499C0.506731 0.686944 0.559717 0.561319 0.665551 0.455625C0.771245 0.349792 0.89555 0.296875 1.03847 0.296875C1.18124 0.296875 1.30548 0.349792 1.41118 0.455625L4.99993 4.05292L8.59722 0.455625C8.69763 0.355208 8.81916 0.305069 8.9618 0.305208C9.10444 0.305346 9.22861 0.358333 9.3343 0.464166C9.44013 0.56986 9.49305 0.694167 9.49305 0.837083C9.49305 0.979861 9.44013 1.1041 9.3343 1.20979L5.45659 5.0875C5.38784 5.15625 5.3168 5.20521 5.24347 5.23437C5.17013 5.26354 5.08895 5.27812 4.99993 5.27812Z' fill='currentColor'/%3e%3c/svg%3e");
  display: block;
  width: 100%;
  padding: calc(var(--rmc-spacing-xl) - 1px) var(--rmc-spacing-5xl) calc(var(--rmc-spacing-xl) - 1px) var(--rmc-spacing-lg);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: var(--rmc-body-bg);
  background-image: var(--rmc-form-select-bg-img), var(--rmc-form-select-bg-icon, none);
  background-repeat: no-repeat;
  background-position: right .75rem center;
  background-size: auto;
  border: var(--rmc-border-width) solid #d6dadd;
  border-radius: var(--rmc-border-radius);
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
  box-shadow: 0 1px 2px #1018280d;
  color: inherit
}

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

.rmc-form-select:focus {
  --rmc-form-select-box-shadow: 0px 0px 0px 4px rgba(152, 162, 179, .1411764706);
  border-color: var(--rmc-border-color);
  outline: 0;
  box-shadow: var(--rmc-form-select-box-shadow)
}

.rmc-form-select[multiple],
.rmc-form-select[size]:not([size="1"]) {
  padding-right: .75rem;
  background-image: none
}

.rmc-form-select:disabled {
  background-color: var(--rmc-secondary-bg)
}

.rmc-form-select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 var(--rmc-body-color)
}

.rmc-form-select-sm {
  padding-top: .25rem;
  padding-bottom: .25rem;
  padding-left: .5rem;
  font-size: .875rem;
  border-radius: var(--rmc-border-radius-sm)
}

.rmc-form-select-lg {
  padding-top: .5rem;
  padding-bottom: .5rem;
  padding-left: 1rem;
  font-size: 1.25rem;
  border-radius: var(--rmc-border-radius-lg)
}

[data-bs-theme=dark] .form-select {
  --rmc-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23dee2e6' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e")
}

.tabs {
  --rmc-tabs-active-color: $primary-red;
  display: flex;
  gap: 1.5rem;
  border-bottom: 1px solid #c6c7d5
}

.tabs__item {
  cursor: pointer
}

.tabs__item.active {
  color: var(--rmc-tabs-active-color);
  border-bottom: 4px solid;
  font-weight: 600
}

.rmc-nav {
  --rmc-nav-link-padding-x: .875rem;
  --rmc-nav-link-padding-y: .5rem;
  --rmc-nav-link-font-size: 1.125rem;
  --rmc-nav-link-font-weight: ;
  --rmc-nav-link-color: var(--rmc-link-color);
  --rmc-nav-link-hover-color: var(--rmc-link-hover-color);
  --rmc-nav-link-disabled-color: var(--rmc-secondary-color);
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  line-height: 1.5;
  flex-wrap: nowrap;
  overflow-y: hidden;
  overflow-x: auto;
  white-space: nowrap;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none
}

.rmc-nav-pills {
  --rmc-nav-pills-border-radius: var(--rmc-border-radius);
  --rmc-nav-pills-link-active-color: #fff;
  --rmc-nav-pills-link-active-bg: #e4002b;
  padding: .375rem 0;
  background-color: #f2f5f7;
  border-radius: .75rem
}

.rmc-nav-pills .rmc-nav-link {
  border-radius: var(--rmc-nav-pills-border-radius);
  box-sizing: content-box
}

.rmc-nav-pills .rmc-nav-link.active,
.rmc-nav-pills .show>.rmc-nav-link {
  color: var(--rmc-nav-pills-link-active-color);
  background-color: var(--rmc-nav-pills-link-active-bg)
}

.rmc-nav-pills .rmc-nav-item {
  flex: 1 1 auto;
  box-sizing: border-box;
  text-align: center
}

.rmc-nav-pills.flex-wrap .rmc-nav-item {
  flex: 0;
  box-sizing: border-box;
  text-align: center
}

.rmc-nav-link {
  --rmc-nav-link-font-weight: 700;
  --rmc-nav-link-color: #394754;
  --rmc-nav-link-hover-color: #394754;
  height: 3.5625rem;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: var(--rmc-nav-link-padding-y) var(--rmc-nav-link-padding-x);
  font-size: var(--rmc-nav-link-font-size);
  font-weight: var(--rmc-nav-link-font-weight);
  color: var(--rmc-nav-link-color);
  text-decoration: none;
  background: none;
  border: 0;
  transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out
}

@media (prefers-reduced-motion: reduce) {
  .rmc-nav-link {
    transition: none
  }
}

.rmc-nav-link:hover,
.rmc-nav-link:focus {
  color: var(--rmc-nav-link-hover-color)
}

.rmc-nav-link:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 .25rem #0d6efd40
}

.rmc-nav-link.disabled,
.rmc-nav-link:disabled {
  color: var(--rmc-nav-link-disabled-color);
  pointer-events: none;
  cursor: default
}

.rmc-nav-underline {
  --rmc-nav-underline-gap: 1rem;
  --rmc-nav-underline-border-width: .125rem;
  --rmc-nav-underline-link-active-color: var(--rmc-emphasis-color);
  --rmc-nav-link-padding-x: .875rem;
  --rmc-nav-link-padding-y: .625rem;
  gap: var(--rmc-nav-underline-gap)
}

.rmc-nav-underline .rmc-nav-link {
  --rmc-nav-link-color: #97999b;
  border-bottom: var(--rmc-nav-underline-border-width) solid transparent;
  height: 2.75rem;
  display: inline-flex;
  justify-content: center;
  align-items: center
}

.rmc-nav-underline .rmc-nav-link:hover,
.rmc-nav-underline .rmc-nav-link:focus {
  --rmc-nav-underline-link-active-color: #e4002b;
  border-bottom-color: currentcolor;
  color: var(--rmc-nav-underline-link-active-color)
}

.rmc-nav-underline .rmc-nav-link.active,
.rmc-nav-underline .show>.rmc-nav-link {
  --rmc-nav-underline-link-active-color: #e4002b;
  font-weight: 700;
  color: var(--rmc-nav-underline-link-active-color);
  border-bottom-color: currentcolor
}

@media (min-width: 768px) {
  .rmc-nav-underline {
    justify-content: center
  }

  @supports (justify-content: safe center) {
    .rmc-nav-underline {
      justify-content: safe center
    }
  }
}

.rmc-nav-solid {
  --rmc-nav-solid-border-width: .063rem;
  --rmc-nav-solid-border-color: transparent;
  --rmc-nav-solid-gap: var(--rmc-spacing-md);
  --rmc-nav-link-color-bg: transparent;
  --rmc-nav-link-active-color-bg: #1b365d;
  --rmc-nav-solid-link-active-color: #f5fbff;
  --rmc-nav-link-padding-x: var(--rmc-spacing-3xl);
  --rmc-nav-link-padding-y: var(--rmc-spacing-lg);
  gap: var(--rmc-nav-solid-gap)
}

.rmc-nav-solid--badge {
  background-color: #ddd;
  display: inline-flex;
  border-radius: 1.625rem
}

.rmc-nav-solid .rmc-nav-link {
  --rmc-nav-link-color: #000000;
  height: 3.25rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  background-color: var(--rmc-nav-link-color-bg);
  color: var(--rmc-nav-link-color);
  border-radius: 1.625rem;
  font-size: 1.125rem;
  border: var(--rmc-nav-solid-border-width) solid var(--rmc-nav-solid-border-color)
}

.rmc-nav-solid .rmc-nav-link:hover,
.rmc-nav-solid .rmc-nav-link:focus {
  --rmc-nav-link-color: var(--rmc-nav-solid-link-active-color);
  --rmc-nav-solid-border-color: #eaedf0;
  --rmc-nav-link-color-bg: var(--rmc-nav-link-active-color-bg)
}

.rmc-nav-solid--filled .rmc-nav-link {
  --rmc-nav-link-color-bg: #eaedf0
}

.rmc-nav-solid .rmc-nav-link.active,
.rmc-nav-solid .show>.rmc-nav-link {
  --rmc-nav-link-color: var(--rmc-nav-solid-link-active-color);
  --rmc-nav-solid-border-color: #eaedf0;
  --rmc-nav-link-color-bg: var(--rmc-nav-link-active-color-bg)
}

.rmc-nav-light .rmc-nav-link {
  --rmc-nav-link-color: #ffffff
}

.rmc-nav-light .rmc-nav-link.active,
.rmc-nav-light .show>.rmc-nav-link {
  --rmc-nav-underline-link-active-color: #ffffff
}

.rmc-nav-light .rmc-nav-link:hover,
.rmc-nav-light .rmc-nav-link:focus {
  --rmc-nav-underline-link-active-color: #ffffff;
  border-bottom-color: currentcolor
}

.section-collapse {
  --rmc-section-collapse-header-border-top-color: #202834;
  --rmc-section-collapse-header-border-top-width: .25rem;
  --rmc-section-collapse-color: #000000;
  --rmc-section-collapse-font-size: .75rem;
  --rmc-section-collapse-line-height: 1.125rem;
  color: var(--rmc-section-collapse-color)
}

.section-collapse-button {
  font-size: var(--rmc-section-collapse-font-size);
  line-height: var(--rmc-section-collapse-line-height);
  font-weight: 600;
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding: var(--rmc-section-collapse-btn-padding-y) var(--rmc-section-collapse-btn-padding-x);
  color: var(--rmc-section-collapse-btn-color);
  text-align: left;
  background-color: var(--rmc-section-collapse-btn-bg);
  border: 0;
  border-radius: 0;
  overflow-anchor: none;
  transition: var(--rmc-section-collapse-transition)
}

@media (prefers-reduced-motion: reduce) {
  .section-collapse-button {
    transition: none
  }
}

.section-collapse-button:not(.collapsed) {
  color: var(--rmc-section-collapse-active-color);
  background-color: var(--rmc-section-collapse-active-bg);
  box-shadow: inset 0 calc(-1 * var(--rmc-section-collapse-border-width)) 0 var(--rmc-section-collapse-border-color)
}

.section-collapse-button:not(.collapsed):after {
  background-image: var(--rmc-section-collapse-btn-active-icon);
  transform: var(--rmc-section-collapse-btn-icon-transform)
}

.section-collapse-button:after {
  flex-shrink: 0;
  width: var(--rmc-section-collapse-btn-icon-width);
  height: var(--rmc-section-collapse-btn-icon-width);
  margin-left: auto;
  content: "";
  background-image: var(--rmc-section-collapse-btn-icon);
  background-repeat: no-repeat;
  background-size: var(--rmc-section-collapse-btn-icon-width);
  transition: var(--rmc-section-collapse-btn-icon-transition)
}

@media (prefers-reduced-motion: reduce) {
  .section-collapse-button:after {
    transition: none
  }
}

.section-collapse-header {
  border-top: var(--rmc-section-collapse-header-border-top-width) solid var(--rmc-section-collapse-header-border-top-color);
  padding-top: 1rem;
  padding-bottom: .5rem
}

.section-collapse-item {
  color: var(--rmc-section-collapse-color);
  border: var(--rmc-section-collapse-border-width) solid var(--rmc-section-collapse-border-color)
}

.section-collapse-body {
  padding: var(--rmc-section-collapse-body-padding-y) var(--rmc-section-collapse-body-padding-x);
  font-size: var(--rmc-section-collapse-font-size);
  line-height: var(--rmc-section-collapse-line-height)
}

.section-collapse-body .form-check-input {
  width: 1rem;
  height: 1rem;
  margin-right: .75rem
}

.rmc-alert-variant-1 {
  --rmc-alert-border: none;
  --rmc-alert-bg: #f2f2fc
}

.rmc-breadcrumbs {
  --rmc-breadcrumbs-text-color: #596067;
  --rmc-breadcrumbs-font-size: .875rem;
  --rmc-breadcrumbs-line-height: 1.25rem;
  display: flex;
  position: relative;
  flex-wrap: wrap;
  row-gap: .25rem
}

.rmc-breadcrumbs-item {
  color: var(--rmc-breadcrumbs-text-color);
  font-size: var(--rmc-breadcrumbs-font-size);
  line-height: var(--rmc-breadcrumbs-line-height);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .75rem
}

.rmc-breadcrumbs-item:not(:last-child):after {
  content: "";
  background-color: var(--rmc-breadcrumbs-text-color);
  mask: url('data:image/svg+xml,%3csvg width="7" height="12" viewBox="0 0 7 12" fill="none" xmlns="http://www.w3.org/2000/svg"%3e%3cpath d="M1 1L6 6L1 11" stroke="red" stroke-width="1.33333" stroke-linecap="round" stroke-linejoin="round"/%3e%3c/svg%3e') no-repeat 0 50%;
  -webkit-mask-size: initial;
  mask-size: initial;
  display: inline-block;
  width: 1rem;
  height: 1rem;
  position: relative;
  margin-right: calc(.5rem - 7px)
}

.rmc-dropdown .dropdown-menu {
  --rmc-dropdown-zindex: 1000;
  --rmc-dropdown-min-width: 10rem;
  --rmc-dropdown-padding-x: 0;
  --rmc-dropdown-padding-y: .25rem;
  --rmc-dropdown-spacer: .125rem;
  --rmc-dropdown-font-size: 1rem;
  --rmc-dropdown-color: var(--rmc-body-color);
  --rmc-dropdown-bg: var(--rmc-body-bg);
  --rmc-dropdown-border-color: #eaedf0;
  --rmc-dropdown-border-radius: var(--rmc-border-radius);
  --rmc-dropdown-border-width: var(--rmc-border-width);
  --rmc-dropdown-inner-border-radius: calc(var(--rmc-border-radius) - var(--rmc-border-width));
  --rmc-dropdown-divider-bg: var(--rmc-border-color-translucent);
  --rmc-dropdown-divider-margin-y: .5rem;
  --rmc-dropdown-box-shadow: 0px 12px 16px -4px #10182814;
  --rmc-dropdown-link-color: var(--rmc-body-color);
  --rmc-dropdown-link-hover-color: var(--rmc-body-color);
  --rmc-dropdown-link-hover-bg: var(--rmc-tertiary-bg);
  --rmc-dropdown-link-active-color: #fff;
  --rmc-dropdown-link-active-bg: #0d6efd;
  --rmc-dropdown-link-disabled-color: var(--rmc-tertiary-color);
  --rmc-dropdown-item-padding-x: .875rem;
  --rmc-dropdown-item-padding-y: .625rem;
  --rmc-dropdown-header-color: #6c757d;
  --rmc-dropdown-header-padding-x: 1rem;
  --rmc-dropdown-header-padding-y: .5rem;
  position: absolute;
  z-index: var(--rmc-dropdown-zindex);
  display: none;
  min-width: var(--rmc-dropdown-min-width);
  padding: var(--rmc-dropdown-padding-y) var(--rmc-dropdown-padding-x);
  margin: 0;
  font-size: var(--rmc-dropdown-font-size);
  color: var(--rmc-dropdown-color);
  text-align: left;
  list-style: none;
  background-color: var(--rmc-dropdown-bg);
  background-clip: padding-box;
  border: var(--rmc-dropdown-border-width) solid var(--rmc-dropdown-border-color);
  border-radius: var(--rmc-dropdown-border-radius);
  box-shadow: var(--rmc-dropdown-box-shadow)
}

.rmc-dropdown .dropdown-menu[data-bs-popper] {
  top: 100%;
  left: 0;
  margin-top: var(--rmc-dropdown-spacer)
}

.rmc-dropdown-item {
  display: block;
  width: 100%;
  padding: var(--rmc-dropdown-item-padding-y) var(--rmc-dropdown-item-padding-x);
  clear: both;
  font-weight: 400;
  color: var(--rmc-dropdown-link-color);
  text-align: inherit;
  text-decoration: none;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
  border-radius: var(--rmc-dropdown-item-border-radius, 0)
}

.rmc-dropdown-item:hover,
.rmc-dropdown-item:focus {
  color: var(--rmc-dropdown-link-hover-color);
  background-color: var(--rmc-dropdown-link-hover-bg)
}

.rmc-dropdown-item.active,
.rmc-dropdown-item:active {
  color: var(--rmc-dropdown-link-active-color);
  text-decoration: none;
  background-color: var(--rmc-dropdown-link-active-bg)
}

.rmc-dropdown-item.disabled,
.rmc-dropdown-item:disabled {
  color: var(--rmc-dropdown-link-disabled-color);
  pointer-events: none;
  background-color: transparent
}

.rmc-accordion {
  --rmc-accordion-color: var(--rmc-body-color);
  --rmc-accordion-bg: var(--rmc-body-bg);
  --rmc-accordion-transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out, border-radius .15s ease;
  --rmc-accordion-border-color: var(--rmc-border-color);
  --rmc-accordion-border-width: var(--rmc-border-width);
  --rmc-accordion-border-radius: 0;
  --rmc-accordion-inner-border-radius: calc(var(--rmc-border-radius) - (var(--rmc-border-width)));
  --rmc-accordion-btn-color: var(--rmc-body-color);
  --rmc-accordion-btn-bg: var(--rmc-accordion-bg);
  --rmc-accordion-btn-icon: url('data:image/svg+xml,%3csvg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"%3e%3cpath d="M3.75 12H20.25" stroke="%231B365D" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/%3e%3cpath d="M12 3.75V20.25" stroke="%231B365D" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/%3e%3c/svg%3e');
  --rmc-accordion-btn-active-icon: url('data:image/svg+xml,%3csvg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"%3e%3cpath d="M3.75 12H20.25" stroke="%231B365D" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/%3e%3c/svg%3e');
  --rmc-accordion-btn-icon-hover: url('data:image/svg+xml,%3csvg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"%3e%3cpath d="M3.75 12H20.25" stroke="%23e4002b" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/%3e%3cpath d="M12 3.75V20.25" stroke="%23e4002b" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/%3e%3c/svg%3e');
  --rmc-accordion-btn-active-icon-hover: url('data:image/svg+xml,%3csvg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"%3e%3cpath d="M3.75 12H20.25" stroke="%23e4002b" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/%3e%3c/svg%3e');
  --rmc-accordion-btn-icon-width: 1.25rem;
  --rmc-accordion-btn-icon-transform: rotate(-180deg);
  --rmc-accordion-btn-icon-transition: transform .2s ease-in-out;
  --rmc-accordion-btn-focus-box-shadow: none;
  --rmc-accordion-body-padding-x: 0;
  --rmc-accordion-body-padding-y: 1rem;
  --rmc-accordion-active-color: var(--rmc-primary-text-emphasis);
  --rmc-accordion-active-bg: inherit;
  --rmc-accordion-btn-padding-y: var(--rmc-spacing-2xl);
  --rmc-accordion-btn-padding-x: 0;
  --rmc-accordion-btn-font-size: 1.125rem;
  --rmc-accordion-btn-font-weight: 700;
  --rmc-accordion-btn-line-height: 1.75rem
}

.rmc-accordion-button {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding: var(--rmc-accordion-btn-padding-y) var(--rmc-accordion-btn-padding-x);
  font-size: 1rem;
  color: var(--rmc-accordion-btn-color);
  text-align: left;
  background-color: var(--rmc-accordion-btn-bg);
  border: 0;
  border-radius: 0;
  overflow-anchor: none;
  transition: var(--rmc-accordion-transition);
  font-size: var(--rmc-accordion-btn-font-size);
  font-style: normal;
  font-weight: var(--rmc-accordion-btn-font-weight);
  line-height: var(--rmc-accordion-btn-line-height)
}

@media (prefers-reduced-motion: reduce) {
  .rmc-accordion-button {
    transition: none
  }
}

.rmc-accordion-button:not(.collapsed) {
  color: var(--rmc-accordion-active-color);
  background-color: var(--rmc-accordion-active-bg)
}

.rmc-accordion-button:not(.collapsed):after {
  background-image: var(--rmc-accordion-btn-active-icon);
  transform: var(--rmc-accordion-btn-icon-transform)
}

.rmc-accordion-button:not(.collapsed):hover:after {
  background-image: var(--rmc-accordion-btn-active-icon-hover)
}

.rmc-accordion-button.collapsed:hover:after {
  background-image: var(--rmc-accordion-btn-icon-hover)
}

.rmc-accordion-button:after {
  flex-shrink: 0;
  width: var(--rmc-accordion-btn-icon-width);
  height: var(--rmc-accordion-btn-icon-width);
  margin-left: auto;
  content: "";
  background-image: var(--rmc-accordion-btn-icon);
  background-repeat: no-repeat;
  background-size: var(--rmc-accordion-btn-icon-width);
  transition: var(--rmc-accordion-btn-icon-transition)
}

@media (prefers-reduced-motion: reduce) {
  .rmc-accordion-button:after {
    transition: none
  }
}

.rmc-accordion-button:hover {
  z-index: 2;
  color: #e4002b
}

.rmc-accordion-button:focus {
  z-index: 3;
  outline: 0;
  box-shadow: var(--rmc-accordion-btn-focus-box-shadow)
}

.rmc-accordion-header {
  margin-bottom: 0
}

.rmc-accordion-item {
  color: var(--rmc-accordion-color);
  background-color: var(--rmc-accordion-bg);
  border-top: var(--rmc-accordion-border-width) solid var(--rmc-accordion-border-color);
  border-bottom: var(--rmc-accordion-border-width) solid var(--rmc-accordion-border-color)
}

.rmc-accordion-item:first-of-type {
  border-top-left-radius: var(--rmc-accordion-border-radius);
  border-top-right-radius: var(--rmc-accordion-border-radius)
}

.rmc-accordion-item:first-of-type>.accordion-header .accordion-button {
  border-top-left-radius: var(--rmc-accordion-inner-border-radius);
  border-top-right-radius: var(--rmc-accordion-inner-border-radius)
}

.rmc-accordion-item:not(:first-of-type) {
  border-top: 0
}

.rmc-accordion-item:last-of-type {
  border-bottom-right-radius: var(--rmc-accordion-border-radius);
  border-bottom-left-radius: var(--rmc-accordion-border-radius)
}

.rmc-accordion-item:last-of-type>.accordion-header .accordion-button.collapsed {
  border-bottom-right-radius: var(--rmc-accordion-inner-border-radius);
  border-bottom-left-radius: var(--rmc-accordion-inner-border-radius)
}

.rmc-accordion-item:last-of-type>.accordion-collapse {
  border-bottom-right-radius: var(--rmc-accordion-border-radius);
  border-bottom-left-radius: var(--rmc-accordion-border-radius)
}

.rmc-accordion-body {
  padding: var(--rmc-accordion-body-padding-y) var(--rmc-accordion-body-padding-x)
}

.rmc-accordion-flush>.accordion-item {
  border-right: 0;
  border-left: 0;
  border-radius: 0
}

.rmc-accordion-flush>.accordion-item:first-child {
  border-top: 0
}

.rmc-accordion-flush>.accordion-item:last-child {
  border-bottom: 0
}

.rmc-accordion-flush>.accordion-item>.accordion-header .accordion-button,
.rmc-accordion-flush>.accordion-item>.accordion-header .accordion-button.collapsed {
  border-radius: 0
}

.rmc-accordion-flush>.accordion-item>.accordion-collapse {
  border-radius: 0
}

[data-bs-theme=dark] .accordion-button:after {
  --rmc-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='rgb%28109.8, 168, 253.8%29'%3e%3cpath fill-rule='evenodd' d='M1.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-.708z'/%3e%3c/svg%3e");
  --rmc-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='rgb%28109.8, 168, 253.8%29'%3e%3cpath fill-rule='evenodd' d='M1.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-.708z'/%3e%3c/svg%3e")
}

.rmc-accordion-solid .rmc-accordion-item {
  padding: var(--rmc-spacing-4xl) var(--rmc-spacing-9xl);
  border-radius: .75rem;
  border: .063rem solid #d6dadd
}

@media (max-width: 767.98px) {
  .rmc-accordion-solid .rmc-accordion-item {
    padding: var(--rmc-spacing-2xl) var(--rmc-spacing-xl)
  }
}

.rmc-accordion-solid .rmc-accordion-button {
  border-radius: .75rem;
  padding: 0
}

.rmc-accordion-solid .rmc-accordion-button:after {
  display: none
}

.rmc-accordion-solid .accordion-body {
  padding: 0;
  font-size: .875rem
}

.rmc-product-line-hero {
  --rmc-product-line-hero-bg: none;
  --rmc-product-line-hero-color: #ffffff;
  --rmc-product-line-hero-height: 41.25rem;
  background-image: var(--rmc-product-line-hero-bg);
  position: relative;
  color: var(--rmc-product-line-hero-color);
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 2.25rem;
  padding: var(--rmc-spacing-5xl) 0
}

@media (max-width: 991.98px) {
  .rmc-product-line-hero {
    padding: var(--rmc-spacing-3xl);
    font-size: 1rem;
    font-style: normal;
    font-weight: 300;
    line-height: 1.5rem
  }
}

.rmc-product-line-hero__product-container {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--rmc-spacing-3xl) 0 var(--rmc-spacing-2xl) 0
}

.rmc-product-line-hero__product-container img {
  max-width: 100%;
  object-fit: contain
}

.rmc-product-line-hero__product-container--slider img {
  aspect-ratio: 14/9
}

.rmc-product-line-hero--tout {
  height: 100%
}

.rmc-product-line-hero--gradient {
  background: var(--rmc-product-line-hero-bg);
  background-blend-mode: color-burn, normal, normal
}

.rmc-product-line-hero .rmc-breadcrumbs {
  --rmc-breadcrumbs-text-color: #ffffff
}

.rmc-punch-line {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--rmc-spacing-3xl);
  flex-shrink: 0;
  align-self: stretch;
  font-size: 1.875rem;
  font-style: normal;
  font-weight: 700;
  line-height: 2.375rem
}

.rmc-punch-line__eyebrow {
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.375rem;
  letter-spacing: .3375rem;
  text-transform: uppercase
}

.rmc-punch-line__product-container img {
  max-width: 100%
}

.rmc-product-line-benefit {
  display: flex;
  padding: var(--rmc-spacing-5xl) var(--rmc-spacing-4xl);
  flex-direction: column;
  align-items: center;
  gap: 1.5rem
}

.rmc-product-line-benefit__align-start {
  align-items: baseline
}

.rmc-product-line-benefit__single-line {
  flex-direction: row
}

.rmc-product-line-benefit__single-line .rmc-product-line-benefit__body {
  text-align: left
}

.rmc-product-line-benefit__single-line .rmc-product-line-benefit__body:not(:has(.rmc-product-line-benefit__text)) {
  align-self: center
}

@media (max-width: 991.98px) {
  .rmc-product-line-benefit {
    padding: var(--rmc-spacing-5xl) 0
  }
}

.rmc-product-line-benefit img {
  max-width: 100%;
  width: 88px;
  height: 88px
}

.rmc-product-line-benefit__body {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  text-align: center;
  align-items: center;
  align-self: stretch
}

.rmc-product-line-benefit__title {
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 2.375rem
}

@media (max-width: 991.98px) {
  .rmc-product-line-benefit__title {
    font-style: normal
  }
}

.rmc-product-line-benefit__text {
  font-size: 1rem;
  line-height: 1.5rem
}

.rmc-youtube-wrapper {
  display: flex;
  justify-content: center
}

.rmc-youtube-wrapper iframe {
  aspect-ratio: 16/9;
  width: 100%;
  height: 100%
}

.rmc-youtube-gallery-wrapper {
  display: flex;
  justify-content: center;
  position: relative;
  background: var(--rmc-white);
  border-radius: 1rem
}

.rmc-youtube-gallery-wrapper-xl .rmc-youtube-gallery-wrapper__icon {
  width: 100%;
  height: 8rem
}

.rmc-youtube-gallery-wrapper-xl .rmc-youtube-gallery-wrapper__thumbnail {
  width: 100%
}

.rmc-youtube-gallery-wrapper__icon {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  transform: translate(-50%, -50%)
}

.rmc-youtube-gallery-wrapper__thumbnail {
  width: 100%;
  max-width: 50rem;
  object-fit: contain
}

.rmc-image-wrapper {
  display: flex;
  justify-content: center;
  background: var(--rmc-white);
  border-radius: 1rem
}

.rmc-image-wrapper img {
  width: 20rem;
  height: 20rem;
  object-fit: contain
}

.rmc-eco-net {
  --rmc-eco-net-background-image: none;
  display: flex;
  justify-content: center;
  background-color: #f3f3f3;
  background-image: var(--rmc-eco-net-background-image);
  background-repeat: no-repeat;
  background-position: 50% 0;
  background-size: 100%
}

.rmc-eco-net__phone {
  z-index: 1;
  position: relative;
  width: 100%;
  display: flex;
  justify-content: flex-end
}

@media (max-width: 991.98px) {
  .rmc-eco-net__phone {
    justify-content: center
  }
}

.rmc-eco-net__phone .rmc-eco-net__phone-image {
  width: 100%;
  aspect-ratio: 474/803;
  max-width: 29.625rem;
  max-height: 50.188rem;
  display: flex;
  justify-content: center;
  align-items: center
}

.rmc-eco-net__phone .rmc-eco-net__phone-image img {
  max-width: 100%
}

.rmc-eco-net__text {
  display: flex;
  flex-direction: column;
  gap: var(--rmc-spacing-4xl);
  justify-content: center
}

.rmc-eco-net__information {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--rmc-spacing-2xl)
}

.rmc-eco-net__information__logo {
  display: flex;
  width: 12rem;
  justify-content: center;
  align-items: center;
  aspect-ratio: 192/60
}

@media (max-width: 991.98px) {
  .rmc-eco-net__information__logo {
    width: 8rem
  }
}

.rmc-eco-net__information__header {
  font-size: 3rem;
  font-style: normal;
  font-weight: 700;
  line-height: 3.75rem
}

@media (max-width: 991.98px) {
  .rmc-eco-net__information__header {
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 700;
    line-height: 2rem
  }
}

.rmc-eco-net__information__body {
  color: #575b61;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 300;
  line-height: 2rem
}

@media (max-width: 991.98px) {
  .rmc-eco-net__information__body {
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.75rem
  }
}

.rmc-eco-net__card-selector {
  display: flex;
  padding: var(--rmc-spacing-3xl) var(--rmc-spacing-5xl) var(--rmc-spacing-3xl) 0;
  flex-direction: row;
  align-items: flex-end;
  background-color: #fff;
  flex-wrap: wrap;
  justify-content: space-between;
  border-radius: var(--rmc-radius-sm);
  border: 1px solid #d6dadd;
  z-index: 0;
  margin-left: -150px;
  padding-left: 150px;
  box-shadow: 0 12px 16px -4px #10182814, 0 4px 6px -2px #10182808
}

@media (max-width: 991.98px) {
  .rmc-eco-net__card-selector {
    padding: var(--rmc-spacing-3xl);
    margin: auto;
    margin-top: calc(var(--rmc-spacing-6xl) * -1);
    gap: var(--rmc-spacing-xl)
  }
}

.rmc-eco-net__card-selector__title {
  font-size: 1.875rem;
  font-style: normal;
  font-weight: 700;
  line-height: 2.375rem;
  display: flex;
  align-items: center;
  flex-basis: 100%;
  order: 1
}

@media (max-width: 991.98px) {
  .rmc-eco-net__card-selector__title {
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 700;
    line-height: 2rem;
    order: 2
  }
}

.rmc-eco-net__card-selector__body {
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 300;
  line-height: 2.25rem;
  color: #575b61;
  order: 2;
  width: calc(100% - 10rem);
  display: flex;
  gap: var(--rmc-spacing-4xl);
  align-items: flex-end;
  justify-content: flex-end
}

@media (max-width: 991.98px) {
  .rmc-eco-net__card-selector__body {
    flex-direction: column;
    order: 3;
    width: auto;
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.75rem
  }
}

.rmc-eco-net__card-selector__arrows {
  display: flex;
  gap: var(--rmc-spacing-4xl);
  order: 3
}

@media (max-width: 991.98px) {
  .rmc-eco-net__card-selector__arrows {
    order: 1;
    display: flex;
    justify-content: space-between;
    width: 100%
  }
}

.rmc-eco-net__quote-arrow {
  display: flex;
  width: 3.5rem;
  height: 3.5rem;
  justify-content: center;
  align-items: center;
  gap: var(--spacing-lg, .75rem);
  flex-shrink: 0;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
  border-radius: 50%;
  border: 1px solid #d6dadd;
  background: #fff
}

.rmc-eco-net__quote-arrow svg {
  transform-origin: 50% 50%
}

.rmc-eco-net__quote-arrow.quote-arrow--left svg {
  transform: rotate(180deg)
}

.rmc-eco-net__quote-arrow.quote-arrow--right svg {
  transform: rotate(0)
}

.rmc-eco-net__quote-arrow:hover {
  box-shadow: 0 20px 24px -4px #10182814, 0 8px 8px -4px #10182808
}

.rmc-eco-net__grid-wrapper {
  display: grid;
  grid-auto-rows: max-content;
  grid-template-areas: "econet-phone econet-text" "econet-phone econet-card-selector";
  grid-template-columns: 5fr 7fr;
  grid-template-rows: 1fr 1fr
}

@media (max-width: 991.98px) {
  .rmc-eco-net__grid-wrapper {
    grid-template-areas: "econet-text" "econet-phone" "econet-card-selector";
    grid-template-columns: 1fr;
    grid-template-rows: 1fr
  }
}

.rmc-eco-net__grid-phone {
  grid-area: econet-phone;
  display: flex;
  justify-content: flex-end
}

@media (max-width: 991.98px) {
  .rmc-eco-net__grid-phone {
    justify-content: center
  }
}

.rmc-eco-net__grid-card-selector {
  grid-area: econet-card-selector;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: var(--rmc-spacing-2xl)
}

.rmc-eco-net__grid-text {
  grid-area: econet-text;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: var(--rmc-spacing-2xl)
}

.rmc-eco-net__video-section {
  font-size: 1.125rem
}

.rmc-eco-net__video-section a {
  color: #101828
}

.rmc-eco-net__video-section-icons {
  display: flex;
  gap: var(--rmc-spacing-5xl)
}

.rmc-eco-net__video-section-icons img {
  width: 84px;
  height: 24px
}

.carousel-non-animated .carousel-item {
  opacity: 0;
  transition: none;
  transform: none
}

.carousel-non-animated .carousel-item.active,
.carousel-non-animated .carousel-item-next.carousel-item-start,
.carousel-non-animated .carousel-item-prev.carousel-item-end {
  z-index: 1;
  opacity: 1
}

.carousel-non-animated .active.carousel-item-start,
.carousel-non-animated .active.carousel-item-end {
  z-index: 0;
  opacity: 0
}

.rmc-product-line__content-section-1 {
  gap: var(--rmc-spacing-6xl)
}

.rmc-product-line__content-section-1__image {
  width: 17.75rem;
  height: 17.75rem;
  border-radius: 50%;
  object-fit: cover
}

.rmc-product-line__content-section-1__image.dotted-wrap {
  width: 20.75rem;
  height: 20.75rem
}

.rmc-product-line__content-section-1__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  height: 100%;
  gap: .5rem
}

.rmc-product-line__content-section-1__text__title {
  font-size: 3.75rem;
  font-style: normal;
  font-weight: 700;
  line-height: 4.5rem
}

@media (max-width: 991.98px) {
  .rmc-product-line__content-section-1__text__title {
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 700;
    line-height: 2rem
  }
}

.rmc-product-line__content-section-1__text__body {
  color: #515d6d;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 300;
  line-height: 2.625rem
}

@media (max-width: 991.98px) {
  .rmc-product-line__content-section-1__text__body {
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.75rem
  }
}

.rmc-product-line__content-section-1__text__list li {
  color: #515d6d;
  font-size: 1.125rem
}

.rmc-product-line__content-section-1--sm {
  gap: var(--rmc-spacing-4xl)
}

.rmc-product-line__content-section-1--sm .rmc-product-line__content-section-1__text__title {
  font-size: 2.25rem;
  line-height: 2.75rem
}

.rmc-product-line__content-section-1--sm .rmc-product-line__content-section-1__text__body {
  font-size: 1.125rem;
  line-height: 2rem
}

.rmc-product-line__content-section-1.right {
  flex-direction: row-reverse
}

@media (max-width: 991.98px) {
  .rmc-product-line__content-section-1.right {
    flex-direction: row
  }
}

.rmc-product-line__content-section-2 {
  gap: var(--rmc-spacing-6xl);
  background-color: #e4002b;
  color: #fff
}

.rmc-product-line__content-section-2__image:not(#\	) {
  width: 20.75rem;
  height: 20.75rem;
  border-radius: 50%;
  object-fit: contain;
  object-position: 50% 0
}

.rmc-product-line__content-section-2__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--rmc-spacing-md);
  flex: 1 0 0
}

.rmc-product-line__content-section-2__text__title {
  font-size: 2.25rem;
  font-style: normal;
  font-weight: 700;
  line-height: 2.75rem
}

@media (max-width: 991.98px) {
  .rmc-product-line__content-section-2__text__title {
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 700;
    line-height: 2rem
  }
}

.rmc-product-line__content-section-2__text__body {
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 300;
  line-height: 2.25rem
}

@media (max-width: 991.98px) {
  .rmc-product-line__content-section-2__text__body {
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5rem
  }
}

.rmc-advantages__image img {
  max-width: 100%
}

.rmc-advantages__text h3,
.rmc-advantages__text .h3 {
  padding-top: var(--rmc-spacing-3xl);
  font-size: 3rem;
  font-weight: 700
}

@media (max-width: 767.98px) {

  .rmc-advantages__text h3,
  .rmc-advantages__text .h3 {
    font-size: 1.875rem
  }
}

.rmc-advantages__text ul {
  padding: 0;
  margin: var(--rmc-spacing-xl) 0 0;
  list-style-type: none
}

.rmc-advantages__text h5,
.rmc-advantages__text .h5 {
  font-weight: 700;
  margin: var(--rmc-spacing-xl) 0 0
}

.rmc-advantages__text li {
  line-height: 1.75rem;
  font-size: 1.125rem
}

.rmc-advantages__text p {
  margin: 0
}

.rmc-advantages__list {
  list-style-type: disc
}

.rmc-product-line-featured__video {
  width: 100%;
  height: auto;
  display: none
}

.rmc-product-line-featured__video.active {
  display: block
}

.rmc-product-line-featured__product-body {
  color: #515d6d
}

.rmc-hotspot__image {
  position: relative;
  width: fit-content
}

.rmc-hotspot__image img {
  max-width: 100%
}

.rmc-hotspot__point {
  position: absolute;
  z-index: 1;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .875rem;
  color: #515d6d;
  background-color: #f9fafb;
  border-radius: 1.5rem;
  transition: all .3s ease;
  cursor: pointer
}

.rmc-hotspot__point.active,
.rmc-hotspot__point:hover {
  color: #fff;
  background-color: #e4002b
}

@media (max-width: 575.98px) {
  .rmc-hotspot__point {
    width: 2rem;
    height: 2rem
  }
}

.rmc-benefits-circle-image__item:nth-child(2n) {
  flex-direction: row-reverse
}

.rmc-benefits-circle-image__img {
  width: 100%;
  max-width: 36.5rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center
}

@media (max-width: 1199.98px) {
  .rmc-benefits-circle-image__img {
    padding-top: 5.625rem
  }
}

@media (max-width: 767.98px) {
  .rmc-benefits-circle-image__img {
    padding-top: 3rem;
    max-width: 20.5rem
  }
}

.rmc-benefits-circle-image__bg-img {
  z-index: 1;
  position: absolute;
  max-width: 100%
}

.rmc-benefits-circle-image__product-img {
  position: relative;
  z-index: 2;
  max-width: 100%
}

.rmc-benefits-image__item {
  align-items: center;
  justify-content: center;
  margin: var(--rmc-spacing-8xl) 0px
}

.rmc-benefits-image__item:nth-child(2n) {
  flex-direction: row-reverse
}

.rmc-benefits-image__item.reverse:nth-child(2n) {
  flex-direction: row
}

.rmc-benefits-image__item.reverse:nth-child(odd) {
  flex-direction: row-reverse
}

.rmc-benefits-image__img {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center
}

.rmc-benefits-image__img img {
  max-width: 100%
}

.rmc-table-wrapper {
  border-top: 1px solid #eaedf0;
  margin-top: calc(-1 * var(--rmc-spacing-xl));
  padding-top: var(--rmc-spacing-xl);
  overflow-x: auto
}

.rmc-product-line-installation-example {
  display: flex;
  flex-direction: column;
  align-items: center
}

.rmc-product-line-installation-example__wrapper {
  background-color: #f2f5f7;
  min-width: 100%;
  padding: var(--rmc-spacing-6xl) 0px
}

@media (min-width: 992px) {
  .rmc-product-line-installation-example__imgs-wrapper {
    max-width: 970px
  }
}

.rmc-product-line-installation-example__img-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: var(--rmc-spacing-4xl)
}

.rmc-product-line-installation-example__img-wrapper img {
  width: 350px
}

@media (min-width: 576px) {
  .rmc-product-line-installation-example__img-wrapper img {
    width: 100%
  }
}

.rmc-product-line-installation-example__card-wrapper {
  gap: var(--rmc-spacing-5xl);
  padding: var(--rmc-spacing-5xl)
}

.rmc-product-line-installation-example__cards-wrapper {
  padding: 0 var(--rmc-spacing-2xl)
}

@media (min-width: 768px) {
  .rmc-product-line-installation-example__cards-wrapper {
    width: 100%
  }
}

@media (min-width: 992px) {
  .rmc-product-line-installation-example__cards-wrapper {
    padding: var(--rmc-spacing-5xl, 40px) var(--rmc-spacing-9xl, 96px)
  }
}

.rmc-reports .rmc-card-image {
  max-height: 25.375rem
}

@media (max-width: 767.98px) {
  .rmc-reports .rmc-card-image {
    min-height: 28.125rem
  }
}

.rmc-reports .rmc-card-image_gif {
  aspect-ratio: 300/250;
  width: 100%;
  max-width: 488px;
  background: var(--rmc-card-background-image) no-repeat center/cover
}

@media (max-width: 1199.98px) {
  .rmc-reports .rmc-card-image_gif {
    max-width: 421px
  }
}

@media (max-width: 767.98px) {
  .rmc-reports .rmc-card-image_gif {
    min-height: auto
  }
}

.rmc-awards {
  --rmc-awards-background-image: none;
  background-image: var(--rmc-awards-background-image);
  background-size: cover;
  background-position: center center
}

.rmc-awards .rmc-slider {
  --rmc-item-inline-width: 11.875rem;
  padding: var(--rmc-spacing-2xl) 0
}

.rmc-awards .rmc-slider img {
  max-width: 100%
}

.rmc-awards .rmc-slider-item {
  min-width: auto
}

@media (max-width: 767.98px) {
  .rmc-awards .rmc-slider {
    --rmc-item-inline-width: 6.25rem
  }

  .rmc-awards .rmc-slider .item-inline {
    flex: 1 0 var(--rmc-item-inline-width)
  }
}

.rmc-awards-slider_md .rmc-slider {
  --rmc-item-inline-width: 15rem
}

.rmc-header-cards {
  --rmc-header-cards-background-image: none;
  --rmc-header-cards-header-background-image: none;
  --rmc-header-cards-tools-background-image: none;
  background-size: cover;
  background-position: center center;
  background-image: var(--rmc-header-cards-background-image)
}

@media (max-width: 767.98px) {
  .rmc-header-cards {
    --rmc-header-cards-background-image: none !important
  }
}

.rmc-header-cards__header,
.rmc-header-cards__tools {
  background-size: cover;
  background-position: center center
}

.rmc-header-cards__header {
  background-image: var(--rmc-header-cards-header-background-image)
}

@media (min-width: 768px) {
  .rmc-header-cards__header {
    --rmc-header-cards-header-background-image: none !important
  }
}

.rmc-header-cards__tools {
  background-image: var(--rmc-header-cards-tools-background-image)
}

@media (min-width: 768px) {
  .rmc-header-cards__tools {
    --rmc-header-cards-tools-background-image: none !important
  }
}

.rmc-header-cards__sustainability-product {
  background-position-y: 100%;
  background-size: 100% 640px;
  background-repeat: no-repeat
}

.rmc-goal {
  --rmc-goal-background-image: none;
  --rmc-goal-mobile-background-image: none;
  background-size: cover;
  background-position: center center;
  background-image: var(--rmc-goal-background-image)
}

@media (max-width: 991.98px) {
  .rmc-goal {
    background-image: var(--rmc-goal-mobile-background-image)
  }
}

.rmc-goal__line {
  width: .063rem;
  height: 7.5rem;
  background-color: #0006
}

@media (max-width: 991.98px) {
  .rmc-goal__line {
    height: .063rem;
    width: 2.5rem
  }
}

.rmc-product-stories {
  --rmc-product-stories-background-image: none;
  background-size: cover;
  background-position: center center;
  background-image: var(--rmc-product-stories-background-image)
}

.rmc-product-stories__wrap {
  border-bottom: .063rem solid #d6dadd
}

.rmc-product-story__text p strong {
  font-weight: 700
}

.rmc-sust-inn-half {
  --rmc-psust-inn-half-bg: none;
  background-size: cover;
  background-position: center center;
  background-image: var(--rmc-sust-inn-half-bg);
  border: 1px solid #d6dadd;
  height: 100%
}

.rmc-brands .swiper {
  width: 100%;
  height: 100%;
  overflow: visible
}

@media (max-width: 767.98px) {
  .rmc-brands .swiper {
    overflow: hidden
  }
}

.rmc-brands .swiper-slide {
  width: auto;
  display: flex;
  align-items: center;
  height: 100%;
  justify-content: center;
  height: 64px;
  cursor: pointer
}

.rmc-leader-ship__item {
  flex: 0 0 auto;
  cursor: pointer;
  width: 20%
}

@media (max-width: 1399.98px) {
  .rmc-leader-ship__item {
    width: 25%
  }
}

@media (max-width: 991.98px) {
  .rmc-leader-ship__item {
    width: 33.3333333333%
  }
}

@media (max-width: 767.98px) {
  .rmc-leader-ship__item {
    width: 50%
  }
}

@media (max-width: 575.98px) {
  .rmc-leader-ship__item {
    width: 100%
  }
}

.rmc-leader-ship__item-img {
  height: 160px;
  width: 160px;
  border-radius: 50%;
  background-color: #bcbcba;
  overflow: hidden;
  margin: auto
}

.rmc-leader-ship__item-img img {
  max-width: 100%
}

.rmc-leader-ship__item_dashed {
  padding: .625rem;
  border: 1px dashed #4f868e;
  border-radius: 50%
}

.rmc-leader-ship .swiper-button-disabled {
  display: none
}

.rmc-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  transform: translate(100%);
  width: 25rem;
  height: 100%;
  background: #fff;
  z-index: 1100;
  display: flex;
  flex-direction: column;
  box-shadow: -2px 0 5px #0000001a;
  transition: transform .4s;
  pointer-events: none
}

@media (max-width: 575.98px) {
  .rmc-sidebar {
    width: 100%
  }
}

.rmc-sidebar__header {
  position: sticky;
  top: 0;
  background-color: #fff
}

.rmc-sidebar__header svg {
  cursor: pointer
}

.rmc-sidebar__body {
  overflow-y: auto;
  flex: 1
}

.rmc-sidebar__slider {
  height: auto
}

.rmc-sidebar__footer {
  background-color: #fff;
  position: sticky;
  bottom: 0
}

.rmc-sidebar.active {
  transform: translate(0);
  pointer-events: all
}

.rmc-sidebar__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #00000080;
  opacity: 0;
  visibility: hidden;
  transition: opacity .4s, visibility .4s;
  z-index: 1000;
  pointer-events: none
}

.rmc-sidebar__overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: all
}

.rmc-sidebar__item-text p {
  margin-bottom: var(--rmc-spacing-3xl);
  font-weight: 500
}

.eco-m .eco-c {
  font-size: 15px
}

.eco-m .eco-c .ecr-notice {
  display: inline-block !important
}

.eco-m .eco-c .eco-widget .eco-value {
  float: none
}

.eco-m .eco-c a {
  margin: 0 auto !important;
  color: var(--rmc-brand-text) !important
}

.eco-m .eco-c a.ecr-details.ecr-open-details {
  margin: 0 auto
}

.eco-m .eco-c .btn-default,
.eco-m .eco-c .btn-primary {
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
  color: var(--rmc-brand-text) !important;
  border-color: var(--rmc-brand-text) !important;
  background: transparent !important;
  outline: none !important
}

.eco-m .eco-c .btn-default:hover,
.eco-m .eco-c .btn-primary:hover {
  background: transparent !important;
  color: var(--rmc-brand-text) !important;
  border-color: var(--rmc-brand-text) !important;
  text-decoration: none !important
}

.eco-m .eco-c .btn-default:focus,
.eco-m .eco-c .btn-primary:focus {
  text-decoration: none !important
}

.eco-m .eco-c .ecr-notice {
  display: inline-block
}

.eco-m .row>* {
  width: auto;
  max-width: auto
}

.rmc-product-line__interactive-img {
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  display: none;
  max-width: 40%
}

.rmc-product-line__interactive-img.active {
  display: block
}

.rmc-product-line__changeable-img {
  display: none;
  max-width: 100%
}

.rmc-product-line__changeable-img.active {
  display: block
}

.rmc-product-line__badge-img {
  position: absolute;
  z-index: 1;
  bottom: 0;
  right: 0;
  transform: translateY(-100%);
  transform-origin: center;
  max-width: 30%
}

.rmc-product-line__eyebrow {
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.375rem;
  letter-spacing: .3375rem;
  text-transform: uppercase
}

@media (max-width: 767.98px) {
  .rmc-product-line__eyebrow {
    font-size: .75rem
  }
}

.rmc-product-line__featured-product {
  --rmc-product-line-bg: #eceae5;
  display: flex;
  padding: var(--rmc-spacing-10xl) var(--rmc-spacing-5xl);
  align-items: center;
  align-self: stretch
}

@media (max-width: 991.98px) {
  .rmc-product-line__featured-product {
    padding: var(--rmc-spacing-3xl) var(--rmc-spacing-3xl) var(--rmc-spacing-5xl) var(--rmc-spacing-3xl)
  }
}

.rmc-product-line__product-img-wrap {
  position: relative;
  background: radial-gradient(circle closest-side, rgba(0, 0, 0, .1) 99%, transparent 100%) transparent
}

.rmc-product-line__product-img-wrap_no-circle {
  background: none
}

.rmc-product-line__product-img {
  max-width: 100%;
  z-index: 1;
  position: relative
}

.rmc-product-line__product {
  max-width: 521px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start
}

@media (max-width: 991.98px) {
  .rmc-product-line__product {
    max-width: 100%
  }
}

.rmc-product-line__product-text {
  display: flex;
  max-width: 48.75rem;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  gap: 2rem
}

.rmc-product-line__product-title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  align-self: stretch
}

.rmc-product-line__product-body {
  color: #4a4a4a;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2rem
}

.rmc-product-line__product-header {
  font-size: 3rem;
  font-style: normal;
  font-weight: 700;
  line-height: 3.75rem
}

@media (max-width: 991.98px) {
  .rmc-product-line__product-header {
    font-size: 2.25rem;
    font-style: normal;
    font-weight: 700;
    line-height: 2.75rem
  }
}

.rmc-product-line__product-accordions .rmc-accordion {
  --rmc-accordion-bg: transparent;
  --rmc-accordion-btn-bg: transparent;
  --rmc-accordion-active-bg: transparent;
  --rmc-accordion-btn-padding-x: 0;
  --rmc-accordion-btn-font-size: 1.125rem;
  --rmc-accordion-body-padding-x: 0;
  font-size: .875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.25rem
}

@media (max-width: 991.98px) {
  .rmc-product-line__product-accordions .rmc-accordion {
    --rmc-accordion-btn-font-size: 1.5rem;
    font-size: .875rem;
    font-style: normal;
    font-weight: 300;
    line-height: 1.25rem
  }
}

.rmc-product-line__product-accordions .rmc-accordion-item {
  border-left: none;
  border-right: none
}

.rmc-content {
  background-color: #a9c47f
}

.rmc-cards-tools {
  --rmc-cards-tools-background-image: none;
  background-size: cover;
  background-position: center center;
  background-image: var(--rmc-cards-tools-background-image)
}

@media (max-width: 575.98px) {
  .rmc-environment-innovation__items {
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none
  }
}

.rmc-bg-image {
  --rmc-bg-image: none;
  background-image: var(--rmc-bg-image);
  background-size: cover;
  background-position: center center
}

.tab-content__bg {
  background-color: #eceae5
}

.rmc-savings-calculator {
  border-top: 1px solid #e8e8f5
}

.rmc-badge {
  --rmc-badge-padding-x: calc(.625rem - var(--rmc-border-width));
  --rmc-badge-padding-y: calc(.375rem - var(--rmc-border-width));
  --rmc-badge-font-size: .75em;
  --rmc-badge-font-weight: 700;
  --rmc-badge-color: #e4002b;
  --rmc-badge-border-color: #e4002b;
  --rmc-badge-bg: #faccd5;
  --rmc-badge-border-radius: 1rem;
  --rmc-badge-border-width: var(--rmc-border-width);
  display: inline-block;
  padding: var(--rmc-badge-padding-y) var(--rmc-badge-padding-x);
  font-size: var(--rmc-badge-font-size);
  font-weight: var(--rmc-badge-font-weight);
  line-height: 1;
  color: var(--rmc-badge-color);
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border: var(--rmc-badge-border-width) solid var(--rmc-badge-border-color);
  cursor: pointer;
  border-radius: var(--rmc-badge-border-radius);
  background-color: var(--rmc-badge-bg)
}

.rmc-badge:empty {
  display: none
}

.rmc-badge-solid {
  --rmc-badge-padding-x: calc(.75rem - var(--rmc-border-width));
  --rmc-badge-border-color: #eaedf0;
  --rmc-badge-bg: #f9fafb;
  --rmc-badge-color: #394754;
  font-size: .875rem;
  --rmc-badge-font-weight: 400
}

.rmc-badge-outline {
  --rmc-badge-padding-x: calc(.75rem - var(--rmc-border-width));
  --rmc-badge-border-color: #596067;
  --rmc-badge-bg: #f9fafb;
  --rmc-badge-color: #394754;
  font-size: .875rem;
  --rmc-badge-font-weight: 400;
  --rmc-badge-border-width: 1.5px
}

.rmc-badge-color-teal {
  --rmc-badge-color: #ffffff;
  --rmc-badge-bg: #4f868e;
  --rmc-badge-border-color: #4f868e
}

.rmc-badge-color-blue {
  --rmc-badge-color: #ffffff;
  --rmc-badge-bg: #1b365d;
  --rmc-badge-border-color: #1b365d
}

.btn .badge {
  position: relative;
  top: -1px
}

.rmc-metric {
  --rmc-metric-number-value-font-size: var(--rmc-font-display-3xl);
  --rmc-metric-number-unit-font-size: 1.875rem;
  --rmc-metric-text-title-font-size: 1.5rem;
  --rmc-metric-text-body-font-size: 1.125rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--rmc-spacing-xl)
}

.rmc-metric__number {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: .25rem
}

.rmc-metric__number-value {
  text-align: center;
  font-size: var(--rmc-metric-number-value-font-size);
  font-style: normal;
  font-weight: 700;
  line-height: 6.5rem
}

@media (max-width: 991.98px) {
  .rmc-metric__number-value {
    font-size: 3rem;
    font-style: normal;
    font-weight: 700;
    line-height: 2.5rem
  }
}

.rmc-metric__number-unit {
  text-align: center;
  font-size: var(--rmc-metric-number-unit-font-size);
  font-style: normal;
  font-weight: 700;
  line-height: 6.5rem
}

@media (max-width: 991.98px) {
  .rmc-metric__number-unit {
    text-align: center;
    font-size: 3rem;
    font-style: normal;
    font-weight: 700;
    line-height: 2.5rem
  }
}

.rmc-metric__text {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: var(--rmc-spacing-md);
  align-self: stretch
}

.rmc-metric__text-title {
  color: var(--Colors-Text-text-primary, #000);
  text-align: center;
  font-size: var(--rmc-metric-text-title-font-size);
  font-style: normal;
  font-weight: 700;
  line-height: 2rem
}

@media (max-width: 991.98px) {
  .rmc-metric__text-title {
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 700;
    line-height: 2rem
  }
}

.rmc-metric__text-body {
  text-align: center;
  font-size: var(--rmc-metric-text-body-font-size);
  font-style: normal;
  font-weight: 300;
  line-height: 1.75rem
}

@media (max-width: 991.98px) {
  .rmc-metric__text-body {
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 300;
    line-height: 1.75rem
  }
}

.rmc-container,
.rmc-container-fluid,
.rmc-container-xxl,
.rmc-container-xl,
.rmc-container-lg,
.rmc-container-md,
.rmc-container-sm {
  --rmc-gutter-x: 1.5rem;
  --rmc-gutter-y: 0;
  width: 100%;
  padding-right: calc(var(--rmc-gutter-x) * .5);
  padding-left: calc(var(--rmc-gutter-x) * .5);
  margin-right: auto;
  margin-left: auto
}

@media (min-width: 576px) {

  .rmc-container-sm,
  .rmc-container {
    max-width: 540px
  }
}

@media (min-width: 768px) {

  .rmc-container-md,
  .rmc-container-sm,
  .rmc-container {
    max-width: 720px
  }
}

@media (min-width: 992px) {

  .rmc-container-lg,
  .rmc-container-md,
  .rmc-container-sm,
  .rmc-container {
    max-width: 960px
  }
}

@media (min-width: 1200px) {

  .rmc-container-xl,
  .rmc-container-lg,
  .rmc-container-md,
  .rmc-container-sm,
  .rmc-container {
    max-width: 1140px
  }
}

@media (min-width: 1400px) {

  .rmc-container-xxl,
  .rmc-container-xl,
  .rmc-container-lg,
  .rmc-container-md,
  .rmc-container-sm,
  .rmc-container {
    max-width: 1472px
  }
}

.rmc-card-basic {
  margin: var(--rmc-spacing-xl) 0;
  border-radius: var(--rmc-radius-xl)
}

.rmc-card-basic__content {
  border-radius: var(--rmc-radius-xl);
  background: #fff;
  display: flex;
  padding: var(--rmc-spacing-4xl);
  flex-direction: column;
  gap: var(--rmc-spacing-xl);
  width: 100%;
  height: 100%
}

.rmc-card-basic__content__title {
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 2.375rem;
  text-align: center
}

@media (max-width: 991.98px) {
  .rmc-card-basic__content__title {
    font-size: 1.5rem;
    line-height: 2rem
  }
}

.rmc-card-basic__content__body {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.5rem;
  text-align: center
}

.rmc-card-basic--shadow:hover {
  box-shadow: 0 20px 24px -4px #10182814, 0 8px 8px -4px #10182808
}

.rmc-card-image {
  --rmc-card-background-image: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  gap: .5rem;
  flex-shrink: 0;
  position: relative;
  width: 100%;
  aspect-ratio: 469/360;
  border-radius: var(--rmc-radius-xl);
  background: linear-gradient(0deg, #00000014, #00000014), var(--rmc-card-background-image) #d3d3d3 50%/cover no-repeat
}

.rmc-card-image.rmc-card-image--big {
  aspect-ratio: 1.6/1
}

.rmc-card-image.rmc-card-image--fixed-height {
  height: var(--rmc-card-height)
}

.rmc-card-image.rmc-card-image--large {
  gap: unset;
  aspect-ratio: 336/450;
  justify-content: flex-start
}

.rmc-card-image.rmc-card-image--narrow {
  background: #f2f4f7;
  gap: unset;
  aspect-ratio: unset;
  justify-content: flex-start;
  height: 450px
}

.rmc-card-image.rmc-card-image--narrow .rmc-card-image--narrow__content {
  gap: 0px;
  position: relative;
  align-self: unset;
  left: 1rem;
  right: unset;
  position: absolute;
  min-height: -webkit-fill-available
}

@media (max-width: 991.98px) {
  .rmc-card-image {
    aspect-ratio: 21/11
  }
}

.rmc-card-image--bg-contain {
  background-size: contain
}

.rmc-card-image__content {
  display: flex;
  padding: var(--rmc-spacing-3xl);
  flex-direction: column;
  align-items: flex-start;
  gap: var(--rmc-spacing-xl);
  align-self: stretch;
  width: calc(100% - 2rem);
  border-radius: var(--rmc-radius-xl);
  background: #fff;
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  transition: padding-bottom linear .1s
}

.rmc-card-image__content__title {
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
  line-height: 2.375rem;
  line-height: 1.75rem
}

@media (min-width: 576px) {
  .rmc-card-image__content__title {
    font-size: 1.5rem;
    line-height: 1.75rem
  }
}

@media (min-width: 992px) {
  .rmc-card-image__content__title {
    font-size: 1.875rem;
    line-height: 2.75rem
  }
}

.rmc-card-image__content__body {
  font-size: 1rem;
  font-style: normal;
  font-weight: 300;
  line-height: 1.5rem;
  display: none
}

@media (min-width: 576px) {
  .rmc-card-image__content__body {
    display: block
  }
}

.rmc-card-image__content__button {
  display: none;
  position: absolute;
  bottom: var(--rmc-spacing-3xl)
}

.rmc-card-image__content:has(.rmc-card-image__content__button):hover {
  padding-bottom: calc(var(--rmc-spacing-3xl) + 3rem)
}

.rmc-card-image__content:has(.rmc-card-image__content__button):hover .rmc-card-image__content__button {
  display: block
}

.rmc-card-image--squared {
  border-radius: var(--rmc-radius-xl) var(--rmc-radius-xl) 0 0
}

.rmc-card-image--squared .rmc-card-image__content {
  border-radius: var(--rmc-radius-xl) var(--rmc-radius-xl) var(--rmc-radius-xl) 0
}

@media (max-width: 767.98px) {
  .rmc-card-image--squared .rmc-card-image__content {
    gap: var(--rmc-spacing-sm);
    padding: var(--rmc-spacing-3xl)
  }
}

@media (max-width: 767.98px) {
  .rmc-card-image--squared .rmc-card-image__content__title {
    font-size: 1.875rem;
    line-height: 2.375rem
  }
}

.rmc-card-image--squared .rmc-card-image__content__body {
  display: block
}

.rmc-card-image.position-relative .rmc-card-image__content__button {
  position: initial
}

.rmc-card-image.position-relative .rmc-card-image__content:has(.rmc-card-image__content__button):hover {
  padding-bottom: calc(var(--rmc-spacing-3xl))
}

.rmc-card-one {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--rmc-spacing-3xl);
  padding: var(--rmc-spacing-5xl) var(--rmc-spacing-4xl);
  border-radius: var(--rmc-radius-xl);
  background-color: #fff;
  height: 100%;
  transition: .1s linear box-shadow
}

.rmc-card-one:hover {
  box-shadow: 0 20px 24px -4px #10182814, 0 8px 8px -4px #10182808
}

.rmc-card-one svg {
  fill: #e4002b;
  color: #e4002b
}

.rmc-card-one__header {
  width: 5.5rem;
  height: 5.5rem;
  flex-shrink: 0
}

.rmc-card-one__header img {
  max-width: 100%
}

.rmc-card-one .rmc-card-one__body {
  flex: 1 1 auto
}

.rmc-card-one__body-subtitle {
  text-align: center;
  font-size: .75rem;
  font-weight: 700;
  line-height: 1.125rem;
  letter-spacing: .3rem;
  color: #575b61
}

.rmc-card-one__body-title {
  text-align: center;
  font-size: calc(1.3125rem + .75vw);
  font-weight: 700;
  line-height: 2.375rem;
  color: #000;
  margin: var(--rmc-spacing-md) var(--rmc-spacing-none)
}

@media (min-width: 1200px) {
  .rmc-card-one__body-title {
    font-size: 1.875rem
  }
}

.rmc-card-one__body-desc {
  text-align: center;
  color: #575b61;
  line-height: 1.75rem;
  font-size: 1.125rem;
  font-weight: 300
}

.rmc-card-one__body-link {
  display: none;
  font-weight: 700;
  color: #e4002b;
  font-size: .875rem;
  line-height: 1.125rem;
  text-align: left;
  text-decoration: none
}

.rmc-card-one__body-icon {
  flex-shrink: 0;
  width: 1.224rem;
  height: .901rem
}

.rmc-card-one__body-icon {
  display: none
}

.rmc-card-one__body-button {
  display: none;
  margin-top: var(--rmc-spacing-3xl)
}

.rmc-card-one_gray-outline {
  border: 1px solid #eaedf0
}

@media (max-width: 767.98px) {
  .rmc-card-one {
    padding: var(--rmc-spacing-3xl) var(--rmc-spacing-xl);
    gap: var(--rmc-spacing-lg);
    box-shadow: 0 20px 24px -4px #10182814, 0 8px 8px -4px #10182808;
    display: flex;
    align-items: flex-start;
    flex-direction: row
  }

  .rmc-card-one:hover {
    box-shadow: none
  }

  .rmc-card-one .rmc-card-one__header {
    width: 3.5rem;
    height: 3.5rem
  }

  .rmc-card-one .rmc-card-one__body-title {
    text-align: left;
    margin: 0;
    font-size: calc(1.275rem + .3vw);
    line-height: 1.75rem
  }
}

@media (max-width: 767.98px) and (min-width: 1200px) {
  .rmc-card-one .rmc-card-one__body-title {
    font-size: 1.5rem
  }
}

@media (max-width: 767.98px) {
  .rmc-card-one .rmc-card-one__body-desc {
    font-size: .875rem;
    line-height: 1.125rem;
    text-align: left;
    margin: var(--rmc-spacing-md) 0
  }

  .rmc-card-one .rmc-card-one__body-link {
    display: block
  }

  .rmc-card-one .rmc-card-one__body-icon,
  .rmc-card-one .rmc-card-one__footer {
    width: .918rem;
    height: .676rem
  }

  .rmc-card-one .rmc-card-one__footer {
    display: none
  }

  .rmc-card-one .rmc-card-one__body-button {
    margin-top: var(--rmc-spacing-md)
  }
}

.rmc-card-one_layout-horizontal {
  padding: var(--rmc-spacing-4xl);
  flex-direction: row;
  align-items: flex-start
}

.rmc-card-one_layout-horizontal .rmc-card-one__body-subtitle {
  display: none
}

.rmc-card-one_layout-horizontal .rmc-card-one__body-title {
  text-align: left;
  margin: var(--rmc-spacing-none);
  margin-bottom: var(--rmc-spacing-md)
}

.rmc-card-one_layout-horizontal .rmc-card-one__body-desc {
  text-align: left
}

.rmc-card-one_layout-horizontal .rmc-card-one__body-icon {
  display: block;
  margin-top: var(--rmc-spacing-3xl)
}

.rmc-card-one_layout-horizontal .rmc-card-one__footer {
  margin-top: 1.75rem
}

.rmc-card-one_device-mobile {
  padding: var(--rmc-spacing-3xl) var(--rmc-spacing-xl);
  gap: var(--rmc-spacing-lg);
  box-shadow: 0 20px 24px -4px #10182814, 0 8px 8px -4px #10182808;
  display: flex;
  align-items: flex-start;
  flex-direction: row
}

.rmc-card-one_device-mobile:hover {
  box-shadow: none
}

.rmc-card-one_device-mobile .rmc-card-one__header {
  width: 3.5rem;
  height: 3.5rem
}

.rmc-card-one_device-mobile .rmc-card-one__body-title {
  text-align: left;
  margin: 0;
  font-size: calc(1.275rem + .3vw);
  line-height: 1.75rem
}

@media (min-width: 1200px) {
  .rmc-card-one_device-mobile .rmc-card-one__body-title {
    font-size: 1.5rem
  }
}

.rmc-card-one_device-mobile .rmc-card-one__body-desc {
  font-size: .875rem;
  line-height: 1.125rem;
  text-align: left;
  margin: var(--rmc-spacing-md) 0
}

.rmc-card-one_device-mobile .rmc-card-one__body-link {
  display: block
}

.rmc-card-one_device-mobile .rmc-card-one__body-icon,
.rmc-card-one_device-mobile .rmc-card-one__footer {
  width: .918rem;
  height: .676rem
}

.rmc-card-one_device-mobile .rmc-card-one__footer {
  display: none
}

.rmc-card-one_device-mobile .rmc-card-one__body-button {
  margin-top: var(--rmc-spacing-md)
}

.rmc-card-one_layout-horizontal.rmc-card-one_device-mobile {
  gap: var(--rmc-spacing-3xl)
}

.rmc-card-one_layout-horizontal.rmc-card-one_device-mobile .rmc-card-one__body-icon {
  margin-top: var(--rmc-spacing-md)
}

.rmc-card-one_layout-horizontal.rmc-card-one_device-mobile .rmc-card-one__footer {
  margin-top: var(--rmc-spacing-xl)
}

.rmc-card-one_type-benefit svg {
  fill: #101c28
}

.rmc-card-one_type-benefit .rmc-card-one__body-button,
.rmc-card-one_type-sustainability .rmc-card-one__body-button {
  display: flex;
  justify-content: center
}

.rmc-card-one_type-benefit .rmc-card-one__footer-icon,
.rmc-card-one_type-benefit .rmc-card-one__footer,
.rmc-card-one_type-sustainability .rmc-card-one__footer-icon,
.rmc-card-one_type-sustainability .rmc-card-one__footer {
  display: none
}

.rmc-card-one_type-benefit.rmc-card-one_layout-horizontal .rmc-card-one__body-button,
.rmc-card-one_type-sustainability.rmc-card-one_layout-horizontal .rmc-card-one__body-button {
  justify-content: flex-start
}

.rmc-card-one_type-benefit.rmc-card-one_layout-horizontal .rmc-card-one__footer,
.rmc-card-one_type-sustainability.rmc-card-one_layout-horizontal .rmc-card-one__footer,
.rmc-card-one_type-benefit.rmc-card-one_layout-horizontal:hover .rmc-card-one__footer-icon {
  display: block
}

.rmc-card-two {
  width: 100%;
  border-radius: var(--rmc-radius-xl);
  border: 1px solid #d6dadd;
  padding: var(--rmc-spacing-4xl);
  background-color: #fff;
  display: flex;
  align-items: flex-start;
  gap: var(--rmc-spacing-3xl)
}

.rmc-card-two__no-border {
  border: unset;
  padding: 0
}

.rmc-card-two__icon {
  flex-shrink: 0;
  width: 5.5rem;
  height: 5.5rem
}

.rmc-card-two__icon img {
  max-width: 100%
}

.rmc-card-two__info-title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 2.375rem;
  color: #000;
  text-decoration: none
}

.rmc-card-two__info-desc {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.5rem;
  color: #000;
  text-decoration: none
}

.rmc-card-two__info-desc a {
  color: #000
}

.rmc-card-two__info-button {
  margin-top: var(--rmc-spacing-md)
}

@media (max-width: 767.98px) {
  .rmc-card-two .rmc-card-two__icon {
    width: 3.625rem;
    height: 3.625rem
  }
}

.rmc-card-two_size-sm .rmc-card-two__icon {
  width: 3.625rem;
  height: 3.625rem
}

.rmc-card-two_background-no {
  border: none;
  background-color: transparent;
  padding: var(--rmc-spacing-none)
}

.rmc-card-two_theme-light {
  background-color: transparent
}

.rmc-card-two_theme-light .rmc-card-two__info-title,
.rmc-card-two_theme-light .rmc-card-two__info-desc {
  color: #fff
}

.rmc-card-selector {
  width: 100%;
  border-radius: var(--rmc-radius-xl);
  border: 1px solid #d6dadd;
  padding: var(--rmc-spacing-5xl);
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--rmc-spacing-3xl);
  cursor: pointer
}

.rmc-card-selector__icon svg {
  fill: #101c28
}

.rmc-card-selector__icon-blue svg {
  fill: #1b365d
}

.rmc-card-selector__title {
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 2.375rem;
  color: #000
}

.rmc-card-selector__title span {
  color: #515d6d
}

.rmc-card-selector:hover {
  box-shadow: 0 20px 24px -4px #10182814, 0 8px 8px -4px #10182808
}

.rmc-card-selector_layout-horizontal {
  flex-direction: row;
  padding: var(--rmc-spacing-xl) var(--rmc-spacing-3xl);
  gap: var(--rmc-spacing-xl);
  height: 4.875rem
}

.rmc-card-selector_layout-horizontal .rmc-card-selector__title {
  font-size: 1.125rem;
  line-height: 1.75rem
}

.rmc-card-selector_state-selected {
  background-color: #1b365d
}

.rmc-card-selector_state-selected:hover {
  box-shadow: none
}

.rmc-card-selector_state-selected .rmc-card-selector__icon svg {
  fill: #fff;
  color: #fff
}

.rmc-card-selector_state-selected .rmc-card-selector__title,
.rmc-card-selector_state-selected .rmc-card-selector__title span {
  color: #fff
}

.rmc-card-selector_device-mobile {
  padding: var(--rmc-spacing-xl) var(--rmc-spacing-3xl);
  gap: var(--rmc-spacing-md)
}

.rmc-card-selector_device-mobile .rmc-card-selector__title {
  font-size: 1.125rem;
  line-height: 1.75rem
}

.rmc-card-selector_device-mobile.rmc-card-selector_layout-horizontal {
  gap: var(--rmc-spacing-xl)
}

.rmc-card-map {
  width: 100%;
  height: 100%;
  border-radius: var(--rmc-radius-sm);
  border: 1px solid #d6dadd;
  padding: var(--rmc-spacing-3xl);
  background-color: #fff;
  transition: .1s linear box-shadow
}

.rmc-card-map:hover {
  box-shadow: 0 20px 24px -4px #10182814, 0 8px 8px -4px #10182808;
  transition: .1s linear box-shadow
}

.rmc-card-map__subtitle {
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: var(--rmc-spacing-md);
  line-height: 1.375rem;
  letter-spacing: .338rem;
  text-transform: uppercase;
  color: #000
}

.rmc-card-map__title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.7rem;
  color: #101828
}

.rmc-card-map__desc {
  font-size: .875rem;
  color: #475467;
  font-weight: 400;
  line-height: 1.25rem;
  margin-top: var(--rmc-spacing-md)
}

.rmc-card-map__contacts {
  border-radius: var(--rmc-radius-sm);
  margin-top: var(--rmc-spacing-xl);
  background-color: #f2f5f7;
  padding: var(--rmc-spacing-xl);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--rmc-spacing-xl)
}

.rmc-card-map__contacts-item {
  display: flex;
  align-items: center;
  gap: var(--rmc-spacing-xs)
}

.rmc-card-map__contacts-item .rmc-svg-icon svg {
  width: auto
}

.rmc-card-map__contacts-item a {
  text-decoration: none;
  color: #596067;
  font-weight: 400;
  line-height: 1.25rem;
  font-size: .875rem
}

.rmc-card-map__group-item {
  border-bottom: 1px solid #e8e8f5;
  padding-bottom: var(--rmc-spacing-xl)
}

.rmc-card-map__group-item:last-child {
  border: unset;
  padding-bottom: 0
}

.rmc-card-three {
  border: 1px solid #d6dadd;
  padding: var(--rmc-spacing-md);
  background-color: #fff;
  border-radius: var(--rmc-radius-sm);
  box-shadow: 0 1px 2px #1018280d
}

.rmc-card-three__wrap {
  border: 1px dashed #d6dadd;
  padding: var(--rmc-spacing-5xl) var(--rmc-spacing-3xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #f9fafb
}

.rmc-card-three__wrap-drag-over {
  border-color: #1b365d
}

.rmc-card-three__wrap-left {
  display: flex;
  align-items: center;
  gap: var(--rmc-spacing-xl)
}

.rmc-card-three__wrap-left .rmc-svg-icon svg {
  width: auto
}

.rmc-card-three__wrap-left input {
  display: none
}

.rmc-card-three__wrap-title {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.75rem;
  color: #161d26
}

.rmc-card-three__wrap-desc {
  color: #596067;
  font-weight: 400;
  line-height: 1.25rem;
  font-size: .875rem
}

.rmc-card-compact {
  height: 100%
}

.rmc-card-compact.rmc-card-map .rmc-card-map__title {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.75rem;
  margin-top: 0;
  color: #101828
}

.rmc-pro-finder-card {
  --rmc-pro-finder-card-title-font-size: 1.5rem;
  --rmc-pro-finder-card-title-line-height: 2rem;
  border-radius: var(--rmc-radius-md);
  border: var(--rmc-spacing-xxs) solid #eaecf0;
  background: #fff;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 1px 2px #1018280d;
  transition: .1s linear box-shadow
}

.rmc-pro-finder-card--list .rmc-pro-finder-card__btn--grid {
  display: none
}

.rmc-pro-finder-card--grid {
  --rmc-pro-finder-card-title-font-size: 1.125rem;
  --rmc-pro-finder-card-title-line-height: 1.75rem
}

.rmc-pro-finder-card--grid .rmc-pro-finder-card__btn--list {
  display: none
}

@media (max-width: 991.98px) {
  .rmc-pro-finder-card .rmc-pro-finder-card__btn--list {
    display: none
  }

  .rmc-pro-finder-card .rmc-pro-finder-card__btn--grid {
    display: block
  }
}

.rmc-pro-finder-card:hover {
  box-shadow: 0 20px 24px -4px #10182814, 0 8px 8px -4px #10182808;
  transition: .1s linear box-shadow
}

.rmc-pro-finder-card__content {
  display: flex;
  padding: 1.5rem;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
  align-self: stretch
}

.rmc-pro-finder-card__information {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  align-self: stretch
}

.rmc-pro-finder-card__avatar {
  display: flex;
  width: 3.5rem;
  min-width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  overflow: hidden
}

.rmc-pro-finder-card__avatar:before {
  position: relative;
  display: block;
  content: url('data:image/svg+xml,%3csvg width="56" height="56" viewBox="0 0 56 56" fill="none" xmlns="http://www.w3.org/2000/svg"%3e%3cpath d="M0 28C0 12.536 12.536 0 28 0C43.464 0 56 12.536 56 28C56 43.464 43.464 56 28 56C12.536 56 0 43.464 0 28Z" fill="%231B365D"/%3e%3cpath d="M0.375 28C0.375 12.7431 12.7431 0.375 28 0.375C43.2569 0.375 55.625 12.7431 55.625 28C55.625 43.2569 43.2569 55.625 28 55.625C12.7431 55.625 0.375 43.2569 0.375 28Z" stroke="%231B365D" stroke-width="0.75"/%3e%3cg mask="url%28%23mask0_1487_4159%29"%3e%3cpath d="M37.5998 32V30.4C37.5944 28.416 36.9769 26.482 35.8314 24.8621C34.686 23.2422 33.0685 22.0153 31.1998 21.349V20.8C31.1998 20.3756 31.0312 19.9686 30.7312 19.6686C30.4311 19.3685 30.0242 19.2 29.5998 19.2H26.3998C25.9755 19.2 25.5685 19.3685 25.2684 19.6686C24.9684 19.9686 24.7998 20.3756 24.7998 20.8V21.349C22.9311 22.0153 21.3136 23.2422 20.1682 24.8621C19.0227 26.482 18.4052 28.416 18.3998 30.4V32C17.9755 32 17.5685 32.1685 17.2684 32.4686C16.9684 32.7686 16.7998 33.1756 16.7998 33.6V36C16.7998 36.4243 16.9684 36.8313 17.2684 37.1313C17.5685 37.4314 17.9755 37.6 18.3998 37.6H37.5998C38.0242 37.6 38.4311 37.4314 38.7312 37.1313C39.0312 36.8313 39.1998 36.4243 39.1998 36V33.6C39.1998 33.1756 39.0312 32.7686 38.7312 32.4686C38.4311 32.1685 38.0242 32 37.5998 32ZM35.9998 30.4V32H31.1998V23.067C32.6239 23.6934 33.8354 24.7198 34.6875 26.0215C35.5395 27.3232 35.9954 28.8442 35.9998 30.4ZM29.5998 20.8V32H26.3998V20.8H29.5998ZM19.9998 30.4C20.0042 28.8442 20.4601 27.3232 21.3121 26.0215C22.1642 24.7198 23.3758 23.6934 24.7998 23.067V32H19.9998V30.4ZM37.5998 36H18.3998V33.6H37.5998V36Z" fill="white"/%3e%3c/g%3e%3c/svg%3e');
  width: 100%
}

@media (max-width: 991.98px) {
  .rmc-pro-finder-card__avatar {
    display: none
  }
}

.rmc-pro-finder-card__title {
  font-size: var(--rmc-pro-finder-card-title-font-size);
  font-style: normal;
  font-weight: 700;
  line-height: var(--rmc-pro-finder-card-title-line-height)
}

.rmc-pro-finder-card--grid .rmc-pro-finder-card__title {
  --rmc-pro-finder-card-title-font-size: 1.125rem;
  --rmc-pro-finder-card-title-line-height: 1.75rem
}

.rmc-pro-finder-card__title a {
  color: inherit;
  text-decoration: none
}

@media (max-width: 991.98px) {
  .rmc-pro-finder-card__title {
    --rmc-pro-finder-card-title-font-size: 1.125rem;
    --rmc-pro-finder-card-title-line-height: 1.75rem
  }
}

.rmc-pro-finder-card__description {
  display: flex;
  align-items: flex-start;
  gap: var(--rmc-spacing-lg);
  align-self: stretch
}

.rmc-pro-finder-card__description-item {
  font-size: .875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.25rem;
  display: flex;
  align-items: center;
  gap: var(--rmc-spacing-lg);
  position: relative
}

.rmc-pro-finder-card__description-item:not(:last-child):after {
  content: "";
  width: .25rem;
  height: .25rem;
  background-image: url('data:image/svg+xml,%3csvg xmlns="http://www.w3.org/2000/svg" width="4" height="4" viewBox="0 0 4 4" fill="none"%3e%3ccircle cx="2" cy="2" r="2" fill="%23C6C9CC"/%3e%3c/svg%3e');
  position: relative;
  display: block
}

.rmc-pro-finder-card__heading {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  flex: 1 0 0
}

.rmc-pro-finder-card__link-buttons {
  display: flex;
  align-items: flex-start;
  gap: var(--rmc-spacing-3xl)
}

.rmc-pro-finder-card--grid .rmc-pro-finder-card__link-buttons {
  padding: 1rem;
  flex-wrap: wrap;
  border-radius: var(--rmc-radius-sm);
  background: #f2f5f7
}

@media (max-width: 991.98px) {
  .rmc-pro-finder-card__link-buttons {
    display: none
  }
}

.rmc-pro-finder-card__footer {
  display: flex;
  padding: var(--rmc-spacing-xl) var(--rmc-spacing-3xl);
  align-items: center;
  gap: var(--rmc-spacing-xl);
  border-radius: 0 0 var(--rmc-border-radius-sm) var(--rmc-border-radius-sm);
  border-top: 1px solid #d6dadd;
  justify-content: space-between
}

.rmc-pro-finder-card--grid .rmc-pro-finder-card__footer {
  justify-content: flex-end
}

.rmc-pro-finder-card__checkmark-text {
  display: flex;
  padding: .25rem 0;
  align-items: center;
  gap: .5rem
}

.rmc-pro-finder-card__checkmark-text__icon {
  width: 1.125rem;
  height: 1.125rem
}

.rmc-pro-finder-card__checkmark-text__content {
  font-size: .875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.25rem
}

.rmc-link-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: var(--rmc-spacing-sm)
}

.rmc-link-button__icon {
  width: 1.25rem;
  height: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center
}

.rmc-link-button__icon img,
.rmc-link-button__icon svg {
  max-width: 100%
}

.rmc-link-button__content {
  font-size: .875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.25rem
}

.rmc-link-button__content a {
  color: inherit;
  text-decoration: none
}

.rmc-booking-description-card {
  display: flex;
  padding: var(--rmc-spacing-3xl);
  flex-direction: column;
  align-items: flex-start;
  gap: var(--rmc-spacing-xl);
  border-radius: var(--rmc-border-radius-xl);
  border: 1px solid #eaedf0;
  background: #f2f5f7
}

.rmc-booking-description-card__heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--rmc-spacing-3xl);
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 700;
  line-height: 2rem
}

.rmc-booking-description-card__section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  align-self: stretch
}

.rmc-booking-description-card__line {
  display: flex;
  padding: var(--rmc-spacing-xl, 1rem) 0;
  justify-content: space-between;
  align-items: flex-start;
  align-self: stretch;
  border-top: 1px solid #d8d8e5
}

.rmc-booking-description-card__line__name {
  font-size: .875rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.25rem
}

.rmc-booking-description-card__line__value {
  color: #4a4a4a;
  text-align: right;
  font-size: .875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.25rem
}

.rmc-product-card {
  border: 1px solid #eaedf0;
  transition: box-shadow .3s ease;
  position: relative
}

.rmc-product-card:hover {
  box-shadow: 0 20px 24px -4px #10182814, 0 8px 8px -4px #10182808;
  transition: box-shadow .3s ease
}

.rmc-product-card__badge {
  position: absolute;
  z-index: 1;
  top: .75rem;
  left: 1rem
}

.rmc-product-card__image {
  max-width: 100%;
  height: 12.5rem;
  aspect-ratio: 1/1;
  object-fit: contain
}

.rmc-product-card__image--cover {
  object-fit: cover;
  width: 100%
}

.rmc-buttons-card {
  --rmc-card-height: 28.125rem;
  --rmc-card-background-image: none;
  position: relative;
  height: var(--rmc-card-height);
  background: linear-gradient(180deg, #0000 27%, #000000e6), var(--rmc-card-background-image);
  background-repeat: no-repeat;
  background-size: cover
}

@media (max-width: 991.98px) {
  .rmc-buttons-card {
    height: 20rem
  }
}

.rmc-buttons-card__content {
  background-color: var(--rmc-white)
}

.rmc-buttons-card__content--animated {
  transition: all .5s ease-in
}

.rmc-buttons-card__content--bottom {
  margin-top: calc(var(--rmc-card-height) - 2 * var(--rmc-spacing-xl));
  transform: translateY(-100%)
}

@media (max-width: 991.98px) {
  .rmc-buttons-card__content--bottom {
    margin-top: calc(var(--rmc-card-height) - 10 * var(--rmc-spacing-xl))
  }
}

.rmc-buttons-card .rmc-btn {
  min-width: 4.1875rem;
  justify-content: center
}

.rmc-link-card {
  box-shadow: 0 1px 3px #1018281a, 0 1px 2px #1018280f;
  border: .063rem solid #f2f5f7;
  background-color: #fff;
  border-radius: .75rem;
  text-decoration: none;
  width: 100%
}

.rmc-yt-card {
  --rmc-yt-card-background: none;
  aspect-ratio: 21/11.5;
  background-image: var(--rmc-yt-card-background);
  background-size: cover
}

.rmc-progress,
.rmc-progress-stacked {
  --rmc-progress-height: 8px;
  --rmc-progress-font-size: .75rem;
  --rmc-progress-bg: #eaedf0;
  --rmc-progress-border-radius: var(--rmc--border-radius-none);
  --rmc-progress-box-shadow: var(--rmc-box-shadow-inset);
  --rmc-progress-bar-color: #fff;
  --rmc-progress-bar-bg: #e4002b;
  --rmc-progress-bar-transition: width .6s ease;
  display: flex;
  height: var(--rmc-progress-height);
  font-size: var(--rmc-progress-font-size);
  background-color: var(--rmc-progress-bg);
  border-radius: var(--rmc-progress-border-radius)
}

.rmc-progress-bar {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--rmc-progress-bar-color);
  text-align: center;
  white-space: nowrap;
  background-color: var(--rmc-progress-bar-bg);
  transition: var(--rmc-progress-bar-transition)
}

@media (prefers-reduced-motion: reduce) {
  .rmc-progress-bar {
    transition: none
  }
}

.rmc-progress-tooltip {
  position: absolute;
  top: 16px;
  right: 0;
  transform: translate(50%);
  pointer-events: none
}

.rmc-progress-bar-striped {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
  background-size: var(--rmc-progress-height) var(--rmc-progress-height)
}

.rmc-progress-stacked>.progress {
  overflow: visible
}

.rmc-progress-stacked>.progress>.progress-bar {
  width: 100%
}

.rmc-progress-bar-animated {
  animation: 1s linear infinite progress-bar-stripes
}

@media (prefers-reduced-motion: reduce) {
  .rmc-progress-bar-animated {
    animation: none
  }
}

.rmc-popover {
  --rmc-popover-zindex: 1070;
  --rmc-popover-max-width: 276px;
  --rmc-popover-font-size: .875rem;
  --rmc-popover-bg: var(--rmc-body-bg);
  --rmc-popover-border-width: var(--rmc-border-width);
  --rmc-popover-border-color: #eaedf0;
  --rmc-popover-border-radius: var(--rmc-border-radius-lg);
  --rmc-popover-inner-border-radius: .375rem;
  --rmc-popover-box-shadow: 0px 4px 6px -2px rgba(16, 24, 40, .031372549), 0px 12px 16px -4px rgba(16, 24, 40, .0784313725);
  --rmc-popover-header-padding-x: 1rem;
  --rmc-popover-header-padding-y: .5rem;
  --rmc-popover-header-font-size: 1rem;
  --rmc-popover-font-weight: 700;
  --rmc-popover-header-color: inherit;
  --rmc-popover-header-bg: var(--rmc-secondary-bg);
  --rmc-popover-body-padding-x: calc(.75rem - var(--rmc-border-width));
  --rmc-popover-body-padding-y: calc(.5rem - var(--rmc-border-width));
  --rmc-popover-body-color: #515d6d;
  --rmc-popover-arrow-width: 1rem;
  --rmc-popover-arrow-height: .5rem;
  --rmc-popover-arrow-border: var(--rmc-popover-border-color);
  z-index: var(--rmc-popover-zindex);
  display: block;
  max-width: var(--rmc-popover-max-width);
  font-family: var(--rmc-font-sans-serif);
  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(--rmc-popover-font-size);
  word-wrap: break-word;
  background-color: var(--rmc-popover-bg);
  background-clip: padding-box;
  border: var(--rmc-popover-border-width) solid var(--rmc-popover-border-color);
  border-radius: var(--rmc-popover-border-radius)
}

.rmc-popover .popover-arrow {
  display: none
}

.rmc-popover .popover-header {
  padding: var(--rmc-popover-header-padding-y) var(--rmc-popover-header-padding-x);
  margin-bottom: 0;
  font-size: var(--rmc-popover-header-font-size);
  color: var(--rmc-popover-header-color);
  background-color: var(--rmc-popover-header-bg);
  border-bottom: var(--rmc-popover-border-width) solid var(--rmc-popover-border-color);
  border-top-left-radius: var(--rmc-popover-inner-border-radius);
  border-top-right-radius: var(--rmc-popover-inner-border-radius)
}

.rmc-popover .popover-header:empty {
  display: none
}

.rmc-popover .popover-body {
  box-shadow: var(--rmc-popover-box-shadow);
  padding: var(--rmc-popover-body-padding-y) var(--rmc-popover-body-padding-x);
  color: var(--rmc-popover-body-color);
  font-weight: var(--rmc-popover-font-weight);
  font-size: .75rem;
  border-radius: var(--rmc-popover-border-radius)
}

.rmc-tooltip {
  --rmc-tooltip-zindex: 1080;
  --rmc-tooltip-max-width: 200px;
  --rmc-tooltip-padding-x: .75rem;
  --rmc-tooltip-padding-y: .5rem;
  --rmc-tooltip-margin: ;
  --rmc-tooltip-font-size: .75rem;
  --rmc-tooltip-color: #ffffff;
  --rmc-popover-font-weight: 700;
  --rmc-tooltip-bg: #1b365d;
  --rmc-tooltip-box-shadow: 0px 12px 16px -4px rgba(16, 24, 40, .08), 0px 4px 6px -2px rgba(16, 24, 40, .03);
  --rmc-tooltip-border-radius: .5rem;
  --rmc-tooltip-opacity: .9;
  --rmc-tooltip-arrow-width: .8rem;
  --rmc-tooltip-arrow-height: .4rem;
  z-index: var(--rmc-tooltip-zindex);
  display: block;
  margin: var(--rmc-tooltip-margin);
  font-family: var(--rmc-font-sans-serif);
  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(--rmc-tooltip-font-size);
  word-wrap: break-word;
  opacity: 0;
  font-weight: var(--rmc-popover-font-weight)
}

.rmc-tooltip.show {
  opacity: var(--rmc-tooltip-opacity)
}

.rmc-tooltip .tooltip-arrow {
  display: block;
  width: var(--rmc-tooltip-arrow-width);
  height: var(--rmc-tooltip-arrow-height)
}

.rmc-tooltip .tooltip-arrow:before {
  position: absolute;
  content: "";
  border-color: transparent;
  border-style: solid
}

.rmc-tooltip .tooltip-inner {
  max-width: var(--rmc-tooltip-max-width);
  padding: var(--rmc-tooltip-padding-y) var(--rmc-tooltip-padding-x);
  color: var(--rmc-tooltip-color);
  text-align: center;
  background-color: var(--rmc-tooltip-bg);
  border-radius: var(--rmc-tooltip-border-radius);
  box-shadow: var(--rmc-popover-box-shadow);
  font-size: .75rem
}

.rmc-rating-block {
  --rmc-rating-block-font-weight: 600;
  --rmc-rating-block-gap: var(--rmc-spacing-lg);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--rmc-rating-block-gap)
}

.rmc-rating-block__title {
  font-size: .875rem;
  font-weight: var(--rmc-rating-block-font-weight)
}

.rmc-rating-block__bars {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: var(--rmc-rating-block-gap)
}

.rmc-rating-bar {
  --rmc-rating-bar-width: 100%;
  --rmc-rating-bar-height: .5rem;
  --rmc-rating-bar-bg: #eaedf0;
  --rmc-rating-bar-progress-bg: #f1be48;
  --rmc-rating-bar-text-color: #636d80;
  --rmc-rating-bar-font-weight: 400;
  --rmc-rating-bar-stars-width: 3.5rem;
  --rmc-rating-bar-count-width: 2.5rem;
  --rmc-rating-bar-gap: var(--rmc-spacing-md);
  display: flex;
  align-items: center;
  gap: var(--rmc-rating-bar-gap)
}

.rmc-rating-bar__stars {
  width: var(--rmc-rating-bar-stars-width);
  display: inline;
  white-space: nowrap
}

.rmc-rating-bar__count {
  width: var(--rmc-rating-bar-count-width);
  text-align: right;
  display: inline;
  white-space: nowrap
}

.rmc-rating-bar__stars,
.rmc-rating-bar__count {
  font-size: .75rem;
  color: var(--rmc-rating-bar-text-color);
  font-weight: var(--rmc-rating-bar-font-weight);
  overflow: hidden;
  text-overflow: ellipsis
}

.rmc-rating-bar__progress-bar {
  width: var(--rmc-rating-bar-width);
  height: var(--rmc-rating-bar-height);
  background-color: var(--rmc-rating-bar-bg);
  position: relative;
  overflow: hidden;
  flex-grow: 1
}

.rmc-rating-bar__progress {
  height: var(--rmc-rating-bar-height);
  background-color: var(--rmc-rating-bar-progress-bg);
  position: absolute;
  left: 0;
  top: 0
}

.rmc-rating-overall {
  --rmc-rating-overall-gap: var(--rmc-spacing-sm);
  --rmc-rating-overall-rating-gap: var(--rmc-spacing-sm);
  --rmc-rating-overall-color: #000000;
  --rmc-rating-overall-count-color: #575b61;
  display: flex;
  align-items: center;
  gap: var(--rmc-rating-overall-gap)
}

.rmc-rating-overall__reviewer {
  font-size: .75rem;
  color: var(--rmc-rating-overall-color)
}

.rmc-rating-overall__rating {
  display: flex;
  gap: var(--rmc-rating-overall-rating-gap)
}

.rmc-rating-overall__count {
  font-size: .75rem;
  font-weight: 400;
  color: var(--rmc-rating-overall-count-color)
}

.rmc-rating-overall__overall-rating {
  font-size: calc(1.275rem + .3vw);
  font-weight: 700;
  color: var(--rmc-rating-overall-color)
}

@media (min-width: 1200px) {
  .rmc-rating-overall__overall-rating {
    font-size: 1.5rem
  }
}

.rmc-rating-star {
  --rmc-rating-star-width: 1.438rem;
  --rmc-rating-star-height: 1.563rem;
  --rmc-rating-star-full-bg-image: url("data:image/svg+xml, %3csvg xmlns='http://www.w3.org/2000/svg' width='22' height='21' viewBox='0 0 22 21' fill='none'%3e%3cpath d='M10.9999 17.2509L5.4879 20.5773C5.3279 20.6662 5.16601 20.7054 5.00223 20.6949C4.83823 20.6843 4.68957 20.6317 4.55623 20.5373C4.4229 20.4426 4.32179 20.3185 4.2529 20.1649C4.18401 20.0114 4.17401 19.8408 4.2229 19.6533L5.6769 13.3893L0.822231 9.1636C0.67512 9.03893 0.582676 8.89527 0.544898 8.7326C0.506898 8.56993 0.514676 8.40993 0.568231 8.2526C0.616231 8.10104 0.701787 7.97493 0.824898 7.87427C0.947787 7.77382 1.10523 7.71304 1.29723 7.69193L7.71523 7.12793L10.2102 1.2056C10.2865 1.0376 10.3971 0.910822 10.5422 0.825267C10.6873 0.739933 10.8399 0.697266 10.9999 0.697266C11.1599 0.697266 11.3125 0.739933 11.4576 0.825267C11.6027 0.910822 11.7133 1.0376 11.7896 1.2056L14.2846 7.12793L20.7026 7.69193C20.8946 7.71304 21.052 7.77382 21.1749 7.87427C21.298 7.97493 21.3863 8.10104 21.4399 8.2526C21.4879 8.40993 21.4929 8.56993 21.4549 8.7326C21.4171 8.89527 21.3247 9.03893 21.1776 9.1636L16.3229 13.3893L17.7852 19.6533C17.8286 19.8408 17.8158 20.0114 17.7469 20.1649C17.678 20.3185 17.5769 20.4426 17.4436 20.5373C17.3102 20.6317 17.1616 20.6843 16.9976 20.6949C16.8338 20.7054 16.6719 20.6662 16.5119 20.5773L10.9999 17.2509Z' fill='%231b365d'/%3e%3c/svg%3e");
  --rmc-rating-star-outline-bg-image: url("data:image/svg+xml, %3csvg xmlns='http://www.w3.org/2000/svg' width='22' height='21' viewBox='0 0 22 21' fill='none'%3e%3cpath d='M10.9999 17.2509L5.4879 20.5773C5.3279 20.6662 5.16601 20.7054 5.00223 20.6949C4.83823 20.6843 4.68957 20.6317 4.55623 20.5373C4.4229 20.4426 4.32179 20.3185 4.2529 20.1649C4.18401 20.0114 4.17401 19.8408 4.2229 19.6533L5.6769 13.3893L0.822231 9.1636C0.67512 9.03893 0.582676 8.89527 0.544898 8.7326C0.506898 8.56993 0.514676 8.40993 0.568231 8.2526C0.616231 8.10104 0.701787 7.97493 0.824898 7.87427C0.947787 7.77382 1.10523 7.71304 1.29723 7.69193L7.71523 7.12793L10.2102 1.2056C10.2865 1.0376 10.3971 0.910822 10.5422 0.825267C10.6873 0.739933 10.8399 0.697266 10.9999 0.697266C11.1599 0.697266 11.3125 0.739933 11.4576 0.825267C11.6027 0.910822 11.7133 1.0376 11.7896 1.2056L14.2846 7.12793L20.7026 7.69193C20.8946 7.71304 21.052 7.77382 21.1749 7.87427C21.298 7.97493 21.3863 8.10104 21.4399 8.2526C21.4879 8.40993 21.4929 8.56993 21.4549 8.7326C21.4171 8.89527 21.3247 9.03893 21.1776 9.1636L16.3229 13.3893L17.7852 19.6533C17.8286 19.8408 17.8158 20.0114 17.7469 20.1649C17.678 20.3185 17.5769 20.4426 17.4436 20.5373C17.3102 20.6317 17.1616 20.6843 16.9976 20.6949C16.8338 20.7054 16.6719 20.6662 16.5119 20.5773L10.9999 17.2509Z' fill='none' stroke='%231b365d'/%3e%3c/svg%3e");
  --rmc-rating-star-margin-x: .25rem;
  position: relative;
  margin: 0 var(--rmc-rating-star-margin-x);
  width: var(--rmc-rating-star-width);
  height: var(--rmc-rating-star-height)
}

.rmc-rating-star__full,
.rmc-rating-star__outline {
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  overflow: hidden
}

.rmc-rating-star__full {
  background-image: var(--rmc-rating-star-full-bg-image)
}

.rmc-rating-star__outline {
  background-image: var(--rmc-rating-star-outline-bg-image);
  width: 100%
}

.rmc-rating-star_sm {
  --rmc-rating-star-width: .938rem;
  --rmc-rating-star-height: .75rem;
  --rmc-rating-star-margin-x: 0rem;
  --rmc-rating-star-full-bg-image: url("data:image/svg+xml, %3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='11' viewBox='0 0 12 11' fill='none'%3e%3cpath d='M6.00007 9.12547L3.24407 10.7886C3.16407 10.8331 3.08313 10.8527 3.00124 10.8475C2.91924 10.8421 2.8449 10.8159 2.77824 10.7686C2.71157 10.7213 2.66102 10.6592 2.62657 10.5825C2.59213 10.5057 2.58713 10.4204 2.61157 10.3266L3.33857 7.19463L0.911238 5.0818C0.837682 5.01947 0.79146 4.94763 0.772571 4.8663C0.753571 4.78497 0.75746 4.70497 0.784238 4.6263C0.808238 4.55052 0.851015 4.48747 0.912571 4.43713C0.974015 4.38691 1.05274 4.35652 1.14874 4.34597L4.35774 4.06397L5.60524 1.1028C5.64335 1.0188 5.69868 0.955411 5.77124 0.912633C5.84379 0.869967 5.92007 0.848633 6.00007 0.848633C6.08007 0.848633 6.15635 0.869967 6.22891 0.912633C6.30146 0.955411 6.35679 1.0188 6.39491 1.1028L7.6424 4.06397L10.8514 4.34597C10.9474 4.35652 11.0261 4.38691 11.0876 4.43713C11.1491 4.48747 11.1933 4.55052 11.2201 4.6263C11.2441 4.70497 11.2466 4.78497 11.2276 4.8663C11.2087 4.94763 11.1625 5.01947 11.0889 5.0818L8.66157 7.19463L9.39274 10.3266C9.41441 10.4204 9.40802 10.5057 9.37357 10.5825C9.33913 10.6592 9.28857 10.7213 9.22191 10.7686C9.15524 10.8159 9.0809 10.8421 8.99891 10.8475C8.91702 10.8527 8.83607 10.8331 8.75607 10.7886L6.00007 9.12547Z' fill='%231b365d'/%3e%3c/svg%3e");
  --rmc-rating-star-outline-bg-image: url("data:image/svg+xml, %3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='11' viewBox='0 0 12 11' fill='none'%3e%3cpath d='M6.00007 9.12547L3.24407 10.7886C3.16407 10.8331 3.08313 10.8527 3.00124 10.8475C2.91924 10.8421 2.8449 10.8159 2.77824 10.7686C2.71157 10.7213 2.66102 10.6592 2.62657 10.5825C2.59213 10.5057 2.58713 10.4204 2.61157 10.3266L3.33857 7.19463L0.911238 5.0818C0.837682 5.01947 0.79146 4.94763 0.772571 4.8663C0.753571 4.78497 0.75746 4.70497 0.784238 4.6263C0.808238 4.55052 0.851015 4.48747 0.912571 4.43713C0.974015 4.38691 1.05274 4.35652 1.14874 4.34597L4.35774 4.06397L5.60524 1.1028C5.64335 1.0188 5.69868 0.955411 5.77124 0.912633C5.84379 0.869967 5.92007 0.848633 6.00007 0.848633C6.08007 0.848633 6.15635 0.869967 6.22891 0.912633C6.30146 0.955411 6.35679 1.0188 6.39491 1.1028L7.6424 4.06397L10.8514 4.34597C10.9474 4.35652 11.0261 4.38691 11.0876 4.43713C11.1491 4.48747 11.1933 4.55052 11.2201 4.6263C11.2441 4.70497 11.2466 4.78497 11.2276 4.8663C11.2087 4.94763 11.1625 5.01947 11.0889 5.0818L8.66157 7.19463L9.39274 10.3266C9.41441 10.4204 9.40802 10.5057 9.37357 10.5825C9.33913 10.6592 9.28857 10.7213 9.22191 10.7686C9.15524 10.8159 9.0809 10.8421 8.99891 10.8475C8.91702 10.8527 8.83607 10.8331 8.75607 10.7886L6.00007 9.12547Z' fill='none' stroke='%231b365d'/%3e%3c/svg%3e")
}

.rmc-svg-icon {
  display: inline-flex;
  align-items: flex-start
}

.rmc-svg-icon svg {
  display: block
}

.rmc-svg-icon--inherit-size {
  width: inherit;
  height: inherit
}

.rmc-svg-icon--inherit-size svg {
  width: 100%;
  height: auto
}

.rmc-header {
  --rmc-header-background-image: none;
  --rmc-header-background-gradient: linear-gradient(to right, rgba(0, 0, 0, .3), rgba(0, 0, 0, .3));
  --rmc-header-color: #ffffff;
  --rmc-header-border-color: #000000;
  position: relative;
  background-color: var(--rmc-header-background-color);
  background-size: cover;
  background-position: center center;
  color: var(--rmc-header-color)
}

.rmc-header__content {
  padding: var(--rmc-spacing-3xl) 0 var(--rmc-spacing-10xl);
  display: flex;
  flex-direction: column;
  gap: var(--rmc-spacing-xl);
  position: relative;
  z-index: 2
}

@media (max-width: 991.98px) {
  .rmc-header__content {
    padding: var(--rmc-spacing-3xl) 0 var(--rmc-spacing-3xl)
  }
}

.rmc-header__text {
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 300;
  line-height: 2.25rem
}

.rmc-header__image {
  height: 100%;
  position: relative;
  overflow: hidden
}

.rmc-header__image.with-bg {
  background-image: url(https://files.rheem.com/blobazrheem/wp-content/uploads/sites/2/red-circle-bg.png);
  background-size: contain;
  background-position-y: bottom;
  background-repeat: no-repeat
}

.rmc-header__image img {
  position: relative;
  max-width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: 50% 100%;
  bottom: -1px
}

.rmc-header__product-image {
  max-height: 22.5rem;
  max-width: 100%;
  transform: translateY(12%);
  z-index: 1;
  align-self: end
}

.rmc-header-primary {
  --rmc-header-color: #ffffff;
  --rmc-header-background-color: #e4002b;
  background-image: var(--rmc-header-background-gradient), var(--rmc-header-background-image)
}

.rmc-header-primary .rmc-breadcrumbs {
  --rmc-breadcrumbs-text-color: #ffffff
}

.rmc-header-product {
  --rmc-header-color: #ffffff;
  --rmc-header-background-color: #e4002b;
  background-image: var(--rmc-header-background-image), var(--rmc-header-background-gradient);
  background-position: 50% 0%
}

.rmc-header-product .rmc-breadcrumbs {
  --rmc-breadcrumbs-text-color: #ffffff
}

.rmc-header-secondary {
  --rmc-header-color: #000000;
  --rmc-header-border-color: #d6dadd;
  border-top: 1px solid var(--rmc-header-border-color);
  border-bottom: 1px solid var(--rmc-header-border-color);
  background-image: var(--rmc-header-background-image)
}

.rmc-header-secondary .rmc-breadcrumbs {
  --rmc-breadcrumbs-text-color: #000000
}

.rmc-header-secondary_underline {
  --rmc-header-border-color: #000000;
  border-top: unset
}

.rmc-header-grid {
  background-image: url(https://files.rheem.com/blobazrheem/wp-content/uploads/sites/2/header-grid-bg.svg) !important;
  background-size: unset;
  background-position: top center
}

.rmc-header-person {
  --rmc-header-color: #000000;
  --rmc-header-border-color: #d6dadd;
  --rmc-header-person-slider-size: 14.375rem;
  --rmc-header-person-slider-bottom-position: 1.5rem
}

@media (max-width: 767.98px) {
  .rmc-header-person {
    --rmc-header-person-slider-size: 9.375rem;
    --rmc-header-person-slider-bottom-position: .5rem
  }
}

.rmc-header-person__person-image {
  max-width: 100%
}

.rmc-header-person__slider-wrap {
  padding: var(--rmc-spacing-2xl);
  border: 1px dashed #6bbbae;
  border-radius: 50%;
  width: var(--rmc-header-person-slider-size);
  height: var(--rmc-header-person-slider-size);
  position: absolute;
  left: 0;
  bottom: var(--rmc-header-person-slider-bottom-position);
  z-index: 1
}

.rmc-header-person__slider {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: radial-gradient(circle closest-side, #6bbbae 99%, transparent 100%) transparent
}

.rmc-header-person__slider.yellow {
  background: radial-gradient(circle closest-side, #f1be48 99%, transparent 100%) transparent
}

.rmc-header-person__slider_trans-circle {
  border-radius: 50%;
  overflow: hidden;
  background: radial-gradient(circle closest-side, rgba(0, 119, 93, .5) 99%, transparent 100%) transparent
}

@media (max-width: 991.98px) {
  .rmc-header-person__slider_trans-circle .rmc-header-person__slide {
    padding-left: 0;
    padding-right: 0
  }
}

.rmc-header-person__slide {
  position: absolute;
  padding: 1.5rem 1rem 0;
  opacity: 0;
  transition: opacity .7s ease-in-out;
  max-width: 100%;
  max-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%
}

.rmc-header-person__slide img {
  max-width: 100%
}

.rmc-header-person__slide.active {
  opacity: 1
}

@media (min-width: 992px) {
  .rmc-header-person__slide {
    padding: 3rem 0 0
  }
}

.rmc-header-person__person-slider {
  position: relative;
  padding-left: calc(var(--rmc-header-person-slider-size) - 5.125rem)
}

.rmc-header-person__person-slider__image {
  border-radius: 50%;
  aspect-ratio: 1/1;
  width: 100%
}

.rmc-header-person_reverse .rmc-header-person__slider-wrap {
  left: unset;
  right: 0
}

.rmc-header-person_reverse .rmc-header-person__person-slider {
  padding-right: calc(var(--rmc-header-person-slider-size) - 5.125rem);
  padding-left: unset
}

.rmc-header-tertiary {
  --rmc-header-color: #000000;
  --rmc-header-border-color: #ebeef1;
  border-top: 1px solid var(--rmc-header-border-color);
  border-bottom: 1px solid var(--rmc-header-border-color);
  background-image: var(--rmc-header-background-image)
}

.rmc-header-tertiary .rmc-header__content {
  padding: var(--rmc-spacing-3xl) 0 var(--rmc-spacing-3xl)
}

.rmc-smile:after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 300px;
  background-image: url('data:image/svg+xml,<svg width="1728" height="55" viewBox="0 0 1728 55" fill="white" xmlns="http://www.w3.org/2000/svg"><path d="M0 1.79297C136.737 19.5285 522.467 54.9996 841.34 54.9996C1039.28 54.9996 1467.7 44.3583 1728 1.79297L1728 55L0 55Z" stroke="white" stroke-width="2"/></svg>');
  background-size: 100%;
  background-position: center bottom;
  background-repeat: no-repeat
}

.rmc-border-bottom-double {
  position: relative;
  border-bottom: 2px solid #000
}

.rmc-border-bottom-double:after {
  content: "";
  position: absolute;
  bottom: -13px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #000
}

.rmc-smile-double-bordered:after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 300px;
  background-image: url('data:image/svg+xml,<svg width="718" height="45" viewBox="0 0 718 45" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M-1.603 3C75.833 20.4133 199.541 40.4476 356.749 39.3286L356.788 39.3283L356.828 39.3286C514.061 40.4477 642.813 20.4086 719.397 3V45H-2V3Z" stroke-width="2px" stroke="white" fill="white"/><path d="M1.39722 8.00092C77.833 25.4133 201.541 45.4476 356.749 44.3286L356.788 44.3283L356.828 44.3286C512.061 45.4477 640.813 25.4086 717.397 8" stroke="black" stroke-miterlimit="10"/><path d="M1 1.00092C77.4358 18.4133 201.143 38.4476 356.352 37.3286L356.391 37.3283L356.431 37.3286C511.664 38.4477 640.416 18.4086 717 1" stroke="black" stroke-miterlimit="10"/></svg>');
  background-size: 100%;
  background-position: center bottom;
  background-repeat: no-repeat
}

.rmc-smile-double-bordered-2 {
  width: 100%;
  position: absolute;
  bottom: 0;
  overflow: hidden;
  height: 110px
}

.rmc-smile-double-bordered-2:before {
  background-image: url('data:image/svg+xml;charset=utf-8,<svg fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="-1 1 3458 100"><defs><style>.no-scaling { vector-effect: non-scaling-stroke; } path { shape-rendering: geometricPrecision; }<\/style></defs><path d="M0 2C273 35 1049.702 100 1688 100C2084.22 100 2935.54 81.798 3456 2" stroke="black" stroke-width="2" fill="none" class="no-scaling" stroke-linecap="round" stroke-linejoin="round"></path> </svg>');
  content: "";
  position: absolute;
  bottom: 0;
  transform: translate(-50%);
  left: 50%;
  right: 0;
  background-size: 100%;
  background-position: center bottom;
  background-repeat: no-repeat;
  aspect-ratio: 3458/100;
  display: block;
  width: 3458px;
  z-index: 1
}

@media screen and (min-width: 3458px) {
  .rmc-smile-double-bordered-2:before {
    width: 100%
  }
}

.rmc-smile-double-bordered-2:after {
  background-image: url('data:image/svg+xml;charset=utf-8,<svg fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="-1 1 3458 110"><defs><style>.no-scaling { vector-effect: non-scaling-stroke; } path { shape-rendering: geometricPrecision; }<\/style></defs><path d="M0 2C273 35 1049.702 100 1688 100C2084.22 100 2935.54 81.798 3456 2 L3456 110 L0 110 Z" fill="white" stroke="white" stroke-width="2" class="no-scaling" stroke-linecap="round" stroke-linejoin="round"></path><path d="M0 2C273 35 1049.702 100 1688 100C2084.22 100 2935.54 81.798 3456 2" stroke="black" stroke-width="3" fill="none" class="no-scaling" stroke-linecap="round" stroke-linejoin="round"></path></svg>');
  content: "";
  position: absolute;
  bottom: 0;
  transform: translate(-50%);
  left: 50%;
  right: 0;
  background-size: 100%;
  background-position: center bottom;
  background-repeat: no-repeat;
  aspect-ratio: 3458/110;
  display: block;
  width: 3458px
}

@media screen and (min-width: 3458px) {
  .rmc-smile-double-bordered-2:after {
    width: 100%
  }
}

@media (min-width: 992px) {
  .rmc-smile-lg:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 300px;
    background-image: url('data:image/svg+xml,<svg width="1728" height="55" viewBox="0 0 1728 55" fill="white" xmlns="http://www.w3.org/2000/svg"><path d="M0 1.79297C136.737 19.5285 522.467 54.9996 841.34 54.9996C1039.28 54.9996 1467.7 44.3583 1728 1.79297L1728 55L0 55Z" stroke="white" stroke-width="2"/></svg>');
    background-size: 100%;
    background-position: center bottom;
    background-repeat: no-repeat
  }
}

.rmc-header-red-line {
  --rmc-header-color: #000000;
  --rmc-header-border-color: #d6dadd;
  border-top: 1px solid var(--rmc-header-border-color);
  border-bottom: 1px solid var(--rmc-header-border-color);
  background-image: var(--rmc-header-background-image)
}

.rmc-header-red-line__eyebrow {
  margin-bottom: calc(-1 * var(--rmc-spacing-3xl))
}

@media (max-width: 767.98px) {
  .rmc-header-red-line__eyebrow {
    margin-bottom: calc(-1 * var(--rmc-spacing-lg))
  }
}

.rmc-header-red-line__sub-title {
  margin-right: 1.75rem
}

@media (max-width: 767.98px) {
  .rmc-header-red-line__sub-title {
    margin-right: var(--rmc-spacing-2xl)
  }
}

.rmc-header-red-line__block {
  background-color: var(--rmc-brand-primary-fg)
}

@media (max-width: 991.98px) {
  .rmc-header-red-line__block {
    background-color: transparent
  }
}

.rmc-header-red-line__description {
  background-color: var(--rmc-brand-primary-fg)
}

.rmc-header-red-line__slider {
  position: relative
}

.rmc-header-red-line .rmc-header-person__person-slider {
  position: absolute;
  left: 0%;
  top: 0%;
  transform: translateY(-50%)
}

@media (max-width: 1199.98px) {
  .rmc-header-red-line .rmc-header-person__person-slider {
    transform: translateY(-35%)
  }
}

@media (max-width: 991.98px) {
  .rmc-header-red-line .rmc-header-person__person-slider {
    position: static;
    transform: unset
  }
}

.rmc-header-red-line__advantages {
  border-radius: var(--rmc-radius-xl);
  background-color: #fff;
  box-shadow: 0 12px 16px -4px #10182814, 0 4px 6px -2px #10182808
}

.rmc-header-red-line__advantages-link {
  color: #000;
  text-decoration: none
}

.rmc-header-sustainability {
  --rmc-header-color: #000000;
  --rmc-header-border-color: #d6dadd;
  background-image: var(--rmc-header-background-image)
}

html {
  scrollbar-gutter: stable;
  overflow-x: hidden
}

.rmc-section-full-width {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  display: flex;
  align-items: center;
  justify-content: center
}

.rmc-header-fp-all {
  background-image: url(https://files.rheem.com/blobazrheem/wp-content/uploads/sites/2/find-a-pro-header-1.png)
}

.rmc-header-fp-wh {
  background: linear-gradient(0deg, #e46e00, #b50000);
  color: #fff
}

.rmc-header-fp-wh .rmc-breadcrumbs {
  --rmc-breadcrumbs-text-color: #ffffff
}

.rmc-header-fp-hc {
  background: linear-gradient(180deg, #001689, #00bd9e);
  color: #fff
}

.rmc-header-fp-hc .rmc-breadcrumbs {
  --rmc-breadcrumbs-text-color: #ffffff
}

.rmc-header-fp-pspa {
  background-image: url(https://files.rheem.com/blobazrheem/wp-content/uploads/sites/2/find-a-pro-header-1.png)
}

.rmc-header-red-dot {
  position: relative;
  bottom: -.188rem
}

.rmc-header-red-dot-lg {
  position: relative;
  bottom: -.6rem
}

.rmc-header-efficiency .rmc-header-person__slider-wrap {
  padding: var(--rmc-spacing-3xl)
}

.rmc-header-efficiency__slider-wrap {
  width: 480px;
  height: 480px;
  display: flex;
  position: relative
}

.rmc-header-efficiency__slider-slide {
  background: var(--rmc-header-slider-background-image);
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  border-radius: 50%;
  opacity: 0;
  position: absolute;
  transition: opacity .7s ease-in-out
}

.rmc-header-efficiency__slider-slide.active {
  opacity: 1
}

.rmc-header-efficiency .rmc-header-person__slider_trans-circle {
  background: #fff
}

.rmc-header-efficiency .rmc-header-person__slide {
  max-width: 80%
}

@media (min-width: 992px) {
  .rmc-header-efficiency .rmc-header-person__slide {
    padding: 0
  }
}

.rmc-header-efficiency__person-slider {
  position: relative;
  padding-left: calc(var(--rmc-header-person-slider-size) - 5.125rem)
}

.rmc-header-efficiency__person-slider__image {
  border-radius: 50%;
  aspect-ratio: 1/1;
  width: 100%
}

.rmc-header-intro {
  margin-bottom: -.3rem;
  margin-left: .25rem
}

.rmc-header-intro-left-shift {
  margin-left: .4rem
}

.rmc-header-intro-bottom-shift {
  margin-bottom: -1.3rem
}

.rmc-header-intro-top-shift {
  margin-top: -.75rem
}

@media (max-width: 991.98px) {
  .rmc-header-intro {
    margin-left: .1rem
  }

  .rmc-header-intro-left-shift {
    margin-left: .2rem
  }

  .rmc-header-intro-bottom-shift {
    margin-bottom: -.7rem
  }

  .rmc-header-intro-top-shift {
    margin-top: -.35rem
  }
}

.rmc-header-confident-dot-shift {
  margin-left: -.45rem
}

.rmc-header-confident-dot-shift__narrow {
  margin-left: -.65rem
}

@media (max-width: 991.98px) {
  .rmc-header-confident-dot-shift {
    margin-left: -.25rem
  }
}

.rmc-banner__image img {
  max-width: 100%
}

.rmc-banner-1__text__title {
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 44px
}

.rmc-banner-1__text__body {
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 28px;
  border-left: 1px solid rgba(0, 0, 0, .4)
}

@media (max-width: 991.98px) {
  .rmc-banner-1__text__body {
    border: none
  }
}

.rmc-banner-2__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .75rem;
  flex: 1 0 0
}

@media (max-width: 991.98px) {
  .rmc-banner-2__text {
    gap: var(--rmc-spacing-xs)
  }
}

.rmc-banner-2__text__eyebrow {
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.375rem;
  letter-spacing: .3375rem;
  text-transform: uppercase
}

@media (max-width: 991.98px) {
  .rmc-banner-2__text__eyebrow {
    font-size: .875rem;
    font-style: normal;
    font-weight: 500;
    line-height: 1.375rem;
    letter-spacing: .2625rem;
    text-transform: uppercase
  }
}

.rmc-banner-2__text__title {
  font-size: 4.5rem;
  font-style: normal;
  font-weight: 700;
  line-height: 5.625rem
}

@media (max-width: 991.98px) {
  .rmc-banner-2__text__title {
    font-size: 2.25rem;
    font-style: normal;
    font-weight: 700;
    line-height: 2.75rem
  }
}

.rmc-banner-2__text__body {
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 300;
  line-height: 2.25rem
}

@media (max-width: 991.98px) {
  .rmc-banner-2__text__body {
    font-size: 1rem;
    font-style: normal;
    font-weight: 300;
    line-height: 1.5rem
  }
}

.rmc-banner-3__image {
  order: 1
}

@media (max-width: 991.98px) {
  .rmc-banner-3__image {
    order: 2
  }
}

.rmc-banner-3__image img {
  max-width: 100%
}

.rmc-banner-3__text {
  order: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .75rem;
  flex: 1 0 0
}

@media (max-width: 991.98px) {
  .rmc-banner-3__text {
    order: 1
  }
}

.rmc-banner-3__text__title img {
  max-height: 5.5rem;
  max-width: 100%
}

.rmc-banner-3__text__body {
  color: #4a4a4a;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 300;
  line-height: 2.25rem
}

@media (max-width: 991.98px) {
  .rmc-banner-3__text__body {
    font-size: 1rem;
    font-style: normal;
    font-weight: 300;
    line-height: 1.5rem
  }
}

.rmc-banner-4__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .75rem;
  flex: 1 0 0
}

.rmc-banner-4__text__eyebrow {
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.375rem;
  letter-spacing: .3375rem;
  text-transform: uppercase
}

@media (max-width: 991.98px) {
  .rmc-banner-4__text__eyebrow {
    font-size: .875rem;
    font-style: normal;
    font-weight: 500;
    line-height: 1.375rem;
    letter-spacing: .2625rem;
    text-transform: uppercase
  }
}

.rmc-banner-4__text__title {
  font-size: 3rem;
  font-style: normal;
  font-weight: 700;
  line-height: 3.75rem
}

@media (max-width: 991.98px) {
  .rmc-banner-4__text__title {
    font-size: 2.25rem;
    font-style: normal;
    font-weight: 700;
    line-height: 2.75rem
  }
}

.rmc-banner-4__text__body {
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 300;
  line-height: 2.25rem
}

@media (max-width: 991.98px) {
  .rmc-banner-4__text__body {
    font-size: 1rem;
    font-style: normal;
    font-weight: 300;
    line-height: 1.5rem
  }
}

.rmc-image-rounded {
  clip-path: circle()
}

.rmc-quote-section-1 {
  --rmc-quote-section-background-image: none;
  background-image: var(--rmc-quote-section-background-image);
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #f9fafb
}

.rmc-quote-section-1 .carousel-inner {
  padding-bottom: 5rem
}

.rmc-quote-section-1 .carousel-indicators [data-bs-target] {
  background-color: #e4002b;
  width: .5rem;
  height: .5rem;
  border-radius: 50%;
  margin: 0 .325rem
}

.rmc-quote-section-1__video {
  width: 29rem;
  height: 16rem
}

@media (max-width: 575.98px) {
  .rmc-quote-section-1__video {
    width: 22rem;
    height: 12rem
  }
}

.rmc-quote-section-1__image {
  width: 12.5rem;
  height: 12.5rem;
  border-radius: 50%;
  object-fit: cover;
  border: 1px dashed #596067;
  padding: var(--rmc-spacing-2xl)
}

.rmc-quote-section-1__image img {
  max-width: 100%
}

.rmc-quote-section-1__image__square {
  width: 20rem;
  border-radius: var(--rmc-radius-xl)
}

.rmc-quote-section-1__text {
  display: flex;
  flex-direction: column;
  gap: var(--rmc-spacing-xl)
}

.rmc-quote-section-1__text__title {
  font-size: 1.875rem;
  font-style: normal;
  font-weight: 300;
  line-height: 2.375rem
}

@media (max-width: 991.98px) {
  .rmc-quote-section-1__text__title {
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 300;
    line-height: 2.25rem
  }
}

.rmc-quote-section-1__text__description {
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.5rem
}

.rmc-quote-section-1__text__metadata {
  font-size: .875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.25rem
}

.rmc-quote-section-1__text__section-title {
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.375rem;
  letter-spacing: .3375rem;
  text-transform: uppercase
}

.rmc-quote-overline {
  border-top: 1px solid #515d6d
}

.rmc-story {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-shrink: 0;
  position: relative;
  overflow-wrap: anywhere;
  -webkit-hyphens: auto;
  hyphens: auto;
  border-radius: var(--rmc-radius-xl);
  box-shadow: 0 1px 3px #1018281a, 0 1px 2px #1018280f;
  transition: .1s linear box-shadow
}

@media (max-width: 575.98px) {
  .rmc-story {
    overflow: hidden;
    flex-direction: row;
    align-items: stretch;
    position: relative;
    display: flex;
    padding: 0;
    box-shadow: 0 1px 3px #1018281a, 0 1px 2px #1018280f;
    max-height: 5.7rem
  }

  .rmc-story .rmc-story__content {
    padding: var(--rmc-spacing-xl) var(--rmc-spacing-3xl) var(--rmc-spacing-xl) var(--rmc-spacing-xl)
  }

  .rmc-story .rmc-story__content__title {
    font-size: 1rem;
    line-height: 1.5rem;
    text-overflow: ellipsis;
    overflow: hidden;
    height: var(--rmc-spacing-6xl)
  }

  .rmc-story .rmc-story__image {
    max-width: 9rem;
    position: relative;
    display: flex;
    align-self: stretch;
    border-radius: var(--rmc-radius-xl) 0 0 var(--rmc-radius-xl)
  }
}

.rmc-story:hover {
  box-shadow: 0 20px 24px -4px #10182814, 0 8px 8px -4px #10182808;
  transition: .1s linear box-shadow
}

.rmc-story__image {
  width: 100%;
  height: 0;
  padding-bottom: 65%;
  overflow: hidden;
  border-radius: var(--rmc-radius-xl) var(--rmc-radius-xl) 0 0
}

.rmc-story__image--position-top img {
  object-position: top
}

.rmc-story__image img {
  max-width: 100%;
  object-fit: cover
}

.rmc-story__image__play-icon {
  position: relative
}

.rmc-story__image__play-icon:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 54px;
  height: 54px;
  background-image: url(https://files.rheem.com/blobazrheem/wp-content/uploads/sites/2/play_circle.svg);
  background-size: cover;
  background-repeat: no-repeat
}

.rmc-story__content {
  display: flex;
  padding: var(--rmc-spacing-xl) var(--rmc-spacing-3xl) var(--rmc-spacing-3xl) var(--rmc-spacing-3xl);
  flex-direction: column;
  align-items: flex-start;
  gap: var(--rmc-spacing-3xl);
  flex: 1 0 0;
  align-self: stretch
}

.rmc-story__content__title {
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.75rem;
  margin-bottom: var(--rmc-spacing-xs)
}

@media (min-width: 992px) {
  .rmc-story__content__title {
    font-size: 1.875rem;
    font-style: normal;
    font-weight: 700;
    line-height: 2.375rem
  }
}

.rmc-story__content__text {
  font-size: .875rem;
  font-style: normal;
  font-weight: 300;
  line-height: 1.25rem
}

@media (min-width: 992px) {
  .rmc-story__content__text {
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 300;
    line-height: 1.75rem
  }
}

.rmc-story__content__list ul {
  padding-left: 1.8rem;
  margin: 0
}

.rmc-story__content__actions {
  overflow: hidden;
  color: #575b61;
  text-overflow: ellipsis;
  font-size: .75rem;
  font-style: normal;
  font-weight: 300;
  line-height: 1.125rem
}

.rmc-story_md {
  height: 100%
}

.rmc-story_md .rmc-story__image {
  height: auto;
  padding-bottom: 0
}

.rmc-story_md .rmc-story__image img {
  width: 100%;
  aspect-ratio: 21.5/13
}

.rmc-story_md .rmc-story__content {
  padding: var(--rmc-spacing-xl);
  gap: var(--rmc-spacing-lg);
  justify-content: space-between
}

.rmc-story_md .rmc-story__content__title {
  font-size: 1.125rem;
  line-height: 1.75rem
}

.rmc-story_md .rmc-story__content__text {
  font-size: .875rem;
  line-height: 1.5rem
}

@media (max-width: 575.98px) {
  .rmc-story_md {
    overflow: hidden;
    flex-direction: row;
    align-items: stretch;
    position: relative;
    display: flex;
    padding: 0;
    box-shadow: 0 1px 3px #1018281a, 0 1px 2px #1018280f;
    max-height: 5.7rem
  }

  .rmc-story_md .rmc-story__content {
    padding: var(--rmc-spacing-xl) var(--rmc-spacing-3xl) var(--rmc-spacing-xl) var(--rmc-spacing-xl)
  }

  .rmc-story_md .rmc-story__content__title {
    font-size: 1rem;
    line-height: 1.5rem;
    text-overflow: ellipsis;
    overflow: hidden;
    height: var(--rmc-spacing-6xl)
  }

  .rmc-story_md .rmc-story__image {
    max-width: 9rem;
    position: relative;
    display: flex;
    align-self: stretch;
    border-radius: var(--rmc-radius-xl) 0 0 var(--rmc-radius-xl)
  }
}

.rmc-story_auto {
  height: 100%;
  max-height: unset !important
}

.rmc-story_auto .rmc-story__image {
  height: auto;
  padding-bottom: 0
}

.rmc-story_auto .rmc-story__image img {
  width: 100%;
  min-height: 100%;
  object-fit: cover;
  aspect-ratio: 21.5/9
}

.rmc-story_auto .rmc-story__content {
  padding: var(--rmc-spacing-xl);
  gap: var(--rmc-spacing-lg);
  justify-content: space-between
}

.rmc-story_auto .rmc-story__content__title {
  font-size: 1.125rem;
  line-height: 1.75rem
}

.rmc-story_auto .rmc-story__content__text {
  font-size: .875rem;
  line-height: 1.5rem
}

@media (max-width: 575.98px) {
  .rmc-story_auto {
    overflow: hidden;
    flex-direction: row;
    align-items: stretch;
    position: relative;
    display: flex;
    padding: 0;
    box-shadow: 0 1px 3px #1018281a, 0 1px 2px #1018280f;
    max-height: 5.7rem
  }

  .rmc-story_auto .rmc-story__content {
    padding: var(--rmc-spacing-xl) var(--rmc-spacing-3xl) var(--rmc-spacing-xl) var(--rmc-spacing-xl)
  }

  .rmc-story_auto .rmc-story__content__title {
    font-size: 1rem;
    line-height: 1.5rem;
    text-overflow: ellipsis;
    overflow: hidden;
    height: var(--rmc-spacing-6xl)
  }

  .rmc-story_auto .rmc-story__image {
    max-width: 9rem;
    position: relative;
    display: flex;
    align-self: stretch;
    border-radius: var(--rmc-radius-xl) 0 0 var(--rmc-radius-xl)
  }
}

.rmc-story-two {
  height: 100%
}

@media (max-width: 575.98px) {
  .rmc-story-two {
    max-height: unset
  }
}

.rmc-story-two .rmc-story__image {
  padding-bottom: 33%;
  border-radius: var(--rmc-radius-xl) var(--rmc-radius-xl) 0 0
}

.rmc-story-two .rmc-story__image img {
  width: 100%
}

.rmc-story-small {
  box-shadow: 0 1px 3px #1018281a, 0 1px 2px #1018280f;
  border-radius: var(--rmc-radius-xl);
  border: 1px solid #f2f5f7;
  background-color: #fff;
  cursor: pointer;
  height: 100%
}

.rmc-story-small__image {
  position: relative;
  min-height: 100%;
  min-width: 8.25rem;
  overflow: hidden;
  border-radius: var(--rmc-radius-xl)
}

.rmc-story-small__image>img {
  object-fit: cover;
  height: 100%;
  width: 100%
}

.rmc-story-small__icon {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center
}

.rmc-locations__header {
  border-top: 1px solid #ebeef1;
  border-bottom: 1px solid #ebeef1
}

.rmc-locations__header h1,
.rmc-locations__header .h1 {
  color: #000;
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 5.625rem;
  margin-bottom: var(--rmc-spacing-xs)
}

@media (max-width: 767.98px) {

  .rmc-locations__header h1,
  .rmc-locations__header .h1 {
    font-size: 2.25rem;
    line-height: 2.75rem
  }
}

.rmc-locations__header p {
  color: #333941;
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 2.25rem;
  margin-bottom: var(--rmc-spacing-none)
}

@media (max-width: 767.98px) {
  .rmc-locations__header p {
    font-size: 1rem;
    line-height: 1.5rem
  }
}

.rmc-locations__filter-select {
  min-width: 20rem
}

.rmc-locations__map-wrap {
  border-top: 1px solid #d6dadd;
  border-bottom: 1px solid #d6dadd;
  width: 100%;
  position: relative
}

.rmc-locations__map {
  width: 100%;
  height: 61.25rem
}

@media (max-width: 991.98px) {
  .rmc-locations__map {
    height: 30rem
  }
}

@media (max-width: 767.98px) {
  .rmc-locations__map {
    height: 14rem
  }
}

.rmc-locations__btns {
  position: absolute;
  bottom: 3rem;
  right: 3rem;
  z-index: 1
}

@media (max-width: 767.98px) {
  .rmc-locations__btns {
    bottom: 0rem;
    right: 1.25rem
  }
}

.rmc-locations__btns-nav,
.rmc-locations__btns-zoom {
  cursor: pointer;
  width: 4rem;
  height: 3.5rem;
  background-color: #fff;
  border: 1px solid #d6dadd;
  border-radius: .375rem;
  box-shadow: 0 4px 6px -2px #10182808, 0 12px 16px -4px #10182814;
  display: flex;
  align-items: center;
  justify-content: center
}

.rmc-locations__btns-nav .rmc-svg-icon,
.rmc-locations__btns-zoom .rmc-svg-icon {
  width: auto;
  height: auto
}

.rmc-locations__map-info {
  display: none;
  position: absolute
}

.rmc-locations__btns-zoom {
  height: 7rem;
  flex-direction: column
}

.rmc-locations__btns-zoom .rmc-svg-icon {
  display: block
}

.rmc-locations__btns-zoom hr {
  background-color: #d6dadd;
  width: calc(100% - 1rem)
}

.rmc-locations__cards-text h3,
.rmc-locations__cards-text .h3 {
  color: #000;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.375rem;
  margin-bottom: var(--rmc-spacing-none);
  letter-spacing: .2rem
}

.rmc-locations__cards-text p {
  color: #000;
  font-size: .875rem;
  font-weight: 300;
  line-height: 1.25rem;
  margin-bottom: var(--rmc-spacing-none)
}

.rmc-locations__card {
  cursor: pointer
}

.rmc-video-map .rmc-locations__map {
  width: 100%;
  height: 45rem
}

@media (max-width: 767.98px) {
  .rmc-video-map .rmc-locations__map {
    height: 26.25rem
  }
}

.rmc-video-map .rmc-slider {
  --rmc-item-inline-width: 26.25rem
}

@media (max-width: 991.98px) {
  .rmc-video-map__story .rmc-slider-item.item-inline {
    flex: 1 0 26.25rem
  }
}

@media (max-width: 575.98px) {
  .rmc-video-map__story .rmc-slider-item.item-inline {
    flex: 1 0 100%
  }
}

@media (max-width: 575.98px) {
  .rmc-video-map__story .rmc-slider-item.item-inline:first-child {
    margin-left: 0
  }
}

@media (max-width: 575.98px) {
  .rmc-video-map__story .rmc-slider-item.item-inline:last-child {
    margin-right: 0
  }
}

@media (max-width: 575.98px) {
  .rmc-video-map__story {
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    touch-action: pan-y;
    -webkit-overflow-scrolling: touch;
    height: 16.75rem
  }

  .rmc-video-map__story .rmc-section-full-width {
    width: auto;
    margin-left: unset
  }

  .rmc-video-map__story .rmc-slider__slides {
    flex-direction: column
  }
}

.rmc-pagination {
  --rmc-pagination-padding-x: var(--rmc-spacing-md);
  --rmc-pagination-padding-y: var(--rmc-spacing-md);
  --rmc-pagination-font-size: 1rem;
  --rmc-pagination-color: #4a4a4a;
  --rmc-pagination-bg: var(--rmc-body-bg);
  --rmc-pagination-border-width: none;
  --rmc-pagination-border-color: var(--rmc-border-color);
  --rmc-pagination-border-radius: var(--rmc-radius-md);
  --rmc-pagination-hover-color: var(--rmc-link-hover-color);
  --rmc-pagination-hover-bg: var(--rmc-tertiary-bg);
  --rmc-pagination-hover-border-color: var(--rmc-border-color);
  --rmc-pagination-focus-color: var(--rmc-link-hover-color);
  --rmc-pagination-focus-bg: var(--rmc-secondary-bg);
  --rmc-pagination-focus-box-shadow: 0 0 0 .25rem rgba(13, 110, 253, .25);
  --rmc-pagination-active-color: #ffffff;
  --rmc-pagination-active-bg: #1b365d;
  --rmc-pagination-active-border-color: #0d6efd;
  --rmc-pagination-disabled-color: var(--rmc-secondary-color);
  --rmc-pagination-disabled-bg: var(--rmc-secondary-bg);
  --rmc-pagination-disabled-border-color: var(--rmc-border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 0;
  list-style: none
}

.rmc-page-link {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: var(--rmc-pagination-padding-y) var(--rmc-pagination-padding-x);
  font-size: var(--rmc-pagination-font-size);
  color: var(--rmc-pagination-color);
  text-decoration: none;
  background-color: var(--rmc-pagination-bg);
  border: var(--rmc-pagination-border-width) solid var(--rmc-pagination-border-color);
  transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
  width: var(--rmc-spacing-5xl);
  font-size: .875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.25rem
}

@media (prefers-reduced-motion: reduce) {
  .rmc-page-link {
    transition: none
  }
}

.rmc-page-link:hover {
  z-index: 2;
  color: var(--rmc-pagination-hover-color);
  background-color: var(--rmc-pagination-hover-bg);
  border-color: var(--rmc-pagination-hover-border-color)
}

.rmc-page-link.active,
.active>.rmc-page-link {
  z-index: 3;
  color: var(--rmc-pagination-active-color);
  background-color: var(--rmc-pagination-active-bg);
  border-color: var(--rmc-pagination-active-border-color)
}

.rmc-page-link.disabled,
.disabled>.rmc-page-link {
  color: var(--rmc-pagination-disabled-color);
  pointer-events: none;
  background-color: var(--rmc-pagination-disabled-bg);
  border-color: var(--rmc-pagination-disabled-border-color)
}

.rmc-page-item {
  display: flex
}

.rmc-page-item:not(:first-child) .page-link {
  margin-left: calc(var(--rmc-border-width) * -1)
}

.rmc-page-item .rmc-page-link {
  border-radius: var(--rmc-pagination-border-radius)
}

.rmc-page-item:first-child .rmc-svg-icon {
  display: block;
  transform: rotate(180deg)
}

.rmc-pagination-lg {
  --rmc-pagination-padding-x: 1.5rem;
  --rmc-pagination-padding-y: .75rem;
  --rmc-pagination-font-size: 1.25rem;
  --rmc-pagination-border-radius: var(--rmc-border-radius-lg)
}

.rmc-pagination-sm {
  --rmc-pagination-padding-x: .5rem;
  --rmc-pagination-padding-y: .25rem;
  --rmc-pagination-font-size: .875rem;
  --rmc-pagination-border-radius: var(--rmc-border-radius-sm)
}

@keyframes fadeinout {
  0% {
    opacity: 0
  }

  50% {
    opacity: 1
  }

  to {
    opacity: 0
  }
}

.rmc-header-navigation {
  position: relative
}

.rmc-header-navigation ul {
  list-style-type: none;
  padding: 0;
  margin: 0
}

.rmc-header-navigation a {
  text-decoration: none
}

.rmc-header-navigation__top {
  width: 100%;
  background-color: #63666a
}

.rmc-header-navigation__top a {
  color: #fff;
  white-space: nowrap
}

.rmc-header-navigation__top-menu ul {
  overflow-x: auto
}

.rmc-header-navigation__top-location span {
  color: #fff;
  cursor: pointer
}

.rmc-header-navigation__main-mobile {
  transform: translate(-100%);
  transition: transform .3s ease;
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 1505;
  background-color: #fff
}

.rmc-header-navigation__main-mobile.active {
  transform: translate(0)
}

.rmc-header-navigation__flat-mobile-menu_icon {
  width: 1rem;
  height: 1rem;
  display: flex;
  align-items: center;
  justify-content: center
}

.rmc-header-navigation__flat-mobile-menu a {
  color: #000
}

.rmc-header-navigation__arrow-left-wrap {
  width: 1.25rem
}

.rmc-header-navigation__mobile-menu {
  flex-grow: 1;
  overflow-y: auto
}

.rmc-header-navigation__mobile-menu a {
  color: #dd0029
}

.rmc-header-navigation__main {
  width: 100%
}

.rmc-header-navigation__main-menu {
  overflow-x: auto
}

.rmc-header-navigation__main-menu li {
  line-height: 1
}

.rmc-header-navigation__main-menu-item {
  display: block;
  border-radius: .375rem;
  border: 1px solid transparent;
  color: #000
}

.rmc-header-navigation__main-menu-item:hover,
.rmc-header-navigation__main-menu-item.active {
  border-color: #94979c
}

@media (max-width: 767.98px) {

  .rmc-header-navigation__main-menu-item:hover,
  .rmc-header-navigation__main-menu-item.active {
    border-color: transparent
  }
}

.rmc-header-navigation__main-menu__right {
  height: 3.5rem;
  position: relative;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden
}

@media (max-width: 767.98px) {
  .rmc-header-navigation__main-menu__right {
    height: 2.5rem
  }
}

.rmc-header-navigation__sub-menu {
  opacity: 0;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translateY(100%);
  transition: opacity .3s ease;
  pointer-events: none;
  background-color: #fff;
  overflow-y: auto;
  z-index: 1502
}

.rmc-header-navigation__sub-menu.active {
  pointer-events: all;
  opacity: 1;
  border-bottom: 1px solid #d6dadd
}

.rmc-header-navigation__sub-menu-link {
  color: #000
}

@media (max-width: 767.98px) {
  .rmc-header-navigation__sub-menu {
    position: fixed;
    z-index: 1506;
    pointer-events: all;
    transform: translate(100%);
    height: calc(100% - 65px);
    top: 65px;
    transition: transform .3s ease
  }

  .rmc-header-navigation__sub-menu.active {
    opacity: 1;
    transform: translate(0)
  }
}

.rmc-header-navigation__main-search {
  flex-grow: 1
}

@media (max-width: 991.98px) {
  .rmc-header-navigation__main-search {
    position: absolute;
    right: 0;
    left: 0;
    opacity: 0;
    transition: opacity .3s ease;
    pointer-events: none;
    width: calc(100% - 3rem)
  }
}

.rmc-header-navigation__main-search.active {
  opacity: 1;
  pointer-events: all
}

.rmc-header-navigation__close,
.rmc-header-navigation__mobile-arrow-btn {
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center
}

@media (max-width: 575.98px) {

  .rmc-header-navigation__item-one h6,
  .rmc-header-navigation__item-one .h6,
  .rmc-header-navigation__item-two h6,
  .rmc-header-navigation__item-two .h6 {
    font-size: 1.125rem
  }
}

@media (max-width: 575.98px) {
  .rmc-header-navigation__item-image {
    width: 2.5rem
  }
}

.rmc-header-navigation__country-items {
  display: grid;
  grid-auto-flow: column;
  grid-column-gap: 2.5rem
}

@media (max-width: 575.98px) {
  .rmc-header-navigation__country-items {
    grid-auto-flow: row;
    grid-template-columns: repeat(2, auto) !important
  }
}

.rmc-header-navigation__country-selector {
  visibility: hidden;
  opacity: 0;
  z-index: 1508;
  position: absolute;
  width: 100%;
  transition: opacity .3s ease-in-out, transform .3s ease-in-out, visibility .3s ease-in-out
}

@media (max-width: 767.98px) {
  .rmc-header-navigation__country-selector {
    position: fixed;
    top: 0;
    height: 100%
  }
}

.rmc-header-navigation__country-selector.active {
  visibility: visible;
  opacity: 1;
  overflow-y: hidden
}

@media (max-width: 767.98px) {
  .rmc-header-navigation__country-selector.active {
    overflow-y: scroll
  }
}

.rmc-footer-link {
  text-decoration: none;
  color: #e4002b
}

.rmc-footer-section-link {
  text-decoration: none;
  color: #202834
}

.rmc-footer-pros-link {
  text-decoration: none;
  color: #394754
}

.rmc-footer-pros-link--all {
  color: #596067
}

.rmc-footer-logo {
  max-width: 150px
}

.rmc-footer-app-store {
  max-height: 32px
}

@media (max-width: 767.98px) {
  .rmc-footer-app-store {
    max-height: 44px
  }
}

.rmc-footer-google-play {
  max-height: 32px
}

@media (max-width: 767.98px) {
  .rmc-footer-google-play {
    max-height: 44px
  }
}

.rmc-footer-racing {
  max-height: 47px
}

.rmc-footer-copy {
  background-color: #f2f5f7
}

.rmc-footer-copy-text {
  color: #636d80
}

.rmc-footer-copy-link {
  color: #000;
  text-decoration: none
}

.rmc-footer-copy-links {
  flex-wrap: wrap
}

@media (max-width: 767.98px) {
  .rmc-footer-social {
    width: 40px
  }
}

.rmc-search-input {
  width: 100%;
  height: 3.5rem;
  border-radius: .375rem;
  background-color: #fff;
  max-width: 31.25rem;
  margin: 0 auto
}

.rmc-search-input__field {
  width: 100%;
  border: unset;
  background-color: transparent;
  color: #63666a;
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1;
  padding: 0
}

.rmc-search-input__field::placeholder {
  color: #63666a;
  font-weight: 400;
  font-size: 1.125rem
}

.rmc-search-input__field:focus {
  outline: none
}

.rmc-search-input__icon {
  cursor: pointer;
  flex-shrink: 0
}

@media (max-width: 767.98px) {
  .rmc-search-input__button {
    height: 2rem
  }
}

@media (max-width: 767.98px) {
  .rmc-search-input {
    height: 2.5rem
  }
}

.rmc-scrollbar::-webkit-scrollbar {
  height: .25rem
}

.rmc-scrollbar::-webkit-scrollbar-track {
  background: transparent
}

.rmc-scrollbar::-webkit-scrollbar-thumb {
  background-color: #d6dadd;
  border-radius: .625rem
}

.rmc-scrollbar::-webkit-scrollbar-thumb:hover {
  background-color: #c6c9cc
}

@media (max-width: 575.98px) {
  .rmc-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none
  }

  .rmc-scrollbar::-webkit-scrollbar {
    display: none
  }
}

.rmc-icon-toggle {
  --rmc-icon-toggle-border-radius: var(--rmc-radius-sm);
  --rmc-icon-toggle-gap: var(--rmc-radius-md);
  --rmc-icon-toggle-color: #0c151d;
  --rmc-icon-toggle-active-color: #ffffff;
  --rmc-icon-toggle-size: 2rem;
  display: flex;
  gap: var(--rmc-icon-toggle-gap)
}

.rmc-icon-toggle__item label {
  border-radius: var(--rmc-icon-toggle-border-radius);
  color: var(--rmc-icon-toggle-color);
  width: var(--rmc-icon-toggle-size);
  height: var(--rmc-icon-toggle-size);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer
}

.rmc-icon-toggle__item input[type=radio]:checked+label {
  color: var(--rmc-icon-toggle-active-color);
  background-color: var(--rmc-icon-toggle-color)
}

.rmc-icon-toggle__item .rmc-svg-icon {
  width: calc(var(--rmc-icon-toggle-size) * .75);
  height: calc(var(--rmc-icon-toggle-size) * .75)
}

.rmc-input-dropdown__wrapper .ts-wrapper:not(.form-control, .form-select) .ts-control {
  background-size: unset;
  background-position: right 1.1rem center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%2210%22 height=%226%22 viewBox=%220 0 10 6%22 fill=%22none%22%3E%3Cpath d=%22M5.00006 5.54856C4.90743 5.54856 4.8218 5.53356 4.74319 5.50356C4.66444 5.47342 4.58805 5.42134 4.51402 5.34731L0.486106 1.3194C0.351939 1.18523 0.287148 1.02092 0.291731 0.82648C0.296314 0.632035 0.365759 0.467661 0.500064 0.333355C0.63437 0.199049 0.798745 0.131897 0.99319 0.131897C1.18763 0.131897 1.35194 0.199049 1.48611 0.333355L5.00006 3.86106L8.52777 0.333355C8.66208 0.199049 8.82416 0.134257 9.01402 0.13898C9.20374 0.143563 9.36576 0.213007 9.50006 0.347313C9.63437 0.48148 9.70152 0.645786 9.70152 0.84023C9.70152 1.03467 9.63437 1.19905 9.50006 1.33335L5.48611 5.34731C5.41208 5.42134 5.33569 5.47342 5.25694 5.50356C5.17833 5.53356 5.0927 5.54856 5.00006 5.54856Z%22 fill=%22%231B365D%22/%3E%3C/svg%3E");
  background-repeat: no-repeat
}

.rmc-input-dropdown__wrapper .ts-control {
  height: 3.5rem;
  box-shadow: 0 1px 2px #1018280d;
  border: 1px solid #d6dadd;
  border-radius: .375rem;
  padding: var(--rmc-spacing-xl) .875rem;
  outline: none
}

.rmc-input-dropdown__wrapper .ts-control .item,
.rmc-input-dropdown__wrapper .ts-control input {
  color: #000
}

.rmc-input-dropdown__wrapper .ts-control input::placeholder {
  color: #63666a;
  font-size: 1rem
}

.rmc-input-dropdown__wrapper .ts-dropdown {
  margin: 0;
  top: 0;
  background-color: #fff;
  box-shadow: 0 12px 16px -4px #10182814, 0 4px 6px -2px #10182808;
  border: 1px solid #eaedf0;
  border-radius: .375rem;
  padding: .25rem .25rem .375rem .375rem
}

.rmc-input-dropdown__wrapper .ts-dropdown.plugin-dropdown_input {
  padding: var(--rmc-spacing-lg) var(--rmc-spacing-xl)
}

.rmc-input-dropdown__wrapper .ts-dropdown.plugin-dropdown_input .ts-dropdown-content {
  padding: .063rem 0 0 var(--rmc-spacing-sm)
}

.rmc-input-dropdown__wrapper .ts-dropdown-content {
  padding: 0;
  max-height: 20rem
}

.rmc-input-dropdown__wrapper .ts-dropdown-content .option {
  color: #000;
  padding: .625rem var(--rmc-spacing-md);
  border-radius: .375rem 0 0 .375rem;
  margin-bottom: 1px;
  display: flex;
  align-items: center
}

.rmc-input-dropdown__wrapper .ts-dropdown-content .option:last-child {
  margin-bottom: 0
}

.rmc-input-dropdown__wrapper .ts-dropdown-content .option:hover,
.rmc-input-dropdown__wrapper .ts-dropdown-content .option.selected {
  color: #fff;
  background-color: #1b365d
}

.rmc-input-dropdown__wrapper .ts-dropdown-content::-webkit-scrollbar {
  height: .25rem;
  width: .5rem
}

.rmc-input-dropdown__wrapper .ts-dropdown-content::-webkit-scrollbar-track {
  padding: 4px;
  background: transparent
}

.rmc-input-dropdown__wrapper .ts-dropdown-content::-webkit-scrollbar-thumb {
  background-color: #eaedf0;
  border-radius: .625rem;
  border: 2px solid transparent;
  box-sizing: border-box
}

.rmc-input-dropdown__wrapper .ts-dropdown-content::-webkit-scrollbar-thumb:hover {
  background-color: #c6c9cc
}

.rmc-input-dropdown__wrapper .plugin-checkbox_options .ts-dropdown-content .option {
  margin-bottom: 0
}

.rmc-input-dropdown__wrapper .plugin-checkbox_options .ts-dropdown-content .option:hover,
.rmc-input-dropdown__wrapper .plugin-checkbox_options .ts-dropdown-content .option.selected {
  color: #000;
  background-color: #fff
}

.rmc-input-dropdown__wrapper .rmc-form-check .rmc-form-check-input {
  margin-left: 0
}

.rmc-input-dropdown__wrapper .plugin-dropdown_input.focus .ts-dropdown .dropdown-input {
  border-radius: .375rem;
  box-shadow: 0 1px 2px #1018280d;
  padding: .625rem .875rem;
  border: 1px solid #d6dadd;
  height: 3.5rem
}

.rmc-input-dropdown__wrapper .plugin-dropdown_input.focus.dropdown-active .ts-control {
  border: 1px solid #d6dadd
}

.rmc-input-dropdown__wrapper .rmc-input-dropdown__clear {
  top: 26px;
  position: absolute;
  display: block;
  right: 34px;
  display: none;
  cursor: pointer
}

.rmc-residential__popular-item {
  border-radius: var(--rmc-border-radius-xl);
  border: 1px solid #eaedf0;
  text-decoration: none;
  color: #000;
  transition: box-shadow .3s ease-in
}

.rmc-residential__popular-item__image {
  height: 8.5rem
}

.rmc-residential__popular-item:hover {
  box-shadow: 0 20px 24px -4px #10182814, 0 8px 8px -4px #10182808;
  transition: box-shadow .3s ease-in
}

.rmc-residential__category {
  height: 100%;
  position: relative;
  color: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between
}

.rmc-residential__category__image {
  max-width: 100%;
  max-height: 350px;
  width: auto;
  object-fit: contain
}

.rmc-residential__category__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 75%;
  z-index: -1;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px
}

@media (max-width: 991.98px) {
  .rmc-residential__category__background {
    height: 90%
  }
}

.rmc-residential__category__background--air {
  background: linear-gradient(to bottom, #012064 0, #2da4d2, #62d1bf)
}

.rmc-residential__category__background--water {
  background: linear-gradient(to bottom, #e4002b 0, #ffac3b)
}

.rmc-residential-tout {
  --rmc-product-line-tout-bg: none;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: var(--rmc-product-line-tout-bg)
}

.rmc-residential-tout__stamp {
  width: 12.5rem
}

@media (max-width: 991.98px) {
  .rmc-residential-tout__stamp {
    width: 7.5rem
  }
}

.rmc-residential-tout__two-columns .rmc-product-line__eyebrow {
  font-weight: 300
}

.rmc-residential-tout__two-columns .rmc-punch-line {
  height: 100%;
  justify-content: center;
  gap: var(--rmc-spacing-md)
}

.rmc-avatar {
  border-radius: 50%;
  width: 100%
}

.rmc-avatar img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 50%
}

.rmc-shadowed-bg {
  box-shadow: 0 4px 250px #00000059 inset
}

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

.rmc-img-fluid-wrapper {
  max-width: 100%;
  max-height: 100%;
  height: 100%
}

.rmc-img-fluid-wrapper img,
.rmc-img-fluid-wrapper svg {
  max-width: 100%;
  max-height: 100%
}

.rmc-section-bg-image {
  --rmc-section-bg-image: none;
  background-image: var(--rmc-section-bg-image);
  background-size: cover;
  background-repeat: no-repeat
}

.rmc-tout-circles__image-big {
  border-radius: 50%;
  width: 30rem;
  max-width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover
}

.rmc-tout-circles__image-small svg,
.rmc-tout-circles__image-small img {
  width: min(11.7rem, 40%);
  position: absolute;
  bottom: 2.5rem;
  right: -5rem;
  z-index: 1
}

@media (max-width: 575.98px) {

  .rmc-tout-circles__image-small svg,
  .rmc-tout-circles__image-small img {
    bottom: 0;
    right: 0
  }
}

.rmc-table {
  width: 100%;
  min-width: 69.75rem;
  border-collapse: separate;
  border-spacing: 0 var(--rmc-spacing-lg)
}

.rmc-table th {
  text-align: left;
  border-bottom: 1px solid #101c28;
  padding: var(--rmc-spacing-xl);
  text-transform: uppercase;
  letter-spacing: .338rem;
  font-weight: 500;
  font-size: 1.125rem;
  vertical-align: top
}

.rmc-table td {
  text-align: left;
  border-bottom: 1px solid #d6dadd;
  padding: var(--rmc-spacing-2xl) var(--rmc-spacing-xl);
  color: #515d6d
}

.rmc-table td strong {
  font-weight: 700;
  font-size: 1.125rem;
  color: #000
}

@media (max-width: 991.98px) {
  .rmc-table td strong {
    font-size: 1rem
  }
}

.rmc-table__image {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--rmc-spacing-md);
  padding: var(--rmc-spacing-6xl)
}

@media (max-width: 991.98px) {
  .rmc-table__image {
    padding: var(--rmc-spacing-2xl)
  }
}

.rmc-slider {
  --rmc-item-inline-width: 20%;
  position: relative;
  height: 100%
}

.rmc-slider__container {
  position: relative
}

.rmc-slider__container .swiper {
  --swiper-pagination-bottom: 0;
  --swiper-pagination-color: #e4002b;
  --swiper-pagination-bullet-inactive-color: #ffffff;
  --swiper-pagination-bullet-inactive-opacity: 1;
  --swiper-pagination-bullet-width: .5rem;
  --swiper-pagination-bullet-height: .5rem
}

.rmc-slider__container .swiper-slide {
  height: unset
}

.rmc-slider__container .swiper-slide a {
  height: 100%
}

.rmc-slider__container .swiper-pagination {
  position: relative;
  margin-top: var(--rmc-spacing-xl)
}

.rmc-slider__container .swiper-pagination-bullet {
  border: 1px solid #6c757d
}

.rmc-slider__container .swiper-pagination-bullet-active {
  border-color: #e4002b
}

.rmc-slider__container:has(.swiper) {
  transform: translate(0)
}

.rmc-slider__container:has(.swiper) .rmc-slider__next {
  position: fixed;
  right: -20px;
  z-index: 2
}

.rmc-slider__container:has(.swiper) .rmc-slider__next.swiper-button-disabled {
  opacity: 0
}

.rmc-slider__container:has(.swiper) .rmc-slider__next.swiper-button-disabled>button:hover {
  box-shadow: none
}

@media (max-width: 991.98px) {
  .rmc-slider__container:has(.swiper) .rmc-slider__next {
    display: none
  }
}

.rmc-slider__container:has(.swiper) .rmc-slider__prev {
  position: fixed;
  left: -20px;
  z-index: 2
}

@media (max-width: 991.98px) {
  .rmc-slider__container:has(.swiper) .rmc-slider__prev {
    display: none
  }
}

.rmc-slider__container:has(.swiper) .rmc-slider__prev.swiper-button-disabled {
  opacity: 0
}

.rmc-slider__container:has(.swiper) .rmc-slider__prev.swiper-button-disabled>button:hover {
  box-shadow: none
}

.rmc-slider__container:has(.swiper-product-line) {
  padding-left: 0;
  padding-right: 0
}

.rmc-slider__container:has(.swiper-product-line) .swiper-slide a {
  height: auto
}

.rmc-slider__arrow {
  position: absolute;
  z-index: 1;
  top: 50%;
  transform: translateY(-50%)
}

.rmc-slider__next {
  right: 0
}

.rmc-slider__prev {
  left: 0
}

.rmc-slider__slides {
  display: flex;
  align-items: stretch;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  width: 100%;
  position: relative;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch
}

.rmc-slider__slides--vertical {
  flex-direction: column;
  scroll-snap-type: y mandatory;
  overflow-y: auto;
  height: 100%
}

.rmc-slider__slides--vertical .rmc-slider-item {
  flex: 1 0 0
}

.rmc-slider__slides--vertical .rmc-slider-item:first-child {
  margin-left: 0
}

.rmc-slider__slides--vertical .rmc-slider-item:last-child {
  margin-right: 0
}

.rmc-slider::-webkit-scrollbar {
  display: none
}

.rmc-slider-item {
  -webkit-user-select: none;
  user-select: none;
  flex: 0 0 100%;
  width: 100%;
  scroll-snap-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  transition: transform .3s ease;
  position: relative;
  -webkit-overflow-scrolling: touch
}

.rmc-slider-item:first-child {
  margin-left: 50%
}

.rmc-slider-item:last-child {
  margin-right: 50%
}

@media (max-width: 991.98px) {
  .rmc-slider-item {
    min-width: fit-content
  }

  .rmc-slider-item:first-child {
    margin-left: 0
  }

  .rmc-slider-item:last-child {
    margin-right: 0
  }
}

.rmc-slider-item.item-inline {
  scroll-snap-align: center;
  flex: 1 0 var(--rmc-item-inline-width)
}

.rmc-slider-item.item-inline:first-child {
  margin-left: calc(var(--rmc-gutter-x) / 2)
}

.rmc-slider-item.item-inline:last-child {
  margin-right: calc(var(--rmc-gutter-x) / 2)
}

@media (min-width: 576px) {
  .rmc-slider-item.item-inline:first-child {
    margin-left: calc((100vw - 540px) / 2 + var(--rmc-gutter-x) / 2)
  }

  .rmc-slider-item.item-inline:last-child {
    margin-right: calc((100vw - 540px) / 2 + var(--rmc-gutter-x) / 2)
  }
}

@media (min-width: 768px) {
  .rmc-slider-item.item-inline:first-child {
    margin-left: calc((100vw - 720px) / 2 + var(--rmc-gutter-x) / 2)
  }

  .rmc-slider-item.item-inline:last-child {
    margin-right: calc((100vw - 720px) / 2 + var(--rmc-gutter-x) / 2)
  }
}

@media (min-width: 992px) {
  .rmc-slider-item.item-inline:first-child {
    margin-left: calc((100vw - 960px) / 2 + var(--rmc-gutter-x) / 2)
  }

  .rmc-slider-item.item-inline:last-child {
    margin-right: calc((100vw - 960px) / 2 + var(--rmc-gutter-x) / 2)
  }
}

@media (min-width: 1200px) {
  .rmc-slider-item.item-inline:first-child {
    margin-left: calc((100vw - 1140px) / 2 + var(--rmc-gutter-x) / 2)
  }

  .rmc-slider-item.item-inline:last-child {
    margin-right: calc((100vw - 1140px) / 2 + var(--rmc-gutter-x) / 2)
  }
}

@media (min-width: 1400px) {
  .rmc-slider-item.item-inline:first-child {
    margin-left: calc((100vw - 1472px) / 2 + var(--rmc-gutter-x) / 2)
  }

  .rmc-slider-item.item-inline:last-child {
    margin-right: calc((100vw - 1472px) / 2 + var(--rmc-gutter-x) / 2)
  }
}

@media (max-width: 991.98px) {
  .rmc-slider-item.item-inline {
    flex: 1 0 30%
  }
}

.rmc-slider-item .rmc-residential-tout,
.rmc-slider-item .rmc-hvac {
  color: #000;
  height: 100%;
  border-radius: var(--rmc-radius-xl)
}

.rmc-slider-item img {
  -webkit-user-drag: none
}

.rmc-slider__indicators {
  position: absolute;
  bottom: calc(-1 * var(--rmc-spacing-3xl));
  left: 50%;
  transform: translate(-50%);
  display: flex
}

.rmc-slider__indicators .indicator {
  width: .5rem;
  height: .5rem;
  border-radius: 50%;
  border: 1px solid #6c757d;
  background: #fff;
  margin: 0 5px;
  cursor: pointer;
  transition: background .3s
}

.rmc-slider__indicators .indicator.active {
  background: #e4002b;
  border-color: #e4002b
}

.rmc-product-gallery {
  aspect-ratio: 1.5/1;
  width: 100%;
  display: flex;
  gap: var(--rmc-spacing-3xl);
  position: relative
}

@media (max-width: 991.98px) {
  .rmc-product-gallery {
    flex-direction: column
  }
}

.rmc-product-gallery__thumbs {
  order: 1;
  flex-direction: column;
  scroll-snap-type: y mandatory;
  overflow-y: auto;
  height: 100%;
  min-width: fit-content
}

.rmc-product-gallery__thumbs .rmc-slider-item {
  flex: 1 0 0
}

.rmc-product-gallery__thumbs .rmc-slider-item:first-child {
  margin-left: 0
}

.rmc-product-gallery__thumbs .rmc-slider-item:last-child {
  margin-right: 0
}

@media (max-width: 991.98px) {
  .rmc-product-gallery__thumbs {
    order: 2;
    overflow-y: visible;
    min-width: 100%;
    height: fit-content
  }
}

.rmc-product-gallery__thumbs-container {
  display: flex;
  flex-direction: column;
  gap: var(--rmc-spacing-3xl)
}

@media (max-width: 991.98px) {
  .rmc-product-gallery__thumbs-container {
    flex-direction: row
  }
}

.rmc-product-gallery__thumb {
  width: 6.5rem;
  aspect-ratio: 1/1;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f1f1f1;
  border-radius: var(--rmc-border-radius-lg)
}

.rmc-product-gallery__thumb img {
  max-width: 70%;
  max-height: 70%
}

.rmc-product-gallery__image {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f1f1f1;
  border-radius: var(--rmc-border-radius-lg);
  flex-grow: 1;
  order: 2
}

@media (max-width: 991.98px) {
  .rmc-product-gallery__image {
    order: 1
  }
}

.rmc-product-gallery__image img {
  max-width: 70%;
  max-height: 70%
}

@media (min-width: 992px) {
  .rmc-product-gallery--sticky {
    position: sticky;
    top: 1rem
  }
}

.rmc-product-gallery__icon-sustainability {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 6rem
}

@media (max-width: 767.98px) {
  .rmc-product-gallery__icon-sustainability {
    width: 4rem;
    top: .75rem;
    left: 1rem
  }
}

.rmc-product-grid {
  display: grid;
  grid-auto-rows: min-content;
  grid-template-columns: 7fr 5fr;
  grid-template-rows: auto 1fr;
  gap: var(--rmc-spacing-4xl);
  grid-template-areas: "product-gallery product-title" "product-gallery product-content"
}

@media (max-width: 991.98px) {
  .rmc-product-grid {
    grid-template-rows: auto;
    grid-template-columns: 100%;
    grid-template-areas: "product-title" "product-gallery" "product-content"
  }
}

.rmc-product-grid__gallery {
  grid-area: product-gallery
}

.rmc-product-grid__title {
  grid-area: product-title
}

.rmc-product-grid__content {
  grid-area: product-content
}

.rmc-product-variant-selector {
  border: 1px solid #d6dadd;
  padding: var(--rmc-spacing-md) var(--rmc-spacing-xl);
  border-radius: var(--rmc-radius-sm);
  text-align: center;
  transition: box-shadow .3s ease-in;
  height: auto;
  width: min-content;
  min-width: 4rem;
  cursor: pointer
}

.rmc-product-variant-selector:hover {
  box-shadow: 0 20px 24px -4px #10182814, 0 8px 8px -4px #10182808;
  transition: box-shadow .3s ease-in
}

.rmc-product-variant-selector.selected {
  color: #fff;
  background-color: #1b365d;
  border-color: #1b365d
}

.rmc-product-card-tool {
  border-radius: var(--rmc-radius-xl);
  border: 1px solid #d6dadd;
  cursor: pointer
}

.rmc-product-card-tool.selected {
  border: 2px solid #575b61
}

.rmc-product-card__description {
  position: relative
}

.rmc-product-card__description ul {
  padding-left: 0;
  list-style: none
}

.rmc-product-card__description ul li {
  padding-left: var(--rmc-spacing-3xl);
  position: relative
}

.rmc-product-card__description ul li:before {
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
  top: .1rem;
  width: 1rem;
  height: 1rem;
  background-image: url('data:image/svg+xml,%3csvg xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewBox="0 0 18 18" fill="none"%3e%3cmask id="mask0_2375_3004" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="18" height="18"%3e%3crect width="18" height="18" fill="%23D9D9D9"/%3e%3c/mask%3e%3cg mask="url%28%23mask0_2375_3004%29"%3e%3cpath d="M7.12687 11.8395L13.824 5.13754C13.9192 5.04779 14.0305 5.00173 14.1577 4.99935C14.285 4.99698 14.3975 5.04329 14.4952 5.13829C14.593 5.23642 14.6419 5.34967 14.6419 5.47804C14.6419 5.60654 14.593 5.71804 14.4952 5.81254L7.53805 12.7737C7.42105 12.8905 7.28399 12.949 7.12687 12.949C6.96987 12.949 6.83287 12.8905 6.71587 12.7737L3.4933 9.55092C3.4003 9.45742 3.35455 9.34598 3.35605 9.2166C3.35743 9.08735 3.40724 8.97386 3.50549 8.8761C3.60362 8.78148 3.71612 8.73417 3.84299 8.73417C3.96974 8.73417 4.08199 8.78148 4.17974 8.8761L7.12687 11.8395Z" fill="%2361803C"/%3e%3c/g%3e%3c/svg%3e')
}

.rmc-product-card__icon-sustainability {
  width: 4rem;
  position: absolute;
  top: .75rem;
  left: 1rem
}

.rmc-product-compare_row {
  border-bottom: 1px solid #d6dadd
}

.rmc-product-compare_key {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 2rem;
  text-align: left
}

.rmc-product-compare_icon-wrapper {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 2rem
}

.rmc-product-compare_icon-wrapper .rmc-svg-icon {
  height: 1.75rem;
  width: fit-content
}

@media print {
  .rmc-blog .rmc-container {
    max-width: 90%
  }
}

.rmc-blog a {
  text-decoration: none;
  color: unset
}

.rmc-blog iframe {
  max-width: 100%
}

.rmc-blog .btn-primary {
  color: #fff
}

.rmc-blog__post-content a {
  color: #e4002b
}

.rmc-blog__article_preview__content-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between
}

.rmc-blog__article_preview__img-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end
}

.rmc-blog__article_preview__img-wrapper img {
  width: 100%
}

@media (min-width: 1400px) {
  .rmc-blog__article_preview__img-wrapper img {
    max-width: 728px;
    height: auto
  }
}

.rmc-blog__all-posts-filters-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--rmc-spacing-xl)
}

.rmc-blog__all-posts-filters-wrapper-badges {
  gap: var(--rmc-spacing-md);
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  flex-wrap: wrap;
  min-width: 60%
}

.rmc-blog__all-posts-filters-wrapper-badges a {
  text-decoration: none
}

.rmc-blog__all-posts-filters-wrapper-filters {
  display: flex;
  gap: var(--rmc-spacing-md);
  justify-content: flex-end;
  justify-content: space-between
}

@media (min-width: 992px) {
  .rmc-blog__all-posts-filters-wrapper-filters {
    justify-content: flex-end
  }
}

.rmc-blog__search-input {
  padding: var(--rmc-spacing-sm) var(--rmc-spacing-lg);
  border-radius: var(--radius-sm, 6px);
  border: 1px solid #63666a;
  width: 225px
}

@media (min-width: 992px) {
  .rmc-blog__search-input {
    width: 225px
  }
}

.rmc-blog__search-input::placeholder {
  color: #63666a
}

.rmc-swiper--tout-quotes {
  --swiper-pagination-bottom: 0;
  --swiper-navigation-size: 4rem;
  --swiper-navigation-top-offset: 2rem
}

.rmc-swiper--tout-quotes .swiper-button-next:after {
  display: none
}

.rmc-swiper--innovations-carousel {
  overflow: visible !important
}

@media (max-width: 991.98px) {
  .rmc-swiper--innovations-carousel {
    overflow: hidden !important
  }
}

.rmc-swiper--innovations-carousel .swiper-wrapper {
  align-items: stretch
}

.rmc-swiper--innovations-carousel .swiper-wrapper .swiper-slide {
  height: auto
}

.rmc-swiper--innovations-carousel .swiper-wrapper .swiper-slide>div {
  height: 100%
}

.rmc-swiper--renaissance-innovation .swiper-wrapper {
  transform-style: preserve-3d
}

.rmc-swiper--renaissance-innovation .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  backface-visibility: hidden;
  transform-style: preserve-3d;
  transition: transform .6s ease
}

.rmc-swiper--renaissance-innovation .swiper-slide img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center
}

.rmc-swiper-bullet {
  --swiper-pagination-color: var(--rmc-brand-500-text)
}

.rmc-swiper-free-products:not(#\	) {
  padding-left: calc(var(--rmc-gutter-x) * .5);
  overflow: visible
}

.rmc-swiper-free-products .swiper-wrapper {
  flex-wrap: nowrap;
  align-items: stretch
}

.rmc-swiper-free-products .swiper-slide {
  height: auto
}

.rmc-a-red {
  text-decoration: none;
  color: #e4002b
}

.rmc-bold-first-column tbody tr td:first-child,
.rmc-bold-first-row thead tr th {
  font-weight: 700
}

.rmc-uniform-first-column-w tbody tr td:first-child {
  width: 400px
}

@media (max-width: 768px) {
  .rmc-uniform-first-column-w tbody tr td:first-child {
    width: 200px
  }
}

.rmc-table-a-content-grey a {
  color: #515d6d
}

.rmc-gray-light-100-bg {
  background-color: #f2f5f7
}

.rmc-pointer {
  cursor: pointer
}

.rmc-checkmark-text {
  display: inline-flex;
  column-gap: .5rem;
  align-items: baseline
}

.rmc-checkmark-text:before {
  content: url('data:image/svg+xml,%3csvg xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewBox="0 0 18 18" fill="none"%3e %3cmask id="mask0_2375_3004" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="18" height="18"%3e%3crect width="18" height="18" fill="%23D9D9D9"%3e%3c/rect%3e %3c/mask%3e%3cg mask="url%28%23mask0_2375_3004%29"%3e%3cpath d="M7.12687 11.8395L13.824 5.13754C13.9192 5.04779 14.0305 5.00173 14.1577 4.99935C14.285 4.99698 14.3975 5.04329 14.4952 5.13829C14.593 5.23642 14.6419 5.34967 14.6419 5.47804C14.6419 5.60654 14.593 5.71804 14.4952 5.81254L7.53805 12.7737C7.42105 12.8905 7.28399 12.949 7.12687 12.949C6.96987 12.949 6.83287 12.8905 6.71587 12.7737L3.4933 9.55092C3.4003 9.45742 3.35455 9.34598 3.35605 9.2166C3.35743 9.08735 3.40724 8.97386 3.50549 8.8761C3.60362 8.78148 3.71612 8.73417 3.84299 8.73417C3.96974 8.73417 4.08199 8.78148 4.17974 8.8761L7.12687 11.8395Z" fill="%2361803C"%3e%3c/path%3e %3c/g%3e %3c/svg%3e');
  display: flex;
  align-items: center;
  width: 1.125rem;
  height: 1.125rem;
  position: relative;
  top: 2px
}

.dotted-wrap {
  padding: var(--rmc-spacing-3xl);
  border: 1px dashed #ffffff;
  border-radius: 50%;
  flex-grow: 0;
  margin: 0 auto
}

.dotted-wrap__gray {
  border: 1px dashed #63666a
}

.dotted-wrap__beige {
  border: 1px dashed #dfd1a7
}

.dotted-wrap__yellow {
  border: 1px dashed #f1be48
}

.dotted-wrap__teal {
  border: 1px dashed #4f868e
}

.loader {
  display: block;
  animation: rotate 2s linear infinite
}

.loader__spinner {
  transform-origin: center;
  animation: spin 2s linear infinite
}

@keyframes rotate {
  0% {
    transform: rotate(0)
  }

  to {
    transform: rotate(360deg)
  }
}

@keyframes spin {
  0% {
    transform: rotate(0)
  }

  to {
    transform: rotate(360deg)
  }
}

.rmc-elementor-page a:not([class]) {
  text-decoration: none;
  color: #e4002b
}

.rmc-cross-reference__product {
  position: relative
}

.rmc-cross-reference__product--rheem {
  --rmc-badge-bg: var(--rmc-brand-500-text);
  --rmc-badge-color: #ffffff;
  --rmc-badge-border: 0;
  --rmc-badge-border-color: var(--rmc-brand-500-text)
}

.rmc-cross-reference__product--competitor {
  --rmc-badge-bg: #f9fafb;
  --rmc-badge-color: #596067;
  --rmc-badge-border: 0;
  --rmc-badge-border-color: #d8d8e5
}

.rmc-cross-reference__product__badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%) translateY(-50%);
  background: var(--rmc-badge-bg);
  color: var(--rmc-badge-color);
  border: 1px solid var(--rmc-badge-border-color);
  padding: 4px 10px;
  border-radius: var(--rmc-spacing-2xl);
  font-size: 12px
}

.rmc-cross-reference__product__image {
  height: 200px;
  object-fit: contain
}

.rmc-g-none,
.rmc-gx-none {
  --rmc-gutter-x: 0
}

.rmc-g-none,
.rmc-gy-none {
  --rmc-gutter-y: 0
}

.rmc-g-xxs,
.rmc-gx-xxs {
  --rmc-gutter-x: .125rem
}

.rmc-g-xxs,
.rmc-gy-xxs {
  --rmc-gutter-y: .125rem
}

.rmc-g-xs,
.rmc-gx-xs {
  --rmc-gutter-x: .25rem
}

.rmc-g-xs,
.rmc-gy-xs {
  --rmc-gutter-y: .25rem
}

.rmc-g-sm,
.rmc-gx-sm {
  --rmc-gutter-x: .375rem
}

.rmc-g-sm,
.rmc-gy-sm {
  --rmc-gutter-y: .375rem
}

.rmc-g-md,
.rmc-gx-md {
  --rmc-gutter-x: .5rem
}

.rmc-g-md,
.rmc-gy-md {
  --rmc-gutter-y: .5rem
}

.rmc-g-lg,
.rmc-gx-lg {
  --rmc-gutter-x: .75rem
}

.rmc-g-lg,
.rmc-gy-lg {
  --rmc-gutter-y: .75rem
}

.rmc-g-xl,
.rmc-gx-xl {
  --rmc-gutter-x: 1rem
}

.rmc-g-xl,
.rmc-gy-xl {
  --rmc-gutter-y: 1rem
}

.rmc-g-2xl,
.rmc-gx-2xl {
  --rmc-gutter-x: 1.25rem
}

.rmc-g-2xl,
.rmc-gy-2xl {
  --rmc-gutter-y: 1.25rem
}

.rmc-g-3xl,
.rmc-gx-3xl {
  --rmc-gutter-x: 1.5rem
}

.rmc-g-3xl,
.rmc-gy-3xl {
  --rmc-gutter-y: 1.5rem
}

.rmc-g-4xl,
.rmc-gx-4xl {
  --rmc-gutter-x: 2rem
}

.rmc-g-4xl,
.rmc-gy-4xl {
  --rmc-gutter-y: 2rem
}

.rmc-g-5xl,
.rmc-gx-5xl {
  --rmc-gutter-x: 2.5rem
}

.rmc-g-5xl,
.rmc-gy-5xl {
  --rmc-gutter-y: 2.5rem
}

.rmc-g-6xl,
.rmc-gx-6xl {
  --rmc-gutter-x: 3rem
}

.rmc-g-6xl,
.rmc-gy-6xl {
  --rmc-gutter-y: 3rem
}

.rmc-g-7xl,
.rmc-gx-7xl {
  --rmc-gutter-x: 4rem
}

.rmc-g-7xl,
.rmc-gy-7xl {
  --rmc-gutter-y: 4rem
}

.rmc-g-8xl,
.rmc-gx-8xl {
  --rmc-gutter-x: 5rem
}

.rmc-g-8xl,
.rmc-gy-8xl {
  --rmc-gutter-y: 5rem
}

.rmc-g-9xl,
.rmc-gx-9xl {
  --rmc-gutter-x: 6rem
}

.rmc-g-9xl,
.rmc-gy-9xl {
  --rmc-gutter-y: 6rem
}

.rmc-g-10xl,
.rmc-gx-10xl {
  --rmc-gutter-x: 8rem
}

.rmc-g-10xl,
.rmc-gy-10xl {
  --rmc-gutter-y: 8rem
}

.rmc-g-11xl,
.rmc-gx-11xl {
  --rmc-gutter-x: 10rem
}

.rmc-g-11xl,
.rmc-gy-11xl {
  --rmc-gutter-y: 10rem
}

@media (min-width: 576px) {

  .rmc-g-sm-none,
  .rmc-gx-sm-none {
    --rmc-gutter-x: 0
  }

  .rmc-g-sm-none,
  .rmc-gy-sm-none {
    --rmc-gutter-y: 0
  }

  .rmc-g-sm-xxs,
  .rmc-gx-sm-xxs {
    --rmc-gutter-x: .125rem
  }

  .rmc-g-sm-xxs,
  .rmc-gy-sm-xxs {
    --rmc-gutter-y: .125rem
  }

  .rmc-g-sm-xs,
  .rmc-gx-sm-xs {
    --rmc-gutter-x: .25rem
  }

  .rmc-g-sm-xs,
  .rmc-gy-sm-xs {
    --rmc-gutter-y: .25rem
  }

  .rmc-g-sm-sm,
  .rmc-gx-sm-sm {
    --rmc-gutter-x: .375rem
  }

  .rmc-g-sm-sm,
  .rmc-gy-sm-sm {
    --rmc-gutter-y: .375rem
  }

  .rmc-g-sm-md,
  .rmc-gx-sm-md {
    --rmc-gutter-x: .5rem
  }

  .rmc-g-sm-md,
  .rmc-gy-sm-md {
    --rmc-gutter-y: .5rem
  }

  .rmc-g-sm-lg,
  .rmc-gx-sm-lg {
    --rmc-gutter-x: .75rem
  }

  .rmc-g-sm-lg,
  .rmc-gy-sm-lg {
    --rmc-gutter-y: .75rem
  }

  .rmc-g-sm-xl,
  .rmc-gx-sm-xl {
    --rmc-gutter-x: 1rem
  }

  .rmc-g-sm-xl,
  .rmc-gy-sm-xl {
    --rmc-gutter-y: 1rem
  }

  .rmc-g-sm-2xl,
  .rmc-gx-sm-2xl {
    --rmc-gutter-x: 1.25rem
  }

  .rmc-g-sm-2xl,
  .rmc-gy-sm-2xl {
    --rmc-gutter-y: 1.25rem
  }

  .rmc-g-sm-3xl,
  .rmc-gx-sm-3xl {
    --rmc-gutter-x: 1.5rem
  }

  .rmc-g-sm-3xl,
  .rmc-gy-sm-3xl {
    --rmc-gutter-y: 1.5rem
  }

  .rmc-g-sm-4xl,
  .rmc-gx-sm-4xl {
    --rmc-gutter-x: 2rem
  }

  .rmc-g-sm-4xl,
  .rmc-gy-sm-4xl {
    --rmc-gutter-y: 2rem
  }

  .rmc-g-sm-5xl,
  .rmc-gx-sm-5xl {
    --rmc-gutter-x: 2.5rem
  }

  .rmc-g-sm-5xl,
  .rmc-gy-sm-5xl {
    --rmc-gutter-y: 2.5rem
  }

  .rmc-g-sm-6xl,
  .rmc-gx-sm-6xl {
    --rmc-gutter-x: 3rem
  }

  .rmc-g-sm-6xl,
  .rmc-gy-sm-6xl {
    --rmc-gutter-y: 3rem
  }

  .rmc-g-sm-7xl,
  .rmc-gx-sm-7xl {
    --rmc-gutter-x: 4rem
  }

  .rmc-g-sm-7xl,
  .rmc-gy-sm-7xl {
    --rmc-gutter-y: 4rem
  }

  .rmc-g-sm-8xl,
  .rmc-gx-sm-8xl {
    --rmc-gutter-x: 5rem
  }

  .rmc-g-sm-8xl,
  .rmc-gy-sm-8xl {
    --rmc-gutter-y: 5rem
  }

  .rmc-g-sm-9xl,
  .rmc-gx-sm-9xl {
    --rmc-gutter-x: 6rem
  }

  .rmc-g-sm-9xl,
  .rmc-gy-sm-9xl {
    --rmc-gutter-y: 6rem
  }

  .rmc-g-sm-10xl,
  .rmc-gx-sm-10xl {
    --rmc-gutter-x: 8rem
  }

  .rmc-g-sm-10xl,
  .rmc-gy-sm-10xl {
    --rmc-gutter-y: 8rem
  }

  .rmc-g-sm-11xl,
  .rmc-gx-sm-11xl {
    --rmc-gutter-x: 10rem
  }

  .rmc-g-sm-11xl,
  .rmc-gy-sm-11xl {
    --rmc-gutter-y: 10rem
  }
}

@media (min-width: 768px) {

  .rmc-g-md-none,
  .rmc-gx-md-none {
    --rmc-gutter-x: 0
  }

  .rmc-g-md-none,
  .rmc-gy-md-none {
    --rmc-gutter-y: 0
  }

  .rmc-g-md-xxs,
  .rmc-gx-md-xxs {
    --rmc-gutter-x: .125rem
  }

  .rmc-g-md-xxs,
  .rmc-gy-md-xxs {
    --rmc-gutter-y: .125rem
  }

  .rmc-g-md-xs,
  .rmc-gx-md-xs {
    --rmc-gutter-x: .25rem
  }

  .rmc-g-md-xs,
  .rmc-gy-md-xs {
    --rmc-gutter-y: .25rem
  }

  .rmc-g-md-sm,
  .rmc-gx-md-sm {
    --rmc-gutter-x: .375rem
  }

  .rmc-g-md-sm,
  .rmc-gy-md-sm {
    --rmc-gutter-y: .375rem
  }

  .rmc-g-md-md,
  .rmc-gx-md-md {
    --rmc-gutter-x: .5rem
  }

  .rmc-g-md-md,
  .rmc-gy-md-md {
    --rmc-gutter-y: .5rem
  }

  .rmc-g-md-lg,
  .rmc-gx-md-lg {
    --rmc-gutter-x: .75rem
  }

  .rmc-g-md-lg,
  .rmc-gy-md-lg {
    --rmc-gutter-y: .75rem
  }

  .rmc-g-md-xl,
  .rmc-gx-md-xl {
    --rmc-gutter-x: 1rem
  }

  .rmc-g-md-xl,
  .rmc-gy-md-xl {
    --rmc-gutter-y: 1rem
  }

  .rmc-g-md-2xl,
  .rmc-gx-md-2xl {
    --rmc-gutter-x: 1.25rem
  }

  .rmc-g-md-2xl,
  .rmc-gy-md-2xl {
    --rmc-gutter-y: 1.25rem
  }

  .rmc-g-md-3xl,
  .rmc-gx-md-3xl {
    --rmc-gutter-x: 1.5rem
  }

  .rmc-g-md-3xl,
  .rmc-gy-md-3xl {
    --rmc-gutter-y: 1.5rem
  }

  .rmc-g-md-4xl,
  .rmc-gx-md-4xl {
    --rmc-gutter-x: 2rem
  }

  .rmc-g-md-4xl,
  .rmc-gy-md-4xl {
    --rmc-gutter-y: 2rem
  }

  .rmc-g-md-5xl,
  .rmc-gx-md-5xl {
    --rmc-gutter-x: 2.5rem
  }

  .rmc-g-md-5xl,
  .rmc-gy-md-5xl {
    --rmc-gutter-y: 2.5rem
  }

  .rmc-g-md-6xl,
  .rmc-gx-md-6xl {
    --rmc-gutter-x: 3rem
  }

  .rmc-g-md-6xl,
  .rmc-gy-md-6xl {
    --rmc-gutter-y: 3rem
  }

  .rmc-g-md-7xl,
  .rmc-gx-md-7xl {
    --rmc-gutter-x: 4rem
  }

  .rmc-g-md-7xl,
  .rmc-gy-md-7xl {
    --rmc-gutter-y: 4rem
  }

  .rmc-g-md-8xl,
  .rmc-gx-md-8xl {
    --rmc-gutter-x: 5rem
  }

  .rmc-g-md-8xl,
  .rmc-gy-md-8xl {
    --rmc-gutter-y: 5rem
  }

  .rmc-g-md-9xl,
  .rmc-gx-md-9xl {
    --rmc-gutter-x: 6rem
  }

  .rmc-g-md-9xl,
  .rmc-gy-md-9xl {
    --rmc-gutter-y: 6rem
  }

  .rmc-g-md-10xl,
  .rmc-gx-md-10xl {
    --rmc-gutter-x: 8rem
  }

  .rmc-g-md-10xl,
  .rmc-gy-md-10xl {
    --rmc-gutter-y: 8rem
  }

  .rmc-g-md-11xl,
  .rmc-gx-md-11xl {
    --rmc-gutter-x: 10rem
  }

  .rmc-g-md-11xl,
  .rmc-gy-md-11xl {
    --rmc-gutter-y: 10rem
  }
}

@media (min-width: 992px) {

  .rmc-g-lg-none,
  .rmc-gx-lg-none {
    --rmc-gutter-x: 0
  }

  .rmc-g-lg-none,
  .rmc-gy-lg-none {
    --rmc-gutter-y: 0
  }

  .rmc-g-lg-xxs,
  .rmc-gx-lg-xxs {
    --rmc-gutter-x: .125rem
  }

  .rmc-g-lg-xxs,
  .rmc-gy-lg-xxs {
    --rmc-gutter-y: .125rem
  }

  .rmc-g-lg-xs,
  .rmc-gx-lg-xs {
    --rmc-gutter-x: .25rem
  }

  .rmc-g-lg-xs,
  .rmc-gy-lg-xs {
    --rmc-gutter-y: .25rem
  }

  .rmc-g-lg-sm,
  .rmc-gx-lg-sm {
    --rmc-gutter-x: .375rem
  }

  .rmc-g-lg-sm,
  .rmc-gy-lg-sm {
    --rmc-gutter-y: .375rem
  }

  .rmc-g-lg-md,
  .rmc-gx-lg-md {
    --rmc-gutter-x: .5rem
  }

  .rmc-g-lg-md,
  .rmc-gy-lg-md {
    --rmc-gutter-y: .5rem
  }

  .rmc-g-lg-lg,
  .rmc-gx-lg-lg {
    --rmc-gutter-x: .75rem
  }

  .rmc-g-lg-lg,
  .rmc-gy-lg-lg {
    --rmc-gutter-y: .75rem
  }

  .rmc-g-lg-xl,
  .rmc-gx-lg-xl {
    --rmc-gutter-x: 1rem
  }

  .rmc-g-lg-xl,
  .rmc-gy-lg-xl {
    --rmc-gutter-y: 1rem
  }

  .rmc-g-lg-2xl,
  .rmc-gx-lg-2xl {
    --rmc-gutter-x: 1.25rem
  }

  .rmc-g-lg-2xl,
  .rmc-gy-lg-2xl {
    --rmc-gutter-y: 1.25rem
  }

  .rmc-g-lg-3xl,
  .rmc-gx-lg-3xl {
    --rmc-gutter-x: 1.5rem
  }

  .rmc-g-lg-3xl,
  .rmc-gy-lg-3xl {
    --rmc-gutter-y: 1.5rem
  }

  .rmc-g-lg-4xl,
  .rmc-gx-lg-4xl {
    --rmc-gutter-x: 2rem
  }

  .rmc-g-lg-4xl,
  .rmc-gy-lg-4xl {
    --rmc-gutter-y: 2rem
  }

  .rmc-g-lg-5xl,
  .rmc-gx-lg-5xl {
    --rmc-gutter-x: 2.5rem
  }

  .rmc-g-lg-5xl,
  .rmc-gy-lg-5xl {
    --rmc-gutter-y: 2.5rem
  }

  .rmc-g-lg-6xl,
  .rmc-gx-lg-6xl {
    --rmc-gutter-x: 3rem
  }

  .rmc-g-lg-6xl,
  .rmc-gy-lg-6xl {
    --rmc-gutter-y: 3rem
  }

  .rmc-g-lg-7xl,
  .rmc-gx-lg-7xl {
    --rmc-gutter-x: 4rem
  }

  .rmc-g-lg-7xl,
  .rmc-gy-lg-7xl {
    --rmc-gutter-y: 4rem
  }

  .rmc-g-lg-8xl,
  .rmc-gx-lg-8xl {
    --rmc-gutter-x: 5rem
  }

  .rmc-g-lg-8xl,
  .rmc-gy-lg-8xl {
    --rmc-gutter-y: 5rem
  }

  .rmc-g-lg-9xl,
  .rmc-gx-lg-9xl {
    --rmc-gutter-x: 6rem
  }

  .rmc-g-lg-9xl,
  .rmc-gy-lg-9xl {
    --rmc-gutter-y: 6rem
  }

  .rmc-g-lg-10xl,
  .rmc-gx-lg-10xl {
    --rmc-gutter-x: 8rem
  }

  .rmc-g-lg-10xl,
  .rmc-gy-lg-10xl {
    --rmc-gutter-y: 8rem
  }

  .rmc-g-lg-11xl,
  .rmc-gx-lg-11xl {
    --rmc-gutter-x: 10rem
  }

  .rmc-g-lg-11xl,
  .rmc-gy-lg-11xl {
    --rmc-gutter-y: 10rem
  }
}

@media (min-width: 1200px) {

  .rmc-g-xl-none,
  .rmc-gx-xl-none {
    --rmc-gutter-x: 0
  }

  .rmc-g-xl-none,
  .rmc-gy-xl-none {
    --rmc-gutter-y: 0
  }

  .rmc-g-xl-xxs,
  .rmc-gx-xl-xxs {
    --rmc-gutter-x: .125rem
  }

  .rmc-g-xl-xxs,
  .rmc-gy-xl-xxs {
    --rmc-gutter-y: .125rem
  }

  .rmc-g-xl-xs,
  .rmc-gx-xl-xs {
    --rmc-gutter-x: .25rem
  }

  .rmc-g-xl-xs,
  .rmc-gy-xl-xs {
    --rmc-gutter-y: .25rem
  }

  .rmc-g-xl-sm,
  .rmc-gx-xl-sm {
    --rmc-gutter-x: .375rem
  }

  .rmc-g-xl-sm,
  .rmc-gy-xl-sm {
    --rmc-gutter-y: .375rem
  }

  .rmc-g-xl-md,
  .rmc-gx-xl-md {
    --rmc-gutter-x: .5rem
  }

  .rmc-g-xl-md,
  .rmc-gy-xl-md {
    --rmc-gutter-y: .5rem
  }

  .rmc-g-xl-lg,
  .rmc-gx-xl-lg {
    --rmc-gutter-x: .75rem
  }

  .rmc-g-xl-lg,
  .rmc-gy-xl-lg {
    --rmc-gutter-y: .75rem
  }

  .rmc-g-xl-xl,
  .rmc-gx-xl-xl {
    --rmc-gutter-x: 1rem
  }

  .rmc-g-xl-xl,
  .rmc-gy-xl-xl {
    --rmc-gutter-y: 1rem
  }

  .rmc-g-xl-2xl,
  .rmc-gx-xl-2xl {
    --rmc-gutter-x: 1.25rem
  }

  .rmc-g-xl-2xl,
  .rmc-gy-xl-2xl {
    --rmc-gutter-y: 1.25rem
  }

  .rmc-g-xl-3xl,
  .rmc-gx-xl-3xl {
    --rmc-gutter-x: 1.5rem
  }

  .rmc-g-xl-3xl,
  .rmc-gy-xl-3xl {
    --rmc-gutter-y: 1.5rem
  }

  .rmc-g-xl-4xl,
  .rmc-gx-xl-4xl {
    --rmc-gutter-x: 2rem
  }

  .rmc-g-xl-4xl,
  .rmc-gy-xl-4xl {
    --rmc-gutter-y: 2rem
  }

  .rmc-g-xl-5xl,
  .rmc-gx-xl-5xl {
    --rmc-gutter-x: 2.5rem
  }

  .rmc-g-xl-5xl,
  .rmc-gy-xl-5xl {
    --rmc-gutter-y: 2.5rem
  }

  .rmc-g-xl-6xl,
  .rmc-gx-xl-6xl {
    --rmc-gutter-x: 3rem
  }

  .rmc-g-xl-6xl,
  .rmc-gy-xl-6xl {
    --rmc-gutter-y: 3rem
  }

  .rmc-g-xl-7xl,
  .rmc-gx-xl-7xl {
    --rmc-gutter-x: 4rem
  }

  .rmc-g-xl-7xl,
  .rmc-gy-xl-7xl {
    --rmc-gutter-y: 4rem
  }

  .rmc-g-xl-8xl,
  .rmc-gx-xl-8xl {
    --rmc-gutter-x: 5rem
  }

  .rmc-g-xl-8xl,
  .rmc-gy-xl-8xl {
    --rmc-gutter-y: 5rem
  }

  .rmc-g-xl-9xl,
  .rmc-gx-xl-9xl {
    --rmc-gutter-x: 6rem
  }

  .rmc-g-xl-9xl,
  .rmc-gy-xl-9xl {
    --rmc-gutter-y: 6rem
  }

  .rmc-g-xl-10xl,
  .rmc-gx-xl-10xl {
    --rmc-gutter-x: 8rem
  }

  .rmc-g-xl-10xl,
  .rmc-gy-xl-10xl {
    --rmc-gutter-y: 8rem
  }

  .rmc-g-xl-11xl,
  .rmc-gx-xl-11xl {
    --rmc-gutter-x: 10rem
  }

  .rmc-g-xl-11xl,
  .rmc-gy-xl-11xl {
    --rmc-gutter-y: 10rem
  }
}

@media (min-width: 1400px) {

  .rmc-g-xxl-none,
  .rmc-gx-xxl-none {
    --rmc-gutter-x: 0
  }

  .rmc-g-xxl-none,
  .rmc-gy-xxl-none {
    --rmc-gutter-y: 0
  }

  .rmc-g-xxl-xxs,
  .rmc-gx-xxl-xxs {
    --rmc-gutter-x: .125rem
  }

  .rmc-g-xxl-xxs,
  .rmc-gy-xxl-xxs {
    --rmc-gutter-y: .125rem
  }

  .rmc-g-xxl-xs,
  .rmc-gx-xxl-xs {
    --rmc-gutter-x: .25rem
  }

  .rmc-g-xxl-xs,
  .rmc-gy-xxl-xs {
    --rmc-gutter-y: .25rem
  }

  .rmc-g-xxl-sm,
  .rmc-gx-xxl-sm {
    --rmc-gutter-x: .375rem
  }

  .rmc-g-xxl-sm,
  .rmc-gy-xxl-sm {
    --rmc-gutter-y: .375rem
  }

  .rmc-g-xxl-md,
  .rmc-gx-xxl-md {
    --rmc-gutter-x: .5rem
  }

  .rmc-g-xxl-md,
  .rmc-gy-xxl-md {
    --rmc-gutter-y: .5rem
  }

  .rmc-g-xxl-lg,
  .rmc-gx-xxl-lg {
    --rmc-gutter-x: .75rem
  }

  .rmc-g-xxl-lg,
  .rmc-gy-xxl-lg {
    --rmc-gutter-y: .75rem
  }

  .rmc-g-xxl-xl,
  .rmc-gx-xxl-xl {
    --rmc-gutter-x: 1rem
  }

  .rmc-g-xxl-xl,
  .rmc-gy-xxl-xl {
    --rmc-gutter-y: 1rem
  }

  .rmc-g-xxl-2xl,
  .rmc-gx-xxl-2xl {
    --rmc-gutter-x: 1.25rem
  }

  .rmc-g-xxl-2xl,
  .rmc-gy-xxl-2xl {
    --rmc-gutter-y: 1.25rem
  }

  .rmc-g-xxl-3xl,
  .rmc-gx-xxl-3xl {
    --rmc-gutter-x: 1.5rem
  }

  .rmc-g-xxl-3xl,
  .rmc-gy-xxl-3xl {
    --rmc-gutter-y: 1.5rem
  }

  .rmc-g-xxl-4xl,
  .rmc-gx-xxl-4xl {
    --rmc-gutter-x: 2rem
  }

  .rmc-g-xxl-4xl,
  .rmc-gy-xxl-4xl {
    --rmc-gutter-y: 2rem
  }

  .rmc-g-xxl-5xl,
  .rmc-gx-xxl-5xl {
    --rmc-gutter-x: 2.5rem
  }

  .rmc-g-xxl-5xl,
  .rmc-gy-xxl-5xl {
    --rmc-gutter-y: 2.5rem
  }

  .rmc-g-xxl-6xl,
  .rmc-gx-xxl-6xl {
    --rmc-gutter-x: 3rem
  }

  .rmc-g-xxl-6xl,
  .rmc-gy-xxl-6xl {
    --rmc-gutter-y: 3rem
  }

  .rmc-g-xxl-7xl,
  .rmc-gx-xxl-7xl {
    --rmc-gutter-x: 4rem
  }

  .rmc-g-xxl-7xl,
  .rmc-gy-xxl-7xl {
    --rmc-gutter-y: 4rem
  }

  .rmc-g-xxl-8xl,
  .rmc-gx-xxl-8xl {
    --rmc-gutter-x: 5rem
  }

  .rmc-g-xxl-8xl,
  .rmc-gy-xxl-8xl {
    --rmc-gutter-y: 5rem
  }

  .rmc-g-xxl-9xl,
  .rmc-gx-xxl-9xl {
    --rmc-gutter-x: 6rem
  }

  .rmc-g-xxl-9xl,
  .rmc-gy-xxl-9xl {
    --rmc-gutter-y: 6rem
  }

  .rmc-g-xxl-10xl,
  .rmc-gx-xxl-10xl {
    --rmc-gutter-x: 8rem
  }

  .rmc-g-xxl-10xl,
  .rmc-gy-xxl-10xl {
    --rmc-gutter-y: 8rem
  }

  .rmc-g-xxl-11xl,
  .rmc-gx-xxl-11xl {
    --rmc-gutter-x: 10rem
  }

  .rmc-g-xxl-11xl,
  .rmc-gy-xxl-11xl {
    --rmc-gutter-y: 10rem
  }
}

.rmc-ty-display-13xl {
  font-size: 13.125rem;
  line-height: 12.125rem;
  letter-spacing: inherit;
  text-transform: inherit
}

.rmc-ty-display-5xl {
  font-size: 6.5rem;
  line-height: 7.5rem;
  letter-spacing: inherit;
  text-transform: inherit
}

.rmc-ty-display-4xl {
  font-size: 6rem;
  line-height: 7rem;
  letter-spacing: inherit;
  text-transform: inherit
}

.rmc-ty-display-3xl {
  font-size: 5.5rem;
  line-height: 6.5rem;
  letter-spacing: inherit;
  text-transform: inherit
}

.rmc-ty-display-2xl {
  font-size: 4.5rem;
  line-height: 5.625rem;
  letter-spacing: inherit;
  text-transform: inherit
}

.rmc-ty-display-xl {
  font-size: 3.75rem;
  line-height: 4.5rem;
  letter-spacing: inherit;
  text-transform: inherit
}

.rmc-ty-display-lg {
  font-size: 3rem;
  line-height: 3.75rem;
  letter-spacing: inherit;
  text-transform: inherit
}

.rmc-ty-display-md {
  font-size: 2.25rem;
  line-height: 2.75rem;
  letter-spacing: inherit;
  text-transform: inherit
}

.rmc-ty-display-sm {
  font-size: 1.875rem;
  line-height: 2.375rem;
  letter-spacing: inherit;
  text-transform: inherit
}

.rmc-ty-display-xs {
  font-size: 1.5rem;
  line-height: 2rem;
  letter-spacing: inherit;
  text-transform: inherit
}

.rmc-ty-text-xl {
  font-size: 1.5rem;
  line-height: 2.25rem;
  letter-spacing: inherit;
  text-transform: inherit
}

.rmc-ty-text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
  letter-spacing: inherit;
  text-transform: inherit
}

.rmc-ty-text-md {
  font-size: 1rem;
  line-height: 1.5rem;
  letter-spacing: inherit;
  text-transform: inherit
}

.rmc-ty-text-sm {
  font-size: .875rem;
  line-height: 1.25rem;
  letter-spacing: inherit;
  text-transform: inherit
}

.rmc-ty-text-xs {
  font-size: .75rem;
  line-height: 1.125rem;
  letter-spacing: inherit;
  text-transform: inherit
}

.rmc-ty-eyebrow-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
  letter-spacing: .45rem;
  text-transform: uppercase
}

.rmc-ty-eyebrow-sm {
  font-size: .75rem;
  line-height: 1.125rem;
  letter-spacing: .3rem;
  text-transform: uppercase
}

.rmc-ty-intro {
  font-size: 1.25rem;
  line-height: 1.25rem;
  letter-spacing: inherit;
  text-transform: inherit
}

@media (min-width: 576px) {
  .rmc-ty-sm-display-13xl {
    font-size: 13.125rem;
    line-height: 12.125rem;
    letter-spacing: inherit;
    text-transform: inherit
  }

  .rmc-ty-sm-display-5xl {
    font-size: 6.5rem;
    line-height: 7.5rem;
    letter-spacing: inherit;
    text-transform: inherit
  }

  .rmc-ty-sm-display-4xl {
    font-size: 6rem;
    line-height: 7rem;
    letter-spacing: inherit;
    text-transform: inherit
  }

  .rmc-ty-sm-display-3xl {
    font-size: 5.5rem;
    line-height: 6.5rem;
    letter-spacing: inherit;
    text-transform: inherit
  }

  .rmc-ty-sm-display-2xl {
    font-size: 4.5rem;
    line-height: 5.625rem;
    letter-spacing: inherit;
    text-transform: inherit
  }

  .rmc-ty-sm-display-xl {
    font-size: 3.75rem;
    line-height: 4.5rem;
    letter-spacing: inherit;
    text-transform: inherit
  }

  .rmc-ty-sm-display-lg {
    font-size: 3rem;
    line-height: 3.75rem;
    letter-spacing: inherit;
    text-transform: inherit
  }

  .rmc-ty-sm-display-md {
    font-size: 2.25rem;
    line-height: 2.75rem;
    letter-spacing: inherit;
    text-transform: inherit
  }

  .rmc-ty-sm-display-sm {
    font-size: 1.875rem;
    line-height: 2.375rem;
    letter-spacing: inherit;
    text-transform: inherit
  }

  .rmc-ty-sm-display-xs {
    font-size: 1.5rem;
    line-height: 2rem;
    letter-spacing: inherit;
    text-transform: inherit
  }

  .rmc-ty-sm-text-xl {
    font-size: 1.5rem;
    line-height: 2.25rem;
    letter-spacing: inherit;
    text-transform: inherit
  }

  .rmc-ty-sm-text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
    letter-spacing: inherit;
    text-transform: inherit
  }

  .rmc-ty-sm-text-md {
    font-size: 1rem;
    line-height: 1.5rem;
    letter-spacing: inherit;
    text-transform: inherit
  }

  .rmc-ty-sm-text-sm {
    font-size: .875rem;
    line-height: 1.25rem;
    letter-spacing: inherit;
    text-transform: inherit
  }

  .rmc-ty-sm-text-xs {
    font-size: .75rem;
    line-height: 1.125rem;
    letter-spacing: inherit;
    text-transform: inherit
  }

  .rmc-ty-sm-eyebrow-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
    letter-spacing: .45rem;
    text-transform: uppercase
  }

  .rmc-ty-sm-eyebrow-sm {
    font-size: .75rem;
    line-height: 1.125rem;
    letter-spacing: .3rem;
    text-transform: uppercase
  }

  .rmc-ty-sm-intro {
    font-size: 1.25rem;
    line-height: 1.25rem;
    letter-spacing: inherit;
    text-transform: inherit
  }
}

@media (min-width: 768px) {
  .rmc-ty-md-display-13xl {
    font-size: 13.125rem;
    line-height: 12.125rem;
    letter-spacing: inherit;
    text-transform: inherit
  }

  .rmc-ty-md-display-5xl {
    font-size: 6.5rem;
    line-height: 7.5rem;
    letter-spacing: inherit;
    text-transform: inherit
  }

  .rmc-ty-md-display-4xl {
    font-size: 6rem;
    line-height: 7rem;
    letter-spacing: inherit;
    text-transform: inherit
  }

  .rmc-ty-md-display-3xl {
    font-size: 5.5rem;
    line-height: 6.5rem;
    letter-spacing: inherit;
    text-transform: inherit
  }

  .rmc-ty-md-display-2xl {
    font-size: 4.5rem;
    line-height: 5.625rem;
    letter-spacing: inherit;
    text-transform: inherit
  }

  .rmc-ty-md-display-xl {
    font-size: 3.75rem;
    line-height: 4.5rem;
    letter-spacing: inherit;
    text-transform: inherit
  }

  .rmc-ty-md-display-lg {
    font-size: 3rem;
    line-height: 3.75rem;
    letter-spacing: inherit;
    text-transform: inherit
  }

  .rmc-ty-md-display-md {
    font-size: 2.25rem;
    line-height: 2.75rem;
    letter-spacing: inherit;
    text-transform: inherit
  }

  .rmc-ty-md-display-sm {
    font-size: 1.875rem;
    line-height: 2.375rem;
    letter-spacing: inherit;
    text-transform: inherit
  }

  .rmc-ty-md-display-xs {
    font-size: 1.5rem;
    line-height: 2rem;
    letter-spacing: inherit;
    text-transform: inherit
  }

  .rmc-ty-md-text-xl {
    font-size: 1.5rem;
    line-height: 2.25rem;
    letter-spacing: inherit;
    text-transform: inherit
  }

  .rmc-ty-md-text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
    letter-spacing: inherit;
    text-transform: inherit
  }

  .rmc-ty-md-text-md {
    font-size: 1rem;
    line-height: 1.5rem;
    letter-spacing: inherit;
    text-transform: inherit
  }

  .rmc-ty-md-text-sm {
    font-size: .875rem;
    line-height: 1.25rem;
    letter-spacing: inherit;
    text-transform: inherit
  }

  .rmc-ty-md-text-xs {
    font-size: .75rem;
    line-height: 1.125rem;
    letter-spacing: inherit;
    text-transform: inherit
  }

  .rmc-ty-md-eyebrow-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
    letter-spacing: .45rem;
    text-transform: uppercase
  }

  .rmc-ty-md-eyebrow-sm {
    font-size: .75rem;
    line-height: 1.125rem;
    letter-spacing: .3rem;
    text-transform: uppercase
  }

  .rmc-ty-md-intro {
    font-size: 1.25rem;
    line-height: 1.25rem;
    letter-spacing: inherit;
    text-transform: inherit
  }
}

@media (min-width: 992px) {
  .rmc-ty-lg-display-13xl {
    font-size: 13.125rem;
    line-height: 12.125rem;
    letter-spacing: inherit;
    text-transform: inherit
  }

  .rmc-ty-lg-display-5xl {
    font-size: 6.5rem;
    line-height: 7.5rem;
    letter-spacing: inherit;
    text-transform: inherit
  }

  .rmc-ty-lg-display-4xl {
    font-size: 6rem;
    line-height: 7rem;
    letter-spacing: inherit;
    text-transform: inherit
  }

  .rmc-ty-lg-display-3xl {
    font-size: 5.5rem;
    line-height: 6.5rem;
    letter-spacing: inherit;
    text-transform: inherit
  }

  .rmc-ty-lg-display-2xl {
    font-size: 4.5rem;
    line-height: 5.625rem;
    letter-spacing: inherit;
    text-transform: inherit
  }

  .rmc-ty-lg-display-xl {
    font-size: 3.75rem;
    line-height: 4.5rem;
    letter-spacing: inherit;
    text-transform: inherit
  }

  .rmc-ty-lg-display-lg {
    font-size: 3rem;
    line-height: 3.75rem;
    letter-spacing: inherit;
    text-transform: inherit
  }

  .rmc-ty-lg-display-md {
    font-size: 2.25rem;
    line-height: 2.75rem;
    letter-spacing: inherit;
    text-transform: inherit
  }

  .rmc-ty-lg-display-sm {
    font-size: 1.875rem;
    line-height: 2.375rem;
    letter-spacing: inherit;
    text-transform: inherit
  }

  .rmc-ty-lg-display-xs {
    font-size: 1.5rem;
    line-height: 2rem;
    letter-spacing: inherit;
    text-transform: inherit
  }

  .rmc-ty-lg-text-xl {
    font-size: 1.5rem;
    line-height: 2.25rem;
    letter-spacing: inherit;
    text-transform: inherit
  }

  .rmc-ty-lg-text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
    letter-spacing: inherit;
    text-transform: inherit
  }

  .rmc-ty-lg-text-md {
    font-size: 1rem;
    line-height: 1.5rem;
    letter-spacing: inherit;
    text-transform: inherit
  }

  .rmc-ty-lg-text-sm {
    font-size: .875rem;
    line-height: 1.25rem;
    letter-spacing: inherit;
    text-transform: inherit
  }

  .rmc-ty-lg-text-xs {
    font-size: .75rem;
    line-height: 1.125rem;
    letter-spacing: inherit;
    text-transform: inherit
  }

  .rmc-ty-lg-eyebrow-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
    letter-spacing: .45rem;
    text-transform: uppercase
  }

  .rmc-ty-lg-eyebrow-sm {
    font-size: .75rem;
    line-height: 1.125rem;
    letter-spacing: .3rem;
    text-transform: uppercase
  }

  .rmc-ty-lg-intro {
    font-size: 1.25rem;
    line-height: 1.25rem;
    letter-spacing: inherit;
    text-transform: inherit
  }
}

@media (min-width: 1200px) {
  .rmc-ty-xl-display-13xl {
    font-size: 13.125rem;
    line-height: 12.125rem;
    letter-spacing: inherit;
    text-transform: inherit
  }

  .rmc-ty-xl-display-5xl {
    font-size: 6.5rem;
    line-height: 7.5rem;
    letter-spacing: inherit;
    text-transform: inherit
  }

  .rmc-ty-xl-display-4xl {
    font-size: 6rem;
    line-height: 7rem;
    letter-spacing: inherit;
    text-transform: inherit
  }

  .rmc-ty-xl-display-3xl {
    font-size: 5.5rem;
    line-height: 6.5rem;
    letter-spacing: inherit;
    text-transform: inherit
  }

  .rmc-ty-xl-display-2xl {
    font-size: 4.5rem;
    line-height: 5.625rem;
    letter-spacing: inherit;
    text-transform: inherit
  }

  .rmc-ty-xl-display-xl {
    font-size: 3.75rem;
    line-height: 4.5rem;
    letter-spacing: inherit;
    text-transform: inherit
  }

  .rmc-ty-xl-display-lg {
    font-size: 3rem;
    line-height: 3.75rem;
    letter-spacing: inherit;
    text-transform: inherit
  }

  .rmc-ty-xl-display-md {
    font-size: 2.25rem;
    line-height: 2.75rem;
    letter-spacing: inherit;
    text-transform: inherit
  }

  .rmc-ty-xl-display-sm {
    font-size: 1.875rem;
    line-height: 2.375rem;
    letter-spacing: inherit;
    text-transform: inherit
  }

  .rmc-ty-xl-display-xs {
    font-size: 1.5rem;
    line-height: 2rem;
    letter-spacing: inherit;
    text-transform: inherit
  }

  .rmc-ty-xl-text-xl {
    font-size: 1.5rem;
    line-height: 2.25rem;
    letter-spacing: inherit;
    text-transform: inherit
  }

  .rmc-ty-xl-text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
    letter-spacing: inherit;
    text-transform: inherit
  }

  .rmc-ty-xl-text-md {
    font-size: 1rem;
    line-height: 1.5rem;
    letter-spacing: inherit;
    text-transform: inherit
  }

  .rmc-ty-xl-text-sm {
    font-size: .875rem;
    line-height: 1.25rem;
    letter-spacing: inherit;
    text-transform: inherit
  }

  .rmc-ty-xl-text-xs {
    font-size: .75rem;
    line-height: 1.125rem;
    letter-spacing: inherit;
    text-transform: inherit
  }

  .rmc-ty-xl-eyebrow-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
    letter-spacing: .45rem;
    text-transform: uppercase
  }

  .rmc-ty-xl-eyebrow-sm {
    font-size: .75rem;
    line-height: 1.125rem;
    letter-spacing: .3rem;
    text-transform: uppercase
  }

  .rmc-ty-xl-intro {
    font-size: 1.25rem;
    line-height: 1.25rem;
    letter-spacing: inherit;
    text-transform: inherit
  }
}

@media (min-width: 1400px) {
  .rmc-ty-xxl-display-13xl {
    font-size: 13.125rem;
    line-height: 12.125rem;
    letter-spacing: inherit;
    text-transform: inherit
  }

  .rmc-ty-xxl-display-5xl {
    font-size: 6.5rem;
    line-height: 7.5rem;
    letter-spacing: inherit;
    text-transform: inherit
  }

  .rmc-ty-xxl-display-4xl {
    font-size: 6rem;
    line-height: 7rem;
    letter-spacing: inherit;
    text-transform: inherit
  }

  .rmc-ty-xxl-display-3xl {
    font-size: 5.5rem;
    line-height: 6.5rem;
    letter-spacing: inherit;
    text-transform: inherit
  }

  .rmc-ty-xxl-display-2xl {
    font-size: 4.5rem;
    line-height: 5.625rem;
    letter-spacing: inherit;
    text-transform: inherit
  }

  .rmc-ty-xxl-display-xl {
    font-size: 3.75rem;
    line-height: 4.5rem;
    letter-spacing: inherit;
    text-transform: inherit
  }

  .rmc-ty-xxl-display-lg {
    font-size: 3rem;
    line-height: 3.75rem;
    letter-spacing: inherit;
    text-transform: inherit
  }

  .rmc-ty-xxl-display-md {
    font-size: 2.25rem;
    line-height: 2.75rem;
    letter-spacing: inherit;
    text-transform: inherit
  }

  .rmc-ty-xxl-display-sm {
    font-size: 1.875rem;
    line-height: 2.375rem;
    letter-spacing: inherit;
    text-transform: inherit
  }

  .rmc-ty-xxl-display-xs {
    font-size: 1.5rem;
    line-height: 2rem;
    letter-spacing: inherit;
    text-transform: inherit
  }

  .rmc-ty-xxl-text-xl {
    font-size: 1.5rem;
    line-height: 2.25rem;
    letter-spacing: inherit;
    text-transform: inherit
  }

  .rmc-ty-xxl-text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
    letter-spacing: inherit;
    text-transform: inherit
  }

  .rmc-ty-xxl-text-md {
    font-size: 1rem;
    line-height: 1.5rem;
    letter-spacing: inherit;
    text-transform: inherit
  }

  .rmc-ty-xxl-text-sm {
    font-size: .875rem;
    line-height: 1.25rem;
    letter-spacing: inherit;
    text-transform: inherit
  }

  .rmc-ty-xxl-text-xs {
    font-size: .75rem;
    line-height: 1.125rem;
    letter-spacing: inherit;
    text-transform: inherit
  }

  .rmc-ty-xxl-eyebrow-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
    letter-spacing: .45rem;
    text-transform: uppercase
  }

  .rmc-ty-xxl-eyebrow-sm {
    font-size: .75rem;
    line-height: 1.125rem;
    letter-spacing: .3rem;
    text-transform: uppercase
  }

  .rmc-ty-xxl-intro {
    font-size: 1.25rem;
    line-height: 1.25rem;
    letter-spacing: inherit;
    text-transform: inherit
  }
}

.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: .25 !important
}

.opacity-50 {
  opacity: .5 !important
}

.opacity-75 {
  opacity: .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(--rmc-box-shadow) !important
}

.shadow-sm {
  box-shadow: var(--rmc-box-shadow-sm) !important
}

.shadow-lg {
  box-shadow: var(--rmc-box-shadow-lg) !important
}

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

.focus-ring-primary {
  --rmc-focus-ring-color: rgba(var(--rmc-primary-rgb), var(--rmc-focus-ring-opacity))
}

.focus-ring-secondary {
  --rmc-focus-ring-color: rgba(var(--rmc-secondary-rgb), var(--rmc-focus-ring-opacity))
}

.focus-ring-success {
  --rmc-focus-ring-color: rgba(var(--rmc-success-rgb), var(--rmc-focus-ring-opacity))
}

.focus-ring-info {
  --rmc-focus-ring-color: rgba(var(--rmc-info-rgb), var(--rmc-focus-ring-opacity))
}

.focus-ring-warning {
  --rmc-focus-ring-color: rgba(var(--rmc-warning-rgb), var(--rmc-focus-ring-opacity))
}

.focus-ring-danger {
  --rmc-focus-ring-color: rgba(var(--rmc-danger-rgb), var(--rmc-focus-ring-opacity))
}

.focus-ring-light {
  --rmc-focus-ring-color: rgba(var(--rmc-light-rgb), var(--rmc-focus-ring-opacity))
}

.focus-ring-dark {
  --rmc-focus-ring-color: rgba(var(--rmc-dark-rgb), var(--rmc-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: translate(-50%) !important
}

.translate-middle-y {
  transform: translateY(-50%) !important
}

.border {
  border: var(--rmc-border-width) var(--rmc-border-style) var(--rmc-border-color) !important
}

.border-0 {
  border: 0 !important
}

.border-top {
  border-top: var(--rmc-border-width) var(--rmc-border-style) var(--rmc-border-color) !important
}

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

.border-end {
  border-right: var(--rmc-border-width) var(--rmc-border-style) var(--rmc-border-color) !important
}

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

.border-bottom {
  border-bottom: var(--rmc-border-width) var(--rmc-border-style) var(--rmc-border-color) !important
}

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

.border-start {
  border-left: var(--rmc-border-width) var(--rmc-border-style) var(--rmc-border-color) !important
}

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

.border-primary {
  --rmc-border-opacity: 1;
  border-color: rgba(var(--rmc-primary-rgb), var(--rmc-border-opacity)) !important
}

.border-secondary {
  --rmc-border-opacity: 1;
  border-color: rgba(var(--rmc-secondary-rgb), var(--rmc-border-opacity)) !important
}

.border-success {
  --rmc-border-opacity: 1;
  border-color: rgba(var(--rmc-success-rgb), var(--rmc-border-opacity)) !important
}

.border-info {
  --rmc-border-opacity: 1;
  border-color: rgba(var(--rmc-info-rgb), var(--rmc-border-opacity)) !important
}

.border-warning {
  --rmc-border-opacity: 1;
  border-color: rgba(var(--rmc-warning-rgb), var(--rmc-border-opacity)) !important
}

.border-danger {
  --rmc-border-opacity: 1;
  border-color: rgba(var(--rmc-danger-rgb), var(--rmc-border-opacity)) !important
}

.border-light {
  --rmc-border-opacity: 1;
  border-color: rgba(var(--rmc-light-rgb), var(--rmc-border-opacity)) !important
}

.border-dark {
  --rmc-border-opacity: 1;
  border-color: rgba(var(--rmc-dark-rgb), var(--rmc-border-opacity)) !important
}

.border-black {
  --rmc-border-opacity: 1;
  border-color: rgba(var(--rmc-black-rgb), var(--rmc-border-opacity)) !important
}

.border-white {
  --rmc-border-opacity: 1;
  border-color: rgba(var(--rmc-white-rgb), var(--rmc-border-opacity)) !important
}

.border-primary-subtle {
  border-color: var(--rmc-primary-border-subtle) !important
}

.border-secondary-subtle {
  border-color: var(--rmc-secondary-border-subtle) !important
}

.border-success-subtle {
  border-color: var(--rmc-success-border-subtle) !important
}

.border-info-subtle {
  border-color: var(--rmc-info-border-subtle) !important
}

.border-warning-subtle {
  border-color: var(--rmc-warning-border-subtle) !important
}

.border-danger-subtle {
  border-color: var(--rmc-danger-border-subtle) !important
}

.border-light-subtle {
  border-color: var(--rmc-light-border-subtle) !important
}

.border-dark-subtle {
  border-color: var(--rmc-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 {
  --rmc-border-opacity: .1
}

.border-opacity-25 {
  --rmc-border-opacity: .25
}

.border-opacity-50 {
  --rmc-border-opacity: .5
}

.border-opacity-75 {
  --rmc-border-opacity: .75
}

.border-opacity-100 {
  --rmc-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: .25rem !important
}

.m-2 {
  margin: .5rem !important
}

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

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

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

.m-auto {
  margin: auto !important
}

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

.mx-1 {
  margin-right: .25rem !important;
  margin-left: .25rem !important
}

.mx-2 {
  margin-right: .5rem !important;
  margin-left: .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: 3rem !important;
  margin-left: 3rem !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: .25rem !important;
  margin-bottom: .25rem !important
}

.my-2 {
  margin-top: .5rem !important;
  margin-bottom: .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: 3rem !important;
  margin-bottom: 3rem !important
}

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

.mt-0 {
  margin-top: 0 !important
}

.mt-1 {
  margin-top: .25rem !important
}

.mt-2 {
  margin-top: .5rem !important
}

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

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

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

.mt-auto {
  margin-top: auto !important
}

.me-0 {
  margin-right: 0 !important
}

.me-1 {
  margin-right: .25rem !important
}

.me-2 {
  margin-right: .5rem !important
}

.me-3 {
  margin-right: 1rem !important
}

.me-4 {
  margin-right: 1.5rem !important
}

.me-5 {
  margin-right: 3rem !important
}

.me-auto {
  margin-right: auto !important
}

.mb-0 {
  margin-bottom: 0 !important
}

.mb-1 {
  margin-bottom: .25rem !important
}

.mb-2 {
  margin-bottom: .5rem !important
}

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

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

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

.mb-auto {
  margin-bottom: auto !important
}

.ms-0 {
  margin-left: 0 !important
}

.ms-1 {
  margin-left: .25rem !important
}

.ms-2 {
  margin-left: .5rem !important
}

.ms-3 {
  margin-left: 1rem !important
}

.ms-4 {
  margin-left: 1.5rem !important
}

.ms-5 {
  margin-left: 3rem !important
}

.ms-auto {
  margin-left: auto !important
}

.m-n1 {
  margin: -.25rem !important
}

.m-n2 {
  margin: -.5rem !important
}

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

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

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

.mx-n1 {
  margin-right: -.25rem !important;
  margin-left: -.25rem !important
}

.mx-n2 {
  margin-right: -.5rem !important;
  margin-left: -.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: -3rem !important;
  margin-left: -3rem !important
}

.my-n1 {
  margin-top: -.25rem !important;
  margin-bottom: -.25rem !important
}

.my-n2 {
  margin-top: -.5rem !important;
  margin-bottom: -.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: -3rem !important;
  margin-bottom: -3rem !important
}

.mt-n1 {
  margin-top: -.25rem !important
}

.mt-n2 {
  margin-top: -.5rem !important
}

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

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

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

.me-n1 {
  margin-right: -.25rem !important
}

.me-n2 {
  margin-right: -.5rem !important
}

.me-n3 {
  margin-right: -1rem !important
}

.me-n4 {
  margin-right: -1.5rem !important
}

.me-n5 {
  margin-right: -3rem !important
}

.mb-n1 {
  margin-bottom: -.25rem !important
}

.mb-n2 {
  margin-bottom: -.5rem !important
}

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

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

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

.ms-n1 {
  margin-left: -.25rem !important
}

.ms-n2 {
  margin-left: -.5rem !important
}

.ms-n3 {
  margin-left: -1rem !important
}

.ms-n4 {
  margin-left: -1.5rem !important
}

.ms-n5 {
  margin-left: -3rem !important
}

.p-0 {
  padding: 0 !important
}

.p-1 {
  padding: .25rem !important
}

.p-2 {
  padding: .5rem !important
}

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

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

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

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

.px-1 {
  padding-right: .25rem !important;
  padding-left: .25rem !important
}

.px-2 {
  padding-right: .5rem !important;
  padding-left: .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: 3rem !important;
  padding-left: 3rem !important
}

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

.py-1 {
  padding-top: .25rem !important;
  padding-bottom: .25rem !important
}

.py-2 {
  padding-top: .5rem !important;
  padding-bottom: .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: 3rem !important;
  padding-bottom: 3rem !important
}

.pt-0 {
  padding-top: 0 !important
}

.pt-1 {
  padding-top: .25rem !important
}

.pt-2 {
  padding-top: .5rem !important
}

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

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

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

.pe-0 {
  padding-right: 0 !important
}

.pe-1 {
  padding-right: .25rem !important
}

.pe-2 {
  padding-right: .5rem !important
}

.pe-3 {
  padding-right: 1rem !important
}

.pe-4 {
  padding-right: 1.5rem !important
}

.pe-5 {
  padding-right: 3rem !important
}

.pb-0 {
  padding-bottom: 0 !important
}

.pb-1 {
  padding-bottom: .25rem !important
}

.pb-2 {
  padding-bottom: .5rem !important
}

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

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

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

.ps-0 {
  padding-left: 0 !important
}

.ps-1 {
  padding-left: .25rem !important
}

.ps-2 {
  padding-left: .5rem !important
}

.ps-3 {
  padding-left: 1rem !important
}

.ps-4 {
  padding-left: 1.5rem !important
}

.ps-5 {
  padding-left: 3rem !important
}

.gap-0 {
  gap: 0 !important
}

.gap-1 {
  gap: .25rem !important
}

.gap-2 {
  gap: .5rem !important
}

.gap-3 {
  gap: 1rem !important
}

.gap-4 {
  gap: 1.5rem !important
}

.gap-5 {
  gap: 3rem !important
}

.row-gap-0 {
  row-gap: 0 !important
}

.row-gap-1 {
  row-gap: .25rem !important
}

.row-gap-2 {
  row-gap: .5rem !important
}

.row-gap-3 {
  row-gap: 1rem !important
}

.row-gap-4 {
  row-gap: 1.5rem !important
}

.row-gap-5 {
  row-gap: 3rem !important
}

.column-gap-0 {
  column-gap: 0 !important
}

.column-gap-1 {
  column-gap: .25rem !important
}

.column-gap-2 {
  column-gap: .5rem !important
}

.column-gap-3 {
  column-gap: 1rem !important
}

.column-gap-4 {
  column-gap: 1.5rem !important
}

.column-gap-5 {
  column-gap: 3rem !important
}

.font-monospace {
  font-family: var(--rmc-font-monospace) !important
}

.fs-1 {
  font-size: calc(1.375rem + 1.5vw) !important
}

.fs-2 {
  font-size: calc(1.325rem + .9vw) !important
}

.fs-3 {
  font-size: calc(1.3rem + .6vw) !important
}

.fs-4 {
  font-size: calc(1.275rem + .3vw) !important
}

.fs-5 {
  font-size: 1.25rem !important
}

.fs-6 {
  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 {
  --rmc-text-opacity: 1;
  color: rgba(var(--rmc-primary-rgb), var(--rmc-text-opacity)) !important
}

.text-secondary {
  --rmc-text-opacity: 1;
  color: rgba(var(--rmc-secondary-rgb), var(--rmc-text-opacity)) !important
}

.text-success {
  --rmc-text-opacity: 1;
  color: rgba(var(--rmc-success-rgb), var(--rmc-text-opacity)) !important
}

.text-info {
  --rmc-text-opacity: 1;
  color: rgba(var(--rmc-info-rgb), var(--rmc-text-opacity)) !important
}

.text-warning {
  --rmc-text-opacity: 1;
  color: rgba(var(--rmc-warning-rgb), var(--rmc-text-opacity)) !important
}

.text-danger {
  --rmc-text-opacity: 1;
  color: rgba(var(--rmc-danger-rgb), var(--rmc-text-opacity)) !important
}

.text-light {
  --rmc-text-opacity: 1;
  color: rgba(var(--rmc-light-rgb), var(--rmc-text-opacity)) !important
}

.text-dark {
  --rmc-text-opacity: 1;
  color: rgba(var(--rmc-dark-rgb), var(--rmc-text-opacity)) !important
}

.text-black {
  --rmc-text-opacity: 1;
  color: rgba(var(--rmc-black-rgb), var(--rmc-text-opacity)) !important
}

.text-white {
  --rmc-text-opacity: 1;
  color: rgba(var(--rmc-white-rgb), var(--rmc-text-opacity)) !important
}

.text-body {
  --rmc-text-opacity: 1;
  color: rgba(var(--rmc-body-color-rgb), var(--rmc-text-opacity)) !important
}

.text-muted {
  --rmc-text-opacity: 1;
  color: var(--rmc-secondary-color) !important
}

.text-black-50 {
  --rmc-text-opacity: 1;
  color: #00000080 !important
}

.text-white-50 {
  --rmc-text-opacity: 1;
  color: #ffffff80 !important
}

.text-body-secondary {
  --rmc-text-opacity: 1;
  color: var(--rmc-secondary-color) !important
}

.text-body-tertiary {
  --rmc-text-opacity: 1;
  color: var(--rmc-tertiary-color) !important
}

.text-body-emphasis {
  --rmc-text-opacity: 1;
  color: var(--rmc-emphasis-color) !important
}

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

.text-opacity-25 {
  --rmc-text-opacity: .25
}

.text-opacity-50 {
  --rmc-text-opacity: .5
}

.text-opacity-75 {
  --rmc-text-opacity: .75
}

.text-opacity-100 {
  --rmc-text-opacity: 1
}

.text-primary-emphasis {
  color: var(--rmc-primary-text-emphasis) !important
}

.text-secondary-emphasis {
  color: var(--rmc-secondary-text-emphasis) !important
}

.text-success-emphasis {
  color: var(--rmc-success-text-emphasis) !important
}

.text-info-emphasis {
  color: var(--rmc-info-text-emphasis) !important
}

.text-warning-emphasis {
  color: var(--rmc-warning-text-emphasis) !important
}

.text-danger-emphasis {
  color: var(--rmc-danger-text-emphasis) !important
}

.text-light-emphasis {
  color: var(--rmc-light-text-emphasis) !important
}

.text-dark-emphasis {
  color: var(--rmc-dark-text-emphasis) !important
}

.link-opacity-10,
.link-opacity-10-hover:hover {
  --rmc-link-opacity: .1
}

.link-opacity-25,
.link-opacity-25-hover:hover {
  --rmc-link-opacity: .25
}

.link-opacity-50,
.link-opacity-50-hover:hover {
  --rmc-link-opacity: .5
}

.link-opacity-75,
.link-opacity-75-hover:hover {
  --rmc-link-opacity: .75
}

.link-opacity-100,
.link-opacity-100-hover:hover {
  --rmc-link-opacity: 1
}

.link-offset-1,
.link-offset-1-hover:hover {
  text-underline-offset: .125em !important
}

.link-offset-2,
.link-offset-2-hover:hover {
  text-underline-offset: .25em !important
}

.link-offset-3,
.link-offset-3-hover:hover {
  text-underline-offset: .375em !important
}

.link-underline-primary {
  --rmc-link-underline-opacity: 1;
  text-decoration-color: rgba(var(--rmc-primary-rgb), var(--rmc-link-underline-opacity)) !important
}

.link-underline-secondary {
  --rmc-link-underline-opacity: 1;
  text-decoration-color: rgba(var(--rmc-secondary-rgb), var(--rmc-link-underline-opacity)) !important
}

.link-underline-success {
  --rmc-link-underline-opacity: 1;
  text-decoration-color: rgba(var(--rmc-success-rgb), var(--rmc-link-underline-opacity)) !important
}

.link-underline-info {
  --rmc-link-underline-opacity: 1;
  text-decoration-color: rgba(var(--rmc-info-rgb), var(--rmc-link-underline-opacity)) !important
}

.link-underline-warning {
  --rmc-link-underline-opacity: 1;
  text-decoration-color: rgba(var(--rmc-warning-rgb), var(--rmc-link-underline-opacity)) !important
}

.link-underline-danger {
  --rmc-link-underline-opacity: 1;
  text-decoration-color: rgba(var(--rmc-danger-rgb), var(--rmc-link-underline-opacity)) !important
}

.link-underline-light {
  --rmc-link-underline-opacity: 1;
  text-decoration-color: rgba(var(--rmc-light-rgb), var(--rmc-link-underline-opacity)) !important
}

.link-underline-dark {
  --rmc-link-underline-opacity: 1;
  text-decoration-color: rgba(var(--rmc-dark-rgb), var(--rmc-link-underline-opacity)) !important
}

.link-underline {
  --rmc-link-underline-opacity: 1;
  text-decoration-color: rgba(var(--rmc-link-color-rgb), var(--rmc-link-underline-opacity, 1)) !important
}

.link-underline-opacity-0,
.link-underline-opacity-0-hover:hover {
  --rmc-link-underline-opacity: 0
}

.link-underline-opacity-10,
.link-underline-opacity-10-hover:hover {
  --rmc-link-underline-opacity: .1
}

.link-underline-opacity-25,
.link-underline-opacity-25-hover:hover {
  --rmc-link-underline-opacity: .25
}

.link-underline-opacity-50,
.link-underline-opacity-50-hover:hover {
  --rmc-link-underline-opacity: .5
}

.link-underline-opacity-75,
.link-underline-opacity-75-hover:hover {
  --rmc-link-underline-opacity: .75
}

.link-underline-opacity-100,
.link-underline-opacity-100-hover:hover {
  --rmc-link-underline-opacity: 1
}

.bg-primary {
  --rmc-bg-opacity: 1;
  background-color: rgba(var(--rmc-primary-rgb), var(--rmc-bg-opacity)) !important
}

.bg-secondary {
  --rmc-bg-opacity: 1;
  background-color: rgba(var(--rmc-secondary-rgb), var(--rmc-bg-opacity)) !important
}

.bg-success {
  --rmc-bg-opacity: 1;
  background-color: rgba(var(--rmc-success-rgb), var(--rmc-bg-opacity)) !important
}

.bg-info {
  --rmc-bg-opacity: 1;
  background-color: rgba(var(--rmc-info-rgb), var(--rmc-bg-opacity)) !important
}

.bg-warning {
  --rmc-bg-opacity: 1;
  background-color: rgba(var(--rmc-warning-rgb), var(--rmc-bg-opacity)) !important
}

.bg-danger {
  --rmc-bg-opacity: 1;
  background-color: rgba(var(--rmc-danger-rgb), var(--rmc-bg-opacity)) !important
}

.bg-light {
  --rmc-bg-opacity: 1;
  background-color: rgba(var(--rmc-light-rgb), var(--rmc-bg-opacity)) !important
}

.bg-dark {
  --rmc-bg-opacity: 1;
  background-color: rgba(var(--rmc-dark-rgb), var(--rmc-bg-opacity)) !important
}

.bg-black {
  --rmc-bg-opacity: 1;
  background-color: rgba(var(--rmc-black-rgb), var(--rmc-bg-opacity)) !important
}

.bg-white {
  --rmc-bg-opacity: 1;
  background-color: rgba(var(--rmc-white-rgb), var(--rmc-bg-opacity)) !important
}

.bg-body {
  --rmc-bg-opacity: 1;
  background-color: rgba(var(--rmc-body-bg-rgb), var(--rmc-bg-opacity)) !important
}

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

.bg-body-secondary {
  --rmc-bg-opacity: 1;
  background-color: rgba(var(--rmc-secondary-bg-rgb), var(--rmc-bg-opacity)) !important
}

.bg-body-tertiary {
  --rmc-bg-opacity: 1;
  background-color: rgba(var(--rmc-tertiary-bg-rgb), var(--rmc-bg-opacity)) !important
}

.bg-opacity-10 {
  --rmc-bg-opacity: .1
}

.bg-opacity-25 {
  --rmc-bg-opacity: .25
}

.bg-opacity-50 {
  --rmc-bg-opacity: .5
}

.bg-opacity-75 {
  --rmc-bg-opacity: .75
}

.bg-opacity-100 {
  --rmc-bg-opacity: 1
}

.bg-primary-subtle {
  background-color: var(--rmc-primary-bg-subtle) !important
}

.bg-secondary-subtle {
  background-color: var(--rmc-secondary-bg-subtle) !important
}

.bg-success-subtle {
  background-color: var(--rmc-success-bg-subtle) !important
}

.bg-info-subtle {
  background-color: var(--rmc-info-bg-subtle) !important
}

.bg-warning-subtle {
  background-color: var(--rmc-warning-bg-subtle) !important
}

.bg-danger-subtle {
  background-color: var(--rmc-danger-bg-subtle) !important
}

.bg-light-subtle {
  background-color: var(--rmc-light-bg-subtle) !important
}

.bg-dark-subtle {
  background-color: var(--rmc-dark-bg-subtle) !important
}

.bg-gradient {
  background-image: var(--rmc-gradient) !important
}

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

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

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

.pe-none {
  pointer-events: none !important
}

.pe-auto {
  pointer-events: auto !important
}

.rounded {
  border-radius: var(--rmc-border-radius) !important
}

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

.rounded-1 {
  border-radius: var(--rmc-border-radius-sm) !important
}

.rounded-2 {
  border-radius: var(--rmc-border-radius) !important
}

.rounded-3 {
  border-radius: var(--rmc-border-radius-lg) !important
}

.rounded-4 {
  border-radius: var(--rmc-border-radius-xl) !important
}

.rounded-5 {
  border-radius: var(--rmc-border-radius-xxl) !important
}

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

.rounded-pill {
  border-radius: var(--rmc-border-radius-pill) !important
}

.rounded-top {
  border-top-left-radius: var(--rmc-border-radius) !important;
  border-top-right-radius: var(--rmc-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(--rmc-border-radius-sm) !important;
  border-top-right-radius: var(--rmc-border-radius-sm) !important
}

.rounded-top-2 {
  border-top-left-radius: var(--rmc-border-radius) !important;
  border-top-right-radius: var(--rmc-border-radius) !important
}

.rounded-top-3 {
  border-top-left-radius: var(--rmc-border-radius-lg) !important;
  border-top-right-radius: var(--rmc-border-radius-lg) !important
}

.rounded-top-4 {
  border-top-left-radius: var(--rmc-border-radius-xl) !important;
  border-top-right-radius: var(--rmc-border-radius-xl) !important
}

.rounded-top-5 {
  border-top-left-radius: var(--rmc-border-radius-xxl) !important;
  border-top-right-radius: var(--rmc-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(--rmc-border-radius-pill) !important;
  border-top-right-radius: var(--rmc-border-radius-pill) !important
}

.rounded-end {
  border-top-right-radius: var(--rmc-border-radius) !important;
  border-bottom-right-radius: var(--rmc-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(--rmc-border-radius-sm) !important;
  border-bottom-right-radius: var(--rmc-border-radius-sm) !important
}

.rounded-end-2 {
  border-top-right-radius: var(--rmc-border-radius) !important;
  border-bottom-right-radius: var(--rmc-border-radius) !important
}

.rounded-end-3 {
  border-top-right-radius: var(--rmc-border-radius-lg) !important;
  border-bottom-right-radius: var(--rmc-border-radius-lg) !important
}

.rounded-end-4 {
  border-top-right-radius: var(--rmc-border-radius-xl) !important;
  border-bottom-right-radius: var(--rmc-border-radius-xl) !important
}

.rounded-end-5 {
  border-top-right-radius: var(--rmc-border-radius-xxl) !important;
  border-bottom-right-radius: var(--rmc-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(--rmc-border-radius-pill) !important;
  border-bottom-right-radius: var(--rmc-border-radius-pill) !important
}

.rounded-bottom {
  border-bottom-right-radius: var(--rmc-border-radius) !important;
  border-bottom-left-radius: var(--rmc-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(--rmc-border-radius-sm) !important;
  border-bottom-left-radius: var(--rmc-border-radius-sm) !important
}

.rounded-bottom-2 {
  border-bottom-right-radius: var(--rmc-border-radius) !important;
  border-bottom-left-radius: var(--rmc-border-radius) !important
}

.rounded-bottom-3 {
  border-bottom-right-radius: var(--rmc-border-radius-lg) !important;
  border-bottom-left-radius: var(--rmc-border-radius-lg) !important
}

.rounded-bottom-4 {
  border-bottom-right-radius: var(--rmc-border-radius-xl) !important;
  border-bottom-left-radius: var(--rmc-border-radius-xl) !important
}

.rounded-bottom-5 {
  border-bottom-right-radius: var(--rmc-border-radius-xxl) !important;
  border-bottom-left-radius: var(--rmc-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(--rmc-border-radius-pill) !important;
  border-bottom-left-radius: var(--rmc-border-radius-pill) !important
}

.rounded-start {
  border-bottom-left-radius: var(--rmc-border-radius) !important;
  border-top-left-radius: var(--rmc-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(--rmc-border-radius-sm) !important;
  border-top-left-radius: var(--rmc-border-radius-sm) !important
}

.rounded-start-2 {
  border-bottom-left-radius: var(--rmc-border-radius) !important;
  border-top-left-radius: var(--rmc-border-radius) !important
}

.rounded-start-3 {
  border-bottom-left-radius: var(--rmc-border-radius-lg) !important;
  border-top-left-radius: var(--rmc-border-radius-lg) !important
}

.rounded-start-4 {
  border-bottom-left-radius: var(--rmc-border-radius-xl) !important;
  border-top-left-radius: var(--rmc-border-radius-xl) !important
}

.rounded-start-5 {
  border-bottom-left-radius: var(--rmc-border-radius-xxl) !important;
  border-top-left-radius: var(--rmc-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(--rmc-border-radius-pill) !important;
  border-top-left-radius: var(--rmc-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
}

.rmc-my-none {
  margin-top: 0 !important;
  margin-bottom: 0 !important
}

.rmc-my-xxs {
  margin-top: .125rem !important;
  margin-bottom: .125rem !important
}

.rmc-my-xs {
  margin-top: .25rem !important;
  margin-bottom: .25rem !important
}

.rmc-my-sm {
  margin-top: .375rem !important;
  margin-bottom: .375rem !important
}

.rmc-my-md {
  margin-top: .5rem !important;
  margin-bottom: .5rem !important
}

.rmc-my-lg {
  margin-top: .75rem !important;
  margin-bottom: .75rem !important
}

.rmc-my-xl {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important
}

.rmc-my-2xl {
  margin-top: 1.25rem !important;
  margin-bottom: 1.25rem !important
}

.rmc-my-3xl {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important
}

.rmc-my-4xl {
  margin-top: 2rem !important;
  margin-bottom: 2rem !important
}

.rmc-my-5xl {
  margin-top: 2.5rem !important;
  margin-bottom: 2.5rem !important
}

.rmc-my-6xl {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important
}

.rmc-my-7xl {
  margin-top: 4rem !important;
  margin-bottom: 4rem !important
}

.rmc-my-8xl {
  margin-top: 5rem !important;
  margin-bottom: 5rem !important
}

.rmc-my-9xl {
  margin-top: 6rem !important;
  margin-bottom: 6rem !important
}

.rmc-my-10xl {
  margin-top: 8rem !important;
  margin-bottom: 8rem !important
}

.rmc-my-11xl {
  margin-top: 10rem !important;
  margin-bottom: 10rem !important
}

.rmc-my-auto {
  margin-top: auto !important;
  margin-bottom: auto !important
}

.rmc-mt-none {
  margin-top: 0 !important
}

.rmc-mt-xxs {
  margin-top: .125rem !important
}

.rmc-mt-xs {
  margin-top: .25rem !important
}

.rmc-mt-sm {
  margin-top: .375rem !important
}

.rmc-mt-md {
  margin-top: .5rem !important
}

.rmc-mt-lg {
  margin-top: .75rem !important
}

.rmc-mt-xl {
  margin-top: 1rem !important
}

.rmc-mt-2xl {
  margin-top: 1.25rem !important
}

.rmc-mt-3xl {
  margin-top: 1.5rem !important
}

.rmc-mt-4xl {
  margin-top: 2rem !important
}

.rmc-mt-5xl {
  margin-top: 2.5rem !important
}

.rmc-mt-6xl {
  margin-top: 3rem !important
}

.rmc-mt-7xl {
  margin-top: 4rem !important
}

.rmc-mt-8xl {
  margin-top: 5rem !important
}

.rmc-mt-9xl {
  margin-top: 6rem !important
}

.rmc-mt-10xl {
  margin-top: 8rem !important
}

.rmc-mt-11xl {
  margin-top: 10rem !important
}

.rmc-mt-auto {
  margin-top: auto !important
}

.rmc-mb-none {
  margin-bottom: 0 !important
}

.rmc-mb-xxs {
  margin-bottom: .125rem !important
}

.rmc-mb-xs {
  margin-bottom: .25rem !important
}

.rmc-mb-sm {
  margin-bottom: .375rem !important
}

.rmc-mb-md {
  margin-bottom: .5rem !important
}

.rmc-mb-lg {
  margin-bottom: .75rem !important
}

.rmc-mb-xl {
  margin-bottom: 1rem !important
}

.rmc-mb-2xl {
  margin-bottom: 1.25rem !important
}

.rmc-mb-3xl {
  margin-bottom: 1.5rem !important
}

.rmc-mb-4xl {
  margin-bottom: 2rem !important
}

.rmc-mb-5xl {
  margin-bottom: 2.5rem !important
}

.rmc-mb-6xl {
  margin-bottom: 3rem !important
}

.rmc-mb-7xl {
  margin-bottom: 4rem !important
}

.rmc-mb-8xl {
  margin-bottom: 5rem !important
}

.rmc-mb-9xl {
  margin-bottom: 6rem !important
}

.rmc-mb-10xl {
  margin-bottom: 8rem !important
}

.rmc-mb-11xl {
  margin-bottom: 10rem !important
}

.rmc-mb-auto {
  margin-bottom: auto !important
}

.rmc-ml-none {
  margin-left: 0 !important
}

.rmc-ml-xxs {
  margin-left: .125rem !important
}

.rmc-ml-xs {
  margin-left: .25rem !important
}

.rmc-ml-sm {
  margin-left: .375rem !important
}

.rmc-ml-md {
  margin-left: .5rem !important
}

.rmc-ml-lg {
  margin-left: .75rem !important
}

.rmc-ml-xl {
  margin-left: 1rem !important
}

.rmc-ml-2xl {
  margin-left: 1.25rem !important
}

.rmc-ml-3xl {
  margin-left: 1.5rem !important
}

.rmc-ml-4xl {
  margin-left: 2rem !important
}

.rmc-ml-5xl {
  margin-left: 2.5rem !important
}

.rmc-ml-6xl {
  margin-left: 3rem !important
}

.rmc-ml-7xl {
  margin-left: 4rem !important
}

.rmc-ml-8xl {
  margin-left: 5rem !important
}

.rmc-ml-9xl {
  margin-left: 6rem !important
}

.rmc-ml-10xl {
  margin-left: 8rem !important
}

.rmc-ml-11xl {
  margin-left: 10rem !important
}

.rmc-ml-auto {
  margin-left: auto !important
}

.rmc-mr-none {
  margin-right: 0 !important
}

.rmc-mr-xxs {
  margin-right: .125rem !important
}

.rmc-mr-xs {
  margin-right: .25rem !important
}

.rmc-mr-sm {
  margin-right: .375rem !important
}

.rmc-mr-md {
  margin-right: .5rem !important
}

.rmc-mr-lg {
  margin-right: .75rem !important
}

.rmc-mr-xl {
  margin-right: 1rem !important
}

.rmc-mr-2xl {
  margin-right: 1.25rem !important
}

.rmc-mr-3xl {
  margin-right: 1.5rem !important
}

.rmc-mr-4xl {
  margin-right: 2rem !important
}

.rmc-mr-5xl {
  margin-right: 2.5rem !important
}

.rmc-mr-6xl {
  margin-right: 3rem !important
}

.rmc-mr-7xl {
  margin-right: 4rem !important
}

.rmc-mr-8xl {
  margin-right: 5rem !important
}

.rmc-mr-9xl {
  margin-right: 6rem !important
}

.rmc-mr-10xl {
  margin-right: 8rem !important
}

.rmc-mr-11xl {
  margin-right: 10rem !important
}

.rmc-mr-auto {
  margin-right: auto !important
}

.rmc-mx-none {
  margin-left: 0 !important;
  margin-right: 0 !important
}

.rmc-mx-xxs {
  margin-left: .125rem !important;
  margin-right: .125rem !important
}

.rmc-mx-xs {
  margin-left: .25rem !important;
  margin-right: .25rem !important
}

.rmc-mx-sm {
  margin-left: .375rem !important;
  margin-right: .375rem !important
}

.rmc-mx-md {
  margin-left: .5rem !important;
  margin-right: .5rem !important
}

.rmc-mx-lg {
  margin-left: .75rem !important;
  margin-right: .75rem !important
}

.rmc-mx-xl {
  margin-left: 1rem !important;
  margin-right: 1rem !important
}

.rmc-mx-2xl {
  margin-left: 1.25rem !important;
  margin-right: 1.25rem !important
}

.rmc-mx-3xl {
  margin-left: 1.5rem !important;
  margin-right: 1.5rem !important
}

.rmc-mx-4xl {
  margin-left: 2rem !important;
  margin-right: 2rem !important
}

.rmc-mx-5xl {
  margin-left: 2.5rem !important;
  margin-right: 2.5rem !important
}

.rmc-mx-6xl {
  margin-left: 3rem !important;
  margin-right: 3rem !important
}

.rmc-mx-7xl {
  margin-left: 4rem !important;
  margin-right: 4rem !important
}

.rmc-mx-8xl {
  margin-left: 5rem !important;
  margin-right: 5rem !important
}

.rmc-mx-9xl {
  margin-left: 6rem !important;
  margin-right: 6rem !important
}

.rmc-mx-10xl {
  margin-left: 8rem !important;
  margin-right: 8rem !important
}

.rmc-mx-11xl {
  margin-left: 10rem !important;
  margin-right: 10rem !important
}

.rmc-mx-auto {
  margin-left: auto !important;
  margin-right: auto !important
}

.rmc-p-none {
  padding: 0 !important
}

.rmc-p-xxs {
  padding: .125rem !important
}

.rmc-p-xs {
  padding: .25rem !important
}

.rmc-p-sm {
  padding: .375rem !important
}

.rmc-p-md {
  padding: .5rem !important
}

.rmc-p-lg {
  padding: .75rem !important
}

.rmc-p-xl {
  padding: 1rem !important
}

.rmc-p-2xl {
  padding: 1.25rem !important
}

.rmc-p-3xl {
  padding: 1.5rem !important
}

.rmc-p-4xl {
  padding: 2rem !important
}

.rmc-p-5xl {
  padding: 2.5rem !important
}

.rmc-p-6xl {
  padding: 3rem !important
}

.rmc-p-7xl {
  padding: 4rem !important
}

.rmc-p-8xl {
  padding: 5rem !important
}

.rmc-p-9xl {
  padding: 6rem !important
}

.rmc-p-10xl {
  padding: 8rem !important
}

.rmc-p-11xl {
  padding: 10rem !important
}

.rmc-p-auto {
  padding: auto !important
}

.rmc-py-none {
  padding-top: 0 !important;
  padding-bottom: 0 !important
}

.rmc-py-xxs {
  padding-top: .125rem !important;
  padding-bottom: .125rem !important
}

.rmc-py-xs {
  padding-top: .25rem !important;
  padding-bottom: .25rem !important
}

.rmc-py-sm {
  padding-top: .375rem !important;
  padding-bottom: .375rem !important
}

.rmc-py-md {
  padding-top: .5rem !important;
  padding-bottom: .5rem !important
}

.rmc-py-lg {
  padding-top: .75rem !important;
  padding-bottom: .75rem !important
}

.rmc-py-xl {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important
}

.rmc-py-2xl {
  padding-top: 1.25rem !important;
  padding-bottom: 1.25rem !important
}

.rmc-py-3xl {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important
}

.rmc-py-4xl {
  padding-top: 2rem !important;
  padding-bottom: 2rem !important
}

.rmc-py-5xl {
  padding-top: 2.5rem !important;
  padding-bottom: 2.5rem !important
}

.rmc-py-6xl {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important
}

.rmc-py-7xl {
  padding-top: 4rem !important;
  padding-bottom: 4rem !important
}

.rmc-py-8xl {
  padding-top: 5rem !important;
  padding-bottom: 5rem !important
}

.rmc-py-9xl {
  padding-top: 6rem !important;
  padding-bottom: 6rem !important
}

.rmc-py-10xl {
  padding-top: 8rem !important;
  padding-bottom: 8rem !important
}

.rmc-py-11xl {
  padding-top: 10rem !important;
  padding-bottom: 10rem !important
}

.rmc-py-auto {
  padding-top: auto !important;
  padding-bottom: auto !important
}

.rmc-px-none {
  padding-left: 0 !important;
  padding-right: 0 !important
}

.rmc-px-xxs {
  padding-left: .125rem !important;
  padding-right: .125rem !important
}

.rmc-px-xs {
  padding-left: .25rem !important;
  padding-right: .25rem !important
}

.rmc-px-sm {
  padding-left: .375rem !important;
  padding-right: .375rem !important
}

.rmc-px-md {
  padding-left: .5rem !important;
  padding-right: .5rem !important
}

.rmc-px-lg {
  padding-left: .75rem !important;
  padding-right: .75rem !important
}

.rmc-px-xl {
  padding-left: 1rem !important;
  padding-right: 1rem !important
}

.rmc-px-2xl {
  padding-left: 1.25rem !important;
  padding-right: 1.25rem !important
}

.rmc-px-3xl {
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important
}

.rmc-px-4xl {
  padding-left: 2rem !important;
  padding-right: 2rem !important
}

.rmc-px-5xl {
  padding-left: 2.5rem !important;
  padding-right: 2.5rem !important
}

.rmc-px-6xl {
  padding-left: 3rem !important;
  padding-right: 3rem !important
}

.rmc-px-7xl {
  padding-left: 4rem !important;
  padding-right: 4rem !important
}

.rmc-px-8xl {
  padding-left: 5rem !important;
  padding-right: 5rem !important
}

.rmc-px-9xl {
  padding-left: 6rem !important;
  padding-right: 6rem !important
}

.rmc-px-10xl {
  padding-left: 8rem !important;
  padding-right: 8rem !important
}

.rmc-px-11xl {
  padding-left: 10rem !important;
  padding-right: 10rem !important
}

.rmc-px-auto {
  padding-left: auto !important;
  padding-right: auto !important
}

.rmc-pt-none {
  padding-top: 0 !important
}

.rmc-pt-xxs {
  padding-top: .125rem !important
}

.rmc-pt-xs {
  padding-top: .25rem !important
}

.rmc-pt-sm {
  padding-top: .375rem !important
}

.rmc-pt-md {
  padding-top: .5rem !important
}

.rmc-pt-lg {
  padding-top: .75rem !important
}

.rmc-pt-xl {
  padding-top: 1rem !important
}

.rmc-pt-2xl {
  padding-top: 1.25rem !important
}

.rmc-pt-3xl {
  padding-top: 1.5rem !important
}

.rmc-pt-4xl {
  padding-top: 2rem !important
}

.rmc-pt-5xl {
  padding-top: 2.5rem !important
}

.rmc-pt-6xl {
  padding-top: 3rem !important
}

.rmc-pt-7xl {
  padding-top: 4rem !important
}

.rmc-pt-8xl {
  padding-top: 5rem !important
}

.rmc-pt-9xl {
  padding-top: 6rem !important
}

.rmc-pt-10xl {
  padding-top: 8rem !important
}

.rmc-pt-11xl {
  padding-top: 10rem !important
}

.rmc-pt-auto {
  padding-top: auto !important
}

.rmc-pb-none {
  padding-bottom: 0 !important
}

.rmc-pb-xxs {
  padding-bottom: .125rem !important
}

.rmc-pb-xs {
  padding-bottom: .25rem !important
}

.rmc-pb-sm {
  padding-bottom: .375rem !important
}

.rmc-pb-md {
  padding-bottom: .5rem !important
}

.rmc-pb-lg {
  padding-bottom: .75rem !important
}

.rmc-pb-xl {
  padding-bottom: 1rem !important
}

.rmc-pb-2xl {
  padding-bottom: 1.25rem !important
}

.rmc-pb-3xl {
  padding-bottom: 1.5rem !important
}

.rmc-pb-4xl {
  padding-bottom: 2rem !important
}

.rmc-pb-5xl {
  padding-bottom: 2.5rem !important
}

.rmc-pb-6xl {
  padding-bottom: 3rem !important
}

.rmc-pb-7xl {
  padding-bottom: 4rem !important
}

.rmc-pb-8xl {
  padding-bottom: 5rem !important
}

.rmc-pb-9xl {
  padding-bottom: 6rem !important
}

.rmc-pb-10xl {
  padding-bottom: 8rem !important
}

.rmc-pb-11xl {
  padding-bottom: 10rem !important
}

.rmc-pb-auto {
  padding-bottom: auto !important
}

.rmc-pl-none {
  padding-left: 0 !important
}

.rmc-pl-xxs {
  padding-left: .125rem !important
}

.rmc-pl-xs {
  padding-left: .25rem !important
}

.rmc-pl-sm {
  padding-left: .375rem !important
}

.rmc-pl-md {
  padding-left: .5rem !important
}

.rmc-pl-lg {
  padding-left: .75rem !important
}

.rmc-pl-xl {
  padding-left: 1rem !important
}

.rmc-pl-2xl {
  padding-left: 1.25rem !important
}

.rmc-pl-3xl {
  padding-left: 1.5rem !important
}

.rmc-pl-4xl {
  padding-left: 2rem !important
}

.rmc-pl-5xl {
  padding-left: 2.5rem !important
}

.rmc-pl-6xl {
  padding-left: 3rem !important
}

.rmc-pl-7xl {
  padding-left: 4rem !important
}

.rmc-pl-8xl {
  padding-left: 5rem !important
}

.rmc-pl-9xl {
  padding-left: 6rem !important
}

.rmc-pl-10xl {
  padding-left: 8rem !important
}

.rmc-pl-11xl {
  padding-left: 10rem !important
}

.rmc-pl-auto {
  padding-left: auto !important
}

.rmc-pr-none {
  padding-right: 0 !important
}

.rmc-pr-xxs {
  padding-right: .125rem !important
}

.rmc-pr-xs {
  padding-right: .25rem !important
}

.rmc-pr-sm {
  padding-right: .375rem !important
}

.rmc-pr-md {
  padding-right: .5rem !important
}

.rmc-pr-lg {
  padding-right: .75rem !important
}

.rmc-pr-xl {
  padding-right: 1rem !important
}

.rmc-pr-2xl {
  padding-right: 1.25rem !important
}

.rmc-pr-3xl {
  padding-right: 1.5rem !important
}

.rmc-pr-4xl {
  padding-right: 2rem !important
}

.rmc-pr-5xl {
  padding-right: 2.5rem !important
}

.rmc-pr-6xl {
  padding-right: 3rem !important
}

.rmc-pr-7xl {
  padding-right: 4rem !important
}

.rmc-pr-8xl {
  padding-right: 5rem !important
}

.rmc-pr-9xl {
  padding-right: 6rem !important
}

.rmc-pr-10xl {
  padding-right: 8rem !important
}

.rmc-pr-11xl {
  padding-right: 10rem !important
}

.rmc-pr-auto {
  padding-right: auto !important
}

.rmc-gap-none {
  gap: 0 !important
}

.rmc-gap-xxs {
  gap: .125rem !important
}

.rmc-gap-xs {
  gap: .25rem !important
}

.rmc-gap-sm {
  gap: .375rem !important
}

.rmc-gap-md {
  gap: .5rem !important
}

.rmc-gap-lg {
  gap: .75rem !important
}

.rmc-gap-xl {
  gap: 1rem !important
}

.rmc-gap-2xl {
  gap: 1.25rem !important
}

.rmc-gap-3xl {
  gap: 1.5rem !important
}

.rmc-gap-4xl {
  gap: 2rem !important
}

.rmc-gap-5xl {
  gap: 2.5rem !important
}

.rmc-gap-6xl {
  gap: 3rem !important
}

.rmc-gap-7xl {
  gap: 4rem !important
}

.rmc-gap-8xl {
  gap: 5rem !important
}

.rmc-gap-9xl {
  gap: 6rem !important
}

.rmc-gap-10xl {
  gap: 8rem !important
}

.rmc-gap-11xl {
  gap: 10rem !important
}

.rmc-gap-auto {
  gap: auto !important
}

.rmc-row-gap-none {
  row-gap: 0 !important
}

.rmc-row-gap-xxs {
  row-gap: .125rem !important
}

.rmc-row-gap-xs {
  row-gap: .25rem !important
}

.rmc-row-gap-sm {
  row-gap: .375rem !important
}

.rmc-row-gap-md {
  row-gap: .5rem !important
}

.rmc-row-gap-lg {
  row-gap: .75rem !important
}

.rmc-row-gap-xl {
  row-gap: 1rem !important
}

.rmc-row-gap-2xl {
  row-gap: 1.25rem !important
}

.rmc-row-gap-3xl {
  row-gap: 1.5rem !important
}

.rmc-row-gap-4xl {
  row-gap: 2rem !important
}

.rmc-row-gap-5xl {
  row-gap: 2.5rem !important
}

.rmc-row-gap-6xl {
  row-gap: 3rem !important
}

.rmc-row-gap-7xl {
  row-gap: 4rem !important
}

.rmc-row-gap-8xl {
  row-gap: 5rem !important
}

.rmc-row-gap-9xl {
  row-gap: 6rem !important
}

.rmc-row-gap-10xl {
  row-gap: 8rem !important
}

.rmc-row-gap-11xl {
  row-gap: 10rem !important
}

.rmc-column-gap-none {
  column-gap: 0 !important
}

.rmc-column-gap-xxs {
  column-gap: .125rem !important
}

.rmc-column-gap-xs {
  column-gap: .25rem !important
}

.rmc-column-gap-sm {
  column-gap: .375rem !important
}

.rmc-column-gap-md {
  column-gap: .5rem !important
}

.rmc-column-gap-lg {
  column-gap: .75rem !important
}

.rmc-column-gap-xl {
  column-gap: 1rem !important
}

.rmc-column-gap-2xl {
  column-gap: 1.25rem !important
}

.rmc-column-gap-3xl {
  column-gap: 1.5rem !important
}

.rmc-column-gap-4xl {
  column-gap: 2rem !important
}

.rmc-column-gap-5xl {
  column-gap: 2.5rem !important
}

.rmc-column-gap-6xl {
  column-gap: 3rem !important
}

.rmc-column-gap-7xl {
  column-gap: 4rem !important
}

.rmc-column-gap-8xl {
  column-gap: 5rem !important
}

.rmc-column-gap-9xl {
  column-gap: 6rem !important
}

.rmc-column-gap-10xl {
  column-gap: 8rem !important
}

.rmc-column-gap-11xl {
  column-gap: 10rem !important
}

.rmc-height-none {
  height: 0 !important
}

.rmc-height-xxs {
  height: .125rem !important
}

.rmc-height-xs {
  height: .25rem !important
}

.rmc-height-sm {
  height: .375rem !important
}

.rmc-height-md {
  height: .5rem !important
}

.rmc-height-lg {
  height: .75rem !important
}

.rmc-height-xl {
  height: 1rem !important
}

.rmc-height-2xl {
  height: 1.25rem !important
}

.rmc-height-3xl {
  height: 1.5rem !important
}

.rmc-height-4xl {
  height: 2rem !important
}

.rmc-height-5xl {
  height: 2.5rem !important
}

.rmc-height-6xl {
  height: 3rem !important
}

.rmc-height-7xl {
  height: 4rem !important
}

.rmc-height-8xl {
  height: 5rem !important
}

.rmc-height-9xl {
  height: 6rem !important
}

.rmc-height-10xl {
  height: 8rem !important
}

.rmc-height-11xl {
  height: 10rem !important
}

.rmc-max-height-none {
  max-height: none !important
}

.rmc-max-height-xxs {
  max-height: .125rem !important
}

.rmc-max-height-xs {
  max-height: .25rem !important
}

.rmc-max-height-sm {
  max-height: .375rem !important
}

.rmc-max-height-md {
  max-height: .5rem !important
}

.rmc-max-height-lg {
  max-height: .75rem !important
}

.rmc-max-height-xl {
  max-height: 1rem !important
}

.rmc-max-height-2xl {
  max-height: 1.25rem !important
}

.rmc-max-height-3xl {
  max-height: 1.5rem !important
}

.rmc-max-height-4xl {
  max-height: 2rem !important
}

.rmc-max-height-5xl {
  max-height: 2.5rem !important
}

.rmc-max-height-6xl {
  max-height: 3rem !important
}

.rmc-max-height-7xl {
  max-height: 4rem !important
}

.rmc-max-height-8xl {
  max-height: 5rem !important
}

.rmc-max-height-9xl {
  max-height: 6rem !important
}

.rmc-max-height-10xl {
  max-height: 8rem !important
}

.rmc-max-height-11xl {
  max-height: 10rem !important
}

.rmc-width-none {
  width: 0 !important
}

.rmc-width-xxs {
  width: .125rem !important
}

.rmc-width-xs {
  width: .25rem !important
}

.rmc-width-sm {
  width: .375rem !important
}

.rmc-width-md {
  width: .5rem !important
}

.rmc-width-lg {
  width: .75rem !important
}

.rmc-width-xl {
  width: 1rem !important
}

.rmc-width-2xl {
  width: 1.25rem !important
}

.rmc-width-3xl {
  width: 1.5rem !important
}

.rmc-width-4xl {
  width: 2rem !important
}

.rmc-width-5xl {
  width: 2.5rem !important
}

.rmc-width-6xl {
  width: 3rem !important
}

.rmc-width-7xl {
  width: 4rem !important
}

.rmc-width-8xl {
  width: 5rem !important
}

.rmc-width-9xl {
  width: 6rem !important
}

.rmc-width-10xl {
  width: 8rem !important
}

.rmc-width-11xl {
  width: 10rem !important
}

.rmc-width-40 {
  width: 40rem !important
}

.rmc-width-30 {
  width: 30rem !important
}

.rmc-width-7p5 {
  width: 7.5rem !important
}

.rmc-width-13 {
  width: 13rem !important
}

.rmc-height-40 {
  height: 40rem !important
}

.rmc-height-30 {
  height: 30rem !important
}

.rmc-height-7p5 {
  height: 7.5rem !important
}

.rmc-height-13 {
  height: 13rem !important
}

.rmc-lh-none {
  line-height: 0 !important
}

.rmc-lh-xxs {
  line-height: .125rem !important
}

.rmc-lh-xs {
  line-height: .25rem !important
}

.rmc-lh-sm {
  line-height: .375rem !important
}

.rmc-lh-md {
  line-height: .5rem !important
}

.rmc-lh-lg {
  line-height: .75rem !important
}

.rmc-lh-xl {
  line-height: 1rem !important
}

.rmc-lh-2xl {
  line-height: 1.25rem !important
}

.rmc-lh-3xl {
  line-height: 1.5rem !important
}

.rmc-lh-4xl {
  line-height: 2rem !important
}

.rmc-lh-5xl {
  line-height: 2.5rem !important
}

.rmc-lh-6xl {
  line-height: 3rem !important
}

.rmc-lh-7xl {
  line-height: 4rem !important
}

.rmc-lh-8xl {
  line-height: 5rem !important
}

.rmc-lh-9xl {
  line-height: 6rem !important
}

.rmc-lh-10xl {
  line-height: 8rem !important
}

.rmc-lh-11xl {
  line-height: 10rem !important
}

.rmc-radius-none {
  border-radius: 0 !important
}

.rmc-radius-xxs {
  border-radius: .125rem !important
}

.rmc-radius-xs {
  border-radius: .25rem !important
}

.rmc-radius-sm {
  border-radius: .375rem !important
}

.rmc-radius-md {
  border-radius: .5rem !important
}

.rmc-radius-lg {
  border-radius: .625rem !important
}

.rmc-radius-xl {
  border-radius: .75rem !important
}

.rmc-radius-2xl {
  border-radius: 1rem !important
}

.rmc-radius-3xl {
  border-radius: 1.25rem !important
}

.rmc-radius-4xl {
  border-radius: 1.5rem !important
}

.rmc-radius-50 {
  border-radius: 50% !important
}

.rmc-color-base-white {
  color: #fff !important
}

.rmc-color-base-transparent {
  color: transparent !important
}

.rmc-color-base-black {
  color: #000 !important
}

.rmc-color-gray-light-10 {
  color: #eaedf0 !important
}

.rmc-color-gray-light-25 {
  color: #fcfdfd !important
}

.rmc-color-gray-light-50 {
  color: #f9fafb !important
}

.rmc-color-gray-light-70 {
  color: #ebeef1 !important
}

.rmc-color-gray-light-100 {
  color: #f2f5f7 !important
}

.rmc-color-gray-light-200 {
  color: #eaecf0 !important
}

.rmc-color-gray-light-300 {
  color: #d6dadd !important
}

.rmc-color-gray-light-400 {
  color: #c6c9cc !important
}

.rmc-color-gray-light-500 {
  color: #97999b !important
}

.rmc-color-gray-light-600 {
  color: #596067 !important
}

.rmc-color-gray-light-650 {
  color: #515d6d !important
}

.rmc-color-gray-light-700 {
  color: #394754 !important
}

.rmc-color-gray-light-750 {
  color: #475467 !important
}

.rmc-color-gray-light-800 {
  color: #182430 !important
}

.rmc-color-gray-light-900 {
  color: #101c28 !important
}

.rmc-color-gray-light-950 {
  color: #0c151d !important
}

.rmc-color-gray-dark-50 {
  color: #f5f5f6 !important
}

.rmc-color-gray-dark-60 {
  color: #f5fbff !important
}

.rmc-color-gray-dark-100 {
  color: #f0f0f1 !important
}

.rmc-color-gray-dark-200 {
  color: #ececed !important
}

.rmc-color-gray-dark-300 {
  color: #ced0d2 !important
}

.rmc-color-gray-dark-400 {
  color: #94979c !important
}

.rmc-color-gray-dark-450 {
  color: #636d80 !important
}

.rmc-color-gray-dark-500 {
  color: #63666a !important
}

.rmc-color-gray-dark-600 {
  color: #575b61 !important
}

.rmc-color-gray-dark-650 {
  color: #4a4a4a !important
}

.rmc-color-gray-dark-700 {
  color: #333941 !important
}

.rmc-color-gray-dark-750 {
  color: #202834 !important
}

.rmc-color-gray-dark-800 {
  color: #1f262f !important
}

.rmc-color-gray-dark-900 {
  color: #161d26 !important
}

.rmc-color-gray-dark-950 {
  color: #101828 !important
}

.rmc-color-brand-500 {
  color: #e4002b !important
}

.rmc-color-error-500 {
  color: #f04438 !important
}

.rmc-color-warning-500 {
  color: #ef6820 !important
}

.rmc-color-success-500 {
  color: #789d4a !important
}

.rmc-color-green-light-500 {
  color: #a9c47f !important
}

.rmc-color-green-dark-100 {
  color: #358486 !important
}

.rmc-color-green-dark-200 {
  color: #215253 !important
}

.rmc-color-teal-light-500 {
  color: #6bbbae !important
}

.rmc-color-teal-500 {
  color: #4f868e !important
}

.rmc-color-blue-light-500 {
  color: #7a99ac !important
}

.rmc-color-blue-500 {
  color: #1b365d !important
}

.rmc-color-beige-light-500 {
  color: #dfd1a7 !important
}

.rmc-color-beige-500 {
  color: #a09074 !important
}

.rmc-color-yellow-400 {
  color: #f1be48 !important
}

.rmc-color-yellow-500 {
  color: #eaaa08 !important
}

.rmc-color-neutral-95 {
  color: #e8e8f5 !important
}

.rmc-color-neutral-90 {
  color: #eaedf0 !important
}

.rmc-color-text-primary {
  color: #101c28 !important
}

.rmc-color-text-secondary {
  color: #596067 !important
}

.rmc-color-text-tertiary {
  color: #575b61 !important
}

.rmc-color-text-whtie {
  color: #fff !important
}

.rmc-color-text-disabled,
.rmc-color-text-placeholder {
  color: #63666a !important
}

.rmc-color-text-brand {
  color: #e4002b !important
}

.rmc-color-text-error {
  color: #f04438 !important
}

.rmc-color-text-warning {
  color: #ef6820 !important
}

.rmc-color-text-success {
  color: #789d4a !important
}

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

.rmc-bg-color-base-transparent {
  background-color: transparent !important
}

.rmc-bg-color-base-black {
  background-color: #000 !important
}

.rmc-bg-color-gray-light-10 {
  background-color: #eaedf0 !important
}

.rmc-bg-color-gray-light-25 {
  background-color: #fcfdfd !important
}

.rmc-bg-color-gray-light-50 {
  background-color: #f9fafb !important
}

.rmc-bg-color-gray-light-70 {
  background-color: #ebeef1 !important
}

.rmc-bg-color-gray-light-100 {
  background-color: #f2f5f7 !important
}

.rmc-bg-color-gray-light-200 {
  background-color: #eaecf0 !important
}

.rmc-bg-color-gray-light-300 {
  background-color: #d6dadd !important
}

.rmc-bg-color-gray-light-400 {
  background-color: #c6c9cc !important
}

.rmc-bg-color-gray-light-500 {
  background-color: #97999b !important
}

.rmc-bg-color-gray-light-600 {
  background-color: #596067 !important
}

.rmc-bg-color-gray-light-650 {
  background-color: #515d6d !important
}

.rmc-bg-color-gray-light-700 {
  background-color: #394754 !important
}

.rmc-bg-color-gray-light-750 {
  background-color: #475467 !important
}

.rmc-bg-color-gray-light-800 {
  background-color: #182430 !important
}

.rmc-bg-color-gray-light-900 {
  background-color: #101c28 !important
}

.rmc-bg-color-gray-light-950 {
  background-color: #0c151d !important
}

.rmc-bg-color-gray-dark-50 {
  background-color: #f5f5f6 !important
}

.rmc-bg-color-gray-dark-60 {
  background-color: #f5fbff !important
}

.rmc-bg-color-gray-dark-100 {
  background-color: #f0f0f1 !important
}

.rmc-bg-color-gray-dark-200 {
  background-color: #ececed !important
}

.rmc-bg-color-gray-dark-300 {
  background-color: #ced0d2 !important
}

.rmc-bg-color-gray-dark-400 {
  background-color: #94979c !important
}

.rmc-bg-color-gray-dark-450 {
  background-color: #636d80 !important
}

.rmc-bg-color-gray-dark-500 {
  background-color: #63666a !important
}

.rmc-bg-color-gray-dark-600 {
  background-color: #575b61 !important
}

.rmc-bg-color-gray-dark-650 {
  background-color: #4a4a4a !important
}

.rmc-bg-color-gray-dark-700 {
  background-color: #333941 !important
}

.rmc-bg-color-gray-dark-750 {
  background-color: #202834 !important
}

.rmc-bg-color-gray-dark-800 {
  background-color: #1f262f !important
}

.rmc-bg-color-gray-dark-900 {
  background-color: #161d26 !important
}

.rmc-bg-color-gray-dark-950 {
  background-color: #101828 !important
}

.rmc-bg-color-brand-500 {
  background-color: #e4002b !important
}

.rmc-bg-color-error-500 {
  background-color: #f04438 !important
}

.rmc-bg-color-warning-500 {
  background-color: #ef6820 !important
}

.rmc-bg-color-success-500 {
  background-color: #789d4a !important
}

.rmc-bg-color-green-light-500 {
  background-color: #a9c47f !important
}

.rmc-bg-color-green-dark-100 {
  background-color: #358486 !important
}

.rmc-bg-color-green-dark-200 {
  background-color: #215253 !important
}

.rmc-bg-color-teal-light-500 {
  background-color: #6bbbae !important
}

.rmc-bg-color-teal-500 {
  background-color: #4f868e !important
}

.rmc-bg-color-blue-light-500 {
  background-color: #7a99ac !important
}

.rmc-bg-color-blue-500 {
  background-color: #1b365d !important
}

.rmc-bg-color-beige-light-500 {
  background-color: #dfd1a7 !important
}

.rmc-bg-color-beige-500 {
  background-color: #a09074 !important
}

.rmc-bg-color-yellow-400 {
  background-color: #f1be48 !important
}

.rmc-bg-color-yellow-500 {
  background-color: #eaaa08 !important
}

.rmc-bg-color-neutral-95 {
  background-color: #e8e8f5 !important
}

.rmc-bg-color-neutral-90 {
  background-color: #eaedf0 !important
}

.rmc-bg-color-text-primary {
  background-color: #101c28 !important
}

.rmc-bg-color-text-secondary {
  background-color: #596067 !important
}

.rmc-bg-color-text-tertiary {
  background-color: #575b61 !important
}

.rmc-bg-color-text-whtie {
  background-color: #fff !important
}

.rmc-bg-color-text-disabled,
.rmc-bg-color-text-placeholder {
  background-color: #63666a !important
}

.rmc-bg-color-text-brand {
  background-color: #e4002b !important
}

.rmc-bg-color-text-error {
  background-color: #f04438 !important
}

.rmc-bg-color-text-warning {
  background-color: #ef6820 !important
}

.rmc-bg-color-text-success {
  background-color: #789d4a !important
}

.rmc-border-base-white {
  border: 1px solid #ffffff !important
}

.rmc-border-base-transparent {
  border: 1px solid transparent !important
}

.rmc-border-base-black {
  border: 1px solid #000000 !important
}

.rmc-border-gray-light-10 {
  border: 1px solid #eaedf0 !important
}

.rmc-border-gray-light-25 {
  border: 1px solid #fcfdfd !important
}

.rmc-border-gray-light-50 {
  border: 1px solid #f9fafb !important
}

.rmc-border-gray-light-70 {
  border: 1px solid #ebeef1 !important
}

.rmc-border-gray-light-100 {
  border: 1px solid #f2f5f7 !important
}

.rmc-border-gray-light-200 {
  border: 1px solid #eaecf0 !important
}

.rmc-border-gray-light-300 {
  border: 1px solid #d6dadd !important
}

.rmc-border-gray-light-400 {
  border: 1px solid #c6c9cc !important
}

.rmc-border-gray-light-500 {
  border: 1px solid #97999b !important
}

.rmc-border-gray-light-600 {
  border: 1px solid #596067 !important
}

.rmc-border-gray-light-650 {
  border: 1px solid #515d6d !important
}

.rmc-border-gray-light-700 {
  border: 1px solid #394754 !important
}

.rmc-border-gray-light-750 {
  border: 1px solid #475467 !important
}

.rmc-border-gray-light-800 {
  border: 1px solid #182430 !important
}

.rmc-border-gray-light-900 {
  border: 1px solid #101c28 !important
}

.rmc-border-gray-light-950 {
  border: 1px solid #0c151d !important
}

.rmc-border-gray-dark-50 {
  border: 1px solid #f5f5f6 !important
}

.rmc-border-gray-dark-60 {
  border: 1px solid #f5fbff !important
}

.rmc-border-gray-dark-100 {
  border: 1px solid #f0f0f1 !important
}

.rmc-border-gray-dark-200 {
  border: 1px solid #ececed !important
}

.rmc-border-gray-dark-300 {
  border: 1px solid #ced0d2 !important
}

.rmc-border-gray-dark-400 {
  border: 1px solid #94979c !important
}

.rmc-border-gray-dark-450 {
  border: 1px solid #636d80 !important
}

.rmc-border-gray-dark-500 {
  border: 1px solid #63666a !important
}

.rmc-border-gray-dark-600 {
  border: 1px solid #575b61 !important
}

.rmc-border-gray-dark-650 {
  border: 1px solid #4a4a4a !important
}

.rmc-border-gray-dark-700 {
  border: 1px solid #333941 !important
}

.rmc-border-gray-dark-750 {
  border: 1px solid #202834 !important
}

.rmc-border-gray-dark-800 {
  border: 1px solid #1f262f !important
}

.rmc-border-gray-dark-900 {
  border: 1px solid #161d26 !important
}

.rmc-border-gray-dark-950 {
  border: 1px solid #101828 !important
}

.rmc-border-brand-500 {
  border: 1px solid #e4002b !important
}

.rmc-border-error-500 {
  border: 1px solid #f04438 !important
}

.rmc-border-warning-500 {
  border: 1px solid #ef6820 !important
}

.rmc-border-success-500 {
  border: 1px solid #789d4a !important
}

.rmc-border-green-light-500 {
  border: 1px solid #a9c47f !important
}

.rmc-border-green-dark-100 {
  border: 1px solid #358486 !important
}

.rmc-border-green-dark-200 {
  border: 1px solid #215253 !important
}

.rmc-border-teal-light-500 {
  border: 1px solid #6bbbae !important
}

.rmc-border-teal-500 {
  border: 1px solid #4f868e !important
}

.rmc-border-blue-light-500 {
  border: 1px solid #7a99ac !important
}

.rmc-border-blue-500 {
  border: 1px solid #1b365d !important
}

.rmc-border-beige-light-500 {
  border: 1px solid #dfd1a7 !important
}

.rmc-border-beige-500 {
  border: 1px solid #a09074 !important
}

.rmc-border-yellow-400 {
  border: 1px solid #f1be48 !important
}

.rmc-border-yellow-500 {
  border: 1px solid #eaaa08 !important
}

.rmc-border-neutral-95 {
  border: 1px solid #e8e8f5 !important
}

.rmc-border-neutral-90 {
  border: 1px solid #eaedf0 !important
}

.rmc-border-text-primary {
  border: 1px solid #101c28 !important
}

.rmc-border-text-secondary {
  border: 1px solid #596067 !important
}

.rmc-border-text-tertiary {
  border: 1px solid #575b61 !important
}

.rmc-border-text-whtie {
  border: 1px solid #ffffff !important
}

.rmc-border-text-disabled,
.rmc-border-text-placeholder {
  border: 1px solid #63666a !important
}

.rmc-border-text-brand {
  border: 1px solid #e4002b !important
}

.rmc-border-text-error {
  border: 1px solid #f04438 !important
}

.rmc-border-text-warning {
  border: 1px solid #ef6820 !important
}

.rmc-border-text-success {
  border: 1px solid #789d4a !important
}

.rmc-border-gray-dotted-4 {
  border: 4px dotted #94979c !important
}

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

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

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

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

.rmc-vertical-align-sub {
  vertical-align: sub !important
}

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

.rmc-opacity-0 {
  opacity: 0 !important
}

.rmc-opacity-100 {
  opacity: 100 !important
}

.rmc-column-count-1 {
  column-count: 1 !important
}

.rmc-column-count-2 {
  column-count: 2 !important
}

.rmc-column-count-3 {
  column-count: 3 !important
}

.rmc-column-count-4 {
  column-count: 4 !important
}

.rmc-column-count-5 {
  column-count: 5 !important
}

.rmc-column-count-6 {
  column-count: 6 !important
}

.rmc-column-count-7 {
  column-count: 7 !important
}

.rmc-column-count-8 {
  column-count: 8 !important
}

.rmc-column-count-9 {
  column-count: 9 !important
}

.rmc-column-count-10 {
  column-count: 10 !important
}

.rmc-column-count-11 {
  column-count: 11 !important
}

.rmc-column-count-12 {
  column-count: 12 !important
}

.rmc-break-inside-avoid {
  break-inside: avoid !important
}

.rmc-break-inside-avoid-column {
  break-inside: avoid-column !important
}

.rmc-break-inside-avoid-page {
  break-inside: avoid-page !important
}

.rmc-break-inside-avoid-region {
  break-inside: avoid-region !important
}

.rmc-break-inside-auto {
  break-inside: auto !important
}

.rmc-aspect-ratio-16-9 {
  aspect-ratio: 1.7777777778 !important
}

.rmc-aspect-ratio-1-1 {
  aspect-ratio: 1 !important
}

.rmc-font-rock-salt {
  font-family: Rock Salt, cursive !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
  }

  .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: .25rem !important
  }

  .m-sm-2 {
    margin: .5rem !important
  }

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

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

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

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

  .mx-sm-0 {
    margin-right: 0 !important;
    margin-left: 0 !important
  }

  .mx-sm-1 {
    margin-right: .25rem !important;
    margin-left: .25rem !important
  }

  .mx-sm-2 {
    margin-right: .5rem !important;
    margin-left: .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: 3rem !important;
    margin-left: 3rem !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: .25rem !important;
    margin-bottom: .25rem !important
  }

  .my-sm-2 {
    margin-top: .5rem !important;
    margin-bottom: .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: 3rem !important;
    margin-bottom: 3rem !important
  }

  .my-sm-auto {
    margin-top: auto !important;
    margin-bottom: auto !important
  }

  .mt-sm-0 {
    margin-top: 0 !important
  }

  .mt-sm-1 {
    margin-top: .25rem !important
  }

  .mt-sm-2 {
    margin-top: .5rem !important
  }

  .mt-sm-3 {
    margin-top: 1rem !important
  }

  .mt-sm-4 {
    margin-top: 1.5rem !important
  }

  .mt-sm-5 {
    margin-top: 3rem !important
  }

  .mt-sm-auto {
    margin-top: auto !important
  }

  .me-sm-0 {
    margin-right: 0 !important
  }

  .me-sm-1 {
    margin-right: .25rem !important
  }

  .me-sm-2 {
    margin-right: .5rem !important
  }

  .me-sm-3 {
    margin-right: 1rem !important
  }

  .me-sm-4 {
    margin-right: 1.5rem !important
  }

  .me-sm-5 {
    margin-right: 3rem !important
  }

  .me-sm-auto {
    margin-right: auto !important
  }

  .mb-sm-0 {
    margin-bottom: 0 !important
  }

  .mb-sm-1 {
    margin-bottom: .25rem !important
  }

  .mb-sm-2 {
    margin-bottom: .5rem !important
  }

  .mb-sm-3 {
    margin-bottom: 1rem !important
  }

  .mb-sm-4 {
    margin-bottom: 1.5rem !important
  }

  .mb-sm-5 {
    margin-bottom: 3rem !important
  }

  .mb-sm-auto {
    margin-bottom: auto !important
  }

  .ms-sm-0 {
    margin-left: 0 !important
  }

  .ms-sm-1 {
    margin-left: .25rem !important
  }

  .ms-sm-2 {
    margin-left: .5rem !important
  }

  .ms-sm-3 {
    margin-left: 1rem !important
  }

  .ms-sm-4 {
    margin-left: 1.5rem !important
  }

  .ms-sm-5 {
    margin-left: 3rem !important
  }

  .ms-sm-auto {
    margin-left: auto !important
  }

  .m-sm-n1 {
    margin: -.25rem !important
  }

  .m-sm-n2 {
    margin: -.5rem !important
  }

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

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

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

  .mx-sm-n1 {
    margin-right: -.25rem !important;
    margin-left: -.25rem !important
  }

  .mx-sm-n2 {
    margin-right: -.5rem !important;
    margin-left: -.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: -3rem !important;
    margin-left: -3rem !important
  }

  .my-sm-n1 {
    margin-top: -.25rem !important;
    margin-bottom: -.25rem !important
  }

  .my-sm-n2 {
    margin-top: -.5rem !important;
    margin-bottom: -.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: -3rem !important;
    margin-bottom: -3rem !important
  }

  .mt-sm-n1 {
    margin-top: -.25rem !important
  }

  .mt-sm-n2 {
    margin-top: -.5rem !important
  }

  .mt-sm-n3 {
    margin-top: -1rem !important
  }

  .mt-sm-n4 {
    margin-top: -1.5rem !important
  }

  .mt-sm-n5 {
    margin-top: -3rem !important
  }

  .me-sm-n1 {
    margin-right: -.25rem !important
  }

  .me-sm-n2 {
    margin-right: -.5rem !important
  }

  .me-sm-n3 {
    margin-right: -1rem !important
  }

  .me-sm-n4 {
    margin-right: -1.5rem !important
  }

  .me-sm-n5 {
    margin-right: -3rem !important
  }

  .mb-sm-n1 {
    margin-bottom: -.25rem !important
  }

  .mb-sm-n2 {
    margin-bottom: -.5rem !important
  }

  .mb-sm-n3 {
    margin-bottom: -1rem !important
  }

  .mb-sm-n4 {
    margin-bottom: -1.5rem !important
  }

  .mb-sm-n5 {
    margin-bottom: -3rem !important
  }

  .ms-sm-n1 {
    margin-left: -.25rem !important
  }

  .ms-sm-n2 {
    margin-left: -.5rem !important
  }

  .ms-sm-n3 {
    margin-left: -1rem !important
  }

  .ms-sm-n4 {
    margin-left: -1.5rem !important
  }

  .ms-sm-n5 {
    margin-left: -3rem !important
  }

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

  .p-sm-1 {
    padding: .25rem !important
  }

  .p-sm-2 {
    padding: .5rem !important
  }

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

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

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

  .px-sm-0 {
    padding-right: 0 !important;
    padding-left: 0 !important
  }

  .px-sm-1 {
    padding-right: .25rem !important;
    padding-left: .25rem !important
  }

  .px-sm-2 {
    padding-right: .5rem !important;
    padding-left: .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: 3rem !important;
    padding-left: 3rem !important
  }

  .py-sm-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important
  }

  .py-sm-1 {
    padding-top: .25rem !important;
    padding-bottom: .25rem !important
  }

  .py-sm-2 {
    padding-top: .5rem !important;
    padding-bottom: .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: 3rem !important;
    padding-bottom: 3rem !important
  }

  .pt-sm-0 {
    padding-top: 0 !important
  }

  .pt-sm-1 {
    padding-top: .25rem !important
  }

  .pt-sm-2 {
    padding-top: .5rem !important
  }

  .pt-sm-3 {
    padding-top: 1rem !important
  }

  .pt-sm-4 {
    padding-top: 1.5rem !important
  }

  .pt-sm-5 {
    padding-top: 3rem !important
  }

  .pe-sm-0 {
    padding-right: 0 !important
  }

  .pe-sm-1 {
    padding-right: .25rem !important
  }

  .pe-sm-2 {
    padding-right: .5rem !important
  }

  .pe-sm-3 {
    padding-right: 1rem !important
  }

  .pe-sm-4 {
    padding-right: 1.5rem !important
  }

  .pe-sm-5 {
    padding-right: 3rem !important
  }

  .pb-sm-0 {
    padding-bottom: 0 !important
  }

  .pb-sm-1 {
    padding-bottom: .25rem !important
  }

  .pb-sm-2 {
    padding-bottom: .5rem !important
  }

  .pb-sm-3 {
    padding-bottom: 1rem !important
  }

  .pb-sm-4 {
    padding-bottom: 1.5rem !important
  }

  .pb-sm-5 {
    padding-bottom: 3rem !important
  }

  .ps-sm-0 {
    padding-left: 0 !important
  }

  .ps-sm-1 {
    padding-left: .25rem !important
  }

  .ps-sm-2 {
    padding-left: .5rem !important
  }

  .ps-sm-3 {
    padding-left: 1rem !important
  }

  .ps-sm-4 {
    padding-left: 1.5rem !important
  }

  .ps-sm-5 {
    padding-left: 3rem !important
  }

  .gap-sm-0 {
    gap: 0 !important
  }

  .gap-sm-1 {
    gap: .25rem !important
  }

  .gap-sm-2 {
    gap: .5rem !important
  }

  .gap-sm-3 {
    gap: 1rem !important
  }

  .gap-sm-4 {
    gap: 1.5rem !important
  }

  .gap-sm-5 {
    gap: 3rem !important
  }

  .row-gap-sm-0 {
    row-gap: 0 !important
  }

  .row-gap-sm-1 {
    row-gap: .25rem !important
  }

  .row-gap-sm-2 {
    row-gap: .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: 3rem !important
  }

  .column-gap-sm-0 {
    column-gap: 0 !important
  }

  .column-gap-sm-1 {
    column-gap: .25rem !important
  }

  .column-gap-sm-2 {
    column-gap: .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: 3rem !important
  }

  .text-sm-start {
    text-align: left !important
  }

  .text-sm-end {
    text-align: right !important
  }

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

  .rmc-my-sm-none {
    margin-top: 0 !important;
    margin-bottom: 0 !important
  }

  .rmc-my-sm-xxs {
    margin-top: .125rem !important;
    margin-bottom: .125rem !important
  }

  .rmc-my-sm-xs {
    margin-top: .25rem !important;
    margin-bottom: .25rem !important
  }

  .rmc-my-sm-sm {
    margin-top: .375rem !important;
    margin-bottom: .375rem !important
  }

  .rmc-my-sm-md {
    margin-top: .5rem !important;
    margin-bottom: .5rem !important
  }

  .rmc-my-sm-lg {
    margin-top: .75rem !important;
    margin-bottom: .75rem !important
  }

  .rmc-my-sm-xl {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important
  }

  .rmc-my-sm-2xl {
    margin-top: 1.25rem !important;
    margin-bottom: 1.25rem !important
  }

  .rmc-my-sm-3xl {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important
  }

  .rmc-my-sm-4xl {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important
  }

  .rmc-my-sm-5xl {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important
  }

  .rmc-my-sm-6xl {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important
  }

  .rmc-my-sm-7xl {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important
  }

  .rmc-my-sm-8xl {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important
  }

  .rmc-my-sm-9xl {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important
  }

  .rmc-my-sm-10xl {
    margin-top: 8rem !important;
    margin-bottom: 8rem !important
  }

  .rmc-my-sm-11xl {
    margin-top: 10rem !important;
    margin-bottom: 10rem !important
  }

  .rmc-my-sm-auto {
    margin-top: auto !important;
    margin-bottom: auto !important
  }

  .rmc-mt-sm-none {
    margin-top: 0 !important
  }

  .rmc-mt-sm-xxs {
    margin-top: .125rem !important
  }

  .rmc-mt-sm-xs {
    margin-top: .25rem !important
  }

  .rmc-mt-sm-sm {
    margin-top: .375rem !important
  }

  .rmc-mt-sm-md {
    margin-top: .5rem !important
  }

  .rmc-mt-sm-lg {
    margin-top: .75rem !important
  }

  .rmc-mt-sm-xl {
    margin-top: 1rem !important
  }

  .rmc-mt-sm-2xl {
    margin-top: 1.25rem !important
  }

  .rmc-mt-sm-3xl {
    margin-top: 1.5rem !important
  }

  .rmc-mt-sm-4xl {
    margin-top: 2rem !important
  }

  .rmc-mt-sm-5xl {
    margin-top: 2.5rem !important
  }

  .rmc-mt-sm-6xl {
    margin-top: 3rem !important
  }

  .rmc-mt-sm-7xl {
    margin-top: 4rem !important
  }

  .rmc-mt-sm-8xl {
    margin-top: 5rem !important
  }

  .rmc-mt-sm-9xl {
    margin-top: 6rem !important
  }

  .rmc-mt-sm-10xl {
    margin-top: 8rem !important
  }

  .rmc-mt-sm-11xl {
    margin-top: 10rem !important
  }

  .rmc-mt-sm-auto {
    margin-top: auto !important
  }

  .rmc-mb-sm-none {
    margin-bottom: 0 !important
  }

  .rmc-mb-sm-xxs {
    margin-bottom: .125rem !important
  }

  .rmc-mb-sm-xs {
    margin-bottom: .25rem !important
  }

  .rmc-mb-sm-sm {
    margin-bottom: .375rem !important
  }

  .rmc-mb-sm-md {
    margin-bottom: .5rem !important
  }

  .rmc-mb-sm-lg {
    margin-bottom: .75rem !important
  }

  .rmc-mb-sm-xl {
    margin-bottom: 1rem !important
  }

  .rmc-mb-sm-2xl {
    margin-bottom: 1.25rem !important
  }

  .rmc-mb-sm-3xl {
    margin-bottom: 1.5rem !important
  }

  .rmc-mb-sm-4xl {
    margin-bottom: 2rem !important
  }

  .rmc-mb-sm-5xl {
    margin-bottom: 2.5rem !important
  }

  .rmc-mb-sm-6xl {
    margin-bottom: 3rem !important
  }

  .rmc-mb-sm-7xl {
    margin-bottom: 4rem !important
  }

  .rmc-mb-sm-8xl {
    margin-bottom: 5rem !important
  }

  .rmc-mb-sm-9xl {
    margin-bottom: 6rem !important
  }

  .rmc-mb-sm-10xl {
    margin-bottom: 8rem !important
  }

  .rmc-mb-sm-11xl {
    margin-bottom: 10rem !important
  }

  .rmc-mb-sm-auto {
    margin-bottom: auto !important
  }

  .rmc-ml-sm-none {
    margin-left: 0 !important
  }

  .rmc-ml-sm-xxs {
    margin-left: .125rem !important
  }

  .rmc-ml-sm-xs {
    margin-left: .25rem !important
  }

  .rmc-ml-sm-sm {
    margin-left: .375rem !important
  }

  .rmc-ml-sm-md {
    margin-left: .5rem !important
  }

  .rmc-ml-sm-lg {
    margin-left: .75rem !important
  }

  .rmc-ml-sm-xl {
    margin-left: 1rem !important
  }

  .rmc-ml-sm-2xl {
    margin-left: 1.25rem !important
  }

  .rmc-ml-sm-3xl {
    margin-left: 1.5rem !important
  }

  .rmc-ml-sm-4xl {
    margin-left: 2rem !important
  }

  .rmc-ml-sm-5xl {
    margin-left: 2.5rem !important
  }

  .rmc-ml-sm-6xl {
    margin-left: 3rem !important
  }

  .rmc-ml-sm-7xl {
    margin-left: 4rem !important
  }

  .rmc-ml-sm-8xl {
    margin-left: 5rem !important
  }

  .rmc-ml-sm-9xl {
    margin-left: 6rem !important
  }

  .rmc-ml-sm-10xl {
    margin-left: 8rem !important
  }

  .rmc-ml-sm-11xl {
    margin-left: 10rem !important
  }

  .rmc-ml-sm-auto {
    margin-left: auto !important
  }

  .rmc-mr-sm-none {
    margin-right: 0 !important
  }

  .rmc-mr-sm-xxs {
    margin-right: .125rem !important
  }

  .rmc-mr-sm-xs {
    margin-right: .25rem !important
  }

  .rmc-mr-sm-sm {
    margin-right: .375rem !important
  }

  .rmc-mr-sm-md {
    margin-right: .5rem !important
  }

  .rmc-mr-sm-lg {
    margin-right: .75rem !important
  }

  .rmc-mr-sm-xl {
    margin-right: 1rem !important
  }

  .rmc-mr-sm-2xl {
    margin-right: 1.25rem !important
  }

  .rmc-mr-sm-3xl {
    margin-right: 1.5rem !important
  }

  .rmc-mr-sm-4xl {
    margin-right: 2rem !important
  }

  .rmc-mr-sm-5xl {
    margin-right: 2.5rem !important
  }

  .rmc-mr-sm-6xl {
    margin-right: 3rem !important
  }

  .rmc-mr-sm-7xl {
    margin-right: 4rem !important
  }

  .rmc-mr-sm-8xl {
    margin-right: 5rem !important
  }

  .rmc-mr-sm-9xl {
    margin-right: 6rem !important
  }

  .rmc-mr-sm-10xl {
    margin-right: 8rem !important
  }

  .rmc-mr-sm-11xl {
    margin-right: 10rem !important
  }

  .rmc-mr-sm-auto {
    margin-right: auto !important
  }

  .rmc-mx-sm-none {
    margin-left: 0 !important;
    margin-right: 0 !important
  }

  .rmc-mx-sm-xxs {
    margin-left: .125rem !important;
    margin-right: .125rem !important
  }

  .rmc-mx-sm-xs {
    margin-left: .25rem !important;
    margin-right: .25rem !important
  }

  .rmc-mx-sm-sm {
    margin-left: .375rem !important;
    margin-right: .375rem !important
  }

  .rmc-mx-sm-md {
    margin-left: .5rem !important;
    margin-right: .5rem !important
  }

  .rmc-mx-sm-lg {
    margin-left: .75rem !important;
    margin-right: .75rem !important
  }

  .rmc-mx-sm-xl {
    margin-left: 1rem !important;
    margin-right: 1rem !important
  }

  .rmc-mx-sm-2xl {
    margin-left: 1.25rem !important;
    margin-right: 1.25rem !important
  }

  .rmc-mx-sm-3xl {
    margin-left: 1.5rem !important;
    margin-right: 1.5rem !important
  }

  .rmc-mx-sm-4xl {
    margin-left: 2rem !important;
    margin-right: 2rem !important
  }

  .rmc-mx-sm-5xl {
    margin-left: 2.5rem !important;
    margin-right: 2.5rem !important
  }

  .rmc-mx-sm-6xl {
    margin-left: 3rem !important;
    margin-right: 3rem !important
  }

  .rmc-mx-sm-7xl {
    margin-left: 4rem !important;
    margin-right: 4rem !important
  }

  .rmc-mx-sm-8xl {
    margin-left: 5rem !important;
    margin-right: 5rem !important
  }

  .rmc-mx-sm-9xl {
    margin-left: 6rem !important;
    margin-right: 6rem !important
  }

  .rmc-mx-sm-10xl {
    margin-left: 8rem !important;
    margin-right: 8rem !important
  }

  .rmc-mx-sm-11xl {
    margin-left: 10rem !important;
    margin-right: 10rem !important
  }

  .rmc-mx-sm-auto {
    margin-left: auto !important;
    margin-right: auto !important
  }

  .rmc-p-sm-none {
    padding: 0 !important
  }

  .rmc-p-sm-xxs {
    padding: .125rem !important
  }

  .rmc-p-sm-xs {
    padding: .25rem !important
  }

  .rmc-p-sm-sm {
    padding: .375rem !important
  }

  .rmc-p-sm-md {
    padding: .5rem !important
  }

  .rmc-p-sm-lg {
    padding: .75rem !important
  }

  .rmc-p-sm-xl {
    padding: 1rem !important
  }

  .rmc-p-sm-2xl {
    padding: 1.25rem !important
  }

  .rmc-p-sm-3xl {
    padding: 1.5rem !important
  }

  .rmc-p-sm-4xl {
    padding: 2rem !important
  }

  .rmc-p-sm-5xl {
    padding: 2.5rem !important
  }

  .rmc-p-sm-6xl {
    padding: 3rem !important
  }

  .rmc-p-sm-7xl {
    padding: 4rem !important
  }

  .rmc-p-sm-8xl {
    padding: 5rem !important
  }

  .rmc-p-sm-9xl {
    padding: 6rem !important
  }

  .rmc-p-sm-10xl {
    padding: 8rem !important
  }

  .rmc-p-sm-11xl {
    padding: 10rem !important
  }

  .rmc-p-sm-auto {
    padding: auto !important
  }

  .rmc-py-sm-none {
    padding-top: 0 !important;
    padding-bottom: 0 !important
  }

  .rmc-py-sm-xxs {
    padding-top: .125rem !important;
    padding-bottom: .125rem !important
  }

  .rmc-py-sm-xs {
    padding-top: .25rem !important;
    padding-bottom: .25rem !important
  }

  .rmc-py-sm-sm {
    padding-top: .375rem !important;
    padding-bottom: .375rem !important
  }

  .rmc-py-sm-md {
    padding-top: .5rem !important;
    padding-bottom: .5rem !important
  }

  .rmc-py-sm-lg {
    padding-top: .75rem !important;
    padding-bottom: .75rem !important
  }

  .rmc-py-sm-xl {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important
  }

  .rmc-py-sm-2xl {
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important
  }

  .rmc-py-sm-3xl {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important
  }

  .rmc-py-sm-4xl {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important
  }

  .rmc-py-sm-5xl {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important
  }

  .rmc-py-sm-6xl {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important
  }

  .rmc-py-sm-7xl {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important
  }

  .rmc-py-sm-8xl {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important
  }

  .rmc-py-sm-9xl {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important
  }

  .rmc-py-sm-10xl {
    padding-top: 8rem !important;
    padding-bottom: 8rem !important
  }

  .rmc-py-sm-11xl {
    padding-top: 10rem !important;
    padding-bottom: 10rem !important
  }

  .rmc-py-sm-auto {
    padding-top: auto !important;
    padding-bottom: auto !important
  }

  .rmc-px-sm-none {
    padding-left: 0 !important;
    padding-right: 0 !important
  }

  .rmc-px-sm-xxs {
    padding-left: .125rem !important;
    padding-right: .125rem !important
  }

  .rmc-px-sm-xs {
    padding-left: .25rem !important;
    padding-right: .25rem !important
  }

  .rmc-px-sm-sm {
    padding-left: .375rem !important;
    padding-right: .375rem !important
  }

  .rmc-px-sm-md {
    padding-left: .5rem !important;
    padding-right: .5rem !important
  }

  .rmc-px-sm-lg {
    padding-left: .75rem !important;
    padding-right: .75rem !important
  }

  .rmc-px-sm-xl {
    padding-left: 1rem !important;
    padding-right: 1rem !important
  }

  .rmc-px-sm-2xl {
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important
  }

  .rmc-px-sm-3xl {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important
  }

  .rmc-px-sm-4xl {
    padding-left: 2rem !important;
    padding-right: 2rem !important
  }

  .rmc-px-sm-5xl {
    padding-left: 2.5rem !important;
    padding-right: 2.5rem !important
  }

  .rmc-px-sm-6xl {
    padding-left: 3rem !important;
    padding-right: 3rem !important
  }

  .rmc-px-sm-7xl {
    padding-left: 4rem !important;
    padding-right: 4rem !important
  }

  .rmc-px-sm-8xl {
    padding-left: 5rem !important;
    padding-right: 5rem !important
  }

  .rmc-px-sm-9xl {
    padding-left: 6rem !important;
    padding-right: 6rem !important
  }

  .rmc-px-sm-10xl {
    padding-left: 8rem !important;
    padding-right: 8rem !important
  }

  .rmc-px-sm-11xl {
    padding-left: 10rem !important;
    padding-right: 10rem !important
  }

  .rmc-px-sm-auto {
    padding-left: auto !important;
    padding-right: auto !important
  }

  .rmc-pt-sm-none {
    padding-top: 0 !important
  }

  .rmc-pt-sm-xxs {
    padding-top: .125rem !important
  }

  .rmc-pt-sm-xs {
    padding-top: .25rem !important
  }

  .rmc-pt-sm-sm {
    padding-top: .375rem !important
  }

  .rmc-pt-sm-md {
    padding-top: .5rem !important
  }

  .rmc-pt-sm-lg {
    padding-top: .75rem !important
  }

  .rmc-pt-sm-xl {
    padding-top: 1rem !important
  }

  .rmc-pt-sm-2xl {
    padding-top: 1.25rem !important
  }

  .rmc-pt-sm-3xl {
    padding-top: 1.5rem !important
  }

  .rmc-pt-sm-4xl {
    padding-top: 2rem !important
  }

  .rmc-pt-sm-5xl {
    padding-top: 2.5rem !important
  }

  .rmc-pt-sm-6xl {
    padding-top: 3rem !important
  }

  .rmc-pt-sm-7xl {
    padding-top: 4rem !important
  }

  .rmc-pt-sm-8xl {
    padding-top: 5rem !important
  }

  .rmc-pt-sm-9xl {
    padding-top: 6rem !important
  }

  .rmc-pt-sm-10xl {
    padding-top: 8rem !important
  }

  .rmc-pt-sm-11xl {
    padding-top: 10rem !important
  }

  .rmc-pt-sm-auto {
    padding-top: auto !important
  }

  .rmc-pb-sm-none {
    padding-bottom: 0 !important
  }

  .rmc-pb-sm-xxs {
    padding-bottom: .125rem !important
  }

  .rmc-pb-sm-xs {
    padding-bottom: .25rem !important
  }

  .rmc-pb-sm-sm {
    padding-bottom: .375rem !important
  }

  .rmc-pb-sm-md {
    padding-bottom: .5rem !important
  }

  .rmc-pb-sm-lg {
    padding-bottom: .75rem !important
  }

  .rmc-pb-sm-xl {
    padding-bottom: 1rem !important
  }

  .rmc-pb-sm-2xl {
    padding-bottom: 1.25rem !important
  }

  .rmc-pb-sm-3xl {
    padding-bottom: 1.5rem !important
  }

  .rmc-pb-sm-4xl {
    padding-bottom: 2rem !important
  }

  .rmc-pb-sm-5xl {
    padding-bottom: 2.5rem !important
  }

  .rmc-pb-sm-6xl {
    padding-bottom: 3rem !important
  }

  .rmc-pb-sm-7xl {
    padding-bottom: 4rem !important
  }

  .rmc-pb-sm-8xl {
    padding-bottom: 5rem !important
  }

  .rmc-pb-sm-9xl {
    padding-bottom: 6rem !important
  }

  .rmc-pb-sm-10xl {
    padding-bottom: 8rem !important
  }

  .rmc-pb-sm-11xl {
    padding-bottom: 10rem !important
  }

  .rmc-pb-sm-auto {
    padding-bottom: auto !important
  }

  .rmc-pl-sm-none {
    padding-left: 0 !important
  }

  .rmc-pl-sm-xxs {
    padding-left: .125rem !important
  }

  .rmc-pl-sm-xs {
    padding-left: .25rem !important
  }

  .rmc-pl-sm-sm {
    padding-left: .375rem !important
  }

  .rmc-pl-sm-md {
    padding-left: .5rem !important
  }

  .rmc-pl-sm-lg {
    padding-left: .75rem !important
  }

  .rmc-pl-sm-xl {
    padding-left: 1rem !important
  }

  .rmc-pl-sm-2xl {
    padding-left: 1.25rem !important
  }

  .rmc-pl-sm-3xl {
    padding-left: 1.5rem !important
  }

  .rmc-pl-sm-4xl {
    padding-left: 2rem !important
  }

  .rmc-pl-sm-5xl {
    padding-left: 2.5rem !important
  }

  .rmc-pl-sm-6xl {
    padding-left: 3rem !important
  }

  .rmc-pl-sm-7xl {
    padding-left: 4rem !important
  }

  .rmc-pl-sm-8xl {
    padding-left: 5rem !important
  }

  .rmc-pl-sm-9xl {
    padding-left: 6rem !important
  }

  .rmc-pl-sm-10xl {
    padding-left: 8rem !important
  }

  .rmc-pl-sm-11xl {
    padding-left: 10rem !important
  }

  .rmc-pl-sm-auto {
    padding-left: auto !important
  }

  .rmc-pr-sm-none {
    padding-right: 0 !important
  }

  .rmc-pr-sm-xxs {
    padding-right: .125rem !important
  }

  .rmc-pr-sm-xs {
    padding-right: .25rem !important
  }

  .rmc-pr-sm-sm {
    padding-right: .375rem !important
  }

  .rmc-pr-sm-md {
    padding-right: .5rem !important
  }

  .rmc-pr-sm-lg {
    padding-right: .75rem !important
  }

  .rmc-pr-sm-xl {
    padding-right: 1rem !important
  }

  .rmc-pr-sm-2xl {
    padding-right: 1.25rem !important
  }

  .rmc-pr-sm-3xl {
    padding-right: 1.5rem !important
  }

  .rmc-pr-sm-4xl {
    padding-right: 2rem !important
  }

  .rmc-pr-sm-5xl {
    padding-right: 2.5rem !important
  }

  .rmc-pr-sm-6xl {
    padding-right: 3rem !important
  }

  .rmc-pr-sm-7xl {
    padding-right: 4rem !important
  }

  .rmc-pr-sm-8xl {
    padding-right: 5rem !important
  }

  .rmc-pr-sm-9xl {
    padding-right: 6rem !important
  }

  .rmc-pr-sm-10xl {
    padding-right: 8rem !important
  }

  .rmc-pr-sm-11xl {
    padding-right: 10rem !important
  }

  .rmc-pr-sm-auto {
    padding-right: auto !important
  }

  .rmc-gap-sm-none {
    gap: 0 !important
  }

  .rmc-gap-sm-xxs {
    gap: .125rem !important
  }

  .rmc-gap-sm-xs {
    gap: .25rem !important
  }

  .rmc-gap-sm-sm {
    gap: .375rem !important
  }

  .rmc-gap-sm-md {
    gap: .5rem !important
  }

  .rmc-gap-sm-lg {
    gap: .75rem !important
  }

  .rmc-gap-sm-xl {
    gap: 1rem !important
  }

  .rmc-gap-sm-2xl {
    gap: 1.25rem !important
  }

  .rmc-gap-sm-3xl {
    gap: 1.5rem !important
  }

  .rmc-gap-sm-4xl {
    gap: 2rem !important
  }

  .rmc-gap-sm-5xl {
    gap: 2.5rem !important
  }

  .rmc-gap-sm-6xl {
    gap: 3rem !important
  }

  .rmc-gap-sm-7xl {
    gap: 4rem !important
  }

  .rmc-gap-sm-8xl {
    gap: 5rem !important
  }

  .rmc-gap-sm-9xl {
    gap: 6rem !important
  }

  .rmc-gap-sm-10xl {
    gap: 8rem !important
  }

  .rmc-gap-sm-11xl {
    gap: 10rem !important
  }

  .rmc-gap-sm-auto {
    gap: auto !important
  }

  .rmc-row-gap-sm-none {
    row-gap: 0 !important
  }

  .rmc-row-gap-sm-xxs {
    row-gap: .125rem !important
  }

  .rmc-row-gap-sm-xs {
    row-gap: .25rem !important
  }

  .rmc-row-gap-sm-sm {
    row-gap: .375rem !important
  }

  .rmc-row-gap-sm-md {
    row-gap: .5rem !important
  }

  .rmc-row-gap-sm-lg {
    row-gap: .75rem !important
  }

  .rmc-row-gap-sm-xl {
    row-gap: 1rem !important
  }

  .rmc-row-gap-sm-2xl {
    row-gap: 1.25rem !important
  }

  .rmc-row-gap-sm-3xl {
    row-gap: 1.5rem !important
  }

  .rmc-row-gap-sm-4xl {
    row-gap: 2rem !important
  }

  .rmc-row-gap-sm-5xl {
    row-gap: 2.5rem !important
  }

  .rmc-row-gap-sm-6xl {
    row-gap: 3rem !important
  }

  .rmc-row-gap-sm-7xl {
    row-gap: 4rem !important
  }

  .rmc-row-gap-sm-8xl {
    row-gap: 5rem !important
  }

  .rmc-row-gap-sm-9xl {
    row-gap: 6rem !important
  }

  .rmc-row-gap-sm-10xl {
    row-gap: 8rem !important
  }

  .rmc-row-gap-sm-11xl {
    row-gap: 10rem !important
  }

  .rmc-column-gap-sm-none {
    column-gap: 0 !important
  }

  .rmc-column-gap-sm-xxs {
    column-gap: .125rem !important
  }

  .rmc-column-gap-sm-xs {
    column-gap: .25rem !important
  }

  .rmc-column-gap-sm-sm {
    column-gap: .375rem !important
  }

  .rmc-column-gap-sm-md {
    column-gap: .5rem !important
  }

  .rmc-column-gap-sm-lg {
    column-gap: .75rem !important
  }

  .rmc-column-gap-sm-xl {
    column-gap: 1rem !important
  }

  .rmc-column-gap-sm-2xl {
    column-gap: 1.25rem !important
  }

  .rmc-column-gap-sm-3xl {
    column-gap: 1.5rem !important
  }

  .rmc-column-gap-sm-4xl {
    column-gap: 2rem !important
  }

  .rmc-column-gap-sm-5xl {
    column-gap: 2.5rem !important
  }

  .rmc-column-gap-sm-6xl {
    column-gap: 3rem !important
  }

  .rmc-column-gap-sm-7xl {
    column-gap: 4rem !important
  }

  .rmc-column-gap-sm-8xl {
    column-gap: 5rem !important
  }

  .rmc-column-gap-sm-9xl {
    column-gap: 6rem !important
  }

  .rmc-column-gap-sm-10xl {
    column-gap: 8rem !important
  }

  .rmc-column-gap-sm-11xl {
    column-gap: 10rem !important
  }

  .rmc-height-sm-none {
    height: 0 !important
  }

  .rmc-height-sm-xxs {
    height: .125rem !important
  }

  .rmc-height-sm-xs {
    height: .25rem !important
  }

  .rmc-height-sm-sm {
    height: .375rem !important
  }

  .rmc-height-sm-md {
    height: .5rem !important
  }

  .rmc-height-sm-lg {
    height: .75rem !important
  }

  .rmc-height-sm-xl {
    height: 1rem !important
  }

  .rmc-height-sm-2xl {
    height: 1.25rem !important
  }

  .rmc-height-sm-3xl {
    height: 1.5rem !important
  }

  .rmc-height-sm-4xl {
    height: 2rem !important
  }

  .rmc-height-sm-5xl {
    height: 2.5rem !important
  }

  .rmc-height-sm-6xl {
    height: 3rem !important
  }

  .rmc-height-sm-7xl {
    height: 4rem !important
  }

  .rmc-height-sm-8xl {
    height: 5rem !important
  }

  .rmc-height-sm-9xl {
    height: 6rem !important
  }

  .rmc-height-sm-10xl {
    height: 8rem !important
  }

  .rmc-height-sm-11xl {
    height: 10rem !important
  }

  .rmc-max-height-sm-none {
    max-height: none !important
  }

  .rmc-max-height-sm-xxs {
    max-height: .125rem !important
  }

  .rmc-max-height-sm-xs {
    max-height: .25rem !important
  }

  .rmc-max-height-sm-sm {
    max-height: .375rem !important
  }

  .rmc-max-height-sm-md {
    max-height: .5rem !important
  }

  .rmc-max-height-sm-lg {
    max-height: .75rem !important
  }

  .rmc-max-height-sm-xl {
    max-height: 1rem !important
  }

  .rmc-max-height-sm-2xl {
    max-height: 1.25rem !important
  }

  .rmc-max-height-sm-3xl {
    max-height: 1.5rem !important
  }

  .rmc-max-height-sm-4xl {
    max-height: 2rem !important
  }

  .rmc-max-height-sm-5xl {
    max-height: 2.5rem !important
  }

  .rmc-max-height-sm-6xl {
    max-height: 3rem !important
  }

  .rmc-max-height-sm-7xl {
    max-height: 4rem !important
  }

  .rmc-max-height-sm-8xl {
    max-height: 5rem !important
  }

  .rmc-max-height-sm-9xl {
    max-height: 6rem !important
  }

  .rmc-max-height-sm-10xl {
    max-height: 8rem !important
  }

  .rmc-max-height-sm-11xl {
    max-height: 10rem !important
  }

  .rmc-width-sm-none {
    width: 0 !important
  }

  .rmc-width-sm-xxs {
    width: .125rem !important
  }

  .rmc-width-sm-xs {
    width: .25rem !important
  }

  .rmc-width-sm-sm {
    width: .375rem !important
  }

  .rmc-width-sm-md {
    width: .5rem !important
  }

  .rmc-width-sm-lg {
    width: .75rem !important
  }

  .rmc-width-sm-xl {
    width: 1rem !important
  }

  .rmc-width-sm-2xl {
    width: 1.25rem !important
  }

  .rmc-width-sm-3xl {
    width: 1.5rem !important
  }

  .rmc-width-sm-4xl {
    width: 2rem !important
  }

  .rmc-width-sm-5xl {
    width: 2.5rem !important
  }

  .rmc-width-sm-6xl {
    width: 3rem !important
  }

  .rmc-width-sm-7xl {
    width: 4rem !important
  }

  .rmc-width-sm-8xl {
    width: 5rem !important
  }

  .rmc-width-sm-9xl {
    width: 6rem !important
  }

  .rmc-width-sm-10xl {
    width: 8rem !important
  }

  .rmc-width-sm-11xl {
    width: 10rem !important
  }

  .rmc-width-sm-40 {
    width: 40rem !important
  }

  .rmc-width-sm-30 {
    width: 30rem !important
  }

  .rmc-width-sm-7p5 {
    width: 7.5rem !important
  }

  .rmc-width-sm-13 {
    width: 13rem !important
  }

  .rmc-height-sm-40 {
    height: 40rem !important
  }

  .rmc-height-sm-30 {
    height: 30rem !important
  }

  .rmc-height-sm-7p5 {
    height: 7.5rem !important
  }

  .rmc-height-sm-13 {
    height: 13rem !important
  }

  .rmc-lh-sm-none {
    line-height: 0 !important
  }

  .rmc-lh-sm-xxs {
    line-height: .125rem !important
  }

  .rmc-lh-sm-xs {
    line-height: .25rem !important
  }

  .rmc-lh-sm-sm {
    line-height: .375rem !important
  }

  .rmc-lh-sm-md {
    line-height: .5rem !important
  }

  .rmc-lh-sm-lg {
    line-height: .75rem !important
  }

  .rmc-lh-sm-xl {
    line-height: 1rem !important
  }

  .rmc-lh-sm-2xl {
    line-height: 1.25rem !important
  }

  .rmc-lh-sm-3xl {
    line-height: 1.5rem !important
  }

  .rmc-lh-sm-4xl {
    line-height: 2rem !important
  }

  .rmc-lh-sm-5xl {
    line-height: 2.5rem !important
  }

  .rmc-lh-sm-6xl {
    line-height: 3rem !important
  }

  .rmc-lh-sm-7xl {
    line-height: 4rem !important
  }

  .rmc-lh-sm-8xl {
    line-height: 5rem !important
  }

  .rmc-lh-sm-9xl {
    line-height: 6rem !important
  }

  .rmc-lh-sm-10xl {
    line-height: 8rem !important
  }

  .rmc-lh-sm-11xl {
    line-height: 10rem !important
  }

  .rmc-radius-sm-none {
    border-radius: 0 !important
  }

  .rmc-radius-sm-xxs {
    border-radius: .125rem !important
  }

  .rmc-radius-sm-xs {
    border-radius: .25rem !important
  }

  .rmc-radius-sm-sm {
    border-radius: .375rem !important
  }

  .rmc-radius-sm-md {
    border-radius: .5rem !important
  }

  .rmc-radius-sm-lg {
    border-radius: .625rem !important
  }

  .rmc-radius-sm-xl {
    border-radius: .75rem !important
  }

  .rmc-radius-sm-2xl {
    border-radius: 1rem !important
  }

  .rmc-radius-sm-3xl {
    border-radius: 1.25rem !important
  }

  .rmc-radius-sm-4xl {
    border-radius: 1.5rem !important
  }

  .rmc-radius-sm-50 {
    border-radius: 50% !important
  }

  .rmc-color-sm-base-white {
    color: #fff !important
  }

  .rmc-color-sm-base-transparent {
    color: transparent !important
  }

  .rmc-color-sm-base-black {
    color: #000 !important
  }

  .rmc-color-sm-gray-light-10 {
    color: #eaedf0 !important
  }

  .rmc-color-sm-gray-light-25 {
    color: #fcfdfd !important
  }

  .rmc-color-sm-gray-light-50 {
    color: #f9fafb !important
  }

  .rmc-color-sm-gray-light-70 {
    color: #ebeef1 !important
  }

  .rmc-color-sm-gray-light-100 {
    color: #f2f5f7 !important
  }

  .rmc-color-sm-gray-light-200 {
    color: #eaecf0 !important
  }

  .rmc-color-sm-gray-light-300 {
    color: #d6dadd !important
  }

  .rmc-color-sm-gray-light-400 {
    color: #c6c9cc !important
  }

  .rmc-color-sm-gray-light-500 {
    color: #97999b !important
  }

  .rmc-color-sm-gray-light-600 {
    color: #596067 !important
  }

  .rmc-color-sm-gray-light-650 {
    color: #515d6d !important
  }

  .rmc-color-sm-gray-light-700 {
    color: #394754 !important
  }

  .rmc-color-sm-gray-light-750 {
    color: #475467 !important
  }

  .rmc-color-sm-gray-light-800 {
    color: #182430 !important
  }

  .rmc-color-sm-gray-light-900 {
    color: #101c28 !important
  }

  .rmc-color-sm-gray-light-950 {
    color: #0c151d !important
  }

  .rmc-color-sm-gray-dark-50 {
    color: #f5f5f6 !important
  }

  .rmc-color-sm-gray-dark-60 {
    color: #f5fbff !important
  }

  .rmc-color-sm-gray-dark-100 {
    color: #f0f0f1 !important
  }

  .rmc-color-sm-gray-dark-200 {
    color: #ececed !important
  }

  .rmc-color-sm-gray-dark-300 {
    color: #ced0d2 !important
  }

  .rmc-color-sm-gray-dark-400 {
    color: #94979c !important
  }

  .rmc-color-sm-gray-dark-450 {
    color: #636d80 !important
  }

  .rmc-color-sm-gray-dark-500 {
    color: #63666a !important
  }

  .rmc-color-sm-gray-dark-600 {
    color: #575b61 !important
  }

  .rmc-color-sm-gray-dark-650 {
    color: #4a4a4a !important
  }

  .rmc-color-sm-gray-dark-700 {
    color: #333941 !important
  }

  .rmc-color-sm-gray-dark-750 {
    color: #202834 !important
  }

  .rmc-color-sm-gray-dark-800 {
    color: #1f262f !important
  }

  .rmc-color-sm-gray-dark-900 {
    color: #161d26 !important
  }

  .rmc-color-sm-gray-dark-950 {
    color: #101828 !important
  }

  .rmc-color-sm-brand-500 {
    color: #e4002b !important
  }

  .rmc-color-sm-error-500 {
    color: #f04438 !important
  }

  .rmc-color-sm-warning-500 {
    color: #ef6820 !important
  }

  .rmc-color-sm-success-500 {
    color: #789d4a !important
  }

  .rmc-color-sm-green-light-500 {
    color: #a9c47f !important
  }

  .rmc-color-sm-green-dark-100 {
    color: #358486 !important
  }

  .rmc-color-sm-green-dark-200 {
    color: #215253 !important
  }

  .rmc-color-sm-teal-light-500 {
    color: #6bbbae !important
  }

  .rmc-color-sm-teal-500 {
    color: #4f868e !important
  }

  .rmc-color-sm-blue-light-500 {
    color: #7a99ac !important
  }

  .rmc-color-sm-blue-500 {
    color: #1b365d !important
  }

  .rmc-color-sm-beige-light-500 {
    color: #dfd1a7 !important
  }

  .rmc-color-sm-beige-500 {
    color: #a09074 !important
  }

  .rmc-color-sm-yellow-400 {
    color: #f1be48 !important
  }

  .rmc-color-sm-yellow-500 {
    color: #eaaa08 !important
  }

  .rmc-color-sm-neutral-95 {
    color: #e8e8f5 !important
  }

  .rmc-color-sm-neutral-90 {
    color: #eaedf0 !important
  }

  .rmc-color-sm-text-primary {
    color: #101c28 !important
  }

  .rmc-color-sm-text-secondary {
    color: #596067 !important
  }

  .rmc-color-sm-text-tertiary {
    color: #575b61 !important
  }

  .rmc-color-sm-text-whtie {
    color: #fff !important
  }

  .rmc-color-sm-text-disabled,
  .rmc-color-sm-text-placeholder {
    color: #63666a !important
  }

  .rmc-color-sm-text-brand {
    color: #e4002b !important
  }

  .rmc-color-sm-text-error {
    color: #f04438 !important
  }

  .rmc-color-sm-text-warning {
    color: #ef6820 !important
  }

  .rmc-color-sm-text-success {
    color: #789d4a !important
  }

  .rmc-bg-color-sm-base-white {
    background-color: #fff !important
  }

  .rmc-bg-color-sm-base-transparent {
    background-color: transparent !important
  }

  .rmc-bg-color-sm-base-black {
    background-color: #000 !important
  }

  .rmc-bg-color-sm-gray-light-10 {
    background-color: #eaedf0 !important
  }

  .rmc-bg-color-sm-gray-light-25 {
    background-color: #fcfdfd !important
  }

  .rmc-bg-color-sm-gray-light-50 {
    background-color: #f9fafb !important
  }

  .rmc-bg-color-sm-gray-light-70 {
    background-color: #ebeef1 !important
  }

  .rmc-bg-color-sm-gray-light-100 {
    background-color: #f2f5f7 !important
  }

  .rmc-bg-color-sm-gray-light-200 {
    background-color: #eaecf0 !important
  }

  .rmc-bg-color-sm-gray-light-300 {
    background-color: #d6dadd !important
  }

  .rmc-bg-color-sm-gray-light-400 {
    background-color: #c6c9cc !important
  }

  .rmc-bg-color-sm-gray-light-500 {
    background-color: #97999b !important
  }

  .rmc-bg-color-sm-gray-light-600 {
    background-color: #596067 !important
  }

  .rmc-bg-color-sm-gray-light-650 {
    background-color: #515d6d !important
  }

  .rmc-bg-color-sm-gray-light-700 {
    background-color: #394754 !important
  }

  .rmc-bg-color-sm-gray-light-750 {
    background-color: #475467 !important
  }

  .rmc-bg-color-sm-gray-light-800 {
    background-color: #182430 !important
  }

  .rmc-bg-color-sm-gray-light-900 {
    background-color: #101c28 !important
  }

  .rmc-bg-color-sm-gray-light-950 {
    background-color: #0c151d !important
  }

  .rmc-bg-color-sm-gray-dark-50 {
    background-color: #f5f5f6 !important
  }

  .rmc-bg-color-sm-gray-dark-60 {
    background-color: #f5fbff !important
  }

  .rmc-bg-color-sm-gray-dark-100 {
    background-color: #f0f0f1 !important
  }

  .rmc-bg-color-sm-gray-dark-200 {
    background-color: #ececed !important
  }

  .rmc-bg-color-sm-gray-dark-300 {
    background-color: #ced0d2 !important
  }

  .rmc-bg-color-sm-gray-dark-400 {
    background-color: #94979c !important
  }

  .rmc-bg-color-sm-gray-dark-450 {
    background-color: #636d80 !important
  }

  .rmc-bg-color-sm-gray-dark-500 {
    background-color: #63666a !important
  }

  .rmc-bg-color-sm-gray-dark-600 {
    background-color: #575b61 !important
  }

  .rmc-bg-color-sm-gray-dark-650 {
    background-color: #4a4a4a !important
  }

  .rmc-bg-color-sm-gray-dark-700 {
    background-color: #333941 !important
  }

  .rmc-bg-color-sm-gray-dark-750 {
    background-color: #202834 !important
  }

  .rmc-bg-color-sm-gray-dark-800 {
    background-color: #1f262f !important
  }

  .rmc-bg-color-sm-gray-dark-900 {
    background-color: #161d26 !important
  }

  .rmc-bg-color-sm-gray-dark-950 {
    background-color: #101828 !important
  }

  .rmc-bg-color-sm-brand-500 {
    background-color: #e4002b !important
  }

  .rmc-bg-color-sm-error-500 {
    background-color: #f04438 !important
  }

  .rmc-bg-color-sm-warning-500 {
    background-color: #ef6820 !important
  }

  .rmc-bg-color-sm-success-500 {
    background-color: #789d4a !important
  }

  .rmc-bg-color-sm-green-light-500 {
    background-color: #a9c47f !important
  }

  .rmc-bg-color-sm-green-dark-100 {
    background-color: #358486 !important
  }

  .rmc-bg-color-sm-green-dark-200 {
    background-color: #215253 !important
  }

  .rmc-bg-color-sm-teal-light-500 {
    background-color: #6bbbae !important
  }

  .rmc-bg-color-sm-teal-500 {
    background-color: #4f868e !important
  }

  .rmc-bg-color-sm-blue-light-500 {
    background-color: #7a99ac !important
  }

  .rmc-bg-color-sm-blue-500 {
    background-color: #1b365d !important
  }

  .rmc-bg-color-sm-beige-light-500 {
    background-color: #dfd1a7 !important
  }

  .rmc-bg-color-sm-beige-500 {
    background-color: #a09074 !important
  }

  .rmc-bg-color-sm-yellow-400 {
    background-color: #f1be48 !important
  }

  .rmc-bg-color-sm-yellow-500 {
    background-color: #eaaa08 !important
  }

  .rmc-bg-color-sm-neutral-95 {
    background-color: #e8e8f5 !important
  }

  .rmc-bg-color-sm-neutral-90 {
    background-color: #eaedf0 !important
  }

  .rmc-bg-color-sm-text-primary {
    background-color: #101c28 !important
  }

  .rmc-bg-color-sm-text-secondary {
    background-color: #596067 !important
  }

  .rmc-bg-color-sm-text-tertiary {
    background-color: #575b61 !important
  }

  .rmc-bg-color-sm-text-whtie {
    background-color: #fff !important
  }

  .rmc-bg-color-sm-text-disabled,
  .rmc-bg-color-sm-text-placeholder {
    background-color: #63666a !important
  }

  .rmc-bg-color-sm-text-brand {
    background-color: #e4002b !important
  }

  .rmc-bg-color-sm-text-error {
    background-color: #f04438 !important
  }

  .rmc-bg-color-sm-text-warning {
    background-color: #ef6820 !important
  }

  .rmc-bg-color-sm-text-success {
    background-color: #789d4a !important
  }

  .rmc-border-sm-base-white {
    border: 1px solid #ffffff !important
  }

  .rmc-border-sm-base-transparent {
    border: 1px solid transparent !important
  }

  .rmc-border-sm-base-black {
    border: 1px solid #000000 !important
  }

  .rmc-border-sm-gray-light-10 {
    border: 1px solid #eaedf0 !important
  }

  .rmc-border-sm-gray-light-25 {
    border: 1px solid #fcfdfd !important
  }

  .rmc-border-sm-gray-light-50 {
    border: 1px solid #f9fafb !important
  }

  .rmc-border-sm-gray-light-70 {
    border: 1px solid #ebeef1 !important
  }

  .rmc-border-sm-gray-light-100 {
    border: 1px solid #f2f5f7 !important
  }

  .rmc-border-sm-gray-light-200 {
    border: 1px solid #eaecf0 !important
  }

  .rmc-border-sm-gray-light-300 {
    border: 1px solid #d6dadd !important
  }

  .rmc-border-sm-gray-light-400 {
    border: 1px solid #c6c9cc !important
  }

  .rmc-border-sm-gray-light-500 {
    border: 1px solid #97999b !important
  }

  .rmc-border-sm-gray-light-600 {
    border: 1px solid #596067 !important
  }

  .rmc-border-sm-gray-light-650 {
    border: 1px solid #515d6d !important
  }

  .rmc-border-sm-gray-light-700 {
    border: 1px solid #394754 !important
  }

  .rmc-border-sm-gray-light-750 {
    border: 1px solid #475467 !important
  }

  .rmc-border-sm-gray-light-800 {
    border: 1px solid #182430 !important
  }

  .rmc-border-sm-gray-light-900 {
    border: 1px solid #101c28 !important
  }

  .rmc-border-sm-gray-light-950 {
    border: 1px solid #0c151d !important
  }

  .rmc-border-sm-gray-dark-50 {
    border: 1px solid #f5f5f6 !important
  }

  .rmc-border-sm-gray-dark-60 {
    border: 1px solid #f5fbff !important
  }

  .rmc-border-sm-gray-dark-100 {
    border: 1px solid #f0f0f1 !important
  }

  .rmc-border-sm-gray-dark-200 {
    border: 1px solid #ececed !important
  }

  .rmc-border-sm-gray-dark-300 {
    border: 1px solid #ced0d2 !important
  }

  .rmc-border-sm-gray-dark-400 {
    border: 1px solid #94979c !important
  }

  .rmc-border-sm-gray-dark-450 {
    border: 1px solid #636d80 !important
  }

  .rmc-border-sm-gray-dark-500 {
    border: 1px solid #63666a !important
  }

  .rmc-border-sm-gray-dark-600 {
    border: 1px solid #575b61 !important
  }

  .rmc-border-sm-gray-dark-650 {
    border: 1px solid #4a4a4a !important
  }

  .rmc-border-sm-gray-dark-700 {
    border: 1px solid #333941 !important
  }

  .rmc-border-sm-gray-dark-750 {
    border: 1px solid #202834 !important
  }

  .rmc-border-sm-gray-dark-800 {
    border: 1px solid #1f262f !important
  }

  .rmc-border-sm-gray-dark-900 {
    border: 1px solid #161d26 !important
  }

  .rmc-border-sm-gray-dark-950 {
    border: 1px solid #101828 !important
  }

  .rmc-border-sm-brand-500 {
    border: 1px solid #e4002b !important
  }

  .rmc-border-sm-error-500 {
    border: 1px solid #f04438 !important
  }

  .rmc-border-sm-warning-500 {
    border: 1px solid #ef6820 !important
  }

  .rmc-border-sm-success-500 {
    border: 1px solid #789d4a !important
  }

  .rmc-border-sm-green-light-500 {
    border: 1px solid #a9c47f !important
  }

  .rmc-border-sm-green-dark-100 {
    border: 1px solid #358486 !important
  }

  .rmc-border-sm-green-dark-200 {
    border: 1px solid #215253 !important
  }

  .rmc-border-sm-teal-light-500 {
    border: 1px solid #6bbbae !important
  }

  .rmc-border-sm-teal-500 {
    border: 1px solid #4f868e !important
  }

  .rmc-border-sm-blue-light-500 {
    border: 1px solid #7a99ac !important
  }

  .rmc-border-sm-blue-500 {
    border: 1px solid #1b365d !important
  }

  .rmc-border-sm-beige-light-500 {
    border: 1px solid #dfd1a7 !important
  }

  .rmc-border-sm-beige-500 {
    border: 1px solid #a09074 !important
  }

  .rmc-border-sm-yellow-400 {
    border: 1px solid #f1be48 !important
  }

  .rmc-border-sm-yellow-500 {
    border: 1px solid #eaaa08 !important
  }

  .rmc-border-sm-neutral-95 {
    border: 1px solid #e8e8f5 !important
  }

  .rmc-border-sm-neutral-90 {
    border: 1px solid #eaedf0 !important
  }

  .rmc-border-sm-text-primary {
    border: 1px solid #101c28 !important
  }

  .rmc-border-sm-text-secondary {
    border: 1px solid #596067 !important
  }

  .rmc-border-sm-text-tertiary {
    border: 1px solid #575b61 !important
  }

  .rmc-border-sm-text-whtie {
    border: 1px solid #ffffff !important
  }

  .rmc-border-sm-text-disabled,
  .rmc-border-sm-text-placeholder {
    border: 1px solid #63666a !important
  }

  .rmc-border-sm-text-brand {
    border: 1px solid #e4002b !important
  }

  .rmc-border-sm-text-error {
    border: 1px solid #f04438 !important
  }

  .rmc-border-sm-text-warning {
    border: 1px solid #ef6820 !important
  }

  .rmc-border-sm-text-success {
    border: 1px solid #789d4a !important
  }

  .rmc-border-sm-gray-dotted-4 {
    border: 4px dotted #94979c !important
  }

  .rmc-vertical-align-sm-top {
    vertical-align: top !important
  }

  .rmc-vertical-align-sm-bottom {
    vertical-align: bottom !important
  }

  .rmc-vertical-align-sm-middle {
    vertical-align: middle !important
  }

  .rmc-vertical-align-sm-baseline {
    vertical-align: baseline !important
  }

  .rmc-vertical-align-sm-sub {
    vertical-align: sub !important
  }

  .rmc-vertical-align-sm-text-top {
    vertical-align: text-top !important
  }

  .rmc-opacity-sm-0 {
    opacity: 0 !important
  }

  .rmc-opacity-sm-100 {
    opacity: 100 !important
  }

  .rmc-column-count-sm-1 {
    column-count: 1 !important
  }

  .rmc-column-count-sm-2 {
    column-count: 2 !important
  }

  .rmc-column-count-sm-3 {
    column-count: 3 !important
  }

  .rmc-column-count-sm-4 {
    column-count: 4 !important
  }

  .rmc-column-count-sm-5 {
    column-count: 5 !important
  }

  .rmc-column-count-sm-6 {
    column-count: 6 !important
  }

  .rmc-column-count-sm-7 {
    column-count: 7 !important
  }

  .rmc-column-count-sm-8 {
    column-count: 8 !important
  }

  .rmc-column-count-sm-9 {
    column-count: 9 !important
  }

  .rmc-column-count-sm-10 {
    column-count: 10 !important
  }

  .rmc-column-count-sm-11 {
    column-count: 11 !important
  }

  .rmc-column-count-sm-12 {
    column-count: 12 !important
  }

  .rmc-break-inside-sm-avoid {
    break-inside: avoid !important
  }

  .rmc-break-inside-sm-avoid-column {
    break-inside: avoid-column !important
  }

  .rmc-break-inside-sm-avoid-page {
    break-inside: avoid-page !important
  }

  .rmc-break-inside-sm-avoid-region {
    break-inside: avoid-region !important
  }

  .rmc-break-inside-sm-auto {
    break-inside: auto !important
  }

  .rmc-aspect-ratio-sm-16-9 {
    aspect-ratio: 1.7777777778 !important
  }

  .rmc-aspect-ratio-sm-1-1 {
    aspect-ratio: 1 !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
  }

  .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: .25rem !important
  }

  .m-md-2 {
    margin: .5rem !important
  }

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

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

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

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

  .mx-md-0 {
    margin-right: 0 !important;
    margin-left: 0 !important
  }

  .mx-md-1 {
    margin-right: .25rem !important;
    margin-left: .25rem !important
  }

  .mx-md-2 {
    margin-right: .5rem !important;
    margin-left: .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: 3rem !important;
    margin-left: 3rem !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: .25rem !important;
    margin-bottom: .25rem !important
  }

  .my-md-2 {
    margin-top: .5rem !important;
    margin-bottom: .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: 3rem !important;
    margin-bottom: 3rem !important
  }

  .my-md-auto {
    margin-top: auto !important;
    margin-bottom: auto !important
  }

  .mt-md-0 {
    margin-top: 0 !important
  }

  .mt-md-1 {
    margin-top: .25rem !important
  }

  .mt-md-2 {
    margin-top: .5rem !important
  }

  .mt-md-3 {
    margin-top: 1rem !important
  }

  .mt-md-4 {
    margin-top: 1.5rem !important
  }

  .mt-md-5 {
    margin-top: 3rem !important
  }

  .mt-md-auto {
    margin-top: auto !important
  }

  .me-md-0 {
    margin-right: 0 !important
  }

  .me-md-1 {
    margin-right: .25rem !important
  }

  .me-md-2 {
    margin-right: .5rem !important
  }

  .me-md-3 {
    margin-right: 1rem !important
  }

  .me-md-4 {
    margin-right: 1.5rem !important
  }

  .me-md-5 {
    margin-right: 3rem !important
  }

  .me-md-auto {
    margin-right: auto !important
  }

  .mb-md-0 {
    margin-bottom: 0 !important
  }

  .mb-md-1 {
    margin-bottom: .25rem !important
  }

  .mb-md-2 {
    margin-bottom: .5rem !important
  }

  .mb-md-3 {
    margin-bottom: 1rem !important
  }

  .mb-md-4 {
    margin-bottom: 1.5rem !important
  }

  .mb-md-5 {
    margin-bottom: 3rem !important
  }

  .mb-md-auto {
    margin-bottom: auto !important
  }

  .ms-md-0 {
    margin-left: 0 !important
  }

  .ms-md-1 {
    margin-left: .25rem !important
  }

  .ms-md-2 {
    margin-left: .5rem !important
  }

  .ms-md-3 {
    margin-left: 1rem !important
  }

  .ms-md-4 {
    margin-left: 1.5rem !important
  }

  .ms-md-5 {
    margin-left: 3rem !important
  }

  .ms-md-auto {
    margin-left: auto !important
  }

  .m-md-n1 {
    margin: -.25rem !important
  }

  .m-md-n2 {
    margin: -.5rem !important
  }

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

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

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

  .mx-md-n1 {
    margin-right: -.25rem !important;
    margin-left: -.25rem !important
  }

  .mx-md-n2 {
    margin-right: -.5rem !important;
    margin-left: -.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: -3rem !important;
    margin-left: -3rem !important
  }

  .my-md-n1 {
    margin-top: -.25rem !important;
    margin-bottom: -.25rem !important
  }

  .my-md-n2 {
    margin-top: -.5rem !important;
    margin-bottom: -.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: -3rem !important;
    margin-bottom: -3rem !important
  }

  .mt-md-n1 {
    margin-top: -.25rem !important
  }

  .mt-md-n2 {
    margin-top: -.5rem !important
  }

  .mt-md-n3 {
    margin-top: -1rem !important
  }

  .mt-md-n4 {
    margin-top: -1.5rem !important
  }

  .mt-md-n5 {
    margin-top: -3rem !important
  }

  .me-md-n1 {
    margin-right: -.25rem !important
  }

  .me-md-n2 {
    margin-right: -.5rem !important
  }

  .me-md-n3 {
    margin-right: -1rem !important
  }

  .me-md-n4 {
    margin-right: -1.5rem !important
  }

  .me-md-n5 {
    margin-right: -3rem !important
  }

  .mb-md-n1 {
    margin-bottom: -.25rem !important
  }

  .mb-md-n2 {
    margin-bottom: -.5rem !important
  }

  .mb-md-n3 {
    margin-bottom: -1rem !important
  }

  .mb-md-n4 {
    margin-bottom: -1.5rem !important
  }

  .mb-md-n5 {
    margin-bottom: -3rem !important
  }

  .ms-md-n1 {
    margin-left: -.25rem !important
  }

  .ms-md-n2 {
    margin-left: -.5rem !important
  }

  .ms-md-n3 {
    margin-left: -1rem !important
  }

  .ms-md-n4 {
    margin-left: -1.5rem !important
  }

  .ms-md-n5 {
    margin-left: -3rem !important
  }

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

  .p-md-1 {
    padding: .25rem !important
  }

  .p-md-2 {
    padding: .5rem !important
  }

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

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

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

  .px-md-0 {
    padding-right: 0 !important;
    padding-left: 0 !important
  }

  .px-md-1 {
    padding-right: .25rem !important;
    padding-left: .25rem !important
  }

  .px-md-2 {
    padding-right: .5rem !important;
    padding-left: .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: 3rem !important;
    padding-left: 3rem !important
  }

  .py-md-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important
  }

  .py-md-1 {
    padding-top: .25rem !important;
    padding-bottom: .25rem !important
  }

  .py-md-2 {
    padding-top: .5rem !important;
    padding-bottom: .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: 3rem !important;
    padding-bottom: 3rem !important
  }

  .pt-md-0 {
    padding-top: 0 !important
  }

  .pt-md-1 {
    padding-top: .25rem !important
  }

  .pt-md-2 {
    padding-top: .5rem !important
  }

  .pt-md-3 {
    padding-top: 1rem !important
  }

  .pt-md-4 {
    padding-top: 1.5rem !important
  }

  .pt-md-5 {
    padding-top: 3rem !important
  }

  .pe-md-0 {
    padding-right: 0 !important
  }

  .pe-md-1 {
    padding-right: .25rem !important
  }

  .pe-md-2 {
    padding-right: .5rem !important
  }

  .pe-md-3 {
    padding-right: 1rem !important
  }

  .pe-md-4 {
    padding-right: 1.5rem !important
  }

  .pe-md-5 {
    padding-right: 3rem !important
  }

  .pb-md-0 {
    padding-bottom: 0 !important
  }

  .pb-md-1 {
    padding-bottom: .25rem !important
  }

  .pb-md-2 {
    padding-bottom: .5rem !important
  }

  .pb-md-3 {
    padding-bottom: 1rem !important
  }

  .pb-md-4 {
    padding-bottom: 1.5rem !important
  }

  .pb-md-5 {
    padding-bottom: 3rem !important
  }

  .ps-md-0 {
    padding-left: 0 !important
  }

  .ps-md-1 {
    padding-left: .25rem !important
  }

  .ps-md-2 {
    padding-left: .5rem !important
  }

  .ps-md-3 {
    padding-left: 1rem !important
  }

  .ps-md-4 {
    padding-left: 1.5rem !important
  }

  .ps-md-5 {
    padding-left: 3rem !important
  }

  .gap-md-0 {
    gap: 0 !important
  }

  .gap-md-1 {
    gap: .25rem !important
  }

  .gap-md-2 {
    gap: .5rem !important
  }

  .gap-md-3 {
    gap: 1rem !important
  }

  .gap-md-4 {
    gap: 1.5rem !important
  }

  .gap-md-5 {
    gap: 3rem !important
  }

  .row-gap-md-0 {
    row-gap: 0 !important
  }

  .row-gap-md-1 {
    row-gap: .25rem !important
  }

  .row-gap-md-2 {
    row-gap: .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: 3rem !important
  }

  .column-gap-md-0 {
    column-gap: 0 !important
  }

  .column-gap-md-1 {
    column-gap: .25rem !important
  }

  .column-gap-md-2 {
    column-gap: .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: 3rem !important
  }

  .text-md-start {
    text-align: left !important
  }

  .text-md-end {
    text-align: right !important
  }

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

  .rmc-my-md-none {
    margin-top: 0 !important;
    margin-bottom: 0 !important
  }

  .rmc-my-md-xxs {
    margin-top: .125rem !important;
    margin-bottom: .125rem !important
  }

  .rmc-my-md-xs {
    margin-top: .25rem !important;
    margin-bottom: .25rem !important
  }

  .rmc-my-md-sm {
    margin-top: .375rem !important;
    margin-bottom: .375rem !important
  }

  .rmc-my-md-md {
    margin-top: .5rem !important;
    margin-bottom: .5rem !important
  }

  .rmc-my-md-lg {
    margin-top: .75rem !important;
    margin-bottom: .75rem !important
  }

  .rmc-my-md-xl {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important
  }

  .rmc-my-md-2xl {
    margin-top: 1.25rem !important;
    margin-bottom: 1.25rem !important
  }

  .rmc-my-md-3xl {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important
  }

  .rmc-my-md-4xl {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important
  }

  .rmc-my-md-5xl {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important
  }

  .rmc-my-md-6xl {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important
  }

  .rmc-my-md-7xl {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important
  }

  .rmc-my-md-8xl {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important
  }

  .rmc-my-md-9xl {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important
  }

  .rmc-my-md-10xl {
    margin-top: 8rem !important;
    margin-bottom: 8rem !important
  }

  .rmc-my-md-11xl {
    margin-top: 10rem !important;
    margin-bottom: 10rem !important
  }

  .rmc-my-md-auto {
    margin-top: auto !important;
    margin-bottom: auto !important
  }

  .rmc-mt-md-none {
    margin-top: 0 !important
  }

  .rmc-mt-md-xxs {
    margin-top: .125rem !important
  }

  .rmc-mt-md-xs {
    margin-top: .25rem !important
  }

  .rmc-mt-md-sm {
    margin-top: .375rem !important
  }

  .rmc-mt-md-md {
    margin-top: .5rem !important
  }

  .rmc-mt-md-lg {
    margin-top: .75rem !important
  }

  .rmc-mt-md-xl {
    margin-top: 1rem !important
  }

  .rmc-mt-md-2xl {
    margin-top: 1.25rem !important
  }

  .rmc-mt-md-3xl {
    margin-top: 1.5rem !important
  }

  .rmc-mt-md-4xl {
    margin-top: 2rem !important
  }

  .rmc-mt-md-5xl {
    margin-top: 2.5rem !important
  }

  .rmc-mt-md-6xl {
    margin-top: 3rem !important
  }

  .rmc-mt-md-7xl {
    margin-top: 4rem !important
  }

  .rmc-mt-md-8xl {
    margin-top: 5rem !important
  }

  .rmc-mt-md-9xl {
    margin-top: 6rem !important
  }

  .rmc-mt-md-10xl {
    margin-top: 8rem !important
  }

  .rmc-mt-md-11xl {
    margin-top: 10rem !important
  }

  .rmc-mt-md-auto {
    margin-top: auto !important
  }

  .rmc-mb-md-none {
    margin-bottom: 0 !important
  }

  .rmc-mb-md-xxs {
    margin-bottom: .125rem !important
  }

  .rmc-mb-md-xs {
    margin-bottom: .25rem !important
  }

  .rmc-mb-md-sm {
    margin-bottom: .375rem !important
  }

  .rmc-mb-md-md {
    margin-bottom: .5rem !important
  }

  .rmc-mb-md-lg {
    margin-bottom: .75rem !important
  }

  .rmc-mb-md-xl {
    margin-bottom: 1rem !important
  }

  .rmc-mb-md-2xl {
    margin-bottom: 1.25rem !important
  }

  .rmc-mb-md-3xl {
    margin-bottom: 1.5rem !important
  }

  .rmc-mb-md-4xl {
    margin-bottom: 2rem !important
  }

  .rmc-mb-md-5xl {
    margin-bottom: 2.5rem !important
  }

  .rmc-mb-md-6xl {
    margin-bottom: 3rem !important
  }

  .rmc-mb-md-7xl {
    margin-bottom: 4rem !important
  }

  .rmc-mb-md-8xl {
    margin-bottom: 5rem !important
  }

  .rmc-mb-md-9xl {
    margin-bottom: 6rem !important
  }

  .rmc-mb-md-10xl {
    margin-bottom: 8rem !important
  }

  .rmc-mb-md-11xl {
    margin-bottom: 10rem !important
  }

  .rmc-mb-md-auto {
    margin-bottom: auto !important
  }

  .rmc-ml-md-none {
    margin-left: 0 !important
  }

  .rmc-ml-md-xxs {
    margin-left: .125rem !important
  }

  .rmc-ml-md-xs {
    margin-left: .25rem !important
  }

  .rmc-ml-md-sm {
    margin-left: .375rem !important
  }

  .rmc-ml-md-md {
    margin-left: .5rem !important
  }

  .rmc-ml-md-lg {
    margin-left: .75rem !important
  }

  .rmc-ml-md-xl {
    margin-left: 1rem !important
  }

  .rmc-ml-md-2xl {
    margin-left: 1.25rem !important
  }

  .rmc-ml-md-3xl {
    margin-left: 1.5rem !important
  }

  .rmc-ml-md-4xl {
    margin-left: 2rem !important
  }

  .rmc-ml-md-5xl {
    margin-left: 2.5rem !important
  }

  .rmc-ml-md-6xl {
    margin-left: 3rem !important
  }

  .rmc-ml-md-7xl {
    margin-left: 4rem !important
  }

  .rmc-ml-md-8xl {
    margin-left: 5rem !important
  }

  .rmc-ml-md-9xl {
    margin-left: 6rem !important
  }

  .rmc-ml-md-10xl {
    margin-left: 8rem !important
  }

  .rmc-ml-md-11xl {
    margin-left: 10rem !important
  }

  .rmc-ml-md-auto {
    margin-left: auto !important
  }

  .rmc-mr-md-none {
    margin-right: 0 !important
  }

  .rmc-mr-md-xxs {
    margin-right: .125rem !important
  }

  .rmc-mr-md-xs {
    margin-right: .25rem !important
  }

  .rmc-mr-md-sm {
    margin-right: .375rem !important
  }

  .rmc-mr-md-md {
    margin-right: .5rem !important
  }

  .rmc-mr-md-lg {
    margin-right: .75rem !important
  }

  .rmc-mr-md-xl {
    margin-right: 1rem !important
  }

  .rmc-mr-md-2xl {
    margin-right: 1.25rem !important
  }

  .rmc-mr-md-3xl {
    margin-right: 1.5rem !important
  }

  .rmc-mr-md-4xl {
    margin-right: 2rem !important
  }

  .rmc-mr-md-5xl {
    margin-right: 2.5rem !important
  }

  .rmc-mr-md-6xl {
    margin-right: 3rem !important
  }

  .rmc-mr-md-7xl {
    margin-right: 4rem !important
  }

  .rmc-mr-md-8xl {
    margin-right: 5rem !important
  }

  .rmc-mr-md-9xl {
    margin-right: 6rem !important
  }

  .rmc-mr-md-10xl {
    margin-right: 8rem !important
  }

  .rmc-mr-md-11xl {
    margin-right: 10rem !important
  }

  .rmc-mr-md-auto {
    margin-right: auto !important
  }

  .rmc-mx-md-none {
    margin-left: 0 !important;
    margin-right: 0 !important
  }

  .rmc-mx-md-xxs {
    margin-left: .125rem !important;
    margin-right: .125rem !important
  }

  .rmc-mx-md-xs {
    margin-left: .25rem !important;
    margin-right: .25rem !important
  }

  .rmc-mx-md-sm {
    margin-left: .375rem !important;
    margin-right: .375rem !important
  }

  .rmc-mx-md-md {
    margin-left: .5rem !important;
    margin-right: .5rem !important
  }

  .rmc-mx-md-lg {
    margin-left: .75rem !important;
    margin-right: .75rem !important
  }

  .rmc-mx-md-xl {
    margin-left: 1rem !important;
    margin-right: 1rem !important
  }

  .rmc-mx-md-2xl {
    margin-left: 1.25rem !important;
    margin-right: 1.25rem !important
  }

  .rmc-mx-md-3xl {
    margin-left: 1.5rem !important;
    margin-right: 1.5rem !important
  }

  .rmc-mx-md-4xl {
    margin-left: 2rem !important;
    margin-right: 2rem !important
  }

  .rmc-mx-md-5xl {
    margin-left: 2.5rem !important;
    margin-right: 2.5rem !important
  }

  .rmc-mx-md-6xl {
    margin-left: 3rem !important;
    margin-right: 3rem !important
  }

  .rmc-mx-md-7xl {
    margin-left: 4rem !important;
    margin-right: 4rem !important
  }

  .rmc-mx-md-8xl {
    margin-left: 5rem !important;
    margin-right: 5rem !important
  }

  .rmc-mx-md-9xl {
    margin-left: 6rem !important;
    margin-right: 6rem !important
  }

  .rmc-mx-md-10xl {
    margin-left: 8rem !important;
    margin-right: 8rem !important
  }

  .rmc-mx-md-11xl {
    margin-left: 10rem !important;
    margin-right: 10rem !important
  }

  .rmc-mx-md-auto {
    margin-left: auto !important;
    margin-right: auto !important
  }

  .rmc-p-md-none {
    padding: 0 !important
  }

  .rmc-p-md-xxs {
    padding: .125rem !important
  }

  .rmc-p-md-xs {
    padding: .25rem !important
  }

  .rmc-p-md-sm {
    padding: .375rem !important
  }

  .rmc-p-md-md {
    padding: .5rem !important
  }

  .rmc-p-md-lg {
    padding: .75rem !important
  }

  .rmc-p-md-xl {
    padding: 1rem !important
  }

  .rmc-p-md-2xl {
    padding: 1.25rem !important
  }

  .rmc-p-md-3xl {
    padding: 1.5rem !important
  }

  .rmc-p-md-4xl {
    padding: 2rem !important
  }

  .rmc-p-md-5xl {
    padding: 2.5rem !important
  }

  .rmc-p-md-6xl {
    padding: 3rem !important
  }

  .rmc-p-md-7xl {
    padding: 4rem !important
  }

  .rmc-p-md-8xl {
    padding: 5rem !important
  }

  .rmc-p-md-9xl {
    padding: 6rem !important
  }

  .rmc-p-md-10xl {
    padding: 8rem !important
  }

  .rmc-p-md-11xl {
    padding: 10rem !important
  }

  .rmc-p-md-auto {
    padding: auto !important
  }

  .rmc-py-md-none {
    padding-top: 0 !important;
    padding-bottom: 0 !important
  }

  .rmc-py-md-xxs {
    padding-top: .125rem !important;
    padding-bottom: .125rem !important
  }

  .rmc-py-md-xs {
    padding-top: .25rem !important;
    padding-bottom: .25rem !important
  }

  .rmc-py-md-sm {
    padding-top: .375rem !important;
    padding-bottom: .375rem !important
  }

  .rmc-py-md-md {
    padding-top: .5rem !important;
    padding-bottom: .5rem !important
  }

  .rmc-py-md-lg {
    padding-top: .75rem !important;
    padding-bottom: .75rem !important
  }

  .rmc-py-md-xl {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important
  }

  .rmc-py-md-2xl {
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important
  }

  .rmc-py-md-3xl {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important
  }

  .rmc-py-md-4xl {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important
  }

  .rmc-py-md-5xl {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important
  }

  .rmc-py-md-6xl {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important
  }

  .rmc-py-md-7xl {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important
  }

  .rmc-py-md-8xl {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important
  }

  .rmc-py-md-9xl {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important
  }

  .rmc-py-md-10xl {
    padding-top: 8rem !important;
    padding-bottom: 8rem !important
  }

  .rmc-py-md-11xl {
    padding-top: 10rem !important;
    padding-bottom: 10rem !important
  }

  .rmc-py-md-auto {
    padding-top: auto !important;
    padding-bottom: auto !important
  }

  .rmc-px-md-none {
    padding-left: 0 !important;
    padding-right: 0 !important
  }

  .rmc-px-md-xxs {
    padding-left: .125rem !important;
    padding-right: .125rem !important
  }

  .rmc-px-md-xs {
    padding-left: .25rem !important;
    padding-right: .25rem !important
  }

  .rmc-px-md-sm {
    padding-left: .375rem !important;
    padding-right: .375rem !important
  }

  .rmc-px-md-md {
    padding-left: .5rem !important;
    padding-right: .5rem !important
  }

  .rmc-px-md-lg {
    padding-left: .75rem !important;
    padding-right: .75rem !important
  }

  .rmc-px-md-xl {
    padding-left: 1rem !important;
    padding-right: 1rem !important
  }

  .rmc-px-md-2xl {
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important
  }

  .rmc-px-md-3xl {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important
  }

  .rmc-px-md-4xl {
    padding-left: 2rem !important;
    padding-right: 2rem !important
  }

  .rmc-px-md-5xl {
    padding-left: 2.5rem !important;
    padding-right: 2.5rem !important
  }

  .rmc-px-md-6xl {
    padding-left: 3rem !important;
    padding-right: 3rem !important
  }

  .rmc-px-md-7xl {
    padding-left: 4rem !important;
    padding-right: 4rem !important
  }

  .rmc-px-md-8xl {
    padding-left: 5rem !important;
    padding-right: 5rem !important
  }

  .rmc-px-md-9xl {
    padding-left: 6rem !important;
    padding-right: 6rem !important
  }

  .rmc-px-md-10xl {
    padding-left: 8rem !important;
    padding-right: 8rem !important
  }

  .rmc-px-md-11xl {
    padding-left: 10rem !important;
    padding-right: 10rem !important
  }

  .rmc-px-md-auto {
    padding-left: auto !important;
    padding-right: auto !important
  }

  .rmc-pt-md-none {
    padding-top: 0 !important
  }

  .rmc-pt-md-xxs {
    padding-top: .125rem !important
  }

  .rmc-pt-md-xs {
    padding-top: .25rem !important
  }

  .rmc-pt-md-sm {
    padding-top: .375rem !important
  }

  .rmc-pt-md-md {
    padding-top: .5rem !important
  }

  .rmc-pt-md-lg {
    padding-top: .75rem !important
  }

  .rmc-pt-md-xl {
    padding-top: 1rem !important
  }

  .rmc-pt-md-2xl {
    padding-top: 1.25rem !important
  }

  .rmc-pt-md-3xl {
    padding-top: 1.5rem !important
  }

  .rmc-pt-md-4xl {
    padding-top: 2rem !important
  }

  .rmc-pt-md-5xl {
    padding-top: 2.5rem !important
  }

  .rmc-pt-md-6xl {
    padding-top: 3rem !important
  }

  .rmc-pt-md-7xl {
    padding-top: 4rem !important
  }

  .rmc-pt-md-8xl {
    padding-top: 5rem !important
  }

  .rmc-pt-md-9xl {
    padding-top: 6rem !important
  }

  .rmc-pt-md-10xl {
    padding-top: 8rem !important
  }

  .rmc-pt-md-11xl {
    padding-top: 10rem !important
  }

  .rmc-pt-md-auto {
    padding-top: auto !important
  }

  .rmc-pb-md-none {
    padding-bottom: 0 !important
  }

  .rmc-pb-md-xxs {
    padding-bottom: .125rem !important
  }

  .rmc-pb-md-xs {
    padding-bottom: .25rem !important
  }

  .rmc-pb-md-sm {
    padding-bottom: .375rem !important
  }

  .rmc-pb-md-md {
    padding-bottom: .5rem !important
  }

  .rmc-pb-md-lg {
    padding-bottom: .75rem !important
  }

  .rmc-pb-md-xl {
    padding-bottom: 1rem !important
  }

  .rmc-pb-md-2xl {
    padding-bottom: 1.25rem !important
  }

  .rmc-pb-md-3xl {
    padding-bottom: 1.5rem !important
  }

  .rmc-pb-md-4xl {
    padding-bottom: 2rem !important
  }

  .rmc-pb-md-5xl {
    padding-bottom: 2.5rem !important
  }

  .rmc-pb-md-6xl {
    padding-bottom: 3rem !important
  }

  .rmc-pb-md-7xl {
    padding-bottom: 4rem !important
  }

  .rmc-pb-md-8xl {
    padding-bottom: 5rem !important
  }

  .rmc-pb-md-9xl {
    padding-bottom: 6rem !important
  }

  .rmc-pb-md-10xl {
    padding-bottom: 8rem !important
  }

  .rmc-pb-md-11xl {
    padding-bottom: 10rem !important
  }

  .rmc-pb-md-auto {
    padding-bottom: auto !important
  }

  .rmc-pl-md-none {
    padding-left: 0 !important
  }

  .rmc-pl-md-xxs {
    padding-left: .125rem !important
  }

  .rmc-pl-md-xs {
    padding-left: .25rem !important
  }

  .rmc-pl-md-sm {
    padding-left: .375rem !important
  }

  .rmc-pl-md-md {
    padding-left: .5rem !important
  }

  .rmc-pl-md-lg {
    padding-left: .75rem !important
  }

  .rmc-pl-md-xl {
    padding-left: 1rem !important
  }

  .rmc-pl-md-2xl {
    padding-left: 1.25rem !important
  }

  .rmc-pl-md-3xl {
    padding-left: 1.5rem !important
  }

  .rmc-pl-md-4xl {
    padding-left: 2rem !important
  }

  .rmc-pl-md-5xl {
    padding-left: 2.5rem !important
  }

  .rmc-pl-md-6xl {
    padding-left: 3rem !important
  }

  .rmc-pl-md-7xl {
    padding-left: 4rem !important
  }

  .rmc-pl-md-8xl {
    padding-left: 5rem !important
  }

  .rmc-pl-md-9xl {
    padding-left: 6rem !important
  }

  .rmc-pl-md-10xl {
    padding-left: 8rem !important
  }

  .rmc-pl-md-11xl {
    padding-left: 10rem !important
  }

  .rmc-pl-md-auto {
    padding-left: auto !important
  }

  .rmc-pr-md-none {
    padding-right: 0 !important
  }

  .rmc-pr-md-xxs {
    padding-right: .125rem !important
  }

  .rmc-pr-md-xs {
    padding-right: .25rem !important
  }

  .rmc-pr-md-sm {
    padding-right: .375rem !important
  }

  .rmc-pr-md-md {
    padding-right: .5rem !important
  }

  .rmc-pr-md-lg {
    padding-right: .75rem !important
  }

  .rmc-pr-md-xl {
    padding-right: 1rem !important
  }

  .rmc-pr-md-2xl {
    padding-right: 1.25rem !important
  }

  .rmc-pr-md-3xl {
    padding-right: 1.5rem !important
  }

  .rmc-pr-md-4xl {
    padding-right: 2rem !important
  }

  .rmc-pr-md-5xl {
    padding-right: 2.5rem !important
  }

  .rmc-pr-md-6xl {
    padding-right: 3rem !important
  }

  .rmc-pr-md-7xl {
    padding-right: 4rem !important
  }

  .rmc-pr-md-8xl {
    padding-right: 5rem !important
  }

  .rmc-pr-md-9xl {
    padding-right: 6rem !important
  }

  .rmc-pr-md-10xl {
    padding-right: 8rem !important
  }

  .rmc-pr-md-11xl {
    padding-right: 10rem !important
  }

  .rmc-pr-md-auto {
    padding-right: auto !important
  }

  .rmc-gap-md-none {
    gap: 0 !important
  }

  .rmc-gap-md-xxs {
    gap: .125rem !important
  }

  .rmc-gap-md-xs {
    gap: .25rem !important
  }

  .rmc-gap-md-sm {
    gap: .375rem !important
  }

  .rmc-gap-md-md {
    gap: .5rem !important
  }

  .rmc-gap-md-lg {
    gap: .75rem !important
  }

  .rmc-gap-md-xl {
    gap: 1rem !important
  }

  .rmc-gap-md-2xl {
    gap: 1.25rem !important
  }

  .rmc-gap-md-3xl {
    gap: 1.5rem !important
  }

  .rmc-gap-md-4xl {
    gap: 2rem !important
  }

  .rmc-gap-md-5xl {
    gap: 2.5rem !important
  }

  .rmc-gap-md-6xl {
    gap: 3rem !important
  }

  .rmc-gap-md-7xl {
    gap: 4rem !important
  }

  .rmc-gap-md-8xl {
    gap: 5rem !important
  }

  .rmc-gap-md-9xl {
    gap: 6rem !important
  }

  .rmc-gap-md-10xl {
    gap: 8rem !important
  }

  .rmc-gap-md-11xl {
    gap: 10rem !important
  }

  .rmc-gap-md-auto {
    gap: auto !important
  }

  .rmc-row-gap-md-none {
    row-gap: 0 !important
  }

  .rmc-row-gap-md-xxs {
    row-gap: .125rem !important
  }

  .rmc-row-gap-md-xs {
    row-gap: .25rem !important
  }

  .rmc-row-gap-md-sm {
    row-gap: .375rem !important
  }

  .rmc-row-gap-md-md {
    row-gap: .5rem !important
  }

  .rmc-row-gap-md-lg {
    row-gap: .75rem !important
  }

  .rmc-row-gap-md-xl {
    row-gap: 1rem !important
  }

  .rmc-row-gap-md-2xl {
    row-gap: 1.25rem !important
  }

  .rmc-row-gap-md-3xl {
    row-gap: 1.5rem !important
  }

  .rmc-row-gap-md-4xl {
    row-gap: 2rem !important
  }

  .rmc-row-gap-md-5xl {
    row-gap: 2.5rem !important
  }

  .rmc-row-gap-md-6xl {
    row-gap: 3rem !important
  }

  .rmc-row-gap-md-7xl {
    row-gap: 4rem !important
  }

  .rmc-row-gap-md-8xl {
    row-gap: 5rem !important
  }

  .rmc-row-gap-md-9xl {
    row-gap: 6rem !important
  }

  .rmc-row-gap-md-10xl {
    row-gap: 8rem !important
  }

  .rmc-row-gap-md-11xl {
    row-gap: 10rem !important
  }

  .rmc-column-gap-md-none {
    column-gap: 0 !important
  }

  .rmc-column-gap-md-xxs {
    column-gap: .125rem !important
  }

  .rmc-column-gap-md-xs {
    column-gap: .25rem !important
  }

  .rmc-column-gap-md-sm {
    column-gap: .375rem !important
  }

  .rmc-column-gap-md-md {
    column-gap: .5rem !important
  }

  .rmc-column-gap-md-lg {
    column-gap: .75rem !important
  }

  .rmc-column-gap-md-xl {
    column-gap: 1rem !important
  }

  .rmc-column-gap-md-2xl {
    column-gap: 1.25rem !important
  }

  .rmc-column-gap-md-3xl {
    column-gap: 1.5rem !important
  }

  .rmc-column-gap-md-4xl {
    column-gap: 2rem !important
  }

  .rmc-column-gap-md-5xl {
    column-gap: 2.5rem !important
  }

  .rmc-column-gap-md-6xl {
    column-gap: 3rem !important
  }

  .rmc-column-gap-md-7xl {
    column-gap: 4rem !important
  }

  .rmc-column-gap-md-8xl {
    column-gap: 5rem !important
  }

  .rmc-column-gap-md-9xl {
    column-gap: 6rem !important
  }

  .rmc-column-gap-md-10xl {
    column-gap: 8rem !important
  }

  .rmc-column-gap-md-11xl {
    column-gap: 10rem !important
  }

  .rmc-height-md-none {
    height: 0 !important
  }

  .rmc-height-md-xxs {
    height: .125rem !important
  }

  .rmc-height-md-xs {
    height: .25rem !important
  }

  .rmc-height-md-sm {
    height: .375rem !important
  }

  .rmc-height-md-md {
    height: .5rem !important
  }

  .rmc-height-md-lg {
    height: .75rem !important
  }

  .rmc-height-md-xl {
    height: 1rem !important
  }

  .rmc-height-md-2xl {
    height: 1.25rem !important
  }

  .rmc-height-md-3xl {
    height: 1.5rem !important
  }

  .rmc-height-md-4xl {
    height: 2rem !important
  }

  .rmc-height-md-5xl {
    height: 2.5rem !important
  }

  .rmc-height-md-6xl {
    height: 3rem !important
  }

  .rmc-height-md-7xl {
    height: 4rem !important
  }

  .rmc-height-md-8xl {
    height: 5rem !important
  }

  .rmc-height-md-9xl {
    height: 6rem !important
  }

  .rmc-height-md-10xl {
    height: 8rem !important
  }

  .rmc-height-md-11xl {
    height: 10rem !important
  }

  .rmc-max-height-md-none {
    max-height: none !important
  }

  .rmc-max-height-md-xxs {
    max-height: .125rem !important
  }

  .rmc-max-height-md-xs {
    max-height: .25rem !important
  }

  .rmc-max-height-md-sm {
    max-height: .375rem !important
  }

  .rmc-max-height-md-md {
    max-height: .5rem !important
  }

  .rmc-max-height-md-lg {
    max-height: .75rem !important
  }

  .rmc-max-height-md-xl {
    max-height: 1rem !important
  }

  .rmc-max-height-md-2xl {
    max-height: 1.25rem !important
  }

  .rmc-max-height-md-3xl {
    max-height: 1.5rem !important
  }

  .rmc-max-height-md-4xl {
    max-height: 2rem !important
  }

  .rmc-max-height-md-5xl {
    max-height: 2.5rem !important
  }

  .rmc-max-height-md-6xl {
    max-height: 3rem !important
  }

  .rmc-max-height-md-7xl {
    max-height: 4rem !important
  }

  .rmc-max-height-md-8xl {
    max-height: 5rem !important
  }

  .rmc-max-height-md-9xl {
    max-height: 6rem !important
  }

  .rmc-max-height-md-10xl {
    max-height: 8rem !important
  }

  .rmc-max-height-md-11xl {
    max-height: 10rem !important
  }

  .rmc-width-md-none {
    width: 0 !important
  }

  .rmc-width-md-xxs {
    width: .125rem !important
  }

  .rmc-width-md-xs {
    width: .25rem !important
  }

  .rmc-width-md-sm {
    width: .375rem !important
  }

  .rmc-width-md-md {
    width: .5rem !important
  }

  .rmc-width-md-lg {
    width: .75rem !important
  }

  .rmc-width-md-xl {
    width: 1rem !important
  }

  .rmc-width-md-2xl {
    width: 1.25rem !important
  }

  .rmc-width-md-3xl {
    width: 1.5rem !important
  }

  .rmc-width-md-4xl {
    width: 2rem !important
  }

  .rmc-width-md-5xl {
    width: 2.5rem !important
  }

  .rmc-width-md-6xl {
    width: 3rem !important
  }

  .rmc-width-md-7xl {
    width: 4rem !important
  }

  .rmc-width-md-8xl {
    width: 5rem !important
  }

  .rmc-width-md-9xl {
    width: 6rem !important
  }

  .rmc-width-md-10xl {
    width: 8rem !important
  }

  .rmc-width-md-11xl {
    width: 10rem !important
  }

  .rmc-width-md-40 {
    width: 40rem !important
  }

  .rmc-width-md-30 {
    width: 30rem !important
  }

  .rmc-width-md-7p5 {
    width: 7.5rem !important
  }

  .rmc-width-md-13 {
    width: 13rem !important
  }

  .rmc-height-md-40 {
    height: 40rem !important
  }

  .rmc-height-md-30 {
    height: 30rem !important
  }

  .rmc-height-md-7p5 {
    height: 7.5rem !important
  }

  .rmc-height-md-13 {
    height: 13rem !important
  }

  .rmc-lh-md-none {
    line-height: 0 !important
  }

  .rmc-lh-md-xxs {
    line-height: .125rem !important
  }

  .rmc-lh-md-xs {
    line-height: .25rem !important
  }

  .rmc-lh-md-sm {
    line-height: .375rem !important
  }

  .rmc-lh-md-md {
    line-height: .5rem !important
  }

  .rmc-lh-md-lg {
    line-height: .75rem !important
  }

  .rmc-lh-md-xl {
    line-height: 1rem !important
  }

  .rmc-lh-md-2xl {
    line-height: 1.25rem !important
  }

  .rmc-lh-md-3xl {
    line-height: 1.5rem !important
  }

  .rmc-lh-md-4xl {
    line-height: 2rem !important
  }

  .rmc-lh-md-5xl {
    line-height: 2.5rem !important
  }

  .rmc-lh-md-6xl {
    line-height: 3rem !important
  }

  .rmc-lh-md-7xl {
    line-height: 4rem !important
  }

  .rmc-lh-md-8xl {
    line-height: 5rem !important
  }

  .rmc-lh-md-9xl {
    line-height: 6rem !important
  }

  .rmc-lh-md-10xl {
    line-height: 8rem !important
  }

  .rmc-lh-md-11xl {
    line-height: 10rem !important
  }

  .rmc-radius-md-none {
    border-radius: 0 !important
  }

  .rmc-radius-md-xxs {
    border-radius: .125rem !important
  }

  .rmc-radius-md-xs {
    border-radius: .25rem !important
  }

  .rmc-radius-md-sm {
    border-radius: .375rem !important
  }

  .rmc-radius-md-md {
    border-radius: .5rem !important
  }

  .rmc-radius-md-lg {
    border-radius: .625rem !important
  }

  .rmc-radius-md-xl {
    border-radius: .75rem !important
  }

  .rmc-radius-md-2xl {
    border-radius: 1rem !important
  }

  .rmc-radius-md-3xl {
    border-radius: 1.25rem !important
  }

  .rmc-radius-md-4xl {
    border-radius: 1.5rem !important
  }

  .rmc-radius-md-50 {
    border-radius: 50% !important
  }

  .rmc-color-md-base-white {
    color: #fff !important
  }

  .rmc-color-md-base-transparent {
    color: transparent !important
  }

  .rmc-color-md-base-black {
    color: #000 !important
  }

  .rmc-color-md-gray-light-10 {
    color: #eaedf0 !important
  }

  .rmc-color-md-gray-light-25 {
    color: #fcfdfd !important
  }

  .rmc-color-md-gray-light-50 {
    color: #f9fafb !important
  }

  .rmc-color-md-gray-light-70 {
    color: #ebeef1 !important
  }

  .rmc-color-md-gray-light-100 {
    color: #f2f5f7 !important
  }

  .rmc-color-md-gray-light-200 {
    color: #eaecf0 !important
  }

  .rmc-color-md-gray-light-300 {
    color: #d6dadd !important
  }

  .rmc-color-md-gray-light-400 {
    color: #c6c9cc !important
  }

  .rmc-color-md-gray-light-500 {
    color: #97999b !important
  }

  .rmc-color-md-gray-light-600 {
    color: #596067 !important
  }

  .rmc-color-md-gray-light-650 {
    color: #515d6d !important
  }

  .rmc-color-md-gray-light-700 {
    color: #394754 !important
  }

  .rmc-color-md-gray-light-750 {
    color: #475467 !important
  }

  .rmc-color-md-gray-light-800 {
    color: #182430 !important
  }

  .rmc-color-md-gray-light-900 {
    color: #101c28 !important
  }

  .rmc-color-md-gray-light-950 {
    color: #0c151d !important
  }

  .rmc-color-md-gray-dark-50 {
    color: #f5f5f6 !important
  }

  .rmc-color-md-gray-dark-60 {
    color: #f5fbff !important
  }

  .rmc-color-md-gray-dark-100 {
    color: #f0f0f1 !important
  }

  .rmc-color-md-gray-dark-200 {
    color: #ececed !important
  }

  .rmc-color-md-gray-dark-300 {
    color: #ced0d2 !important
  }

  .rmc-color-md-gray-dark-400 {
    color: #94979c !important
  }

  .rmc-color-md-gray-dark-450 {
    color: #636d80 !important
  }

  .rmc-color-md-gray-dark-500 {
    color: #63666a !important
  }

  .rmc-color-md-gray-dark-600 {
    color: #575b61 !important
  }

  .rmc-color-md-gray-dark-650 {
    color: #4a4a4a !important
  }

  .rmc-color-md-gray-dark-700 {
    color: #333941 !important
  }

  .rmc-color-md-gray-dark-750 {
    color: #202834 !important
  }

  .rmc-color-md-gray-dark-800 {
    color: #1f262f !important
  }

  .rmc-color-md-gray-dark-900 {
    color: #161d26 !important
  }

  .rmc-color-md-gray-dark-950 {
    color: #101828 !important
  }

  .rmc-color-md-brand-500 {
    color: #e4002b !important
  }

  .rmc-color-md-error-500 {
    color: #f04438 !important
  }

  .rmc-color-md-warning-500 {
    color: #ef6820 !important
  }

  .rmc-color-md-success-500 {
    color: #789d4a !important
  }

  .rmc-color-md-green-light-500 {
    color: #a9c47f !important
  }

  .rmc-color-md-green-dark-100 {
    color: #358486 !important
  }

  .rmc-color-md-green-dark-200 {
    color: #215253 !important
  }

  .rmc-color-md-teal-light-500 {
    color: #6bbbae !important
  }

  .rmc-color-md-teal-500 {
    color: #4f868e !important
  }

  .rmc-color-md-blue-light-500 {
    color: #7a99ac !important
  }

  .rmc-color-md-blue-500 {
    color: #1b365d !important
  }

  .rmc-color-md-beige-light-500 {
    color: #dfd1a7 !important
  }

  .rmc-color-md-beige-500 {
    color: #a09074 !important
  }

  .rmc-color-md-yellow-400 {
    color: #f1be48 !important
  }

  .rmc-color-md-yellow-500 {
    color: #eaaa08 !important
  }

  .rmc-color-md-neutral-95 {
    color: #e8e8f5 !important
  }

  .rmc-color-md-neutral-90 {
    color: #eaedf0 !important
  }

  .rmc-color-md-text-primary {
    color: #101c28 !important
  }

  .rmc-color-md-text-secondary {
    color: #596067 !important
  }

  .rmc-color-md-text-tertiary {
    color: #575b61 !important
  }

  .rmc-color-md-text-whtie {
    color: #fff !important
  }

  .rmc-color-md-text-disabled,
  .rmc-color-md-text-placeholder {
    color: #63666a !important
  }

  .rmc-color-md-text-brand {
    color: #e4002b !important
  }

  .rmc-color-md-text-error {
    color: #f04438 !important
  }

  .rmc-color-md-text-warning {
    color: #ef6820 !important
  }

  .rmc-color-md-text-success {
    color: #789d4a !important
  }

  .rmc-bg-color-md-base-white {
    background-color: #fff !important
  }

  .rmc-bg-color-md-base-transparent {
    background-color: transparent !important
  }

  .rmc-bg-color-md-base-black {
    background-color: #000 !important
  }

  .rmc-bg-color-md-gray-light-10 {
    background-color: #eaedf0 !important
  }

  .rmc-bg-color-md-gray-light-25 {
    background-color: #fcfdfd !important
  }

  .rmc-bg-color-md-gray-light-50 {
    background-color: #f9fafb !important
  }

  .rmc-bg-color-md-gray-light-70 {
    background-color: #ebeef1 !important
  }

  .rmc-bg-color-md-gray-light-100 {
    background-color: #f2f5f7 !important
  }

  .rmc-bg-color-md-gray-light-200 {
    background-color: #eaecf0 !important
  }

  .rmc-bg-color-md-gray-light-300 {
    background-color: #d6dadd !important
  }

  .rmc-bg-color-md-gray-light-400 {
    background-color: #c6c9cc !important
  }

  .rmc-bg-color-md-gray-light-500 {
    background-color: #97999b !important
  }

  .rmc-bg-color-md-gray-light-600 {
    background-color: #596067 !important
  }

  .rmc-bg-color-md-gray-light-650 {
    background-color: #515d6d !important
  }

  .rmc-bg-color-md-gray-light-700 {
    background-color: #394754 !important
  }

  .rmc-bg-color-md-gray-light-750 {
    background-color: #475467 !important
  }

  .rmc-bg-color-md-gray-light-800 {
    background-color: #182430 !important
  }

  .rmc-bg-color-md-gray-light-900 {
    background-color: #101c28 !important
  }

  .rmc-bg-color-md-gray-light-950 {
    background-color: #0c151d !important
  }

  .rmc-bg-color-md-gray-dark-50 {
    background-color: #f5f5f6 !important
  }

  .rmc-bg-color-md-gray-dark-60 {
    background-color: #f5fbff !important
  }

  .rmc-bg-color-md-gray-dark-100 {
    background-color: #f0f0f1 !important
  }

  .rmc-bg-color-md-gray-dark-200 {
    background-color: #ececed !important
  }

  .rmc-bg-color-md-gray-dark-300 {
    background-color: #ced0d2 !important
  }

  .rmc-bg-color-md-gray-dark-400 {
    background-color: #94979c !important
  }

  .rmc-bg-color-md-gray-dark-450 {
    background-color: #636d80 !important
  }

  .rmc-bg-color-md-gray-dark-500 {
    background-color: #63666a !important
  }

  .rmc-bg-color-md-gray-dark-600 {
    background-color: #575b61 !important
  }

  .rmc-bg-color-md-gray-dark-650 {
    background-color: #4a4a4a !important
  }

  .rmc-bg-color-md-gray-dark-700 {
    background-color: #333941 !important
  }

  .rmc-bg-color-md-gray-dark-750 {
    background-color: #202834 !important
  }

  .rmc-bg-color-md-gray-dark-800 {
    background-color: #1f262f !important
  }

  .rmc-bg-color-md-gray-dark-900 {
    background-color: #161d26 !important
  }

  .rmc-bg-color-md-gray-dark-950 {
    background-color: #101828 !important
  }

  .rmc-bg-color-md-brand-500 {
    background-color: #e4002b !important
  }

  .rmc-bg-color-md-error-500 {
    background-color: #f04438 !important
  }

  .rmc-bg-color-md-warning-500 {
    background-color: #ef6820 !important
  }

  .rmc-bg-color-md-success-500 {
    background-color: #789d4a !important
  }

  .rmc-bg-color-md-green-light-500 {
    background-color: #a9c47f !important
  }

  .rmc-bg-color-md-green-dark-100 {
    background-color: #358486 !important
  }

  .rmc-bg-color-md-green-dark-200 {
    background-color: #215253 !important
  }

  .rmc-bg-color-md-teal-light-500 {
    background-color: #6bbbae !important
  }

  .rmc-bg-color-md-teal-500 {
    background-color: #4f868e !important
  }

  .rmc-bg-color-md-blue-light-500 {
    background-color: #7a99ac !important
  }

  .rmc-bg-color-md-blue-500 {
    background-color: #1b365d !important
  }

  .rmc-bg-color-md-beige-light-500 {
    background-color: #dfd1a7 !important
  }

  .rmc-bg-color-md-beige-500 {
    background-color: #a09074 !important
  }

  .rmc-bg-color-md-yellow-400 {
    background-color: #f1be48 !important
  }

  .rmc-bg-color-md-yellow-500 {
    background-color: #eaaa08 !important
  }

  .rmc-bg-color-md-neutral-95 {
    background-color: #e8e8f5 !important
  }

  .rmc-bg-color-md-neutral-90 {
    background-color: #eaedf0 !important
  }

  .rmc-bg-color-md-text-primary {
    background-color: #101c28 !important
  }

  .rmc-bg-color-md-text-secondary {
    background-color: #596067 !important
  }

  .rmc-bg-color-md-text-tertiary {
    background-color: #575b61 !important
  }

  .rmc-bg-color-md-text-whtie {
    background-color: #fff !important
  }

  .rmc-bg-color-md-text-disabled,
  .rmc-bg-color-md-text-placeholder {
    background-color: #63666a !important
  }

  .rmc-bg-color-md-text-brand {
    background-color: #e4002b !important
  }

  .rmc-bg-color-md-text-error {
    background-color: #f04438 !important
  }

  .rmc-bg-color-md-text-warning {
    background-color: #ef6820 !important
  }

  .rmc-bg-color-md-text-success {
    background-color: #789d4a !important
  }

  .rmc-border-md-base-white {
    border: 1px solid #ffffff !important
  }

  .rmc-border-md-base-transparent {
    border: 1px solid transparent !important
  }

  .rmc-border-md-base-black {
    border: 1px solid #000000 !important
  }

  .rmc-border-md-gray-light-10 {
    border: 1px solid #eaedf0 !important
  }

  .rmc-border-md-gray-light-25 {
    border: 1px solid #fcfdfd !important
  }

  .rmc-border-md-gray-light-50 {
    border: 1px solid #f9fafb !important
  }

  .rmc-border-md-gray-light-70 {
    border: 1px solid #ebeef1 !important
  }

  .rmc-border-md-gray-light-100 {
    border: 1px solid #f2f5f7 !important
  }

  .rmc-border-md-gray-light-200 {
    border: 1px solid #eaecf0 !important
  }

  .rmc-border-md-gray-light-300 {
    border: 1px solid #d6dadd !important
  }

  .rmc-border-md-gray-light-400 {
    border: 1px solid #c6c9cc !important
  }

  .rmc-border-md-gray-light-500 {
    border: 1px solid #97999b !important
  }

  .rmc-border-md-gray-light-600 {
    border: 1px solid #596067 !important
  }

  .rmc-border-md-gray-light-650 {
    border: 1px solid #515d6d !important
  }

  .rmc-border-md-gray-light-700 {
    border: 1px solid #394754 !important
  }

  .rmc-border-md-gray-light-750 {
    border: 1px solid #475467 !important
  }

  .rmc-border-md-gray-light-800 {
    border: 1px solid #182430 !important
  }

  .rmc-border-md-gray-light-900 {
    border: 1px solid #101c28 !important
  }

  .rmc-border-md-gray-light-950 {
    border: 1px solid #0c151d !important
  }

  .rmc-border-md-gray-dark-50 {
    border: 1px solid #f5f5f6 !important
  }

  .rmc-border-md-gray-dark-60 {
    border: 1px solid #f5fbff !important
  }

  .rmc-border-md-gray-dark-100 {
    border: 1px solid #f0f0f1 !important
  }

  .rmc-border-md-gray-dark-200 {
    border: 1px solid #ececed !important
  }

  .rmc-border-md-gray-dark-300 {
    border: 1px solid #ced0d2 !important
  }

  .rmc-border-md-gray-dark-400 {
    border: 1px solid #94979c !important
  }

  .rmc-border-md-gray-dark-450 {
    border: 1px solid #636d80 !important
  }

  .rmc-border-md-gray-dark-500 {
    border: 1px solid #63666a !important
  }

  .rmc-border-md-gray-dark-600 {
    border: 1px solid #575b61 !important
  }

  .rmc-border-md-gray-dark-650 {
    border: 1px solid #4a4a4a !important
  }

  .rmc-border-md-gray-dark-700 {
    border: 1px solid #333941 !important
  }

  .rmc-border-md-gray-dark-750 {
    border: 1px solid #202834 !important
  }

  .rmc-border-md-gray-dark-800 {
    border: 1px solid #1f262f !important
  }

  .rmc-border-md-gray-dark-900 {
    border: 1px solid #161d26 !important
  }

  .rmc-border-md-gray-dark-950 {
    border: 1px solid #101828 !important
  }

  .rmc-border-md-brand-500 {
    border: 1px solid #e4002b !important
  }

  .rmc-border-md-error-500 {
    border: 1px solid #f04438 !important
  }

  .rmc-border-md-warning-500 {
    border: 1px solid #ef6820 !important
  }

  .rmc-border-md-success-500 {
    border: 1px solid #789d4a !important
  }

  .rmc-border-md-green-light-500 {
    border: 1px solid #a9c47f !important
  }

  .rmc-border-md-green-dark-100 {
    border: 1px solid #358486 !important
  }

  .rmc-border-md-green-dark-200 {
    border: 1px solid #215253 !important
  }

  .rmc-border-md-teal-light-500 {
    border: 1px solid #6bbbae !important
  }

  .rmc-border-md-teal-500 {
    border: 1px solid #4f868e !important
  }

  .rmc-border-md-blue-light-500 {
    border: 1px solid #7a99ac !important
  }

  .rmc-border-md-blue-500 {
    border: 1px solid #1b365d !important
  }

  .rmc-border-md-beige-light-500 {
    border: 1px solid #dfd1a7 !important
  }

  .rmc-border-md-beige-500 {
    border: 1px solid #a09074 !important
  }

  .rmc-border-md-yellow-400 {
    border: 1px solid #f1be48 !important
  }

  .rmc-border-md-yellow-500 {
    border: 1px solid #eaaa08 !important
  }

  .rmc-border-md-neutral-95 {
    border: 1px solid #e8e8f5 !important
  }

  .rmc-border-md-neutral-90 {
    border: 1px solid #eaedf0 !important
  }

  .rmc-border-md-text-primary {
    border: 1px solid #101c28 !important
  }

  .rmc-border-md-text-secondary {
    border: 1px solid #596067 !important
  }

  .rmc-border-md-text-tertiary {
    border: 1px solid #575b61 !important
  }

  .rmc-border-md-text-whtie {
    border: 1px solid #ffffff !important
  }

  .rmc-border-md-text-disabled,
  .rmc-border-md-text-placeholder {
    border: 1px solid #63666a !important
  }

  .rmc-border-md-text-brand {
    border: 1px solid #e4002b !important
  }

  .rmc-border-md-text-error {
    border: 1px solid #f04438 !important
  }

  .rmc-border-md-text-warning {
    border: 1px solid #ef6820 !important
  }

  .rmc-border-md-text-success {
    border: 1px solid #789d4a !important
  }

  .rmc-border-md-gray-dotted-4 {
    border: 4px dotted #94979c !important
  }

  .rmc-vertical-align-md-top {
    vertical-align: top !important
  }

  .rmc-vertical-align-md-bottom {
    vertical-align: bottom !important
  }

  .rmc-vertical-align-md-middle {
    vertical-align: middle !important
  }

  .rmc-vertical-align-md-baseline {
    vertical-align: baseline !important
  }

  .rmc-vertical-align-md-sub {
    vertical-align: sub !important
  }

  .rmc-vertical-align-md-text-top {
    vertical-align: text-top !important
  }

  .rmc-opacity-md-0 {
    opacity: 0 !important
  }

  .rmc-opacity-md-100 {
    opacity: 100 !important
  }

  .rmc-column-count-md-1 {
    column-count: 1 !important
  }

  .rmc-column-count-md-2 {
    column-count: 2 !important
  }

  .rmc-column-count-md-3 {
    column-count: 3 !important
  }

  .rmc-column-count-md-4 {
    column-count: 4 !important
  }

  .rmc-column-count-md-5 {
    column-count: 5 !important
  }

  .rmc-column-count-md-6 {
    column-count: 6 !important
  }

  .rmc-column-count-md-7 {
    column-count: 7 !important
  }

  .rmc-column-count-md-8 {
    column-count: 8 !important
  }

  .rmc-column-count-md-9 {
    column-count: 9 !important
  }

  .rmc-column-count-md-10 {
    column-count: 10 !important
  }

  .rmc-column-count-md-11 {
    column-count: 11 !important
  }

  .rmc-column-count-md-12 {
    column-count: 12 !important
  }

  .rmc-break-inside-md-avoid {
    break-inside: avoid !important
  }

  .rmc-break-inside-md-avoid-column {
    break-inside: avoid-column !important
  }

  .rmc-break-inside-md-avoid-page {
    break-inside: avoid-page !important
  }

  .rmc-break-inside-md-avoid-region {
    break-inside: avoid-region !important
  }

  .rmc-break-inside-md-auto {
    break-inside: auto !important
  }

  .rmc-aspect-ratio-md-16-9 {
    aspect-ratio: 1.7777777778 !important
  }

  .rmc-aspect-ratio-md-1-1 {
    aspect-ratio: 1 !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
  }

  .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: .25rem !important
  }

  .m-lg-2 {
    margin: .5rem !important
  }

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

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

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

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

  .mx-lg-0 {
    margin-right: 0 !important;
    margin-left: 0 !important
  }

  .mx-lg-1 {
    margin-right: .25rem !important;
    margin-left: .25rem !important
  }

  .mx-lg-2 {
    margin-right: .5rem !important;
    margin-left: .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: 3rem !important;
    margin-left: 3rem !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: .25rem !important;
    margin-bottom: .25rem !important
  }

  .my-lg-2 {
    margin-top: .5rem !important;
    margin-bottom: .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: 3rem !important;
    margin-bottom: 3rem !important
  }

  .my-lg-auto {
    margin-top: auto !important;
    margin-bottom: auto !important
  }

  .mt-lg-0 {
    margin-top: 0 !important
  }

  .mt-lg-1 {
    margin-top: .25rem !important
  }

  .mt-lg-2 {
    margin-top: .5rem !important
  }

  .mt-lg-3 {
    margin-top: 1rem !important
  }

  .mt-lg-4 {
    margin-top: 1.5rem !important
  }

  .mt-lg-5 {
    margin-top: 3rem !important
  }

  .mt-lg-auto {
    margin-top: auto !important
  }

  .me-lg-0 {
    margin-right: 0 !important
  }

  .me-lg-1 {
    margin-right: .25rem !important
  }

  .me-lg-2 {
    margin-right: .5rem !important
  }

  .me-lg-3 {
    margin-right: 1rem !important
  }

  .me-lg-4 {
    margin-right: 1.5rem !important
  }

  .me-lg-5 {
    margin-right: 3rem !important
  }

  .me-lg-auto {
    margin-right: auto !important
  }

  .mb-lg-0 {
    margin-bottom: 0 !important
  }

  .mb-lg-1 {
    margin-bottom: .25rem !important
  }

  .mb-lg-2 {
    margin-bottom: .5rem !important
  }

  .mb-lg-3 {
    margin-bottom: 1rem !important
  }

  .mb-lg-4 {
    margin-bottom: 1.5rem !important
  }

  .mb-lg-5 {
    margin-bottom: 3rem !important
  }

  .mb-lg-auto {
    margin-bottom: auto !important
  }

  .ms-lg-0 {
    margin-left: 0 !important
  }

  .ms-lg-1 {
    margin-left: .25rem !important
  }

  .ms-lg-2 {
    margin-left: .5rem !important
  }

  .ms-lg-3 {
    margin-left: 1rem !important
  }

  .ms-lg-4 {
    margin-left: 1.5rem !important
  }

  .ms-lg-5 {
    margin-left: 3rem !important
  }

  .ms-lg-auto {
    margin-left: auto !important
  }

  .m-lg-n1 {
    margin: -.25rem !important
  }

  .m-lg-n2 {
    margin: -.5rem !important
  }

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

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

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

  .mx-lg-n1 {
    margin-right: -.25rem !important;
    margin-left: -.25rem !important
  }

  .mx-lg-n2 {
    margin-right: -.5rem !important;
    margin-left: -.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: -3rem !important;
    margin-left: -3rem !important
  }

  .my-lg-n1 {
    margin-top: -.25rem !important;
    margin-bottom: -.25rem !important
  }

  .my-lg-n2 {
    margin-top: -.5rem !important;
    margin-bottom: -.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: -3rem !important;
    margin-bottom: -3rem !important
  }

  .mt-lg-n1 {
    margin-top: -.25rem !important
  }

  .mt-lg-n2 {
    margin-top: -.5rem !important
  }

  .mt-lg-n3 {
    margin-top: -1rem !important
  }

  .mt-lg-n4 {
    margin-top: -1.5rem !important
  }

  .mt-lg-n5 {
    margin-top: -3rem !important
  }

  .me-lg-n1 {
    margin-right: -.25rem !important
  }

  .me-lg-n2 {
    margin-right: -.5rem !important
  }

  .me-lg-n3 {
    margin-right: -1rem !important
  }

  .me-lg-n4 {
    margin-right: -1.5rem !important
  }

  .me-lg-n5 {
    margin-right: -3rem !important
  }

  .mb-lg-n1 {
    margin-bottom: -.25rem !important
  }

  .mb-lg-n2 {
    margin-bottom: -.5rem !important
  }

  .mb-lg-n3 {
    margin-bottom: -1rem !important
  }

  .mb-lg-n4 {
    margin-bottom: -1.5rem !important
  }

  .mb-lg-n5 {
    margin-bottom: -3rem !important
  }

  .ms-lg-n1 {
    margin-left: -.25rem !important
  }

  .ms-lg-n2 {
    margin-left: -.5rem !important
  }

  .ms-lg-n3 {
    margin-left: -1rem !important
  }

  .ms-lg-n4 {
    margin-left: -1.5rem !important
  }

  .ms-lg-n5 {
    margin-left: -3rem !important
  }

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

  .p-lg-1 {
    padding: .25rem !important
  }

  .p-lg-2 {
    padding: .5rem !important
  }

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

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

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

  .px-lg-0 {
    padding-right: 0 !important;
    padding-left: 0 !important
  }

  .px-lg-1 {
    padding-right: .25rem !important;
    padding-left: .25rem !important
  }

  .px-lg-2 {
    padding-right: .5rem !important;
    padding-left: .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: 3rem !important;
    padding-left: 3rem !important
  }

  .py-lg-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important
  }

  .py-lg-1 {
    padding-top: .25rem !important;
    padding-bottom: .25rem !important
  }

  .py-lg-2 {
    padding-top: .5rem !important;
    padding-bottom: .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: 3rem !important;
    padding-bottom: 3rem !important
  }

  .pt-lg-0 {
    padding-top: 0 !important
  }

  .pt-lg-1 {
    padding-top: .25rem !important
  }

  .pt-lg-2 {
    padding-top: .5rem !important
  }

  .pt-lg-3 {
    padding-top: 1rem !important
  }

  .pt-lg-4 {
    padding-top: 1.5rem !important
  }

  .pt-lg-5 {
    padding-top: 3rem !important
  }

  .pe-lg-0 {
    padding-right: 0 !important
  }

  .pe-lg-1 {
    padding-right: .25rem !important
  }

  .pe-lg-2 {
    padding-right: .5rem !important
  }

  .pe-lg-3 {
    padding-right: 1rem !important
  }

  .pe-lg-4 {
    padding-right: 1.5rem !important
  }

  .pe-lg-5 {
    padding-right: 3rem !important
  }

  .pb-lg-0 {
    padding-bottom: 0 !important
  }

  .pb-lg-1 {
    padding-bottom: .25rem !important
  }

  .pb-lg-2 {
    padding-bottom: .5rem !important
  }

  .pb-lg-3 {
    padding-bottom: 1rem !important
  }

  .pb-lg-4 {
    padding-bottom: 1.5rem !important
  }

  .pb-lg-5 {
    padding-bottom: 3rem !important
  }

  .ps-lg-0 {
    padding-left: 0 !important
  }

  .ps-lg-1 {
    padding-left: .25rem !important
  }

  .ps-lg-2 {
    padding-left: .5rem !important
  }

  .ps-lg-3 {
    padding-left: 1rem !important
  }

  .ps-lg-4 {
    padding-left: 1.5rem !important
  }

  .ps-lg-5 {
    padding-left: 3rem !important
  }

  .gap-lg-0 {
    gap: 0 !important
  }

  .gap-lg-1 {
    gap: .25rem !important
  }

  .gap-lg-2 {
    gap: .5rem !important
  }

  .gap-lg-3 {
    gap: 1rem !important
  }

  .gap-lg-4 {
    gap: 1.5rem !important
  }

  .gap-lg-5 {
    gap: 3rem !important
  }

  .row-gap-lg-0 {
    row-gap: 0 !important
  }

  .row-gap-lg-1 {
    row-gap: .25rem !important
  }

  .row-gap-lg-2 {
    row-gap: .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: 3rem !important
  }

  .column-gap-lg-0 {
    column-gap: 0 !important
  }

  .column-gap-lg-1 {
    column-gap: .25rem !important
  }

  .column-gap-lg-2 {
    column-gap: .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: 3rem !important
  }

  .text-lg-start {
    text-align: left !important
  }

  .text-lg-end {
    text-align: right !important
  }

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

  .rmc-my-lg-none {
    margin-top: 0 !important;
    margin-bottom: 0 !important
  }

  .rmc-my-lg-xxs {
    margin-top: .125rem !important;
    margin-bottom: .125rem !important
  }

  .rmc-my-lg-xs {
    margin-top: .25rem !important;
    margin-bottom: .25rem !important
  }

  .rmc-my-lg-sm {
    margin-top: .375rem !important;
    margin-bottom: .375rem !important
  }

  .rmc-my-lg-md {
    margin-top: .5rem !important;
    margin-bottom: .5rem !important
  }

  .rmc-my-lg-lg {
    margin-top: .75rem !important;
    margin-bottom: .75rem !important
  }

  .rmc-my-lg-xl {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important
  }

  .rmc-my-lg-2xl {
    margin-top: 1.25rem !important;
    margin-bottom: 1.25rem !important
  }

  .rmc-my-lg-3xl {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important
  }

  .rmc-my-lg-4xl {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important
  }

  .rmc-my-lg-5xl {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important
  }

  .rmc-my-lg-6xl {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important
  }

  .rmc-my-lg-7xl {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important
  }

  .rmc-my-lg-8xl {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important
  }

  .rmc-my-lg-9xl {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important
  }

  .rmc-my-lg-10xl {
    margin-top: 8rem !important;
    margin-bottom: 8rem !important
  }

  .rmc-my-lg-11xl {
    margin-top: 10rem !important;
    margin-bottom: 10rem !important
  }

  .rmc-my-lg-auto {
    margin-top: auto !important;
    margin-bottom: auto !important
  }

  .rmc-mt-lg-none {
    margin-top: 0 !important
  }

  .rmc-mt-lg-xxs {
    margin-top: .125rem !important
  }

  .rmc-mt-lg-xs {
    margin-top: .25rem !important
  }

  .rmc-mt-lg-sm {
    margin-top: .375rem !important
  }

  .rmc-mt-lg-md {
    margin-top: .5rem !important
  }

  .rmc-mt-lg-lg {
    margin-top: .75rem !important
  }

  .rmc-mt-lg-xl {
    margin-top: 1rem !important
  }

  .rmc-mt-lg-2xl {
    margin-top: 1.25rem !important
  }

  .rmc-mt-lg-3xl {
    margin-top: 1.5rem !important
  }

  .rmc-mt-lg-4xl {
    margin-top: 2rem !important
  }

  .rmc-mt-lg-5xl {
    margin-top: 2.5rem !important
  }

  .rmc-mt-lg-6xl {
    margin-top: 3rem !important
  }

  .rmc-mt-lg-7xl {
    margin-top: 4rem !important
  }

  .rmc-mt-lg-8xl {
    margin-top: 5rem !important
  }

  .rmc-mt-lg-9xl {
    margin-top: 6rem !important
  }

  .rmc-mt-lg-10xl {
    margin-top: 8rem !important
  }

  .rmc-mt-lg-11xl {
    margin-top: 10rem !important
  }

  .rmc-mt-lg-auto {
    margin-top: auto !important
  }

  .rmc-mb-lg-none {
    margin-bottom: 0 !important
  }

  .rmc-mb-lg-xxs {
    margin-bottom: .125rem !important
  }

  .rmc-mb-lg-xs {
    margin-bottom: .25rem !important
  }

  .rmc-mb-lg-sm {
    margin-bottom: .375rem !important
  }

  .rmc-mb-lg-md {
    margin-bottom: .5rem !important
  }

  .rmc-mb-lg-lg {
    margin-bottom: .75rem !important
  }

  .rmc-mb-lg-xl {
    margin-bottom: 1rem !important
  }

  .rmc-mb-lg-2xl {
    margin-bottom: 1.25rem !important
  }

  .rmc-mb-lg-3xl {
    margin-bottom: 1.5rem !important
  }

  .rmc-mb-lg-4xl {
    margin-bottom: 2rem !important
  }

  .rmc-mb-lg-5xl {
    margin-bottom: 2.5rem !important
  }

  .rmc-mb-lg-6xl {
    margin-bottom: 3rem !important
  }

  .rmc-mb-lg-7xl {
    margin-bottom: 4rem !important
  }

  .rmc-mb-lg-8xl {
    margin-bottom: 5rem !important
  }

  .rmc-mb-lg-9xl {
    margin-bottom: 6rem !important
  }

  .rmc-mb-lg-10xl {
    margin-bottom: 8rem !important
  }

  .rmc-mb-lg-11xl {
    margin-bottom: 10rem !important
  }

  .rmc-mb-lg-auto {
    margin-bottom: auto !important
  }

  .rmc-ml-lg-none {
    margin-left: 0 !important
  }

  .rmc-ml-lg-xxs {
    margin-left: .125rem !important
  }

  .rmc-ml-lg-xs {
    margin-left: .25rem !important
  }

  .rmc-ml-lg-sm {
    margin-left: .375rem !important
  }

  .rmc-ml-lg-md {
    margin-left: .5rem !important
  }

  .rmc-ml-lg-lg {
    margin-left: .75rem !important
  }

  .rmc-ml-lg-xl {
    margin-left: 1rem !important
  }

  .rmc-ml-lg-2xl {
    margin-left: 1.25rem !important
  }

  .rmc-ml-lg-3xl {
    margin-left: 1.5rem !important
  }

  .rmc-ml-lg-4xl {
    margin-left: 2rem !important
  }

  .rmc-ml-lg-5xl {
    margin-left: 2.5rem !important
  }

  .rmc-ml-lg-6xl {
    margin-left: 3rem !important
  }

  .rmc-ml-lg-7xl {
    margin-left: 4rem !important
  }

  .rmc-ml-lg-8xl {
    margin-left: 5rem !important
  }

  .rmc-ml-lg-9xl {
    margin-left: 6rem !important
  }

  .rmc-ml-lg-10xl {
    margin-left: 8rem !important
  }

  .rmc-ml-lg-11xl {
    margin-left: 10rem !important
  }

  .rmc-ml-lg-auto {
    margin-left: auto !important
  }

  .rmc-mr-lg-none {
    margin-right: 0 !important
  }

  .rmc-mr-lg-xxs {
    margin-right: .125rem !important
  }

  .rmc-mr-lg-xs {
    margin-right: .25rem !important
  }

  .rmc-mr-lg-sm {
    margin-right: .375rem !important
  }

  .rmc-mr-lg-md {
    margin-right: .5rem !important
  }

  .rmc-mr-lg-lg {
    margin-right: .75rem !important
  }

  .rmc-mr-lg-xl {
    margin-right: 1rem !important
  }

  .rmc-mr-lg-2xl {
    margin-right: 1.25rem !important
  }

  .rmc-mr-lg-3xl {
    margin-right: 1.5rem !important
  }

  .rmc-mr-lg-4xl {
    margin-right: 2rem !important
  }

  .rmc-mr-lg-5xl {
    margin-right: 2.5rem !important
  }

  .rmc-mr-lg-6xl {
    margin-right: 3rem !important
  }

  .rmc-mr-lg-7xl {
    margin-right: 4rem !important
  }

  .rmc-mr-lg-8xl {
    margin-right: 5rem !important
  }

  .rmc-mr-lg-9xl {
    margin-right: 6rem !important
  }

  .rmc-mr-lg-10xl {
    margin-right: 8rem !important
  }

  .rmc-mr-lg-11xl {
    margin-right: 10rem !important
  }

  .rmc-mr-lg-auto {
    margin-right: auto !important
  }

  .rmc-mx-lg-none {
    margin-left: 0 !important;
    margin-right: 0 !important
  }

  .rmc-mx-lg-xxs {
    margin-left: .125rem !important;
    margin-right: .125rem !important
  }

  .rmc-mx-lg-xs {
    margin-left: .25rem !important;
    margin-right: .25rem !important
  }

  .rmc-mx-lg-sm {
    margin-left: .375rem !important;
    margin-right: .375rem !important
  }

  .rmc-mx-lg-md {
    margin-left: .5rem !important;
    margin-right: .5rem !important
  }

  .rmc-mx-lg-lg {
    margin-left: .75rem !important;
    margin-right: .75rem !important
  }

  .rmc-mx-lg-xl {
    margin-left: 1rem !important;
    margin-right: 1rem !important
  }

  .rmc-mx-lg-2xl {
    margin-left: 1.25rem !important;
    margin-right: 1.25rem !important
  }

  .rmc-mx-lg-3xl {
    margin-left: 1.5rem !important;
    margin-right: 1.5rem !important
  }

  .rmc-mx-lg-4xl {
    margin-left: 2rem !important;
    margin-right: 2rem !important
  }

  .rmc-mx-lg-5xl {
    margin-left: 2.5rem !important;
    margin-right: 2.5rem !important
  }

  .rmc-mx-lg-6xl {
    margin-left: 3rem !important;
    margin-right: 3rem !important
  }

  .rmc-mx-lg-7xl {
    margin-left: 4rem !important;
    margin-right: 4rem !important
  }

  .rmc-mx-lg-8xl {
    margin-left: 5rem !important;
    margin-right: 5rem !important
  }

  .rmc-mx-lg-9xl {
    margin-left: 6rem !important;
    margin-right: 6rem !important
  }

  .rmc-mx-lg-10xl {
    margin-left: 8rem !important;
    margin-right: 8rem !important
  }

  .rmc-mx-lg-11xl {
    margin-left: 10rem !important;
    margin-right: 10rem !important
  }

  .rmc-mx-lg-auto {
    margin-left: auto !important;
    margin-right: auto !important
  }

  .rmc-p-lg-none {
    padding: 0 !important
  }

  .rmc-p-lg-xxs {
    padding: .125rem !important
  }

  .rmc-p-lg-xs {
    padding: .25rem !important
  }

  .rmc-p-lg-sm {
    padding: .375rem !important
  }

  .rmc-p-lg-md {
    padding: .5rem !important
  }

  .rmc-p-lg-lg {
    padding: .75rem !important
  }

  .rmc-p-lg-xl {
    padding: 1rem !important
  }

  .rmc-p-lg-2xl {
    padding: 1.25rem !important
  }

  .rmc-p-lg-3xl {
    padding: 1.5rem !important
  }

  .rmc-p-lg-4xl {
    padding: 2rem !important
  }

  .rmc-p-lg-5xl {
    padding: 2.5rem !important
  }

  .rmc-p-lg-6xl {
    padding: 3rem !important
  }

  .rmc-p-lg-7xl {
    padding: 4rem !important
  }

  .rmc-p-lg-8xl {
    padding: 5rem !important
  }

  .rmc-p-lg-9xl {
    padding: 6rem !important
  }

  .rmc-p-lg-10xl {
    padding: 8rem !important
  }

  .rmc-p-lg-11xl {
    padding: 10rem !important
  }

  .rmc-p-lg-auto {
    padding: auto !important
  }

  .rmc-py-lg-none {
    padding-top: 0 !important;
    padding-bottom: 0 !important
  }

  .rmc-py-lg-xxs {
    padding-top: .125rem !important;
    padding-bottom: .125rem !important
  }

  .rmc-py-lg-xs {
    padding-top: .25rem !important;
    padding-bottom: .25rem !important
  }

  .rmc-py-lg-sm {
    padding-top: .375rem !important;
    padding-bottom: .375rem !important
  }

  .rmc-py-lg-md {
    padding-top: .5rem !important;
    padding-bottom: .5rem !important
  }

  .rmc-py-lg-lg {
    padding-top: .75rem !important;
    padding-bottom: .75rem !important
  }

  .rmc-py-lg-xl {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important
  }

  .rmc-py-lg-2xl {
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important
  }

  .rmc-py-lg-3xl {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important
  }

  .rmc-py-lg-4xl {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important
  }

  .rmc-py-lg-5xl {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important
  }

  .rmc-py-lg-6xl {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important
  }

  .rmc-py-lg-7xl {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important
  }

  .rmc-py-lg-8xl {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important
  }

  .rmc-py-lg-9xl {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important
  }

  .rmc-py-lg-10xl {
    padding-top: 8rem !important;
    padding-bottom: 8rem !important
  }

  .rmc-py-lg-11xl {
    padding-top: 10rem !important;
    padding-bottom: 10rem !important
  }

  .rmc-py-lg-auto {
    padding-top: auto !important;
    padding-bottom: auto !important
  }

  .rmc-px-lg-none {
    padding-left: 0 !important;
    padding-right: 0 !important
  }

  .rmc-px-lg-xxs {
    padding-left: .125rem !important;
    padding-right: .125rem !important
  }

  .rmc-px-lg-xs {
    padding-left: .25rem !important;
    padding-right: .25rem !important
  }

  .rmc-px-lg-sm {
    padding-left: .375rem !important;
    padding-right: .375rem !important
  }

  .rmc-px-lg-md {
    padding-left: .5rem !important;
    padding-right: .5rem !important
  }

  .rmc-px-lg-lg {
    padding-left: .75rem !important;
    padding-right: .75rem !important
  }

  .rmc-px-lg-xl {
    padding-left: 1rem !important;
    padding-right: 1rem !important
  }

  .rmc-px-lg-2xl {
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important
  }

  .rmc-px-lg-3xl {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important
  }

  .rmc-px-lg-4xl {
    padding-left: 2rem !important;
    padding-right: 2rem !important
  }

  .rmc-px-lg-5xl {
    padding-left: 2.5rem !important;
    padding-right: 2.5rem !important
  }

  .rmc-px-lg-6xl {
    padding-left: 3rem !important;
    padding-right: 3rem !important
  }

  .rmc-px-lg-7xl {
    padding-left: 4rem !important;
    padding-right: 4rem !important
  }

  .rmc-px-lg-8xl {
    padding-left: 5rem !important;
    padding-right: 5rem !important
  }

  .rmc-px-lg-9xl {
    padding-left: 6rem !important;
    padding-right: 6rem !important
  }

  .rmc-px-lg-10xl {
    padding-left: 8rem !important;
    padding-right: 8rem !important
  }

  .rmc-px-lg-11xl {
    padding-left: 10rem !important;
    padding-right: 10rem !important
  }

  .rmc-px-lg-auto {
    padding-left: auto !important;
    padding-right: auto !important
  }

  .rmc-pt-lg-none {
    padding-top: 0 !important
  }

  .rmc-pt-lg-xxs {
    padding-top: .125rem !important
  }

  .rmc-pt-lg-xs {
    padding-top: .25rem !important
  }

  .rmc-pt-lg-sm {
    padding-top: .375rem !important
  }

  .rmc-pt-lg-md {
    padding-top: .5rem !important
  }

  .rmc-pt-lg-lg {
    padding-top: .75rem !important
  }

  .rmc-pt-lg-xl {
    padding-top: 1rem !important
  }

  .rmc-pt-lg-2xl {
    padding-top: 1.25rem !important
  }

  .rmc-pt-lg-3xl {
    padding-top: 1.5rem !important
  }

  .rmc-pt-lg-4xl {
    padding-top: 2rem !important
  }

  .rmc-pt-lg-5xl {
    padding-top: 2.5rem !important
  }

  .rmc-pt-lg-6xl {
    padding-top: 3rem !important
  }

  .rmc-pt-lg-7xl {
    padding-top: 4rem !important
  }

  .rmc-pt-lg-8xl {
    padding-top: 5rem !important
  }

  .rmc-pt-lg-9xl {
    padding-top: 6rem !important
  }

  .rmc-pt-lg-10xl {
    padding-top: 8rem !important
  }

  .rmc-pt-lg-11xl {
    padding-top: 10rem !important
  }

  .rmc-pt-lg-auto {
    padding-top: auto !important
  }

  .rmc-pb-lg-none {
    padding-bottom: 0 !important
  }

  .rmc-pb-lg-xxs {
    padding-bottom: .125rem !important
  }

  .rmc-pb-lg-xs {
    padding-bottom: .25rem !important
  }

  .rmc-pb-lg-sm {
    padding-bottom: .375rem !important
  }

  .rmc-pb-lg-md {
    padding-bottom: .5rem !important
  }

  .rmc-pb-lg-lg {
    padding-bottom: .75rem !important
  }

  .rmc-pb-lg-xl {
    padding-bottom: 1rem !important
  }

  .rmc-pb-lg-2xl {
    padding-bottom: 1.25rem !important
  }

  .rmc-pb-lg-3xl {
    padding-bottom: 1.5rem !important
  }

  .rmc-pb-lg-4xl {
    padding-bottom: 2rem !important
  }

  .rmc-pb-lg-5xl {
    padding-bottom: 2.5rem !important
  }

  .rmc-pb-lg-6xl {
    padding-bottom: 3rem !important
  }

  .rmc-pb-lg-7xl {
    padding-bottom: 4rem !important
  }

  .rmc-pb-lg-8xl {
    padding-bottom: 5rem !important
  }

  .rmc-pb-lg-9xl {
    padding-bottom: 6rem !important
  }

  .rmc-pb-lg-10xl {
    padding-bottom: 8rem !important
  }

  .rmc-pb-lg-11xl {
    padding-bottom: 10rem !important
  }

  .rmc-pb-lg-auto {
    padding-bottom: auto !important
  }

  .rmc-pl-lg-none {
    padding-left: 0 !important
  }

  .rmc-pl-lg-xxs {
    padding-left: .125rem !important
  }

  .rmc-pl-lg-xs {
    padding-left: .25rem !important
  }

  .rmc-pl-lg-sm {
    padding-left: .375rem !important
  }

  .rmc-pl-lg-md {
    padding-left: .5rem !important
  }

  .rmc-pl-lg-lg {
    padding-left: .75rem !important
  }

  .rmc-pl-lg-xl {
    padding-left: 1rem !important
  }

  .rmc-pl-lg-2xl {
    padding-left: 1.25rem !important
  }

  .rmc-pl-lg-3xl {
    padding-left: 1.5rem !important
  }

  .rmc-pl-lg-4xl {
    padding-left: 2rem !important
  }

  .rmc-pl-lg-5xl {
    padding-left: 2.5rem !important
  }

  .rmc-pl-lg-6xl {
    padding-left: 3rem !important
  }

  .rmc-pl-lg-7xl {
    padding-left: 4rem !important
  }

  .rmc-pl-lg-8xl {
    padding-left: 5rem !important
  }

  .rmc-pl-lg-9xl {
    padding-left: 6rem !important
  }

  .rmc-pl-lg-10xl {
    padding-left: 8rem !important
  }

  .rmc-pl-lg-11xl {
    padding-left: 10rem !important
  }

  .rmc-pl-lg-auto {
    padding-left: auto !important
  }

  .rmc-pr-lg-none {
    padding-right: 0 !important
  }

  .rmc-pr-lg-xxs {
    padding-right: .125rem !important
  }

  .rmc-pr-lg-xs {
    padding-right: .25rem !important
  }

  .rmc-pr-lg-sm {
    padding-right: .375rem !important
  }

  .rmc-pr-lg-md {
    padding-right: .5rem !important
  }

  .rmc-pr-lg-lg {
    padding-right: .75rem !important
  }

  .rmc-pr-lg-xl {
    padding-right: 1rem !important
  }

  .rmc-pr-lg-2xl {
    padding-right: 1.25rem !important
  }

  .rmc-pr-lg-3xl {
    padding-right: 1.5rem !important
  }

  .rmc-pr-lg-4xl {
    padding-right: 2rem !important
  }

  .rmc-pr-lg-5xl {
    padding-right: 2.5rem !important
  }

  .rmc-pr-lg-6xl {
    padding-right: 3rem !important
  }

  .rmc-pr-lg-7xl {
    padding-right: 4rem !important
  }

  .rmc-pr-lg-8xl {
    padding-right: 5rem !important
  }

  .rmc-pr-lg-9xl {
    padding-right: 6rem !important
  }

  .rmc-pr-lg-10xl {
    padding-right: 8rem !important
  }

  .rmc-pr-lg-11xl {
    padding-right: 10rem !important
  }

  .rmc-pr-lg-auto {
    padding-right: auto !important
  }

  .rmc-gap-lg-none {
    gap: 0 !important
  }

  .rmc-gap-lg-xxs {
    gap: .125rem !important
  }

  .rmc-gap-lg-xs {
    gap: .25rem !important
  }

  .rmc-gap-lg-sm {
    gap: .375rem !important
  }

  .rmc-gap-lg-md {
    gap: .5rem !important
  }

  .rmc-gap-lg-lg {
    gap: .75rem !important
  }

  .rmc-gap-lg-xl {
    gap: 1rem !important
  }

  .rmc-gap-lg-2xl {
    gap: 1.25rem !important
  }

  .rmc-gap-lg-3xl {
    gap: 1.5rem !important
  }

  .rmc-gap-lg-4xl {
    gap: 2rem !important
  }

  .rmc-gap-lg-5xl {
    gap: 2.5rem !important
  }

  .rmc-gap-lg-6xl {
    gap: 3rem !important
  }

  .rmc-gap-lg-7xl {
    gap: 4rem !important
  }

  .rmc-gap-lg-8xl {
    gap: 5rem !important
  }

  .rmc-gap-lg-9xl {
    gap: 6rem !important
  }

  .rmc-gap-lg-10xl {
    gap: 8rem !important
  }

  .rmc-gap-lg-11xl {
    gap: 10rem !important
  }

  .rmc-gap-lg-auto {
    gap: auto !important
  }

  .rmc-row-gap-lg-none {
    row-gap: 0 !important
  }

  .rmc-row-gap-lg-xxs {
    row-gap: .125rem !important
  }

  .rmc-row-gap-lg-xs {
    row-gap: .25rem !important
  }

  .rmc-row-gap-lg-sm {
    row-gap: .375rem !important
  }

  .rmc-row-gap-lg-md {
    row-gap: .5rem !important
  }

  .rmc-row-gap-lg-lg {
    row-gap: .75rem !important
  }

  .rmc-row-gap-lg-xl {
    row-gap: 1rem !important
  }

  .rmc-row-gap-lg-2xl {
    row-gap: 1.25rem !important
  }

  .rmc-row-gap-lg-3xl {
    row-gap: 1.5rem !important
  }

  .rmc-row-gap-lg-4xl {
    row-gap: 2rem !important
  }

  .rmc-row-gap-lg-5xl {
    row-gap: 2.5rem !important
  }

  .rmc-row-gap-lg-6xl {
    row-gap: 3rem !important
  }

  .rmc-row-gap-lg-7xl {
    row-gap: 4rem !important
  }

  .rmc-row-gap-lg-8xl {
    row-gap: 5rem !important
  }

  .rmc-row-gap-lg-9xl {
    row-gap: 6rem !important
  }

  .rmc-row-gap-lg-10xl {
    row-gap: 8rem !important
  }

  .rmc-row-gap-lg-11xl {
    row-gap: 10rem !important
  }

  .rmc-column-gap-lg-none {
    column-gap: 0 !important
  }

  .rmc-column-gap-lg-xxs {
    column-gap: .125rem !important
  }

  .rmc-column-gap-lg-xs {
    column-gap: .25rem !important
  }

  .rmc-column-gap-lg-sm {
    column-gap: .375rem !important
  }

  .rmc-column-gap-lg-md {
    column-gap: .5rem !important
  }

  .rmc-column-gap-lg-lg {
    column-gap: .75rem !important
  }

  .rmc-column-gap-lg-xl {
    column-gap: 1rem !important
  }

  .rmc-column-gap-lg-2xl {
    column-gap: 1.25rem !important
  }

  .rmc-column-gap-lg-3xl {
    column-gap: 1.5rem !important
  }

  .rmc-column-gap-lg-4xl {
    column-gap: 2rem !important
  }

  .rmc-column-gap-lg-5xl {
    column-gap: 2.5rem !important
  }

  .rmc-column-gap-lg-6xl {
    column-gap: 3rem !important
  }

  .rmc-column-gap-lg-7xl {
    column-gap: 4rem !important
  }

  .rmc-column-gap-lg-8xl {
    column-gap: 5rem !important
  }

  .rmc-column-gap-lg-9xl {
    column-gap: 6rem !important
  }

  .rmc-column-gap-lg-10xl {
    column-gap: 8rem !important
  }

  .rmc-column-gap-lg-11xl {
    column-gap: 10rem !important
  }

  .rmc-height-lg-none {
    height: 0 !important
  }

  .rmc-height-lg-xxs {
    height: .125rem !important
  }

  .rmc-height-lg-xs {
    height: .25rem !important
  }

  .rmc-height-lg-sm {
    height: .375rem !important
  }

  .rmc-height-lg-md {
    height: .5rem !important
  }

  .rmc-height-lg-lg {
    height: .75rem !important
  }

  .rmc-height-lg-xl {
    height: 1rem !important
  }

  .rmc-height-lg-2xl {
    height: 1.25rem !important
  }

  .rmc-height-lg-3xl {
    height: 1.5rem !important
  }

  .rmc-height-lg-4xl {
    height: 2rem !important
  }

  .rmc-height-lg-5xl {
    height: 2.5rem !important
  }

  .rmc-height-lg-6xl {
    height: 3rem !important
  }

  .rmc-height-lg-7xl {
    height: 4rem !important
  }

  .rmc-height-lg-8xl {
    height: 5rem !important
  }

  .rmc-height-lg-9xl {
    height: 6rem !important
  }

  .rmc-height-lg-10xl {
    height: 8rem !important
  }

  .rmc-height-lg-11xl {
    height: 10rem !important
  }

  .rmc-max-height-lg-none {
    max-height: none !important
  }

  .rmc-max-height-lg-xxs {
    max-height: .125rem !important
  }

  .rmc-max-height-lg-xs {
    max-height: .25rem !important
  }

  .rmc-max-height-lg-sm {
    max-height: .375rem !important
  }

  .rmc-max-height-lg-md {
    max-height: .5rem !important
  }

  .rmc-max-height-lg-lg {
    max-height: .75rem !important
  }

  .rmc-max-height-lg-xl {
    max-height: 1rem !important
  }

  .rmc-max-height-lg-2xl {
    max-height: 1.25rem !important
  }

  .rmc-max-height-lg-3xl {
    max-height: 1.5rem !important
  }

  .rmc-max-height-lg-4xl {
    max-height: 2rem !important
  }

  .rmc-max-height-lg-5xl {
    max-height: 2.5rem !important
  }

  .rmc-max-height-lg-6xl {
    max-height: 3rem !important
  }

  .rmc-max-height-lg-7xl {
    max-height: 4rem !important
  }

  .rmc-max-height-lg-8xl {
    max-height: 5rem !important
  }

  .rmc-max-height-lg-9xl {
    max-height: 6rem !important
  }

  .rmc-max-height-lg-10xl {
    max-height: 8rem !important
  }

  .rmc-max-height-lg-11xl {
    max-height: 10rem !important
  }

  .rmc-width-lg-none {
    width: 0 !important
  }

  .rmc-width-lg-xxs {
    width: .125rem !important
  }

  .rmc-width-lg-xs {
    width: .25rem !important
  }

  .rmc-width-lg-sm {
    width: .375rem !important
  }

  .rmc-width-lg-md {
    width: .5rem !important
  }

  .rmc-width-lg-lg {
    width: .75rem !important
  }

  .rmc-width-lg-xl {
    width: 1rem !important
  }

  .rmc-width-lg-2xl {
    width: 1.25rem !important
  }

  .rmc-width-lg-3xl {
    width: 1.5rem !important
  }

  .rmc-width-lg-4xl {
    width: 2rem !important
  }

  .rmc-width-lg-5xl {
    width: 2.5rem !important
  }

  .rmc-width-lg-6xl {
    width: 3rem !important
  }

  .rmc-width-lg-7xl {
    width: 4rem !important
  }

  .rmc-width-lg-8xl {
    width: 5rem !important
  }

  .rmc-width-lg-9xl {
    width: 6rem !important
  }

  .rmc-width-lg-10xl {
    width: 8rem !important
  }

  .rmc-width-lg-11xl {
    width: 10rem !important
  }

  .rmc-width-lg-40 {
    width: 40rem !important
  }

  .rmc-width-lg-30 {
    width: 30rem !important
  }

  .rmc-width-lg-7p5 {
    width: 7.5rem !important
  }

  .rmc-width-lg-13 {
    width: 13rem !important
  }

  .rmc-height-lg-40 {
    height: 40rem !important
  }

  .rmc-height-lg-30 {
    height: 30rem !important
  }

  .rmc-height-lg-7p5 {
    height: 7.5rem !important
  }

  .rmc-height-lg-13 {
    height: 13rem !important
  }

  .rmc-lh-lg-none {
    line-height: 0 !important
  }

  .rmc-lh-lg-xxs {
    line-height: .125rem !important
  }

  .rmc-lh-lg-xs {
    line-height: .25rem !important
  }

  .rmc-lh-lg-sm {
    line-height: .375rem !important
  }

  .rmc-lh-lg-md {
    line-height: .5rem !important
  }

  .rmc-lh-lg-lg {
    line-height: .75rem !important
  }

  .rmc-lh-lg-xl {
    line-height: 1rem !important
  }

  .rmc-lh-lg-2xl {
    line-height: 1.25rem !important
  }

  .rmc-lh-lg-3xl {
    line-height: 1.5rem !important
  }

  .rmc-lh-lg-4xl {
    line-height: 2rem !important
  }

  .rmc-lh-lg-5xl {
    line-height: 2.5rem !important
  }

  .rmc-lh-lg-6xl {
    line-height: 3rem !important
  }

  .rmc-lh-lg-7xl {
    line-height: 4rem !important
  }

  .rmc-lh-lg-8xl {
    line-height: 5rem !important
  }

  .rmc-lh-lg-9xl {
    line-height: 6rem !important
  }

  .rmc-lh-lg-10xl {
    line-height: 8rem !important
  }

  .rmc-lh-lg-11xl {
    line-height: 10rem !important
  }

  .rmc-radius-lg-none {
    border-radius: 0 !important
  }

  .rmc-radius-lg-xxs {
    border-radius: .125rem !important
  }

  .rmc-radius-lg-xs {
    border-radius: .25rem !important
  }

  .rmc-radius-lg-sm {
    border-radius: .375rem !important
  }

  .rmc-radius-lg-md {
    border-radius: .5rem !important
  }

  .rmc-radius-lg-lg {
    border-radius: .625rem !important
  }

  .rmc-radius-lg-xl {
    border-radius: .75rem !important
  }

  .rmc-radius-lg-2xl {
    border-radius: 1rem !important
  }

  .rmc-radius-lg-3xl {
    border-radius: 1.25rem !important
  }

  .rmc-radius-lg-4xl {
    border-radius: 1.5rem !important
  }

  .rmc-radius-lg-50 {
    border-radius: 50% !important
  }

  .rmc-color-lg-base-white {
    color: #fff !important
  }

  .rmc-color-lg-base-transparent {
    color: transparent !important
  }

  .rmc-color-lg-base-black {
    color: #000 !important
  }

  .rmc-color-lg-gray-light-10 {
    color: #eaedf0 !important
  }

  .rmc-color-lg-gray-light-25 {
    color: #fcfdfd !important
  }

  .rmc-color-lg-gray-light-50 {
    color: #f9fafb !important
  }

  .rmc-color-lg-gray-light-70 {
    color: #ebeef1 !important
  }

  .rmc-color-lg-gray-light-100 {
    color: #f2f5f7 !important
  }

  .rmc-color-lg-gray-light-200 {
    color: #eaecf0 !important
  }

  .rmc-color-lg-gray-light-300 {
    color: #d6dadd !important
  }

  .rmc-color-lg-gray-light-400 {
    color: #c6c9cc !important
  }

  .rmc-color-lg-gray-light-500 {
    color: #97999b !important
  }

  .rmc-color-lg-gray-light-600 {
    color: #596067 !important
  }

  .rmc-color-lg-gray-light-650 {
    color: #515d6d !important
  }

  .rmc-color-lg-gray-light-700 {
    color: #394754 !important
  }

  .rmc-color-lg-gray-light-750 {
    color: #475467 !important
  }

  .rmc-color-lg-gray-light-800 {
    color: #182430 !important
  }

  .rmc-color-lg-gray-light-900 {
    color: #101c28 !important
  }

  .rmc-color-lg-gray-light-950 {
    color: #0c151d !important
  }

  .rmc-color-lg-gray-dark-50 {
    color: #f5f5f6 !important
  }

  .rmc-color-lg-gray-dark-60 {
    color: #f5fbff !important
  }

  .rmc-color-lg-gray-dark-100 {
    color: #f0f0f1 !important
  }

  .rmc-color-lg-gray-dark-200 {
    color: #ececed !important
  }

  .rmc-color-lg-gray-dark-300 {
    color: #ced0d2 !important
  }

  .rmc-color-lg-gray-dark-400 {
    color: #94979c !important
  }

  .rmc-color-lg-gray-dark-450 {
    color: #636d80 !important
  }

  .rmc-color-lg-gray-dark-500 {
    color: #63666a !important
  }

  .rmc-color-lg-gray-dark-600 {
    color: #575b61 !important
  }

  .rmc-color-lg-gray-dark-650 {
    color: #4a4a4a !important
  }

  .rmc-color-lg-gray-dark-700 {
    color: #333941 !important
  }

  .rmc-color-lg-gray-dark-750 {
    color: #202834 !important
  }

  .rmc-color-lg-gray-dark-800 {
    color: #1f262f !important
  }

  .rmc-color-lg-gray-dark-900 {
    color: #161d26 !important
  }

  .rmc-color-lg-gray-dark-950 {
    color: #101828 !important
  }

  .rmc-color-lg-brand-500 {
    color: #e4002b !important
  }

  .rmc-color-lg-error-500 {
    color: #f04438 !important
  }

  .rmc-color-lg-warning-500 {
    color: #ef6820 !important
  }

  .rmc-color-lg-success-500 {
    color: #789d4a !important
  }

  .rmc-color-lg-green-light-500 {
    color: #a9c47f !important
  }

  .rmc-color-lg-green-dark-100 {
    color: #358486 !important
  }

  .rmc-color-lg-green-dark-200 {
    color: #215253 !important
  }

  .rmc-color-lg-teal-light-500 {
    color: #6bbbae !important
  }

  .rmc-color-lg-teal-500 {
    color: #4f868e !important
  }

  .rmc-color-lg-blue-light-500 {
    color: #7a99ac !important
  }

  .rmc-color-lg-blue-500 {
    color: #1b365d !important
  }

  .rmc-color-lg-beige-light-500 {
    color: #dfd1a7 !important
  }

  .rmc-color-lg-beige-500 {
    color: #a09074 !important
  }

  .rmc-color-lg-yellow-400 {
    color: #f1be48 !important
  }

  .rmc-color-lg-yellow-500 {
    color: #eaaa08 !important
  }

  .rmc-color-lg-neutral-95 {
    color: #e8e8f5 !important
  }

  .rmc-color-lg-neutral-90 {
    color: #eaedf0 !important
  }

  .rmc-color-lg-text-primary {
    color: #101c28 !important
  }

  .rmc-color-lg-text-secondary {
    color: #596067 !important
  }

  .rmc-color-lg-text-tertiary {
    color: #575b61 !important
  }

  .rmc-color-lg-text-whtie {
    color: #fff !important
  }

  .rmc-color-lg-text-disabled,
  .rmc-color-lg-text-placeholder {
    color: #63666a !important
  }

  .rmc-color-lg-text-brand {
    color: #e4002b !important
  }

  .rmc-color-lg-text-error {
    color: #f04438 !important
  }

  .rmc-color-lg-text-warning {
    color: #ef6820 !important
  }

  .rmc-color-lg-text-success {
    color: #789d4a !important
  }

  .rmc-bg-color-lg-base-white {
    background-color: #fff !important
  }

  .rmc-bg-color-lg-base-transparent {
    background-color: transparent !important
  }

  .rmc-bg-color-lg-base-black {
    background-color: #000 !important
  }

  .rmc-bg-color-lg-gray-light-10 {
    background-color: #eaedf0 !important
  }

  .rmc-bg-color-lg-gray-light-25 {
    background-color: #fcfdfd !important
  }

  .rmc-bg-color-lg-gray-light-50 {
    background-color: #f9fafb !important
  }

  .rmc-bg-color-lg-gray-light-70 {
    background-color: #ebeef1 !important
  }

  .rmc-bg-color-lg-gray-light-100 {
    background-color: #f2f5f7 !important
  }

  .rmc-bg-color-lg-gray-light-200 {
    background-color: #eaecf0 !important
  }

  .rmc-bg-color-lg-gray-light-300 {
    background-color: #d6dadd !important
  }

  .rmc-bg-color-lg-gray-light-400 {
    background-color: #c6c9cc !important
  }

  .rmc-bg-color-lg-gray-light-500 {
    background-color: #97999b !important
  }

  .rmc-bg-color-lg-gray-light-600 {
    background-color: #596067 !important
  }

  .rmc-bg-color-lg-gray-light-650 {
    background-color: #515d6d !important
  }

  .rmc-bg-color-lg-gray-light-700 {
    background-color: #394754 !important
  }

  .rmc-bg-color-lg-gray-light-750 {
    background-color: #475467 !important
  }

  .rmc-bg-color-lg-gray-light-800 {
    background-color: #182430 !important
  }

  .rmc-bg-color-lg-gray-light-900 {
    background-color: #101c28 !important
  }

  .rmc-bg-color-lg-gray-light-950 {
    background-color: #0c151d !important
  }

  .rmc-bg-color-lg-gray-dark-50 {
    background-color: #f5f5f6 !important
  }

  .rmc-bg-color-lg-gray-dark-60 {
    background-color: #f5fbff !important
  }

  .rmc-bg-color-lg-gray-dark-100 {
    background-color: #f0f0f1 !important
  }

  .rmc-bg-color-lg-gray-dark-200 {
    background-color: #ececed !important
  }

  .rmc-bg-color-lg-gray-dark-300 {
    background-color: #ced0d2 !important
  }

  .rmc-bg-color-lg-gray-dark-400 {
    background-color: #94979c !important
  }

  .rmc-bg-color-lg-gray-dark-450 {
    background-color: #636d80 !important
  }

  .rmc-bg-color-lg-gray-dark-500 {
    background-color: #63666a !important
  }

  .rmc-bg-color-lg-gray-dark-600 {
    background-color: #575b61 !important
  }

  .rmc-bg-color-lg-gray-dark-650 {
    background-color: #4a4a4a !important
  }

  .rmc-bg-color-lg-gray-dark-700 {
    background-color: #333941 !important
  }

  .rmc-bg-color-lg-gray-dark-750 {
    background-color: #202834 !important
  }

  .rmc-bg-color-lg-gray-dark-800 {
    background-color: #1f262f !important
  }

  .rmc-bg-color-lg-gray-dark-900 {
    background-color: #161d26 !important
  }

  .rmc-bg-color-lg-gray-dark-950 {
    background-color: #101828 !important
  }

  .rmc-bg-color-lg-brand-500 {
    background-color: #e4002b !important
  }

  .rmc-bg-color-lg-error-500 {
    background-color: #f04438 !important
  }

  .rmc-bg-color-lg-warning-500 {
    background-color: #ef6820 !important
  }

  .rmc-bg-color-lg-success-500 {
    background-color: #789d4a !important
  }

  .rmc-bg-color-lg-green-light-500 {
    background-color: #a9c47f !important
  }

  .rmc-bg-color-lg-green-dark-100 {
    background-color: #358486 !important
  }

  .rmc-bg-color-lg-green-dark-200 {
    background-color: #215253 !important
  }

  .rmc-bg-color-lg-teal-light-500 {
    background-color: #6bbbae !important
  }

  .rmc-bg-color-lg-teal-500 {
    background-color: #4f868e !important
  }

  .rmc-bg-color-lg-blue-light-500 {
    background-color: #7a99ac !important
  }

  .rmc-bg-color-lg-blue-500 {
    background-color: #1b365d !important
  }

  .rmc-bg-color-lg-beige-light-500 {
    background-color: #dfd1a7 !important
  }

  .rmc-bg-color-lg-beige-500 {
    background-color: #a09074 !important
  }

  .rmc-bg-color-lg-yellow-400 {
    background-color: #f1be48 !important
  }

  .rmc-bg-color-lg-yellow-500 {
    background-color: #eaaa08 !important
  }

  .rmc-bg-color-lg-neutral-95 {
    background-color: #e8e8f5 !important
  }

  .rmc-bg-color-lg-neutral-90 {
    background-color: #eaedf0 !important
  }

  .rmc-bg-color-lg-text-primary {
    background-color: #101c28 !important
  }

  .rmc-bg-color-lg-text-secondary {
    background-color: #596067 !important
  }

  .rmc-bg-color-lg-text-tertiary {
    background-color: #575b61 !important
  }

  .rmc-bg-color-lg-text-whtie {
    background-color: #fff !important
  }

  .rmc-bg-color-lg-text-disabled,
  .rmc-bg-color-lg-text-placeholder {
    background-color: #63666a !important
  }

  .rmc-bg-color-lg-text-brand {
    background-color: #e4002b !important
  }

  .rmc-bg-color-lg-text-error {
    background-color: #f04438 !important
  }

  .rmc-bg-color-lg-text-warning {
    background-color: #ef6820 !important
  }

  .rmc-bg-color-lg-text-success {
    background-color: #789d4a !important
  }

  .rmc-border-lg-base-white {
    border: 1px solid #ffffff !important
  }

  .rmc-border-lg-base-transparent {
    border: 1px solid transparent !important
  }

  .rmc-border-lg-base-black {
    border: 1px solid #000000 !important
  }

  .rmc-border-lg-gray-light-10 {
    border: 1px solid #eaedf0 !important
  }

  .rmc-border-lg-gray-light-25 {
    border: 1px solid #fcfdfd !important
  }

  .rmc-border-lg-gray-light-50 {
    border: 1px solid #f9fafb !important
  }

  .rmc-border-lg-gray-light-70 {
    border: 1px solid #ebeef1 !important
  }

  .rmc-border-lg-gray-light-100 {
    border: 1px solid #f2f5f7 !important
  }

  .rmc-border-lg-gray-light-200 {
    border: 1px solid #eaecf0 !important
  }

  .rmc-border-lg-gray-light-300 {
    border: 1px solid #d6dadd !important
  }

  .rmc-border-lg-gray-light-400 {
    border: 1px solid #c6c9cc !important
  }

  .rmc-border-lg-gray-light-500 {
    border: 1px solid #97999b !important
  }

  .rmc-border-lg-gray-light-600 {
    border: 1px solid #596067 !important
  }

  .rmc-border-lg-gray-light-650 {
    border: 1px solid #515d6d !important
  }

  .rmc-border-lg-gray-light-700 {
    border: 1px solid #394754 !important
  }

  .rmc-border-lg-gray-light-750 {
    border: 1px solid #475467 !important
  }

  .rmc-border-lg-gray-light-800 {
    border: 1px solid #182430 !important
  }

  .rmc-border-lg-gray-light-900 {
    border: 1px solid #101c28 !important
  }

  .rmc-border-lg-gray-light-950 {
    border: 1px solid #0c151d !important
  }

  .rmc-border-lg-gray-dark-50 {
    border: 1px solid #f5f5f6 !important
  }

  .rmc-border-lg-gray-dark-60 {
    border: 1px solid #f5fbff !important
  }

  .rmc-border-lg-gray-dark-100 {
    border: 1px solid #f0f0f1 !important
  }

  .rmc-border-lg-gray-dark-200 {
    border: 1px solid #ececed !important
  }

  .rmc-border-lg-gray-dark-300 {
    border: 1px solid #ced0d2 !important
  }

  .rmc-border-lg-gray-dark-400 {
    border: 1px solid #94979c !important
  }

  .rmc-border-lg-gray-dark-450 {
    border: 1px solid #636d80 !important
  }

  .rmc-border-lg-gray-dark-500 {
    border: 1px solid #63666a !important
  }

  .rmc-border-lg-gray-dark-600 {
    border: 1px solid #575b61 !important
  }

  .rmc-border-lg-gray-dark-650 {
    border: 1px solid #4a4a4a !important
  }

  .rmc-border-lg-gray-dark-700 {
    border: 1px solid #333941 !important
  }

  .rmc-border-lg-gray-dark-750 {
    border: 1px solid #202834 !important
  }

  .rmc-border-lg-gray-dark-800 {
    border: 1px solid #1f262f !important
  }

  .rmc-border-lg-gray-dark-900 {
    border: 1px solid #161d26 !important
  }

  .rmc-border-lg-gray-dark-950 {
    border: 1px solid #101828 !important
  }

  .rmc-border-lg-brand-500 {
    border: 1px solid #e4002b !important
  }

  .rmc-border-lg-error-500 {
    border: 1px solid #f04438 !important
  }

  .rmc-border-lg-warning-500 {
    border: 1px solid #ef6820 !important
  }

  .rmc-border-lg-success-500 {
    border: 1px solid #789d4a !important
  }

  .rmc-border-lg-green-light-500 {
    border: 1px solid #a9c47f !important
  }

  .rmc-border-lg-green-dark-100 {
    border: 1px solid #358486 !important
  }

  .rmc-border-lg-green-dark-200 {
    border: 1px solid #215253 !important
  }

  .rmc-border-lg-teal-light-500 {
    border: 1px solid #6bbbae !important
  }

  .rmc-border-lg-teal-500 {
    border: 1px solid #4f868e !important
  }

  .rmc-border-lg-blue-light-500 {
    border: 1px solid #7a99ac !important
  }

  .rmc-border-lg-blue-500 {
    border: 1px solid #1b365d !important
  }

  .rmc-border-lg-beige-light-500 {
    border: 1px solid #dfd1a7 !important
  }

  .rmc-border-lg-beige-500 {
    border: 1px solid #a09074 !important
  }

  .rmc-border-lg-yellow-400 {
    border: 1px solid #f1be48 !important
  }

  .rmc-border-lg-yellow-500 {
    border: 1px solid #eaaa08 !important
  }

  .rmc-border-lg-neutral-95 {
    border: 1px solid #e8e8f5 !important
  }

  .rmc-border-lg-neutral-90 {
    border: 1px solid #eaedf0 !important
  }

  .rmc-border-lg-text-primary {
    border: 1px solid #101c28 !important
  }

  .rmc-border-lg-text-secondary {
    border: 1px solid #596067 !important
  }

  .rmc-border-lg-text-tertiary {
    border: 1px solid #575b61 !important
  }

  .rmc-border-lg-text-whtie {
    border: 1px solid #ffffff !important
  }

  .rmc-border-lg-text-disabled,
  .rmc-border-lg-text-placeholder {
    border: 1px solid #63666a !important
  }

  .rmc-border-lg-text-brand {
    border: 1px solid #e4002b !important
  }

  .rmc-border-lg-text-error {
    border: 1px solid #f04438 !important
  }

  .rmc-border-lg-text-warning {
    border: 1px solid #ef6820 !important
  }

  .rmc-border-lg-text-success {
    border: 1px solid #789d4a !important
  }

  .rmc-border-lg-gray-dotted-4 {
    border: 4px dotted #94979c !important
  }

  .rmc-vertical-align-lg-top {
    vertical-align: top !important
  }

  .rmc-vertical-align-lg-bottom {
    vertical-align: bottom !important
  }

  .rmc-vertical-align-lg-middle {
    vertical-align: middle !important
  }

  .rmc-vertical-align-lg-baseline {
    vertical-align: baseline !important
  }

  .rmc-vertical-align-lg-sub {
    vertical-align: sub !important
  }

  .rmc-vertical-align-lg-text-top {
    vertical-align: text-top !important
  }

  .rmc-opacity-lg-0 {
    opacity: 0 !important
  }

  .rmc-opacity-lg-100 {
    opacity: 100 !important
  }

  .rmc-column-count-lg-1 {
    column-count: 1 !important
  }

  .rmc-column-count-lg-2 {
    column-count: 2 !important
  }

  .rmc-column-count-lg-3 {
    column-count: 3 !important
  }

  .rmc-column-count-lg-4 {
    column-count: 4 !important
  }

  .rmc-column-count-lg-5 {
    column-count: 5 !important
  }

  .rmc-column-count-lg-6 {
    column-count: 6 !important
  }

  .rmc-column-count-lg-7 {
    column-count: 7 !important
  }

  .rmc-column-count-lg-8 {
    column-count: 8 !important
  }

  .rmc-column-count-lg-9 {
    column-count: 9 !important
  }

  .rmc-column-count-lg-10 {
    column-count: 10 !important
  }

  .rmc-column-count-lg-11 {
    column-count: 11 !important
  }

  .rmc-column-count-lg-12 {
    column-count: 12 !important
  }

  .rmc-break-inside-lg-avoid {
    break-inside: avoid !important
  }

  .rmc-break-inside-lg-avoid-column {
    break-inside: avoid-column !important
  }

  .rmc-break-inside-lg-avoid-page {
    break-inside: avoid-page !important
  }

  .rmc-break-inside-lg-avoid-region {
    break-inside: avoid-region !important
  }

  .rmc-break-inside-lg-auto {
    break-inside: auto !important
  }

  .rmc-aspect-ratio-lg-16-9 {
    aspect-ratio: 1.7777777778 !important
  }

  .rmc-aspect-ratio-lg-1-1 {
    aspect-ratio: 1 !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
  }

  .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: .25rem !important
  }

  .m-xl-2 {
    margin: .5rem !important
  }

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

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

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

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

  .mx-xl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important
  }

  .mx-xl-1 {
    margin-right: .25rem !important;
    margin-left: .25rem !important
  }

  .mx-xl-2 {
    margin-right: .5rem !important;
    margin-left: .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: 3rem !important;
    margin-left: 3rem !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: .25rem !important;
    margin-bottom: .25rem !important
  }

  .my-xl-2 {
    margin-top: .5rem !important;
    margin-bottom: .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: 3rem !important;
    margin-bottom: 3rem !important
  }

  .my-xl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important
  }

  .mt-xl-0 {
    margin-top: 0 !important
  }

  .mt-xl-1 {
    margin-top: .25rem !important
  }

  .mt-xl-2 {
    margin-top: .5rem !important
  }

  .mt-xl-3 {
    margin-top: 1rem !important
  }

  .mt-xl-4 {
    margin-top: 1.5rem !important
  }

  .mt-xl-5 {
    margin-top: 3rem !important
  }

  .mt-xl-auto {
    margin-top: auto !important
  }

  .me-xl-0 {
    margin-right: 0 !important
  }

  .me-xl-1 {
    margin-right: .25rem !important
  }

  .me-xl-2 {
    margin-right: .5rem !important
  }

  .me-xl-3 {
    margin-right: 1rem !important
  }

  .me-xl-4 {
    margin-right: 1.5rem !important
  }

  .me-xl-5 {
    margin-right: 3rem !important
  }

  .me-xl-auto {
    margin-right: auto !important
  }

  .mb-xl-0 {
    margin-bottom: 0 !important
  }

  .mb-xl-1 {
    margin-bottom: .25rem !important
  }

  .mb-xl-2 {
    margin-bottom: .5rem !important
  }

  .mb-xl-3 {
    margin-bottom: 1rem !important
  }

  .mb-xl-4 {
    margin-bottom: 1.5rem !important
  }

  .mb-xl-5 {
    margin-bottom: 3rem !important
  }

  .mb-xl-auto {
    margin-bottom: auto !important
  }

  .ms-xl-0 {
    margin-left: 0 !important
  }

  .ms-xl-1 {
    margin-left: .25rem !important
  }

  .ms-xl-2 {
    margin-left: .5rem !important
  }

  .ms-xl-3 {
    margin-left: 1rem !important
  }

  .ms-xl-4 {
    margin-left: 1.5rem !important
  }

  .ms-xl-5 {
    margin-left: 3rem !important
  }

  .ms-xl-auto {
    margin-left: auto !important
  }

  .m-xl-n1 {
    margin: -.25rem !important
  }

  .m-xl-n2 {
    margin: -.5rem !important
  }

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

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

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

  .mx-xl-n1 {
    margin-right: -.25rem !important;
    margin-left: -.25rem !important
  }

  .mx-xl-n2 {
    margin-right: -.5rem !important;
    margin-left: -.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: -3rem !important;
    margin-left: -3rem !important
  }

  .my-xl-n1 {
    margin-top: -.25rem !important;
    margin-bottom: -.25rem !important
  }

  .my-xl-n2 {
    margin-top: -.5rem !important;
    margin-bottom: -.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: -3rem !important;
    margin-bottom: -3rem !important
  }

  .mt-xl-n1 {
    margin-top: -.25rem !important
  }

  .mt-xl-n2 {
    margin-top: -.5rem !important
  }

  .mt-xl-n3 {
    margin-top: -1rem !important
  }

  .mt-xl-n4 {
    margin-top: -1.5rem !important
  }

  .mt-xl-n5 {
    margin-top: -3rem !important
  }

  .me-xl-n1 {
    margin-right: -.25rem !important
  }

  .me-xl-n2 {
    margin-right: -.5rem !important
  }

  .me-xl-n3 {
    margin-right: -1rem !important
  }

  .me-xl-n4 {
    margin-right: -1.5rem !important
  }

  .me-xl-n5 {
    margin-right: -3rem !important
  }

  .mb-xl-n1 {
    margin-bottom: -.25rem !important
  }

  .mb-xl-n2 {
    margin-bottom: -.5rem !important
  }

  .mb-xl-n3 {
    margin-bottom: -1rem !important
  }

  .mb-xl-n4 {
    margin-bottom: -1.5rem !important
  }

  .mb-xl-n5 {
    margin-bottom: -3rem !important
  }

  .ms-xl-n1 {
    margin-left: -.25rem !important
  }

  .ms-xl-n2 {
    margin-left: -.5rem !important
  }

  .ms-xl-n3 {
    margin-left: -1rem !important
  }

  .ms-xl-n4 {
    margin-left: -1.5rem !important
  }

  .ms-xl-n5 {
    margin-left: -3rem !important
  }

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

  .p-xl-1 {
    padding: .25rem !important
  }

  .p-xl-2 {
    padding: .5rem !important
  }

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

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

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

  .px-xl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important
  }

  .px-xl-1 {
    padding-right: .25rem !important;
    padding-left: .25rem !important
  }

  .px-xl-2 {
    padding-right: .5rem !important;
    padding-left: .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: 3rem !important;
    padding-left: 3rem !important
  }

  .py-xl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important
  }

  .py-xl-1 {
    padding-top: .25rem !important;
    padding-bottom: .25rem !important
  }

  .py-xl-2 {
    padding-top: .5rem !important;
    padding-bottom: .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: 3rem !important;
    padding-bottom: 3rem !important
  }

  .pt-xl-0 {
    padding-top: 0 !important
  }

  .pt-xl-1 {
    padding-top: .25rem !important
  }

  .pt-xl-2 {
    padding-top: .5rem !important
  }

  .pt-xl-3 {
    padding-top: 1rem !important
  }

  .pt-xl-4 {
    padding-top: 1.5rem !important
  }

  .pt-xl-5 {
    padding-top: 3rem !important
  }

  .pe-xl-0 {
    padding-right: 0 !important
  }

  .pe-xl-1 {
    padding-right: .25rem !important
  }

  .pe-xl-2 {
    padding-right: .5rem !important
  }

  .pe-xl-3 {
    padding-right: 1rem !important
  }

  .pe-xl-4 {
    padding-right: 1.5rem !important
  }

  .pe-xl-5 {
    padding-right: 3rem !important
  }

  .pb-xl-0 {
    padding-bottom: 0 !important
  }

  .pb-xl-1 {
    padding-bottom: .25rem !important
  }

  .pb-xl-2 {
    padding-bottom: .5rem !important
  }

  .pb-xl-3 {
    padding-bottom: 1rem !important
  }

  .pb-xl-4 {
    padding-bottom: 1.5rem !important
  }

  .pb-xl-5 {
    padding-bottom: 3rem !important
  }

  .ps-xl-0 {
    padding-left: 0 !important
  }

  .ps-xl-1 {
    padding-left: .25rem !important
  }

  .ps-xl-2 {
    padding-left: .5rem !important
  }

  .ps-xl-3 {
    padding-left: 1rem !important
  }

  .ps-xl-4 {
    padding-left: 1.5rem !important
  }

  .ps-xl-5 {
    padding-left: 3rem !important
  }

  .gap-xl-0 {
    gap: 0 !important
  }

  .gap-xl-1 {
    gap: .25rem !important
  }

  .gap-xl-2 {
    gap: .5rem !important
  }

  .gap-xl-3 {
    gap: 1rem !important
  }

  .gap-xl-4 {
    gap: 1.5rem !important
  }

  .gap-xl-5 {
    gap: 3rem !important
  }

  .row-gap-xl-0 {
    row-gap: 0 !important
  }

  .row-gap-xl-1 {
    row-gap: .25rem !important
  }

  .row-gap-xl-2 {
    row-gap: .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: 3rem !important
  }

  .column-gap-xl-0 {
    column-gap: 0 !important
  }

  .column-gap-xl-1 {
    column-gap: .25rem !important
  }

  .column-gap-xl-2 {
    column-gap: .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: 3rem !important
  }

  .text-xl-start {
    text-align: left !important
  }

  .text-xl-end {
    text-align: right !important
  }

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

  .rmc-my-xl-none {
    margin-top: 0 !important;
    margin-bottom: 0 !important
  }

  .rmc-my-xl-xxs {
    margin-top: .125rem !important;
    margin-bottom: .125rem !important
  }

  .rmc-my-xl-xs {
    margin-top: .25rem !important;
    margin-bottom: .25rem !important
  }

  .rmc-my-xl-sm {
    margin-top: .375rem !important;
    margin-bottom: .375rem !important
  }

  .rmc-my-xl-md {
    margin-top: .5rem !important;
    margin-bottom: .5rem !important
  }

  .rmc-my-xl-lg {
    margin-top: .75rem !important;
    margin-bottom: .75rem !important
  }

  .rmc-my-xl-xl {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important
  }

  .rmc-my-xl-2xl {
    margin-top: 1.25rem !important;
    margin-bottom: 1.25rem !important
  }

  .rmc-my-xl-3xl {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important
  }

  .rmc-my-xl-4xl {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important
  }

  .rmc-my-xl-5xl {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important
  }

  .rmc-my-xl-6xl {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important
  }

  .rmc-my-xl-7xl {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important
  }

  .rmc-my-xl-8xl {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important
  }

  .rmc-my-xl-9xl {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important
  }

  .rmc-my-xl-10xl {
    margin-top: 8rem !important;
    margin-bottom: 8rem !important
  }

  .rmc-my-xl-11xl {
    margin-top: 10rem !important;
    margin-bottom: 10rem !important
  }

  .rmc-my-xl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important
  }

  .rmc-mt-xl-none {
    margin-top: 0 !important
  }

  .rmc-mt-xl-xxs {
    margin-top: .125rem !important
  }

  .rmc-mt-xl-xs {
    margin-top: .25rem !important
  }

  .rmc-mt-xl-sm {
    margin-top: .375rem !important
  }

  .rmc-mt-xl-md {
    margin-top: .5rem !important
  }

  .rmc-mt-xl-lg {
    margin-top: .75rem !important
  }

  .rmc-mt-xl-xl {
    margin-top: 1rem !important
  }

  .rmc-mt-xl-2xl {
    margin-top: 1.25rem !important
  }

  .rmc-mt-xl-3xl {
    margin-top: 1.5rem !important
  }

  .rmc-mt-xl-4xl {
    margin-top: 2rem !important
  }

  .rmc-mt-xl-5xl {
    margin-top: 2.5rem !important
  }

  .rmc-mt-xl-6xl {
    margin-top: 3rem !important
  }

  .rmc-mt-xl-7xl {
    margin-top: 4rem !important
  }

  .rmc-mt-xl-8xl {
    margin-top: 5rem !important
  }

  .rmc-mt-xl-9xl {
    margin-top: 6rem !important
  }

  .rmc-mt-xl-10xl {
    margin-top: 8rem !important
  }

  .rmc-mt-xl-11xl {
    margin-top: 10rem !important
  }

  .rmc-mt-xl-auto {
    margin-top: auto !important
  }

  .rmc-mb-xl-none {
    margin-bottom: 0 !important
  }

  .rmc-mb-xl-xxs {
    margin-bottom: .125rem !important
  }

  .rmc-mb-xl-xs {
    margin-bottom: .25rem !important
  }

  .rmc-mb-xl-sm {
    margin-bottom: .375rem !important
  }

  .rmc-mb-xl-md {
    margin-bottom: .5rem !important
  }

  .rmc-mb-xl-lg {
    margin-bottom: .75rem !important
  }

  .rmc-mb-xl-xl {
    margin-bottom: 1rem !important
  }

  .rmc-mb-xl-2xl {
    margin-bottom: 1.25rem !important
  }

  .rmc-mb-xl-3xl {
    margin-bottom: 1.5rem !important
  }

  .rmc-mb-xl-4xl {
    margin-bottom: 2rem !important
  }

  .rmc-mb-xl-5xl {
    margin-bottom: 2.5rem !important
  }

  .rmc-mb-xl-6xl {
    margin-bottom: 3rem !important
  }

  .rmc-mb-xl-7xl {
    margin-bottom: 4rem !important
  }

  .rmc-mb-xl-8xl {
    margin-bottom: 5rem !important
  }

  .rmc-mb-xl-9xl {
    margin-bottom: 6rem !important
  }

  .rmc-mb-xl-10xl {
    margin-bottom: 8rem !important
  }

  .rmc-mb-xl-11xl {
    margin-bottom: 10rem !important
  }

  .rmc-mb-xl-auto {
    margin-bottom: auto !important
  }

  .rmc-ml-xl-none {
    margin-left: 0 !important
  }

  .rmc-ml-xl-xxs {
    margin-left: .125rem !important
  }

  .rmc-ml-xl-xs {
    margin-left: .25rem !important
  }

  .rmc-ml-xl-sm {
    margin-left: .375rem !important
  }

  .rmc-ml-xl-md {
    margin-left: .5rem !important
  }

  .rmc-ml-xl-lg {
    margin-left: .75rem !important
  }

  .rmc-ml-xl-xl {
    margin-left: 1rem !important
  }

  .rmc-ml-xl-2xl {
    margin-left: 1.25rem !important
  }

  .rmc-ml-xl-3xl {
    margin-left: 1.5rem !important
  }

  .rmc-ml-xl-4xl {
    margin-left: 2rem !important
  }

  .rmc-ml-xl-5xl {
    margin-left: 2.5rem !important
  }

  .rmc-ml-xl-6xl {
    margin-left: 3rem !important
  }

  .rmc-ml-xl-7xl {
    margin-left: 4rem !important
  }

  .rmc-ml-xl-8xl {
    margin-left: 5rem !important
  }

  .rmc-ml-xl-9xl {
    margin-left: 6rem !important
  }

  .rmc-ml-xl-10xl {
    margin-left: 8rem !important
  }

  .rmc-ml-xl-11xl {
    margin-left: 10rem !important
  }

  .rmc-ml-xl-auto {
    margin-left: auto !important
  }

  .rmc-mr-xl-none {
    margin-right: 0 !important
  }

  .rmc-mr-xl-xxs {
    margin-right: .125rem !important
  }

  .rmc-mr-xl-xs {
    margin-right: .25rem !important
  }

  .rmc-mr-xl-sm {
    margin-right: .375rem !important
  }

  .rmc-mr-xl-md {
    margin-right: .5rem !important
  }

  .rmc-mr-xl-lg {
    margin-right: .75rem !important
  }

  .rmc-mr-xl-xl {
    margin-right: 1rem !important
  }

  .rmc-mr-xl-2xl {
    margin-right: 1.25rem !important
  }

  .rmc-mr-xl-3xl {
    margin-right: 1.5rem !important
  }

  .rmc-mr-xl-4xl {
    margin-right: 2rem !important
  }

  .rmc-mr-xl-5xl {
    margin-right: 2.5rem !important
  }

  .rmc-mr-xl-6xl {
    margin-right: 3rem !important
  }

  .rmc-mr-xl-7xl {
    margin-right: 4rem !important
  }

  .rmc-mr-xl-8xl {
    margin-right: 5rem !important
  }

  .rmc-mr-xl-9xl {
    margin-right: 6rem !important
  }

  .rmc-mr-xl-10xl {
    margin-right: 8rem !important
  }

  .rmc-mr-xl-11xl {
    margin-right: 10rem !important
  }

  .rmc-mr-xl-auto {
    margin-right: auto !important
  }

  .rmc-mx-xl-none {
    margin-left: 0 !important;
    margin-right: 0 !important
  }

  .rmc-mx-xl-xxs {
    margin-left: .125rem !important;
    margin-right: .125rem !important
  }

  .rmc-mx-xl-xs {
    margin-left: .25rem !important;
    margin-right: .25rem !important
  }

  .rmc-mx-xl-sm {
    margin-left: .375rem !important;
    margin-right: .375rem !important
  }

  .rmc-mx-xl-md {
    margin-left: .5rem !important;
    margin-right: .5rem !important
  }

  .rmc-mx-xl-lg {
    margin-left: .75rem !important;
    margin-right: .75rem !important
  }

  .rmc-mx-xl-xl {
    margin-left: 1rem !important;
    margin-right: 1rem !important
  }

  .rmc-mx-xl-2xl {
    margin-left: 1.25rem !important;
    margin-right: 1.25rem !important
  }

  .rmc-mx-xl-3xl {
    margin-left: 1.5rem !important;
    margin-right: 1.5rem !important
  }

  .rmc-mx-xl-4xl {
    margin-left: 2rem !important;
    margin-right: 2rem !important
  }

  .rmc-mx-xl-5xl {
    margin-left: 2.5rem !important;
    margin-right: 2.5rem !important
  }

  .rmc-mx-xl-6xl {
    margin-left: 3rem !important;
    margin-right: 3rem !important
  }

  .rmc-mx-xl-7xl {
    margin-left: 4rem !important;
    margin-right: 4rem !important
  }

  .rmc-mx-xl-8xl {
    margin-left: 5rem !important;
    margin-right: 5rem !important
  }

  .rmc-mx-xl-9xl {
    margin-left: 6rem !important;
    margin-right: 6rem !important
  }

  .rmc-mx-xl-10xl {
    margin-left: 8rem !important;
    margin-right: 8rem !important
  }

  .rmc-mx-xl-11xl {
    margin-left: 10rem !important;
    margin-right: 10rem !important
  }

  .rmc-mx-xl-auto {
    margin-left: auto !important;
    margin-right: auto !important
  }

  .rmc-p-xl-none {
    padding: 0 !important
  }

  .rmc-p-xl-xxs {
    padding: .125rem !important
  }

  .rmc-p-xl-xs {
    padding: .25rem !important
  }

  .rmc-p-xl-sm {
    padding: .375rem !important
  }

  .rmc-p-xl-md {
    padding: .5rem !important
  }

  .rmc-p-xl-lg {
    padding: .75rem !important
  }

  .rmc-p-xl-xl {
    padding: 1rem !important
  }

  .rmc-p-xl-2xl {
    padding: 1.25rem !important
  }

  .rmc-p-xl-3xl {
    padding: 1.5rem !important
  }

  .rmc-p-xl-4xl {
    padding: 2rem !important
  }

  .rmc-p-xl-5xl {
    padding: 2.5rem !important
  }

  .rmc-p-xl-6xl {
    padding: 3rem !important
  }

  .rmc-p-xl-7xl {
    padding: 4rem !important
  }

  .rmc-p-xl-8xl {
    padding: 5rem !important
  }

  .rmc-p-xl-9xl {
    padding: 6rem !important
  }

  .rmc-p-xl-10xl {
    padding: 8rem !important
  }

  .rmc-p-xl-11xl {
    padding: 10rem !important
  }

  .rmc-p-xl-auto {
    padding: auto !important
  }

  .rmc-py-xl-none {
    padding-top: 0 !important;
    padding-bottom: 0 !important
  }

  .rmc-py-xl-xxs {
    padding-top: .125rem !important;
    padding-bottom: .125rem !important
  }

  .rmc-py-xl-xs {
    padding-top: .25rem !important;
    padding-bottom: .25rem !important
  }

  .rmc-py-xl-sm {
    padding-top: .375rem !important;
    padding-bottom: .375rem !important
  }

  .rmc-py-xl-md {
    padding-top: .5rem !important;
    padding-bottom: .5rem !important
  }

  .rmc-py-xl-lg {
    padding-top: .75rem !important;
    padding-bottom: .75rem !important
  }

  .rmc-py-xl-xl {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important
  }

  .rmc-py-xl-2xl {
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important
  }

  .rmc-py-xl-3xl {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important
  }

  .rmc-py-xl-4xl {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important
  }

  .rmc-py-xl-5xl {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important
  }

  .rmc-py-xl-6xl {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important
  }

  .rmc-py-xl-7xl {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important
  }

  .rmc-py-xl-8xl {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important
  }

  .rmc-py-xl-9xl {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important
  }

  .rmc-py-xl-10xl {
    padding-top: 8rem !important;
    padding-bottom: 8rem !important
  }

  .rmc-py-xl-11xl {
    padding-top: 10rem !important;
    padding-bottom: 10rem !important
  }

  .rmc-py-xl-auto {
    padding-top: auto !important;
    padding-bottom: auto !important
  }

  .rmc-px-xl-none {
    padding-left: 0 !important;
    padding-right: 0 !important
  }

  .rmc-px-xl-xxs {
    padding-left: .125rem !important;
    padding-right: .125rem !important
  }

  .rmc-px-xl-xs {
    padding-left: .25rem !important;
    padding-right: .25rem !important
  }

  .rmc-px-xl-sm {
    padding-left: .375rem !important;
    padding-right: .375rem !important
  }

  .rmc-px-xl-md {
    padding-left: .5rem !important;
    padding-right: .5rem !important
  }

  .rmc-px-xl-lg {
    padding-left: .75rem !important;
    padding-right: .75rem !important
  }

  .rmc-px-xl-xl {
    padding-left: 1rem !important;
    padding-right: 1rem !important
  }

  .rmc-px-xl-2xl {
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important
  }

  .rmc-px-xl-3xl {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important
  }

  .rmc-px-xl-4xl {
    padding-left: 2rem !important;
    padding-right: 2rem !important
  }

  .rmc-px-xl-5xl {
    padding-left: 2.5rem !important;
    padding-right: 2.5rem !important
  }

  .rmc-px-xl-6xl {
    padding-left: 3rem !important;
    padding-right: 3rem !important
  }

  .rmc-px-xl-7xl {
    padding-left: 4rem !important;
    padding-right: 4rem !important
  }

  .rmc-px-xl-8xl {
    padding-left: 5rem !important;
    padding-right: 5rem !important
  }

  .rmc-px-xl-9xl {
    padding-left: 6rem !important;
    padding-right: 6rem !important
  }

  .rmc-px-xl-10xl {
    padding-left: 8rem !important;
    padding-right: 8rem !important
  }

  .rmc-px-xl-11xl {
    padding-left: 10rem !important;
    padding-right: 10rem !important
  }

  .rmc-px-xl-auto {
    padding-left: auto !important;
    padding-right: auto !important
  }

  .rmc-pt-xl-none {
    padding-top: 0 !important
  }

  .rmc-pt-xl-xxs {
    padding-top: .125rem !important
  }

  .rmc-pt-xl-xs {
    padding-top: .25rem !important
  }

  .rmc-pt-xl-sm {
    padding-top: .375rem !important
  }

  .rmc-pt-xl-md {
    padding-top: .5rem !important
  }

  .rmc-pt-xl-lg {
    padding-top: .75rem !important
  }

  .rmc-pt-xl-xl {
    padding-top: 1rem !important
  }

  .rmc-pt-xl-2xl {
    padding-top: 1.25rem !important
  }

  .rmc-pt-xl-3xl {
    padding-top: 1.5rem !important
  }

  .rmc-pt-xl-4xl {
    padding-top: 2rem !important
  }

  .rmc-pt-xl-5xl {
    padding-top: 2.5rem !important
  }

  .rmc-pt-xl-6xl {
    padding-top: 3rem !important
  }

  .rmc-pt-xl-7xl {
    padding-top: 4rem !important
  }

  .rmc-pt-xl-8xl {
    padding-top: 5rem !important
  }

  .rmc-pt-xl-9xl {
    padding-top: 6rem !important
  }

  .rmc-pt-xl-10xl {
    padding-top: 8rem !important
  }

  .rmc-pt-xl-11xl {
    padding-top: 10rem !important
  }

  .rmc-pt-xl-auto {
    padding-top: auto !important
  }

  .rmc-pb-xl-none {
    padding-bottom: 0 !important
  }

  .rmc-pb-xl-xxs {
    padding-bottom: .125rem !important
  }

  .rmc-pb-xl-xs {
    padding-bottom: .25rem !important
  }

  .rmc-pb-xl-sm {
    padding-bottom: .375rem !important
  }

  .rmc-pb-xl-md {
    padding-bottom: .5rem !important
  }

  .rmc-pb-xl-lg {
    padding-bottom: .75rem !important
  }

  .rmc-pb-xl-xl {
    padding-bottom: 1rem !important
  }

  .rmc-pb-xl-2xl {
    padding-bottom: 1.25rem !important
  }

  .rmc-pb-xl-3xl {
    padding-bottom: 1.5rem !important
  }

  .rmc-pb-xl-4xl {
    padding-bottom: 2rem !important
  }

  .rmc-pb-xl-5xl {
    padding-bottom: 2.5rem !important
  }

  .rmc-pb-xl-6xl {
    padding-bottom: 3rem !important
  }

  .rmc-pb-xl-7xl {
    padding-bottom: 4rem !important
  }

  .rmc-pb-xl-8xl {
    padding-bottom: 5rem !important
  }

  .rmc-pb-xl-9xl {
    padding-bottom: 6rem !important
  }

  .rmc-pb-xl-10xl {
    padding-bottom: 8rem !important
  }

  .rmc-pb-xl-11xl {
    padding-bottom: 10rem !important
  }

  .rmc-pb-xl-auto {
    padding-bottom: auto !important
  }

  .rmc-pl-xl-none {
    padding-left: 0 !important
  }

  .rmc-pl-xl-xxs {
    padding-left: .125rem !important
  }

  .rmc-pl-xl-xs {
    padding-left: .25rem !important
  }

  .rmc-pl-xl-sm {
    padding-left: .375rem !important
  }

  .rmc-pl-xl-md {
    padding-left: .5rem !important
  }

  .rmc-pl-xl-lg {
    padding-left: .75rem !important
  }

  .rmc-pl-xl-xl {
    padding-left: 1rem !important
  }

  .rmc-pl-xl-2xl {
    padding-left: 1.25rem !important
  }

  .rmc-pl-xl-3xl {
    padding-left: 1.5rem !important
  }

  .rmc-pl-xl-4xl {
    padding-left: 2rem !important
  }

  .rmc-pl-xl-5xl {
    padding-left: 2.5rem !important
  }

  .rmc-pl-xl-6xl {
    padding-left: 3rem !important
  }

  .rmc-pl-xl-7xl {
    padding-left: 4rem !important
  }

  .rmc-pl-xl-8xl {
    padding-left: 5rem !important
  }

  .rmc-pl-xl-9xl {
    padding-left: 6rem !important
  }

  .rmc-pl-xl-10xl {
    padding-left: 8rem !important
  }

  .rmc-pl-xl-11xl {
    padding-left: 10rem !important
  }

  .rmc-pl-xl-auto {
    padding-left: auto !important
  }

  .rmc-pr-xl-none {
    padding-right: 0 !important
  }

  .rmc-pr-xl-xxs {
    padding-right: .125rem !important
  }

  .rmc-pr-xl-xs {
    padding-right: .25rem !important
  }

  .rmc-pr-xl-sm {
    padding-right: .375rem !important
  }

  .rmc-pr-xl-md {
    padding-right: .5rem !important
  }

  .rmc-pr-xl-lg {
    padding-right: .75rem !important
  }

  .rmc-pr-xl-xl {
    padding-right: 1rem !important
  }

  .rmc-pr-xl-2xl {
    padding-right: 1.25rem !important
  }

  .rmc-pr-xl-3xl {
    padding-right: 1.5rem !important
  }

  .rmc-pr-xl-4xl {
    padding-right: 2rem !important
  }

  .rmc-pr-xl-5xl {
    padding-right: 2.5rem !important
  }

  .rmc-pr-xl-6xl {
    padding-right: 3rem !important
  }

  .rmc-pr-xl-7xl {
    padding-right: 4rem !important
  }

  .rmc-pr-xl-8xl {
    padding-right: 5rem !important
  }

  .rmc-pr-xl-9xl {
    padding-right: 6rem !important
  }

  .rmc-pr-xl-10xl {
    padding-right: 8rem !important
  }

  .rmc-pr-xl-11xl {
    padding-right: 10rem !important
  }

  .rmc-pr-xl-auto {
    padding-right: auto !important
  }

  .rmc-gap-xl-none {
    gap: 0 !important
  }

  .rmc-gap-xl-xxs {
    gap: .125rem !important
  }

  .rmc-gap-xl-xs {
    gap: .25rem !important
  }

  .rmc-gap-xl-sm {
    gap: .375rem !important
  }

  .rmc-gap-xl-md {
    gap: .5rem !important
  }

  .rmc-gap-xl-lg {
    gap: .75rem !important
  }

  .rmc-gap-xl-xl {
    gap: 1rem !important
  }

  .rmc-gap-xl-2xl {
    gap: 1.25rem !important
  }

  .rmc-gap-xl-3xl {
    gap: 1.5rem !important
  }

  .rmc-gap-xl-4xl {
    gap: 2rem !important
  }

  .rmc-gap-xl-5xl {
    gap: 2.5rem !important
  }

  .rmc-gap-xl-6xl {
    gap: 3rem !important
  }

  .rmc-gap-xl-7xl {
    gap: 4rem !important
  }

  .rmc-gap-xl-8xl {
    gap: 5rem !important
  }

  .rmc-gap-xl-9xl {
    gap: 6rem !important
  }

  .rmc-gap-xl-10xl {
    gap: 8rem !important
  }

  .rmc-gap-xl-11xl {
    gap: 10rem !important
  }

  .rmc-gap-xl-auto {
    gap: auto !important
  }

  .rmc-row-gap-xl-none {
    row-gap: 0 !important
  }

  .rmc-row-gap-xl-xxs {
    row-gap: .125rem !important
  }

  .rmc-row-gap-xl-xs {
    row-gap: .25rem !important
  }

  .rmc-row-gap-xl-sm {
    row-gap: .375rem !important
  }

  .rmc-row-gap-xl-md {
    row-gap: .5rem !important
  }

  .rmc-row-gap-xl-lg {
    row-gap: .75rem !important
  }

  .rmc-row-gap-xl-xl {
    row-gap: 1rem !important
  }

  .rmc-row-gap-xl-2xl {
    row-gap: 1.25rem !important
  }

  .rmc-row-gap-xl-3xl {
    row-gap: 1.5rem !important
  }

  .rmc-row-gap-xl-4xl {
    row-gap: 2rem !important
  }

  .rmc-row-gap-xl-5xl {
    row-gap: 2.5rem !important
  }

  .rmc-row-gap-xl-6xl {
    row-gap: 3rem !important
  }

  .rmc-row-gap-xl-7xl {
    row-gap: 4rem !important
  }

  .rmc-row-gap-xl-8xl {
    row-gap: 5rem !important
  }

  .rmc-row-gap-xl-9xl {
    row-gap: 6rem !important
  }

  .rmc-row-gap-xl-10xl {
    row-gap: 8rem !important
  }

  .rmc-row-gap-xl-11xl {
    row-gap: 10rem !important
  }

  .rmc-column-gap-xl-none {
    column-gap: 0 !important
  }

  .rmc-column-gap-xl-xxs {
    column-gap: .125rem !important
  }

  .rmc-column-gap-xl-xs {
    column-gap: .25rem !important
  }

  .rmc-column-gap-xl-sm {
    column-gap: .375rem !important
  }

  .rmc-column-gap-xl-md {
    column-gap: .5rem !important
  }

  .rmc-column-gap-xl-lg {
    column-gap: .75rem !important
  }

  .rmc-column-gap-xl-xl {
    column-gap: 1rem !important
  }

  .rmc-column-gap-xl-2xl {
    column-gap: 1.25rem !important
  }

  .rmc-column-gap-xl-3xl {
    column-gap: 1.5rem !important
  }

  .rmc-column-gap-xl-4xl {
    column-gap: 2rem !important
  }

  .rmc-column-gap-xl-5xl {
    column-gap: 2.5rem !important
  }

  .rmc-column-gap-xl-6xl {
    column-gap: 3rem !important
  }

  .rmc-column-gap-xl-7xl {
    column-gap: 4rem !important
  }

  .rmc-column-gap-xl-8xl {
    column-gap: 5rem !important
  }

  .rmc-column-gap-xl-9xl {
    column-gap: 6rem !important
  }

  .rmc-column-gap-xl-10xl {
    column-gap: 8rem !important
  }

  .rmc-column-gap-xl-11xl {
    column-gap: 10rem !important
  }

  .rmc-height-xl-none {
    height: 0 !important
  }

  .rmc-height-xl-xxs {
    height: .125rem !important
  }

  .rmc-height-xl-xs {
    height: .25rem !important
  }

  .rmc-height-xl-sm {
    height: .375rem !important
  }

  .rmc-height-xl-md {
    height: .5rem !important
  }

  .rmc-height-xl-lg {
    height: .75rem !important
  }

  .rmc-height-xl-xl {
    height: 1rem !important
  }

  .rmc-height-xl-2xl {
    height: 1.25rem !important
  }

  .rmc-height-xl-3xl {
    height: 1.5rem !important
  }

  .rmc-height-xl-4xl {
    height: 2rem !important
  }

  .rmc-height-xl-5xl {
    height: 2.5rem !important
  }

  .rmc-height-xl-6xl {
    height: 3rem !important
  }

  .rmc-height-xl-7xl {
    height: 4rem !important
  }

  .rmc-height-xl-8xl {
    height: 5rem !important
  }

  .rmc-height-xl-9xl {
    height: 6rem !important
  }

  .rmc-height-xl-10xl {
    height: 8rem !important
  }

  .rmc-height-xl-11xl {
    height: 10rem !important
  }

  .rmc-max-height-xl-none {
    max-height: none !important
  }

  .rmc-max-height-xl-xxs {
    max-height: .125rem !important
  }

  .rmc-max-height-xl-xs {
    max-height: .25rem !important
  }

  .rmc-max-height-xl-sm {
    max-height: .375rem !important
  }

  .rmc-max-height-xl-md {
    max-height: .5rem !important
  }

  .rmc-max-height-xl-lg {
    max-height: .75rem !important
  }

  .rmc-max-height-xl-xl {
    max-height: 1rem !important
  }

  .rmc-max-height-xl-2xl {
    max-height: 1.25rem !important
  }

  .rmc-max-height-xl-3xl {
    max-height: 1.5rem !important
  }

  .rmc-max-height-xl-4xl {
    max-height: 2rem !important
  }

  .rmc-max-height-xl-5xl {
    max-height: 2.5rem !important
  }

  .rmc-max-height-xl-6xl {
    max-height: 3rem !important
  }

  .rmc-max-height-xl-7xl {
    max-height: 4rem !important
  }

  .rmc-max-height-xl-8xl {
    max-height: 5rem !important
  }

  .rmc-max-height-xl-9xl {
    max-height: 6rem !important
  }

  .rmc-max-height-xl-10xl {
    max-height: 8rem !important
  }

  .rmc-max-height-xl-11xl {
    max-height: 10rem !important
  }

  .rmc-width-xl-none {
    width: 0 !important
  }

  .rmc-width-xl-xxs {
    width: .125rem !important
  }

  .rmc-width-xl-xs {
    width: .25rem !important
  }

  .rmc-width-xl-sm {
    width: .375rem !important
  }

  .rmc-width-xl-md {
    width: .5rem !important
  }

  .rmc-width-xl-lg {
    width: .75rem !important
  }

  .rmc-width-xl-xl {
    width: 1rem !important
  }

  .rmc-width-xl-2xl {
    width: 1.25rem !important
  }

  .rmc-width-xl-3xl {
    width: 1.5rem !important
  }

  .rmc-width-xl-4xl {
    width: 2rem !important
  }

  .rmc-width-xl-5xl {
    width: 2.5rem !important
  }

  .rmc-width-xl-6xl {
    width: 3rem !important
  }

  .rmc-width-xl-7xl {
    width: 4rem !important
  }

  .rmc-width-xl-8xl {
    width: 5rem !important
  }

  .rmc-width-xl-9xl {
    width: 6rem !important
  }

  .rmc-width-xl-10xl {
    width: 8rem !important
  }

  .rmc-width-xl-11xl {
    width: 10rem !important
  }

  .rmc-width-xl-40 {
    width: 40rem !important
  }

  .rmc-width-xl-30 {
    width: 30rem !important
  }

  .rmc-width-xl-7p5 {
    width: 7.5rem !important
  }

  .rmc-width-xl-13 {
    width: 13rem !important
  }

  .rmc-height-xl-40 {
    height: 40rem !important
  }

  .rmc-height-xl-30 {
    height: 30rem !important
  }

  .rmc-height-xl-7p5 {
    height: 7.5rem !important
  }

  .rmc-height-xl-13 {
    height: 13rem !important
  }

  .rmc-lh-xl-none {
    line-height: 0 !important
  }

  .rmc-lh-xl-xxs {
    line-height: .125rem !important
  }

  .rmc-lh-xl-xs {
    line-height: .25rem !important
  }

  .rmc-lh-xl-sm {
    line-height: .375rem !important
  }

  .rmc-lh-xl-md {
    line-height: .5rem !important
  }

  .rmc-lh-xl-lg {
    line-height: .75rem !important
  }

  .rmc-lh-xl-xl {
    line-height: 1rem !important
  }

  .rmc-lh-xl-2xl {
    line-height: 1.25rem !important
  }

  .rmc-lh-xl-3xl {
    line-height: 1.5rem !important
  }

  .rmc-lh-xl-4xl {
    line-height: 2rem !important
  }

  .rmc-lh-xl-5xl {
    line-height: 2.5rem !important
  }

  .rmc-lh-xl-6xl {
    line-height: 3rem !important
  }

  .rmc-lh-xl-7xl {
    line-height: 4rem !important
  }

  .rmc-lh-xl-8xl {
    line-height: 5rem !important
  }

  .rmc-lh-xl-9xl {
    line-height: 6rem !important
  }

  .rmc-lh-xl-10xl {
    line-height: 8rem !important
  }

  .rmc-lh-xl-11xl {
    line-height: 10rem !important
  }

  .rmc-radius-xl-none {
    border-radius: 0 !important
  }

  .rmc-radius-xl-xxs {
    border-radius: .125rem !important
  }

  .rmc-radius-xl-xs {
    border-radius: .25rem !important
  }

  .rmc-radius-xl-sm {
    border-radius: .375rem !important
  }

  .rmc-radius-xl-md {
    border-radius: .5rem !important
  }

  .rmc-radius-xl-lg {
    border-radius: .625rem !important
  }

  .rmc-radius-xl-xl {
    border-radius: .75rem !important
  }

  .rmc-radius-xl-2xl {
    border-radius: 1rem !important
  }

  .rmc-radius-xl-3xl {
    border-radius: 1.25rem !important
  }

  .rmc-radius-xl-4xl {
    border-radius: 1.5rem !important
  }

  .rmc-radius-xl-50 {
    border-radius: 50% !important
  }

  .rmc-color-xl-base-white {
    color: #fff !important
  }

  .rmc-color-xl-base-transparent {
    color: transparent !important
  }

  .rmc-color-xl-base-black {
    color: #000 !important
  }

  .rmc-color-xl-gray-light-10 {
    color: #eaedf0 !important
  }

  .rmc-color-xl-gray-light-25 {
    color: #fcfdfd !important
  }

  .rmc-color-xl-gray-light-50 {
    color: #f9fafb !important
  }

  .rmc-color-xl-gray-light-70 {
    color: #ebeef1 !important
  }

  .rmc-color-xl-gray-light-100 {
    color: #f2f5f7 !important
  }

  .rmc-color-xl-gray-light-200 {
    color: #eaecf0 !important
  }

  .rmc-color-xl-gray-light-300 {
    color: #d6dadd !important
  }

  .rmc-color-xl-gray-light-400 {
    color: #c6c9cc !important
  }

  .rmc-color-xl-gray-light-500 {
    color: #97999b !important
  }

  .rmc-color-xl-gray-light-600 {
    color: #596067 !important
  }

  .rmc-color-xl-gray-light-650 {
    color: #515d6d !important
  }

  .rmc-color-xl-gray-light-700 {
    color: #394754 !important
  }

  .rmc-color-xl-gray-light-750 {
    color: #475467 !important
  }

  .rmc-color-xl-gray-light-800 {
    color: #182430 !important
  }

  .rmc-color-xl-gray-light-900 {
    color: #101c28 !important
  }

  .rmc-color-xl-gray-light-950 {
    color: #0c151d !important
  }

  .rmc-color-xl-gray-dark-50 {
    color: #f5f5f6 !important
  }

  .rmc-color-xl-gray-dark-60 {
    color: #f5fbff !important
  }

  .rmc-color-xl-gray-dark-100 {
    color: #f0f0f1 !important
  }

  .rmc-color-xl-gray-dark-200 {
    color: #ececed !important
  }

  .rmc-color-xl-gray-dark-300 {
    color: #ced0d2 !important
  }

  .rmc-color-xl-gray-dark-400 {
    color: #94979c !important
  }

  .rmc-color-xl-gray-dark-450 {
    color: #636d80 !important
  }

  .rmc-color-xl-gray-dark-500 {
    color: #63666a !important
  }

  .rmc-color-xl-gray-dark-600 {
    color: #575b61 !important
  }

  .rmc-color-xl-gray-dark-650 {
    color: #4a4a4a !important
  }

  .rmc-color-xl-gray-dark-700 {
    color: #333941 !important
  }

  .rmc-color-xl-gray-dark-750 {
    color: #202834 !important
  }

  .rmc-color-xl-gray-dark-800 {
    color: #1f262f !important
  }

  .rmc-color-xl-gray-dark-900 {
    color: #161d26 !important
  }

  .rmc-color-xl-gray-dark-950 {
    color: #101828 !important
  }

  .rmc-color-xl-brand-500 {
    color: #e4002b !important
  }

  .rmc-color-xl-error-500 {
    color: #f04438 !important
  }

  .rmc-color-xl-warning-500 {
    color: #ef6820 !important
  }

  .rmc-color-xl-success-500 {
    color: #789d4a !important
  }

  .rmc-color-xl-green-light-500 {
    color: #a9c47f !important
  }

  .rmc-color-xl-green-dark-100 {
    color: #358486 !important
  }

  .rmc-color-xl-green-dark-200 {
    color: #215253 !important
  }

  .rmc-color-xl-teal-light-500 {
    color: #6bbbae !important
  }

  .rmc-color-xl-teal-500 {
    color: #4f868e !important
  }

  .rmc-color-xl-blue-light-500 {
    color: #7a99ac !important
  }

  .rmc-color-xl-blue-500 {
    color: #1b365d !important
  }

  .rmc-color-xl-beige-light-500 {
    color: #dfd1a7 !important
  }

  .rmc-color-xl-beige-500 {
    color: #a09074 !important
  }

  .rmc-color-xl-yellow-400 {
    color: #f1be48 !important
  }

  .rmc-color-xl-yellow-500 {
    color: #eaaa08 !important
  }

  .rmc-color-xl-neutral-95 {
    color: #e8e8f5 !important
  }

  .rmc-color-xl-neutral-90 {
    color: #eaedf0 !important
  }

  .rmc-color-xl-text-primary {
    color: #101c28 !important
  }

  .rmc-color-xl-text-secondary {
    color: #596067 !important
  }

  .rmc-color-xl-text-tertiary {
    color: #575b61 !important
  }

  .rmc-color-xl-text-whtie {
    color: #fff !important
  }

  .rmc-color-xl-text-disabled,
  .rmc-color-xl-text-placeholder {
    color: #63666a !important
  }

  .rmc-color-xl-text-brand {
    color: #e4002b !important
  }

  .rmc-color-xl-text-error {
    color: #f04438 !important
  }

  .rmc-color-xl-text-warning {
    color: #ef6820 !important
  }

  .rmc-color-xl-text-success {
    color: #789d4a !important
  }

  .rmc-bg-color-xl-base-white {
    background-color: #fff !important
  }

  .rmc-bg-color-xl-base-transparent {
    background-color: transparent !important
  }

  .rmc-bg-color-xl-base-black {
    background-color: #000 !important
  }

  .rmc-bg-color-xl-gray-light-10 {
    background-color: #eaedf0 !important
  }

  .rmc-bg-color-xl-gray-light-25 {
    background-color: #fcfdfd !important
  }

  .rmc-bg-color-xl-gray-light-50 {
    background-color: #f9fafb !important
  }

  .rmc-bg-color-xl-gray-light-70 {
    background-color: #ebeef1 !important
  }

  .rmc-bg-color-xl-gray-light-100 {
    background-color: #f2f5f7 !important
  }

  .rmc-bg-color-xl-gray-light-200 {
    background-color: #eaecf0 !important
  }

  .rmc-bg-color-xl-gray-light-300 {
    background-color: #d6dadd !important
  }

  .rmc-bg-color-xl-gray-light-400 {
    background-color: #c6c9cc !important
  }

  .rmc-bg-color-xl-gray-light-500 {
    background-color: #97999b !important
  }

  .rmc-bg-color-xl-gray-light-600 {
    background-color: #596067 !important
  }

  .rmc-bg-color-xl-gray-light-650 {
    background-color: #515d6d !important
  }

  .rmc-bg-color-xl-gray-light-700 {
    background-color: #394754 !important
  }

  .rmc-bg-color-xl-gray-light-750 {
    background-color: #475467 !important
  }

  .rmc-bg-color-xl-gray-light-800 {
    background-color: #182430 !important
  }

  .rmc-bg-color-xl-gray-light-900 {
    background-color: #101c28 !important
  }

  .rmc-bg-color-xl-gray-light-950 {
    background-color: #0c151d !important
  }

  .rmc-bg-color-xl-gray-dark-50 {
    background-color: #f5f5f6 !important
  }

  .rmc-bg-color-xl-gray-dark-60 {
    background-color: #f5fbff !important
  }

  .rmc-bg-color-xl-gray-dark-100 {
    background-color: #f0f0f1 !important
  }

  .rmc-bg-color-xl-gray-dark-200 {
    background-color: #ececed !important
  }

  .rmc-bg-color-xl-gray-dark-300 {
    background-color: #ced0d2 !important
  }

  .rmc-bg-color-xl-gray-dark-400 {
    background-color: #94979c !important
  }

  .rmc-bg-color-xl-gray-dark-450 {
    background-color: #636d80 !important
  }

  .rmc-bg-color-xl-gray-dark-500 {
    background-color: #63666a !important
  }

  .rmc-bg-color-xl-gray-dark-600 {
    background-color: #575b61 !important
  }

  .rmc-bg-color-xl-gray-dark-650 {
    background-color: #4a4a4a !important
  }

  .rmc-bg-color-xl-gray-dark-700 {
    background-color: #333941 !important
  }

  .rmc-bg-color-xl-gray-dark-750 {
    background-color: #202834 !important
  }

  .rmc-bg-color-xl-gray-dark-800 {
    background-color: #1f262f !important
  }

  .rmc-bg-color-xl-gray-dark-900 {
    background-color: #161d26 !important
  }

  .rmc-bg-color-xl-gray-dark-950 {
    background-color: #101828 !important
  }

  .rmc-bg-color-xl-brand-500 {
    background-color: #e4002b !important
  }

  .rmc-bg-color-xl-error-500 {
    background-color: #f04438 !important
  }

  .rmc-bg-color-xl-warning-500 {
    background-color: #ef6820 !important
  }

  .rmc-bg-color-xl-success-500 {
    background-color: #789d4a !important
  }

  .rmc-bg-color-xl-green-light-500 {
    background-color: #a9c47f !important
  }

  .rmc-bg-color-xl-green-dark-100 {
    background-color: #358486 !important
  }

  .rmc-bg-color-xl-green-dark-200 {
    background-color: #215253 !important
  }

  .rmc-bg-color-xl-teal-light-500 {
    background-color: #6bbbae !important
  }

  .rmc-bg-color-xl-teal-500 {
    background-color: #4f868e !important
  }

  .rmc-bg-color-xl-blue-light-500 {
    background-color: #7a99ac !important
  }

  .rmc-bg-color-xl-blue-500 {
    background-color: #1b365d !important
  }

  .rmc-bg-color-xl-beige-light-500 {
    background-color: #dfd1a7 !important
  }

  .rmc-bg-color-xl-beige-500 {
    background-color: #a09074 !important
  }

  .rmc-bg-color-xl-yellow-400 {
    background-color: #f1be48 !important
  }

  .rmc-bg-color-xl-yellow-500 {
    background-color: #eaaa08 !important
  }

  .rmc-bg-color-xl-neutral-95 {
    background-color: #e8e8f5 !important
  }

  .rmc-bg-color-xl-neutral-90 {
    background-color: #eaedf0 !important
  }

  .rmc-bg-color-xl-text-primary {
    background-color: #101c28 !important
  }

  .rmc-bg-color-xl-text-secondary {
    background-color: #596067 !important
  }

  .rmc-bg-color-xl-text-tertiary {
    background-color: #575b61 !important
  }

  .rmc-bg-color-xl-text-whtie {
    background-color: #fff !important
  }

  .rmc-bg-color-xl-text-disabled,
  .rmc-bg-color-xl-text-placeholder {
    background-color: #63666a !important
  }

  .rmc-bg-color-xl-text-brand {
    background-color: #e4002b !important
  }

  .rmc-bg-color-xl-text-error {
    background-color: #f04438 !important
  }

  .rmc-bg-color-xl-text-warning {
    background-color: #ef6820 !important
  }

  .rmc-bg-color-xl-text-success {
    background-color: #789d4a !important
  }

  .rmc-border-xl-base-white {
    border: 1px solid #ffffff !important
  }

  .rmc-border-xl-base-transparent {
    border: 1px solid transparent !important
  }

  .rmc-border-xl-base-black {
    border: 1px solid #000000 !important
  }

  .rmc-border-xl-gray-light-10 {
    border: 1px solid #eaedf0 !important
  }

  .rmc-border-xl-gray-light-25 {
    border: 1px solid #fcfdfd !important
  }

  .rmc-border-xl-gray-light-50 {
    border: 1px solid #f9fafb !important
  }

  .rmc-border-xl-gray-light-70 {
    border: 1px solid #ebeef1 !important
  }

  .rmc-border-xl-gray-light-100 {
    border: 1px solid #f2f5f7 !important
  }

  .rmc-border-xl-gray-light-200 {
    border: 1px solid #eaecf0 !important
  }

  .rmc-border-xl-gray-light-300 {
    border: 1px solid #d6dadd !important
  }

  .rmc-border-xl-gray-light-400 {
    border: 1px solid #c6c9cc !important
  }

  .rmc-border-xl-gray-light-500 {
    border: 1px solid #97999b !important
  }

  .rmc-border-xl-gray-light-600 {
    border: 1px solid #596067 !important
  }

  .rmc-border-xl-gray-light-650 {
    border: 1px solid #515d6d !important
  }

  .rmc-border-xl-gray-light-700 {
    border: 1px solid #394754 !important
  }

  .rmc-border-xl-gray-light-750 {
    border: 1px solid #475467 !important
  }

  .rmc-border-xl-gray-light-800 {
    border: 1px solid #182430 !important
  }

  .rmc-border-xl-gray-light-900 {
    border: 1px solid #101c28 !important
  }

  .rmc-border-xl-gray-light-950 {
    border: 1px solid #0c151d !important
  }

  .rmc-border-xl-gray-dark-50 {
    border: 1px solid #f5f5f6 !important
  }

  .rmc-border-xl-gray-dark-60 {
    border: 1px solid #f5fbff !important
  }

  .rmc-border-xl-gray-dark-100 {
    border: 1px solid #f0f0f1 !important
  }

  .rmc-border-xl-gray-dark-200 {
    border: 1px solid #ececed !important
  }

  .rmc-border-xl-gray-dark-300 {
    border: 1px solid #ced0d2 !important
  }

  .rmc-border-xl-gray-dark-400 {
    border: 1px solid #94979c !important
  }

  .rmc-border-xl-gray-dark-450 {
    border: 1px solid #636d80 !important
  }

  .rmc-border-xl-gray-dark-500 {
    border: 1px solid #63666a !important
  }

  .rmc-border-xl-gray-dark-600 {
    border: 1px solid #575b61 !important
  }

  .rmc-border-xl-gray-dark-650 {
    border: 1px solid #4a4a4a !important
  }

  .rmc-border-xl-gray-dark-700 {
    border: 1px solid #333941 !important
  }

  .rmc-border-xl-gray-dark-750 {
    border: 1px solid #202834 !important
  }

  .rmc-border-xl-gray-dark-800 {
    border: 1px solid #1f262f !important
  }

  .rmc-border-xl-gray-dark-900 {
    border: 1px solid #161d26 !important
  }

  .rmc-border-xl-gray-dark-950 {
    border: 1px solid #101828 !important
  }

  .rmc-border-xl-brand-500 {
    border: 1px solid #e4002b !important
  }

  .rmc-border-xl-error-500 {
    border: 1px solid #f04438 !important
  }

  .rmc-border-xl-warning-500 {
    border: 1px solid #ef6820 !important
  }

  .rmc-border-xl-success-500 {
    border: 1px solid #789d4a !important
  }

  .rmc-border-xl-green-light-500 {
    border: 1px solid #a9c47f !important
  }

  .rmc-border-xl-green-dark-100 {
    border: 1px solid #358486 !important
  }

  .rmc-border-xl-green-dark-200 {
    border: 1px solid #215253 !important
  }

  .rmc-border-xl-teal-light-500 {
    border: 1px solid #6bbbae !important
  }

  .rmc-border-xl-teal-500 {
    border: 1px solid #4f868e !important
  }

  .rmc-border-xl-blue-light-500 {
    border: 1px solid #7a99ac !important
  }

  .rmc-border-xl-blue-500 {
    border: 1px solid #1b365d !important
  }

  .rmc-border-xl-beige-light-500 {
    border: 1px solid #dfd1a7 !important
  }

  .rmc-border-xl-beige-500 {
    border: 1px solid #a09074 !important
  }

  .rmc-border-xl-yellow-400 {
    border: 1px solid #f1be48 !important
  }

  .rmc-border-xl-yellow-500 {
    border: 1px solid #eaaa08 !important
  }

  .rmc-border-xl-neutral-95 {
    border: 1px solid #e8e8f5 !important
  }

  .rmc-border-xl-neutral-90 {
    border: 1px solid #eaedf0 !important
  }

  .rmc-border-xl-text-primary {
    border: 1px solid #101c28 !important
  }

  .rmc-border-xl-text-secondary {
    border: 1px solid #596067 !important
  }

  .rmc-border-xl-text-tertiary {
    border: 1px solid #575b61 !important
  }

  .rmc-border-xl-text-whtie {
    border: 1px solid #ffffff !important
  }

  .rmc-border-xl-text-disabled,
  .rmc-border-xl-text-placeholder {
    border: 1px solid #63666a !important
  }

  .rmc-border-xl-text-brand {
    border: 1px solid #e4002b !important
  }

  .rmc-border-xl-text-error {
    border: 1px solid #f04438 !important
  }

  .rmc-border-xl-text-warning {
    border: 1px solid #ef6820 !important
  }

  .rmc-border-xl-text-success {
    border: 1px solid #789d4a !important
  }

  .rmc-border-xl-gray-dotted-4 {
    border: 4px dotted #94979c !important
  }

  .rmc-vertical-align-xl-top {
    vertical-align: top !important
  }

  .rmc-vertical-align-xl-bottom {
    vertical-align: bottom !important
  }

  .rmc-vertical-align-xl-middle {
    vertical-align: middle !important
  }

  .rmc-vertical-align-xl-baseline {
    vertical-align: baseline !important
  }

  .rmc-vertical-align-xl-sub {
    vertical-align: sub !important
  }

  .rmc-vertical-align-xl-text-top {
    vertical-align: text-top !important
  }

  .rmc-opacity-xl-0 {
    opacity: 0 !important
  }

  .rmc-opacity-xl-100 {
    opacity: 100 !important
  }

  .rmc-column-count-xl-1 {
    column-count: 1 !important
  }

  .rmc-column-count-xl-2 {
    column-count: 2 !important
  }

  .rmc-column-count-xl-3 {
    column-count: 3 !important
  }

  .rmc-column-count-xl-4 {
    column-count: 4 !important
  }

  .rmc-column-count-xl-5 {
    column-count: 5 !important
  }

  .rmc-column-count-xl-6 {
    column-count: 6 !important
  }

  .rmc-column-count-xl-7 {
    column-count: 7 !important
  }

  .rmc-column-count-xl-8 {
    column-count: 8 !important
  }

  .rmc-column-count-xl-9 {
    column-count: 9 !important
  }

  .rmc-column-count-xl-10 {
    column-count: 10 !important
  }

  .rmc-column-count-xl-11 {
    column-count: 11 !important
  }

  .rmc-column-count-xl-12 {
    column-count: 12 !important
  }

  .rmc-break-inside-xl-avoid {
    break-inside: avoid !important
  }

  .rmc-break-inside-xl-avoid-column {
    break-inside: avoid-column !important
  }

  .rmc-break-inside-xl-avoid-page {
    break-inside: avoid-page !important
  }

  .rmc-break-inside-xl-avoid-region {
    break-inside: avoid-region !important
  }

  .rmc-break-inside-xl-auto {
    break-inside: auto !important
  }

  .rmc-aspect-ratio-xl-16-9 {
    aspect-ratio: 1.7777777778 !important
  }

  .rmc-aspect-ratio-xl-1-1 {
    aspect-ratio: 1 !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
  }

  .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: .25rem !important
  }

  .m-xxl-2 {
    margin: .5rem !important
  }

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

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

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

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

  .mx-xxl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important
  }

  .mx-xxl-1 {
    margin-right: .25rem !important;
    margin-left: .25rem !important
  }

  .mx-xxl-2 {
    margin-right: .5rem !important;
    margin-left: .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: 3rem !important;
    margin-left: 3rem !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: .25rem !important;
    margin-bottom: .25rem !important
  }

  .my-xxl-2 {
    margin-top: .5rem !important;
    margin-bottom: .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: 3rem !important;
    margin-bottom: 3rem !important
  }

  .my-xxl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important
  }

  .mt-xxl-0 {
    margin-top: 0 !important
  }

  .mt-xxl-1 {
    margin-top: .25rem !important
  }

  .mt-xxl-2 {
    margin-top: .5rem !important
  }

  .mt-xxl-3 {
    margin-top: 1rem !important
  }

  .mt-xxl-4 {
    margin-top: 1.5rem !important
  }

  .mt-xxl-5 {
    margin-top: 3rem !important
  }

  .mt-xxl-auto {
    margin-top: auto !important
  }

  .me-xxl-0 {
    margin-right: 0 !important
  }

  .me-xxl-1 {
    margin-right: .25rem !important
  }

  .me-xxl-2 {
    margin-right: .5rem !important
  }

  .me-xxl-3 {
    margin-right: 1rem !important
  }

  .me-xxl-4 {
    margin-right: 1.5rem !important
  }

  .me-xxl-5 {
    margin-right: 3rem !important
  }

  .me-xxl-auto {
    margin-right: auto !important
  }

  .mb-xxl-0 {
    margin-bottom: 0 !important
  }

  .mb-xxl-1 {
    margin-bottom: .25rem !important
  }

  .mb-xxl-2 {
    margin-bottom: .5rem !important
  }

  .mb-xxl-3 {
    margin-bottom: 1rem !important
  }

  .mb-xxl-4 {
    margin-bottom: 1.5rem !important
  }

  .mb-xxl-5 {
    margin-bottom: 3rem !important
  }

  .mb-xxl-auto {
    margin-bottom: auto !important
  }

  .ms-xxl-0 {
    margin-left: 0 !important
  }

  .ms-xxl-1 {
    margin-left: .25rem !important
  }

  .ms-xxl-2 {
    margin-left: .5rem !important
  }

  .ms-xxl-3 {
    margin-left: 1rem !important
  }

  .ms-xxl-4 {
    margin-left: 1.5rem !important
  }

  .ms-xxl-5 {
    margin-left: 3rem !important
  }

  .ms-xxl-auto {
    margin-left: auto !important
  }

  .m-xxl-n1 {
    margin: -.25rem !important
  }

  .m-xxl-n2 {
    margin: -.5rem !important
  }

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

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

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

  .mx-xxl-n1 {
    margin-right: -.25rem !important;
    margin-left: -.25rem !important
  }

  .mx-xxl-n2 {
    margin-right: -.5rem !important;
    margin-left: -.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: -3rem !important;
    margin-left: -3rem !important
  }

  .my-xxl-n1 {
    margin-top: -.25rem !important;
    margin-bottom: -.25rem !important
  }

  .my-xxl-n2 {
    margin-top: -.5rem !important;
    margin-bottom: -.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: -3rem !important;
    margin-bottom: -3rem !important
  }

  .mt-xxl-n1 {
    margin-top: -.25rem !important
  }

  .mt-xxl-n2 {
    margin-top: -.5rem !important
  }

  .mt-xxl-n3 {
    margin-top: -1rem !important
  }

  .mt-xxl-n4 {
    margin-top: -1.5rem !important
  }

  .mt-xxl-n5 {
    margin-top: -3rem !important
  }

  .me-xxl-n1 {
    margin-right: -.25rem !important
  }

  .me-xxl-n2 {
    margin-right: -.5rem !important
  }

  .me-xxl-n3 {
    margin-right: -1rem !important
  }

  .me-xxl-n4 {
    margin-right: -1.5rem !important
  }

  .me-xxl-n5 {
    margin-right: -3rem !important
  }

  .mb-xxl-n1 {
    margin-bottom: -.25rem !important
  }

  .mb-xxl-n2 {
    margin-bottom: -.5rem !important
  }

  .mb-xxl-n3 {
    margin-bottom: -1rem !important
  }

  .mb-xxl-n4 {
    margin-bottom: -1.5rem !important
  }

  .mb-xxl-n5 {
    margin-bottom: -3rem !important
  }

  .ms-xxl-n1 {
    margin-left: -.25rem !important
  }

  .ms-xxl-n2 {
    margin-left: -.5rem !important
  }

  .ms-xxl-n3 {
    margin-left: -1rem !important
  }

  .ms-xxl-n4 {
    margin-left: -1.5rem !important
  }

  .ms-xxl-n5 {
    margin-left: -3rem !important
  }

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

  .p-xxl-1 {
    padding: .25rem !important
  }

  .p-xxl-2 {
    padding: .5rem !important
  }

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

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

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

  .px-xxl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important
  }

  .px-xxl-1 {
    padding-right: .25rem !important;
    padding-left: .25rem !important
  }

  .px-xxl-2 {
    padding-right: .5rem !important;
    padding-left: .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: 3rem !important;
    padding-left: 3rem !important
  }

  .py-xxl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important
  }

  .py-xxl-1 {
    padding-top: .25rem !important;
    padding-bottom: .25rem !important
  }

  .py-xxl-2 {
    padding-top: .5rem !important;
    padding-bottom: .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: 3rem !important;
    padding-bottom: 3rem !important
  }

  .pt-xxl-0 {
    padding-top: 0 !important
  }

  .pt-xxl-1 {
    padding-top: .25rem !important
  }

  .pt-xxl-2 {
    padding-top: .5rem !important
  }

  .pt-xxl-3 {
    padding-top: 1rem !important
  }

  .pt-xxl-4 {
    padding-top: 1.5rem !important
  }

  .pt-xxl-5 {
    padding-top: 3rem !important
  }

  .pe-xxl-0 {
    padding-right: 0 !important
  }

  .pe-xxl-1 {
    padding-right: .25rem !important
  }

  .pe-xxl-2 {
    padding-right: .5rem !important
  }

  .pe-xxl-3 {
    padding-right: 1rem !important
  }

  .pe-xxl-4 {
    padding-right: 1.5rem !important
  }

  .pe-xxl-5 {
    padding-right: 3rem !important
  }

  .pb-xxl-0 {
    padding-bottom: 0 !important
  }

  .pb-xxl-1 {
    padding-bottom: .25rem !important
  }

  .pb-xxl-2 {
    padding-bottom: .5rem !important
  }

  .pb-xxl-3 {
    padding-bottom: 1rem !important
  }

  .pb-xxl-4 {
    padding-bottom: 1.5rem !important
  }

  .pb-xxl-5 {
    padding-bottom: 3rem !important
  }

  .ps-xxl-0 {
    padding-left: 0 !important
  }

  .ps-xxl-1 {
    padding-left: .25rem !important
  }

  .ps-xxl-2 {
    padding-left: .5rem !important
  }

  .ps-xxl-3 {
    padding-left: 1rem !important
  }

  .ps-xxl-4 {
    padding-left: 1.5rem !important
  }

  .ps-xxl-5 {
    padding-left: 3rem !important
  }

  .gap-xxl-0 {
    gap: 0 !important
  }

  .gap-xxl-1 {
    gap: .25rem !important
  }

  .gap-xxl-2 {
    gap: .5rem !important
  }

  .gap-xxl-3 {
    gap: 1rem !important
  }

  .gap-xxl-4 {
    gap: 1.5rem !important
  }

  .gap-xxl-5 {
    gap: 3rem !important
  }

  .row-gap-xxl-0 {
    row-gap: 0 !important
  }

  .row-gap-xxl-1 {
    row-gap: .25rem !important
  }

  .row-gap-xxl-2 {
    row-gap: .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: 3rem !important
  }

  .column-gap-xxl-0 {
    column-gap: 0 !important
  }

  .column-gap-xxl-1 {
    column-gap: .25rem !important
  }

  .column-gap-xxl-2 {
    column-gap: .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: 3rem !important
  }

  .text-xxl-start {
    text-align: left !important
  }

  .text-xxl-end {
    text-align: right !important
  }

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

  .rmc-my-xxl-none {
    margin-top: 0 !important;
    margin-bottom: 0 !important
  }

  .rmc-my-xxl-xxs {
    margin-top: .125rem !important;
    margin-bottom: .125rem !important
  }

  .rmc-my-xxl-xs {
    margin-top: .25rem !important;
    margin-bottom: .25rem !important
  }

  .rmc-my-xxl-sm {
    margin-top: .375rem !important;
    margin-bottom: .375rem !important
  }

  .rmc-my-xxl-md {
    margin-top: .5rem !important;
    margin-bottom: .5rem !important
  }

  .rmc-my-xxl-lg {
    margin-top: .75rem !important;
    margin-bottom: .75rem !important
  }

  .rmc-my-xxl-xl {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important
  }

  .rmc-my-xxl-2xl {
    margin-top: 1.25rem !important;
    margin-bottom: 1.25rem !important
  }

  .rmc-my-xxl-3xl {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important
  }

  .rmc-my-xxl-4xl {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important
  }

  .rmc-my-xxl-5xl {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important
  }

  .rmc-my-xxl-6xl {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important
  }

  .rmc-my-xxl-7xl {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important
  }

  .rmc-my-xxl-8xl {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important
  }

  .rmc-my-xxl-9xl {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important
  }

  .rmc-my-xxl-10xl {
    margin-top: 8rem !important;
    margin-bottom: 8rem !important
  }

  .rmc-my-xxl-11xl {
    margin-top: 10rem !important;
    margin-bottom: 10rem !important
  }

  .rmc-my-xxl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important
  }

  .rmc-mt-xxl-none {
    margin-top: 0 !important
  }

  .rmc-mt-xxl-xxs {
    margin-top: .125rem !important
  }

  .rmc-mt-xxl-xs {
    margin-top: .25rem !important
  }

  .rmc-mt-xxl-sm {
    margin-top: .375rem !important
  }

  .rmc-mt-xxl-md {
    margin-top: .5rem !important
  }

  .rmc-mt-xxl-lg {
    margin-top: .75rem !important
  }

  .rmc-mt-xxl-xl {
    margin-top: 1rem !important
  }

  .rmc-mt-xxl-2xl {
    margin-top: 1.25rem !important
  }

  .rmc-mt-xxl-3xl {
    margin-top: 1.5rem !important
  }

  .rmc-mt-xxl-4xl {
    margin-top: 2rem !important
  }

  .rmc-mt-xxl-5xl {
    margin-top: 2.5rem !important
  }

  .rmc-mt-xxl-6xl {
    margin-top: 3rem !important
  }

  .rmc-mt-xxl-7xl {
    margin-top: 4rem !important
  }

  .rmc-mt-xxl-8xl {
    margin-top: 5rem !important
  }

  .rmc-mt-xxl-9xl {
    margin-top: 6rem !important
  }

  .rmc-mt-xxl-10xl {
    margin-top: 8rem !important
  }

  .rmc-mt-xxl-11xl {
    margin-top: 10rem !important
  }

  .rmc-mt-xxl-auto {
    margin-top: auto !important
  }

  .rmc-mb-xxl-none {
    margin-bottom: 0 !important
  }

  .rmc-mb-xxl-xxs {
    margin-bottom: .125rem !important
  }

  .rmc-mb-xxl-xs {
    margin-bottom: .25rem !important
  }

  .rmc-mb-xxl-sm {
    margin-bottom: .375rem !important
  }

  .rmc-mb-xxl-md {
    margin-bottom: .5rem !important
  }

  .rmc-mb-xxl-lg {
    margin-bottom: .75rem !important
  }

  .rmc-mb-xxl-xl {
    margin-bottom: 1rem !important
  }

  .rmc-mb-xxl-2xl {
    margin-bottom: 1.25rem !important
  }

  .rmc-mb-xxl-3xl {
    margin-bottom: 1.5rem !important
  }

  .rmc-mb-xxl-4xl {
    margin-bottom: 2rem !important
  }

  .rmc-mb-xxl-5xl {
    margin-bottom: 2.5rem !important
  }

  .rmc-mb-xxl-6xl {
    margin-bottom: 3rem !important
  }

  .rmc-mb-xxl-7xl {
    margin-bottom: 4rem !important
  }

  .rmc-mb-xxl-8xl {
    margin-bottom: 5rem !important
  }

  .rmc-mb-xxl-9xl {
    margin-bottom: 6rem !important
  }

  .rmc-mb-xxl-10xl {
    margin-bottom: 8rem !important
  }

  .rmc-mb-xxl-11xl {
    margin-bottom: 10rem !important
  }

  .rmc-mb-xxl-auto {
    margin-bottom: auto !important
  }

  .rmc-ml-xxl-none {
    margin-left: 0 !important
  }

  .rmc-ml-xxl-xxs {
    margin-left: .125rem !important
  }

  .rmc-ml-xxl-xs {
    margin-left: .25rem !important
  }

  .rmc-ml-xxl-sm {
    margin-left: .375rem !important
  }

  .rmc-ml-xxl-md {
    margin-left: .5rem !important
  }

  .rmc-ml-xxl-lg {
    margin-left: .75rem !important
  }

  .rmc-ml-xxl-xl {
    margin-left: 1rem !important
  }

  .rmc-ml-xxl-2xl {
    margin-left: 1.25rem !important
  }

  .rmc-ml-xxl-3xl {
    margin-left: 1.5rem !important
  }

  .rmc-ml-xxl-4xl {
    margin-left: 2rem !important
  }

  .rmc-ml-xxl-5xl {
    margin-left: 2.5rem !important
  }

  .rmc-ml-xxl-6xl {
    margin-left: 3rem !important
  }

  .rmc-ml-xxl-7xl {
    margin-left: 4rem !important
  }

  .rmc-ml-xxl-8xl {
    margin-left: 5rem !important
  }

  .rmc-ml-xxl-9xl {
    margin-left: 6rem !important
  }

  .rmc-ml-xxl-10xl {
    margin-left: 8rem !important
  }

  .rmc-ml-xxl-11xl {
    margin-left: 10rem !important
  }

  .rmc-ml-xxl-auto {
    margin-left: auto !important
  }

  .rmc-mr-xxl-none {
    margin-right: 0 !important
  }

  .rmc-mr-xxl-xxs {
    margin-right: .125rem !important
  }

  .rmc-mr-xxl-xs {
    margin-right: .25rem !important
  }

  .rmc-mr-xxl-sm {
    margin-right: .375rem !important
  }

  .rmc-mr-xxl-md {
    margin-right: .5rem !important
  }

  .rmc-mr-xxl-lg {
    margin-right: .75rem !important
  }

  .rmc-mr-xxl-xl {
    margin-right: 1rem !important
  }

  .rmc-mr-xxl-2xl {
    margin-right: 1.25rem !important
  }

  .rmc-mr-xxl-3xl {
    margin-right: 1.5rem !important
  }

  .rmc-mr-xxl-4xl {
    margin-right: 2rem !important
  }

  .rmc-mr-xxl-5xl {
    margin-right: 2.5rem !important
  }

  .rmc-mr-xxl-6xl {
    margin-right: 3rem !important
  }

  .rmc-mr-xxl-7xl {
    margin-right: 4rem !important
  }

  .rmc-mr-xxl-8xl {
    margin-right: 5rem !important
  }

  .rmc-mr-xxl-9xl {
    margin-right: 6rem !important
  }

  .rmc-mr-xxl-10xl {
    margin-right: 8rem !important
  }

  .rmc-mr-xxl-11xl {
    margin-right: 10rem !important
  }

  .rmc-mr-xxl-auto {
    margin-right: auto !important
  }

  .rmc-mx-xxl-none {
    margin-left: 0 !important;
    margin-right: 0 !important
  }

  .rmc-mx-xxl-xxs {
    margin-left: .125rem !important;
    margin-right: .125rem !important
  }

  .rmc-mx-xxl-xs {
    margin-left: .25rem !important;
    margin-right: .25rem !important
  }

  .rmc-mx-xxl-sm {
    margin-left: .375rem !important;
    margin-right: .375rem !important
  }

  .rmc-mx-xxl-md {
    margin-left: .5rem !important;
    margin-right: .5rem !important
  }

  .rmc-mx-xxl-lg {
    margin-left: .75rem !important;
    margin-right: .75rem !important
  }

  .rmc-mx-xxl-xl {
    margin-left: 1rem !important;
    margin-right: 1rem !important
  }

  .rmc-mx-xxl-2xl {
    margin-left: 1.25rem !important;
    margin-right: 1.25rem !important
  }

  .rmc-mx-xxl-3xl {
    margin-left: 1.5rem !important;
    margin-right: 1.5rem !important
  }

  .rmc-mx-xxl-4xl {
    margin-left: 2rem !important;
    margin-right: 2rem !important
  }

  .rmc-mx-xxl-5xl {
    margin-left: 2.5rem !important;
    margin-right: 2.5rem !important
  }

  .rmc-mx-xxl-6xl {
    margin-left: 3rem !important;
    margin-right: 3rem !important
  }

  .rmc-mx-xxl-7xl {
    margin-left: 4rem !important;
    margin-right: 4rem !important
  }

  .rmc-mx-xxl-8xl {
    margin-left: 5rem !important;
    margin-right: 5rem !important
  }

  .rmc-mx-xxl-9xl {
    margin-left: 6rem !important;
    margin-right: 6rem !important
  }

  .rmc-mx-xxl-10xl {
    margin-left: 8rem !important;
    margin-right: 8rem !important
  }

  .rmc-mx-xxl-11xl {
    margin-left: 10rem !important;
    margin-right: 10rem !important
  }

  .rmc-mx-xxl-auto {
    margin-left: auto !important;
    margin-right: auto !important
  }

  .rmc-p-xxl-none {
    padding: 0 !important
  }

  .rmc-p-xxl-xxs {
    padding: .125rem !important
  }

  .rmc-p-xxl-xs {
    padding: .25rem !important
  }

  .rmc-p-xxl-sm {
    padding: .375rem !important
  }

  .rmc-p-xxl-md {
    padding: .5rem !important
  }

  .rmc-p-xxl-lg {
    padding: .75rem !important
  }

  .rmc-p-xxl-xl {
    padding: 1rem !important
  }

  .rmc-p-xxl-2xl {
    padding: 1.25rem !important
  }

  .rmc-p-xxl-3xl {
    padding: 1.5rem !important
  }

  .rmc-p-xxl-4xl {
    padding: 2rem !important
  }

  .rmc-p-xxl-5xl {
    padding: 2.5rem !important
  }

  .rmc-p-xxl-6xl {
    padding: 3rem !important
  }

  .rmc-p-xxl-7xl {
    padding: 4rem !important
  }

  .rmc-p-xxl-8xl {
    padding: 5rem !important
  }

  .rmc-p-xxl-9xl {
    padding: 6rem !important
  }

  .rmc-p-xxl-10xl {
    padding: 8rem !important
  }

  .rmc-p-xxl-11xl {
    padding: 10rem !important
  }

  .rmc-p-xxl-auto {
    padding: auto !important
  }

  .rmc-py-xxl-none {
    padding-top: 0 !important;
    padding-bottom: 0 !important
  }

  .rmc-py-xxl-xxs {
    padding-top: .125rem !important;
    padding-bottom: .125rem !important
  }

  .rmc-py-xxl-xs {
    padding-top: .25rem !important;
    padding-bottom: .25rem !important
  }

  .rmc-py-xxl-sm {
    padding-top: .375rem !important;
    padding-bottom: .375rem !important
  }

  .rmc-py-xxl-md {
    padding-top: .5rem !important;
    padding-bottom: .5rem !important
  }

  .rmc-py-xxl-lg {
    padding-top: .75rem !important;
    padding-bottom: .75rem !important
  }

  .rmc-py-xxl-xl {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important
  }

  .rmc-py-xxl-2xl {
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important
  }

  .rmc-py-xxl-3xl {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important
  }

  .rmc-py-xxl-4xl {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important
  }

  .rmc-py-xxl-5xl {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important
  }

  .rmc-py-xxl-6xl {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important
  }

  .rmc-py-xxl-7xl {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important
  }

  .rmc-py-xxl-8xl {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important
  }

  .rmc-py-xxl-9xl {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important
  }

  .rmc-py-xxl-10xl {
    padding-top: 8rem !important;
    padding-bottom: 8rem !important
  }

  .rmc-py-xxl-11xl {
    padding-top: 10rem !important;
    padding-bottom: 10rem !important
  }

  .rmc-py-xxl-auto {
    padding-top: auto !important;
    padding-bottom: auto !important
  }

  .rmc-px-xxl-none {
    padding-left: 0 !important;
    padding-right: 0 !important
  }

  .rmc-px-xxl-xxs {
    padding-left: .125rem !important;
    padding-right: .125rem !important
  }

  .rmc-px-xxl-xs {
    padding-left: .25rem !important;
    padding-right: .25rem !important
  }

  .rmc-px-xxl-sm {
    padding-left: .375rem !important;
    padding-right: .375rem !important
  }

  .rmc-px-xxl-md {
    padding-left: .5rem !important;
    padding-right: .5rem !important
  }

  .rmc-px-xxl-lg {
    padding-left: .75rem !important;
    padding-right: .75rem !important
  }

  .rmc-px-xxl-xl {
    padding-left: 1rem !important;
    padding-right: 1rem !important
  }

  .rmc-px-xxl-2xl {
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important
  }

  .rmc-px-xxl-3xl {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important
  }

  .rmc-px-xxl-4xl {
    padding-left: 2rem !important;
    padding-right: 2rem !important
  }

  .rmc-px-xxl-5xl {
    padding-left: 2.5rem !important;
    padding-right: 2.5rem !important
  }

  .rmc-px-xxl-6xl {
    padding-left: 3rem !important;
    padding-right: 3rem !important
  }

  .rmc-px-xxl-7xl {
    padding-left: 4rem !important;
    padding-right: 4rem !important
  }

  .rmc-px-xxl-8xl {
    padding-left: 5rem !important;
    padding-right: 5rem !important
  }

  .rmc-px-xxl-9xl {
    padding-left: 6rem !important;
    padding-right: 6rem !important
  }

  .rmc-px-xxl-10xl {
    padding-left: 8rem !important;
    padding-right: 8rem !important
  }

  .rmc-px-xxl-11xl {
    padding-left: 10rem !important;
    padding-right: 10rem !important
  }

  .rmc-px-xxl-auto {
    padding-left: auto !important;
    padding-right: auto !important
  }

  .rmc-pt-xxl-none {
    padding-top: 0 !important
  }

  .rmc-pt-xxl-xxs {
    padding-top: .125rem !important
  }

  .rmc-pt-xxl-xs {
    padding-top: .25rem !important
  }

  .rmc-pt-xxl-sm {
    padding-top: .375rem !important
  }

  .rmc-pt-xxl-md {
    padding-top: .5rem !important
  }

  .rmc-pt-xxl-lg {
    padding-top: .75rem !important
  }

  .rmc-pt-xxl-xl {
    padding-top: 1rem !important
  }

  .rmc-pt-xxl-2xl {
    padding-top: 1.25rem !important
  }

  .rmc-pt-xxl-3xl {
    padding-top: 1.5rem !important
  }

  .rmc-pt-xxl-4xl {
    padding-top: 2rem !important
  }

  .rmc-pt-xxl-5xl {
    padding-top: 2.5rem !important
  }

  .rmc-pt-xxl-6xl {
    padding-top: 3rem !important
  }

  .rmc-pt-xxl-7xl {
    padding-top: 4rem !important
  }

  .rmc-pt-xxl-8xl {
    padding-top: 5rem !important
  }

  .rmc-pt-xxl-9xl {
    padding-top: 6rem !important
  }

  .rmc-pt-xxl-10xl {
    padding-top: 8rem !important
  }

  .rmc-pt-xxl-11xl {
    padding-top: 10rem !important
  }

  .rmc-pt-xxl-auto {
    padding-top: auto !important
  }

  .rmc-pb-xxl-none {
    padding-bottom: 0 !important
  }

  .rmc-pb-xxl-xxs {
    padding-bottom: .125rem !important
  }

  .rmc-pb-xxl-xs {
    padding-bottom: .25rem !important
  }

  .rmc-pb-xxl-sm {
    padding-bottom: .375rem !important
  }

  .rmc-pb-xxl-md {
    padding-bottom: .5rem !important
  }

  .rmc-pb-xxl-lg {
    padding-bottom: .75rem !important
  }

  .rmc-pb-xxl-xl {
    padding-bottom: 1rem !important
  }

  .rmc-pb-xxl-2xl {
    padding-bottom: 1.25rem !important
  }

  .rmc-pb-xxl-3xl {
    padding-bottom: 1.5rem !important
  }

  .rmc-pb-xxl-4xl {
    padding-bottom: 2rem !important
  }

  .rmc-pb-xxl-5xl {
    padding-bottom: 2.5rem !important
  }

  .rmc-pb-xxl-6xl {
    padding-bottom: 3rem !important
  }

  .rmc-pb-xxl-7xl {
    padding-bottom: 4rem !important
  }

  .rmc-pb-xxl-8xl {
    padding-bottom: 5rem !important
  }

  .rmc-pb-xxl-9xl {
    padding-bottom: 6rem !important
  }

  .rmc-pb-xxl-10xl {
    padding-bottom: 8rem !important
  }

  .rmc-pb-xxl-11xl {
    padding-bottom: 10rem !important
  }

  .rmc-pb-xxl-auto {
    padding-bottom: auto !important
  }

  .rmc-pl-xxl-none {
    padding-left: 0 !important
  }

  .rmc-pl-xxl-xxs {
    padding-left: .125rem !important
  }

  .rmc-pl-xxl-xs {
    padding-left: .25rem !important
  }

  .rmc-pl-xxl-sm {
    padding-left: .375rem !important
  }

  .rmc-pl-xxl-md {
    padding-left: .5rem !important
  }

  .rmc-pl-xxl-lg {
    padding-left: .75rem !important
  }

  .rmc-pl-xxl-xl {
    padding-left: 1rem !important
  }

  .rmc-pl-xxl-2xl {
    padding-left: 1.25rem !important
  }

  .rmc-pl-xxl-3xl {
    padding-left: 1.5rem !important
  }

  .rmc-pl-xxl-4xl {
    padding-left: 2rem !important
  }

  .rmc-pl-xxl-5xl {
    padding-left: 2.5rem !important
  }

  .rmc-pl-xxl-6xl {
    padding-left: 3rem !important
  }

  .rmc-pl-xxl-7xl {
    padding-left: 4rem !important
  }

  .rmc-pl-xxl-8xl {
    padding-left: 5rem !important
  }

  .rmc-pl-xxl-9xl {
    padding-left: 6rem !important
  }

  .rmc-pl-xxl-10xl {
    padding-left: 8rem !important
  }

  .rmc-pl-xxl-11xl {
    padding-left: 10rem !important
  }

  .rmc-pl-xxl-auto {
    padding-left: auto !important
  }

  .rmc-pr-xxl-none {
    padding-right: 0 !important
  }

  .rmc-pr-xxl-xxs {
    padding-right: .125rem !important
  }

  .rmc-pr-xxl-xs {
    padding-right: .25rem !important
  }

  .rmc-pr-xxl-sm {
    padding-right: .375rem !important
  }

  .rmc-pr-xxl-md {
    padding-right: .5rem !important
  }

  .rmc-pr-xxl-lg {
    padding-right: .75rem !important
  }

  .rmc-pr-xxl-xl {
    padding-right: 1rem !important
  }

  .rmc-pr-xxl-2xl {
    padding-right: 1.25rem !important
  }

  .rmc-pr-xxl-3xl {
    padding-right: 1.5rem !important
  }

  .rmc-pr-xxl-4xl {
    padding-right: 2rem !important
  }

  .rmc-pr-xxl-5xl {
    padding-right: 2.5rem !important
  }

  .rmc-pr-xxl-6xl {
    padding-right: 3rem !important
  }

  .rmc-pr-xxl-7xl {
    padding-right: 4rem !important
  }

  .rmc-pr-xxl-8xl {
    padding-right: 5rem !important
  }

  .rmc-pr-xxl-9xl {
    padding-right: 6rem !important
  }

  .rmc-pr-xxl-10xl {
    padding-right: 8rem !important
  }

  .rmc-pr-xxl-11xl {
    padding-right: 10rem !important
  }

  .rmc-pr-xxl-auto {
    padding-right: auto !important
  }

  .rmc-gap-xxl-none {
    gap: 0 !important
  }

  .rmc-gap-xxl-xxs {
    gap: .125rem !important
  }

  .rmc-gap-xxl-xs {
    gap: .25rem !important
  }

  .rmc-gap-xxl-sm {
    gap: .375rem !important
  }

  .rmc-gap-xxl-md {
    gap: .5rem !important
  }

  .rmc-gap-xxl-lg {
    gap: .75rem !important
  }

  .rmc-gap-xxl-xl {
    gap: 1rem !important
  }

  .rmc-gap-xxl-2xl {
    gap: 1.25rem !important
  }

  .rmc-gap-xxl-3xl {
    gap: 1.5rem !important
  }

  .rmc-gap-xxl-4xl {
    gap: 2rem !important
  }

  .rmc-gap-xxl-5xl {
    gap: 2.5rem !important
  }

  .rmc-gap-xxl-6xl {
    gap: 3rem !important
  }

  .rmc-gap-xxl-7xl {
    gap: 4rem !important
  }

  .rmc-gap-xxl-8xl {
    gap: 5rem !important
  }

  .rmc-gap-xxl-9xl {
    gap: 6rem !important
  }

  .rmc-gap-xxl-10xl {
    gap: 8rem !important
  }

  .rmc-gap-xxl-11xl {
    gap: 10rem !important
  }

  .rmc-gap-xxl-auto {
    gap: auto !important
  }

  .rmc-row-gap-xxl-none {
    row-gap: 0 !important
  }

  .rmc-row-gap-xxl-xxs {
    row-gap: .125rem !important
  }

  .rmc-row-gap-xxl-xs {
    row-gap: .25rem !important
  }

  .rmc-row-gap-xxl-sm {
    row-gap: .375rem !important
  }

  .rmc-row-gap-xxl-md {
    row-gap: .5rem !important
  }

  .rmc-row-gap-xxl-lg {
    row-gap: .75rem !important
  }

  .rmc-row-gap-xxl-xl {
    row-gap: 1rem !important
  }

  .rmc-row-gap-xxl-2xl {
    row-gap: 1.25rem !important
  }

  .rmc-row-gap-xxl-3xl {
    row-gap: 1.5rem !important
  }

  .rmc-row-gap-xxl-4xl {
    row-gap: 2rem !important
  }

  .rmc-row-gap-xxl-5xl {
    row-gap: 2.5rem !important
  }

  .rmc-row-gap-xxl-6xl {
    row-gap: 3rem !important
  }

  .rmc-row-gap-xxl-7xl {
    row-gap: 4rem !important
  }

  .rmc-row-gap-xxl-8xl {
    row-gap: 5rem !important
  }

  .rmc-row-gap-xxl-9xl {
    row-gap: 6rem !important
  }

  .rmc-row-gap-xxl-10xl {
    row-gap: 8rem !important
  }

  .rmc-row-gap-xxl-11xl {
    row-gap: 10rem !important
  }

  .rmc-column-gap-xxl-none {
    column-gap: 0 !important
  }

  .rmc-column-gap-xxl-xxs {
    column-gap: .125rem !important
  }

  .rmc-column-gap-xxl-xs {
    column-gap: .25rem !important
  }

  .rmc-column-gap-xxl-sm {
    column-gap: .375rem !important
  }

  .rmc-column-gap-xxl-md {
    column-gap: .5rem !important
  }

  .rmc-column-gap-xxl-lg {
    column-gap: .75rem !important
  }

  .rmc-column-gap-xxl-xl {
    column-gap: 1rem !important
  }

  .rmc-column-gap-xxl-2xl {
    column-gap: 1.25rem !important
  }

  .rmc-column-gap-xxl-3xl {
    column-gap: 1.5rem !important
  }

  .rmc-column-gap-xxl-4xl {
    column-gap: 2rem !important
  }

  .rmc-column-gap-xxl-5xl {
    column-gap: 2.5rem !important
  }

  .rmc-column-gap-xxl-6xl {
    column-gap: 3rem !important
  }

  .rmc-column-gap-xxl-7xl {
    column-gap: 4rem !important
  }

  .rmc-column-gap-xxl-8xl {
    column-gap: 5rem !important
  }

  .rmc-column-gap-xxl-9xl {
    column-gap: 6rem !important
  }

  .rmc-column-gap-xxl-10xl {
    column-gap: 8rem !important
  }

  .rmc-column-gap-xxl-11xl {
    column-gap: 10rem !important
  }

  .rmc-height-xxl-none {
    height: 0 !important
  }

  .rmc-height-xxl-xxs {
    height: .125rem !important
  }

  .rmc-height-xxl-xs {
    height: .25rem !important
  }

  .rmc-height-xxl-sm {
    height: .375rem !important
  }

  .rmc-height-xxl-md {
    height: .5rem !important
  }

  .rmc-height-xxl-lg {
    height: .75rem !important
  }

  .rmc-height-xxl-xl {
    height: 1rem !important
  }

  .rmc-height-xxl-2xl {
    height: 1.25rem !important
  }

  .rmc-height-xxl-3xl {
    height: 1.5rem !important
  }

  .rmc-height-xxl-4xl {
    height: 2rem !important
  }

  .rmc-height-xxl-5xl {
    height: 2.5rem !important
  }

  .rmc-height-xxl-6xl {
    height: 3rem !important
  }

  .rmc-height-xxl-7xl {
    height: 4rem !important
  }

  .rmc-height-xxl-8xl {
    height: 5rem !important
  }

  .rmc-height-xxl-9xl {
    height: 6rem !important
  }

  .rmc-height-xxl-10xl {
    height: 8rem !important
  }

  .rmc-height-xxl-11xl {
    height: 10rem !important
  }

  .rmc-max-height-xxl-none {
    max-height: none !important
  }

  .rmc-max-height-xxl-xxs {
    max-height: .125rem !important
  }

  .rmc-max-height-xxl-xs {
    max-height: .25rem !important
  }

  .rmc-max-height-xxl-sm {
    max-height: .375rem !important
  }

  .rmc-max-height-xxl-md {
    max-height: .5rem !important
  }

  .rmc-max-height-xxl-lg {
    max-height: .75rem !important
  }

  .rmc-max-height-xxl-xl {
    max-height: 1rem !important
  }

  .rmc-max-height-xxl-2xl {
    max-height: 1.25rem !important
  }

  .rmc-max-height-xxl-3xl {
    max-height: 1.5rem !important
  }

  .rmc-max-height-xxl-4xl {
    max-height: 2rem !important
  }

  .rmc-max-height-xxl-5xl {
    max-height: 2.5rem !important
  }

  .rmc-max-height-xxl-6xl {
    max-height: 3rem !important
  }

  .rmc-max-height-xxl-7xl {
    max-height: 4rem !important
  }

  .rmc-max-height-xxl-8xl {
    max-height: 5rem !important
  }

  .rmc-max-height-xxl-9xl {
    max-height: 6rem !important
  }

  .rmc-max-height-xxl-10xl {
    max-height: 8rem !important
  }

  .rmc-max-height-xxl-11xl {
    max-height: 10rem !important
  }

  .rmc-width-xxl-none {
    width: 0 !important
  }

  .rmc-width-xxl-xxs {
    width: .125rem !important
  }

  .rmc-width-xxl-xs {
    width: .25rem !important
  }

  .rmc-width-xxl-sm {
    width: .375rem !important
  }

  .rmc-width-xxl-md {
    width: .5rem !important
  }

  .rmc-width-xxl-lg {
    width: .75rem !important
  }

  .rmc-width-xxl-xl {
    width: 1rem !important
  }

  .rmc-width-xxl-2xl {
    width: 1.25rem !important
  }

  .rmc-width-xxl-3xl {
    width: 1.5rem !important
  }

  .rmc-width-xxl-4xl {
    width: 2rem !important
  }

  .rmc-width-xxl-5xl {
    width: 2.5rem !important
  }

  .rmc-width-xxl-6xl {
    width: 3rem !important
  }

  .rmc-width-xxl-7xl {
    width: 4rem !important
  }

  .rmc-width-xxl-8xl {
    width: 5rem !important
  }

  .rmc-width-xxl-9xl {
    width: 6rem !important
  }

  .rmc-width-xxl-10xl {
    width: 8rem !important
  }

  .rmc-width-xxl-11xl {
    width: 10rem !important
  }

  .rmc-width-xxl-40 {
    width: 40rem !important
  }

  .rmc-width-xxl-30 {
    width: 30rem !important
  }

  .rmc-width-xxl-7p5 {
    width: 7.5rem !important
  }

  .rmc-width-xxl-13 {
    width: 13rem !important
  }

  .rmc-height-xxl-40 {
    height: 40rem !important
  }

  .rmc-height-xxl-30 {
    height: 30rem !important
  }

  .rmc-height-xxl-7p5 {
    height: 7.5rem !important
  }

  .rmc-height-xxl-13 {
    height: 13rem !important
  }

  .rmc-lh-xxl-none {
    line-height: 0 !important
  }

  .rmc-lh-xxl-xxs {
    line-height: .125rem !important
  }

  .rmc-lh-xxl-xs {
    line-height: .25rem !important
  }

  .rmc-lh-xxl-sm {
    line-height: .375rem !important
  }

  .rmc-lh-xxl-md {
    line-height: .5rem !important
  }

  .rmc-lh-xxl-lg {
    line-height: .75rem !important
  }

  .rmc-lh-xxl-xl {
    line-height: 1rem !important
  }

  .rmc-lh-xxl-2xl {
    line-height: 1.25rem !important
  }

  .rmc-lh-xxl-3xl {
    line-height: 1.5rem !important
  }

  .rmc-lh-xxl-4xl {
    line-height: 2rem !important
  }

  .rmc-lh-xxl-5xl {
    line-height: 2.5rem !important
  }

  .rmc-lh-xxl-6xl {
    line-height: 3rem !important
  }

  .rmc-lh-xxl-7xl {
    line-height: 4rem !important
  }

  .rmc-lh-xxl-8xl {
    line-height: 5rem !important
  }

  .rmc-lh-xxl-9xl {
    line-height: 6rem !important
  }

  .rmc-lh-xxl-10xl {
    line-height: 8rem !important
  }

  .rmc-lh-xxl-11xl {
    line-height: 10rem !important
  }

  .rmc-radius-xxl-none {
    border-radius: 0 !important
  }

  .rmc-radius-xxl-xxs {
    border-radius: .125rem !important
  }

  .rmc-radius-xxl-xs {
    border-radius: .25rem !important
  }

  .rmc-radius-xxl-sm {
    border-radius: .375rem !important
  }

  .rmc-radius-xxl-md {
    border-radius: .5rem !important
  }

  .rmc-radius-xxl-lg {
    border-radius: .625rem !important
  }

  .rmc-radius-xxl-xl {
    border-radius: .75rem !important
  }

  .rmc-radius-xxl-2xl {
    border-radius: 1rem !important
  }

  .rmc-radius-xxl-3xl {
    border-radius: 1.25rem !important
  }

  .rmc-radius-xxl-4xl {
    border-radius: 1.5rem !important
  }

  .rmc-radius-xxl-50 {
    border-radius: 50% !important
  }

  .rmc-color-xxl-base-white {
    color: #fff !important
  }

  .rmc-color-xxl-base-transparent {
    color: transparent !important
  }

  .rmc-color-xxl-base-black {
    color: #000 !important
  }

  .rmc-color-xxl-gray-light-10 {
    color: #eaedf0 !important
  }

  .rmc-color-xxl-gray-light-25 {
    color: #fcfdfd !important
  }

  .rmc-color-xxl-gray-light-50 {
    color: #f9fafb !important
  }

  .rmc-color-xxl-gray-light-70 {
    color: #ebeef1 !important
  }

  .rmc-color-xxl-gray-light-100 {
    color: #f2f5f7 !important
  }

  .rmc-color-xxl-gray-light-200 {
    color: #eaecf0 !important
  }

  .rmc-color-xxl-gray-light-300 {
    color: #d6dadd !important
  }

  .rmc-color-xxl-gray-light-400 {
    color: #c6c9cc !important
  }

  .rmc-color-xxl-gray-light-500 {
    color: #97999b !important
  }

  .rmc-color-xxl-gray-light-600 {
    color: #596067 !important
  }

  .rmc-color-xxl-gray-light-650 {
    color: #515d6d !important
  }

  .rmc-color-xxl-gray-light-700 {
    color: #394754 !important
  }

  .rmc-color-xxl-gray-light-750 {
    color: #475467 !important
  }

  .rmc-color-xxl-gray-light-800 {
    color: #182430 !important
  }

  .rmc-color-xxl-gray-light-900 {
    color: #101c28 !important
  }

  .rmc-color-xxl-gray-light-950 {
    color: #0c151d !important
  }

  .rmc-color-xxl-gray-dark-50 {
    color: #f5f5f6 !important
  }

  .rmc-color-xxl-gray-dark-60 {
    color: #f5fbff !important
  }

  .rmc-color-xxl-gray-dark-100 {
    color: #f0f0f1 !important
  }

  .rmc-color-xxl-gray-dark-200 {
    color: #ececed !important
  }

  .rmc-color-xxl-gray-dark-300 {
    color: #ced0d2 !important
  }

  .rmc-color-xxl-gray-dark-400 {
    color: #94979c !important
  }

  .rmc-color-xxl-gray-dark-450 {
    color: #636d80 !important
  }

  .rmc-color-xxl-gray-dark-500 {
    color: #63666a !important
  }

  .rmc-color-xxl-gray-dark-600 {
    color: #575b61 !important
  }

  .rmc-color-xxl-gray-dark-650 {
    color: #4a4a4a !important
  }

  .rmc-color-xxl-gray-dark-700 {
    color: #333941 !important
  }

  .rmc-color-xxl-gray-dark-750 {
    color: #202834 !important
  }

  .rmc-color-xxl-gray-dark-800 {
    color: #1f262f !important
  }

  .rmc-color-xxl-gray-dark-900 {
    color: #161d26 !important
  }

  .rmc-color-xxl-gray-dark-950 {
    color: #101828 !important
  }

  .rmc-color-xxl-brand-500 {
    color: #e4002b !important
  }

  .rmc-color-xxl-error-500 {
    color: #f04438 !important
  }

  .rmc-color-xxl-warning-500 {
    color: #ef6820 !important
  }

  .rmc-color-xxl-success-500 {
    color: #789d4a !important
  }

  .rmc-color-xxl-green-light-500 {
    color: #a9c47f !important
  }

  .rmc-color-xxl-green-dark-100 {
    color: #358486 !important
  }

  .rmc-color-xxl-green-dark-200 {
    color: #215253 !important
  }

  .rmc-color-xxl-teal-light-500 {
    color: #6bbbae !important
  }

  .rmc-color-xxl-teal-500 {
    color: #4f868e !important
  }

  .rmc-color-xxl-blue-light-500 {
    color: #7a99ac !important
  }

  .rmc-color-xxl-blue-500 {
    color: #1b365d !important
  }

  .rmc-color-xxl-beige-light-500 {
    color: #dfd1a7 !important
  }

  .rmc-color-xxl-beige-500 {
    color: #a09074 !important
  }

  .rmc-color-xxl-yellow-400 {
    color: #f1be48 !important
  }

  .rmc-color-xxl-yellow-500 {
    color: #eaaa08 !important
  }

  .rmc-color-xxl-neutral-95 {
    color: #e8e8f5 !important
  }

  .rmc-color-xxl-neutral-90 {
    color: #eaedf0 !important
  }

  .rmc-color-xxl-text-primary {
    color: #101c28 !important
  }

  .rmc-color-xxl-text-secondary {
    color: #596067 !important
  }

  .rmc-color-xxl-text-tertiary {
    color: #575b61 !important
  }

  .rmc-color-xxl-text-whtie {
    color: #fff !important
  }

  .rmc-color-xxl-text-disabled,
  .rmc-color-xxl-text-placeholder {
    color: #63666a !important
  }

  .rmc-color-xxl-text-brand {
    color: #e4002b !important
  }

  .rmc-color-xxl-text-error {
    color: #f04438 !important
  }

  .rmc-color-xxl-text-warning {
    color: #ef6820 !important
  }

  .rmc-color-xxl-text-success {
    color: #789d4a !important
  }

  .rmc-bg-color-xxl-base-white {
    background-color: #fff !important
  }

  .rmc-bg-color-xxl-base-transparent {
    background-color: transparent !important
  }

  .rmc-bg-color-xxl-base-black {
    background-color: #000 !important
  }

  .rmc-bg-color-xxl-gray-light-10 {
    background-color: #eaedf0 !important
  }

  .rmc-bg-color-xxl-gray-light-25 {
    background-color: #fcfdfd !important
  }

  .rmc-bg-color-xxl-gray-light-50 {
    background-color: #f9fafb !important
  }

  .rmc-bg-color-xxl-gray-light-70 {
    background-color: #ebeef1 !important
  }

  .rmc-bg-color-xxl-gray-light-100 {
    background-color: #f2f5f7 !important
  }

  .rmc-bg-color-xxl-gray-light-200 {
    background-color: #eaecf0 !important
  }

  .rmc-bg-color-xxl-gray-light-300 {
    background-color: #d6dadd !important
  }

  .rmc-bg-color-xxl-gray-light-400 {
    background-color: #c6c9cc !important
  }

  .rmc-bg-color-xxl-gray-light-500 {
    background-color: #97999b !important
  }

  .rmc-bg-color-xxl-gray-light-600 {
    background-color: #596067 !important
  }

  .rmc-bg-color-xxl-gray-light-650 {
    background-color: #515d6d !important
  }

  .rmc-bg-color-xxl-gray-light-700 {
    background-color: #394754 !important
  }

  .rmc-bg-color-xxl-gray-light-750 {
    background-color: #475467 !important
  }

  .rmc-bg-color-xxl-gray-light-800 {
    background-color: #182430 !important
  }

  .rmc-bg-color-xxl-gray-light-900 {
    background-color: #101c28 !important
  }

  .rmc-bg-color-xxl-gray-light-950 {
    background-color: #0c151d !important
  }

  .rmc-bg-color-xxl-gray-dark-50 {
    background-color: #f5f5f6 !important
  }

  .rmc-bg-color-xxl-gray-dark-60 {
    background-color: #f5fbff !important
  }

  .rmc-bg-color-xxl-gray-dark-100 {
    background-color: #f0f0f1 !important
  }

  .rmc-bg-color-xxl-gray-dark-200 {
    background-color: #ececed !important
  }

  .rmc-bg-color-xxl-gray-dark-300 {
    background-color: #ced0d2 !important
  }

  .rmc-bg-color-xxl-gray-dark-400 {
    background-color: #94979c !important
  }

  .rmc-bg-color-xxl-gray-dark-450 {
    background-color: #636d80 !important
  }

  .rmc-bg-color-xxl-gray-dark-500 {
    background-color: #63666a !important
  }

  .rmc-bg-color-xxl-gray-dark-600 {
    background-color: #575b61 !important
  }

  .rmc-bg-color-xxl-gray-dark-650 {
    background-color: #4a4a4a !important
  }

  .rmc-bg-color-xxl-gray-dark-700 {
    background-color: #333941 !important
  }

  .rmc-bg-color-xxl-gray-dark-750 {
    background-color: #202834 !important
  }

  .rmc-bg-color-xxl-gray-dark-800 {
    background-color: #1f262f !important
  }

  .rmc-bg-color-xxl-gray-dark-900 {
    background-color: #161d26 !important
  }

  .rmc-bg-color-xxl-gray-dark-950 {
    background-color: #101828 !important
  }

  .rmc-bg-color-xxl-brand-500 {
    background-color: #e4002b !important
  }

  .rmc-bg-color-xxl-error-500 {
    background-color: #f04438 !important
  }

  .rmc-bg-color-xxl-warning-500 {
    background-color: #ef6820 !important
  }

  .rmc-bg-color-xxl-success-500 {
    background-color: #789d4a !important
  }

  .rmc-bg-color-xxl-green-light-500 {
    background-color: #a9c47f !important
  }

  .rmc-bg-color-xxl-green-dark-100 {
    background-color: #358486 !important
  }

  .rmc-bg-color-xxl-green-dark-200 {
    background-color: #215253 !important
  }

  .rmc-bg-color-xxl-teal-light-500 {
    background-color: #6bbbae !important
  }

  .rmc-bg-color-xxl-teal-500 {
    background-color: #4f868e !important
  }

  .rmc-bg-color-xxl-blue-light-500 {
    background-color: #7a99ac !important
  }

  .rmc-bg-color-xxl-blue-500 {
    background-color: #1b365d !important
  }

  .rmc-bg-color-xxl-beige-light-500 {
    background-color: #dfd1a7 !important
  }

  .rmc-bg-color-xxl-beige-500 {
    background-color: #a09074 !important
  }

  .rmc-bg-color-xxl-yellow-400 {
    background-color: #f1be48 !important
  }

  .rmc-bg-color-xxl-yellow-500 {
    background-color: #eaaa08 !important
  }

  .rmc-bg-color-xxl-neutral-95 {
    background-color: #e8e8f5 !important
  }

  .rmc-bg-color-xxl-neutral-90 {
    background-color: #eaedf0 !important
  }

  .rmc-bg-color-xxl-text-primary {
    background-color: #101c28 !important
  }

  .rmc-bg-color-xxl-text-secondary {
    background-color: #596067 !important
  }

  .rmc-bg-color-xxl-text-tertiary {
    background-color: #575b61 !important
  }

  .rmc-bg-color-xxl-text-whtie {
    background-color: #fff !important
  }

  .rmc-bg-color-xxl-text-disabled,
  .rmc-bg-color-xxl-text-placeholder {
    background-color: #63666a !important
  }

  .rmc-bg-color-xxl-text-brand {
    background-color: #e4002b !important
  }

  .rmc-bg-color-xxl-text-error {
    background-color: #f04438 !important
  }

  .rmc-bg-color-xxl-text-warning {
    background-color: #ef6820 !important
  }

  .rmc-bg-color-xxl-text-success {
    background-color: #789d4a !important
  }

  .rmc-border-xxl-base-white {
    border: 1px solid #ffffff !important
  }

  .rmc-border-xxl-base-transparent {
    border: 1px solid transparent !important
  }

  .rmc-border-xxl-base-black {
    border: 1px solid #000000 !important
  }

  .rmc-border-xxl-gray-light-10 {
    border: 1px solid #eaedf0 !important
  }

  .rmc-border-xxl-gray-light-25 {
    border: 1px solid #fcfdfd !important
  }

  .rmc-border-xxl-gray-light-50 {
    border: 1px solid #f9fafb !important
  }

  .rmc-border-xxl-gray-light-70 {
    border: 1px solid #ebeef1 !important
  }

  .rmc-border-xxl-gray-light-100 {
    border: 1px solid #f2f5f7 !important
  }

  .rmc-border-xxl-gray-light-200 {
    border: 1px solid #eaecf0 !important
  }

  .rmc-border-xxl-gray-light-300 {
    border: 1px solid #d6dadd !important
  }

  .rmc-border-xxl-gray-light-400 {
    border: 1px solid #c6c9cc !important
  }

  .rmc-border-xxl-gray-light-500 {
    border: 1px solid #97999b !important
  }

  .rmc-border-xxl-gray-light-600 {
    border: 1px solid #596067 !important
  }

  .rmc-border-xxl-gray-light-650 {
    border: 1px solid #515d6d !important
  }

  .rmc-border-xxl-gray-light-700 {
    border: 1px solid #394754 !important
  }

  .rmc-border-xxl-gray-light-750 {
    border: 1px solid #475467 !important
  }

  .rmc-border-xxl-gray-light-800 {
    border: 1px solid #182430 !important
  }

  .rmc-border-xxl-gray-light-900 {
    border: 1px solid #101c28 !important
  }

  .rmc-border-xxl-gray-light-950 {
    border: 1px solid #0c151d !important
  }

  .rmc-border-xxl-gray-dark-50 {
    border: 1px solid #f5f5f6 !important
  }

  .rmc-border-xxl-gray-dark-60 {
    border: 1px solid #f5fbff !important
  }

  .rmc-border-xxl-gray-dark-100 {
    border: 1px solid #f0f0f1 !important
  }

  .rmc-border-xxl-gray-dark-200 {
    border: 1px solid #ececed !important
  }

  .rmc-border-xxl-gray-dark-300 {
    border: 1px solid #ced0d2 !important
  }

  .rmc-border-xxl-gray-dark-400 {
    border: 1px solid #94979c !important
  }

  .rmc-border-xxl-gray-dark-450 {
    border: 1px solid #636d80 !important
  }

  .rmc-border-xxl-gray-dark-500 {
    border: 1px solid #63666a !important
  }

  .rmc-border-xxl-gray-dark-600 {
    border: 1px solid #575b61 !important
  }

  .rmc-border-xxl-gray-dark-650 {
    border: 1px solid #4a4a4a !important
  }

  .rmc-border-xxl-gray-dark-700 {
    border: 1px solid #333941 !important
  }

  .rmc-border-xxl-gray-dark-750 {
    border: 1px solid #202834 !important
  }

  .rmc-border-xxl-gray-dark-800 {
    border: 1px solid #1f262f !important
  }

  .rmc-border-xxl-gray-dark-900 {
    border: 1px solid #161d26 !important
  }

  .rmc-border-xxl-gray-dark-950 {
    border: 1px solid #101828 !important
  }

  .rmc-border-xxl-brand-500 {
    border: 1px solid #e4002b !important
  }

  .rmc-border-xxl-error-500 {
    border: 1px solid #f04438 !important
  }

  .rmc-border-xxl-warning-500 {
    border: 1px solid #ef6820 !important
  }

  .rmc-border-xxl-success-500 {
    border: 1px solid #789d4a !important
  }

  .rmc-border-xxl-green-light-500 {
    border: 1px solid #a9c47f !important
  }

  .rmc-border-xxl-green-dark-100 {
    border: 1px solid #358486 !important
  }

  .rmc-border-xxl-green-dark-200 {
    border: 1px solid #215253 !important
  }

  .rmc-border-xxl-teal-light-500 {
    border: 1px solid #6bbbae !important
  }

  .rmc-border-xxl-teal-500 {
    border: 1px solid #4f868e !important
  }

  .rmc-border-xxl-blue-light-500 {
    border: 1px solid #7a99ac !important
  }

  .rmc-border-xxl-blue-500 {
    border: 1px solid #1b365d !important
  }

  .rmc-border-xxl-beige-light-500 {
    border: 1px solid #dfd1a7 !important
  }

  .rmc-border-xxl-beige-500 {
    border: 1px solid #a09074 !important
  }

  .rmc-border-xxl-yellow-400 {
    border: 1px solid #f1be48 !important
  }

  .rmc-border-xxl-yellow-500 {
    border: 1px solid #eaaa08 !important
  }

  .rmc-border-xxl-neutral-95 {
    border: 1px solid #e8e8f5 !important
  }

  .rmc-border-xxl-neutral-90 {
    border: 1px solid #eaedf0 !important
  }

  .rmc-border-xxl-text-primary {
    border: 1px solid #101c28 !important
  }

  .rmc-border-xxl-text-secondary {
    border: 1px solid #596067 !important
  }

  .rmc-border-xxl-text-tertiary {
    border: 1px solid #575b61 !important
  }

  .rmc-border-xxl-text-whtie {
    border: 1px solid #ffffff !important
  }

  .rmc-border-xxl-text-disabled,
  .rmc-border-xxl-text-placeholder {
    border: 1px solid #63666a !important
  }

  .rmc-border-xxl-text-brand {
    border: 1px solid #e4002b !important
  }

  .rmc-border-xxl-text-error {
    border: 1px solid #f04438 !important
  }

  .rmc-border-xxl-text-warning {
    border: 1px solid #ef6820 !important
  }

  .rmc-border-xxl-text-success {
    border: 1px solid #789d4a !important
  }

  .rmc-border-xxl-gray-dotted-4 {
    border: 4px dotted #94979c !important
  }

  .rmc-vertical-align-xxl-top {
    vertical-align: top !important
  }

  .rmc-vertical-align-xxl-bottom {
    vertical-align: bottom !important
  }

  .rmc-vertical-align-xxl-middle {
    vertical-align: middle !important
  }

  .rmc-vertical-align-xxl-baseline {
    vertical-align: baseline !important
  }

  .rmc-vertical-align-xxl-sub {
    vertical-align: sub !important
  }

  .rmc-vertical-align-xxl-text-top {
    vertical-align: text-top !important
  }

  .rmc-opacity-xxl-0 {
    opacity: 0 !important
  }

  .rmc-opacity-xxl-100 {
    opacity: 100 !important
  }

  .rmc-column-count-xxl-1 {
    column-count: 1 !important
  }

  .rmc-column-count-xxl-2 {
    column-count: 2 !important
  }

  .rmc-column-count-xxl-3 {
    column-count: 3 !important
  }

  .rmc-column-count-xxl-4 {
    column-count: 4 !important
  }

  .rmc-column-count-xxl-5 {
    column-count: 5 !important
  }

  .rmc-column-count-xxl-6 {
    column-count: 6 !important
  }

  .rmc-column-count-xxl-7 {
    column-count: 7 !important
  }

  .rmc-column-count-xxl-8 {
    column-count: 8 !important
  }

  .rmc-column-count-xxl-9 {
    column-count: 9 !important
  }

  .rmc-column-count-xxl-10 {
    column-count: 10 !important
  }

  .rmc-column-count-xxl-11 {
    column-count: 11 !important
  }

  .rmc-column-count-xxl-12 {
    column-count: 12 !important
  }

  .rmc-break-inside-xxl-avoid {
    break-inside: avoid !important
  }

  .rmc-break-inside-xxl-avoid-column {
    break-inside: avoid-column !important
  }

  .rmc-break-inside-xxl-avoid-page {
    break-inside: avoid-page !important
  }

  .rmc-break-inside-xxl-avoid-region {
    break-inside: avoid-region !important
  }

  .rmc-break-inside-xxl-auto {
    break-inside: auto !important
  }

  .rmc-aspect-ratio-xxl-16-9 {
    aspect-ratio: 1.7777777778 !important
  }

  .rmc-aspect-ratio-xxl-1-1 {
    aspect-ratio: 1 !important
  }
}

@media (min-width: 1200px) {
  .fs-1 {
    font-size: 2.5rem !important
  }

  .fs-2 {
    font-size: 2rem !important
  }

  .fs-3 {
    font-size: 1.75rem !important
  }

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

.btn {
  --rmc-btn-padding-x: .75rem;
  --rmc-btn-padding-y: .375rem;
  --rmc-btn-font-family: ;
  --rmc-btn-font-size: 1rem;
  --rmc-btn-font-weight: 400;
  --rmc-btn-line-height: 1.5;
  --rmc-btn-color: var(--rmc-body-color);
  --rmc-btn-bg: transparent;
  --rmc-btn-border-width: var(--rmc-border-width);
  --rmc-btn-border-color: transparent;
  --rmc-btn-border-radius: var(--rmc-border-radius);
  --rmc-btn-hover-border-color: transparent;
  --rmc-btn-box-shadow: 0px 4px 6px -2px rgba(16, 24, 40, .031372549), 0px 12px 16px -4px rgba(16, 24, 40, .0784313725);
  --rmc-btn-disabled-opacity: .65;
  --rmc-btn-focus-box-shadow: 0 0 0 .25rem rgba(var(--rmc-btn-focus-shadow-rgb), .5);
  display: inline-block;
  padding: var(--rmc-btn-padding-y) var(--rmc-btn-padding-x);
  font-family: var(--rmc-btn-font-family);
  font-size: var(--rmc-btn-font-size);
  font-weight: var(--rmc-btn-font-weight);
  line-height: var(--rmc-btn-line-height);
  color: var(--rmc-btn-color);
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
  border: var(--rmc-btn-border-width) solid var(--rmc-btn-border-color);
  border-radius: var(--rmc-btn-border-radius);
  background-color: var(--rmc-btn-bg);
  transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out
}

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

.btn:hover {
  color: var(--rmc-btn-hover-color);
  background-color: var(--rmc-btn-hover-bg);
  border-color: var(--rmc-btn-hover-border-color)
}

.btn-check+.btn:hover {
  color: var(--rmc-btn-color);
  background-color: var(--rmc-btn-bg);
  border-color: var(--rmc-btn-border-color)
}

.btn:focus-visible {
  color: var(--rmc-btn-hover-color);
  background-color: var(--rmc-btn-hover-bg);
  border-color: var(--rmc-btn-hover-border-color);
  outline: 0;
  box-shadow: var(--rmc-btn-focus-box-shadow)
}

.btn-check:focus-visible+.btn {
  border-color: var(--rmc-btn-hover-border-color);
  outline: 0;
  box-shadow: var(--rmc-btn-focus-box-shadow)
}

.btn-check:checked+.btn,
:not(.btn-check)+.btn:active,
.btn:first-child:active,
.btn.active,
.btn.show {
  color: var(--rmc-btn-active-color);
  background-color: var(--rmc-btn-active-bg);
  border-color: var(--rmc-btn-active-border-color)
}

.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(--rmc-btn-focus-box-shadow)
}

.btn-check:checked:focus-visible+.btn {
  box-shadow: var(--rmc-btn-focus-box-shadow)
}

.btn:disabled,
.btn.disabled,
fieldset:disabled .btn {
  color: var(--rmc-btn-disabled-color);
  pointer-events: none;
  background-color: var(--rmc-btn-disabled-bg);
  border-color: var(--rmc-btn-disabled-border-color);
  opacity: var(--rmc-btn-disabled-opacity)
}

.btn-primary {
  --rmc-btn-color: #fff;
  --rmc-btn-bg: #1b365d;
  --rmc-btn-border-color: #1b365d;
  --rmc-btn-hover-color: #fff;
  --rmc-btn-hover-bg: rgb(22.95, 45.9, 79.05);
  --rmc-btn-hover-border-color: rgb(21.6, 43.2, 74.4);
  --rmc-btn-focus-shadow-rgb: 61, 84, 117;
  --rmc-btn-active-color: #fff;
  --rmc-btn-active-bg: rgb(21.6, 43.2, 74.4);
  --rmc-btn-active-border-color: rgb(20.25, 40.5, 69.75);
  --rmc-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
  --rmc-btn-disabled-color: #fff;
  --rmc-btn-disabled-bg: #1b365d;
  --rmc-btn-disabled-border-color: #1b365d
}

.btn-secondary {
  --rmc-btn-color: #fff;
  --rmc-btn-bg: #6c757d;
  --rmc-btn-border-color: #6c757d;
  --rmc-btn-hover-color: #fff;
  --rmc-btn-hover-bg: rgb(91.8, 99.45, 106.25);
  --rmc-btn-hover-border-color: rgb(86.4, 93.6, 100);
  --rmc-btn-focus-shadow-rgb: 130, 138, 145;
  --rmc-btn-active-color: #fff;
  --rmc-btn-active-bg: rgb(86.4, 93.6, 100);
  --rmc-btn-active-border-color: rgb(81, 87.75, 93.75);
  --rmc-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
  --rmc-btn-disabled-color: #fff;
  --rmc-btn-disabled-bg: #6c757d;
  --rmc-btn-disabled-border-color: #6c757d
}

.btn-success {
  --rmc-btn-color: #fff;
  --rmc-btn-bg: #198754;
  --rmc-btn-border-color: #198754;
  --rmc-btn-hover-color: #fff;
  --rmc-btn-hover-bg: rgb(21.25, 114.75, 71.4);
  --rmc-btn-hover-border-color: rgb(20, 108, 67.2);
  --rmc-btn-focus-shadow-rgb: 60, 153, 110;
  --rmc-btn-active-color: #fff;
  --rmc-btn-active-bg: rgb(20, 108, 67.2);
  --rmc-btn-active-border-color: rgb(18.75, 101.25, 63);
  --rmc-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
  --rmc-btn-disabled-color: #fff;
  --rmc-btn-disabled-bg: #198754;
  --rmc-btn-disabled-border-color: #198754
}

.btn-info {
  --rmc-btn-color: #000;
  --rmc-btn-bg: #0dcaf0;
  --rmc-btn-border-color: #0dcaf0;
  --rmc-btn-hover-color: #000;
  --rmc-btn-hover-bg: rgb(49.3, 209.95, 242.25);
  --rmc-btn-hover-border-color: rgb(37.2, 207.3, 241.5);
  --rmc-btn-focus-shadow-rgb: 11, 172, 204;
  --rmc-btn-active-color: #000;
  --rmc-btn-active-bg: rgb(61.4, 212.6, 243);
  --rmc-btn-active-border-color: rgb(37.2, 207.3, 241.5);
  --rmc-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
  --rmc-btn-disabled-color: #000;
  --rmc-btn-disabled-bg: #0dcaf0;
  --rmc-btn-disabled-border-color: #0dcaf0
}

.btn-warning {
  --rmc-btn-color: #000;
  --rmc-btn-bg: #ffc107;
  --rmc-btn-border-color: #ffc107;
  --rmc-btn-hover-color: #000;
  --rmc-btn-hover-bg: rgb(255, 202.3, 44.2);
  --rmc-btn-hover-border-color: rgb(255, 199.2, 31.8);
  --rmc-btn-focus-shadow-rgb: 217, 164, 6;
  --rmc-btn-active-color: #000;
  --rmc-btn-active-bg: rgb(255, 205.4, 56.6);
  --rmc-btn-active-border-color: rgb(255, 199.2, 31.8);
  --rmc-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
  --rmc-btn-disabled-color: #000;
  --rmc-btn-disabled-bg: #ffc107;
  --rmc-btn-disabled-border-color: #ffc107
}

.btn-danger {
  --rmc-btn-color: #fff;
  --rmc-btn-bg: #dc3545;
  --rmc-btn-border-color: #dc3545;
  --rmc-btn-hover-color: #fff;
  --rmc-btn-hover-bg: rgb(187, 45.05, 58.65);
  --rmc-btn-hover-border-color: rgb(176, 42.4, 55.2);
  --rmc-btn-focus-shadow-rgb: 225, 83, 97;
  --rmc-btn-active-color: #fff;
  --rmc-btn-active-bg: rgb(176, 42.4, 55.2);
  --rmc-btn-active-border-color: rgb(165, 39.75, 51.75);
  --rmc-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
  --rmc-btn-disabled-color: #fff;
  --rmc-btn-disabled-bg: #dc3545;
  --rmc-btn-disabled-border-color: #dc3545
}

.btn-light {
  --rmc-btn-color: #000;
  --rmc-btn-bg: #f8f9fa;
  --rmc-btn-border-color: #f8f9fa;
  --rmc-btn-hover-color: #000;
  --rmc-btn-hover-bg: rgb(210.8, 211.65, 212.5);
  --rmc-btn-hover-border-color: rgb(198.4, 199.2, 200);
  --rmc-btn-focus-shadow-rgb: 211, 212, 213;
  --rmc-btn-active-color: #000;
  --rmc-btn-active-bg: rgb(198.4, 199.2, 200);
  --rmc-btn-active-border-color: rgb(186, 186.75, 187.5);
  --rmc-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
  --rmc-btn-disabled-color: #000;
  --rmc-btn-disabled-bg: #f8f9fa;
  --rmc-btn-disabled-border-color: #f8f9fa
}

.btn-dark {
  --rmc-btn-color: #fff;
  --rmc-btn-bg: #212529;
  --rmc-btn-border-color: #212529;
  --rmc-btn-hover-color: #fff;
  --rmc-btn-hover-bg: rgb(66.3, 69.7, 73.1);
  --rmc-btn-hover-border-color: rgb(55.2, 58.8, 62.4);
  --rmc-btn-focus-shadow-rgb: 66, 70, 73;
  --rmc-btn-active-color: #fff;
  --rmc-btn-active-bg: rgb(77.4, 80.6, 83.8);
  --rmc-btn-active-border-color: rgb(55.2, 58.8, 62.4);
  --rmc-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
  --rmc-btn-disabled-color: #fff;
  --rmc-btn-disabled-bg: #212529;
  --rmc-btn-disabled-border-color: #212529
}

.btn-outline-primary {
  --rmc-btn-color: #1b365d;
  --rmc-btn-border-color: #1b365d;
  --rmc-btn-hover-color: #fff;
  --rmc-btn-hover-bg: #1b365d;
  --rmc-btn-hover-border-color: #1b365d;
  --rmc-btn-focus-shadow-rgb: 27, 54, 93;
  --rmc-btn-active-color: #fff;
  --rmc-btn-active-bg: #1b365d;
  --rmc-btn-active-border-color: #1b365d;
  --rmc-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
  --rmc-btn-disabled-color: #1b365d;
  --rmc-btn-disabled-bg: transparent;
  --rmc-btn-disabled-border-color: #1b365d;
  --rmc-gradient: none
}

.btn-outline-secondary {
  --rmc-btn-color: #6c757d;
  --rmc-btn-border-color: #6c757d;
  --rmc-btn-hover-color: #fff;
  --rmc-btn-hover-bg: #6c757d;
  --rmc-btn-hover-border-color: #6c757d;
  --rmc-btn-focus-shadow-rgb: 108, 117, 125;
  --rmc-btn-active-color: #fff;
  --rmc-btn-active-bg: #6c757d;
  --rmc-btn-active-border-color: #6c757d;
  --rmc-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
  --rmc-btn-disabled-color: #6c757d;
  --rmc-btn-disabled-bg: transparent;
  --rmc-btn-disabled-border-color: #6c757d;
  --rmc-gradient: none
}

.btn-outline-success {
  --rmc-btn-color: #198754;
  --rmc-btn-border-color: #198754;
  --rmc-btn-hover-color: #fff;
  --rmc-btn-hover-bg: #198754;
  --rmc-btn-hover-border-color: #198754;
  --rmc-btn-focus-shadow-rgb: 25, 135, 84;
  --rmc-btn-active-color: #fff;
  --rmc-btn-active-bg: #198754;
  --rmc-btn-active-border-color: #198754;
  --rmc-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
  --rmc-btn-disabled-color: #198754;
  --rmc-btn-disabled-bg: transparent;
  --rmc-btn-disabled-border-color: #198754;
  --rmc-gradient: none
}

.btn-outline-info {
  --rmc-btn-color: #0dcaf0;
  --rmc-btn-border-color: #0dcaf0;
  --rmc-btn-hover-color: #000;
  --rmc-btn-hover-bg: #0dcaf0;
  --rmc-btn-hover-border-color: #0dcaf0;
  --rmc-btn-focus-shadow-rgb: 13, 202, 240;
  --rmc-btn-active-color: #000;
  --rmc-btn-active-bg: #0dcaf0;
  --rmc-btn-active-border-color: #0dcaf0;
  --rmc-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
  --rmc-btn-disabled-color: #0dcaf0;
  --rmc-btn-disabled-bg: transparent;
  --rmc-btn-disabled-border-color: #0dcaf0;
  --rmc-gradient: none
}

.btn-outline-warning {
  --rmc-btn-color: #ffc107;
  --rmc-btn-border-color: #ffc107;
  --rmc-btn-hover-color: #000;
  --rmc-btn-hover-bg: #ffc107;
  --rmc-btn-hover-border-color: #ffc107;
  --rmc-btn-focus-shadow-rgb: 255, 193, 7;
  --rmc-btn-active-color: #000;
  --rmc-btn-active-bg: #ffc107;
  --rmc-btn-active-border-color: #ffc107;
  --rmc-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
  --rmc-btn-disabled-color: #ffc107;
  --rmc-btn-disabled-bg: transparent;
  --rmc-btn-disabled-border-color: #ffc107;
  --rmc-gradient: none
}

.btn-outline-danger {
  --rmc-btn-color: #dc3545;
  --rmc-btn-border-color: #dc3545;
  --rmc-btn-hover-color: #fff;
  --rmc-btn-hover-bg: #dc3545;
  --rmc-btn-hover-border-color: #dc3545;
  --rmc-btn-focus-shadow-rgb: 220, 53, 69;
  --rmc-btn-active-color: #fff;
  --rmc-btn-active-bg: #dc3545;
  --rmc-btn-active-border-color: #dc3545;
  --rmc-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
  --rmc-btn-disabled-color: #dc3545;
  --rmc-btn-disabled-bg: transparent;
  --rmc-btn-disabled-border-color: #dc3545;
  --rmc-gradient: none
}

.btn-outline-light {
  --rmc-btn-color: #f8f9fa;
  --rmc-btn-border-color: #f8f9fa;
  --rmc-btn-hover-color: #000;
  --rmc-btn-hover-bg: #f8f9fa;
  --rmc-btn-hover-border-color: #f8f9fa;
  --rmc-btn-focus-shadow-rgb: 248, 249, 250;
  --rmc-btn-active-color: #000;
  --rmc-btn-active-bg: #f8f9fa;
  --rmc-btn-active-border-color: #f8f9fa;
  --rmc-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
  --rmc-btn-disabled-color: #f8f9fa;
  --rmc-btn-disabled-bg: transparent;
  --rmc-btn-disabled-border-color: #f8f9fa;
  --rmc-gradient: none
}

.btn-outline-dark {
  --rmc-btn-color: #212529;
  --rmc-btn-border-color: #212529;
  --rmc-btn-hover-color: #fff;
  --rmc-btn-hover-bg: #212529;
  --rmc-btn-hover-border-color: #212529;
  --rmc-btn-focus-shadow-rgb: 33, 37, 41;
  --rmc-btn-active-color: #fff;
  --rmc-btn-active-bg: #212529;
  --rmc-btn-active-border-color: #212529;
  --rmc-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
  --rmc-btn-disabled-color: #212529;
  --rmc-btn-disabled-bg: transparent;
  --rmc-btn-disabled-border-color: #212529;
  --rmc-gradient: none
}

.btn-link {
  --rmc-btn-font-weight: 400;
  --rmc-btn-color: var(--rmc-link-color);
  --rmc-btn-bg: transparent;
  --rmc-btn-border-color: transparent;
  --rmc-btn-hover-color: var(--rmc-link-hover-color);
  --rmc-btn-hover-border-color: transparent;
  --rmc-btn-active-color: var(--rmc-link-hover-color);
  --rmc-btn-active-border-color: transparent;
  --rmc-btn-disabled-color: #6c757d;
  --rmc-btn-disabled-border-color: transparent;
  --rmc-btn-box-shadow: 0 0 0 #000;
  --rmc-btn-focus-shadow-rgb: 49, 132, 253;
  text-decoration: underline
}

.btn-link:focus-visible {
  color: var(--rmc-btn-color)
}

.btn-link:hover {
  color: var(--rmc-btn-hover-color)
}

.btn-lg {
  --rmc-btn-padding-y: .5rem;
  --rmc-btn-padding-x: 1rem;
  --rmc-btn-font-size: 1.25rem;
  --rmc-btn-border-radius: var(--rmc-border-radius-lg)
}

.btn-sm {
  --rmc-btn-padding-y: .25rem;
  --rmc-btn-padding-x: .5rem;
  --rmc-btn-font-size: .875rem;
  --rmc-btn-border-radius: var(--rmc-border-radius-sm)
}

.accordion {
  --rmc-accordion-color: var(--rmc-body-color);
  --rmc-accordion-bg: var(--rmc-body-bg);
  --rmc-accordion-transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out, border-radius .15s ease;
  --rmc-accordion-border-color: var(--rmc-border-color);
  --rmc-accordion-border-width: var(--rmc-border-width);
  --rmc-accordion-border-radius: var(--rmc-border-radius);
  --rmc-accordion-inner-border-radius: calc(var(--rmc-border-radius) - (var(--rmc-border-width)));
  --rmc-accordion-btn-padding-x: 1.25rem;
  --rmc-accordion-btn-padding-y: 1rem;
  --rmc-accordion-btn-color: var(--rmc-body-color);
  --rmc-accordion-btn-bg: var(--rmc-accordion-bg);
  --rmc-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23212529' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M2 5L8 11L14 5'/%3e%3c/svg%3e");
  --rmc-accordion-btn-icon-width: 1.25rem;
  --rmc-accordion-btn-icon-transform: rotate(-180deg);
  --rmc-accordion-btn-icon-transition: transform .2s ease-in-out;
  --rmc-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='rgb%285.2, 44, 101.2%29' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M2 5L8 11L14 5'/%3e%3c/svg%3e");
  --rmc-accordion-btn-focus-box-shadow: 0 0 0 .25rem rgba(13, 110, 253, .25);
  --rmc-accordion-body-padding-x: 1.25rem;
  --rmc-accordion-body-padding-y: 1rem;
  --rmc-accordion-active-color: var(--rmc-primary-text-emphasis);
  --rmc-accordion-active-bg: var(--rmc-primary-bg-subtle)
}

.accordion-button {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding: var(--rmc-accordion-btn-padding-y) var(--rmc-accordion-btn-padding-x);
  font-size: 1rem;
  color: var(--rmc-accordion-btn-color);
  text-align: left;
  background-color: var(--rmc-accordion-btn-bg);
  border: 0;
  border-radius: 0;
  overflow-anchor: none;
  transition: var(--rmc-accordion-transition)
}

@media (prefers-reduced-motion: reduce) {
  .accordion-button {
    transition: none
  }
}

.accordion-button:not(.collapsed) {
  color: var(--rmc-accordion-active-color);
  background-color: var(--rmc-accordion-active-bg);
  box-shadow: inset 0 calc(-1 * var(--rmc-accordion-border-width)) 0 var(--rmc-accordion-border-color)
}

.accordion-button:not(.collapsed):after {
  background-image: var(--rmc-accordion-btn-active-icon);
  transform: var(--rmc-accordion-btn-icon-transform)
}

.accordion-button:after {
  flex-shrink: 0;
  width: var(--rmc-accordion-btn-icon-width);
  height: var(--rmc-accordion-btn-icon-width);
  margin-left: auto;
  content: "";
  background-image: var(--rmc-accordion-btn-icon);
  background-repeat: no-repeat;
  background-size: var(--rmc-accordion-btn-icon-width);
  transition: var(--rmc-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(--rmc-accordion-btn-focus-box-shadow)
}

.accordion-header {
  margin-bottom: 0
}

.accordion-item {
  color: var(--rmc-accordion-color);
  background-color: var(--rmc-accordion-bg);
  border: var(--rmc-accordion-border-width) solid var(--rmc-accordion-border-color)
}

.accordion-item:first-of-type {
  border-top-left-radius: var(--rmc-accordion-border-radius);
  border-top-right-radius: var(--rmc-accordion-border-radius)
}

.accordion-item:first-of-type>.accordion-header .accordion-button {
  border-top-left-radius: var(--rmc-accordion-inner-border-radius);
  border-top-right-radius: var(--rmc-accordion-inner-border-radius)
}

.accordion-item:not(:first-of-type) {
  border-top: 0
}

.accordion-item:last-of-type {
  border-bottom-right-radius: var(--rmc-accordion-border-radius);
  border-bottom-left-radius: var(--rmc-accordion-border-radius)
}

.accordion-item:last-of-type>.accordion-header .accordion-button.collapsed {
  border-bottom-right-radius: var(--rmc-accordion-inner-border-radius);
  border-bottom-left-radius: var(--rmc-accordion-inner-border-radius)
}

.accordion-item:last-of-type>.accordion-collapse {
  border-bottom-right-radius: var(--rmc-accordion-border-radius);
  border-bottom-left-radius: var(--rmc-accordion-border-radius)
}

.accordion-body {
  padding: var(--rmc-accordion-body-padding-y) var(--rmc-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-header .accordion-button,
.accordion-flush>.accordion-item>.accordion-header .accordion-button.collapsed {
  border-radius: 0
}

.accordion-flush>.accordion-item>.accordion-collapse {
  border-radius: 0
}

[data-bs-theme=dark] .accordion-button:after {
  --rmc-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='rgb%28109.8, 168, 253.8%29'%3e%3cpath fill-rule='evenodd' d='M1.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-.708z'/%3e%3c/svg%3e");
  --rmc-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='rgb%28109.8, 168, 253.8%29'%3e%3cpath fill-rule='evenodd' d='M1.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-.708z'/%3e%3c/svg%3e")
}

.fade {
  transition: opacity .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 .35s ease
}

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

.collapsing.collapse-horizontal {
  width: 0;
  height: auto;
  transition: width .35s ease
}

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

.form-label {
  margin-bottom: .5rem
}

.col-form-label {
  padding-top: calc(.375rem + var(--rmc-border-width));
  padding-bottom: calc(.375rem + var(--rmc-border-width));
  margin-bottom: 0;
  font-size: inherit;
  line-height: 1.5
}

.col-form-label-lg {
  padding-top: calc(.5rem + var(--rmc-border-width));
  padding-bottom: calc(.5rem + var(--rmc-border-width));
  font-size: 1.25rem
}

.col-form-label-sm {
  padding-top: calc(.25rem + var(--rmc-border-width));
  padding-bottom: calc(.25rem + var(--rmc-border-width));
  font-size: .875rem
}

.form-text {
  margin-top: .25rem;
  font-size: .875em;
  color: var(--rmc-secondary-color)
}

.form-control {
  display: block;
  width: 100%;
  padding: .375rem .75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--rmc-body-color);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: var(--rmc-body-bg);
  background-clip: padding-box;
  border: var(--rmc-border-width) solid var(--rmc-border-color);
  border-radius: var(--rmc-border-radius);
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out
}

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

.form-control[type=file] {
  overflow: hidden
}

.form-control[type=file]:not(:disabled):not([readonly]) {
  cursor: pointer
}

.form-control:focus {
  color: var(--rmc-body-color);
  background-color: var(--rmc-body-bg);
  border-color: #86b7fe;
  outline: 0;
  box-shadow: 0 0 0 .25rem #0d6efd40
}

.form-control::-webkit-date-and-time-value {
  min-width: 85px;
  height: 1.5em;
  margin: 0
}

.form-control::-webkit-datetime-edit {
  display: block;
  padding: 0
}

.form-control::placeholder {
  color: var(--rmc-secondary-color);
  opacity: 1
}

.form-control:disabled {
  background-color: var(--rmc-secondary-bg);
  opacity: 1
}

.form-control::file-selector-button {
  padding: .375rem .75rem;
  margin: -.375rem -.75rem;
  margin-inline-end: .75rem;
  color: var(--rmc-body-color);
  background-color: var(--rmc-tertiary-bg);
  pointer-events: none;
  border-color: inherit;
  border-style: solid;
  border-width: 0;
  border-inline-end-width: var(--rmc-border-width);
  border-radius: 0;
  transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out
}

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

.form-control:hover:not(:disabled):not([readonly])::file-selector-button {
  background-color: var(--rmc-secondary-bg)
}

.form-control-plaintext {
  display: block;
  width: 100%;
  padding: .375rem 0;
  margin-bottom: 0;
  line-height: 1.5;
  color: var(--rmc-body-color);
  background-color: transparent;
  border: solid transparent;
  border-width: var(--rmc-border-width) 0
}

.form-control-plaintext:focus {
  outline: 0
}

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

.form-control-sm {
  min-height: calc(1.5em + .5rem + calc(var(--rmc-border-width) * 2));
  padding: .25rem .5rem;
  font-size: .875rem;
  border-radius: var(--rmc-border-radius-sm)
}

.form-control-sm::file-selector-button {
  padding: .25rem .5rem;
  margin: -.25rem -.5rem;
  margin-inline-end: .5rem
}

.form-control-lg {
  min-height: calc(1.5em + 1rem + calc(var(--rmc-border-width) * 2));
  padding: .5rem 1rem;
  font-size: 1.25rem;
  border-radius: var(--rmc-border-radius-lg)
}

.form-control-lg::file-selector-button {
  padding: .5rem 1rem;
  margin: -.5rem -1rem;
  margin-inline-end: 1rem
}

textarea.form-control {
  min-height: calc(1.5em + .75rem + calc(var(--rmc-border-width) * 2))
}

textarea.form-control-sm {
  min-height: calc(1.5em + .5rem + calc(var(--rmc-border-width) * 2))
}

textarea.form-control-lg {
  min-height: calc(1.5em + 1rem + calc(var(--rmc-border-width) * 2))
}

.form-control-color {
  width: 3rem;
  height: calc(1.5em + .75rem + calc(var(--rmc-border-width) * 2));
  padding: .375rem
}

.form-control-color:not(:disabled):not([readonly]) {
  cursor: pointer
}

.form-control-color::-moz-color-swatch {
  border: 0 !important;
  border-radius: var(--rmc-border-radius)
}

.form-control-color::-webkit-color-swatch {
  border: 0 !important;
  border-radius: var(--rmc-border-radius)
}

.form-control-color.form-control-sm {
  height: calc(1.5em + .5rem + calc(var(--rmc-border-width) * 2))
}

.form-control-color.form-control-lg {
  height: calc(1.5em + 1rem + calc(var(--rmc-border-width) * 2))
}

.form-select {
  --rmc-form-select-bg-img: url("data:image/svg+xml, %3csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M4.99993 5.27812C4.9109 5.27812 4.82972 5.26354 4.75638 5.23437C4.68305 5.20521 4.61201 5.15625 4.54326 5.0875L0.657009 1.20125C0.556592 1.10083 0.506453 0.977916 0.506592 0.832499C0.506731 0.686944 0.559717 0.561319 0.665551 0.455625C0.771245 0.349792 0.89555 0.296875 1.03847 0.296875C1.18124 0.296875 1.30548 0.349792 1.41118 0.455625L4.99993 4.05292L8.59722 0.455625C8.69763 0.355208 8.81916 0.305069 8.9618 0.305208C9.10444 0.305346 9.22861 0.358333 9.3343 0.464166C9.44013 0.56986 9.49305 0.694167 9.49305 0.837083C9.49305 0.979861 9.44013 1.1041 9.3343 1.20979L5.45659 5.0875C5.38784 5.15625 5.3168 5.20521 5.24347 5.23437C5.17013 5.26354 5.08895 5.27812 4.99993 5.27812Z' fill='currentColor'/%3e%3c/svg%3e");
  display: block;
  width: 100%;
  padding: .375rem 2.25rem .375rem .75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--rmc-body-color);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: var(--rmc-body-bg);
  background-image: var(--rmc-form-select-bg-img), var(--rmc-form-select-bg-icon, none);
  background-repeat: no-repeat;
  background-position: right .75rem center;
  background-size: 16px 12px;
  border: var(--rmc-border-width) solid var(--rmc-border-color);
  border-radius: var(--rmc-border-radius);
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out
}

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

.form-select:focus {
  border-color: #86b7fe;
  outline: 0;
  box-shadow: 0 0 0 .25rem #0d6efd40
}

.form-select[multiple],
.form-select[size]:not([size="1"]) {
  padding-right: .75rem;
  background-image: none
}

.form-select:disabled {
  background-color: var(--rmc-secondary-bg)
}

.form-select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 var(--rmc-body-color)
}

.form-select-sm {
  padding-top: .25rem;
  padding-bottom: .25rem;
  padding-left: .5rem;
  font-size: .875rem;
  border-radius: var(--rmc-border-radius-sm)
}

.form-select-lg {
  padding-top: .5rem;
  padding-bottom: .5rem;
  padding-left: 1rem;
  font-size: 1.25rem;
  border-radius: var(--rmc-border-radius-lg)
}

[data-bs-theme=dark] .form-select {
  --rmc-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23dee2e6' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e")
}

.form-check {
  display: block;
  min-height: 1.5rem;
  padding-left: 1.5em;
  margin-bottom: .125rem
}

.form-check .form-check-input {
  float: left;
  margin-left: -1.5em
}

.form-check-reverse {
  padding-right: 1.5em;
  padding-left: 0;
  text-align: right
}

.form-check-reverse .form-check-input {
  float: right;
  margin-right: -1.5em;
  margin-left: 0
}

.form-check-input {
  --rmc-form-check-bg: var(--rmc-body-bg);
  flex-shrink: 0;
  width: 1em;
  height: 1em;
  margin-top: .25em;
  vertical-align: top;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: var(--rmc-form-check-bg);
  background-image: var(--rmc-form-check-bg-image);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: var(--rmc-border-width) solid var(--rmc-border-color);
  -webkit-print-color-adjust: exact;
  print-color-adjust: exact
}

.form-check-input[type=checkbox] {
  border-radius: .25em
}

.form-check-input[type=radio] {
  border-radius: 50%
}

.form-check-input:active {
  filter: brightness(90%)
}

.form-check-input:focus {
  border-color: #86b7fe;
  outline: 0;
  box-shadow: 0 0 0 .25rem #0d6efd40
}

.form-check-input:checked {
  background-color: #0d6efd;
  border-color: #0d6efd
}

.form-check-input:checked[type=checkbox] {
  --rmc-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e")
}

.form-check-input:checked[type=radio] {
  --rmc-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e")
}

.form-check-input[type=checkbox]:indeterminate {
  background-color: #0d6efd;
  border-color: #0d6efd;
  --rmc-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e")
}

.form-check-input:disabled {
  pointer-events: none;
  filter: none;
  opacity: .5
}

.form-check-input[disabled]~.form-check-label,
.form-check-input:disabled~.form-check-label {
  cursor: default;
  opacity: .5
}

.form-switch {
  padding-left: 2.5em
}

.form-switch .form-check-input {
  --rmc-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e");
  width: 2em;
  margin-left: -2.5em;
  background-image: var(--rmc-form-switch-bg);
  background-position: left center;
  border-radius: 2em;
  transition: background-position .15s ease-in-out
}

@media (prefers-reduced-motion: reduce) {
  .form-switch .form-check-input {
    transition: none
  }
}

.form-switch .form-check-input:focus {
  --rmc-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgb%28134, 182.5, 254%29'/%3e%3c/svg%3e")
}

.form-switch .form-check-input:checked {
  background-position: right center;
  --rmc-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e")
}

.form-switch.form-check-reverse {
  padding-right: 2.5em;
  padding-left: 0
}

.form-switch.form-check-reverse .form-check-input {
  margin-right: -2.5em;
  margin-left: 0
}

.form-check-inline {
  display: inline-block;
  margin-right: 1rem
}

.btn-check {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none
}

.btn-check[disabled]+.btn,
.btn-check:disabled+.btn {
  pointer-events: none;
  filter: none;
  opacity: .65
}

[data-bs-theme=dark] .form-switch .form-check-input:not(:checked):not(:focus) {
  --rmc-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%28255, 255, 255, 0.25%29'/%3e%3c/svg%3e")
}

.form-range {
  width: 100%;
  height: 1.5rem;
  padding: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent
}

.form-range:focus {
  outline: 0
}

.form-range:focus::-webkit-slider-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 .25rem #0d6efd40
}

.form-range:focus::-moz-range-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 .25rem #0d6efd40
}

.form-range::-moz-focus-outer {
  border: 0
}

.form-range::-webkit-slider-thumb {
  width: 1rem;
  height: 1rem;
  margin-top: -.25rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #0d6efd;
  border: 0;
  border-radius: 1rem;
  transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out
}

@media (prefers-reduced-motion: reduce) {
  .form-range::-webkit-slider-thumb {
    transition: none
  }
}

.form-range::-webkit-slider-thumb:active {
  background-color: #b6d4fe
}

.form-range::-webkit-slider-runnable-track {
  width: 100%;
  height: .5rem;
  color: transparent;
  cursor: pointer;
  background-color: var(--rmc-secondary-bg);
  border-color: transparent;
  border-radius: 1rem
}

.form-range::-moz-range-thumb {
  width: 1rem;
  height: 1rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #0d6efd;
  border: 0;
  border-radius: 1rem;
  transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out
}

@media (prefers-reduced-motion: reduce) {
  .form-range::-moz-range-thumb {
    transition: none
  }
}

.form-range::-moz-range-thumb:active {
  background-color: #b6d4fe
}

.form-range::-moz-range-track {
  width: 100%;
  height: .5rem;
  color: transparent;
  cursor: pointer;
  background-color: var(--rmc-secondary-bg);
  border-color: transparent;
  border-radius: 1rem
}

.form-range:disabled {
  pointer-events: none
}

.form-range:disabled::-webkit-slider-thumb {
  background-color: var(--rmc-secondary-color)
}

.form-range:disabled::-moz-range-thumb {
  background-color: var(--rmc-secondary-color)
}

.form-floating {
  position: relative
}

.form-floating>.form-control,
.form-floating>.form-control-plaintext,
.form-floating>.form-select {
  height: calc(3.5rem + calc(var(--rmc-border-width) * 2));
  min-height: calc(3.5rem + calc(var(--rmc-border-width) * 2));
  line-height: 1.25
}

.form-floating>label {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  height: 100%;
  padding: 1rem .75rem;
  overflow: hidden;
  text-align: start;
  text-overflow: ellipsis;
  white-space: nowrap;
  pointer-events: none;
  border: var(--rmc-border-width) solid transparent;
  transform-origin: 0 0;
  transition: opacity .1s ease-in-out, transform .1s ease-in-out
}

@media (prefers-reduced-motion: reduce) {
  .form-floating>label {
    transition: none
  }
}

.form-floating>.form-control,
.form-floating>.form-control-plaintext {
  padding: 1rem .75rem
}

.form-floating>.form-control::placeholder,
.form-floating>.form-control-plaintext::placeholder {
  color: transparent
}

.form-floating>.form-control:focus,
.form-floating>.form-control:not(:placeholder-shown),
.form-floating>.form-control-plaintext:focus,
.form-floating>.form-control-plaintext:not(:placeholder-shown) {
  padding-top: 1.625rem;
  padding-bottom: .625rem
}

.form-floating>.form-control:-webkit-autofill,
.form-floating>.form-control-plaintext:-webkit-autofill {
  padding-top: 1.625rem;
  padding-bottom: .625rem
}

.form-floating>.form-select {
  padding-top: 1.625rem;
  padding-bottom: .625rem
}

.form-floating>.form-control:focus~label,
.form-floating>.form-control:not(:placeholder-shown)~label,
.form-floating>.form-control-plaintext~label,
.form-floating>.form-select~label {
  color: rgba(var(--rmc-body-color-rgb), .65);
  transform: scale(.85) translateY(-.5rem) translate(.15rem)
}

.form-floating>.form-control:focus~label:after,
.form-floating>.form-control:not(:placeholder-shown)~label:after,
.form-floating>.form-control-plaintext~label:after,
.form-floating>.form-select~label:after {
  position: absolute;
  top: 1rem;
  right: .375rem;
  bottom: 1rem;
  left: .375rem;
  z-index: -1;
  height: 1.5em;
  content: "";
  background-color: var(--rmc-body-bg);
  border-radius: var(--rmc-border-radius)
}

.form-floating>.form-control:-webkit-autofill~label {
  color: rgba(var(--rmc-body-color-rgb), .65);
  transform: scale(.85) translateY(-.5rem) translate(.15rem)
}

.form-floating>.form-control-plaintext~label {
  border-width: var(--rmc-border-width) 0
}

.form-floating>:disabled~label,
.form-floating>.form-control:disabled~label {
  color: #6c757d
}

.form-floating>:disabled~label:after,
.form-floating>.form-control:disabled~label:after {
  background-color: var(--rmc-secondary-bg)
}

.input-group {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%
}

.input-group>.form-control,
.input-group>.form-select,
.input-group>.form-floating {
  position: relative;
  flex: 1 1 auto;
  width: 1%;
  min-width: 0
}

.input-group>.form-control:focus,
.input-group>.form-select:focus,
.input-group>.form-floating:focus-within {
  z-index: 5
}

.input-group .btn {
  position: relative;
  z-index: 2
}

.input-group .btn:focus {
  z-index: 5
}

.input-group-text {
  display: flex;
  align-items: center;
  padding: .375rem .75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--rmc-body-color);
  text-align: center;
  white-space: nowrap;
  background-color: var(--rmc-tertiary-bg);
  border: var(--rmc-border-width) solid var(--rmc-border-color);
  border-radius: var(--rmc-border-radius)
}

.input-group-lg>.form-control,
.input-group-lg>.form-select,
.input-group-lg>.input-group-text,
.input-group-lg>.btn {
  padding: .5rem 1rem;
  font-size: 1.25rem;
  border-radius: var(--rmc-border-radius-lg)
}

.input-group-sm>.form-control,
.input-group-sm>.form-select,
.input-group-sm>.input-group-text,
.input-group-sm>.btn {
  padding: .25rem .5rem;
  font-size: .875rem;
  border-radius: var(--rmc-border-radius-sm)
}

.input-group-lg>.form-select,
.input-group-sm>.form-select {
  padding-right: 3rem
}

.input-group:not(.has-validation)>:not(:last-child):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating),
.input-group:not(.has-validation)>.dropdown-toggle:nth-last-child(n+3),
.input-group:not(.has-validation)>.form-floating:not(:last-child)>.form-control,
.input-group:not(.has-validation)>.form-floating:not(:last-child)>.form-select {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0
}

.input-group.has-validation>:nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating),
.input-group.has-validation>.dropdown-toggle:nth-last-child(n+4),
.input-group.has-validation>.form-floating:nth-last-child(n+3)>.form-control,
.input-group.has-validation>.form-floating:nth-last-child(n+3)>.form-select {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0
}

.input-group>:not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
  margin-left: calc(var(--rmc-border-width) * -1);
  border-top-left-radius: 0;
  border-bottom-left-radius: 0
}

.input-group>.form-floating:not(:first-child)>.form-control,
.input-group>.form-floating:not(:first-child)>.form-select {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0
}

.valid-feedback {
  display: none;
  width: 100%;
  margin-top: .25rem;
  font-size: .875em;
  color: var(--rmc-form-valid-color)
}

.valid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: .25rem .5rem;
  margin-top: .1rem;
  font-size: .875rem;
  color: #fff;
  background-color: var(--rmc-success);
  border-radius: var(--rmc-border-radius)
}

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

.was-validated .form-control:valid,
.form-control.is-valid {
  border-color: var(--rmc-form-valid-border-color);
  padding-right: calc(1.5em + .75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(.375em + .1875rem) center;
  background-size: calc(.75em + .375rem) calc(.75em + .375rem)
}

.was-validated .form-control:valid:focus,
.form-control.is-valid:focus {
  border-color: var(--rmc-form-valid-border-color);
  box-shadow: 0 0 0 .25rem rgba(var(--rmc-success-rgb), .25)
}

.was-validated textarea.form-control:valid,
textarea.form-control.is-valid {
  padding-right: calc(1.5em + .75rem);
  background-position: top calc(.375em + .1875rem) right calc(.375em + .1875rem)
}

.was-validated .form-select:valid,
.form-select.is-valid {
  border-color: var(--rmc-form-valid-border-color)
}

.was-validated .form-select:valid:not([multiple]):not([size]),
.was-validated .form-select:valid:not([multiple])[size="1"],
.form-select.is-valid:not([multiple]):not([size]),
.form-select.is-valid:not([multiple])[size="1"] {
  --rmc-form-select-bg-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  padding-right: 4.125rem;
  background-position: right .75rem center, center right 2.25rem;
  background-size: 16px 12px, calc(.75em + .375rem) calc(.75em + .375rem)
}

.was-validated .form-select:valid:focus,
.form-select.is-valid:focus {
  border-color: var(--rmc-form-valid-border-color);
  box-shadow: 0 0 0 .25rem rgba(var(--rmc-success-rgb), .25)
}

.was-validated .form-control-color:valid,
.form-control-color.is-valid {
  width: calc(3.75rem + 1.5em)
}

.was-validated .form-check-input:valid,
.form-check-input.is-valid {
  border-color: var(--rmc-form-valid-border-color)
}

.was-validated .form-check-input:valid:checked,
.form-check-input.is-valid:checked {
  background-color: var(--rmc-form-valid-color)
}

.was-validated .form-check-input:valid:focus,
.form-check-input.is-valid:focus {
  box-shadow: 0 0 0 .25rem rgba(var(--rmc-success-rgb), .25)
}

.was-validated .form-check-input:valid~.form-check-label,
.form-check-input.is-valid~.form-check-label {
  color: var(--rmc-form-valid-color)
}

.form-check-inline .form-check-input~.valid-feedback {
  margin-left: .5em
}

.was-validated .input-group>.form-control:not(:focus):valid,
.input-group>.form-control:not(:focus).is-valid,
.was-validated .input-group>.form-select:not(:focus):valid,
.input-group>.form-select:not(:focus).is-valid,
.was-validated .input-group>.form-floating:not(:focus-within):valid,
.input-group>.form-floating:not(:focus-within).is-valid {
  z-index: 3
}

.invalid-feedback {
  display: none;
  width: 100%;
  margin-top: .25rem;
  font-size: .875em;
  color: var(--rmc-form-invalid-color)
}

.invalid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: .25rem .5rem;
  margin-top: .1rem;
  font-size: .875rem;
  color: #fff;
  background-color: var(--rmc-danger);
  border-radius: var(--rmc-border-radius)
}

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

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

.was-validated .form-control:invalid:focus,
.form-control.is-invalid:focus {
  border-color: var(--rmc-form-invalid-border-color);
  box-shadow: 0 0 0 .25rem rgba(var(--rmc-danger-rgb), .25)
}

.was-validated textarea.form-control:invalid,
textarea.form-control.is-invalid {
  padding-right: calc(1.5em + .75rem);
  background-position: top calc(.375em + .1875rem) right calc(.375em + .1875rem)
}

.was-validated .form-select:invalid,
.form-select.is-invalid {
  border-color: var(--rmc-form-invalid-border-color)
}

.was-validated .form-select:invalid:not([multiple]):not([size]),
.was-validated .form-select:invalid:not([multiple])[size="1"],
.form-select.is-invalid:not([multiple]):not([size]),
.form-select.is-invalid:not([multiple])[size="1"] {
  --rmc-form-select-bg-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
  padding-right: 4.125rem;
  background-position: right .75rem center, center right 2.25rem;
  background-size: 16px 12px, calc(.75em + .375rem) calc(.75em + .375rem)
}

.was-validated .form-select:invalid:focus,
.form-select.is-invalid:focus {
  border-color: var(--rmc-form-invalid-border-color);
  box-shadow: 0 0 0 .25rem rgba(var(--rmc-danger-rgb), .25)
}

.was-validated .form-control-color:invalid,
.form-control-color.is-invalid {
  width: calc(3.75rem + 1.5em)
}

.was-validated .form-check-input:invalid,
.form-check-input.is-invalid {
  border-color: var(--rmc-form-invalid-border-color)
}

.was-validated .form-check-input:invalid:checked,
.form-check-input.is-invalid:checked {
  background-color: var(--rmc-form-invalid-color)
}

.was-validated .form-check-input:invalid:focus,
.form-check-input.is-invalid:focus {
  box-shadow: 0 0 0 .25rem rgba(var(--rmc-danger-rgb), .25)
}

.was-validated .form-check-input:invalid~.form-check-label,
.form-check-input.is-invalid~.form-check-label {
  color: var(--rmc-form-invalid-color)
}

.form-check-inline .form-check-input~.invalid-feedback {
  margin-left: .5em
}

.was-validated .input-group>.form-control:not(:focus):invalid,
.input-group>.form-control:not(:focus).is-invalid,
.was-validated .input-group>.form-select:not(:focus):invalid,
.input-group>.form-select:not(:focus).is-invalid,
.was-validated .input-group>.form-floating:not(:focus-within):invalid,
.input-group>.form-floating:not(:focus-within).is-invalid {
  z-index: 4
}

.nav {
  --rmc-nav-link-padding-x: 1rem;
  --rmc-nav-link-padding-y: .5rem;
  --rmc-nav-link-font-weight: ;
  --rmc-nav-link-color: var(--rmc-link-color);
  --rmc-nav-link-hover-color: var(--rmc-link-hover-color);
  --rmc-nav-link-disabled-color: var(--rmc-secondary-color);
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none
}

.nav-link {
  display: block;
  padding: var(--rmc-nav-link-padding-y) var(--rmc-nav-link-padding-x);
  font-size: var(--rmc-nav-link-font-size);
  font-weight: var(--rmc-nav-link-font-weight);
  color: var(--rmc-nav-link-color);
  text-decoration: none;
  background: none;
  border: 0;
  transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out
}

@media (prefers-reduced-motion: reduce) {
  .nav-link {
    transition: none
  }
}

.nav-link:hover,
.nav-link:focus {
  color: var(--rmc-nav-link-hover-color)
}

.nav-link:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 .25rem #0d6efd40
}

.nav-link.disabled,
.nav-link:disabled {
  color: var(--rmc-nav-link-disabled-color);
  pointer-events: none;
  cursor: default
}

.nav-tabs {
  --rmc-nav-tabs-border-width: var(--rmc-border-width);
  --rmc-nav-tabs-border-color: var(--rmc-border-color);
  --rmc-nav-tabs-border-radius: var(--rmc-border-radius);
  --rmc-nav-tabs-link-hover-border-color: var(--rmc-secondary-bg) var(--rmc-secondary-bg) var(--rmc-border-color);
  --rmc-nav-tabs-link-active-color: var(--rmc-emphasis-color);
  --rmc-nav-tabs-link-active-bg: var(--rmc-body-bg);
  --rmc-nav-tabs-link-active-border-color: var(--rmc-border-color) var(--rmc-border-color) var(--rmc-body-bg);
  border-bottom: var(--rmc-nav-tabs-border-width) solid var(--rmc-nav-tabs-border-color)
}

.nav-tabs .nav-link {
  margin-bottom: calc(-1 * var(--rmc-nav-tabs-border-width));
  border: var(--rmc-nav-tabs-border-width) solid transparent;
  border-top-left-radius: var(--rmc-nav-tabs-border-radius);
  border-top-right-radius: var(--rmc-nav-tabs-border-radius)
}

.nav-tabs .nav-link:hover,
.nav-tabs .nav-link:focus {
  isolation: isolate;
  border-color: var(--rmc-nav-tabs-link-hover-border-color)
}

.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
  color: var(--rmc-nav-tabs-link-active-color);
  background-color: var(--rmc-nav-tabs-link-active-bg);
  border-color: var(--rmc-nav-tabs-link-active-border-color)
}

.nav-tabs .dropdown-menu {
  margin-top: calc(-1 * var(--rmc-nav-tabs-border-width));
  border-top-left-radius: 0;
  border-top-right-radius: 0
}

.nav-pills {
  --rmc-nav-pills-border-radius: var(--rmc-border-radius);
  --rmc-nav-pills-link-active-color: #fff;
  --rmc-nav-pills-link-active-bg: #0d6efd
}

.nav-pills .nav-link {
  border-radius: var(--rmc-nav-pills-border-radius)
}

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
  color: var(--rmc-nav-pills-link-active-color);
  background-color: var(--rmc-nav-pills-link-active-bg)
}

.nav-underline {
  --rmc-nav-underline-gap: 1rem;
  --rmc-nav-underline-border-width: .125rem;
  --rmc-nav-underline-link-active-color: var(--rmc-emphasis-color);
  gap: var(--rmc-nav-underline-gap)
}

.nav-underline .nav-link {
  padding-right: 0;
  padding-left: 0;
  border-bottom: var(--rmc-nav-underline-border-width) solid transparent
}

.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(--rmc-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-basis: 0;
  flex-grow: 1;
  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
}

.pagination {
  --rmc-pagination-padding-x: .75rem;
  --rmc-pagination-padding-y: .375rem;
  --rmc-pagination-font-size: 1rem;
  --rmc-pagination-color: var(--rmc-link-color);
  --rmc-pagination-bg: var(--rmc-body-bg);
  --rmc-pagination-border-width: var(--rmc-border-width);
  --rmc-pagination-border-color: var(--rmc-border-color);
  --rmc-pagination-border-radius: var(--rmc-border-radius);
  --rmc-pagination-hover-color: var(--rmc-link-hover-color);
  --rmc-pagination-hover-bg: var(--rmc-tertiary-bg);
  --rmc-pagination-hover-border-color: var(--rmc-border-color);
  --rmc-pagination-focus-color: var(--rmc-link-hover-color);
  --rmc-pagination-focus-bg: var(--rmc-secondary-bg);
  --rmc-pagination-focus-box-shadow: 0 0 0 .25rem rgba(13, 110, 253, .25);
  --rmc-pagination-active-color: #fff;
  --rmc-pagination-active-bg: #0d6efd;
  --rmc-pagination-active-border-color: #0d6efd;
  --rmc-pagination-disabled-color: var(--rmc-secondary-color);
  --rmc-pagination-disabled-bg: var(--rmc-secondary-bg);
  --rmc-pagination-disabled-border-color: var(--rmc-border-color);
  display: flex;
  padding-left: 0;
  list-style: none
}

.page-link {
  position: relative;
  display: block;
  padding: var(--rmc-pagination-padding-y) var(--rmc-pagination-padding-x);
  font-size: var(--rmc-pagination-font-size);
  color: var(--rmc-pagination-color);
  text-decoration: none;
  background-color: var(--rmc-pagination-bg);
  border: var(--rmc-pagination-border-width) solid var(--rmc-pagination-border-color);
  transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out
}

@media (prefers-reduced-motion: reduce) {
  .page-link {
    transition: none
  }
}

.page-link:hover {
  z-index: 2;
  color: var(--rmc-pagination-hover-color);
  background-color: var(--rmc-pagination-hover-bg);
  border-color: var(--rmc-pagination-hover-border-color)
}

.page-link:focus {
  z-index: 3;
  color: var(--rmc-pagination-focus-color);
  background-color: var(--rmc-pagination-focus-bg);
  outline: 0;
  box-shadow: var(--rmc-pagination-focus-box-shadow)
}

.page-link.active,
.active>.page-link {
  z-index: 3;
  color: var(--rmc-pagination-active-color);
  background-color: var(--rmc-pagination-active-bg);
  border-color: var(--rmc-pagination-active-border-color)
}

.page-link.disabled,
.disabled>.page-link {
  color: var(--rmc-pagination-disabled-color);
  pointer-events: none;
  background-color: var(--rmc-pagination-disabled-bg);
  border-color: var(--rmc-pagination-disabled-border-color)
}

.page-item:not(:first-child) .page-link {
  margin-left: calc(var(--rmc-border-width) * -1)
}

.page-item:first-child .page-link {
  border-top-left-radius: var(--rmc-pagination-border-radius);
  border-bottom-left-radius: var(--rmc-pagination-border-radius)
}

.page-item:last-child .page-link {
  border-top-right-radius: var(--rmc-pagination-border-radius);
  border-bottom-right-radius: var(--rmc-pagination-border-radius)
}

.pagination-lg {
  --rmc-pagination-padding-x: 1.5rem;
  --rmc-pagination-padding-y: .75rem;
  --rmc-pagination-font-size: 1.25rem;
  --rmc-pagination-border-radius: var(--rmc-border-radius-lg)
}

.pagination-sm {
  --rmc-pagination-padding-x: .5rem;
  --rmc-pagination-padding-y: .25rem;
  --rmc-pagination-font-size: .875rem;
  --rmc-pagination-border-radius: var(--rmc-border-radius-sm)
}

.alert {
  --rmc-alert-bg: transparent;
  --rmc-alert-padding-x: 1rem;
  --rmc-alert-padding-y: 1rem;
  --rmc-alert-margin-bottom: 1rem;
  --rmc-alert-color: inherit;
  --rmc-alert-border-color: transparent;
  --rmc-alert-border: var(--rmc-border-width) solid var(--rmc-alert-border-color);
  --rmc-alert-border-radius: var(--rmc-border-radius);
  --rmc-alert-link-color: inherit;
  position: relative;
  padding: var(--rmc-alert-padding-y) var(--rmc-alert-padding-x);
  margin-bottom: var(--rmc-alert-margin-bottom);
  color: var(--rmc-alert-color);
  background-color: var(--rmc-alert-bg);
  border: var(--rmc-alert-border);
  border-radius: var(--rmc-alert-border-radius)
}

.alert-heading {
  color: inherit
}

.alert-link {
  font-weight: 700;
  color: var(--rmc-alert-link-color)
}

.alert-dismissible {
  padding-right: 3rem
}

.alert-dismissible .btn-close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  padding: 1.25rem 1rem
}

.alert-primary {
  --rmc-alert-color: var(--rmc-primary-text-emphasis);
  --rmc-alert-bg: var(--rmc-primary-bg-subtle);
  --rmc-alert-border-color: var(--rmc-primary-border-subtle);
  --rmc-alert-link-color: var(--rmc-primary-text-emphasis)
}

.alert-secondary {
  --rmc-alert-color: var(--rmc-secondary-text-emphasis);
  --rmc-alert-bg: var(--rmc-secondary-bg-subtle);
  --rmc-alert-border-color: var(--rmc-secondary-border-subtle);
  --rmc-alert-link-color: var(--rmc-secondary-text-emphasis)
}

.alert-success {
  --rmc-alert-color: var(--rmc-success-text-emphasis);
  --rmc-alert-bg: var(--rmc-success-bg-subtle);
  --rmc-alert-border-color: var(--rmc-success-border-subtle);
  --rmc-alert-link-color: var(--rmc-success-text-emphasis)
}

.alert-info {
  --rmc-alert-color: var(--rmc-info-text-emphasis);
  --rmc-alert-bg: var(--rmc-info-bg-subtle);
  --rmc-alert-border-color: var(--rmc-info-border-subtle);
  --rmc-alert-link-color: var(--rmc-info-text-emphasis)
}

.alert-warning {
  --rmc-alert-color: var(--rmc-warning-text-emphasis);
  --rmc-alert-bg: var(--rmc-warning-bg-subtle);
  --rmc-alert-border-color: var(--rmc-warning-border-subtle);
  --rmc-alert-link-color: var(--rmc-warning-text-emphasis)
}

.alert-danger {
  --rmc-alert-color: var(--rmc-danger-text-emphasis);
  --rmc-alert-bg: var(--rmc-danger-bg-subtle);
  --rmc-alert-border-color: var(--rmc-danger-border-subtle);
  --rmc-alert-link-color: var(--rmc-danger-text-emphasis)
}

.alert-light {
  --rmc-alert-color: var(--rmc-light-text-emphasis);
  --rmc-alert-bg: var(--rmc-light-bg-subtle);
  --rmc-alert-border-color: var(--rmc-light-border-subtle);
  --rmc-alert-link-color: var(--rmc-light-text-emphasis)
}

.alert-dark {
  --rmc-alert-color: var(--rmc-dark-text-emphasis);
  --rmc-alert-bg: var(--rmc-dark-bg-subtle);
  --rmc-alert-border-color: var(--rmc-dark-border-subtle);
  --rmc-alert-link-color: var(--rmc-dark-text-emphasis)
}

.carousel {
  position: relative
}

.carousel.pointer-event {
  touch-action: pan-y
}

.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden
}

.carousel-inner:after {
  display: block;
  clear: both;
  content: ""
}

.carousel-item {
  position: relative;
  display: none;
  float: left;
  width: 100%;
  margin-right: -100%;
  backface-visibility: hidden;
  transition: transform .6s ease-in-out
}

@media (prefers-reduced-motion: reduce) {
  .carousel-item {
    transition: none
  }
}

.carousel-item.active,
.carousel-item-next,
.carousel-item-prev {
  display: block
}

.carousel-item-next:not(.carousel-item-start),
.active.carousel-item-end {
  transform: translate(100%)
}

.carousel-item-prev:not(.carousel-item-end),
.active.carousel-item-start {
  transform: translate(-100%)
}

.carousel-fade .carousel-item {
  opacity: 0;
  transition-property: opacity;
  transform: none
}

.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-start,
.carousel-fade .carousel-item-prev.carousel-item-end {
  z-index: 1;
  opacity: 1
}

.carousel-fade .active.carousel-item-start,
.carousel-fade .active.carousel-item-end {
  z-index: 0;
  opacity: 0;
  transition: opacity 0s .6s
}

@media (prefers-reduced-motion: reduce) {

  .carousel-fade .active.carousel-item-start,
  .carousel-fade .active.carousel-item-end {
    transition: none
  }
}

.carousel-control-prev,
.carousel-control-next {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15%;
  padding: 0;
  color: #fff;
  text-align: center;
  background: none;
  border: 0;
  opacity: .5;
  transition: opacity .15s ease
}

@media (prefers-reduced-motion: reduce) {

  .carousel-control-prev,
  .carousel-control-next {
    transition: none
  }
}

.carousel-control-prev:hover,
.carousel-control-prev:focus,
.carousel-control-next:hover,
.carousel-control-next:focus {
  color: #fff;
  text-decoration: none;
  outline: 0;
  opacity: .9
}

.carousel-control-prev {
  left: 0
}

.carousel-control-next {
  right: 0
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 100% 100%
}

.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e")
}

.carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e")
}

.carousel-indicators {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  padding: 0;
  margin-right: 15%;
  margin-bottom: 1rem;
  margin-left: 15%
}

.carousel-indicators [data-bs-target] {
  box-sizing: content-box;
  flex: 0 1 auto;
  width: 30px;
  height: 3px;
  padding: 0;
  margin-right: 3px;
  margin-left: 3px;
  text-indent: -999px;
  cursor: pointer;
  background-color: #fff;
  background-clip: padding-box;
  border: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  opacity: .5;
  transition: opacity .6s ease
}

@media (prefers-reduced-motion: reduce) {
  .carousel-indicators [data-bs-target] {
    transition: none
  }
}

.carousel-indicators .active {
  opacity: 1
}

.carousel-caption {
  width: 50%;
  position: absolute;
  color: #fff;
  background-color: #333;
  background-color: rgba(0,0,0,0.9);
  left: initial;
  right: 1.125rem;
  bottom: 1rem;
  padding: 1.125rem;
  text-align: left;
  border: 2px solid #e4002b;
  border-radius: 0.625rem;
  font-size: 1.25rem;
  box-shadow: 0 4px 8px rgba(0,0,0,0.4);
}

.carousel-dark .carousel-control-prev-icon,
.carousel-dark .carousel-control-next-icon {
  filter: invert(1) grayscale(100)
}

.carousel-dark .carousel-indicators [data-bs-target] {
  background-color: #000
}

.carousel-dark .carousel-caption {
  color: #000
}

[data-bs-theme=dark] .carousel .carousel-control-prev-icon,
[data-bs-theme=dark] .carousel .carousel-control-next-icon,
[data-bs-theme=dark].carousel .carousel-control-prev-icon,
[data-bs-theme=dark].carousel .carousel-control-next-icon {
  filter: invert(1) grayscale(100)
}

[data-bs-theme=dark] .carousel .carousel-indicators [data-bs-target],
[data-bs-theme=dark].carousel .carousel-indicators [data-bs-target] {
  background-color: #000
}

[data-bs-theme=dark] .carousel .carousel-caption,
[data-bs-theme=dark].carousel .carousel-caption {
  color: #000
}

.spinner-grow,
.spinner-border {
  display: inline-block;
  width: var(--rmc-spinner-width);
  height: var(--rmc-spinner-height);
  vertical-align: var(--rmc-spinner-vertical-align);
  border-radius: 50%;
  animation: var(--rmc-spinner-animation-speed) linear infinite var(--rmc-spinner-animation-name)
}

@keyframes spinner-border {
  to {
    transform: rotate(360deg)
  }
}

.spinner-border {
  --rmc-spinner-width: 2rem;
  --rmc-spinner-height: 2rem;
  --rmc-spinner-vertical-align: -.125em;
  --rmc-spinner-border-width: .25em;
  --rmc-spinner-animation-speed: .75s;
  --rmc-spinner-animation-name: spinner-border;
  border: var(--rmc-spinner-border-width) solid currentcolor;
  border-right-color: transparent
}

.spinner-border-sm {
  --rmc-spinner-width: 1rem;
  --rmc-spinner-height: 1rem;
  --rmc-spinner-border-width: .2em
}

@keyframes spinner-grow {
  0% {
    transform: scale(0)
  }

  50% {
    opacity: 1;
    transform: none
  }
}

.spinner-grow {
  --rmc-spinner-width: 2rem;
  --rmc-spinner-height: 2rem;
  --rmc-spinner-vertical-align: -.125em;
  --rmc-spinner-animation-speed: .75s;
  --rmc-spinner-animation-name: spinner-grow;
  background-color: currentcolor;
  opacity: 0
}

.spinner-grow-sm {
  --rmc-spinner-width: 1rem;
  --rmc-spinner-height: 1rem
}

@media (prefers-reduced-motion: reduce) {

  .spinner-border,
  .spinner-grow {
    --rmc-spinner-animation-speed: 1.5s
  }
}

.dropup,
.dropend,
.dropdown,
.dropstart,
.dropup-center,
.dropdown-center {
  position: relative
}

.dropdown-toggle {
  white-space: nowrap
}

.dropdown-toggle:after {
  display: inline-block;
  margin-left: .255em;
  vertical-align: .255em;
  content: "";
  border-top: .3em solid;
  border-right: .3em solid transparent;
  border-bottom: 0;
  border-left: .3em solid transparent
}

.dropdown-toggle:empty:after {
  margin-left: 0
}

.dropdown-menu {
  --rmc-dropdown-zindex: 1000;
  --rmc-dropdown-min-width: 10rem;
  --rmc-dropdown-padding-x: 0;
  --rmc-dropdown-padding-y: .5rem;
  --rmc-dropdown-spacer: .125rem;
  --rmc-dropdown-font-size: 1rem;
  --rmc-dropdown-color: var(--rmc-body-color);
  --rmc-dropdown-bg: var(--rmc-body-bg);
  --rmc-dropdown-border-color: var(--rmc-border-color-translucent);
  --rmc-dropdown-border-radius: var(--rmc-border-radius);
  --rmc-dropdown-border-width: var(--rmc-border-width);
  --rmc-dropdown-inner-border-radius: calc(var(--rmc-border-radius) - var(--rmc-border-width));
  --rmc-dropdown-divider-bg: var(--rmc-border-color-translucent);
  --rmc-dropdown-divider-margin-y: .5rem;
  --rmc-dropdown-box-shadow: var(--rmc-box-shadow);
  --rmc-dropdown-link-color: var(--rmc-body-color);
  --rmc-dropdown-link-hover-color: var(--rmc-body-color);
  --rmc-dropdown-link-hover-bg: var(--rmc-tertiary-bg);
  --rmc-dropdown-link-active-color: #fff;
  --rmc-dropdown-link-active-bg: #0d6efd;
  --rmc-dropdown-link-disabled-color: var(--rmc-tertiary-color);
  --rmc-dropdown-item-padding-x: 1rem;
  --rmc-dropdown-item-padding-y: .25rem;
  --rmc-dropdown-header-color: #6c757d;
  --rmc-dropdown-header-padding-x: 1rem;
  --rmc-dropdown-header-padding-y: .5rem;
  position: absolute;
  z-index: var(--rmc-dropdown-zindex);
  display: none;
  min-width: var(--rmc-dropdown-min-width);
  padding: var(--rmc-dropdown-padding-y) var(--rmc-dropdown-padding-x);
  margin: 0;
  font-size: var(--rmc-dropdown-font-size);
  color: var(--rmc-dropdown-color);
  text-align: left;
  list-style: none;
  background-color: var(--rmc-dropdown-bg);
  background-clip: padding-box;
  border: var(--rmc-dropdown-border-width) solid var(--rmc-dropdown-border-color);
  border-radius: var(--rmc-dropdown-border-radius)
}

.dropdown-menu[data-bs-popper] {
  top: 100%;
  left: 0;
  margin-top: var(--rmc-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(--rmc-dropdown-spacer)
}

.dropup .dropdown-toggle:after {
  display: inline-block;
  margin-left: .255em;
  vertical-align: .255em;
  content: "";
  border-top: 0;
  border-right: .3em solid transparent;
  border-bottom: .3em solid;
  border-left: .3em solid transparent
}

.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(--rmc-dropdown-spacer)
}

.dropend .dropdown-toggle:after {
  display: inline-block;
  margin-left: .255em;
  vertical-align: .255em;
  content: "";
  border-top: .3em solid transparent;
  border-right: 0;
  border-bottom: .3em solid transparent;
  border-left: .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(--rmc-dropdown-spacer)
}

.dropstart .dropdown-toggle:after {
  display: inline-block;
  margin-left: .255em;
  vertical-align: .255em;
  content: ""
}

.dropstart .dropdown-toggle:after {
  display: none
}

.dropstart .dropdown-toggle:before {
  display: inline-block;
  margin-right: .255em;
  vertical-align: .255em;
  content: "";
  border-top: .3em solid transparent;
  border-right: .3em solid;
  border-bottom: .3em solid transparent
}

.dropstart .dropdown-toggle:empty:after {
  margin-left: 0
}

.dropstart .dropdown-toggle:before {
  vertical-align: 0
}

.dropdown-divider {
  height: 0;
  margin: var(--rmc-dropdown-divider-margin-y) 0;
  overflow: hidden;
  border-top: 1px solid var(--rmc-dropdown-divider-bg);
  opacity: 1
}

.dropdown-item {
  display: block;
  width: 100%;
  padding: var(--rmc-dropdown-item-padding-y) var(--rmc-dropdown-item-padding-x);
  clear: both;
  font-weight: 400;
  color: var(--rmc-dropdown-link-color);
  text-align: inherit;
  text-decoration: none;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
  border-radius: var(--rmc-dropdown-item-border-radius, 0)
}

.dropdown-item:hover,
.dropdown-item:focus {
  color: var(--rmc-dropdown-link-hover-color);
  background-color: var(--rmc-dropdown-link-hover-bg)
}

.dropdown-item.active,
.dropdown-item:active {
  color: var(--rmc-dropdown-link-active-color);
  text-decoration: none;
  background-color: var(--rmc-dropdown-link-active-bg)
}

.dropdown-item.disabled,
.dropdown-item:disabled {
  color: var(--rmc-dropdown-link-disabled-color);
  pointer-events: none;
  background-color: transparent
}

.dropdown-menu.show {
  display: block
}

.dropdown-header {
  display: block;
  padding: var(--rmc-dropdown-header-padding-y) var(--rmc-dropdown-header-padding-x);
  margin-bottom: 0;
  font-size: .875rem;
  color: var(--rmc-dropdown-header-color);
  white-space: nowrap
}

.dropdown-item-text {
  display: block;
  padding: var(--rmc-dropdown-item-padding-y) var(--rmc-dropdown-item-padding-x);
  color: var(--rmc-dropdown-link-color)
}

.dropdown-menu-dark {
  --rmc-dropdown-color: #dee2e6;
  --rmc-dropdown-bg: #343a40;
  --rmc-dropdown-border-color: var(--rmc-border-color-translucent);
  --rmc-dropdown-box-shadow: ;
  --rmc-dropdown-link-color: #dee2e6;
  --rmc-dropdown-link-hover-color: #fff;
  --rmc-dropdown-divider-bg: var(--rmc-border-color-translucent);
  --rmc-dropdown-link-hover-bg: rgba(255, 255, 255, .15);
  --rmc-dropdown-link-active-color: #fff;
  --rmc-dropdown-link-active-bg: #0d6efd;
  --rmc-dropdown-link-disabled-color: #adb5bd;
  --rmc-dropdown-header-color: #adb5bd
}

.modal {
  --rmc-modal-zindex: 1055;
  --rmc-modal-width: 500px;
  --rmc-modal-padding: 1rem;
  --rmc-modal-margin: .5rem;
  --rmc-modal-color: ;
  --rmc-modal-bg: var(--rmc-body-bg);
  --rmc-modal-border-color: var(--rmc-border-color-translucent);
  --rmc-modal-border-width: var(--rmc-border-width);
  --rmc-modal-border-radius: var(--rmc-border-radius-lg);
  --rmc-modal-box-shadow: var(--rmc-box-shadow-sm);
  --rmc-modal-inner-border-radius: calc(var(--rmc-border-radius-lg) - (var(--rmc-border-width)));
  --rmc-modal-header-padding-x: 1rem;
  --rmc-modal-header-padding-y: 1rem;
  --rmc-modal-header-padding: 1rem 1rem;
  --rmc-modal-header-border-color: var(--rmc-border-color);
  --rmc-modal-header-border-width: var(--rmc-border-width);
  --rmc-modal-title-line-height: 1.5;
  --rmc-modal-footer-gap: .5rem;
  --rmc-modal-footer-bg: ;
  --rmc-modal-footer-border-color: var(--rmc-border-color);
  --rmc-modal-footer-border-width: var(--rmc-border-width);
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--rmc-modal-zindex);
  display: none;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  outline: 0
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: var(--rmc-modal-margin);
  pointer-events: none
}

.modal.fade .modal-dialog {
  transition: transform .3s ease-out;
  transform: translateY(-50px)
}

@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(--rmc-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(--rmc-modal-margin) * 2)
}

.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  color: var(--rmc-modal-color);
  pointer-events: auto;
  background-color: var(--rmc-modal-bg);
  background-clip: padding-box;
  border: var(--rmc-modal-border-width) solid var(--rmc-modal-border-color);
  border-radius: var(--rmc-modal-border-radius);
  outline: 0
}

.modal-backdrop {
  --rmc-backdrop-zindex: 1050;
  --rmc-backdrop-bg: #000;
  --rmc-backdrop-opacity: .5;
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--rmc-backdrop-zindex);
  width: 100vw;
  height: 100vh;
  background-color: var(--rmc-backdrop-bg)
}

.modal-backdrop.fade {
  opacity: 0
}

.modal-backdrop.show {
  opacity: var(--rmc-backdrop-opacity)
}

.modal-header {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  padding: var(--rmc-modal-header-padding);
  border-bottom: var(--rmc-modal-header-border-width) solid var(--rmc-modal-header-border-color);
  border-top-left-radius: var(--rmc-modal-inner-border-radius);
  border-top-right-radius: var(--rmc-modal-inner-border-radius)
}

.modal-header .btn-close {
  padding: calc(var(--rmc-modal-header-padding-y) * .5) calc(var(--rmc-modal-header-padding-x) * .5);
  margin: calc(-.5 * var(--rmc-modal-header-padding-y)) calc(-.5 * var(--rmc-modal-header-padding-x)) calc(-.5 * var(--rmc-modal-header-padding-y)) auto
}

.modal-title {
  margin-bottom: 0;
  line-height: var(--rmc-modal-title-line-height)
}

.modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: var(--rmc-modal-padding)
}

.modal-footer {
  display: flex;
  flex-shrink: 0;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  padding: calc(var(--rmc-modal-padding) - var(--rmc-modal-footer-gap) * .5);
  background-color: var(--rmc-modal-footer-bg);
  border-top: var(--rmc-modal-footer-border-width) solid var(--rmc-modal-footer-border-color);
  border-bottom-right-radius: var(--rmc-modal-inner-border-radius);
  border-bottom-left-radius: var(--rmc-modal-inner-border-radius)
}

.modal-footer>* {
  margin: calc(var(--rmc-modal-footer-gap) * .5)
}

@media (min-width: 576px) {
  .modal {
    --rmc-modal-margin: 1.75rem;
    --rmc-modal-box-shadow: var(--rmc-box-shadow)
  }

  .modal-dialog {
    max-width: var(--rmc-modal-width);
    margin-right: auto;
    margin-left: auto
  }

  .modal-sm {
    --rmc-modal-width: 300px
  }
}

@media (min-width: 992px) {

  .modal-lg,
  .modal-xl {
    --rmc-modal-width: 800px
  }
}

@media (min-width: 1200px) {
  .modal-xl {
    --rmc-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
  }
}

.table {
  --rmc-table-color-type: initial;
  --rmc-table-bg-type: initial;
  --rmc-table-color-state: initial;
  --rmc-table-bg-state: initial;
  --rmc-table-color: var(--rmc-emphasis-color);
  --rmc-table-bg: var(--rmc-body-bg);
  --rmc-table-border-color: var(--rmc-border-color);
  --rmc-table-accent-bg: transparent;
  --rmc-table-striped-color: var(--rmc-emphasis-color);
  --rmc-table-striped-bg: rgba(var(--rmc-emphasis-color-rgb), .05);
  --rmc-table-active-color: var(--rmc-emphasis-color);
  --rmc-table-active-bg: rgba(var(--rmc-emphasis-color-rgb), .1);
  --rmc-table-hover-color: var(--rmc-emphasis-color);
  --rmc-table-hover-bg: rgba(var(--rmc-emphasis-color-rgb), .075);
  width: 100%;
  margin-bottom: 1rem;
  vertical-align: top;
  border-color: var(--rmc-table-border-color)
}

.table>:not(caption)>*>* {
  padding: .5rem;
  color: var(--rmc-table-color-state, var(--rmc-table-color-type, var(--rmc-table-color)));
  background-color: var(--rmc-table-bg);
  border-bottom-width: var(--rmc-border-width);
  box-shadow: inset 0 0 0 9999px var(--rmc-table-bg-state, var(--rmc-table-bg-type, var(--rmc-table-accent-bg)))
}

.table>tbody {
  vertical-align: inherit
}

.table>thead {
  vertical-align: bottom
}

.table-group-divider {
  border-top: calc(var(--rmc-border-width) * 2) solid currentcolor
}

.caption-top {
  caption-side: top
}

.table-sm>:not(caption)>*>* {
  padding: .25rem
}

.table-bordered>:not(caption)>* {
  border-width: var(--rmc-border-width) 0
}

.table-bordered>:not(caption)>*>* {
  border-width: 0 var(--rmc-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)>* {
  --rmc-table-color-type: var(--rmc-table-striped-color);
  --rmc-table-bg-type: var(--rmc-table-striped-bg)
}

.table-striped-columns>:not(caption)>tr>:nth-child(2n) {
  --rmc-table-color-type: var(--rmc-table-striped-color);
  --rmc-table-bg-type: var(--rmc-table-striped-bg)
}

.table-active {
  --rmc-table-color-state: var(--rmc-table-active-color);
  --rmc-table-bg-state: var(--rmc-table-active-bg)
}

.table-hover>tbody>tr:hover>* {
  --rmc-table-color-state: var(--rmc-table-hover-color);
  --rmc-table-bg-state: var(--rmc-table-hover-bg)
}

.table-primary {
  --rmc-table-color: #000;
  --rmc-table-bg: rgb(206.6, 226, 254.6);
  --rmc-table-border-color: rgb(165.28, 180.8, 203.68);
  --rmc-table-striped-bg: rgb(196.27, 214.7, 241.87);
  --rmc-table-striped-color: #000;
  --rmc-table-active-bg: rgb(185.94, 203.4, 229.14);
  --rmc-table-active-color: #000;
  --rmc-table-hover-bg: rgb(191.105, 209.05, 235.505);
  --rmc-table-hover-color: #000;
  color: var(--rmc-table-color);
  border-color: var(--rmc-table-border-color)
}

.table-secondary {
  --rmc-table-color: #000;
  --rmc-table-bg: rgb(225.6, 227.4, 229);
  --rmc-table-border-color: rgb(180.48, 181.92, 183.2);
  --rmc-table-striped-bg: rgb(214.32, 216.03, 217.55);
  --rmc-table-striped-color: #000;
  --rmc-table-active-bg: rgb(203.04, 204.66, 206.1);
  --rmc-table-active-color: #000;
  --rmc-table-hover-bg: rgb(208.68, 210.345, 211.825);
  --rmc-table-hover-color: #000;
  color: var(--rmc-table-color);
  border-color: var(--rmc-table-border-color)
}

.table-success {
  --rmc-table-color: #000;
  --rmc-table-bg: rgb(209, 231, 220.8);
  --rmc-table-border-color: rgb(167.2, 184.8, 176.64);
  --rmc-table-striped-bg: rgb(198.55, 219.45, 209.76);
  --rmc-table-striped-color: #000;
  --rmc-table-active-bg: rgb(188.1, 207.9, 198.72);
  --rmc-table-active-color: #000;
  --rmc-table-hover-bg: rgb(193.325, 213.675, 204.24);
  --rmc-table-hover-color: #000;
  color: var(--rmc-table-color);
  border-color: var(--rmc-table-border-color)
}

.table-info {
  --rmc-table-color: #000;
  --rmc-table-bg: rgb(206.6, 244.4, 252);
  --rmc-table-border-color: rgb(165.28, 195.52, 201.6);
  --rmc-table-striped-bg: rgb(196.27, 232.18, 239.4);
  --rmc-table-striped-color: #000;
  --rmc-table-active-bg: rgb(185.94, 219.96, 226.8);
  --rmc-table-active-color: #000;
  --rmc-table-hover-bg: rgb(191.105, 226.07, 233.1);
  --rmc-table-hover-color: #000;
  color: var(--rmc-table-color);
  border-color: var(--rmc-table-border-color)
}

.table-warning {
  --rmc-table-color: #000;
  --rmc-table-bg: rgb(255, 242.6, 205.4);
  --rmc-table-border-color: rgb(204, 194.08, 164.32);
  --rmc-table-striped-bg: rgb(242.25, 230.47, 195.13);
  --rmc-table-striped-color: #000;
  --rmc-table-active-bg: rgb(229.5, 218.34, 184.86);
  --rmc-table-active-color: #000;
  --rmc-table-hover-bg: rgb(235.875, 224.405, 189.995);
  --rmc-table-hover-color: #000;
  color: var(--rmc-table-color);
  border-color: var(--rmc-table-border-color)
}

.table-danger {
  --rmc-table-color: #000;
  --rmc-table-bg: rgb(248, 214.6, 217.8);
  --rmc-table-border-color: rgb(198.4, 171.68, 174.24);
  --rmc-table-striped-bg: rgb(235.6, 203.87, 206.91);
  --rmc-table-striped-color: #000;
  --rmc-table-active-bg: rgb(223.2, 193.14, 196.02);
  --rmc-table-active-color: #000;
  --rmc-table-hover-bg: rgb(229.4, 198.505, 201.465);
  --rmc-table-hover-color: #000;
  color: var(--rmc-table-color);
  border-color: var(--rmc-table-border-color)
}

.table-light {
  --rmc-table-color: #000;
  --rmc-table-bg: #f8f9fa;
  --rmc-table-border-color: rgb(198.4, 199.2, 200);
  --rmc-table-striped-bg: rgb(235.6, 236.55, 237.5);
  --rmc-table-striped-color: #000;
  --rmc-table-active-bg: rgb(223.2, 224.1, 225);
  --rmc-table-active-color: #000;
  --rmc-table-hover-bg: rgb(229.4, 230.325, 231.25);
  --rmc-table-hover-color: #000;
  color: var(--rmc-table-color);
  border-color: var(--rmc-table-border-color)
}

.table-dark {
  --rmc-table-color: #fff;
  --rmc-table-bg: #212529;
  --rmc-table-border-color: rgb(77.4, 80.6, 83.8);
  --rmc-table-striped-bg: rgb(44.1, 47.9, 51.7);
  --rmc-table-striped-color: #fff;
  --rmc-table-active-bg: rgb(55.2, 58.8, 62.4);
  --rmc-table-active-color: #fff;
  --rmc-table-hover-bg: rgb(49.65, 53.35, 57.05);
  --rmc-table-hover-color: #fff;
  color: var(--rmc-table-color);
  border-color: var(--rmc-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
  }
}

@keyframes progress-bar-stripes {
  0% {
    background-position-x: 8px
  }
}

.progress,
.progress-stacked {
  --rmc-progress-height: 8px;
  --rmc-progress-font-size: .75rem;
  --rmc-progress-bg: var(--rmc-secondary-bg);
  --rmc-progress-border-radius: var(--rmc-border-radius);
  --rmc-progress-box-shadow: var(--rmc-box-shadow-inset);
  --rmc-progress-bar-color: #fff;
  --rmc-progress-bar-bg: #0d6efd;
  --rmc-progress-bar-transition: width .6s ease;
  display: flex;
  height: var(--rmc-progress-height);
  overflow: hidden;
  font-size: var(--rmc-progress-font-size);
  background-color: var(--rmc-progress-bg);
  border-radius: var(--rmc-progress-border-radius)
}

.progress-bar {
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  color: var(--rmc-progress-bar-color);
  text-align: center;
  white-space: nowrap;
  background-color: var(--rmc-progress-bar-bg);
  transition: var(--rmc-progress-bar-transition)
}

@media (prefers-reduced-motion: reduce) {
  .progress-bar {
    transition: none
  }
}

.progress-bar-striped {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
  background-size: var(--rmc-progress-height) var(--rmc-progress-height)
}

.progress-stacked>.progress {
  overflow: visible
}

.progress-stacked>.progress>.progress-bar {
  width: 100%
}

.progress-bar-animated {
  animation: 1s linear infinite progress-bar-stripes
}

@media (prefers-reduced-motion: reduce) {
  .progress-bar-animated {
    animation: none
  }
}

.tooltip {
  --rmc-tooltip-zindex: 1080;
  --rmc-tooltip-max-width: 200px;
  --rmc-tooltip-padding-x: .5rem;
  --rmc-tooltip-padding-y: .25rem;
  --rmc-tooltip-margin: ;
  --rmc-tooltip-font-size: .875rem;
  --rmc-tooltip-color: var(--rmc-body-bg);
  --rmc-tooltip-bg: var(--rmc-emphasis-color);
  --rmc-tooltip-border-radius: var(--rmc-border-radius);
  --rmc-tooltip-opacity: .9;
  --rmc-tooltip-arrow-width: .8rem;
  --rmc-tooltip-arrow-height: .4rem;
  z-index: var(--rmc-tooltip-zindex);
  display: block;
  margin: var(--rmc-tooltip-margin);
  font-family: var(--rmc-font-sans-serif);
  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(--rmc-tooltip-font-size);
  word-wrap: break-word;
  opacity: 0
}

.tooltip.show {
  opacity: var(--rmc-tooltip-opacity)
}

.tooltip .tooltip-arrow {
  display: block;
  width: var(--rmc-tooltip-arrow-width);
  height: var(--rmc-tooltip-arrow-height)
}

.tooltip .tooltip-arrow:before {
  position: absolute;
  content: "";
  border-color: transparent;
  border-style: solid
}

.bs-tooltip-top .tooltip-arrow,
.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow {
  bottom: calc(-1 * var(--rmc-tooltip-arrow-height))
}

.bs-tooltip-top .tooltip-arrow:before,
.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow:before {
  top: -1px;
  border-width: var(--rmc-tooltip-arrow-height) calc(var(--rmc-tooltip-arrow-width) * .5) 0;
  border-top-color: var(--rmc-tooltip-bg)
}

.bs-tooltip-end .tooltip-arrow,
.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow {
  left: calc(-1 * var(--rmc-tooltip-arrow-height));
  width: var(--rmc-tooltip-arrow-height);
  height: var(--rmc-tooltip-arrow-width)
}

.bs-tooltip-end .tooltip-arrow:before,
.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow:before {
  right: -1px;
  border-width: calc(var(--rmc-tooltip-arrow-width) * .5) var(--rmc-tooltip-arrow-height) calc(var(--rmc-tooltip-arrow-width) * .5) 0;
  border-right-color: var(--rmc-tooltip-bg)
}

.bs-tooltip-bottom .tooltip-arrow,
.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow {
  top: calc(-1 * var(--rmc-tooltip-arrow-height))
}

.bs-tooltip-bottom .tooltip-arrow:before,
.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow:before {
  bottom: -1px;
  border-width: 0 calc(var(--rmc-tooltip-arrow-width) * .5) var(--rmc-tooltip-arrow-height);
  border-bottom-color: var(--rmc-tooltip-bg)
}

.bs-tooltip-start .tooltip-arrow,
.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow {
  right: calc(-1 * var(--rmc-tooltip-arrow-height));
  width: var(--rmc-tooltip-arrow-height);
  height: var(--rmc-tooltip-arrow-width)
}

.bs-tooltip-start .tooltip-arrow:before,
.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow:before {
  left: -1px;
  border-width: calc(var(--rmc-tooltip-arrow-width) * .5) 0 calc(var(--rmc-tooltip-arrow-width) * .5) var(--rmc-tooltip-arrow-height);
  border-left-color: var(--rmc-tooltip-bg)
}

.tooltip-inner {
  max-width: var(--rmc-tooltip-max-width);
  padding: var(--rmc-tooltip-padding-y) var(--rmc-tooltip-padding-x);
  color: var(--rmc-tooltip-color);
  text-align: center;
  background-color: var(--rmc-tooltip-bg);
  border-radius: var(--rmc-tooltip-border-radius)
}

.rmc-icon {
  display: inline-flex;
  justify-content: center;
  align-items: center
}

.rmc-icon--primary {
  color: var(--rmc-primary-red)
}

.rmc-icon--24 {
  width: 1.5rem;
  height: 1.5rem;
  flex-basis: 1.5rem;
  flex-grow: 0;
  flex-shrink: 0
}

.rmc-icon--32 {
  width: 2rem;
  height: 2rem;
  flex-basis: 2rem;
  flex-grow: 0;
  flex-shrink: 0
}

.rmc-icon-search {
  color: var(--rmc-primary-red);
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M17.0065 15.0068H15.9532L15.5798 14.6468C16.8865 13.1268 17.6732 11.1534 17.6732 9.00675C17.6732 4.22009 13.7932 0.340088 9.00651 0.340088C4.21984 0.340088 0.339844 4.22009 0.339844 9.00675C0.339844 13.7934 4.21984 17.6734 9.00651 17.6734C11.1532 17.6734 13.1265 16.8868 14.6465 15.5801L15.0065 15.9534V17.0068L21.6732 23.6601L23.6598 21.6734L17.0065 15.0068ZM9.00651 15.0068C5.68651 15.0068 3.00651 12.3268 3.00651 9.00675C3.00651 5.68675 5.68651 3.00675 9.00651 3.00675C12.3265 3.00675 15.0065 5.68675 15.0065 9.00675C15.0065 12.3268 12.3265 15.0068 9.00651 15.0068Z' fill='currentColor'/%3E%3C/svg%3E")
}

@font-face {
  font-family: swiper-icons;
  src: url(data:application/font-woff;charset=utf-8;base64,\ d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA) format("woff");
  font-weight: 400;
  font-style: normal
}

:root {
  --swiper-theme-color: #007aff
}

:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
  display: block
}

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

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box
}

.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translateZ(0)
}

.swiper-horizontal {
  touch-action: pan-y
}

.swiper-vertical {
  touch-action: pan-x
}

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

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

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

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

.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden
}

.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px
}

.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d
}

.swiper-3d {
  perspective: 1200px
}

.swiper-3d .swiper-slide,
.swiper-3d .swiper-cube-shadow {
  transform-style: preserve-3d
}

.swiper-css-mode>.swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none
}

.swiper-css-mode>.swiper-wrapper::-webkit-scrollbar {
  display: none
}

.swiper-css-mode>.swiper-wrapper>.swiper-slide {
  scroll-snap-align: start start
}

.swiper-css-mode.swiper-horizontal>.swiper-wrapper {
  scroll-snap-type: x mandatory
}

.swiper-css-mode.swiper-vertical>.swiper-wrapper {
  scroll-snap-type: y mandatory
}

.swiper-css-mode.swiper-free-mode>.swiper-wrapper {
  scroll-snap-type: none
}

.swiper-css-mode.swiper-free-mode>.swiper-wrapper>.swiper-slide {
  scroll-snap-align: none
}

.swiper-css-mode.swiper-centered>.swiper-wrapper:before {
  content: "";
  flex-shrink: 0;
  order: 9999
}

.swiper-css-mode.swiper-centered>.swiper-wrapper>.swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always
}

.swiper-css-mode.swiper-centered.swiper-horizontal>.swiper-wrapper>.swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before)
}

.swiper-css-mode.swiper-centered.swiper-horizontal>.swiper-wrapper:before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after)
}

.swiper-css-mode.swiper-centered.swiper-vertical>.swiper-wrapper>.swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before)
}

.swiper-css-mode.swiper-centered.swiper-vertical>.swiper-wrapper:before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after)
}

.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10
}

.swiper-3d .swiper-slide-shadow {
  background: #00000026
}

.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, #00000080, #0000)
}

.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, #00000080, #0000)
}

.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, #00000080, #0000)
}

.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, #00000080, #0000)
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent
}

.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000
}

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0)
  }

  to {
    transform: rotate(360deg)
  }
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: .3s opacity;
  transform: translateZ(0);
  z-index: 10
}

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

.swiper-pagination-disabled>.swiper-pagination,
.swiper-pagination.swiper-pagination-disabled {
  display: none !important
}

.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: var(--swiper-pagination-bottom, 8px);
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%
}

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

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

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

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

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

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

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

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, .2)
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer
}

.swiper-pagination-bullet:only-child {
  display: none !important
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color))
}

.swiper-vertical>.swiper-pagination-bullets,
.swiper-pagination-vertical.swiper-pagination-bullets {
  right: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  transform: translate3d(0, -50%, 0)
}

.swiper-vertical>.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block
}

.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px
}

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

.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px)
}

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

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

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

.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit)
}

.swiper-pagination-progressbar {
  background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, .25));
  position: absolute
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top
}

.swiper-horizontal>.swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: var(--swiper-pagination-progressbar-size, 4px);
  left: 0;
  top: 0
}

.swiper-vertical>.swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-vertical,
.swiper-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {
  width: var(--swiper-pagination-progressbar-size, 4px);
  height: 100%;
  left: 0;
  top: 0
}

.swiper-pagination-lock {
  display: none
}

:root {
  --swiper-navigation-size: 44px
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: var(--swiper-navigation-top-offset, 50%);
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color))
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: .35;
  cursor: auto;
  pointer-events: none
}

.swiper-button-prev.swiper-button-hidden,
.swiper-button-next.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none
}

.swiper-navigation-disabled .swiper-button-prev,
.swiper-navigation-disabled .swiper-button-next {
  display: none !important
}

.swiper-button-prev svg,
.swiper-button-next svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform-origin: center
}

.swiper-rtl .swiper-button-prev svg,
.swiper-rtl .swiper-button-next svg {
  transform: rotate(180deg)
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, 10px);
  right: auto
}

.swiper-button-lock {
  display: none
}

.swiper-button-prev:after,
.swiper-button-next:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: "prev"
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: "next"
}

.swiper.swiper-flip {
  overflow: visible
}

.swiper-flip .swiper-slide {
  pointer-events: none;
  backface-visibility: hidden;
  z-index: 1
}

.swiper-flip .swiper-slide .swiper-slide {
  pointer-events: none
}

.swiper-flip .swiper-slide-active,
.swiper-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto
}

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