@charset "UTF-8";
@-webkit-keyframes lightboxLoader {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes lightboxLoader {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes gfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes gfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes gfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes gfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@-webkit-keyframes gslideInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-60%, 0, 0);
    transform: translate3d(-60%, 0, 0);
  }
  to {
    visibility: visible;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes gslideInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-60%, 0, 0);
    transform: translate3d(-60%, 0, 0);
  }
  to {
    visibility: visible;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes gslideOutLeft {
  from {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    -webkit-transform: translate3d(-60%, 0, 0);
    transform: translate3d(-60%, 0, 0);
    opacity: 0;
    visibility: hidden;
  }
}
@keyframes gslideOutLeft {
  from {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    -webkit-transform: translate3d(-60%, 0, 0);
    transform: translate3d(-60%, 0, 0);
    opacity: 0;
    visibility: hidden;
  }
}
@-webkit-keyframes gslideInRight {
  from {
    opacity: 0;
    visibility: visible;
    -webkit-transform: translate3d(60%, 0, 0);
    transform: translate3d(60%, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes gslideInRight {
  from {
    opacity: 0;
    visibility: visible;
    -webkit-transform: translate3d(60%, 0, 0);
    transform: translate3d(60%, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes gslideOutRight {
  from {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    -webkit-transform: translate3d(60%, 0, 0);
    transform: translate3d(60%, 0, 0);
    opacity: 0;
  }
}
@keyframes gslideOutRight {
  from {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    -webkit-transform: translate3d(60%, 0, 0);
    transform: translate3d(60%, 0, 0);
    opacity: 0;
  }
}
@-webkit-keyframes gzoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 1;
  }
}
@keyframes gzoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes gzoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
@keyframes gzoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.glightbox-container {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999 !important;
  overflow: hidden;
  -ms-touch-action: none;
  touch-action: none;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  outline: 0;
}
.glightbox-container .gcontainer {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 9999;
  overflow: hidden;
}
.glightbox-container .gslider {
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  height: 100%;
  left: 0;
  top: 0;
  width: 100%;
  position: relative;
  overflow: hidden;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.glightbox-container .gslide {
  width: 100%;
  position: absolute;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  opacity: 0;
}
.glightbox-container .gslide.current {
  opacity: 1;
  z-index: 99999;
  position: relative;
}
.glightbox-container .gslide.prev {
  opacity: 1;
  z-index: 9999;
}
.glightbox-container .gslide-inner-content {
  width: 100%;
}
.glightbox-container .ginner-container {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  max-width: 100%;
  margin: auto;
  height: 100vh;
}
.glightbox-container .ginner-container.gvideo-container {
  width: 100%;
}
.glightbox-container .ginner-container.desc-bottom {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.glightbox-container .ginner-container.desc-top {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.glightbox-container .ginner-container.desc-left {
  max-width: 100% !important;
}
.glightbox-container .ginner-container.desc-right {
  max-width: 100% !important;
}

.glightbox-container.inactive {
  display: none;
}

.gslide iframe {
  outline: 0 !important;
  border: none;
  min-height: 165px;
  -webkit-overflow-scrolling: touch;
  -ms-touch-action: auto;
  touch-action: auto;
}
.gslide video {
  outline: 0 !important;
  border: none;
  min-height: 165px;
  -webkit-overflow-scrolling: touch;
  -ms-touch-action: auto;
  touch-action: auto;
}
.gslide:not(.current) {
  pointer-events: none;
}

.gslide-image {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: var(--white);
}
.gslide-image img {
  max-height: 100vh;
  display: block;
  padding: 0;
  float: none;
  outline: 0;
  border: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  max-width: 100vw;
  width: auto;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  -ms-touch-action: none;
  touch-action: none;
  margin: auto;
  min-width: 200px;
}
.gslide-image img.zoomable {
  position: relative;
}
.gslide-image img.dragging {
  cursor: -webkit-grabbing !important;
  cursor: grabbing !important;
  -webkit-transition: none;
  transition: none;
}

.desc-bottom .gslide-image img {
  width: auto;
}
.desc-bottom .gslide-media {
  margin: 0 auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.desc-top .gslide-image img {
  width: auto;
}
.desc-top .gslide-media {
  margin: 0 auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.desc-left .gslide-image img {
  width: auto;
  max-width: 100%;
}

.desc-right .gslide-image img {
  width: auto;
  max-width: 100%;
}

.gslide-video {
  position: relative;
  max-width: 100vh;
  width: 100% !important;
}
.gslide-video .plyr__poster-enabled.plyr--loading .plyr__poster {
  display: none;
}
.gslide-video .gvideo-wrapper {
  width: 100%;
  margin: auto;
}
.gslide-video::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(255, 0, 0, 0.34);
  display: none;
}

.gslide-video.playing::before {
  display: none;
}

.gslide-video.fullscreen {
  max-width: 100% !important;
  min-width: 100%;
  height: 75vh;
}
.gslide-video.fullscreen video {
  max-width: 100% !important;
  width: 100% !important;
}

.gslide-inline {
  background: #fff;
  text-align: left;
  max-height: calc(100vh - 40px);
  overflow: auto;
  max-width: 100%;
  margin: auto;
}
.gslide-inline .ginlined-content {
  padding: 20px;
  width: 100%;
}
.gslide-inline .dragging {
  cursor: -webkit-grabbing !important;
  cursor: grabbing !important;
  -webkit-transition: none;
  transition: none;
}

.ginlined-content {
  overflow: auto;
  display: block !important;
  opacity: 1;
}

.gslide-external {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  min-width: 100%;
  background: #fff;
  padding: 0;
  overflow: auto;
  max-height: 75vh;
  height: 100%;
}

.gslide-media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: auto;
}

.zoomed .gslide-media {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}
.zoomed .gslide-description {
  display: none;
}

.gslide-description {
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 100%;
  flex: 1 0 100%;
}
.gslide-description p {
  margin-bottom: 12px;
}
.gslide-description p:last-child {
  margin-bottom: 0;
}

.gslide-description.description-left {
  max-width: 100%;
}

.gslide-description.description-right {
  max-width: 100%;
}

.gslide-description.description-bottom {
  margin: 0 auto;
  width: 100%;
}

.gslide-description.description-top {
  margin: 0 auto;
  width: 100%;
}

.glightbox-button-hidden {
  display: none;
}

.glightbox-mobile .glightbox-container .gslide-description {
  height: auto !important;
  width: 100%;
  position: absolute;
  bottom: 0;
  padding: 19px 11px;
  max-width: 100vw !important;
  -webkit-box-ordinal-group: 3 !important;
  -ms-flex-order: 2 !important;
  order: 2 !important;
  max-height: 78vh;
  overflow: auto !important;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.75)));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0.75) 100%);
  -webkit-transition: opacity 0.3s linear;
  transition: opacity 0.3s linear;
  padding-bottom: 50px;
}
.glightbox-mobile .glightbox-container .gslide-title {
  color: #fff;
  font-size: 1em;
}
.glightbox-mobile .glightbox-container .gslide-desc {
  color: #a1a1a1;
}
.glightbox-mobile .glightbox-container .gslide-desc a {
  color: #fff;
  font-weight: 700;
}
.glightbox-mobile .glightbox-container .gslide-desc * {
  color: inherit;
}
.glightbox-mobile .glightbox-container .gslide-desc .desc-more {
  color: #fff;
  opacity: 0.4;
}
.glightbox-mobile .goverlay {
  background: #000;
}

.gdesc-open .gslide-media {
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  opacity: 0.4;
}
.gdesc-open .gdesc-inner {
  padding-bottom: 30px;
}

.gdesc-closed .gslide-media {
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  opacity: 1;
}

.greset {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.gabsolute {
  position: absolute;
}

.grelative {
  position: relative;
}

.glightbox-desc {
  display: none !important;
}

.glightbox-open {
  overflow: hidden;
}

.gloader {
  height: 25px;
  width: 25px;
  -webkit-animation: lightboxLoader 0.8s infinite linear;
  animation: lightboxLoader 0.8s infinite linear;
  border: 2px solid #fff;
  border-right-color: transparent;
  border-radius: 50%;
  position: absolute;
  display: block;
  z-index: 9999;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 47%;
}

.goverlay {
  width: 100%;
  height: calc(100vh + 1px);
  position: fixed;
  top: -1px;
  left: 0;
  background: #000;
  will-change: opacity;
}

.gclose {
  z-index: 99999;
  cursor: pointer;
  width: 26px;
  height: 44px;
  border: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 5px;
}
.gclose svg {
  display: block;
  width: 25px;
  height: auto;
  margin: 0;
  padding: 0;
}
.gclose .garrow {
  stroke: #fff;
}

.gnext {
  z-index: 99999;
  cursor: pointer;
  width: 26px;
  height: 44px;
  border: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.gnext svg {
  display: block;
  width: 25px;
  height: auto;
  margin: 0;
  padding: 0;
}
.gnext .garrow {
  stroke: #fff;
}

.gprev {
  z-index: 99999;
  cursor: pointer;
  width: 26px;
  height: 44px;
  border: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.gprev svg {
  display: block;
  width: 25px;
  height: auto;
  margin: 0;
  padding: 0;
}
.gprev .garrow {
  stroke: #fff;
}

.gclose.disabled {
  opacity: 0.1;
}

.gnext.disabled {
  opacity: 0.1;
}

.gprev.disabled {
  opacity: 0.1;
}

.gbtn.focused {
  outline: 2px solid #0f3d81;
}

iframe.wait-autoplay {
  opacity: 0;
}

.glightbox-closing .gclose {
  opacity: 0 !important;
}
.glightbox-closing .gnext {
  opacity: 0 !important;
}
.glightbox-closing .gprev {
  opacity: 0 !important;
}

.glightbox-clean .gslide-description {
  background: #fff;
}
.glightbox-clean .gdesc-inner {
  padding: 22px 20px;
}
.glightbox-clean .gslide-title {
  font-size: 1em;
  font-weight: 400;
  font-family: arial;
  color: #000;
  margin-bottom: 19px;
  line-height: 1.4em;
}
.glightbox-clean .gslide-desc {
  font-size: 0.86em;
  margin-bottom: 0;
  font-family: arial;
  line-height: 1.4em;
}
.glightbox-clean .gslide-video {
  background: #000;
}
.glightbox-clean .gclose {
  background-color: rgba(0, 0, 0, 0.75);
  border-radius: 4px;
  width: 35px;
  height: 35px;
  top: 15px;
  right: 10px;
  position: absolute;
}
.glightbox-clean .gclose path {
  fill: #fff;
}
.glightbox-clean .gclose svg {
  width: 18px;
  height: auto;
}
.glightbox-clean .gclose:hover {
  opacity: 1;
}
.glightbox-clean .gnext {
  background-color: rgba(0, 0, 0, 0.75);
  border-radius: 4px;
  position: absolute;
  top: -100%;
  right: 30px;
  width: 40px;
  height: 50px;
}
.glightbox-clean .gnext path {
  fill: #fff;
}
.glightbox-clean .gprev {
  background-color: rgba(0, 0, 0, 0.75);
  border-radius: 4px;
  position: absolute;
  top: -100%;
  left: 30px;
  width: 40px;
  height: 50px;
}
.glightbox-clean .gprev path {
  fill: #fff;
}

.gfadeIn {
  -webkit-animation: gfadeIn 0.5s ease;
  animation: gfadeIn 0.5s ease;
}

.gfadeOut {
  -webkit-animation: gfadeOut 0.5s ease;
  animation: gfadeOut 0.5s ease;
}

.gslideOutLeft {
  -webkit-animation: gslideOutLeft 0.3s ease;
  animation: gslideOutLeft 0.3s ease;
}

.gslideInLeft {
  -webkit-animation: gslideInLeft 0.3s ease;
  animation: gslideInLeft 0.3s ease;
}

.gslideOutRight {
  -webkit-animation: gslideOutRight 0.3s ease;
  animation: gslideOutRight 0.3s ease;
}

.gslideInRight {
  -webkit-animation: gslideInRight 0.3s ease;
  animation: gslideInRight 0.3s ease;
}

.gzoomIn {
  -webkit-animation: gzoomIn 0.5s ease;
  animation: gzoomIn 0.5s ease;
}

.gzoomOut {
  -webkit-animation: gzoomOut 0.5s ease;
  animation: gzoomOut 0.5s ease;
}

@media (min-width: 769px) {
  .glightbox-container .ginner-container {
    width: auto;
    height: auto;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .glightbox-container .ginner-container.desc-top .gslide-description {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }
  .glightbox-container .ginner-container.desc-top .gslide-image {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .glightbox-container .ginner-container.desc-top .gslide-image img {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .glightbox-container .ginner-container.desc-left .gslide-description {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }
  .glightbox-container .ginner-container.desc-left .gslide-image {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .gslide-image img {
    max-height: 97vh;
    max-width: 100%;
  }
  .gslide-image img.zoomable {
    cursor: -webkit-zoom-in;
    cursor: zoom-in;
  }
  .zoomed .gslide-image img.zoomable {
    cursor: -webkit-grab;
    cursor: grab;
  }
  .gslide-inline {
    max-height: 95vh;
  }
  .gslide-external {
    max-height: 100vh;
  }
  .gslide-description.description-left {
    max-width: 275px;
  }
  .gslide-description.description-right {
    max-width: 275px;
  }
  .glightbox-open {
    height: auto;
  }
  .goverlay {
    background: rgba(0, 0, 0, 0.92);
  }
  .glightbox-clean .gslide-media {
    -webkit-box-shadow: 1px 2px 9px 0 rgba(0, 0, 0, 0.65);
    box-shadow: 1px 2px 9px 0 rgba(0, 0, 0, 0.65);
  }
  .glightbox-clean .description-left .gdesc-inner {
    position: absolute;
    height: 100%;
    overflow-y: auto;
  }
  .glightbox-clean .description-right .gdesc-inner {
    position: absolute;
    height: 100%;
    overflow-y: auto;
  }
  .glightbox-clean .gclose {
    background-color: rgba(0, 0, 0, 0.32);
  }
  .glightbox-clean .gclose:hover {
    background-color: rgba(0, 0, 0, 0.7);
  }
  .glightbox-clean .gnext {
    background-color: rgba(0, 0, 0, 0.32);
    top: 45%;
  }
  .glightbox-clean .gnext:hover {
    background-color: rgba(0, 0, 0, 0.7);
  }
  .glightbox-clean .gprev {
    background-color: rgba(0, 0, 0, 0.32);
    top: 45%;
  }
  .glightbox-clean .gprev:hover {
    background-color: rgba(0, 0, 0, 0.7);
  }
}
@media (min-width: 992px) {
  .glightbox-clean .gclose {
    opacity: 0.7;
    right: 20px;
  }
}
@media screen and (max-height: 420px) {
  .goverlay {
    background: #000;
  }
}
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

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

body {
  line-height: 1;
}

blockquote,
q {
  quotes: none;
}

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

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

@font-face {
  font-family: "Wix Madefor Display";
  src: url("../../assets/fonts/WixMadeforDisplay-ExtraBold.eot");
  src: local("Wix Madefor Display ExtraBold"), local("WixMadeforDisplay-ExtraBold"), url("../../assets/fonts/WixMadeforDisplay-ExtraBold.eot?#iefix") format("embedded-opentype"), url("../../assets/fonts/WixMadeforDisplay-ExtraBold.woff2") format("woff2"), url("../../assets/fonts/WixMadeforDisplay-ExtraBold.woff") format("woff"), url("../../assets/fonts/WixMadeforDisplay-ExtraBold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
  ascent-override: 100%;
}
@font-face {
  font-family: "Wix Madefor Display";
  src: url("../../assets/fonts/WixMadeforDisplay-Bold.eot");
  src: local("Wix Madefor Display Bold"), local("WixMadeforDisplay-Bold"), url("../../assets/fonts/WixMadeforDisplay-Bold.eot?#iefix") format("embedded-opentype"), url("../../assets/fonts/WixMadeforDisplay-Bold.woff2") format("woff2"), url("../../assets/fonts/WixMadeforDisplay-Bold.woff") format("woff"), url("../../assets/fonts/WixMadeforDisplay-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
  ascent-override: 100%;
}
@font-face {
  font-family: "Wix Madefor Display";
  src: url("../../assets/fonts/WixMadeforDisplay-Medium.eot");
  src: local("Wix Madefor Display Medium"), local("WixMadeforDisplay-Medium"), url("../../assets/fonts/WixMadeforDisplay-Medium.eot?#iefix") format("embedded-opentype"), url("../../assets/fonts/WixMadeforDisplay-Medium.woff2") format("woff2"), url("../../assets/fonts/WixMadeforDisplay-Medium.woff") format("woff"), url("../../assets/fonts/WixMadeforDisplay-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  ascent-override: 100%;
}
@font-face {
  font-family: "Wix Madefor Display";
  src: url("../../assets/fonts/WixMadeforDisplay-SemiBold.eot");
  src: local("Wix Madefor Display SemiBold"), local("WixMadeforDisplay-SemiBold"), url("../../assets/fonts/WixMadeforDisplay-SemiBold.eot?#iefix") format("embedded-opentype"), url("../../assets/fonts/WixMadeforDisplay-SemiBold.woff2") format("woff2"), url("../../assets/fonts/WixMadeforDisplay-SemiBold.woff") format("woff"), url("../../assets/fonts/WixMadeforDisplay-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
  ascent-override: 100%;
}
@font-face {
  font-family: "Wix Madefor Display";
  src: url("../../assets/fonts/WixMadeforDisplay-Regular.eot");
  src: local("Wix Madefor Display Regular"), local("WixMadeforDisplay-Regular"), url("../../assets/fonts/WixMadeforDisplay-Regular.eot?#iefix") format("embedded-opentype"), url("../../assets/fonts/WixMadeforDisplay-Regular.woff2") format("woff2"), url("../../assets/fonts/WixMadeforDisplay-Regular.woff") format("woff"), url("../../assets/fonts/WixMadeforDisplay-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
  ascent-override: 100%;
}
@font-face {
  font-family: "Wix Madefor Display";
  src: url("../../assets/fonts/WixMadeforDisplay-Regular_1.eot");
  src: local("Wix Madefor Display Regular"), local("WixMadeforDisplay-Regular"), url("../../assets/fonts/WixMadeforDisplay-Regular_1.eot?#iefix") format("embedded-opentype"), url("../../assets/fonts/WixMadeforDisplay-Regular_1.woff2") format("woff2"), url("../../assets/fonts/WixMadeforDisplay-Regular_1.woff") format("woff"), url("../../assets/fonts/WixMadeforDisplay-Regular_1.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
  ascent-override: 100%;
}
/* Generated by Glyphter (http://www.glyphter.com) on  Mon Dec 29 2025*/
@font-face {
  font-family: "prorealty";
  src: url("../../assets/fonts/prorealty.eot");
  src: url("../../assets/fonts/prorealty.eot?#iefix") format("embedded-opentype"), url("../../assets/fonts/prorealty.woff") format("woff"), url("../../assets/fonts/prorealty.ttf") format("truetype"), url("../../assets/fonts/prorealty.svg#prorealty") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
  ascent-override: 100%;
}
[class*=icon-]:before {
  display: inline-block;
  font-family: "prorealty";
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-air-vent:before {
  content: "A";
}

.icon-arrow-down:before {
  content: "B";
}

.icon-arrow-left:before {
  content: "C";
}

.icon-arrow-right:before {
  content: "D";
}

.icon-arrow-up:before {
  content: "E";
}

.icon-arrow-up-down:before {
  content: "F";
}

.icon-arrow-up-right:before {
  content: "G";
}

.icon-bell:before {
  content: "H";
}

.icon-blinds:before {
  content: "I";
}

.icon-brick-wall:before {
  content: "J";
}

.icon-building:before {
  content: "K";
}

.icon-building-2:before {
  content: "L";
}

.icon-calculator:before {
  content: "M";
}

.icon-calendar:before {
  content: "N";
}

.icon-calendar-clock:before {
  content: "O";
}

.icon-calendar-days:before {
  content: "P";
}

.icon-chart:before {
  content: "Q";
}

.icon-chart-minus:before {
  content: "R";
}

.icon-chart-plus:before {
  content: "S";
}

.icon-check:before {
  content: "T";
}

.icon-circle-parking:before {
  content: "U";
}

.icon-cog:before {
  content: "V";
}

.icon-container:before {
  content: "W";
}

.icon-copy:before {
  content: "X";
}

.icon-cross:before {
  content: "Y";
}

.icon-door-closed:before {
  content: "Z";
}

.icon-download:before {
  content: "a";
}

.icon-eraser:before {
  content: "b";
}

.icon-expand:before {
  content: "c";
}

.icon-eye:before {
  content: "d";
}

.icon-eye-off:before {
  content: "e";
}

.icon-file-text:before {
  content: "f";
}

.icon-flame:before {
  content: "g";
}

.icon-gem:before {
  content: "h";
}

.icon-gift:before {
  content: "i";
}

.icon-grid-2x2:before {
  content: "j";
}

.icon-hand:before {
  content: "k";
}

.icon-hand-coins:before {
  content: "l";
}

.icon-handshake:before {
  content: "m";
}

.icon-hard-hat:before {
  content: "n";
}

.icon-haze:before {
  content: "o";
}

.icon-heart:before {
  content: "p";
}

.icon-heart-minus:before {
  content: "q";
}

.icon-heart-plus:before {
  content: "r";
}

.icon-house:before {
  content: "s";
}

.icon-house-wifi:before {
  content: "t";
}

.icon-info:before {
  content: "u";
}

.icon-key-round:before {
  content: "v";
}

.icon-key-square:before {
  content: "w";
}

.icon-landmark:before {
  content: "x";
}

.icon-link:before {
  content: "y";
}

.icon-loader:before {
  content: "z";
}

.icon-mail:before {
  content: "0";
}

.icon-map-pin:before {
  content: "1";
}

.icon-map-pinned:before {
  content: "2";
}

.icon-max:before {
  content: "3";
}

.icon-menu:before {
  content: "4";
}

.icon-message-circle:before {
  content: "5";
}

.icon-move-vertical:before {
  content: "6";
}

.icon-paint-roller:before {
  content: "7";
}

.icon-paperclip:before {
  content: "8";
}

.icon-phone:before {
  content: "9";
}

.icon-phone-filled:before {
  content: "!";
}

.icon-printer:before {
  content: '"';
}

.icon-save:before {
  content: "#";
}

.icon-scale:before {
  content: "$";
}

.icon-search:before {
  content: "%";
}

.icon-settings:before {
  content: "&";
}

.icon-settings-2:before {
  content: "'";
}

.icon-share:before {
  content: "(";
}

.icon-share-2:before {
  content: ")";
}

.icon-shower-hand:before {
  content: "*";
}

.icon-sofa:before {
  content: "+";
}

.icon-sparkles:before {
  content: ",";
}

.icon-square:before {
  content: "-";
}

.icon-square-checked:before {
  content: ".";
}

.icon-star:before {
  content: "/";
}

.icon-star-filled:before {
  content: "[";
}

.icon-store:before {
  content: "\\";
}

.icon-swatch-book:before {
  content: "]";
}

.icon-telegram:before {
  content: "^";
}

.icon-toilet:before {
  content: "_";
}

.icon-tool-case:before {
  content: "`";
}

.icon-trash:before {
  content: "{";
}

.icon-utensils:before {
  content: "|";
}

.icon-vk:before {
  content: "}";
}

.icon-wallet:before {
  content: "~";
}

.icon-whatsapp:before {
  content: "?";
}

:root {
  --white: #ffffff;
  --white-80: #ffffffcc;
  --light-grey: #f2f3f6;
  --grey-blue: #728494;
  --main: #1f4aaa;
  --main-80: #1f4aaacc;
  --main-50: #1f4aaa80;
  --navy: #0f2b66;
  --black: #2b2f35;
  --black-80: #2b2f35cc;
  --black-50: #2b2f3580;
  --green: #4fac7f;
  --yellow: #ffe870;
  --red: #b43c3c;
  --error: #b94141;
}

:root {
  --btn-size: 40px;
  --btn-padding-y: 13.5px;
  --btn-padding-x: 30px;
  --slides-gap: 10px;
}

.bg-white {
  background-color: #ffffff !important;
}
.bg-white-80 {
  background-color: rgba(255, 255, 255, 0.8) !important;
}
.bg-light-grey {
  background-color: #f2f3f6 !important;
}
.bg-grey-blue {
  background-color: #728494 !important;
}
.bg-main {
  background-color: #1f4aaa !important;
}
.bg-main-80 {
  background-color: rgba(31, 74, 170, 0.8) !important;
}
.bg-main-50 {
  background-color: rgba(31, 74, 170, 0.5019607843) !important;
}
.bg-navy {
  background-color: #0f2b66 !important;
}
.bg-black {
  background-color: #2b2f35 !important;
}
.bg-black-80 {
  background-color: rgba(43, 47, 53, 0.8) !important;
}
.bg-black-50 {
  background-color: rgba(43, 47, 53, 0.5019607843) !important;
}
.bg-green {
  background-color: #4fac7f !important;
}
.bg-yellow {
  background-color: #ffe870 !important;
}
.bg-red {
  background-color: #b43c3c !important;
}
.bg-error {
  background-color: #b94141 !important;
}
.bg-image {
  background-image: var(--bg-image);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.container {
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 1699.98px) {
  .container {
    width: 96%;
    padding: 0;
  }
}
@media (max-width: 999.98px) {
  .container {
    max-width: 100%;
    width: 100%;
    padding: 0 10px;
  }
}

.d-block {
  display: block !important;
}
.d-flex {
  display: flex !important;
}
.d-none {
  display: none !important;
}
.d-inline {
  display: inline !important;
}
.d-inline-block {
  display: inline-block !important;
}
@media (max-width: 1599.98px) {
  .d-xxxl-block {
    display: block !important;
  }
  .d-xxxl-flex {
    display: flex !important;
  }
  .d-xxxl-none {
    display: none !important;
  }
  .d-xxxl-inline {
    display: inline !important;
  }
  .d-xxxl-inline-block {
    display: inline-block !important;
  }
}
@media (max-width: 1399.98px) {
  .d-xxl-block {
    display: block !important;
  }
  .d-xxl-flex {
    display: flex !important;
  }
  .d-xxl-none {
    display: none !important;
  }
  .d-xxl-inline {
    display: inline !important;
  }
  .d-xxl-inline-block {
    display: inline-block !important;
  }
}
@media (max-width: 1199.98px) {
  .d-xl-block {
    display: block !important;
  }
  .d-xl-flex {
    display: flex !important;
  }
  .d-xl-none {
    display: none !important;
  }
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
}
@media (max-width: 999.98px) {
  .d-lg-block {
    display: block !important;
  }
  .d-lg-flex {
    display: flex !important;
  }
  .d-lg-none {
    display: none !important;
  }
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
}
@media (max-width: 719.98px) {
  .d-md-block {
    display: block !important;
  }
  .d-md-flex {
    display: flex !important;
  }
  .d-md-none {
    display: none !important;
  }
  .d-md-inline {
    display: inline !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
}
@media (max-width: 575.98px) {
  .d-sm-block {
    display: block !important;
  }
  .d-sm-flex {
    display: flex !important;
  }
  .d-sm-none {
    display: none !important;
  }
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
}

.gap-auto {
  gap: auto !important;
}
.gap-x-auto {
  column-gap: auto !important;
}
.gap-y-auto {
  row-gap: auto !important;
}
.gap-0 {
  gap: 0px !important;
}
.gap-x-0 {
  column-gap: 0px !important;
}
.gap-y-0 {
  row-gap: 0px !important;
}
.gap-5 {
  gap: 5px !important;
}
.gap-x-5 {
  column-gap: 5px !important;
}
.gap-y-5 {
  row-gap: 5px !important;
}
.gap-10 {
  gap: 10px !important;
}
.gap-x-10 {
  column-gap: 10px !important;
}
.gap-y-10 {
  row-gap: 10px !important;
}
.gap-15 {
  gap: 15px !important;
}
.gap-x-15 {
  column-gap: 15px !important;
}
.gap-y-15 {
  row-gap: 15px !important;
}
.gap-20 {
  gap: 20px !important;
}
.gap-x-20 {
  column-gap: 20px !important;
}
.gap-y-20 {
  row-gap: 20px !important;
}
.gap-25 {
  gap: 25px !important;
}
.gap-x-25 {
  column-gap: 25px !important;
}
.gap-y-25 {
  row-gap: 25px !important;
}
.gap-30 {
  gap: 30px !important;
}
.gap-x-30 {
  column-gap: 30px !important;
}
.gap-y-30 {
  row-gap: 30px !important;
}
.gap-35 {
  gap: 35px !important;
}
.gap-x-35 {
  column-gap: 35px !important;
}
.gap-y-35 {
  row-gap: 35px !important;
}
.gap-40 {
  gap: 40px !important;
}
.gap-x-40 {
  column-gap: 40px !important;
}
.gap-y-40 {
  row-gap: 40px !important;
}
.gap-45 {
  gap: 45px !important;
}
.gap-x-45 {
  column-gap: 45px !important;
}
.gap-y-45 {
  row-gap: 45px !important;
}
.gap-50 {
  gap: 50px !important;
}
.gap-x-50 {
  column-gap: 50px !important;
}
.gap-y-50 {
  row-gap: 50px !important;
}
.gap-55 {
  gap: 55px !important;
}
.gap-x-55 {
  column-gap: 55px !important;
}
.gap-y-55 {
  row-gap: 55px !important;
}
.gap-60 {
  gap: 60px !important;
}
.gap-x-60 {
  column-gap: 60px !important;
}
.gap-y-60 {
  row-gap: 60px !important;
}
.gap-65 {
  gap: 65px !important;
}
.gap-x-65 {
  column-gap: 65px !important;
}
.gap-y-65 {
  row-gap: 65px !important;
}
.gap-70 {
  gap: 70px !important;
}
.gap-x-70 {
  column-gap: 70px !important;
}
.gap-y-70 {
  row-gap: 70px !important;
}
.gap-75 {
  gap: 75px !important;
}
.gap-x-75 {
  column-gap: 75px !important;
}
.gap-y-75 {
  row-gap: 75px !important;
}
.gap-80 {
  gap: 80px !important;
}
.gap-x-80 {
  column-gap: 80px !important;
}
.gap-y-80 {
  row-gap: 80px !important;
}
.gap-85 {
  gap: 85px !important;
}
.gap-x-85 {
  column-gap: 85px !important;
}
.gap-y-85 {
  row-gap: 85px !important;
}
.gap-90 {
  gap: 90px !important;
}
.gap-x-90 {
  column-gap: 90px !important;
}
.gap-y-90 {
  row-gap: 90px !important;
}
.gap-95 {
  gap: 95px !important;
}
.gap-x-95 {
  column-gap: 95px !important;
}
.gap-y-95 {
  row-gap: 95px !important;
}
.gap-100 {
  gap: 100px !important;
}
.gap-x-100 {
  column-gap: 100px !important;
}
.gap-y-100 {
  row-gap: 100px !important;
}
@media (max-width: 1599.98px) {
  .gap-xxxl-auto {
    gap: auto !important;
  }
  .gap-xxxl-0 {
    gap: 0px !important;
  }
  .gap-xxxl-5 {
    gap: 5px !important;
  }
  .gap-xxxl-10 {
    gap: 10px !important;
  }
  .gap-xxxl-15 {
    gap: 15px !important;
  }
  .gap-xxxl-20 {
    gap: 20px !important;
  }
  .gap-xxxl-25 {
    gap: 25px !important;
  }
  .gap-xxxl-30 {
    gap: 30px !important;
  }
  .gap-xxxl-35 {
    gap: 35px !important;
  }
  .gap-xxxl-40 {
    gap: 40px !important;
  }
  .gap-xxxl-45 {
    gap: 45px !important;
  }
  .gap-xxxl-50 {
    gap: 50px !important;
  }
  .gap-xxxl-55 {
    gap: 55px !important;
  }
  .gap-xxxl-60 {
    gap: 60px !important;
  }
  .gap-xxxl-65 {
    gap: 65px !important;
  }
  .gap-xxxl-70 {
    gap: 70px !important;
  }
  .gap-xxxl-75 {
    gap: 75px !important;
  }
  .gap-xxxl-80 {
    gap: 80px !important;
  }
  .gap-xxxl-85 {
    gap: 85px !important;
  }
  .gap-xxxl-90 {
    gap: 90px !important;
  }
  .gap-xxxl-95 {
    gap: 95px !important;
  }
  .gap-xxxl-100 {
    gap: 100px !important;
  }
}
@media (max-width: 1599.98px) {
  .gap-x-xxxl-auto {
    column-gap: auto !important;
  }
  .gap-x-xxxl-0 {
    column-gap: 0px !important;
  }
  .gap-x-xxxl-5 {
    column-gap: 5px !important;
  }
  .gap-x-xxxl-10 {
    column-gap: 10px !important;
  }
  .gap-x-xxxl-15 {
    column-gap: 15px !important;
  }
  .gap-x-xxxl-20 {
    column-gap: 20px !important;
  }
  .gap-x-xxxl-25 {
    column-gap: 25px !important;
  }
  .gap-x-xxxl-30 {
    column-gap: 30px !important;
  }
  .gap-x-xxxl-35 {
    column-gap: 35px !important;
  }
  .gap-x-xxxl-40 {
    column-gap: 40px !important;
  }
  .gap-x-xxxl-45 {
    column-gap: 45px !important;
  }
  .gap-x-xxxl-50 {
    column-gap: 50px !important;
  }
  .gap-x-xxxl-55 {
    column-gap: 55px !important;
  }
  .gap-x-xxxl-60 {
    column-gap: 60px !important;
  }
  .gap-x-xxxl-65 {
    column-gap: 65px !important;
  }
  .gap-x-xxxl-70 {
    column-gap: 70px !important;
  }
  .gap-x-xxxl-75 {
    column-gap: 75px !important;
  }
  .gap-x-xxxl-80 {
    column-gap: 80px !important;
  }
  .gap-x-xxxl-85 {
    column-gap: 85px !important;
  }
  .gap-x-xxxl-90 {
    column-gap: 90px !important;
  }
  .gap-x-xxxl-95 {
    column-gap: 95px !important;
  }
  .gap-x-xxxl-100 {
    column-gap: 100px !important;
  }
}
@media (max-width: 1599.98px) {
  .gap-y-xxxl-auto {
    row-gap: auto !important;
  }
  .gap-y-xxxl-0 {
    row-gap: 0px !important;
  }
  .gap-y-xxxl-5 {
    row-gap: 5px !important;
  }
  .gap-y-xxxl-10 {
    row-gap: 10px !important;
  }
  .gap-y-xxxl-15 {
    row-gap: 15px !important;
  }
  .gap-y-xxxl-20 {
    row-gap: 20px !important;
  }
  .gap-y-xxxl-25 {
    row-gap: 25px !important;
  }
  .gap-y-xxxl-30 {
    row-gap: 30px !important;
  }
  .gap-y-xxxl-35 {
    row-gap: 35px !important;
  }
  .gap-y-xxxl-40 {
    row-gap: 40px !important;
  }
  .gap-y-xxxl-45 {
    row-gap: 45px !important;
  }
  .gap-y-xxxl-50 {
    row-gap: 50px !important;
  }
  .gap-y-xxxl-55 {
    row-gap: 55px !important;
  }
  .gap-y-xxxl-60 {
    row-gap: 60px !important;
  }
  .gap-y-xxxl-65 {
    row-gap: 65px !important;
  }
  .gap-y-xxxl-70 {
    row-gap: 70px !important;
  }
  .gap-y-xxxl-75 {
    row-gap: 75px !important;
  }
  .gap-y-xxxl-80 {
    row-gap: 80px !important;
  }
  .gap-y-xxxl-85 {
    row-gap: 85px !important;
  }
  .gap-y-xxxl-90 {
    row-gap: 90px !important;
  }
  .gap-y-xxxl-95 {
    row-gap: 95px !important;
  }
  .gap-y-xxxl-100 {
    row-gap: 100px !important;
  }
}
@media (max-width: 1399.98px) {
  .gap-xxl-auto {
    gap: auto !important;
  }
  .gap-xxl-0 {
    gap: 0px !important;
  }
  .gap-xxl-5 {
    gap: 5px !important;
  }
  .gap-xxl-10 {
    gap: 10px !important;
  }
  .gap-xxl-15 {
    gap: 15px !important;
  }
  .gap-xxl-20 {
    gap: 20px !important;
  }
  .gap-xxl-25 {
    gap: 25px !important;
  }
  .gap-xxl-30 {
    gap: 30px !important;
  }
  .gap-xxl-35 {
    gap: 35px !important;
  }
  .gap-xxl-40 {
    gap: 40px !important;
  }
  .gap-xxl-45 {
    gap: 45px !important;
  }
  .gap-xxl-50 {
    gap: 50px !important;
  }
  .gap-xxl-55 {
    gap: 55px !important;
  }
  .gap-xxl-60 {
    gap: 60px !important;
  }
  .gap-xxl-65 {
    gap: 65px !important;
  }
  .gap-xxl-70 {
    gap: 70px !important;
  }
  .gap-xxl-75 {
    gap: 75px !important;
  }
  .gap-xxl-80 {
    gap: 80px !important;
  }
  .gap-xxl-85 {
    gap: 85px !important;
  }
  .gap-xxl-90 {
    gap: 90px !important;
  }
  .gap-xxl-95 {
    gap: 95px !important;
  }
  .gap-xxl-100 {
    gap: 100px !important;
  }
}
@media (max-width: 1399.98px) {
  .gap-x-xxl-auto {
    column-gap: auto !important;
  }
  .gap-x-xxl-0 {
    column-gap: 0px !important;
  }
  .gap-x-xxl-5 {
    column-gap: 5px !important;
  }
  .gap-x-xxl-10 {
    column-gap: 10px !important;
  }
  .gap-x-xxl-15 {
    column-gap: 15px !important;
  }
  .gap-x-xxl-20 {
    column-gap: 20px !important;
  }
  .gap-x-xxl-25 {
    column-gap: 25px !important;
  }
  .gap-x-xxl-30 {
    column-gap: 30px !important;
  }
  .gap-x-xxl-35 {
    column-gap: 35px !important;
  }
  .gap-x-xxl-40 {
    column-gap: 40px !important;
  }
  .gap-x-xxl-45 {
    column-gap: 45px !important;
  }
  .gap-x-xxl-50 {
    column-gap: 50px !important;
  }
  .gap-x-xxl-55 {
    column-gap: 55px !important;
  }
  .gap-x-xxl-60 {
    column-gap: 60px !important;
  }
  .gap-x-xxl-65 {
    column-gap: 65px !important;
  }
  .gap-x-xxl-70 {
    column-gap: 70px !important;
  }
  .gap-x-xxl-75 {
    column-gap: 75px !important;
  }
  .gap-x-xxl-80 {
    column-gap: 80px !important;
  }
  .gap-x-xxl-85 {
    column-gap: 85px !important;
  }
  .gap-x-xxl-90 {
    column-gap: 90px !important;
  }
  .gap-x-xxl-95 {
    column-gap: 95px !important;
  }
  .gap-x-xxl-100 {
    column-gap: 100px !important;
  }
}
@media (max-width: 1399.98px) {
  .gap-y-xxl-auto {
    row-gap: auto !important;
  }
  .gap-y-xxl-0 {
    row-gap: 0px !important;
  }
  .gap-y-xxl-5 {
    row-gap: 5px !important;
  }
  .gap-y-xxl-10 {
    row-gap: 10px !important;
  }
  .gap-y-xxl-15 {
    row-gap: 15px !important;
  }
  .gap-y-xxl-20 {
    row-gap: 20px !important;
  }
  .gap-y-xxl-25 {
    row-gap: 25px !important;
  }
  .gap-y-xxl-30 {
    row-gap: 30px !important;
  }
  .gap-y-xxl-35 {
    row-gap: 35px !important;
  }
  .gap-y-xxl-40 {
    row-gap: 40px !important;
  }
  .gap-y-xxl-45 {
    row-gap: 45px !important;
  }
  .gap-y-xxl-50 {
    row-gap: 50px !important;
  }
  .gap-y-xxl-55 {
    row-gap: 55px !important;
  }
  .gap-y-xxl-60 {
    row-gap: 60px !important;
  }
  .gap-y-xxl-65 {
    row-gap: 65px !important;
  }
  .gap-y-xxl-70 {
    row-gap: 70px !important;
  }
  .gap-y-xxl-75 {
    row-gap: 75px !important;
  }
  .gap-y-xxl-80 {
    row-gap: 80px !important;
  }
  .gap-y-xxl-85 {
    row-gap: 85px !important;
  }
  .gap-y-xxl-90 {
    row-gap: 90px !important;
  }
  .gap-y-xxl-95 {
    row-gap: 95px !important;
  }
  .gap-y-xxl-100 {
    row-gap: 100px !important;
  }
}
@media (max-width: 1199.98px) {
  .gap-xl-auto {
    gap: auto !important;
  }
  .gap-xl-0 {
    gap: 0px !important;
  }
  .gap-xl-5 {
    gap: 5px !important;
  }
  .gap-xl-10 {
    gap: 10px !important;
  }
  .gap-xl-15 {
    gap: 15px !important;
  }
  .gap-xl-20 {
    gap: 20px !important;
  }
  .gap-xl-25 {
    gap: 25px !important;
  }
  .gap-xl-30 {
    gap: 30px !important;
  }
  .gap-xl-35 {
    gap: 35px !important;
  }
  .gap-xl-40 {
    gap: 40px !important;
  }
  .gap-xl-45 {
    gap: 45px !important;
  }
  .gap-xl-50 {
    gap: 50px !important;
  }
  .gap-xl-55 {
    gap: 55px !important;
  }
  .gap-xl-60 {
    gap: 60px !important;
  }
  .gap-xl-65 {
    gap: 65px !important;
  }
  .gap-xl-70 {
    gap: 70px !important;
  }
  .gap-xl-75 {
    gap: 75px !important;
  }
  .gap-xl-80 {
    gap: 80px !important;
  }
  .gap-xl-85 {
    gap: 85px !important;
  }
  .gap-xl-90 {
    gap: 90px !important;
  }
  .gap-xl-95 {
    gap: 95px !important;
  }
  .gap-xl-100 {
    gap: 100px !important;
  }
}
@media (max-width: 1199.98px) {
  .gap-x-xl-auto {
    column-gap: auto !important;
  }
  .gap-x-xl-0 {
    column-gap: 0px !important;
  }
  .gap-x-xl-5 {
    column-gap: 5px !important;
  }
  .gap-x-xl-10 {
    column-gap: 10px !important;
  }
  .gap-x-xl-15 {
    column-gap: 15px !important;
  }
  .gap-x-xl-20 {
    column-gap: 20px !important;
  }
  .gap-x-xl-25 {
    column-gap: 25px !important;
  }
  .gap-x-xl-30 {
    column-gap: 30px !important;
  }
  .gap-x-xl-35 {
    column-gap: 35px !important;
  }
  .gap-x-xl-40 {
    column-gap: 40px !important;
  }
  .gap-x-xl-45 {
    column-gap: 45px !important;
  }
  .gap-x-xl-50 {
    column-gap: 50px !important;
  }
  .gap-x-xl-55 {
    column-gap: 55px !important;
  }
  .gap-x-xl-60 {
    column-gap: 60px !important;
  }
  .gap-x-xl-65 {
    column-gap: 65px !important;
  }
  .gap-x-xl-70 {
    column-gap: 70px !important;
  }
  .gap-x-xl-75 {
    column-gap: 75px !important;
  }
  .gap-x-xl-80 {
    column-gap: 80px !important;
  }
  .gap-x-xl-85 {
    column-gap: 85px !important;
  }
  .gap-x-xl-90 {
    column-gap: 90px !important;
  }
  .gap-x-xl-95 {
    column-gap: 95px !important;
  }
  .gap-x-xl-100 {
    column-gap: 100px !important;
  }
}
@media (max-width: 1199.98px) {
  .gap-y-xl-auto {
    row-gap: auto !important;
  }
  .gap-y-xl-0 {
    row-gap: 0px !important;
  }
  .gap-y-xl-5 {
    row-gap: 5px !important;
  }
  .gap-y-xl-10 {
    row-gap: 10px !important;
  }
  .gap-y-xl-15 {
    row-gap: 15px !important;
  }
  .gap-y-xl-20 {
    row-gap: 20px !important;
  }
  .gap-y-xl-25 {
    row-gap: 25px !important;
  }
  .gap-y-xl-30 {
    row-gap: 30px !important;
  }
  .gap-y-xl-35 {
    row-gap: 35px !important;
  }
  .gap-y-xl-40 {
    row-gap: 40px !important;
  }
  .gap-y-xl-45 {
    row-gap: 45px !important;
  }
  .gap-y-xl-50 {
    row-gap: 50px !important;
  }
  .gap-y-xl-55 {
    row-gap: 55px !important;
  }
  .gap-y-xl-60 {
    row-gap: 60px !important;
  }
  .gap-y-xl-65 {
    row-gap: 65px !important;
  }
  .gap-y-xl-70 {
    row-gap: 70px !important;
  }
  .gap-y-xl-75 {
    row-gap: 75px !important;
  }
  .gap-y-xl-80 {
    row-gap: 80px !important;
  }
  .gap-y-xl-85 {
    row-gap: 85px !important;
  }
  .gap-y-xl-90 {
    row-gap: 90px !important;
  }
  .gap-y-xl-95 {
    row-gap: 95px !important;
  }
  .gap-y-xl-100 {
    row-gap: 100px !important;
  }
}
@media (max-width: 999.98px) {
  .gap-lg-auto {
    gap: auto !important;
  }
  .gap-lg-0 {
    gap: 0px !important;
  }
  .gap-lg-5 {
    gap: 5px !important;
  }
  .gap-lg-10 {
    gap: 10px !important;
  }
  .gap-lg-15 {
    gap: 15px !important;
  }
  .gap-lg-20 {
    gap: 20px !important;
  }
  .gap-lg-25 {
    gap: 25px !important;
  }
  .gap-lg-30 {
    gap: 30px !important;
  }
  .gap-lg-35 {
    gap: 35px !important;
  }
  .gap-lg-40 {
    gap: 40px !important;
  }
  .gap-lg-45 {
    gap: 45px !important;
  }
  .gap-lg-50 {
    gap: 50px !important;
  }
  .gap-lg-55 {
    gap: 55px !important;
  }
  .gap-lg-60 {
    gap: 60px !important;
  }
  .gap-lg-65 {
    gap: 65px !important;
  }
  .gap-lg-70 {
    gap: 70px !important;
  }
  .gap-lg-75 {
    gap: 75px !important;
  }
  .gap-lg-80 {
    gap: 80px !important;
  }
  .gap-lg-85 {
    gap: 85px !important;
  }
  .gap-lg-90 {
    gap: 90px !important;
  }
  .gap-lg-95 {
    gap: 95px !important;
  }
  .gap-lg-100 {
    gap: 100px !important;
  }
}
@media (max-width: 999.98px) {
  .gap-x-lg-auto {
    column-gap: auto !important;
  }
  .gap-x-lg-0 {
    column-gap: 0px !important;
  }
  .gap-x-lg-5 {
    column-gap: 5px !important;
  }
  .gap-x-lg-10 {
    column-gap: 10px !important;
  }
  .gap-x-lg-15 {
    column-gap: 15px !important;
  }
  .gap-x-lg-20 {
    column-gap: 20px !important;
  }
  .gap-x-lg-25 {
    column-gap: 25px !important;
  }
  .gap-x-lg-30 {
    column-gap: 30px !important;
  }
  .gap-x-lg-35 {
    column-gap: 35px !important;
  }
  .gap-x-lg-40 {
    column-gap: 40px !important;
  }
  .gap-x-lg-45 {
    column-gap: 45px !important;
  }
  .gap-x-lg-50 {
    column-gap: 50px !important;
  }
  .gap-x-lg-55 {
    column-gap: 55px !important;
  }
  .gap-x-lg-60 {
    column-gap: 60px !important;
  }
  .gap-x-lg-65 {
    column-gap: 65px !important;
  }
  .gap-x-lg-70 {
    column-gap: 70px !important;
  }
  .gap-x-lg-75 {
    column-gap: 75px !important;
  }
  .gap-x-lg-80 {
    column-gap: 80px !important;
  }
  .gap-x-lg-85 {
    column-gap: 85px !important;
  }
  .gap-x-lg-90 {
    column-gap: 90px !important;
  }
  .gap-x-lg-95 {
    column-gap: 95px !important;
  }
  .gap-x-lg-100 {
    column-gap: 100px !important;
  }
}
@media (max-width: 999.98px) {
  .gap-y-lg-auto {
    row-gap: auto !important;
  }
  .gap-y-lg-0 {
    row-gap: 0px !important;
  }
  .gap-y-lg-5 {
    row-gap: 5px !important;
  }
  .gap-y-lg-10 {
    row-gap: 10px !important;
  }
  .gap-y-lg-15 {
    row-gap: 15px !important;
  }
  .gap-y-lg-20 {
    row-gap: 20px !important;
  }
  .gap-y-lg-25 {
    row-gap: 25px !important;
  }
  .gap-y-lg-30 {
    row-gap: 30px !important;
  }
  .gap-y-lg-35 {
    row-gap: 35px !important;
  }
  .gap-y-lg-40 {
    row-gap: 40px !important;
  }
  .gap-y-lg-45 {
    row-gap: 45px !important;
  }
  .gap-y-lg-50 {
    row-gap: 50px !important;
  }
  .gap-y-lg-55 {
    row-gap: 55px !important;
  }
  .gap-y-lg-60 {
    row-gap: 60px !important;
  }
  .gap-y-lg-65 {
    row-gap: 65px !important;
  }
  .gap-y-lg-70 {
    row-gap: 70px !important;
  }
  .gap-y-lg-75 {
    row-gap: 75px !important;
  }
  .gap-y-lg-80 {
    row-gap: 80px !important;
  }
  .gap-y-lg-85 {
    row-gap: 85px !important;
  }
  .gap-y-lg-90 {
    row-gap: 90px !important;
  }
  .gap-y-lg-95 {
    row-gap: 95px !important;
  }
  .gap-y-lg-100 {
    row-gap: 100px !important;
  }
}
@media (max-width: 719.98px) {
  .gap-md-auto {
    gap: auto !important;
  }
  .gap-md-0 {
    gap: 0px !important;
  }
  .gap-md-5 {
    gap: 5px !important;
  }
  .gap-md-10 {
    gap: 10px !important;
  }
  .gap-md-15 {
    gap: 15px !important;
  }
  .gap-md-20 {
    gap: 20px !important;
  }
  .gap-md-25 {
    gap: 25px !important;
  }
  .gap-md-30 {
    gap: 30px !important;
  }
  .gap-md-35 {
    gap: 35px !important;
  }
  .gap-md-40 {
    gap: 40px !important;
  }
  .gap-md-45 {
    gap: 45px !important;
  }
  .gap-md-50 {
    gap: 50px !important;
  }
  .gap-md-55 {
    gap: 55px !important;
  }
  .gap-md-60 {
    gap: 60px !important;
  }
  .gap-md-65 {
    gap: 65px !important;
  }
  .gap-md-70 {
    gap: 70px !important;
  }
  .gap-md-75 {
    gap: 75px !important;
  }
  .gap-md-80 {
    gap: 80px !important;
  }
  .gap-md-85 {
    gap: 85px !important;
  }
  .gap-md-90 {
    gap: 90px !important;
  }
  .gap-md-95 {
    gap: 95px !important;
  }
  .gap-md-100 {
    gap: 100px !important;
  }
}
@media (max-width: 719.98px) {
  .gap-x-md-auto {
    column-gap: auto !important;
  }
  .gap-x-md-0 {
    column-gap: 0px !important;
  }
  .gap-x-md-5 {
    column-gap: 5px !important;
  }
  .gap-x-md-10 {
    column-gap: 10px !important;
  }
  .gap-x-md-15 {
    column-gap: 15px !important;
  }
  .gap-x-md-20 {
    column-gap: 20px !important;
  }
  .gap-x-md-25 {
    column-gap: 25px !important;
  }
  .gap-x-md-30 {
    column-gap: 30px !important;
  }
  .gap-x-md-35 {
    column-gap: 35px !important;
  }
  .gap-x-md-40 {
    column-gap: 40px !important;
  }
  .gap-x-md-45 {
    column-gap: 45px !important;
  }
  .gap-x-md-50 {
    column-gap: 50px !important;
  }
  .gap-x-md-55 {
    column-gap: 55px !important;
  }
  .gap-x-md-60 {
    column-gap: 60px !important;
  }
  .gap-x-md-65 {
    column-gap: 65px !important;
  }
  .gap-x-md-70 {
    column-gap: 70px !important;
  }
  .gap-x-md-75 {
    column-gap: 75px !important;
  }
  .gap-x-md-80 {
    column-gap: 80px !important;
  }
  .gap-x-md-85 {
    column-gap: 85px !important;
  }
  .gap-x-md-90 {
    column-gap: 90px !important;
  }
  .gap-x-md-95 {
    column-gap: 95px !important;
  }
  .gap-x-md-100 {
    column-gap: 100px !important;
  }
}
@media (max-width: 719.98px) {
  .gap-y-md-auto {
    row-gap: auto !important;
  }
  .gap-y-md-0 {
    row-gap: 0px !important;
  }
  .gap-y-md-5 {
    row-gap: 5px !important;
  }
  .gap-y-md-10 {
    row-gap: 10px !important;
  }
  .gap-y-md-15 {
    row-gap: 15px !important;
  }
  .gap-y-md-20 {
    row-gap: 20px !important;
  }
  .gap-y-md-25 {
    row-gap: 25px !important;
  }
  .gap-y-md-30 {
    row-gap: 30px !important;
  }
  .gap-y-md-35 {
    row-gap: 35px !important;
  }
  .gap-y-md-40 {
    row-gap: 40px !important;
  }
  .gap-y-md-45 {
    row-gap: 45px !important;
  }
  .gap-y-md-50 {
    row-gap: 50px !important;
  }
  .gap-y-md-55 {
    row-gap: 55px !important;
  }
  .gap-y-md-60 {
    row-gap: 60px !important;
  }
  .gap-y-md-65 {
    row-gap: 65px !important;
  }
  .gap-y-md-70 {
    row-gap: 70px !important;
  }
  .gap-y-md-75 {
    row-gap: 75px !important;
  }
  .gap-y-md-80 {
    row-gap: 80px !important;
  }
  .gap-y-md-85 {
    row-gap: 85px !important;
  }
  .gap-y-md-90 {
    row-gap: 90px !important;
  }
  .gap-y-md-95 {
    row-gap: 95px !important;
  }
  .gap-y-md-100 {
    row-gap: 100px !important;
  }
}
@media (max-width: 575.98px) {
  .gap-sm-auto {
    gap: auto !important;
  }
  .gap-sm-0 {
    gap: 0px !important;
  }
  .gap-sm-5 {
    gap: 5px !important;
  }
  .gap-sm-10 {
    gap: 10px !important;
  }
  .gap-sm-15 {
    gap: 15px !important;
  }
  .gap-sm-20 {
    gap: 20px !important;
  }
  .gap-sm-25 {
    gap: 25px !important;
  }
  .gap-sm-30 {
    gap: 30px !important;
  }
  .gap-sm-35 {
    gap: 35px !important;
  }
  .gap-sm-40 {
    gap: 40px !important;
  }
  .gap-sm-45 {
    gap: 45px !important;
  }
  .gap-sm-50 {
    gap: 50px !important;
  }
  .gap-sm-55 {
    gap: 55px !important;
  }
  .gap-sm-60 {
    gap: 60px !important;
  }
  .gap-sm-65 {
    gap: 65px !important;
  }
  .gap-sm-70 {
    gap: 70px !important;
  }
  .gap-sm-75 {
    gap: 75px !important;
  }
  .gap-sm-80 {
    gap: 80px !important;
  }
  .gap-sm-85 {
    gap: 85px !important;
  }
  .gap-sm-90 {
    gap: 90px !important;
  }
  .gap-sm-95 {
    gap: 95px !important;
  }
  .gap-sm-100 {
    gap: 100px !important;
  }
}
@media (max-width: 575.98px) {
  .gap-x-sm-auto {
    column-gap: auto !important;
  }
  .gap-x-sm-0 {
    column-gap: 0px !important;
  }
  .gap-x-sm-5 {
    column-gap: 5px !important;
  }
  .gap-x-sm-10 {
    column-gap: 10px !important;
  }
  .gap-x-sm-15 {
    column-gap: 15px !important;
  }
  .gap-x-sm-20 {
    column-gap: 20px !important;
  }
  .gap-x-sm-25 {
    column-gap: 25px !important;
  }
  .gap-x-sm-30 {
    column-gap: 30px !important;
  }
  .gap-x-sm-35 {
    column-gap: 35px !important;
  }
  .gap-x-sm-40 {
    column-gap: 40px !important;
  }
  .gap-x-sm-45 {
    column-gap: 45px !important;
  }
  .gap-x-sm-50 {
    column-gap: 50px !important;
  }
  .gap-x-sm-55 {
    column-gap: 55px !important;
  }
  .gap-x-sm-60 {
    column-gap: 60px !important;
  }
  .gap-x-sm-65 {
    column-gap: 65px !important;
  }
  .gap-x-sm-70 {
    column-gap: 70px !important;
  }
  .gap-x-sm-75 {
    column-gap: 75px !important;
  }
  .gap-x-sm-80 {
    column-gap: 80px !important;
  }
  .gap-x-sm-85 {
    column-gap: 85px !important;
  }
  .gap-x-sm-90 {
    column-gap: 90px !important;
  }
  .gap-x-sm-95 {
    column-gap: 95px !important;
  }
  .gap-x-sm-100 {
    column-gap: 100px !important;
  }
}
@media (max-width: 575.98px) {
  .gap-y-sm-auto {
    row-gap: auto !important;
  }
  .gap-y-sm-0 {
    row-gap: 0px !important;
  }
  .gap-y-sm-5 {
    row-gap: 5px !important;
  }
  .gap-y-sm-10 {
    row-gap: 10px !important;
  }
  .gap-y-sm-15 {
    row-gap: 15px !important;
  }
  .gap-y-sm-20 {
    row-gap: 20px !important;
  }
  .gap-y-sm-25 {
    row-gap: 25px !important;
  }
  .gap-y-sm-30 {
    row-gap: 30px !important;
  }
  .gap-y-sm-35 {
    row-gap: 35px !important;
  }
  .gap-y-sm-40 {
    row-gap: 40px !important;
  }
  .gap-y-sm-45 {
    row-gap: 45px !important;
  }
  .gap-y-sm-50 {
    row-gap: 50px !important;
  }
  .gap-y-sm-55 {
    row-gap: 55px !important;
  }
  .gap-y-sm-60 {
    row-gap: 60px !important;
  }
  .gap-y-sm-65 {
    row-gap: 65px !important;
  }
  .gap-y-sm-70 {
    row-gap: 70px !important;
  }
  .gap-y-sm-75 {
    row-gap: 75px !important;
  }
  .gap-y-sm-80 {
    row-gap: 80px !important;
  }
  .gap-y-sm-85 {
    row-gap: 85px !important;
  }
  .gap-y-sm-90 {
    row-gap: 90px !important;
  }
  .gap-y-sm-95 {
    row-gap: 95px !important;
  }
  .gap-y-sm-100 {
    row-gap: 100px !important;
  }
}

.flex-row {
  flex-direction: row !important;
}
.flex-column {
  flex-direction: column !important;
}
.flex-wrap {
  flex-wrap: wrap !important;
}
.flex-nowrap {
  flex-wrap: nowrap !important;
}
.flex-fill {
  flex: 1 0 0%;
}
.flex-fit {
  flex: 1 1 0%;
}
@media (max-width: 1599.98px) {
  .flex-xxxl-row {
    flex-direction: row !important;
  }
  .flex-xxxl-column {
    flex-direction: column !important;
  }
  .flex-xxxl-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xxxl-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xxxl-fill {
    flex: 1 0 0%;
  }
  .flex-xxxl-fit {
    flex: 1 1 0%;
  }
}
@media (max-width: 1399.98px) {
  .flex-xxl-row {
    flex-direction: row !important;
  }
  .flex-xxl-column {
    flex-direction: column !important;
  }
  .flex-xxl-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xxl-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xxl-fill {
    flex: 1 0 0%;
  }
  .flex-xxl-fit {
    flex: 1 1 0%;
  }
}
@media (max-width: 1199.98px) {
  .flex-xl-row {
    flex-direction: row !important;
  }
  .flex-xl-column {
    flex-direction: column !important;
  }
  .flex-xl-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xl-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xl-fill {
    flex: 1 0 0%;
  }
  .flex-xl-fit {
    flex: 1 1 0%;
  }
}
@media (max-width: 999.98px) {
  .flex-lg-row {
    flex-direction: row !important;
  }
  .flex-lg-column {
    flex-direction: column !important;
  }
  .flex-lg-wrap {
    flex-wrap: wrap !important;
  }
  .flex-lg-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-lg-fill {
    flex: 1 0 0%;
  }
  .flex-lg-fit {
    flex: 1 1 0%;
  }
}
@media (max-width: 719.98px) {
  .flex-md-row {
    flex-direction: row !important;
  }
  .flex-md-column {
    flex-direction: column !important;
  }
  .flex-md-wrap {
    flex-wrap: wrap !important;
  }
  .flex-md-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-md-fill {
    flex: 1 0 0%;
  }
  .flex-md-fit {
    flex: 1 1 0%;
  }
}
@media (max-width: 575.98px) {
  .flex-sm-row {
    flex-direction: row !important;
  }
  .flex-sm-column {
    flex-direction: column !important;
  }
  .flex-sm-wrap {
    flex-wrap: wrap !important;
  }
  .flex-sm-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-sm-fill {
    flex: 1 0 0%;
  }
  .flex-sm-fit {
    flex: 1 1 0%;
  }
}

.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;
}
.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;
}
@media (max-width: 1599.98px) {
  .align-xxxl-self-start {
    align-self: flex-start !important;
  }
  .align-xxxl-self-end {
    align-self: flex-end !important;
  }
  .align-xxxl-self-center {
    align-self: center !important;
  }
  .align-xxxl-self-baseline {
    align-self: baseline !important;
  }
  .align-xxxl-self-stretch {
    align-self: stretch !important;
  }
  .align-xxxl-items-start {
    align-items: flex-start !important;
  }
  .align-xxxl-items-end {
    align-items: flex-end !important;
  }
  .align-xxxl-items-center {
    align-items: center !important;
  }
  .align-xxxl-items-baseline {
    align-items: baseline !important;
  }
  .align-xxxl-items-stretch {
    align-items: stretch !important;
  }
}
@media (max-width: 1399.98px) {
  .align-xxl-self-start {
    align-self: flex-start !important;
  }
  .align-xxl-self-end {
    align-self: flex-end !important;
  }
  .align-xxl-self-center {
    align-self: center !important;
  }
  .align-xxl-self-baseline {
    align-self: baseline !important;
  }
  .align-xxl-self-stretch {
    align-self: stretch !important;
  }
  .align-xxl-items-start {
    align-items: flex-start !important;
  }
  .align-xxl-items-end {
    align-items: flex-end !important;
  }
  .align-xxl-items-center {
    align-items: center !important;
  }
  .align-xxl-items-baseline {
    align-items: baseline !important;
  }
  .align-xxl-items-stretch {
    align-items: stretch !important;
  }
}
@media (max-width: 1199.98px) {
  .align-xl-self-start {
    align-self: flex-start !important;
  }
  .align-xl-self-end {
    align-self: flex-end !important;
  }
  .align-xl-self-center {
    align-self: center !important;
  }
  .align-xl-self-baseline {
    align-self: baseline !important;
  }
  .align-xl-self-stretch {
    align-self: stretch !important;
  }
  .align-xl-items-start {
    align-items: flex-start !important;
  }
  .align-xl-items-end {
    align-items: flex-end !important;
  }
  .align-xl-items-center {
    align-items: center !important;
  }
  .align-xl-items-baseline {
    align-items: baseline !important;
  }
  .align-xl-items-stretch {
    align-items: stretch !important;
  }
}
@media (max-width: 999.98px) {
  .align-lg-self-start {
    align-self: flex-start !important;
  }
  .align-lg-self-end {
    align-self: flex-end !important;
  }
  .align-lg-self-center {
    align-self: center !important;
  }
  .align-lg-self-baseline {
    align-self: baseline !important;
  }
  .align-lg-self-stretch {
    align-self: stretch !important;
  }
  .align-lg-items-start {
    align-items: flex-start !important;
  }
  .align-lg-items-end {
    align-items: flex-end !important;
  }
  .align-lg-items-center {
    align-items: center !important;
  }
  .align-lg-items-baseline {
    align-items: baseline !important;
  }
  .align-lg-items-stretch {
    align-items: stretch !important;
  }
}
@media (max-width: 719.98px) {
  .align-md-self-start {
    align-self: flex-start !important;
  }
  .align-md-self-end {
    align-self: flex-end !important;
  }
  .align-md-self-center {
    align-self: center !important;
  }
  .align-md-self-baseline {
    align-self: baseline !important;
  }
  .align-md-self-stretch {
    align-self: stretch !important;
  }
  .align-md-items-start {
    align-items: flex-start !important;
  }
  .align-md-items-end {
    align-items: flex-end !important;
  }
  .align-md-items-center {
    align-items: center !important;
  }
  .align-md-items-baseline {
    align-items: baseline !important;
  }
  .align-md-items-stretch {
    align-items: stretch !important;
  }
}
@media (max-width: 575.98px) {
  .align-sm-self-start {
    align-self: flex-start !important;
  }
  .align-sm-self-end {
    align-self: flex-end !important;
  }
  .align-sm-self-center {
    align-self: center !important;
  }
  .align-sm-self-baseline {
    align-self: baseline !important;
  }
  .align-sm-self-stretch {
    align-self: stretch !important;
  }
  .align-sm-items-start {
    align-items: flex-start !important;
  }
  .align-sm-items-end {
    align-items: flex-end !important;
  }
  .align-sm-items-center {
    align-items: center !important;
  }
  .align-sm-items-baseline {
    align-items: baseline !important;
  }
  .align-sm-items-stretch {
    align-items: stretch !important;
  }
}

.justify-content-start {
  justify-content: flex-start !important;
}
.justify-content-center {
  justify-content: center !important;
}
.justify-content-end {
  justify-content: flex-end !important;
}
.justify-content-around {
  justify-content: space-around !important;
}
.justify-content-between {
  justify-content: space-between !important;
}
.justify-content-evenly {
  justify-content: space-evenly !important;
}
.justify-content-stretch {
  justify-content: stretch !important;
}
@media (max-width: 1599.98px) {
  .justify-xxxl-content-start {
    justify-content: flex-start !important;
  }
  .justify-xxxl-content-center {
    justify-content: center !important;
  }
  .justify-xxxl-content-end {
    justify-content: flex-end !important;
  }
  .justify-xxxl-content-around {
    justify-content: space-around !important;
  }
  .justify-xxxl-content-between {
    justify-content: space-between !important;
  }
  .justify-xxxl-content-evenly {
    justify-content: space-evenly !important;
  }
  .justify-xxxl-content-stretch {
    justify-content: stretch !important;
  }
}
@media (max-width: 1399.98px) {
  .justify-xxl-content-start {
    justify-content: flex-start !important;
  }
  .justify-xxl-content-center {
    justify-content: center !important;
  }
  .justify-xxl-content-end {
    justify-content: flex-end !important;
  }
  .justify-xxl-content-around {
    justify-content: space-around !important;
  }
  .justify-xxl-content-between {
    justify-content: space-between !important;
  }
  .justify-xxl-content-evenly {
    justify-content: space-evenly !important;
  }
  .justify-xxl-content-stretch {
    justify-content: stretch !important;
  }
}
@media (max-width: 1199.98px) {
  .justify-xl-content-start {
    justify-content: flex-start !important;
  }
  .justify-xl-content-center {
    justify-content: center !important;
  }
  .justify-xl-content-end {
    justify-content: flex-end !important;
  }
  .justify-xl-content-around {
    justify-content: space-around !important;
  }
  .justify-xl-content-between {
    justify-content: space-between !important;
  }
  .justify-xl-content-evenly {
    justify-content: space-evenly !important;
  }
  .justify-xl-content-stretch {
    justify-content: stretch !important;
  }
}
@media (max-width: 999.98px) {
  .justify-lg-content-start {
    justify-content: flex-start !important;
  }
  .justify-lg-content-center {
    justify-content: center !important;
  }
  .justify-lg-content-end {
    justify-content: flex-end !important;
  }
  .justify-lg-content-around {
    justify-content: space-around !important;
  }
  .justify-lg-content-between {
    justify-content: space-between !important;
  }
  .justify-lg-content-evenly {
    justify-content: space-evenly !important;
  }
  .justify-lg-content-stretch {
    justify-content: stretch !important;
  }
}
@media (max-width: 719.98px) {
  .justify-md-content-start {
    justify-content: flex-start !important;
  }
  .justify-md-content-center {
    justify-content: center !important;
  }
  .justify-md-content-end {
    justify-content: flex-end !important;
  }
  .justify-md-content-around {
    justify-content: space-around !important;
  }
  .justify-md-content-between {
    justify-content: space-between !important;
  }
  .justify-md-content-evenly {
    justify-content: space-evenly !important;
  }
  .justify-md-content-stretch {
    justify-content: stretch !important;
  }
}
@media (max-width: 575.98px) {
  .justify-sm-content-start {
    justify-content: flex-start !important;
  }
  .justify-sm-content-center {
    justify-content: center !important;
  }
  .justify-sm-content-end {
    justify-content: flex-end !important;
  }
  .justify-sm-content-around {
    justify-content: space-around !important;
  }
  .justify-sm-content-between {
    justify-content: space-between !important;
  }
  .justify-sm-content-evenly {
    justify-content: space-evenly !important;
  }
  .justify-sm-content-stretch {
    justify-content: stretch !important;
  }
}

.m-auto {
  margin: auto !important;
}
.mt-auto {
  margin-top: auto !important;
}
.mb-auto {
  margin-bottom: auto !important;
}
.ml-auto {
  margin-left: auto !important;
}
.mr-auto {
  margin-right: auto !important;
}
.mx-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}
.my-auto {
  margin-top: auto !important;
  margin-bottom: auto !important;
}
.m-0 {
  margin: 0px !important;
}
.mt-0 {
  margin-top: 0px !important;
}
.mb-0 {
  margin-bottom: 0px !important;
}
.ml-0 {
  margin-left: 0px !important;
}
.mr-0 {
  margin-right: 0px !important;
}
.mx-0 {
  margin-left: 0px !important;
  margin-right: 0px !important;
}
.my-0 {
  margin-top: 0px !important;
  margin-bottom: 0px !important;
}
.m-5 {
  margin: 5px !important;
}
.mt-5 {
  margin-top: 5px !important;
}
.mb-5 {
  margin-bottom: 5px !important;
}
.ml-5 {
  margin-left: 5px !important;
}
.mr-5 {
  margin-right: 5px !important;
}
.mx-5 {
  margin-left: 5px !important;
  margin-right: 5px !important;
}
.my-5 {
  margin-top: 5px !important;
  margin-bottom: 5px !important;
}
.m-10 {
  margin: 10px !important;
}
.mt-10 {
  margin-top: 10px !important;
}
.mb-10 {
  margin-bottom: 10px !important;
}
.ml-10 {
  margin-left: 10px !important;
}
.mr-10 {
  margin-right: 10px !important;
}
.mx-10 {
  margin-left: 10px !important;
  margin-right: 10px !important;
}
.my-10 {
  margin-top: 10px !important;
  margin-bottom: 10px !important;
}
.m-15 {
  margin: 15px !important;
}
.mt-15 {
  margin-top: 15px !important;
}
.mb-15 {
  margin-bottom: 15px !important;
}
.ml-15 {
  margin-left: 15px !important;
}
.mr-15 {
  margin-right: 15px !important;
}
.mx-15 {
  margin-left: 15px !important;
  margin-right: 15px !important;
}
.my-15 {
  margin-top: 15px !important;
  margin-bottom: 15px !important;
}
.m-20 {
  margin: 20px !important;
}
.mt-20 {
  margin-top: 20px !important;
}
.mb-20 {
  margin-bottom: 20px !important;
}
.ml-20 {
  margin-left: 20px !important;
}
.mr-20 {
  margin-right: 20px !important;
}
.mx-20 {
  margin-left: 20px !important;
  margin-right: 20px !important;
}
.my-20 {
  margin-top: 20px !important;
  margin-bottom: 20px !important;
}
.m-25 {
  margin: 25px !important;
}
.mt-25 {
  margin-top: 25px !important;
}
.mb-25 {
  margin-bottom: 25px !important;
}
.ml-25 {
  margin-left: 25px !important;
}
.mr-25 {
  margin-right: 25px !important;
}
.mx-25 {
  margin-left: 25px !important;
  margin-right: 25px !important;
}
.my-25 {
  margin-top: 25px !important;
  margin-bottom: 25px !important;
}
.m-30 {
  margin: 30px !important;
}
.mt-30 {
  margin-top: 30px !important;
}
.mb-30 {
  margin-bottom: 30px !important;
}
.ml-30 {
  margin-left: 30px !important;
}
.mr-30 {
  margin-right: 30px !important;
}
.mx-30 {
  margin-left: 30px !important;
  margin-right: 30px !important;
}
.my-30 {
  margin-top: 30px !important;
  margin-bottom: 30px !important;
}
.m-35 {
  margin: 35px !important;
}
.mt-35 {
  margin-top: 35px !important;
}
.mb-35 {
  margin-bottom: 35px !important;
}
.ml-35 {
  margin-left: 35px !important;
}
.mr-35 {
  margin-right: 35px !important;
}
.mx-35 {
  margin-left: 35px !important;
  margin-right: 35px !important;
}
.my-35 {
  margin-top: 35px !important;
  margin-bottom: 35px !important;
}
.m-40 {
  margin: 40px !important;
}
.mt-40 {
  margin-top: 40px !important;
}
.mb-40 {
  margin-bottom: 40px !important;
}
.ml-40 {
  margin-left: 40px !important;
}
.mr-40 {
  margin-right: 40px !important;
}
.mx-40 {
  margin-left: 40px !important;
  margin-right: 40px !important;
}
.my-40 {
  margin-top: 40px !important;
  margin-bottom: 40px !important;
}
.m-45 {
  margin: 45px !important;
}
.mt-45 {
  margin-top: 45px !important;
}
.mb-45 {
  margin-bottom: 45px !important;
}
.ml-45 {
  margin-left: 45px !important;
}
.mr-45 {
  margin-right: 45px !important;
}
.mx-45 {
  margin-left: 45px !important;
  margin-right: 45px !important;
}
.my-45 {
  margin-top: 45px !important;
  margin-bottom: 45px !important;
}
.m-50 {
  margin: 50px !important;
}
.mt-50 {
  margin-top: 50px !important;
}
.mb-50 {
  margin-bottom: 50px !important;
}
.ml-50 {
  margin-left: 50px !important;
}
.mr-50 {
  margin-right: 50px !important;
}
.mx-50 {
  margin-left: 50px !important;
  margin-right: 50px !important;
}
.my-50 {
  margin-top: 50px !important;
  margin-bottom: 50px !important;
}
.m-55 {
  margin: 55px !important;
}
.mt-55 {
  margin-top: 55px !important;
}
.mb-55 {
  margin-bottom: 55px !important;
}
.ml-55 {
  margin-left: 55px !important;
}
.mr-55 {
  margin-right: 55px !important;
}
.mx-55 {
  margin-left: 55px !important;
  margin-right: 55px !important;
}
.my-55 {
  margin-top: 55px !important;
  margin-bottom: 55px !important;
}
.m-60 {
  margin: 60px !important;
}
.mt-60 {
  margin-top: 60px !important;
}
.mb-60 {
  margin-bottom: 60px !important;
}
.ml-60 {
  margin-left: 60px !important;
}
.mr-60 {
  margin-right: 60px !important;
}
.mx-60 {
  margin-left: 60px !important;
  margin-right: 60px !important;
}
.my-60 {
  margin-top: 60px !important;
  margin-bottom: 60px !important;
}
.m-65 {
  margin: 65px !important;
}
.mt-65 {
  margin-top: 65px !important;
}
.mb-65 {
  margin-bottom: 65px !important;
}
.ml-65 {
  margin-left: 65px !important;
}
.mr-65 {
  margin-right: 65px !important;
}
.mx-65 {
  margin-left: 65px !important;
  margin-right: 65px !important;
}
.my-65 {
  margin-top: 65px !important;
  margin-bottom: 65px !important;
}
.m-70 {
  margin: 70px !important;
}
.mt-70 {
  margin-top: 70px !important;
}
.mb-70 {
  margin-bottom: 70px !important;
}
.ml-70 {
  margin-left: 70px !important;
}
.mr-70 {
  margin-right: 70px !important;
}
.mx-70 {
  margin-left: 70px !important;
  margin-right: 70px !important;
}
.my-70 {
  margin-top: 70px !important;
  margin-bottom: 70px !important;
}
.m-75 {
  margin: 75px !important;
}
.mt-75 {
  margin-top: 75px !important;
}
.mb-75 {
  margin-bottom: 75px !important;
}
.ml-75 {
  margin-left: 75px !important;
}
.mr-75 {
  margin-right: 75px !important;
}
.mx-75 {
  margin-left: 75px !important;
  margin-right: 75px !important;
}
.my-75 {
  margin-top: 75px !important;
  margin-bottom: 75px !important;
}
.m-80 {
  margin: 80px !important;
}
.mt-80 {
  margin-top: 80px !important;
}
.mb-80 {
  margin-bottom: 80px !important;
}
.ml-80 {
  margin-left: 80px !important;
}
.mr-80 {
  margin-right: 80px !important;
}
.mx-80 {
  margin-left: 80px !important;
  margin-right: 80px !important;
}
.my-80 {
  margin-top: 80px !important;
  margin-bottom: 80px !important;
}
.m-85 {
  margin: 85px !important;
}
.mt-85 {
  margin-top: 85px !important;
}
.mb-85 {
  margin-bottom: 85px !important;
}
.ml-85 {
  margin-left: 85px !important;
}
.mr-85 {
  margin-right: 85px !important;
}
.mx-85 {
  margin-left: 85px !important;
  margin-right: 85px !important;
}
.my-85 {
  margin-top: 85px !important;
  margin-bottom: 85px !important;
}
.m-90 {
  margin: 90px !important;
}
.mt-90 {
  margin-top: 90px !important;
}
.mb-90 {
  margin-bottom: 90px !important;
}
.ml-90 {
  margin-left: 90px !important;
}
.mr-90 {
  margin-right: 90px !important;
}
.mx-90 {
  margin-left: 90px !important;
  margin-right: 90px !important;
}
.my-90 {
  margin-top: 90px !important;
  margin-bottom: 90px !important;
}
.m-95 {
  margin: 95px !important;
}
.mt-95 {
  margin-top: 95px !important;
}
.mb-95 {
  margin-bottom: 95px !important;
}
.ml-95 {
  margin-left: 95px !important;
}
.mr-95 {
  margin-right: 95px !important;
}
.mx-95 {
  margin-left: 95px !important;
  margin-right: 95px !important;
}
.my-95 {
  margin-top: 95px !important;
  margin-bottom: 95px !important;
}
.m-100 {
  margin: 100px !important;
}
.mt-100 {
  margin-top: 100px !important;
}
.mb-100 {
  margin-bottom: 100px !important;
}
.ml-100 {
  margin-left: 100px !important;
}
.mr-100 {
  margin-right: 100px !important;
}
.mx-100 {
  margin-left: 100px !important;
  margin-right: 100px !important;
}
.my-100 {
  margin-top: 100px !important;
  margin-bottom: 100px !important;
}
@media (max-width: 1599.98px) {
  .m-xxxl-auto {
    margin: auto !important;
  }
  .m-xxxl-0 {
    margin: 0px !important;
  }
  .m-xxxl-5 {
    margin: 5px !important;
  }
  .m-xxxl-10 {
    margin: 10px !important;
  }
  .m-xxxl-15 {
    margin: 15px !important;
  }
  .m-xxxl-20 {
    margin: 20px !important;
  }
  .m-xxxl-25 {
    margin: 25px !important;
  }
  .m-xxxl-30 {
    margin: 30px !important;
  }
  .m-xxxl-35 {
    margin: 35px !important;
  }
  .m-xxxl-40 {
    margin: 40px !important;
  }
  .m-xxxl-45 {
    margin: 45px !important;
  }
  .m-xxxl-50 {
    margin: 50px !important;
  }
  .m-xxxl-55 {
    margin: 55px !important;
  }
  .m-xxxl-60 {
    margin: 60px !important;
  }
  .m-xxxl-65 {
    margin: 65px !important;
  }
  .m-xxxl-70 {
    margin: 70px !important;
  }
  .m-xxxl-75 {
    margin: 75px !important;
  }
  .m-xxxl-80 {
    margin: 80px !important;
  }
  .m-xxxl-85 {
    margin: 85px !important;
  }
  .m-xxxl-90 {
    margin: 90px !important;
  }
  .m-xxxl-95 {
    margin: 95px !important;
  }
  .m-xxxl-100 {
    margin: 100px !important;
  }
}
@media (max-width: 1599.98px) {
  .mt-xxxl-auto {
    margin-top: auto !important;
  }
  .mt-xxxl-0 {
    margin-top: 0px !important;
  }
  .mt-xxxl-5 {
    margin-top: 5px !important;
  }
  .mt-xxxl-10 {
    margin-top: 10px !important;
  }
  .mt-xxxl-15 {
    margin-top: 15px !important;
  }
  .mt-xxxl-20 {
    margin-top: 20px !important;
  }
  .mt-xxxl-25 {
    margin-top: 25px !important;
  }
  .mt-xxxl-30 {
    margin-top: 30px !important;
  }
  .mt-xxxl-35 {
    margin-top: 35px !important;
  }
  .mt-xxxl-40 {
    margin-top: 40px !important;
  }
  .mt-xxxl-45 {
    margin-top: 45px !important;
  }
  .mt-xxxl-50 {
    margin-top: 50px !important;
  }
  .mt-xxxl-55 {
    margin-top: 55px !important;
  }
  .mt-xxxl-60 {
    margin-top: 60px !important;
  }
  .mt-xxxl-65 {
    margin-top: 65px !important;
  }
  .mt-xxxl-70 {
    margin-top: 70px !important;
  }
  .mt-xxxl-75 {
    margin-top: 75px !important;
  }
  .mt-xxxl-80 {
    margin-top: 80px !important;
  }
  .mt-xxxl-85 {
    margin-top: 85px !important;
  }
  .mt-xxxl-90 {
    margin-top: 90px !important;
  }
  .mt-xxxl-95 {
    margin-top: 95px !important;
  }
  .mt-xxxl-100 {
    margin-top: 100px !important;
  }
}
@media (max-width: 1599.98px) {
  .mb-xxxl-auto {
    margin-bottom: auto !important;
  }
  .mb-xxxl-0 {
    margin-bottom: 0px !important;
  }
  .mb-xxxl-5 {
    margin-bottom: 5px !important;
  }
  .mb-xxxl-10 {
    margin-bottom: 10px !important;
  }
  .mb-xxxl-15 {
    margin-bottom: 15px !important;
  }
  .mb-xxxl-20 {
    margin-bottom: 20px !important;
  }
  .mb-xxxl-25 {
    margin-bottom: 25px !important;
  }
  .mb-xxxl-30 {
    margin-bottom: 30px !important;
  }
  .mb-xxxl-35 {
    margin-bottom: 35px !important;
  }
  .mb-xxxl-40 {
    margin-bottom: 40px !important;
  }
  .mb-xxxl-45 {
    margin-bottom: 45px !important;
  }
  .mb-xxxl-50 {
    margin-bottom: 50px !important;
  }
  .mb-xxxl-55 {
    margin-bottom: 55px !important;
  }
  .mb-xxxl-60 {
    margin-bottom: 60px !important;
  }
  .mb-xxxl-65 {
    margin-bottom: 65px !important;
  }
  .mb-xxxl-70 {
    margin-bottom: 70px !important;
  }
  .mb-xxxl-75 {
    margin-bottom: 75px !important;
  }
  .mb-xxxl-80 {
    margin-bottom: 80px !important;
  }
  .mb-xxxl-85 {
    margin-bottom: 85px !important;
  }
  .mb-xxxl-90 {
    margin-bottom: 90px !important;
  }
  .mb-xxxl-95 {
    margin-bottom: 95px !important;
  }
  .mb-xxxl-100 {
    margin-bottom: 100px !important;
  }
}
@media (max-width: 1599.98px) {
  .ml-xxxl-auto {
    margin-left: auto !important;
  }
  .ml-xxxl-0 {
    margin-left: 0px !important;
  }
  .ml-xxxl-5 {
    margin-left: 5px !important;
  }
  .ml-xxxl-10 {
    margin-left: 10px !important;
  }
  .ml-xxxl-15 {
    margin-left: 15px !important;
  }
  .ml-xxxl-20 {
    margin-left: 20px !important;
  }
  .ml-xxxl-25 {
    margin-left: 25px !important;
  }
  .ml-xxxl-30 {
    margin-left: 30px !important;
  }
  .ml-xxxl-35 {
    margin-left: 35px !important;
  }
  .ml-xxxl-40 {
    margin-left: 40px !important;
  }
  .ml-xxxl-45 {
    margin-left: 45px !important;
  }
  .ml-xxxl-50 {
    margin-left: 50px !important;
  }
  .ml-xxxl-55 {
    margin-left: 55px !important;
  }
  .ml-xxxl-60 {
    margin-left: 60px !important;
  }
  .ml-xxxl-65 {
    margin-left: 65px !important;
  }
  .ml-xxxl-70 {
    margin-left: 70px !important;
  }
  .ml-xxxl-75 {
    margin-left: 75px !important;
  }
  .ml-xxxl-80 {
    margin-left: 80px !important;
  }
  .ml-xxxl-85 {
    margin-left: 85px !important;
  }
  .ml-xxxl-90 {
    margin-left: 90px !important;
  }
  .ml-xxxl-95 {
    margin-left: 95px !important;
  }
  .ml-xxxl-100 {
    margin-left: 100px !important;
  }
}
@media (max-width: 1599.98px) {
  .mr-xxxl-auto {
    margin-right: auto !important;
  }
  .mr-xxxl-0 {
    margin-right: 0px !important;
  }
  .mr-xxxl-5 {
    margin-right: 5px !important;
  }
  .mr-xxxl-10 {
    margin-right: 10px !important;
  }
  .mr-xxxl-15 {
    margin-right: 15px !important;
  }
  .mr-xxxl-20 {
    margin-right: 20px !important;
  }
  .mr-xxxl-25 {
    margin-right: 25px !important;
  }
  .mr-xxxl-30 {
    margin-right: 30px !important;
  }
  .mr-xxxl-35 {
    margin-right: 35px !important;
  }
  .mr-xxxl-40 {
    margin-right: 40px !important;
  }
  .mr-xxxl-45 {
    margin-right: 45px !important;
  }
  .mr-xxxl-50 {
    margin-right: 50px !important;
  }
  .mr-xxxl-55 {
    margin-right: 55px !important;
  }
  .mr-xxxl-60 {
    margin-right: 60px !important;
  }
  .mr-xxxl-65 {
    margin-right: 65px !important;
  }
  .mr-xxxl-70 {
    margin-right: 70px !important;
  }
  .mr-xxxl-75 {
    margin-right: 75px !important;
  }
  .mr-xxxl-80 {
    margin-right: 80px !important;
  }
  .mr-xxxl-85 {
    margin-right: 85px !important;
  }
  .mr-xxxl-90 {
    margin-right: 90px !important;
  }
  .mr-xxxl-95 {
    margin-right: 95px !important;
  }
  .mr-xxxl-100 {
    margin-right: 100px !important;
  }
}
@media (max-width: 1599.98px) {
  .mx-xxxl-auto {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .mx-xxxl-0 {
    margin-left: 0px !important;
    margin-right: 0px !important;
  }
  .mx-xxxl-5 {
    margin-left: 5px !important;
    margin-right: 5px !important;
  }
  .mx-xxxl-10 {
    margin-left: 10px !important;
    margin-right: 10px !important;
  }
  .mx-xxxl-15 {
    margin-left: 15px !important;
    margin-right: 15px !important;
  }
  .mx-xxxl-20 {
    margin-left: 20px !important;
    margin-right: 20px !important;
  }
  .mx-xxxl-25 {
    margin-left: 25px !important;
    margin-right: 25px !important;
  }
  .mx-xxxl-30 {
    margin-left: 30px !important;
    margin-right: 30px !important;
  }
  .mx-xxxl-35 {
    margin-left: 35px !important;
    margin-right: 35px !important;
  }
  .mx-xxxl-40 {
    margin-left: 40px !important;
    margin-right: 40px !important;
  }
  .mx-xxxl-45 {
    margin-left: 45px !important;
    margin-right: 45px !important;
  }
  .mx-xxxl-50 {
    margin-left: 50px !important;
    margin-right: 50px !important;
  }
  .mx-xxxl-55 {
    margin-left: 55px !important;
    margin-right: 55px !important;
  }
  .mx-xxxl-60 {
    margin-left: 60px !important;
    margin-right: 60px !important;
  }
  .mx-xxxl-65 {
    margin-left: 65px !important;
    margin-right: 65px !important;
  }
  .mx-xxxl-70 {
    margin-left: 70px !important;
    margin-right: 70px !important;
  }
  .mx-xxxl-75 {
    margin-left: 75px !important;
    margin-right: 75px !important;
  }
  .mx-xxxl-80 {
    margin-left: 80px !important;
    margin-right: 80px !important;
  }
  .mx-xxxl-85 {
    margin-left: 85px !important;
    margin-right: 85px !important;
  }
  .mx-xxxl-90 {
    margin-left: 90px !important;
    margin-right: 90px !important;
  }
  .mx-xxxl-95 {
    margin-left: 95px !important;
    margin-right: 95px !important;
  }
  .mx-xxxl-100 {
    margin-left: 100px !important;
    margin-right: 100px !important;
  }
}
@media (max-width: 1599.98px) {
  .my-xxxl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .my-xxxl-0 {
    margin-top: 0px !important;
    margin-bottom: 0px !important;
  }
  .my-xxxl-5 {
    margin-top: 5px !important;
    margin-bottom: 5px !important;
  }
  .my-xxxl-10 {
    margin-top: 10px !important;
    margin-bottom: 10px !important;
  }
  .my-xxxl-15 {
    margin-top: 15px !important;
    margin-bottom: 15px !important;
  }
  .my-xxxl-20 {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
  }
  .my-xxxl-25 {
    margin-top: 25px !important;
    margin-bottom: 25px !important;
  }
  .my-xxxl-30 {
    margin-top: 30px !important;
    margin-bottom: 30px !important;
  }
  .my-xxxl-35 {
    margin-top: 35px !important;
    margin-bottom: 35px !important;
  }
  .my-xxxl-40 {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
  }
  .my-xxxl-45 {
    margin-top: 45px !important;
    margin-bottom: 45px !important;
  }
  .my-xxxl-50 {
    margin-top: 50px !important;
    margin-bottom: 50px !important;
  }
  .my-xxxl-55 {
    margin-top: 55px !important;
    margin-bottom: 55px !important;
  }
  .my-xxxl-60 {
    margin-top: 60px !important;
    margin-bottom: 60px !important;
  }
  .my-xxxl-65 {
    margin-top: 65px !important;
    margin-bottom: 65px !important;
  }
  .my-xxxl-70 {
    margin-top: 70px !important;
    margin-bottom: 70px !important;
  }
  .my-xxxl-75 {
    margin-top: 75px !important;
    margin-bottom: 75px !important;
  }
  .my-xxxl-80 {
    margin-top: 80px !important;
    margin-bottom: 80px !important;
  }
  .my-xxxl-85 {
    margin-top: 85px !important;
    margin-bottom: 85px !important;
  }
  .my-xxxl-90 {
    margin-top: 90px !important;
    margin-bottom: 90px !important;
  }
  .my-xxxl-95 {
    margin-top: 95px !important;
    margin-bottom: 95px !important;
  }
  .my-xxxl-100 {
    margin-top: 100px !important;
    margin-bottom: 100px !important;
  }
}
@media (max-width: 1399.98px) {
  .m-xxl-auto {
    margin: auto !important;
  }
  .m-xxl-0 {
    margin: 0px !important;
  }
  .m-xxl-5 {
    margin: 5px !important;
  }
  .m-xxl-10 {
    margin: 10px !important;
  }
  .m-xxl-15 {
    margin: 15px !important;
  }
  .m-xxl-20 {
    margin: 20px !important;
  }
  .m-xxl-25 {
    margin: 25px !important;
  }
  .m-xxl-30 {
    margin: 30px !important;
  }
  .m-xxl-35 {
    margin: 35px !important;
  }
  .m-xxl-40 {
    margin: 40px !important;
  }
  .m-xxl-45 {
    margin: 45px !important;
  }
  .m-xxl-50 {
    margin: 50px !important;
  }
  .m-xxl-55 {
    margin: 55px !important;
  }
  .m-xxl-60 {
    margin: 60px !important;
  }
  .m-xxl-65 {
    margin: 65px !important;
  }
  .m-xxl-70 {
    margin: 70px !important;
  }
  .m-xxl-75 {
    margin: 75px !important;
  }
  .m-xxl-80 {
    margin: 80px !important;
  }
  .m-xxl-85 {
    margin: 85px !important;
  }
  .m-xxl-90 {
    margin: 90px !important;
  }
  .m-xxl-95 {
    margin: 95px !important;
  }
  .m-xxl-100 {
    margin: 100px !important;
  }
}
@media (max-width: 1399.98px) {
  .mt-xxl-auto {
    margin-top: auto !important;
  }
  .mt-xxl-0 {
    margin-top: 0px !important;
  }
  .mt-xxl-5 {
    margin-top: 5px !important;
  }
  .mt-xxl-10 {
    margin-top: 10px !important;
  }
  .mt-xxl-15 {
    margin-top: 15px !important;
  }
  .mt-xxl-20 {
    margin-top: 20px !important;
  }
  .mt-xxl-25 {
    margin-top: 25px !important;
  }
  .mt-xxl-30 {
    margin-top: 30px !important;
  }
  .mt-xxl-35 {
    margin-top: 35px !important;
  }
  .mt-xxl-40 {
    margin-top: 40px !important;
  }
  .mt-xxl-45 {
    margin-top: 45px !important;
  }
  .mt-xxl-50 {
    margin-top: 50px !important;
  }
  .mt-xxl-55 {
    margin-top: 55px !important;
  }
  .mt-xxl-60 {
    margin-top: 60px !important;
  }
  .mt-xxl-65 {
    margin-top: 65px !important;
  }
  .mt-xxl-70 {
    margin-top: 70px !important;
  }
  .mt-xxl-75 {
    margin-top: 75px !important;
  }
  .mt-xxl-80 {
    margin-top: 80px !important;
  }
  .mt-xxl-85 {
    margin-top: 85px !important;
  }
  .mt-xxl-90 {
    margin-top: 90px !important;
  }
  .mt-xxl-95 {
    margin-top: 95px !important;
  }
  .mt-xxl-100 {
    margin-top: 100px !important;
  }
}
@media (max-width: 1399.98px) {
  .mb-xxl-auto {
    margin-bottom: auto !important;
  }
  .mb-xxl-0 {
    margin-bottom: 0px !important;
  }
  .mb-xxl-5 {
    margin-bottom: 5px !important;
  }
  .mb-xxl-10 {
    margin-bottom: 10px !important;
  }
  .mb-xxl-15 {
    margin-bottom: 15px !important;
  }
  .mb-xxl-20 {
    margin-bottom: 20px !important;
  }
  .mb-xxl-25 {
    margin-bottom: 25px !important;
  }
  .mb-xxl-30 {
    margin-bottom: 30px !important;
  }
  .mb-xxl-35 {
    margin-bottom: 35px !important;
  }
  .mb-xxl-40 {
    margin-bottom: 40px !important;
  }
  .mb-xxl-45 {
    margin-bottom: 45px !important;
  }
  .mb-xxl-50 {
    margin-bottom: 50px !important;
  }
  .mb-xxl-55 {
    margin-bottom: 55px !important;
  }
  .mb-xxl-60 {
    margin-bottom: 60px !important;
  }
  .mb-xxl-65 {
    margin-bottom: 65px !important;
  }
  .mb-xxl-70 {
    margin-bottom: 70px !important;
  }
  .mb-xxl-75 {
    margin-bottom: 75px !important;
  }
  .mb-xxl-80 {
    margin-bottom: 80px !important;
  }
  .mb-xxl-85 {
    margin-bottom: 85px !important;
  }
  .mb-xxl-90 {
    margin-bottom: 90px !important;
  }
  .mb-xxl-95 {
    margin-bottom: 95px !important;
  }
  .mb-xxl-100 {
    margin-bottom: 100px !important;
  }
}
@media (max-width: 1399.98px) {
  .ml-xxl-auto {
    margin-left: auto !important;
  }
  .ml-xxl-0 {
    margin-left: 0px !important;
  }
  .ml-xxl-5 {
    margin-left: 5px !important;
  }
  .ml-xxl-10 {
    margin-left: 10px !important;
  }
  .ml-xxl-15 {
    margin-left: 15px !important;
  }
  .ml-xxl-20 {
    margin-left: 20px !important;
  }
  .ml-xxl-25 {
    margin-left: 25px !important;
  }
  .ml-xxl-30 {
    margin-left: 30px !important;
  }
  .ml-xxl-35 {
    margin-left: 35px !important;
  }
  .ml-xxl-40 {
    margin-left: 40px !important;
  }
  .ml-xxl-45 {
    margin-left: 45px !important;
  }
  .ml-xxl-50 {
    margin-left: 50px !important;
  }
  .ml-xxl-55 {
    margin-left: 55px !important;
  }
  .ml-xxl-60 {
    margin-left: 60px !important;
  }
  .ml-xxl-65 {
    margin-left: 65px !important;
  }
  .ml-xxl-70 {
    margin-left: 70px !important;
  }
  .ml-xxl-75 {
    margin-left: 75px !important;
  }
  .ml-xxl-80 {
    margin-left: 80px !important;
  }
  .ml-xxl-85 {
    margin-left: 85px !important;
  }
  .ml-xxl-90 {
    margin-left: 90px !important;
  }
  .ml-xxl-95 {
    margin-left: 95px !important;
  }
  .ml-xxl-100 {
    margin-left: 100px !important;
  }
}
@media (max-width: 1399.98px) {
  .mr-xxl-auto {
    margin-right: auto !important;
  }
  .mr-xxl-0 {
    margin-right: 0px !important;
  }
  .mr-xxl-5 {
    margin-right: 5px !important;
  }
  .mr-xxl-10 {
    margin-right: 10px !important;
  }
  .mr-xxl-15 {
    margin-right: 15px !important;
  }
  .mr-xxl-20 {
    margin-right: 20px !important;
  }
  .mr-xxl-25 {
    margin-right: 25px !important;
  }
  .mr-xxl-30 {
    margin-right: 30px !important;
  }
  .mr-xxl-35 {
    margin-right: 35px !important;
  }
  .mr-xxl-40 {
    margin-right: 40px !important;
  }
  .mr-xxl-45 {
    margin-right: 45px !important;
  }
  .mr-xxl-50 {
    margin-right: 50px !important;
  }
  .mr-xxl-55 {
    margin-right: 55px !important;
  }
  .mr-xxl-60 {
    margin-right: 60px !important;
  }
  .mr-xxl-65 {
    margin-right: 65px !important;
  }
  .mr-xxl-70 {
    margin-right: 70px !important;
  }
  .mr-xxl-75 {
    margin-right: 75px !important;
  }
  .mr-xxl-80 {
    margin-right: 80px !important;
  }
  .mr-xxl-85 {
    margin-right: 85px !important;
  }
  .mr-xxl-90 {
    margin-right: 90px !important;
  }
  .mr-xxl-95 {
    margin-right: 95px !important;
  }
  .mr-xxl-100 {
    margin-right: 100px !important;
  }
}
@media (max-width: 1399.98px) {
  .mx-xxl-auto {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .mx-xxl-0 {
    margin-left: 0px !important;
    margin-right: 0px !important;
  }
  .mx-xxl-5 {
    margin-left: 5px !important;
    margin-right: 5px !important;
  }
  .mx-xxl-10 {
    margin-left: 10px !important;
    margin-right: 10px !important;
  }
  .mx-xxl-15 {
    margin-left: 15px !important;
    margin-right: 15px !important;
  }
  .mx-xxl-20 {
    margin-left: 20px !important;
    margin-right: 20px !important;
  }
  .mx-xxl-25 {
    margin-left: 25px !important;
    margin-right: 25px !important;
  }
  .mx-xxl-30 {
    margin-left: 30px !important;
    margin-right: 30px !important;
  }
  .mx-xxl-35 {
    margin-left: 35px !important;
    margin-right: 35px !important;
  }
  .mx-xxl-40 {
    margin-left: 40px !important;
    margin-right: 40px !important;
  }
  .mx-xxl-45 {
    margin-left: 45px !important;
    margin-right: 45px !important;
  }
  .mx-xxl-50 {
    margin-left: 50px !important;
    margin-right: 50px !important;
  }
  .mx-xxl-55 {
    margin-left: 55px !important;
    margin-right: 55px !important;
  }
  .mx-xxl-60 {
    margin-left: 60px !important;
    margin-right: 60px !important;
  }
  .mx-xxl-65 {
    margin-left: 65px !important;
    margin-right: 65px !important;
  }
  .mx-xxl-70 {
    margin-left: 70px !important;
    margin-right: 70px !important;
  }
  .mx-xxl-75 {
    margin-left: 75px !important;
    margin-right: 75px !important;
  }
  .mx-xxl-80 {
    margin-left: 80px !important;
    margin-right: 80px !important;
  }
  .mx-xxl-85 {
    margin-left: 85px !important;
    margin-right: 85px !important;
  }
  .mx-xxl-90 {
    margin-left: 90px !important;
    margin-right: 90px !important;
  }
  .mx-xxl-95 {
    margin-left: 95px !important;
    margin-right: 95px !important;
  }
  .mx-xxl-100 {
    margin-left: 100px !important;
    margin-right: 100px !important;
  }
}
@media (max-width: 1399.98px) {
  .my-xxl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .my-xxl-0 {
    margin-top: 0px !important;
    margin-bottom: 0px !important;
  }
  .my-xxl-5 {
    margin-top: 5px !important;
    margin-bottom: 5px !important;
  }
  .my-xxl-10 {
    margin-top: 10px !important;
    margin-bottom: 10px !important;
  }
  .my-xxl-15 {
    margin-top: 15px !important;
    margin-bottom: 15px !important;
  }
  .my-xxl-20 {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
  }
  .my-xxl-25 {
    margin-top: 25px !important;
    margin-bottom: 25px !important;
  }
  .my-xxl-30 {
    margin-top: 30px !important;
    margin-bottom: 30px !important;
  }
  .my-xxl-35 {
    margin-top: 35px !important;
    margin-bottom: 35px !important;
  }
  .my-xxl-40 {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
  }
  .my-xxl-45 {
    margin-top: 45px !important;
    margin-bottom: 45px !important;
  }
  .my-xxl-50 {
    margin-top: 50px !important;
    margin-bottom: 50px !important;
  }
  .my-xxl-55 {
    margin-top: 55px !important;
    margin-bottom: 55px !important;
  }
  .my-xxl-60 {
    margin-top: 60px !important;
    margin-bottom: 60px !important;
  }
  .my-xxl-65 {
    margin-top: 65px !important;
    margin-bottom: 65px !important;
  }
  .my-xxl-70 {
    margin-top: 70px !important;
    margin-bottom: 70px !important;
  }
  .my-xxl-75 {
    margin-top: 75px !important;
    margin-bottom: 75px !important;
  }
  .my-xxl-80 {
    margin-top: 80px !important;
    margin-bottom: 80px !important;
  }
  .my-xxl-85 {
    margin-top: 85px !important;
    margin-bottom: 85px !important;
  }
  .my-xxl-90 {
    margin-top: 90px !important;
    margin-bottom: 90px !important;
  }
  .my-xxl-95 {
    margin-top: 95px !important;
    margin-bottom: 95px !important;
  }
  .my-xxl-100 {
    margin-top: 100px !important;
    margin-bottom: 100px !important;
  }
}
@media (max-width: 1199.98px) {
  .m-xl-auto {
    margin: auto !important;
  }
  .m-xl-0 {
    margin: 0px !important;
  }
  .m-xl-5 {
    margin: 5px !important;
  }
  .m-xl-10 {
    margin: 10px !important;
  }
  .m-xl-15 {
    margin: 15px !important;
  }
  .m-xl-20 {
    margin: 20px !important;
  }
  .m-xl-25 {
    margin: 25px !important;
  }
  .m-xl-30 {
    margin: 30px !important;
  }
  .m-xl-35 {
    margin: 35px !important;
  }
  .m-xl-40 {
    margin: 40px !important;
  }
  .m-xl-45 {
    margin: 45px !important;
  }
  .m-xl-50 {
    margin: 50px !important;
  }
  .m-xl-55 {
    margin: 55px !important;
  }
  .m-xl-60 {
    margin: 60px !important;
  }
  .m-xl-65 {
    margin: 65px !important;
  }
  .m-xl-70 {
    margin: 70px !important;
  }
  .m-xl-75 {
    margin: 75px !important;
  }
  .m-xl-80 {
    margin: 80px !important;
  }
  .m-xl-85 {
    margin: 85px !important;
  }
  .m-xl-90 {
    margin: 90px !important;
  }
  .m-xl-95 {
    margin: 95px !important;
  }
  .m-xl-100 {
    margin: 100px !important;
  }
}
@media (max-width: 1199.98px) {
  .mt-xl-auto {
    margin-top: auto !important;
  }
  .mt-xl-0 {
    margin-top: 0px !important;
  }
  .mt-xl-5 {
    margin-top: 5px !important;
  }
  .mt-xl-10 {
    margin-top: 10px !important;
  }
  .mt-xl-15 {
    margin-top: 15px !important;
  }
  .mt-xl-20 {
    margin-top: 20px !important;
  }
  .mt-xl-25 {
    margin-top: 25px !important;
  }
  .mt-xl-30 {
    margin-top: 30px !important;
  }
  .mt-xl-35 {
    margin-top: 35px !important;
  }
  .mt-xl-40 {
    margin-top: 40px !important;
  }
  .mt-xl-45 {
    margin-top: 45px !important;
  }
  .mt-xl-50 {
    margin-top: 50px !important;
  }
  .mt-xl-55 {
    margin-top: 55px !important;
  }
  .mt-xl-60 {
    margin-top: 60px !important;
  }
  .mt-xl-65 {
    margin-top: 65px !important;
  }
  .mt-xl-70 {
    margin-top: 70px !important;
  }
  .mt-xl-75 {
    margin-top: 75px !important;
  }
  .mt-xl-80 {
    margin-top: 80px !important;
  }
  .mt-xl-85 {
    margin-top: 85px !important;
  }
  .mt-xl-90 {
    margin-top: 90px !important;
  }
  .mt-xl-95 {
    margin-top: 95px !important;
  }
  .mt-xl-100 {
    margin-top: 100px !important;
  }
}
@media (max-width: 1199.98px) {
  .mb-xl-auto {
    margin-bottom: auto !important;
  }
  .mb-xl-0 {
    margin-bottom: 0px !important;
  }
  .mb-xl-5 {
    margin-bottom: 5px !important;
  }
  .mb-xl-10 {
    margin-bottom: 10px !important;
  }
  .mb-xl-15 {
    margin-bottom: 15px !important;
  }
  .mb-xl-20 {
    margin-bottom: 20px !important;
  }
  .mb-xl-25 {
    margin-bottom: 25px !important;
  }
  .mb-xl-30 {
    margin-bottom: 30px !important;
  }
  .mb-xl-35 {
    margin-bottom: 35px !important;
  }
  .mb-xl-40 {
    margin-bottom: 40px !important;
  }
  .mb-xl-45 {
    margin-bottom: 45px !important;
  }
  .mb-xl-50 {
    margin-bottom: 50px !important;
  }
  .mb-xl-55 {
    margin-bottom: 55px !important;
  }
  .mb-xl-60 {
    margin-bottom: 60px !important;
  }
  .mb-xl-65 {
    margin-bottom: 65px !important;
  }
  .mb-xl-70 {
    margin-bottom: 70px !important;
  }
  .mb-xl-75 {
    margin-bottom: 75px !important;
  }
  .mb-xl-80 {
    margin-bottom: 80px !important;
  }
  .mb-xl-85 {
    margin-bottom: 85px !important;
  }
  .mb-xl-90 {
    margin-bottom: 90px !important;
  }
  .mb-xl-95 {
    margin-bottom: 95px !important;
  }
  .mb-xl-100 {
    margin-bottom: 100px !important;
  }
}
@media (max-width: 1199.98px) {
  .ml-xl-auto {
    margin-left: auto !important;
  }
  .ml-xl-0 {
    margin-left: 0px !important;
  }
  .ml-xl-5 {
    margin-left: 5px !important;
  }
  .ml-xl-10 {
    margin-left: 10px !important;
  }
  .ml-xl-15 {
    margin-left: 15px !important;
  }
  .ml-xl-20 {
    margin-left: 20px !important;
  }
  .ml-xl-25 {
    margin-left: 25px !important;
  }
  .ml-xl-30 {
    margin-left: 30px !important;
  }
  .ml-xl-35 {
    margin-left: 35px !important;
  }
  .ml-xl-40 {
    margin-left: 40px !important;
  }
  .ml-xl-45 {
    margin-left: 45px !important;
  }
  .ml-xl-50 {
    margin-left: 50px !important;
  }
  .ml-xl-55 {
    margin-left: 55px !important;
  }
  .ml-xl-60 {
    margin-left: 60px !important;
  }
  .ml-xl-65 {
    margin-left: 65px !important;
  }
  .ml-xl-70 {
    margin-left: 70px !important;
  }
  .ml-xl-75 {
    margin-left: 75px !important;
  }
  .ml-xl-80 {
    margin-left: 80px !important;
  }
  .ml-xl-85 {
    margin-left: 85px !important;
  }
  .ml-xl-90 {
    margin-left: 90px !important;
  }
  .ml-xl-95 {
    margin-left: 95px !important;
  }
  .ml-xl-100 {
    margin-left: 100px !important;
  }
}
@media (max-width: 1199.98px) {
  .mr-xl-auto {
    margin-right: auto !important;
  }
  .mr-xl-0 {
    margin-right: 0px !important;
  }
  .mr-xl-5 {
    margin-right: 5px !important;
  }
  .mr-xl-10 {
    margin-right: 10px !important;
  }
  .mr-xl-15 {
    margin-right: 15px !important;
  }
  .mr-xl-20 {
    margin-right: 20px !important;
  }
  .mr-xl-25 {
    margin-right: 25px !important;
  }
  .mr-xl-30 {
    margin-right: 30px !important;
  }
  .mr-xl-35 {
    margin-right: 35px !important;
  }
  .mr-xl-40 {
    margin-right: 40px !important;
  }
  .mr-xl-45 {
    margin-right: 45px !important;
  }
  .mr-xl-50 {
    margin-right: 50px !important;
  }
  .mr-xl-55 {
    margin-right: 55px !important;
  }
  .mr-xl-60 {
    margin-right: 60px !important;
  }
  .mr-xl-65 {
    margin-right: 65px !important;
  }
  .mr-xl-70 {
    margin-right: 70px !important;
  }
  .mr-xl-75 {
    margin-right: 75px !important;
  }
  .mr-xl-80 {
    margin-right: 80px !important;
  }
  .mr-xl-85 {
    margin-right: 85px !important;
  }
  .mr-xl-90 {
    margin-right: 90px !important;
  }
  .mr-xl-95 {
    margin-right: 95px !important;
  }
  .mr-xl-100 {
    margin-right: 100px !important;
  }
}
@media (max-width: 1199.98px) {
  .mx-xl-auto {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .mx-xl-0 {
    margin-left: 0px !important;
    margin-right: 0px !important;
  }
  .mx-xl-5 {
    margin-left: 5px !important;
    margin-right: 5px !important;
  }
  .mx-xl-10 {
    margin-left: 10px !important;
    margin-right: 10px !important;
  }
  .mx-xl-15 {
    margin-left: 15px !important;
    margin-right: 15px !important;
  }
  .mx-xl-20 {
    margin-left: 20px !important;
    margin-right: 20px !important;
  }
  .mx-xl-25 {
    margin-left: 25px !important;
    margin-right: 25px !important;
  }
  .mx-xl-30 {
    margin-left: 30px !important;
    margin-right: 30px !important;
  }
  .mx-xl-35 {
    margin-left: 35px !important;
    margin-right: 35px !important;
  }
  .mx-xl-40 {
    margin-left: 40px !important;
    margin-right: 40px !important;
  }
  .mx-xl-45 {
    margin-left: 45px !important;
    margin-right: 45px !important;
  }
  .mx-xl-50 {
    margin-left: 50px !important;
    margin-right: 50px !important;
  }
  .mx-xl-55 {
    margin-left: 55px !important;
    margin-right: 55px !important;
  }
  .mx-xl-60 {
    margin-left: 60px !important;
    margin-right: 60px !important;
  }
  .mx-xl-65 {
    margin-left: 65px !important;
    margin-right: 65px !important;
  }
  .mx-xl-70 {
    margin-left: 70px !important;
    margin-right: 70px !important;
  }
  .mx-xl-75 {
    margin-left: 75px !important;
    margin-right: 75px !important;
  }
  .mx-xl-80 {
    margin-left: 80px !important;
    margin-right: 80px !important;
  }
  .mx-xl-85 {
    margin-left: 85px !important;
    margin-right: 85px !important;
  }
  .mx-xl-90 {
    margin-left: 90px !important;
    margin-right: 90px !important;
  }
  .mx-xl-95 {
    margin-left: 95px !important;
    margin-right: 95px !important;
  }
  .mx-xl-100 {
    margin-left: 100px !important;
    margin-right: 100px !important;
  }
}
@media (max-width: 1199.98px) {
  .my-xl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .my-xl-0 {
    margin-top: 0px !important;
    margin-bottom: 0px !important;
  }
  .my-xl-5 {
    margin-top: 5px !important;
    margin-bottom: 5px !important;
  }
  .my-xl-10 {
    margin-top: 10px !important;
    margin-bottom: 10px !important;
  }
  .my-xl-15 {
    margin-top: 15px !important;
    margin-bottom: 15px !important;
  }
  .my-xl-20 {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
  }
  .my-xl-25 {
    margin-top: 25px !important;
    margin-bottom: 25px !important;
  }
  .my-xl-30 {
    margin-top: 30px !important;
    margin-bottom: 30px !important;
  }
  .my-xl-35 {
    margin-top: 35px !important;
    margin-bottom: 35px !important;
  }
  .my-xl-40 {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
  }
  .my-xl-45 {
    margin-top: 45px !important;
    margin-bottom: 45px !important;
  }
  .my-xl-50 {
    margin-top: 50px !important;
    margin-bottom: 50px !important;
  }
  .my-xl-55 {
    margin-top: 55px !important;
    margin-bottom: 55px !important;
  }
  .my-xl-60 {
    margin-top: 60px !important;
    margin-bottom: 60px !important;
  }
  .my-xl-65 {
    margin-top: 65px !important;
    margin-bottom: 65px !important;
  }
  .my-xl-70 {
    margin-top: 70px !important;
    margin-bottom: 70px !important;
  }
  .my-xl-75 {
    margin-top: 75px !important;
    margin-bottom: 75px !important;
  }
  .my-xl-80 {
    margin-top: 80px !important;
    margin-bottom: 80px !important;
  }
  .my-xl-85 {
    margin-top: 85px !important;
    margin-bottom: 85px !important;
  }
  .my-xl-90 {
    margin-top: 90px !important;
    margin-bottom: 90px !important;
  }
  .my-xl-95 {
    margin-top: 95px !important;
    margin-bottom: 95px !important;
  }
  .my-xl-100 {
    margin-top: 100px !important;
    margin-bottom: 100px !important;
  }
}
@media (max-width: 999.98px) {
  .m-lg-auto {
    margin: auto !important;
  }
  .m-lg-0 {
    margin: 0px !important;
  }
  .m-lg-5 {
    margin: 5px !important;
  }
  .m-lg-10 {
    margin: 10px !important;
  }
  .m-lg-15 {
    margin: 15px !important;
  }
  .m-lg-20 {
    margin: 20px !important;
  }
  .m-lg-25 {
    margin: 25px !important;
  }
  .m-lg-30 {
    margin: 30px !important;
  }
  .m-lg-35 {
    margin: 35px !important;
  }
  .m-lg-40 {
    margin: 40px !important;
  }
  .m-lg-45 {
    margin: 45px !important;
  }
  .m-lg-50 {
    margin: 50px !important;
  }
  .m-lg-55 {
    margin: 55px !important;
  }
  .m-lg-60 {
    margin: 60px !important;
  }
  .m-lg-65 {
    margin: 65px !important;
  }
  .m-lg-70 {
    margin: 70px !important;
  }
  .m-lg-75 {
    margin: 75px !important;
  }
  .m-lg-80 {
    margin: 80px !important;
  }
  .m-lg-85 {
    margin: 85px !important;
  }
  .m-lg-90 {
    margin: 90px !important;
  }
  .m-lg-95 {
    margin: 95px !important;
  }
  .m-lg-100 {
    margin: 100px !important;
  }
}
@media (max-width: 999.98px) {
  .mt-lg-auto {
    margin-top: auto !important;
  }
  .mt-lg-0 {
    margin-top: 0px !important;
  }
  .mt-lg-5 {
    margin-top: 5px !important;
  }
  .mt-lg-10 {
    margin-top: 10px !important;
  }
  .mt-lg-15 {
    margin-top: 15px !important;
  }
  .mt-lg-20 {
    margin-top: 20px !important;
  }
  .mt-lg-25 {
    margin-top: 25px !important;
  }
  .mt-lg-30 {
    margin-top: 30px !important;
  }
  .mt-lg-35 {
    margin-top: 35px !important;
  }
  .mt-lg-40 {
    margin-top: 40px !important;
  }
  .mt-lg-45 {
    margin-top: 45px !important;
  }
  .mt-lg-50 {
    margin-top: 50px !important;
  }
  .mt-lg-55 {
    margin-top: 55px !important;
  }
  .mt-lg-60 {
    margin-top: 60px !important;
  }
  .mt-lg-65 {
    margin-top: 65px !important;
  }
  .mt-lg-70 {
    margin-top: 70px !important;
  }
  .mt-lg-75 {
    margin-top: 75px !important;
  }
  .mt-lg-80 {
    margin-top: 80px !important;
  }
  .mt-lg-85 {
    margin-top: 85px !important;
  }
  .mt-lg-90 {
    margin-top: 90px !important;
  }
  .mt-lg-95 {
    margin-top: 95px !important;
  }
  .mt-lg-100 {
    margin-top: 100px !important;
  }
}
@media (max-width: 999.98px) {
  .mb-lg-auto {
    margin-bottom: auto !important;
  }
  .mb-lg-0 {
    margin-bottom: 0px !important;
  }
  .mb-lg-5 {
    margin-bottom: 5px !important;
  }
  .mb-lg-10 {
    margin-bottom: 10px !important;
  }
  .mb-lg-15 {
    margin-bottom: 15px !important;
  }
  .mb-lg-20 {
    margin-bottom: 20px !important;
  }
  .mb-lg-25 {
    margin-bottom: 25px !important;
  }
  .mb-lg-30 {
    margin-bottom: 30px !important;
  }
  .mb-lg-35 {
    margin-bottom: 35px !important;
  }
  .mb-lg-40 {
    margin-bottom: 40px !important;
  }
  .mb-lg-45 {
    margin-bottom: 45px !important;
  }
  .mb-lg-50 {
    margin-bottom: 50px !important;
  }
  .mb-lg-55 {
    margin-bottom: 55px !important;
  }
  .mb-lg-60 {
    margin-bottom: 60px !important;
  }
  .mb-lg-65 {
    margin-bottom: 65px !important;
  }
  .mb-lg-70 {
    margin-bottom: 70px !important;
  }
  .mb-lg-75 {
    margin-bottom: 75px !important;
  }
  .mb-lg-80 {
    margin-bottom: 80px !important;
  }
  .mb-lg-85 {
    margin-bottom: 85px !important;
  }
  .mb-lg-90 {
    margin-bottom: 90px !important;
  }
  .mb-lg-95 {
    margin-bottom: 95px !important;
  }
  .mb-lg-100 {
    margin-bottom: 100px !important;
  }
}
@media (max-width: 999.98px) {
  .ml-lg-auto {
    margin-left: auto !important;
  }
  .ml-lg-0 {
    margin-left: 0px !important;
  }
  .ml-lg-5 {
    margin-left: 5px !important;
  }
  .ml-lg-10 {
    margin-left: 10px !important;
  }
  .ml-lg-15 {
    margin-left: 15px !important;
  }
  .ml-lg-20 {
    margin-left: 20px !important;
  }
  .ml-lg-25 {
    margin-left: 25px !important;
  }
  .ml-lg-30 {
    margin-left: 30px !important;
  }
  .ml-lg-35 {
    margin-left: 35px !important;
  }
  .ml-lg-40 {
    margin-left: 40px !important;
  }
  .ml-lg-45 {
    margin-left: 45px !important;
  }
  .ml-lg-50 {
    margin-left: 50px !important;
  }
  .ml-lg-55 {
    margin-left: 55px !important;
  }
  .ml-lg-60 {
    margin-left: 60px !important;
  }
  .ml-lg-65 {
    margin-left: 65px !important;
  }
  .ml-lg-70 {
    margin-left: 70px !important;
  }
  .ml-lg-75 {
    margin-left: 75px !important;
  }
  .ml-lg-80 {
    margin-left: 80px !important;
  }
  .ml-lg-85 {
    margin-left: 85px !important;
  }
  .ml-lg-90 {
    margin-left: 90px !important;
  }
  .ml-lg-95 {
    margin-left: 95px !important;
  }
  .ml-lg-100 {
    margin-left: 100px !important;
  }
}
@media (max-width: 999.98px) {
  .mr-lg-auto {
    margin-right: auto !important;
  }
  .mr-lg-0 {
    margin-right: 0px !important;
  }
  .mr-lg-5 {
    margin-right: 5px !important;
  }
  .mr-lg-10 {
    margin-right: 10px !important;
  }
  .mr-lg-15 {
    margin-right: 15px !important;
  }
  .mr-lg-20 {
    margin-right: 20px !important;
  }
  .mr-lg-25 {
    margin-right: 25px !important;
  }
  .mr-lg-30 {
    margin-right: 30px !important;
  }
  .mr-lg-35 {
    margin-right: 35px !important;
  }
  .mr-lg-40 {
    margin-right: 40px !important;
  }
  .mr-lg-45 {
    margin-right: 45px !important;
  }
  .mr-lg-50 {
    margin-right: 50px !important;
  }
  .mr-lg-55 {
    margin-right: 55px !important;
  }
  .mr-lg-60 {
    margin-right: 60px !important;
  }
  .mr-lg-65 {
    margin-right: 65px !important;
  }
  .mr-lg-70 {
    margin-right: 70px !important;
  }
  .mr-lg-75 {
    margin-right: 75px !important;
  }
  .mr-lg-80 {
    margin-right: 80px !important;
  }
  .mr-lg-85 {
    margin-right: 85px !important;
  }
  .mr-lg-90 {
    margin-right: 90px !important;
  }
  .mr-lg-95 {
    margin-right: 95px !important;
  }
  .mr-lg-100 {
    margin-right: 100px !important;
  }
}
@media (max-width: 999.98px) {
  .mx-lg-auto {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .mx-lg-0 {
    margin-left: 0px !important;
    margin-right: 0px !important;
  }
  .mx-lg-5 {
    margin-left: 5px !important;
    margin-right: 5px !important;
  }
  .mx-lg-10 {
    margin-left: 10px !important;
    margin-right: 10px !important;
  }
  .mx-lg-15 {
    margin-left: 15px !important;
    margin-right: 15px !important;
  }
  .mx-lg-20 {
    margin-left: 20px !important;
    margin-right: 20px !important;
  }
  .mx-lg-25 {
    margin-left: 25px !important;
    margin-right: 25px !important;
  }
  .mx-lg-30 {
    margin-left: 30px !important;
    margin-right: 30px !important;
  }
  .mx-lg-35 {
    margin-left: 35px !important;
    margin-right: 35px !important;
  }
  .mx-lg-40 {
    margin-left: 40px !important;
    margin-right: 40px !important;
  }
  .mx-lg-45 {
    margin-left: 45px !important;
    margin-right: 45px !important;
  }
  .mx-lg-50 {
    margin-left: 50px !important;
    margin-right: 50px !important;
  }
  .mx-lg-55 {
    margin-left: 55px !important;
    margin-right: 55px !important;
  }
  .mx-lg-60 {
    margin-left: 60px !important;
    margin-right: 60px !important;
  }
  .mx-lg-65 {
    margin-left: 65px !important;
    margin-right: 65px !important;
  }
  .mx-lg-70 {
    margin-left: 70px !important;
    margin-right: 70px !important;
  }
  .mx-lg-75 {
    margin-left: 75px !important;
    margin-right: 75px !important;
  }
  .mx-lg-80 {
    margin-left: 80px !important;
    margin-right: 80px !important;
  }
  .mx-lg-85 {
    margin-left: 85px !important;
    margin-right: 85px !important;
  }
  .mx-lg-90 {
    margin-left: 90px !important;
    margin-right: 90px !important;
  }
  .mx-lg-95 {
    margin-left: 95px !important;
    margin-right: 95px !important;
  }
  .mx-lg-100 {
    margin-left: 100px !important;
    margin-right: 100px !important;
  }
}
@media (max-width: 999.98px) {
  .my-lg-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .my-lg-0 {
    margin-top: 0px !important;
    margin-bottom: 0px !important;
  }
  .my-lg-5 {
    margin-top: 5px !important;
    margin-bottom: 5px !important;
  }
  .my-lg-10 {
    margin-top: 10px !important;
    margin-bottom: 10px !important;
  }
  .my-lg-15 {
    margin-top: 15px !important;
    margin-bottom: 15px !important;
  }
  .my-lg-20 {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
  }
  .my-lg-25 {
    margin-top: 25px !important;
    margin-bottom: 25px !important;
  }
  .my-lg-30 {
    margin-top: 30px !important;
    margin-bottom: 30px !important;
  }
  .my-lg-35 {
    margin-top: 35px !important;
    margin-bottom: 35px !important;
  }
  .my-lg-40 {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
  }
  .my-lg-45 {
    margin-top: 45px !important;
    margin-bottom: 45px !important;
  }
  .my-lg-50 {
    margin-top: 50px !important;
    margin-bottom: 50px !important;
  }
  .my-lg-55 {
    margin-top: 55px !important;
    margin-bottom: 55px !important;
  }
  .my-lg-60 {
    margin-top: 60px !important;
    margin-bottom: 60px !important;
  }
  .my-lg-65 {
    margin-top: 65px !important;
    margin-bottom: 65px !important;
  }
  .my-lg-70 {
    margin-top: 70px !important;
    margin-bottom: 70px !important;
  }
  .my-lg-75 {
    margin-top: 75px !important;
    margin-bottom: 75px !important;
  }
  .my-lg-80 {
    margin-top: 80px !important;
    margin-bottom: 80px !important;
  }
  .my-lg-85 {
    margin-top: 85px !important;
    margin-bottom: 85px !important;
  }
  .my-lg-90 {
    margin-top: 90px !important;
    margin-bottom: 90px !important;
  }
  .my-lg-95 {
    margin-top: 95px !important;
    margin-bottom: 95px !important;
  }
  .my-lg-100 {
    margin-top: 100px !important;
    margin-bottom: 100px !important;
  }
}
@media (max-width: 719.98px) {
  .m-md-auto {
    margin: auto !important;
  }
  .m-md-0 {
    margin: 0px !important;
  }
  .m-md-5 {
    margin: 5px !important;
  }
  .m-md-10 {
    margin: 10px !important;
  }
  .m-md-15 {
    margin: 15px !important;
  }
  .m-md-20 {
    margin: 20px !important;
  }
  .m-md-25 {
    margin: 25px !important;
  }
  .m-md-30 {
    margin: 30px !important;
  }
  .m-md-35 {
    margin: 35px !important;
  }
  .m-md-40 {
    margin: 40px !important;
  }
  .m-md-45 {
    margin: 45px !important;
  }
  .m-md-50 {
    margin: 50px !important;
  }
  .m-md-55 {
    margin: 55px !important;
  }
  .m-md-60 {
    margin: 60px !important;
  }
  .m-md-65 {
    margin: 65px !important;
  }
  .m-md-70 {
    margin: 70px !important;
  }
  .m-md-75 {
    margin: 75px !important;
  }
  .m-md-80 {
    margin: 80px !important;
  }
  .m-md-85 {
    margin: 85px !important;
  }
  .m-md-90 {
    margin: 90px !important;
  }
  .m-md-95 {
    margin: 95px !important;
  }
  .m-md-100 {
    margin: 100px !important;
  }
}
@media (max-width: 719.98px) {
  .mt-md-auto {
    margin-top: auto !important;
  }
  .mt-md-0 {
    margin-top: 0px !important;
  }
  .mt-md-5 {
    margin-top: 5px !important;
  }
  .mt-md-10 {
    margin-top: 10px !important;
  }
  .mt-md-15 {
    margin-top: 15px !important;
  }
  .mt-md-20 {
    margin-top: 20px !important;
  }
  .mt-md-25 {
    margin-top: 25px !important;
  }
  .mt-md-30 {
    margin-top: 30px !important;
  }
  .mt-md-35 {
    margin-top: 35px !important;
  }
  .mt-md-40 {
    margin-top: 40px !important;
  }
  .mt-md-45 {
    margin-top: 45px !important;
  }
  .mt-md-50 {
    margin-top: 50px !important;
  }
  .mt-md-55 {
    margin-top: 55px !important;
  }
  .mt-md-60 {
    margin-top: 60px !important;
  }
  .mt-md-65 {
    margin-top: 65px !important;
  }
  .mt-md-70 {
    margin-top: 70px !important;
  }
  .mt-md-75 {
    margin-top: 75px !important;
  }
  .mt-md-80 {
    margin-top: 80px !important;
  }
  .mt-md-85 {
    margin-top: 85px !important;
  }
  .mt-md-90 {
    margin-top: 90px !important;
  }
  .mt-md-95 {
    margin-top: 95px !important;
  }
  .mt-md-100 {
    margin-top: 100px !important;
  }
}
@media (max-width: 719.98px) {
  .mb-md-auto {
    margin-bottom: auto !important;
  }
  .mb-md-0 {
    margin-bottom: 0px !important;
  }
  .mb-md-5 {
    margin-bottom: 5px !important;
  }
  .mb-md-10 {
    margin-bottom: 10px !important;
  }
  .mb-md-15 {
    margin-bottom: 15px !important;
  }
  .mb-md-20 {
    margin-bottom: 20px !important;
  }
  .mb-md-25 {
    margin-bottom: 25px !important;
  }
  .mb-md-30 {
    margin-bottom: 30px !important;
  }
  .mb-md-35 {
    margin-bottom: 35px !important;
  }
  .mb-md-40 {
    margin-bottom: 40px !important;
  }
  .mb-md-45 {
    margin-bottom: 45px !important;
  }
  .mb-md-50 {
    margin-bottom: 50px !important;
  }
  .mb-md-55 {
    margin-bottom: 55px !important;
  }
  .mb-md-60 {
    margin-bottom: 60px !important;
  }
  .mb-md-65 {
    margin-bottom: 65px !important;
  }
  .mb-md-70 {
    margin-bottom: 70px !important;
  }
  .mb-md-75 {
    margin-bottom: 75px !important;
  }
  .mb-md-80 {
    margin-bottom: 80px !important;
  }
  .mb-md-85 {
    margin-bottom: 85px !important;
  }
  .mb-md-90 {
    margin-bottom: 90px !important;
  }
  .mb-md-95 {
    margin-bottom: 95px !important;
  }
  .mb-md-100 {
    margin-bottom: 100px !important;
  }
}
@media (max-width: 719.98px) {
  .ml-md-auto {
    margin-left: auto !important;
  }
  .ml-md-0 {
    margin-left: 0px !important;
  }
  .ml-md-5 {
    margin-left: 5px !important;
  }
  .ml-md-10 {
    margin-left: 10px !important;
  }
  .ml-md-15 {
    margin-left: 15px !important;
  }
  .ml-md-20 {
    margin-left: 20px !important;
  }
  .ml-md-25 {
    margin-left: 25px !important;
  }
  .ml-md-30 {
    margin-left: 30px !important;
  }
  .ml-md-35 {
    margin-left: 35px !important;
  }
  .ml-md-40 {
    margin-left: 40px !important;
  }
  .ml-md-45 {
    margin-left: 45px !important;
  }
  .ml-md-50 {
    margin-left: 50px !important;
  }
  .ml-md-55 {
    margin-left: 55px !important;
  }
  .ml-md-60 {
    margin-left: 60px !important;
  }
  .ml-md-65 {
    margin-left: 65px !important;
  }
  .ml-md-70 {
    margin-left: 70px !important;
  }
  .ml-md-75 {
    margin-left: 75px !important;
  }
  .ml-md-80 {
    margin-left: 80px !important;
  }
  .ml-md-85 {
    margin-left: 85px !important;
  }
  .ml-md-90 {
    margin-left: 90px !important;
  }
  .ml-md-95 {
    margin-left: 95px !important;
  }
  .ml-md-100 {
    margin-left: 100px !important;
  }
}
@media (max-width: 719.98px) {
  .mr-md-auto {
    margin-right: auto !important;
  }
  .mr-md-0 {
    margin-right: 0px !important;
  }
  .mr-md-5 {
    margin-right: 5px !important;
  }
  .mr-md-10 {
    margin-right: 10px !important;
  }
  .mr-md-15 {
    margin-right: 15px !important;
  }
  .mr-md-20 {
    margin-right: 20px !important;
  }
  .mr-md-25 {
    margin-right: 25px !important;
  }
  .mr-md-30 {
    margin-right: 30px !important;
  }
  .mr-md-35 {
    margin-right: 35px !important;
  }
  .mr-md-40 {
    margin-right: 40px !important;
  }
  .mr-md-45 {
    margin-right: 45px !important;
  }
  .mr-md-50 {
    margin-right: 50px !important;
  }
  .mr-md-55 {
    margin-right: 55px !important;
  }
  .mr-md-60 {
    margin-right: 60px !important;
  }
  .mr-md-65 {
    margin-right: 65px !important;
  }
  .mr-md-70 {
    margin-right: 70px !important;
  }
  .mr-md-75 {
    margin-right: 75px !important;
  }
  .mr-md-80 {
    margin-right: 80px !important;
  }
  .mr-md-85 {
    margin-right: 85px !important;
  }
  .mr-md-90 {
    margin-right: 90px !important;
  }
  .mr-md-95 {
    margin-right: 95px !important;
  }
  .mr-md-100 {
    margin-right: 100px !important;
  }
}
@media (max-width: 719.98px) {
  .mx-md-auto {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .mx-md-0 {
    margin-left: 0px !important;
    margin-right: 0px !important;
  }
  .mx-md-5 {
    margin-left: 5px !important;
    margin-right: 5px !important;
  }
  .mx-md-10 {
    margin-left: 10px !important;
    margin-right: 10px !important;
  }
  .mx-md-15 {
    margin-left: 15px !important;
    margin-right: 15px !important;
  }
  .mx-md-20 {
    margin-left: 20px !important;
    margin-right: 20px !important;
  }
  .mx-md-25 {
    margin-left: 25px !important;
    margin-right: 25px !important;
  }
  .mx-md-30 {
    margin-left: 30px !important;
    margin-right: 30px !important;
  }
  .mx-md-35 {
    margin-left: 35px !important;
    margin-right: 35px !important;
  }
  .mx-md-40 {
    margin-left: 40px !important;
    margin-right: 40px !important;
  }
  .mx-md-45 {
    margin-left: 45px !important;
    margin-right: 45px !important;
  }
  .mx-md-50 {
    margin-left: 50px !important;
    margin-right: 50px !important;
  }
  .mx-md-55 {
    margin-left: 55px !important;
    margin-right: 55px !important;
  }
  .mx-md-60 {
    margin-left: 60px !important;
    margin-right: 60px !important;
  }
  .mx-md-65 {
    margin-left: 65px !important;
    margin-right: 65px !important;
  }
  .mx-md-70 {
    margin-left: 70px !important;
    margin-right: 70px !important;
  }
  .mx-md-75 {
    margin-left: 75px !important;
    margin-right: 75px !important;
  }
  .mx-md-80 {
    margin-left: 80px !important;
    margin-right: 80px !important;
  }
  .mx-md-85 {
    margin-left: 85px !important;
    margin-right: 85px !important;
  }
  .mx-md-90 {
    margin-left: 90px !important;
    margin-right: 90px !important;
  }
  .mx-md-95 {
    margin-left: 95px !important;
    margin-right: 95px !important;
  }
  .mx-md-100 {
    margin-left: 100px !important;
    margin-right: 100px !important;
  }
}
@media (max-width: 719.98px) {
  .my-md-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .my-md-0 {
    margin-top: 0px !important;
    margin-bottom: 0px !important;
  }
  .my-md-5 {
    margin-top: 5px !important;
    margin-bottom: 5px !important;
  }
  .my-md-10 {
    margin-top: 10px !important;
    margin-bottom: 10px !important;
  }
  .my-md-15 {
    margin-top: 15px !important;
    margin-bottom: 15px !important;
  }
  .my-md-20 {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
  }
  .my-md-25 {
    margin-top: 25px !important;
    margin-bottom: 25px !important;
  }
  .my-md-30 {
    margin-top: 30px !important;
    margin-bottom: 30px !important;
  }
  .my-md-35 {
    margin-top: 35px !important;
    margin-bottom: 35px !important;
  }
  .my-md-40 {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
  }
  .my-md-45 {
    margin-top: 45px !important;
    margin-bottom: 45px !important;
  }
  .my-md-50 {
    margin-top: 50px !important;
    margin-bottom: 50px !important;
  }
  .my-md-55 {
    margin-top: 55px !important;
    margin-bottom: 55px !important;
  }
  .my-md-60 {
    margin-top: 60px !important;
    margin-bottom: 60px !important;
  }
  .my-md-65 {
    margin-top: 65px !important;
    margin-bottom: 65px !important;
  }
  .my-md-70 {
    margin-top: 70px !important;
    margin-bottom: 70px !important;
  }
  .my-md-75 {
    margin-top: 75px !important;
    margin-bottom: 75px !important;
  }
  .my-md-80 {
    margin-top: 80px !important;
    margin-bottom: 80px !important;
  }
  .my-md-85 {
    margin-top: 85px !important;
    margin-bottom: 85px !important;
  }
  .my-md-90 {
    margin-top: 90px !important;
    margin-bottom: 90px !important;
  }
  .my-md-95 {
    margin-top: 95px !important;
    margin-bottom: 95px !important;
  }
  .my-md-100 {
    margin-top: 100px !important;
    margin-bottom: 100px !important;
  }
}
@media (max-width: 575.98px) {
  .m-sm-auto {
    margin: auto !important;
  }
  .m-sm-0 {
    margin: 0px !important;
  }
  .m-sm-5 {
    margin: 5px !important;
  }
  .m-sm-10 {
    margin: 10px !important;
  }
  .m-sm-15 {
    margin: 15px !important;
  }
  .m-sm-20 {
    margin: 20px !important;
  }
  .m-sm-25 {
    margin: 25px !important;
  }
  .m-sm-30 {
    margin: 30px !important;
  }
  .m-sm-35 {
    margin: 35px !important;
  }
  .m-sm-40 {
    margin: 40px !important;
  }
  .m-sm-45 {
    margin: 45px !important;
  }
  .m-sm-50 {
    margin: 50px !important;
  }
  .m-sm-55 {
    margin: 55px !important;
  }
  .m-sm-60 {
    margin: 60px !important;
  }
  .m-sm-65 {
    margin: 65px !important;
  }
  .m-sm-70 {
    margin: 70px !important;
  }
  .m-sm-75 {
    margin: 75px !important;
  }
  .m-sm-80 {
    margin: 80px !important;
  }
  .m-sm-85 {
    margin: 85px !important;
  }
  .m-sm-90 {
    margin: 90px !important;
  }
  .m-sm-95 {
    margin: 95px !important;
  }
  .m-sm-100 {
    margin: 100px !important;
  }
}
@media (max-width: 575.98px) {
  .mt-sm-auto {
    margin-top: auto !important;
  }
  .mt-sm-0 {
    margin-top: 0px !important;
  }
  .mt-sm-5 {
    margin-top: 5px !important;
  }
  .mt-sm-10 {
    margin-top: 10px !important;
  }
  .mt-sm-15 {
    margin-top: 15px !important;
  }
  .mt-sm-20 {
    margin-top: 20px !important;
  }
  .mt-sm-25 {
    margin-top: 25px !important;
  }
  .mt-sm-30 {
    margin-top: 30px !important;
  }
  .mt-sm-35 {
    margin-top: 35px !important;
  }
  .mt-sm-40 {
    margin-top: 40px !important;
  }
  .mt-sm-45 {
    margin-top: 45px !important;
  }
  .mt-sm-50 {
    margin-top: 50px !important;
  }
  .mt-sm-55 {
    margin-top: 55px !important;
  }
  .mt-sm-60 {
    margin-top: 60px !important;
  }
  .mt-sm-65 {
    margin-top: 65px !important;
  }
  .mt-sm-70 {
    margin-top: 70px !important;
  }
  .mt-sm-75 {
    margin-top: 75px !important;
  }
  .mt-sm-80 {
    margin-top: 80px !important;
  }
  .mt-sm-85 {
    margin-top: 85px !important;
  }
  .mt-sm-90 {
    margin-top: 90px !important;
  }
  .mt-sm-95 {
    margin-top: 95px !important;
  }
  .mt-sm-100 {
    margin-top: 100px !important;
  }
}
@media (max-width: 575.98px) {
  .mb-sm-auto {
    margin-bottom: auto !important;
  }
  .mb-sm-0 {
    margin-bottom: 0px !important;
  }
  .mb-sm-5 {
    margin-bottom: 5px !important;
  }
  .mb-sm-10 {
    margin-bottom: 10px !important;
  }
  .mb-sm-15 {
    margin-bottom: 15px !important;
  }
  .mb-sm-20 {
    margin-bottom: 20px !important;
  }
  .mb-sm-25 {
    margin-bottom: 25px !important;
  }
  .mb-sm-30 {
    margin-bottom: 30px !important;
  }
  .mb-sm-35 {
    margin-bottom: 35px !important;
  }
  .mb-sm-40 {
    margin-bottom: 40px !important;
  }
  .mb-sm-45 {
    margin-bottom: 45px !important;
  }
  .mb-sm-50 {
    margin-bottom: 50px !important;
  }
  .mb-sm-55 {
    margin-bottom: 55px !important;
  }
  .mb-sm-60 {
    margin-bottom: 60px !important;
  }
  .mb-sm-65 {
    margin-bottom: 65px !important;
  }
  .mb-sm-70 {
    margin-bottom: 70px !important;
  }
  .mb-sm-75 {
    margin-bottom: 75px !important;
  }
  .mb-sm-80 {
    margin-bottom: 80px !important;
  }
  .mb-sm-85 {
    margin-bottom: 85px !important;
  }
  .mb-sm-90 {
    margin-bottom: 90px !important;
  }
  .mb-sm-95 {
    margin-bottom: 95px !important;
  }
  .mb-sm-100 {
    margin-bottom: 100px !important;
  }
}
@media (max-width: 575.98px) {
  .ml-sm-auto {
    margin-left: auto !important;
  }
  .ml-sm-0 {
    margin-left: 0px !important;
  }
  .ml-sm-5 {
    margin-left: 5px !important;
  }
  .ml-sm-10 {
    margin-left: 10px !important;
  }
  .ml-sm-15 {
    margin-left: 15px !important;
  }
  .ml-sm-20 {
    margin-left: 20px !important;
  }
  .ml-sm-25 {
    margin-left: 25px !important;
  }
  .ml-sm-30 {
    margin-left: 30px !important;
  }
  .ml-sm-35 {
    margin-left: 35px !important;
  }
  .ml-sm-40 {
    margin-left: 40px !important;
  }
  .ml-sm-45 {
    margin-left: 45px !important;
  }
  .ml-sm-50 {
    margin-left: 50px !important;
  }
  .ml-sm-55 {
    margin-left: 55px !important;
  }
  .ml-sm-60 {
    margin-left: 60px !important;
  }
  .ml-sm-65 {
    margin-left: 65px !important;
  }
  .ml-sm-70 {
    margin-left: 70px !important;
  }
  .ml-sm-75 {
    margin-left: 75px !important;
  }
  .ml-sm-80 {
    margin-left: 80px !important;
  }
  .ml-sm-85 {
    margin-left: 85px !important;
  }
  .ml-sm-90 {
    margin-left: 90px !important;
  }
  .ml-sm-95 {
    margin-left: 95px !important;
  }
  .ml-sm-100 {
    margin-left: 100px !important;
  }
}
@media (max-width: 575.98px) {
  .mr-sm-auto {
    margin-right: auto !important;
  }
  .mr-sm-0 {
    margin-right: 0px !important;
  }
  .mr-sm-5 {
    margin-right: 5px !important;
  }
  .mr-sm-10 {
    margin-right: 10px !important;
  }
  .mr-sm-15 {
    margin-right: 15px !important;
  }
  .mr-sm-20 {
    margin-right: 20px !important;
  }
  .mr-sm-25 {
    margin-right: 25px !important;
  }
  .mr-sm-30 {
    margin-right: 30px !important;
  }
  .mr-sm-35 {
    margin-right: 35px !important;
  }
  .mr-sm-40 {
    margin-right: 40px !important;
  }
  .mr-sm-45 {
    margin-right: 45px !important;
  }
  .mr-sm-50 {
    margin-right: 50px !important;
  }
  .mr-sm-55 {
    margin-right: 55px !important;
  }
  .mr-sm-60 {
    margin-right: 60px !important;
  }
  .mr-sm-65 {
    margin-right: 65px !important;
  }
  .mr-sm-70 {
    margin-right: 70px !important;
  }
  .mr-sm-75 {
    margin-right: 75px !important;
  }
  .mr-sm-80 {
    margin-right: 80px !important;
  }
  .mr-sm-85 {
    margin-right: 85px !important;
  }
  .mr-sm-90 {
    margin-right: 90px !important;
  }
  .mr-sm-95 {
    margin-right: 95px !important;
  }
  .mr-sm-100 {
    margin-right: 100px !important;
  }
}
@media (max-width: 575.98px) {
  .mx-sm-auto {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .mx-sm-0 {
    margin-left: 0px !important;
    margin-right: 0px !important;
  }
  .mx-sm-5 {
    margin-left: 5px !important;
    margin-right: 5px !important;
  }
  .mx-sm-10 {
    margin-left: 10px !important;
    margin-right: 10px !important;
  }
  .mx-sm-15 {
    margin-left: 15px !important;
    margin-right: 15px !important;
  }
  .mx-sm-20 {
    margin-left: 20px !important;
    margin-right: 20px !important;
  }
  .mx-sm-25 {
    margin-left: 25px !important;
    margin-right: 25px !important;
  }
  .mx-sm-30 {
    margin-left: 30px !important;
    margin-right: 30px !important;
  }
  .mx-sm-35 {
    margin-left: 35px !important;
    margin-right: 35px !important;
  }
  .mx-sm-40 {
    margin-left: 40px !important;
    margin-right: 40px !important;
  }
  .mx-sm-45 {
    margin-left: 45px !important;
    margin-right: 45px !important;
  }
  .mx-sm-50 {
    margin-left: 50px !important;
    margin-right: 50px !important;
  }
  .mx-sm-55 {
    margin-left: 55px !important;
    margin-right: 55px !important;
  }
  .mx-sm-60 {
    margin-left: 60px !important;
    margin-right: 60px !important;
  }
  .mx-sm-65 {
    margin-left: 65px !important;
    margin-right: 65px !important;
  }
  .mx-sm-70 {
    margin-left: 70px !important;
    margin-right: 70px !important;
  }
  .mx-sm-75 {
    margin-left: 75px !important;
    margin-right: 75px !important;
  }
  .mx-sm-80 {
    margin-left: 80px !important;
    margin-right: 80px !important;
  }
  .mx-sm-85 {
    margin-left: 85px !important;
    margin-right: 85px !important;
  }
  .mx-sm-90 {
    margin-left: 90px !important;
    margin-right: 90px !important;
  }
  .mx-sm-95 {
    margin-left: 95px !important;
    margin-right: 95px !important;
  }
  .mx-sm-100 {
    margin-left: 100px !important;
    margin-right: 100px !important;
  }
}
@media (max-width: 575.98px) {
  .my-sm-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .my-sm-0 {
    margin-top: 0px !important;
    margin-bottom: 0px !important;
  }
  .my-sm-5 {
    margin-top: 5px !important;
    margin-bottom: 5px !important;
  }
  .my-sm-10 {
    margin-top: 10px !important;
    margin-bottom: 10px !important;
  }
  .my-sm-15 {
    margin-top: 15px !important;
    margin-bottom: 15px !important;
  }
  .my-sm-20 {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
  }
  .my-sm-25 {
    margin-top: 25px !important;
    margin-bottom: 25px !important;
  }
  .my-sm-30 {
    margin-top: 30px !important;
    margin-bottom: 30px !important;
  }
  .my-sm-35 {
    margin-top: 35px !important;
    margin-bottom: 35px !important;
  }
  .my-sm-40 {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
  }
  .my-sm-45 {
    margin-top: 45px !important;
    margin-bottom: 45px !important;
  }
  .my-sm-50 {
    margin-top: 50px !important;
    margin-bottom: 50px !important;
  }
  .my-sm-55 {
    margin-top: 55px !important;
    margin-bottom: 55px !important;
  }
  .my-sm-60 {
    margin-top: 60px !important;
    margin-bottom: 60px !important;
  }
  .my-sm-65 {
    margin-top: 65px !important;
    margin-bottom: 65px !important;
  }
  .my-sm-70 {
    margin-top: 70px !important;
    margin-bottom: 70px !important;
  }
  .my-sm-75 {
    margin-top: 75px !important;
    margin-bottom: 75px !important;
  }
  .my-sm-80 {
    margin-top: 80px !important;
    margin-bottom: 80px !important;
  }
  .my-sm-85 {
    margin-top: 85px !important;
    margin-bottom: 85px !important;
  }
  .my-sm-90 {
    margin-top: 90px !important;
    margin-bottom: 90px !important;
  }
  .my-sm-95 {
    margin-top: 95px !important;
    margin-bottom: 95px !important;
  }
  .my-sm-100 {
    margin-top: 100px !important;
    margin-bottom: 100px !important;
  }
}

.p-0 {
  padding: 0px !important;
}
.pt-0 {
  padding-top: 0px !important;
}
.pb-0 {
  padding-bottom: 0px !important;
}
.pl-0 {
  padding-left: 0px !important;
}
.pr-0 {
  padding-right: 0px !important;
}
.px-0 {
  padding-left: 0px !important;
  padding-right: 0px !important;
}
.py-0 {
  padding-top: 0px !important;
  padding-bottom: 0px !important;
}
.p-5 {
  padding: 5px !important;
}
.pt-5 {
  padding-top: 5px !important;
}
.pb-5 {
  padding-bottom: 5px !important;
}
.pl-5 {
  padding-left: 5px !important;
}
.pr-5 {
  padding-right: 5px !important;
}
.px-5 {
  padding-left: 5px !important;
  padding-right: 5px !important;
}
.py-5 {
  padding-top: 5px !important;
  padding-bottom: 5px !important;
}
.p-10 {
  padding: 10px !important;
}
.pt-10 {
  padding-top: 10px !important;
}
.pb-10 {
  padding-bottom: 10px !important;
}
.pl-10 {
  padding-left: 10px !important;
}
.pr-10 {
  padding-right: 10px !important;
}
.px-10 {
  padding-left: 10px !important;
  padding-right: 10px !important;
}
.py-10 {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}
.p-15 {
  padding: 15px !important;
}
.pt-15 {
  padding-top: 15px !important;
}
.pb-15 {
  padding-bottom: 15px !important;
}
.pl-15 {
  padding-left: 15px !important;
}
.pr-15 {
  padding-right: 15px !important;
}
.px-15 {
  padding-left: 15px !important;
  padding-right: 15px !important;
}
.py-15 {
  padding-top: 15px !important;
  padding-bottom: 15px !important;
}
.p-20 {
  padding: 20px !important;
}
.pt-20 {
  padding-top: 20px !important;
}
.pb-20 {
  padding-bottom: 20px !important;
}
.pl-20 {
  padding-left: 20px !important;
}
.pr-20 {
  padding-right: 20px !important;
}
.px-20 {
  padding-left: 20px !important;
  padding-right: 20px !important;
}
.py-20 {
  padding-top: 20px !important;
  padding-bottom: 20px !important;
}
.p-25 {
  padding: 25px !important;
}
.pt-25 {
  padding-top: 25px !important;
}
.pb-25 {
  padding-bottom: 25px !important;
}
.pl-25 {
  padding-left: 25px !important;
}
.pr-25 {
  padding-right: 25px !important;
}
.px-25 {
  padding-left: 25px !important;
  padding-right: 25px !important;
}
.py-25 {
  padding-top: 25px !important;
  padding-bottom: 25px !important;
}
.p-30 {
  padding: 30px !important;
}
.pt-30 {
  padding-top: 30px !important;
}
.pb-30 {
  padding-bottom: 30px !important;
}
.pl-30 {
  padding-left: 30px !important;
}
.pr-30 {
  padding-right: 30px !important;
}
.px-30 {
  padding-left: 30px !important;
  padding-right: 30px !important;
}
.py-30 {
  padding-top: 30px !important;
  padding-bottom: 30px !important;
}
.p-35 {
  padding: 35px !important;
}
.pt-35 {
  padding-top: 35px !important;
}
.pb-35 {
  padding-bottom: 35px !important;
}
.pl-35 {
  padding-left: 35px !important;
}
.pr-35 {
  padding-right: 35px !important;
}
.px-35 {
  padding-left: 35px !important;
  padding-right: 35px !important;
}
.py-35 {
  padding-top: 35px !important;
  padding-bottom: 35px !important;
}
.p-40 {
  padding: 40px !important;
}
.pt-40 {
  padding-top: 40px !important;
}
.pb-40 {
  padding-bottom: 40px !important;
}
.pl-40 {
  padding-left: 40px !important;
}
.pr-40 {
  padding-right: 40px !important;
}
.px-40 {
  padding-left: 40px !important;
  padding-right: 40px !important;
}
.py-40 {
  padding-top: 40px !important;
  padding-bottom: 40px !important;
}
.p-45 {
  padding: 45px !important;
}
.pt-45 {
  padding-top: 45px !important;
}
.pb-45 {
  padding-bottom: 45px !important;
}
.pl-45 {
  padding-left: 45px !important;
}
.pr-45 {
  padding-right: 45px !important;
}
.px-45 {
  padding-left: 45px !important;
  padding-right: 45px !important;
}
.py-45 {
  padding-top: 45px !important;
  padding-bottom: 45px !important;
}
.p-50 {
  padding: 50px !important;
}
.pt-50 {
  padding-top: 50px !important;
}
.pb-50 {
  padding-bottom: 50px !important;
}
.pl-50 {
  padding-left: 50px !important;
}
.pr-50 {
  padding-right: 50px !important;
}
.px-50 {
  padding-left: 50px !important;
  padding-right: 50px !important;
}
.py-50 {
  padding-top: 50px !important;
  padding-bottom: 50px !important;
}
.p-55 {
  padding: 55px !important;
}
.pt-55 {
  padding-top: 55px !important;
}
.pb-55 {
  padding-bottom: 55px !important;
}
.pl-55 {
  padding-left: 55px !important;
}
.pr-55 {
  padding-right: 55px !important;
}
.px-55 {
  padding-left: 55px !important;
  padding-right: 55px !important;
}
.py-55 {
  padding-top: 55px !important;
  padding-bottom: 55px !important;
}
.p-60 {
  padding: 60px !important;
}
.pt-60 {
  padding-top: 60px !important;
}
.pb-60 {
  padding-bottom: 60px !important;
}
.pl-60 {
  padding-left: 60px !important;
}
.pr-60 {
  padding-right: 60px !important;
}
.px-60 {
  padding-left: 60px !important;
  padding-right: 60px !important;
}
.py-60 {
  padding-top: 60px !important;
  padding-bottom: 60px !important;
}
.p-65 {
  padding: 65px !important;
}
.pt-65 {
  padding-top: 65px !important;
}
.pb-65 {
  padding-bottom: 65px !important;
}
.pl-65 {
  padding-left: 65px !important;
}
.pr-65 {
  padding-right: 65px !important;
}
.px-65 {
  padding-left: 65px !important;
  padding-right: 65px !important;
}
.py-65 {
  padding-top: 65px !important;
  padding-bottom: 65px !important;
}
.p-70 {
  padding: 70px !important;
}
.pt-70 {
  padding-top: 70px !important;
}
.pb-70 {
  padding-bottom: 70px !important;
}
.pl-70 {
  padding-left: 70px !important;
}
.pr-70 {
  padding-right: 70px !important;
}
.px-70 {
  padding-left: 70px !important;
  padding-right: 70px !important;
}
.py-70 {
  padding-top: 70px !important;
  padding-bottom: 70px !important;
}
.p-75 {
  padding: 75px !important;
}
.pt-75 {
  padding-top: 75px !important;
}
.pb-75 {
  padding-bottom: 75px !important;
}
.pl-75 {
  padding-left: 75px !important;
}
.pr-75 {
  padding-right: 75px !important;
}
.px-75 {
  padding-left: 75px !important;
  padding-right: 75px !important;
}
.py-75 {
  padding-top: 75px !important;
  padding-bottom: 75px !important;
}
.p-80 {
  padding: 80px !important;
}
.pt-80 {
  padding-top: 80px !important;
}
.pb-80 {
  padding-bottom: 80px !important;
}
.pl-80 {
  padding-left: 80px !important;
}
.pr-80 {
  padding-right: 80px !important;
}
.px-80 {
  padding-left: 80px !important;
  padding-right: 80px !important;
}
.py-80 {
  padding-top: 80px !important;
  padding-bottom: 80px !important;
}
.p-85 {
  padding: 85px !important;
}
.pt-85 {
  padding-top: 85px !important;
}
.pb-85 {
  padding-bottom: 85px !important;
}
.pl-85 {
  padding-left: 85px !important;
}
.pr-85 {
  padding-right: 85px !important;
}
.px-85 {
  padding-left: 85px !important;
  padding-right: 85px !important;
}
.py-85 {
  padding-top: 85px !important;
  padding-bottom: 85px !important;
}
.p-90 {
  padding: 90px !important;
}
.pt-90 {
  padding-top: 90px !important;
}
.pb-90 {
  padding-bottom: 90px !important;
}
.pl-90 {
  padding-left: 90px !important;
}
.pr-90 {
  padding-right: 90px !important;
}
.px-90 {
  padding-left: 90px !important;
  padding-right: 90px !important;
}
.py-90 {
  padding-top: 90px !important;
  padding-bottom: 90px !important;
}
.p-95 {
  padding: 95px !important;
}
.pt-95 {
  padding-top: 95px !important;
}
.pb-95 {
  padding-bottom: 95px !important;
}
.pl-95 {
  padding-left: 95px !important;
}
.pr-95 {
  padding-right: 95px !important;
}
.px-95 {
  padding-left: 95px !important;
  padding-right: 95px !important;
}
.py-95 {
  padding-top: 95px !important;
  padding-bottom: 95px !important;
}
.p-100 {
  padding: 100px !important;
}
.pt-100 {
  padding-top: 100px !important;
}
.pb-100 {
  padding-bottom: 100px !important;
}
.pl-100 {
  padding-left: 100px !important;
}
.pr-100 {
  padding-right: 100px !important;
}
.px-100 {
  padding-left: 100px !important;
  padding-right: 100px !important;
}
.py-100 {
  padding-top: 100px !important;
  padding-bottom: 100px !important;
}
@media (max-width: 1599.98px) {
  .p-xxxl-0 {
    padding: 0px !important;
  }
  .p-xxxl-5 {
    padding: 5px !important;
  }
  .p-xxxl-10 {
    padding: 10px !important;
  }
  .p-xxxl-15 {
    padding: 15px !important;
  }
  .p-xxxl-20 {
    padding: 20px !important;
  }
  .p-xxxl-25 {
    padding: 25px !important;
  }
  .p-xxxl-30 {
    padding: 30px !important;
  }
  .p-xxxl-35 {
    padding: 35px !important;
  }
  .p-xxxl-40 {
    padding: 40px !important;
  }
  .p-xxxl-45 {
    padding: 45px !important;
  }
  .p-xxxl-50 {
    padding: 50px !important;
  }
  .p-xxxl-55 {
    padding: 55px !important;
  }
  .p-xxxl-60 {
    padding: 60px !important;
  }
  .p-xxxl-65 {
    padding: 65px !important;
  }
  .p-xxxl-70 {
    padding: 70px !important;
  }
  .p-xxxl-75 {
    padding: 75px !important;
  }
  .p-xxxl-80 {
    padding: 80px !important;
  }
  .p-xxxl-85 {
    padding: 85px !important;
  }
  .p-xxxl-90 {
    padding: 90px !important;
  }
  .p-xxxl-95 {
    padding: 95px !important;
  }
  .p-xxxl-100 {
    padding: 100px !important;
  }
}
@media (max-width: 1599.98px) {
  .pt-xxxl-0 {
    padding-top: 0px !important;
  }
  .pt-xxxl-5 {
    padding-top: 5px !important;
  }
  .pt-xxxl-10 {
    padding-top: 10px !important;
  }
  .pt-xxxl-15 {
    padding-top: 15px !important;
  }
  .pt-xxxl-20 {
    padding-top: 20px !important;
  }
  .pt-xxxl-25 {
    padding-top: 25px !important;
  }
  .pt-xxxl-30 {
    padding-top: 30px !important;
  }
  .pt-xxxl-35 {
    padding-top: 35px !important;
  }
  .pt-xxxl-40 {
    padding-top: 40px !important;
  }
  .pt-xxxl-45 {
    padding-top: 45px !important;
  }
  .pt-xxxl-50 {
    padding-top: 50px !important;
  }
  .pt-xxxl-55 {
    padding-top: 55px !important;
  }
  .pt-xxxl-60 {
    padding-top: 60px !important;
  }
  .pt-xxxl-65 {
    padding-top: 65px !important;
  }
  .pt-xxxl-70 {
    padding-top: 70px !important;
  }
  .pt-xxxl-75 {
    padding-top: 75px !important;
  }
  .pt-xxxl-80 {
    padding-top: 80px !important;
  }
  .pt-xxxl-85 {
    padding-top: 85px !important;
  }
  .pt-xxxl-90 {
    padding-top: 90px !important;
  }
  .pt-xxxl-95 {
    padding-top: 95px !important;
  }
  .pt-xxxl-100 {
    padding-top: 100px !important;
  }
}
@media (max-width: 1599.98px) {
  .pb-xxxl-0 {
    padding-bottom: 0px !important;
  }
  .pb-xxxl-5 {
    padding-bottom: 5px !important;
  }
  .pb-xxxl-10 {
    padding-bottom: 10px !important;
  }
  .pb-xxxl-15 {
    padding-bottom: 15px !important;
  }
  .pb-xxxl-20 {
    padding-bottom: 20px !important;
  }
  .pb-xxxl-25 {
    padding-bottom: 25px !important;
  }
  .pb-xxxl-30 {
    padding-bottom: 30px !important;
  }
  .pb-xxxl-35 {
    padding-bottom: 35px !important;
  }
  .pb-xxxl-40 {
    padding-bottom: 40px !important;
  }
  .pb-xxxl-45 {
    padding-bottom: 45px !important;
  }
  .pb-xxxl-50 {
    padding-bottom: 50px !important;
  }
  .pb-xxxl-55 {
    padding-bottom: 55px !important;
  }
  .pb-xxxl-60 {
    padding-bottom: 60px !important;
  }
  .pb-xxxl-65 {
    padding-bottom: 65px !important;
  }
  .pb-xxxl-70 {
    padding-bottom: 70px !important;
  }
  .pb-xxxl-75 {
    padding-bottom: 75px !important;
  }
  .pb-xxxl-80 {
    padding-bottom: 80px !important;
  }
  .pb-xxxl-85 {
    padding-bottom: 85px !important;
  }
  .pb-xxxl-90 {
    padding-bottom: 90px !important;
  }
  .pb-xxxl-95 {
    padding-bottom: 95px !important;
  }
  .pb-xxxl-100 {
    padding-bottom: 100px !important;
  }
}
@media (max-width: 1599.98px) {
  .pl-xxxl-0 {
    padding-left: 0px !important;
  }
  .pl-xxxl-5 {
    padding-left: 5px !important;
  }
  .pl-xxxl-10 {
    padding-left: 10px !important;
  }
  .pl-xxxl-15 {
    padding-left: 15px !important;
  }
  .pl-xxxl-20 {
    padding-left: 20px !important;
  }
  .pl-xxxl-25 {
    padding-left: 25px !important;
  }
  .pl-xxxl-30 {
    padding-left: 30px !important;
  }
  .pl-xxxl-35 {
    padding-left: 35px !important;
  }
  .pl-xxxl-40 {
    padding-left: 40px !important;
  }
  .pl-xxxl-45 {
    padding-left: 45px !important;
  }
  .pl-xxxl-50 {
    padding-left: 50px !important;
  }
  .pl-xxxl-55 {
    padding-left: 55px !important;
  }
  .pl-xxxl-60 {
    padding-left: 60px !important;
  }
  .pl-xxxl-65 {
    padding-left: 65px !important;
  }
  .pl-xxxl-70 {
    padding-left: 70px !important;
  }
  .pl-xxxl-75 {
    padding-left: 75px !important;
  }
  .pl-xxxl-80 {
    padding-left: 80px !important;
  }
  .pl-xxxl-85 {
    padding-left: 85px !important;
  }
  .pl-xxxl-90 {
    padding-left: 90px !important;
  }
  .pl-xxxl-95 {
    padding-left: 95px !important;
  }
  .pl-xxxl-100 {
    padding-left: 100px !important;
  }
}
@media (max-width: 1599.98px) {
  .pr-xxxl-0 {
    padding-right: 0px !important;
  }
  .pr-xxxl-5 {
    padding-right: 5px !important;
  }
  .pr-xxxl-10 {
    padding-right: 10px !important;
  }
  .pr-xxxl-15 {
    padding-right: 15px !important;
  }
  .pr-xxxl-20 {
    padding-right: 20px !important;
  }
  .pr-xxxl-25 {
    padding-right: 25px !important;
  }
  .pr-xxxl-30 {
    padding-right: 30px !important;
  }
  .pr-xxxl-35 {
    padding-right: 35px !important;
  }
  .pr-xxxl-40 {
    padding-right: 40px !important;
  }
  .pr-xxxl-45 {
    padding-right: 45px !important;
  }
  .pr-xxxl-50 {
    padding-right: 50px !important;
  }
  .pr-xxxl-55 {
    padding-right: 55px !important;
  }
  .pr-xxxl-60 {
    padding-right: 60px !important;
  }
  .pr-xxxl-65 {
    padding-right: 65px !important;
  }
  .pr-xxxl-70 {
    padding-right: 70px !important;
  }
  .pr-xxxl-75 {
    padding-right: 75px !important;
  }
  .pr-xxxl-80 {
    padding-right: 80px !important;
  }
  .pr-xxxl-85 {
    padding-right: 85px !important;
  }
  .pr-xxxl-90 {
    padding-right: 90px !important;
  }
  .pr-xxxl-95 {
    padding-right: 95px !important;
  }
  .pr-xxxl-100 {
    padding-right: 100px !important;
  }
}
@media (max-width: 1599.98px) {
  .px-xxxl-0 {
    padding-left: 0px !important;
    padding-right: 0px !important;
  }
  .px-xxxl-5 {
    padding-left: 5px !important;
    padding-right: 5px !important;
  }
  .px-xxxl-10 {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
  .px-xxxl-15 {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .px-xxxl-20 {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  .px-xxxl-25 {
    padding-left: 25px !important;
    padding-right: 25px !important;
  }
  .px-xxxl-30 {
    padding-left: 30px !important;
    padding-right: 30px !important;
  }
  .px-xxxl-35 {
    padding-left: 35px !important;
    padding-right: 35px !important;
  }
  .px-xxxl-40 {
    padding-left: 40px !important;
    padding-right: 40px !important;
  }
  .px-xxxl-45 {
    padding-left: 45px !important;
    padding-right: 45px !important;
  }
  .px-xxxl-50 {
    padding-left: 50px !important;
    padding-right: 50px !important;
  }
  .px-xxxl-55 {
    padding-left: 55px !important;
    padding-right: 55px !important;
  }
  .px-xxxl-60 {
    padding-left: 60px !important;
    padding-right: 60px !important;
  }
  .px-xxxl-65 {
    padding-left: 65px !important;
    padding-right: 65px !important;
  }
  .px-xxxl-70 {
    padding-left: 70px !important;
    padding-right: 70px !important;
  }
  .px-xxxl-75 {
    padding-left: 75px !important;
    padding-right: 75px !important;
  }
  .px-xxxl-80 {
    padding-left: 80px !important;
    padding-right: 80px !important;
  }
  .px-xxxl-85 {
    padding-left: 85px !important;
    padding-right: 85px !important;
  }
  .px-xxxl-90 {
    padding-left: 90px !important;
    padding-right: 90px !important;
  }
  .px-xxxl-95 {
    padding-left: 95px !important;
    padding-right: 95px !important;
  }
  .px-xxxl-100 {
    padding-left: 100px !important;
    padding-right: 100px !important;
  }
}
@media (max-width: 1599.98px) {
  .py-xxxl-0 {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
  }
  .py-xxxl-5 {
    padding-top: 5px !important;
    padding-bottom: 5px !important;
  }
  .py-xxxl-10 {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }
  .py-xxxl-15 {
    padding-top: 15px !important;
    padding-bottom: 15px !important;
  }
  .py-xxxl-20 {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }
  .py-xxxl-25 {
    padding-top: 25px !important;
    padding-bottom: 25px !important;
  }
  .py-xxxl-30 {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
  }
  .py-xxxl-35 {
    padding-top: 35px !important;
    padding-bottom: 35px !important;
  }
  .py-xxxl-40 {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
  .py-xxxl-45 {
    padding-top: 45px !important;
    padding-bottom: 45px !important;
  }
  .py-xxxl-50 {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
  }
  .py-xxxl-55 {
    padding-top: 55px !important;
    padding-bottom: 55px !important;
  }
  .py-xxxl-60 {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }
  .py-xxxl-65 {
    padding-top: 65px !important;
    padding-bottom: 65px !important;
  }
  .py-xxxl-70 {
    padding-top: 70px !important;
    padding-bottom: 70px !important;
  }
  .py-xxxl-75 {
    padding-top: 75px !important;
    padding-bottom: 75px !important;
  }
  .py-xxxl-80 {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
  }
  .py-xxxl-85 {
    padding-top: 85px !important;
    padding-bottom: 85px !important;
  }
  .py-xxxl-90 {
    padding-top: 90px !important;
    padding-bottom: 90px !important;
  }
  .py-xxxl-95 {
    padding-top: 95px !important;
    padding-bottom: 95px !important;
  }
  .py-xxxl-100 {
    padding-top: 100px !important;
    padding-bottom: 100px !important;
  }
}
@media (max-width: 1399.98px) {
  .p-xxl-0 {
    padding: 0px !important;
  }
  .p-xxl-5 {
    padding: 5px !important;
  }
  .p-xxl-10 {
    padding: 10px !important;
  }
  .p-xxl-15 {
    padding: 15px !important;
  }
  .p-xxl-20 {
    padding: 20px !important;
  }
  .p-xxl-25 {
    padding: 25px !important;
  }
  .p-xxl-30 {
    padding: 30px !important;
  }
  .p-xxl-35 {
    padding: 35px !important;
  }
  .p-xxl-40 {
    padding: 40px !important;
  }
  .p-xxl-45 {
    padding: 45px !important;
  }
  .p-xxl-50 {
    padding: 50px !important;
  }
  .p-xxl-55 {
    padding: 55px !important;
  }
  .p-xxl-60 {
    padding: 60px !important;
  }
  .p-xxl-65 {
    padding: 65px !important;
  }
  .p-xxl-70 {
    padding: 70px !important;
  }
  .p-xxl-75 {
    padding: 75px !important;
  }
  .p-xxl-80 {
    padding: 80px !important;
  }
  .p-xxl-85 {
    padding: 85px !important;
  }
  .p-xxl-90 {
    padding: 90px !important;
  }
  .p-xxl-95 {
    padding: 95px !important;
  }
  .p-xxl-100 {
    padding: 100px !important;
  }
}
@media (max-width: 1399.98px) {
  .pt-xxl-0 {
    padding-top: 0px !important;
  }
  .pt-xxl-5 {
    padding-top: 5px !important;
  }
  .pt-xxl-10 {
    padding-top: 10px !important;
  }
  .pt-xxl-15 {
    padding-top: 15px !important;
  }
  .pt-xxl-20 {
    padding-top: 20px !important;
  }
  .pt-xxl-25 {
    padding-top: 25px !important;
  }
  .pt-xxl-30 {
    padding-top: 30px !important;
  }
  .pt-xxl-35 {
    padding-top: 35px !important;
  }
  .pt-xxl-40 {
    padding-top: 40px !important;
  }
  .pt-xxl-45 {
    padding-top: 45px !important;
  }
  .pt-xxl-50 {
    padding-top: 50px !important;
  }
  .pt-xxl-55 {
    padding-top: 55px !important;
  }
  .pt-xxl-60 {
    padding-top: 60px !important;
  }
  .pt-xxl-65 {
    padding-top: 65px !important;
  }
  .pt-xxl-70 {
    padding-top: 70px !important;
  }
  .pt-xxl-75 {
    padding-top: 75px !important;
  }
  .pt-xxl-80 {
    padding-top: 80px !important;
  }
  .pt-xxl-85 {
    padding-top: 85px !important;
  }
  .pt-xxl-90 {
    padding-top: 90px !important;
  }
  .pt-xxl-95 {
    padding-top: 95px !important;
  }
  .pt-xxl-100 {
    padding-top: 100px !important;
  }
}
@media (max-width: 1399.98px) {
  .pb-xxl-0 {
    padding-bottom: 0px !important;
  }
  .pb-xxl-5 {
    padding-bottom: 5px !important;
  }
  .pb-xxl-10 {
    padding-bottom: 10px !important;
  }
  .pb-xxl-15 {
    padding-bottom: 15px !important;
  }
  .pb-xxl-20 {
    padding-bottom: 20px !important;
  }
  .pb-xxl-25 {
    padding-bottom: 25px !important;
  }
  .pb-xxl-30 {
    padding-bottom: 30px !important;
  }
  .pb-xxl-35 {
    padding-bottom: 35px !important;
  }
  .pb-xxl-40 {
    padding-bottom: 40px !important;
  }
  .pb-xxl-45 {
    padding-bottom: 45px !important;
  }
  .pb-xxl-50 {
    padding-bottom: 50px !important;
  }
  .pb-xxl-55 {
    padding-bottom: 55px !important;
  }
  .pb-xxl-60 {
    padding-bottom: 60px !important;
  }
  .pb-xxl-65 {
    padding-bottom: 65px !important;
  }
  .pb-xxl-70 {
    padding-bottom: 70px !important;
  }
  .pb-xxl-75 {
    padding-bottom: 75px !important;
  }
  .pb-xxl-80 {
    padding-bottom: 80px !important;
  }
  .pb-xxl-85 {
    padding-bottom: 85px !important;
  }
  .pb-xxl-90 {
    padding-bottom: 90px !important;
  }
  .pb-xxl-95 {
    padding-bottom: 95px !important;
  }
  .pb-xxl-100 {
    padding-bottom: 100px !important;
  }
}
@media (max-width: 1399.98px) {
  .pl-xxl-0 {
    padding-left: 0px !important;
  }
  .pl-xxl-5 {
    padding-left: 5px !important;
  }
  .pl-xxl-10 {
    padding-left: 10px !important;
  }
  .pl-xxl-15 {
    padding-left: 15px !important;
  }
  .pl-xxl-20 {
    padding-left: 20px !important;
  }
  .pl-xxl-25 {
    padding-left: 25px !important;
  }
  .pl-xxl-30 {
    padding-left: 30px !important;
  }
  .pl-xxl-35 {
    padding-left: 35px !important;
  }
  .pl-xxl-40 {
    padding-left: 40px !important;
  }
  .pl-xxl-45 {
    padding-left: 45px !important;
  }
  .pl-xxl-50 {
    padding-left: 50px !important;
  }
  .pl-xxl-55 {
    padding-left: 55px !important;
  }
  .pl-xxl-60 {
    padding-left: 60px !important;
  }
  .pl-xxl-65 {
    padding-left: 65px !important;
  }
  .pl-xxl-70 {
    padding-left: 70px !important;
  }
  .pl-xxl-75 {
    padding-left: 75px !important;
  }
  .pl-xxl-80 {
    padding-left: 80px !important;
  }
  .pl-xxl-85 {
    padding-left: 85px !important;
  }
  .pl-xxl-90 {
    padding-left: 90px !important;
  }
  .pl-xxl-95 {
    padding-left: 95px !important;
  }
  .pl-xxl-100 {
    padding-left: 100px !important;
  }
}
@media (max-width: 1399.98px) {
  .pr-xxl-0 {
    padding-right: 0px !important;
  }
  .pr-xxl-5 {
    padding-right: 5px !important;
  }
  .pr-xxl-10 {
    padding-right: 10px !important;
  }
  .pr-xxl-15 {
    padding-right: 15px !important;
  }
  .pr-xxl-20 {
    padding-right: 20px !important;
  }
  .pr-xxl-25 {
    padding-right: 25px !important;
  }
  .pr-xxl-30 {
    padding-right: 30px !important;
  }
  .pr-xxl-35 {
    padding-right: 35px !important;
  }
  .pr-xxl-40 {
    padding-right: 40px !important;
  }
  .pr-xxl-45 {
    padding-right: 45px !important;
  }
  .pr-xxl-50 {
    padding-right: 50px !important;
  }
  .pr-xxl-55 {
    padding-right: 55px !important;
  }
  .pr-xxl-60 {
    padding-right: 60px !important;
  }
  .pr-xxl-65 {
    padding-right: 65px !important;
  }
  .pr-xxl-70 {
    padding-right: 70px !important;
  }
  .pr-xxl-75 {
    padding-right: 75px !important;
  }
  .pr-xxl-80 {
    padding-right: 80px !important;
  }
  .pr-xxl-85 {
    padding-right: 85px !important;
  }
  .pr-xxl-90 {
    padding-right: 90px !important;
  }
  .pr-xxl-95 {
    padding-right: 95px !important;
  }
  .pr-xxl-100 {
    padding-right: 100px !important;
  }
}
@media (max-width: 1399.98px) {
  .px-xxl-0 {
    padding-left: 0px !important;
    padding-right: 0px !important;
  }
  .px-xxl-5 {
    padding-left: 5px !important;
    padding-right: 5px !important;
  }
  .px-xxl-10 {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
  .px-xxl-15 {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .px-xxl-20 {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  .px-xxl-25 {
    padding-left: 25px !important;
    padding-right: 25px !important;
  }
  .px-xxl-30 {
    padding-left: 30px !important;
    padding-right: 30px !important;
  }
  .px-xxl-35 {
    padding-left: 35px !important;
    padding-right: 35px !important;
  }
  .px-xxl-40 {
    padding-left: 40px !important;
    padding-right: 40px !important;
  }
  .px-xxl-45 {
    padding-left: 45px !important;
    padding-right: 45px !important;
  }
  .px-xxl-50 {
    padding-left: 50px !important;
    padding-right: 50px !important;
  }
  .px-xxl-55 {
    padding-left: 55px !important;
    padding-right: 55px !important;
  }
  .px-xxl-60 {
    padding-left: 60px !important;
    padding-right: 60px !important;
  }
  .px-xxl-65 {
    padding-left: 65px !important;
    padding-right: 65px !important;
  }
  .px-xxl-70 {
    padding-left: 70px !important;
    padding-right: 70px !important;
  }
  .px-xxl-75 {
    padding-left: 75px !important;
    padding-right: 75px !important;
  }
  .px-xxl-80 {
    padding-left: 80px !important;
    padding-right: 80px !important;
  }
  .px-xxl-85 {
    padding-left: 85px !important;
    padding-right: 85px !important;
  }
  .px-xxl-90 {
    padding-left: 90px !important;
    padding-right: 90px !important;
  }
  .px-xxl-95 {
    padding-left: 95px !important;
    padding-right: 95px !important;
  }
  .px-xxl-100 {
    padding-left: 100px !important;
    padding-right: 100px !important;
  }
}
@media (max-width: 1399.98px) {
  .py-xxl-0 {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
  }
  .py-xxl-5 {
    padding-top: 5px !important;
    padding-bottom: 5px !important;
  }
  .py-xxl-10 {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }
  .py-xxl-15 {
    padding-top: 15px !important;
    padding-bottom: 15px !important;
  }
  .py-xxl-20 {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }
  .py-xxl-25 {
    padding-top: 25px !important;
    padding-bottom: 25px !important;
  }
  .py-xxl-30 {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
  }
  .py-xxl-35 {
    padding-top: 35px !important;
    padding-bottom: 35px !important;
  }
  .py-xxl-40 {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
  .py-xxl-45 {
    padding-top: 45px !important;
    padding-bottom: 45px !important;
  }
  .py-xxl-50 {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
  }
  .py-xxl-55 {
    padding-top: 55px !important;
    padding-bottom: 55px !important;
  }
  .py-xxl-60 {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }
  .py-xxl-65 {
    padding-top: 65px !important;
    padding-bottom: 65px !important;
  }
  .py-xxl-70 {
    padding-top: 70px !important;
    padding-bottom: 70px !important;
  }
  .py-xxl-75 {
    padding-top: 75px !important;
    padding-bottom: 75px !important;
  }
  .py-xxl-80 {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
  }
  .py-xxl-85 {
    padding-top: 85px !important;
    padding-bottom: 85px !important;
  }
  .py-xxl-90 {
    padding-top: 90px !important;
    padding-bottom: 90px !important;
  }
  .py-xxl-95 {
    padding-top: 95px !important;
    padding-bottom: 95px !important;
  }
  .py-xxl-100 {
    padding-top: 100px !important;
    padding-bottom: 100px !important;
  }
}
@media (max-width: 1199.98px) {
  .p-xl-0 {
    padding: 0px !important;
  }
  .p-xl-5 {
    padding: 5px !important;
  }
  .p-xl-10 {
    padding: 10px !important;
  }
  .p-xl-15 {
    padding: 15px !important;
  }
  .p-xl-20 {
    padding: 20px !important;
  }
  .p-xl-25 {
    padding: 25px !important;
  }
  .p-xl-30 {
    padding: 30px !important;
  }
  .p-xl-35 {
    padding: 35px !important;
  }
  .p-xl-40 {
    padding: 40px !important;
  }
  .p-xl-45 {
    padding: 45px !important;
  }
  .p-xl-50 {
    padding: 50px !important;
  }
  .p-xl-55 {
    padding: 55px !important;
  }
  .p-xl-60 {
    padding: 60px !important;
  }
  .p-xl-65 {
    padding: 65px !important;
  }
  .p-xl-70 {
    padding: 70px !important;
  }
  .p-xl-75 {
    padding: 75px !important;
  }
  .p-xl-80 {
    padding: 80px !important;
  }
  .p-xl-85 {
    padding: 85px !important;
  }
  .p-xl-90 {
    padding: 90px !important;
  }
  .p-xl-95 {
    padding: 95px !important;
  }
  .p-xl-100 {
    padding: 100px !important;
  }
}
@media (max-width: 1199.98px) {
  .pt-xl-0 {
    padding-top: 0px !important;
  }
  .pt-xl-5 {
    padding-top: 5px !important;
  }
  .pt-xl-10 {
    padding-top: 10px !important;
  }
  .pt-xl-15 {
    padding-top: 15px !important;
  }
  .pt-xl-20 {
    padding-top: 20px !important;
  }
  .pt-xl-25 {
    padding-top: 25px !important;
  }
  .pt-xl-30 {
    padding-top: 30px !important;
  }
  .pt-xl-35 {
    padding-top: 35px !important;
  }
  .pt-xl-40 {
    padding-top: 40px !important;
  }
  .pt-xl-45 {
    padding-top: 45px !important;
  }
  .pt-xl-50 {
    padding-top: 50px !important;
  }
  .pt-xl-55 {
    padding-top: 55px !important;
  }
  .pt-xl-60 {
    padding-top: 60px !important;
  }
  .pt-xl-65 {
    padding-top: 65px !important;
  }
  .pt-xl-70 {
    padding-top: 70px !important;
  }
  .pt-xl-75 {
    padding-top: 75px !important;
  }
  .pt-xl-80 {
    padding-top: 80px !important;
  }
  .pt-xl-85 {
    padding-top: 85px !important;
  }
  .pt-xl-90 {
    padding-top: 90px !important;
  }
  .pt-xl-95 {
    padding-top: 95px !important;
  }
  .pt-xl-100 {
    padding-top: 100px !important;
  }
}
@media (max-width: 1199.98px) {
  .pb-xl-0 {
    padding-bottom: 0px !important;
  }
  .pb-xl-5 {
    padding-bottom: 5px !important;
  }
  .pb-xl-10 {
    padding-bottom: 10px !important;
  }
  .pb-xl-15 {
    padding-bottom: 15px !important;
  }
  .pb-xl-20 {
    padding-bottom: 20px !important;
  }
  .pb-xl-25 {
    padding-bottom: 25px !important;
  }
  .pb-xl-30 {
    padding-bottom: 30px !important;
  }
  .pb-xl-35 {
    padding-bottom: 35px !important;
  }
  .pb-xl-40 {
    padding-bottom: 40px !important;
  }
  .pb-xl-45 {
    padding-bottom: 45px !important;
  }
  .pb-xl-50 {
    padding-bottom: 50px !important;
  }
  .pb-xl-55 {
    padding-bottom: 55px !important;
  }
  .pb-xl-60 {
    padding-bottom: 60px !important;
  }
  .pb-xl-65 {
    padding-bottom: 65px !important;
  }
  .pb-xl-70 {
    padding-bottom: 70px !important;
  }
  .pb-xl-75 {
    padding-bottom: 75px !important;
  }
  .pb-xl-80 {
    padding-bottom: 80px !important;
  }
  .pb-xl-85 {
    padding-bottom: 85px !important;
  }
  .pb-xl-90 {
    padding-bottom: 90px !important;
  }
  .pb-xl-95 {
    padding-bottom: 95px !important;
  }
  .pb-xl-100 {
    padding-bottom: 100px !important;
  }
}
@media (max-width: 1199.98px) {
  .pl-xl-0 {
    padding-left: 0px !important;
  }
  .pl-xl-5 {
    padding-left: 5px !important;
  }
  .pl-xl-10 {
    padding-left: 10px !important;
  }
  .pl-xl-15 {
    padding-left: 15px !important;
  }
  .pl-xl-20 {
    padding-left: 20px !important;
  }
  .pl-xl-25 {
    padding-left: 25px !important;
  }
  .pl-xl-30 {
    padding-left: 30px !important;
  }
  .pl-xl-35 {
    padding-left: 35px !important;
  }
  .pl-xl-40 {
    padding-left: 40px !important;
  }
  .pl-xl-45 {
    padding-left: 45px !important;
  }
  .pl-xl-50 {
    padding-left: 50px !important;
  }
  .pl-xl-55 {
    padding-left: 55px !important;
  }
  .pl-xl-60 {
    padding-left: 60px !important;
  }
  .pl-xl-65 {
    padding-left: 65px !important;
  }
  .pl-xl-70 {
    padding-left: 70px !important;
  }
  .pl-xl-75 {
    padding-left: 75px !important;
  }
  .pl-xl-80 {
    padding-left: 80px !important;
  }
  .pl-xl-85 {
    padding-left: 85px !important;
  }
  .pl-xl-90 {
    padding-left: 90px !important;
  }
  .pl-xl-95 {
    padding-left: 95px !important;
  }
  .pl-xl-100 {
    padding-left: 100px !important;
  }
}
@media (max-width: 1199.98px) {
  .pr-xl-0 {
    padding-right: 0px !important;
  }
  .pr-xl-5 {
    padding-right: 5px !important;
  }
  .pr-xl-10 {
    padding-right: 10px !important;
  }
  .pr-xl-15 {
    padding-right: 15px !important;
  }
  .pr-xl-20 {
    padding-right: 20px !important;
  }
  .pr-xl-25 {
    padding-right: 25px !important;
  }
  .pr-xl-30 {
    padding-right: 30px !important;
  }
  .pr-xl-35 {
    padding-right: 35px !important;
  }
  .pr-xl-40 {
    padding-right: 40px !important;
  }
  .pr-xl-45 {
    padding-right: 45px !important;
  }
  .pr-xl-50 {
    padding-right: 50px !important;
  }
  .pr-xl-55 {
    padding-right: 55px !important;
  }
  .pr-xl-60 {
    padding-right: 60px !important;
  }
  .pr-xl-65 {
    padding-right: 65px !important;
  }
  .pr-xl-70 {
    padding-right: 70px !important;
  }
  .pr-xl-75 {
    padding-right: 75px !important;
  }
  .pr-xl-80 {
    padding-right: 80px !important;
  }
  .pr-xl-85 {
    padding-right: 85px !important;
  }
  .pr-xl-90 {
    padding-right: 90px !important;
  }
  .pr-xl-95 {
    padding-right: 95px !important;
  }
  .pr-xl-100 {
    padding-right: 100px !important;
  }
}
@media (max-width: 1199.98px) {
  .px-xl-0 {
    padding-left: 0px !important;
    padding-right: 0px !important;
  }
  .px-xl-5 {
    padding-left: 5px !important;
    padding-right: 5px !important;
  }
  .px-xl-10 {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
  .px-xl-15 {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .px-xl-20 {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  .px-xl-25 {
    padding-left: 25px !important;
    padding-right: 25px !important;
  }
  .px-xl-30 {
    padding-left: 30px !important;
    padding-right: 30px !important;
  }
  .px-xl-35 {
    padding-left: 35px !important;
    padding-right: 35px !important;
  }
  .px-xl-40 {
    padding-left: 40px !important;
    padding-right: 40px !important;
  }
  .px-xl-45 {
    padding-left: 45px !important;
    padding-right: 45px !important;
  }
  .px-xl-50 {
    padding-left: 50px !important;
    padding-right: 50px !important;
  }
  .px-xl-55 {
    padding-left: 55px !important;
    padding-right: 55px !important;
  }
  .px-xl-60 {
    padding-left: 60px !important;
    padding-right: 60px !important;
  }
  .px-xl-65 {
    padding-left: 65px !important;
    padding-right: 65px !important;
  }
  .px-xl-70 {
    padding-left: 70px !important;
    padding-right: 70px !important;
  }
  .px-xl-75 {
    padding-left: 75px !important;
    padding-right: 75px !important;
  }
  .px-xl-80 {
    padding-left: 80px !important;
    padding-right: 80px !important;
  }
  .px-xl-85 {
    padding-left: 85px !important;
    padding-right: 85px !important;
  }
  .px-xl-90 {
    padding-left: 90px !important;
    padding-right: 90px !important;
  }
  .px-xl-95 {
    padding-left: 95px !important;
    padding-right: 95px !important;
  }
  .px-xl-100 {
    padding-left: 100px !important;
    padding-right: 100px !important;
  }
}
@media (max-width: 1199.98px) {
  .py-xl-0 {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
  }
  .py-xl-5 {
    padding-top: 5px !important;
    padding-bottom: 5px !important;
  }
  .py-xl-10 {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }
  .py-xl-15 {
    padding-top: 15px !important;
    padding-bottom: 15px !important;
  }
  .py-xl-20 {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }
  .py-xl-25 {
    padding-top: 25px !important;
    padding-bottom: 25px !important;
  }
  .py-xl-30 {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
  }
  .py-xl-35 {
    padding-top: 35px !important;
    padding-bottom: 35px !important;
  }
  .py-xl-40 {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
  .py-xl-45 {
    padding-top: 45px !important;
    padding-bottom: 45px !important;
  }
  .py-xl-50 {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
  }
  .py-xl-55 {
    padding-top: 55px !important;
    padding-bottom: 55px !important;
  }
  .py-xl-60 {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }
  .py-xl-65 {
    padding-top: 65px !important;
    padding-bottom: 65px !important;
  }
  .py-xl-70 {
    padding-top: 70px !important;
    padding-bottom: 70px !important;
  }
  .py-xl-75 {
    padding-top: 75px !important;
    padding-bottom: 75px !important;
  }
  .py-xl-80 {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
  }
  .py-xl-85 {
    padding-top: 85px !important;
    padding-bottom: 85px !important;
  }
  .py-xl-90 {
    padding-top: 90px !important;
    padding-bottom: 90px !important;
  }
  .py-xl-95 {
    padding-top: 95px !important;
    padding-bottom: 95px !important;
  }
  .py-xl-100 {
    padding-top: 100px !important;
    padding-bottom: 100px !important;
  }
}
@media (max-width: 999.98px) {
  .p-lg-0 {
    padding: 0px !important;
  }
  .p-lg-5 {
    padding: 5px !important;
  }
  .p-lg-10 {
    padding: 10px !important;
  }
  .p-lg-15 {
    padding: 15px !important;
  }
  .p-lg-20 {
    padding: 20px !important;
  }
  .p-lg-25 {
    padding: 25px !important;
  }
  .p-lg-30 {
    padding: 30px !important;
  }
  .p-lg-35 {
    padding: 35px !important;
  }
  .p-lg-40 {
    padding: 40px !important;
  }
  .p-lg-45 {
    padding: 45px !important;
  }
  .p-lg-50 {
    padding: 50px !important;
  }
  .p-lg-55 {
    padding: 55px !important;
  }
  .p-lg-60 {
    padding: 60px !important;
  }
  .p-lg-65 {
    padding: 65px !important;
  }
  .p-lg-70 {
    padding: 70px !important;
  }
  .p-lg-75 {
    padding: 75px !important;
  }
  .p-lg-80 {
    padding: 80px !important;
  }
  .p-lg-85 {
    padding: 85px !important;
  }
  .p-lg-90 {
    padding: 90px !important;
  }
  .p-lg-95 {
    padding: 95px !important;
  }
  .p-lg-100 {
    padding: 100px !important;
  }
}
@media (max-width: 999.98px) {
  .pt-lg-0 {
    padding-top: 0px !important;
  }
  .pt-lg-5 {
    padding-top: 5px !important;
  }
  .pt-lg-10 {
    padding-top: 10px !important;
  }
  .pt-lg-15 {
    padding-top: 15px !important;
  }
  .pt-lg-20 {
    padding-top: 20px !important;
  }
  .pt-lg-25 {
    padding-top: 25px !important;
  }
  .pt-lg-30 {
    padding-top: 30px !important;
  }
  .pt-lg-35 {
    padding-top: 35px !important;
  }
  .pt-lg-40 {
    padding-top: 40px !important;
  }
  .pt-lg-45 {
    padding-top: 45px !important;
  }
  .pt-lg-50 {
    padding-top: 50px !important;
  }
  .pt-lg-55 {
    padding-top: 55px !important;
  }
  .pt-lg-60 {
    padding-top: 60px !important;
  }
  .pt-lg-65 {
    padding-top: 65px !important;
  }
  .pt-lg-70 {
    padding-top: 70px !important;
  }
  .pt-lg-75 {
    padding-top: 75px !important;
  }
  .pt-lg-80 {
    padding-top: 80px !important;
  }
  .pt-lg-85 {
    padding-top: 85px !important;
  }
  .pt-lg-90 {
    padding-top: 90px !important;
  }
  .pt-lg-95 {
    padding-top: 95px !important;
  }
  .pt-lg-100 {
    padding-top: 100px !important;
  }
}
@media (max-width: 999.98px) {
  .pb-lg-0 {
    padding-bottom: 0px !important;
  }
  .pb-lg-5 {
    padding-bottom: 5px !important;
  }
  .pb-lg-10 {
    padding-bottom: 10px !important;
  }
  .pb-lg-15 {
    padding-bottom: 15px !important;
  }
  .pb-lg-20 {
    padding-bottom: 20px !important;
  }
  .pb-lg-25 {
    padding-bottom: 25px !important;
  }
  .pb-lg-30 {
    padding-bottom: 30px !important;
  }
  .pb-lg-35 {
    padding-bottom: 35px !important;
  }
  .pb-lg-40 {
    padding-bottom: 40px !important;
  }
  .pb-lg-45 {
    padding-bottom: 45px !important;
  }
  .pb-lg-50 {
    padding-bottom: 50px !important;
  }
  .pb-lg-55 {
    padding-bottom: 55px !important;
  }
  .pb-lg-60 {
    padding-bottom: 60px !important;
  }
  .pb-lg-65 {
    padding-bottom: 65px !important;
  }
  .pb-lg-70 {
    padding-bottom: 70px !important;
  }
  .pb-lg-75 {
    padding-bottom: 75px !important;
  }
  .pb-lg-80 {
    padding-bottom: 80px !important;
  }
  .pb-lg-85 {
    padding-bottom: 85px !important;
  }
  .pb-lg-90 {
    padding-bottom: 90px !important;
  }
  .pb-lg-95 {
    padding-bottom: 95px !important;
  }
  .pb-lg-100 {
    padding-bottom: 100px !important;
  }
}
@media (max-width: 999.98px) {
  .pl-lg-0 {
    padding-left: 0px !important;
  }
  .pl-lg-5 {
    padding-left: 5px !important;
  }
  .pl-lg-10 {
    padding-left: 10px !important;
  }
  .pl-lg-15 {
    padding-left: 15px !important;
  }
  .pl-lg-20 {
    padding-left: 20px !important;
  }
  .pl-lg-25 {
    padding-left: 25px !important;
  }
  .pl-lg-30 {
    padding-left: 30px !important;
  }
  .pl-lg-35 {
    padding-left: 35px !important;
  }
  .pl-lg-40 {
    padding-left: 40px !important;
  }
  .pl-lg-45 {
    padding-left: 45px !important;
  }
  .pl-lg-50 {
    padding-left: 50px !important;
  }
  .pl-lg-55 {
    padding-left: 55px !important;
  }
  .pl-lg-60 {
    padding-left: 60px !important;
  }
  .pl-lg-65 {
    padding-left: 65px !important;
  }
  .pl-lg-70 {
    padding-left: 70px !important;
  }
  .pl-lg-75 {
    padding-left: 75px !important;
  }
  .pl-lg-80 {
    padding-left: 80px !important;
  }
  .pl-lg-85 {
    padding-left: 85px !important;
  }
  .pl-lg-90 {
    padding-left: 90px !important;
  }
  .pl-lg-95 {
    padding-left: 95px !important;
  }
  .pl-lg-100 {
    padding-left: 100px !important;
  }
}
@media (max-width: 999.98px) {
  .pr-lg-0 {
    padding-right: 0px !important;
  }
  .pr-lg-5 {
    padding-right: 5px !important;
  }
  .pr-lg-10 {
    padding-right: 10px !important;
  }
  .pr-lg-15 {
    padding-right: 15px !important;
  }
  .pr-lg-20 {
    padding-right: 20px !important;
  }
  .pr-lg-25 {
    padding-right: 25px !important;
  }
  .pr-lg-30 {
    padding-right: 30px !important;
  }
  .pr-lg-35 {
    padding-right: 35px !important;
  }
  .pr-lg-40 {
    padding-right: 40px !important;
  }
  .pr-lg-45 {
    padding-right: 45px !important;
  }
  .pr-lg-50 {
    padding-right: 50px !important;
  }
  .pr-lg-55 {
    padding-right: 55px !important;
  }
  .pr-lg-60 {
    padding-right: 60px !important;
  }
  .pr-lg-65 {
    padding-right: 65px !important;
  }
  .pr-lg-70 {
    padding-right: 70px !important;
  }
  .pr-lg-75 {
    padding-right: 75px !important;
  }
  .pr-lg-80 {
    padding-right: 80px !important;
  }
  .pr-lg-85 {
    padding-right: 85px !important;
  }
  .pr-lg-90 {
    padding-right: 90px !important;
  }
  .pr-lg-95 {
    padding-right: 95px !important;
  }
  .pr-lg-100 {
    padding-right: 100px !important;
  }
}
@media (max-width: 999.98px) {
  .px-lg-0 {
    padding-left: 0px !important;
    padding-right: 0px !important;
  }
  .px-lg-5 {
    padding-left: 5px !important;
    padding-right: 5px !important;
  }
  .px-lg-10 {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
  .px-lg-15 {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .px-lg-20 {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  .px-lg-25 {
    padding-left: 25px !important;
    padding-right: 25px !important;
  }
  .px-lg-30 {
    padding-left: 30px !important;
    padding-right: 30px !important;
  }
  .px-lg-35 {
    padding-left: 35px !important;
    padding-right: 35px !important;
  }
  .px-lg-40 {
    padding-left: 40px !important;
    padding-right: 40px !important;
  }
  .px-lg-45 {
    padding-left: 45px !important;
    padding-right: 45px !important;
  }
  .px-lg-50 {
    padding-left: 50px !important;
    padding-right: 50px !important;
  }
  .px-lg-55 {
    padding-left: 55px !important;
    padding-right: 55px !important;
  }
  .px-lg-60 {
    padding-left: 60px !important;
    padding-right: 60px !important;
  }
  .px-lg-65 {
    padding-left: 65px !important;
    padding-right: 65px !important;
  }
  .px-lg-70 {
    padding-left: 70px !important;
    padding-right: 70px !important;
  }
  .px-lg-75 {
    padding-left: 75px !important;
    padding-right: 75px !important;
  }
  .px-lg-80 {
    padding-left: 80px !important;
    padding-right: 80px !important;
  }
  .px-lg-85 {
    padding-left: 85px !important;
    padding-right: 85px !important;
  }
  .px-lg-90 {
    padding-left: 90px !important;
    padding-right: 90px !important;
  }
  .px-lg-95 {
    padding-left: 95px !important;
    padding-right: 95px !important;
  }
  .px-lg-100 {
    padding-left: 100px !important;
    padding-right: 100px !important;
  }
}
@media (max-width: 999.98px) {
  .py-lg-0 {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
  }
  .py-lg-5 {
    padding-top: 5px !important;
    padding-bottom: 5px !important;
  }
  .py-lg-10 {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }
  .py-lg-15 {
    padding-top: 15px !important;
    padding-bottom: 15px !important;
  }
  .py-lg-20 {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }
  .py-lg-25 {
    padding-top: 25px !important;
    padding-bottom: 25px !important;
  }
  .py-lg-30 {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
  }
  .py-lg-35 {
    padding-top: 35px !important;
    padding-bottom: 35px !important;
  }
  .py-lg-40 {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
  .py-lg-45 {
    padding-top: 45px !important;
    padding-bottom: 45px !important;
  }
  .py-lg-50 {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
  }
  .py-lg-55 {
    padding-top: 55px !important;
    padding-bottom: 55px !important;
  }
  .py-lg-60 {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }
  .py-lg-65 {
    padding-top: 65px !important;
    padding-bottom: 65px !important;
  }
  .py-lg-70 {
    padding-top: 70px !important;
    padding-bottom: 70px !important;
  }
  .py-lg-75 {
    padding-top: 75px !important;
    padding-bottom: 75px !important;
  }
  .py-lg-80 {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
  }
  .py-lg-85 {
    padding-top: 85px !important;
    padding-bottom: 85px !important;
  }
  .py-lg-90 {
    padding-top: 90px !important;
    padding-bottom: 90px !important;
  }
  .py-lg-95 {
    padding-top: 95px !important;
    padding-bottom: 95px !important;
  }
  .py-lg-100 {
    padding-top: 100px !important;
    padding-bottom: 100px !important;
  }
}
@media (max-width: 719.98px) {
  .p-md-0 {
    padding: 0px !important;
  }
  .p-md-5 {
    padding: 5px !important;
  }
  .p-md-10 {
    padding: 10px !important;
  }
  .p-md-15 {
    padding: 15px !important;
  }
  .p-md-20 {
    padding: 20px !important;
  }
  .p-md-25 {
    padding: 25px !important;
  }
  .p-md-30 {
    padding: 30px !important;
  }
  .p-md-35 {
    padding: 35px !important;
  }
  .p-md-40 {
    padding: 40px !important;
  }
  .p-md-45 {
    padding: 45px !important;
  }
  .p-md-50 {
    padding: 50px !important;
  }
  .p-md-55 {
    padding: 55px !important;
  }
  .p-md-60 {
    padding: 60px !important;
  }
  .p-md-65 {
    padding: 65px !important;
  }
  .p-md-70 {
    padding: 70px !important;
  }
  .p-md-75 {
    padding: 75px !important;
  }
  .p-md-80 {
    padding: 80px !important;
  }
  .p-md-85 {
    padding: 85px !important;
  }
  .p-md-90 {
    padding: 90px !important;
  }
  .p-md-95 {
    padding: 95px !important;
  }
  .p-md-100 {
    padding: 100px !important;
  }
}
@media (max-width: 719.98px) {
  .pt-md-0 {
    padding-top: 0px !important;
  }
  .pt-md-5 {
    padding-top: 5px !important;
  }
  .pt-md-10 {
    padding-top: 10px !important;
  }
  .pt-md-15 {
    padding-top: 15px !important;
  }
  .pt-md-20 {
    padding-top: 20px !important;
  }
  .pt-md-25 {
    padding-top: 25px !important;
  }
  .pt-md-30 {
    padding-top: 30px !important;
  }
  .pt-md-35 {
    padding-top: 35px !important;
  }
  .pt-md-40 {
    padding-top: 40px !important;
  }
  .pt-md-45 {
    padding-top: 45px !important;
  }
  .pt-md-50 {
    padding-top: 50px !important;
  }
  .pt-md-55 {
    padding-top: 55px !important;
  }
  .pt-md-60 {
    padding-top: 60px !important;
  }
  .pt-md-65 {
    padding-top: 65px !important;
  }
  .pt-md-70 {
    padding-top: 70px !important;
  }
  .pt-md-75 {
    padding-top: 75px !important;
  }
  .pt-md-80 {
    padding-top: 80px !important;
  }
  .pt-md-85 {
    padding-top: 85px !important;
  }
  .pt-md-90 {
    padding-top: 90px !important;
  }
  .pt-md-95 {
    padding-top: 95px !important;
  }
  .pt-md-100 {
    padding-top: 100px !important;
  }
}
@media (max-width: 719.98px) {
  .pb-md-0 {
    padding-bottom: 0px !important;
  }
  .pb-md-5 {
    padding-bottom: 5px !important;
  }
  .pb-md-10 {
    padding-bottom: 10px !important;
  }
  .pb-md-15 {
    padding-bottom: 15px !important;
  }
  .pb-md-20 {
    padding-bottom: 20px !important;
  }
  .pb-md-25 {
    padding-bottom: 25px !important;
  }
  .pb-md-30 {
    padding-bottom: 30px !important;
  }
  .pb-md-35 {
    padding-bottom: 35px !important;
  }
  .pb-md-40 {
    padding-bottom: 40px !important;
  }
  .pb-md-45 {
    padding-bottom: 45px !important;
  }
  .pb-md-50 {
    padding-bottom: 50px !important;
  }
  .pb-md-55 {
    padding-bottom: 55px !important;
  }
  .pb-md-60 {
    padding-bottom: 60px !important;
  }
  .pb-md-65 {
    padding-bottom: 65px !important;
  }
  .pb-md-70 {
    padding-bottom: 70px !important;
  }
  .pb-md-75 {
    padding-bottom: 75px !important;
  }
  .pb-md-80 {
    padding-bottom: 80px !important;
  }
  .pb-md-85 {
    padding-bottom: 85px !important;
  }
  .pb-md-90 {
    padding-bottom: 90px !important;
  }
  .pb-md-95 {
    padding-bottom: 95px !important;
  }
  .pb-md-100 {
    padding-bottom: 100px !important;
  }
}
@media (max-width: 719.98px) {
  .pl-md-0 {
    padding-left: 0px !important;
  }
  .pl-md-5 {
    padding-left: 5px !important;
  }
  .pl-md-10 {
    padding-left: 10px !important;
  }
  .pl-md-15 {
    padding-left: 15px !important;
  }
  .pl-md-20 {
    padding-left: 20px !important;
  }
  .pl-md-25 {
    padding-left: 25px !important;
  }
  .pl-md-30 {
    padding-left: 30px !important;
  }
  .pl-md-35 {
    padding-left: 35px !important;
  }
  .pl-md-40 {
    padding-left: 40px !important;
  }
  .pl-md-45 {
    padding-left: 45px !important;
  }
  .pl-md-50 {
    padding-left: 50px !important;
  }
  .pl-md-55 {
    padding-left: 55px !important;
  }
  .pl-md-60 {
    padding-left: 60px !important;
  }
  .pl-md-65 {
    padding-left: 65px !important;
  }
  .pl-md-70 {
    padding-left: 70px !important;
  }
  .pl-md-75 {
    padding-left: 75px !important;
  }
  .pl-md-80 {
    padding-left: 80px !important;
  }
  .pl-md-85 {
    padding-left: 85px !important;
  }
  .pl-md-90 {
    padding-left: 90px !important;
  }
  .pl-md-95 {
    padding-left: 95px !important;
  }
  .pl-md-100 {
    padding-left: 100px !important;
  }
}
@media (max-width: 719.98px) {
  .pr-md-0 {
    padding-right: 0px !important;
  }
  .pr-md-5 {
    padding-right: 5px !important;
  }
  .pr-md-10 {
    padding-right: 10px !important;
  }
  .pr-md-15 {
    padding-right: 15px !important;
  }
  .pr-md-20 {
    padding-right: 20px !important;
  }
  .pr-md-25 {
    padding-right: 25px !important;
  }
  .pr-md-30 {
    padding-right: 30px !important;
  }
  .pr-md-35 {
    padding-right: 35px !important;
  }
  .pr-md-40 {
    padding-right: 40px !important;
  }
  .pr-md-45 {
    padding-right: 45px !important;
  }
  .pr-md-50 {
    padding-right: 50px !important;
  }
  .pr-md-55 {
    padding-right: 55px !important;
  }
  .pr-md-60 {
    padding-right: 60px !important;
  }
  .pr-md-65 {
    padding-right: 65px !important;
  }
  .pr-md-70 {
    padding-right: 70px !important;
  }
  .pr-md-75 {
    padding-right: 75px !important;
  }
  .pr-md-80 {
    padding-right: 80px !important;
  }
  .pr-md-85 {
    padding-right: 85px !important;
  }
  .pr-md-90 {
    padding-right: 90px !important;
  }
  .pr-md-95 {
    padding-right: 95px !important;
  }
  .pr-md-100 {
    padding-right: 100px !important;
  }
}
@media (max-width: 719.98px) {
  .px-md-0 {
    padding-left: 0px !important;
    padding-right: 0px !important;
  }
  .px-md-5 {
    padding-left: 5px !important;
    padding-right: 5px !important;
  }
  .px-md-10 {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
  .px-md-15 {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .px-md-20 {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  .px-md-25 {
    padding-left: 25px !important;
    padding-right: 25px !important;
  }
  .px-md-30 {
    padding-left: 30px !important;
    padding-right: 30px !important;
  }
  .px-md-35 {
    padding-left: 35px !important;
    padding-right: 35px !important;
  }
  .px-md-40 {
    padding-left: 40px !important;
    padding-right: 40px !important;
  }
  .px-md-45 {
    padding-left: 45px !important;
    padding-right: 45px !important;
  }
  .px-md-50 {
    padding-left: 50px !important;
    padding-right: 50px !important;
  }
  .px-md-55 {
    padding-left: 55px !important;
    padding-right: 55px !important;
  }
  .px-md-60 {
    padding-left: 60px !important;
    padding-right: 60px !important;
  }
  .px-md-65 {
    padding-left: 65px !important;
    padding-right: 65px !important;
  }
  .px-md-70 {
    padding-left: 70px !important;
    padding-right: 70px !important;
  }
  .px-md-75 {
    padding-left: 75px !important;
    padding-right: 75px !important;
  }
  .px-md-80 {
    padding-left: 80px !important;
    padding-right: 80px !important;
  }
  .px-md-85 {
    padding-left: 85px !important;
    padding-right: 85px !important;
  }
  .px-md-90 {
    padding-left: 90px !important;
    padding-right: 90px !important;
  }
  .px-md-95 {
    padding-left: 95px !important;
    padding-right: 95px !important;
  }
  .px-md-100 {
    padding-left: 100px !important;
    padding-right: 100px !important;
  }
}
@media (max-width: 719.98px) {
  .py-md-0 {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
  }
  .py-md-5 {
    padding-top: 5px !important;
    padding-bottom: 5px !important;
  }
  .py-md-10 {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }
  .py-md-15 {
    padding-top: 15px !important;
    padding-bottom: 15px !important;
  }
  .py-md-20 {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }
  .py-md-25 {
    padding-top: 25px !important;
    padding-bottom: 25px !important;
  }
  .py-md-30 {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
  }
  .py-md-35 {
    padding-top: 35px !important;
    padding-bottom: 35px !important;
  }
  .py-md-40 {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
  .py-md-45 {
    padding-top: 45px !important;
    padding-bottom: 45px !important;
  }
  .py-md-50 {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
  }
  .py-md-55 {
    padding-top: 55px !important;
    padding-bottom: 55px !important;
  }
  .py-md-60 {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }
  .py-md-65 {
    padding-top: 65px !important;
    padding-bottom: 65px !important;
  }
  .py-md-70 {
    padding-top: 70px !important;
    padding-bottom: 70px !important;
  }
  .py-md-75 {
    padding-top: 75px !important;
    padding-bottom: 75px !important;
  }
  .py-md-80 {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
  }
  .py-md-85 {
    padding-top: 85px !important;
    padding-bottom: 85px !important;
  }
  .py-md-90 {
    padding-top: 90px !important;
    padding-bottom: 90px !important;
  }
  .py-md-95 {
    padding-top: 95px !important;
    padding-bottom: 95px !important;
  }
  .py-md-100 {
    padding-top: 100px !important;
    padding-bottom: 100px !important;
  }
}
@media (max-width: 575.98px) {
  .p-sm-0 {
    padding: 0px !important;
  }
  .p-sm-5 {
    padding: 5px !important;
  }
  .p-sm-10 {
    padding: 10px !important;
  }
  .p-sm-15 {
    padding: 15px !important;
  }
  .p-sm-20 {
    padding: 20px !important;
  }
  .p-sm-25 {
    padding: 25px !important;
  }
  .p-sm-30 {
    padding: 30px !important;
  }
  .p-sm-35 {
    padding: 35px !important;
  }
  .p-sm-40 {
    padding: 40px !important;
  }
  .p-sm-45 {
    padding: 45px !important;
  }
  .p-sm-50 {
    padding: 50px !important;
  }
  .p-sm-55 {
    padding: 55px !important;
  }
  .p-sm-60 {
    padding: 60px !important;
  }
  .p-sm-65 {
    padding: 65px !important;
  }
  .p-sm-70 {
    padding: 70px !important;
  }
  .p-sm-75 {
    padding: 75px !important;
  }
  .p-sm-80 {
    padding: 80px !important;
  }
  .p-sm-85 {
    padding: 85px !important;
  }
  .p-sm-90 {
    padding: 90px !important;
  }
  .p-sm-95 {
    padding: 95px !important;
  }
  .p-sm-100 {
    padding: 100px !important;
  }
}
@media (max-width: 575.98px) {
  .pt-sm-0 {
    padding-top: 0px !important;
  }
  .pt-sm-5 {
    padding-top: 5px !important;
  }
  .pt-sm-10 {
    padding-top: 10px !important;
  }
  .pt-sm-15 {
    padding-top: 15px !important;
  }
  .pt-sm-20 {
    padding-top: 20px !important;
  }
  .pt-sm-25 {
    padding-top: 25px !important;
  }
  .pt-sm-30 {
    padding-top: 30px !important;
  }
  .pt-sm-35 {
    padding-top: 35px !important;
  }
  .pt-sm-40 {
    padding-top: 40px !important;
  }
  .pt-sm-45 {
    padding-top: 45px !important;
  }
  .pt-sm-50 {
    padding-top: 50px !important;
  }
  .pt-sm-55 {
    padding-top: 55px !important;
  }
  .pt-sm-60 {
    padding-top: 60px !important;
  }
  .pt-sm-65 {
    padding-top: 65px !important;
  }
  .pt-sm-70 {
    padding-top: 70px !important;
  }
  .pt-sm-75 {
    padding-top: 75px !important;
  }
  .pt-sm-80 {
    padding-top: 80px !important;
  }
  .pt-sm-85 {
    padding-top: 85px !important;
  }
  .pt-sm-90 {
    padding-top: 90px !important;
  }
  .pt-sm-95 {
    padding-top: 95px !important;
  }
  .pt-sm-100 {
    padding-top: 100px !important;
  }
}
@media (max-width: 575.98px) {
  .pb-sm-0 {
    padding-bottom: 0px !important;
  }
  .pb-sm-5 {
    padding-bottom: 5px !important;
  }
  .pb-sm-10 {
    padding-bottom: 10px !important;
  }
  .pb-sm-15 {
    padding-bottom: 15px !important;
  }
  .pb-sm-20 {
    padding-bottom: 20px !important;
  }
  .pb-sm-25 {
    padding-bottom: 25px !important;
  }
  .pb-sm-30 {
    padding-bottom: 30px !important;
  }
  .pb-sm-35 {
    padding-bottom: 35px !important;
  }
  .pb-sm-40 {
    padding-bottom: 40px !important;
  }
  .pb-sm-45 {
    padding-bottom: 45px !important;
  }
  .pb-sm-50 {
    padding-bottom: 50px !important;
  }
  .pb-sm-55 {
    padding-bottom: 55px !important;
  }
  .pb-sm-60 {
    padding-bottom: 60px !important;
  }
  .pb-sm-65 {
    padding-bottom: 65px !important;
  }
  .pb-sm-70 {
    padding-bottom: 70px !important;
  }
  .pb-sm-75 {
    padding-bottom: 75px !important;
  }
  .pb-sm-80 {
    padding-bottom: 80px !important;
  }
  .pb-sm-85 {
    padding-bottom: 85px !important;
  }
  .pb-sm-90 {
    padding-bottom: 90px !important;
  }
  .pb-sm-95 {
    padding-bottom: 95px !important;
  }
  .pb-sm-100 {
    padding-bottom: 100px !important;
  }
}
@media (max-width: 575.98px) {
  .pl-sm-0 {
    padding-left: 0px !important;
  }
  .pl-sm-5 {
    padding-left: 5px !important;
  }
  .pl-sm-10 {
    padding-left: 10px !important;
  }
  .pl-sm-15 {
    padding-left: 15px !important;
  }
  .pl-sm-20 {
    padding-left: 20px !important;
  }
  .pl-sm-25 {
    padding-left: 25px !important;
  }
  .pl-sm-30 {
    padding-left: 30px !important;
  }
  .pl-sm-35 {
    padding-left: 35px !important;
  }
  .pl-sm-40 {
    padding-left: 40px !important;
  }
  .pl-sm-45 {
    padding-left: 45px !important;
  }
  .pl-sm-50 {
    padding-left: 50px !important;
  }
  .pl-sm-55 {
    padding-left: 55px !important;
  }
  .pl-sm-60 {
    padding-left: 60px !important;
  }
  .pl-sm-65 {
    padding-left: 65px !important;
  }
  .pl-sm-70 {
    padding-left: 70px !important;
  }
  .pl-sm-75 {
    padding-left: 75px !important;
  }
  .pl-sm-80 {
    padding-left: 80px !important;
  }
  .pl-sm-85 {
    padding-left: 85px !important;
  }
  .pl-sm-90 {
    padding-left: 90px !important;
  }
  .pl-sm-95 {
    padding-left: 95px !important;
  }
  .pl-sm-100 {
    padding-left: 100px !important;
  }
}
@media (max-width: 575.98px) {
  .pr-sm-0 {
    padding-right: 0px !important;
  }
  .pr-sm-5 {
    padding-right: 5px !important;
  }
  .pr-sm-10 {
    padding-right: 10px !important;
  }
  .pr-sm-15 {
    padding-right: 15px !important;
  }
  .pr-sm-20 {
    padding-right: 20px !important;
  }
  .pr-sm-25 {
    padding-right: 25px !important;
  }
  .pr-sm-30 {
    padding-right: 30px !important;
  }
  .pr-sm-35 {
    padding-right: 35px !important;
  }
  .pr-sm-40 {
    padding-right: 40px !important;
  }
  .pr-sm-45 {
    padding-right: 45px !important;
  }
  .pr-sm-50 {
    padding-right: 50px !important;
  }
  .pr-sm-55 {
    padding-right: 55px !important;
  }
  .pr-sm-60 {
    padding-right: 60px !important;
  }
  .pr-sm-65 {
    padding-right: 65px !important;
  }
  .pr-sm-70 {
    padding-right: 70px !important;
  }
  .pr-sm-75 {
    padding-right: 75px !important;
  }
  .pr-sm-80 {
    padding-right: 80px !important;
  }
  .pr-sm-85 {
    padding-right: 85px !important;
  }
  .pr-sm-90 {
    padding-right: 90px !important;
  }
  .pr-sm-95 {
    padding-right: 95px !important;
  }
  .pr-sm-100 {
    padding-right: 100px !important;
  }
}
@media (max-width: 575.98px) {
  .px-sm-0 {
    padding-left: 0px !important;
    padding-right: 0px !important;
  }
  .px-sm-5 {
    padding-left: 5px !important;
    padding-right: 5px !important;
  }
  .px-sm-10 {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
  .px-sm-15 {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .px-sm-20 {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  .px-sm-25 {
    padding-left: 25px !important;
    padding-right: 25px !important;
  }
  .px-sm-30 {
    padding-left: 30px !important;
    padding-right: 30px !important;
  }
  .px-sm-35 {
    padding-left: 35px !important;
    padding-right: 35px !important;
  }
  .px-sm-40 {
    padding-left: 40px !important;
    padding-right: 40px !important;
  }
  .px-sm-45 {
    padding-left: 45px !important;
    padding-right: 45px !important;
  }
  .px-sm-50 {
    padding-left: 50px !important;
    padding-right: 50px !important;
  }
  .px-sm-55 {
    padding-left: 55px !important;
    padding-right: 55px !important;
  }
  .px-sm-60 {
    padding-left: 60px !important;
    padding-right: 60px !important;
  }
  .px-sm-65 {
    padding-left: 65px !important;
    padding-right: 65px !important;
  }
  .px-sm-70 {
    padding-left: 70px !important;
    padding-right: 70px !important;
  }
  .px-sm-75 {
    padding-left: 75px !important;
    padding-right: 75px !important;
  }
  .px-sm-80 {
    padding-left: 80px !important;
    padding-right: 80px !important;
  }
  .px-sm-85 {
    padding-left: 85px !important;
    padding-right: 85px !important;
  }
  .px-sm-90 {
    padding-left: 90px !important;
    padding-right: 90px !important;
  }
  .px-sm-95 {
    padding-left: 95px !important;
    padding-right: 95px !important;
  }
  .px-sm-100 {
    padding-left: 100px !important;
    padding-right: 100px !important;
  }
}
@media (max-width: 575.98px) {
  .py-sm-0 {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
  }
  .py-sm-5 {
    padding-top: 5px !important;
    padding-bottom: 5px !important;
  }
  .py-sm-10 {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }
  .py-sm-15 {
    padding-top: 15px !important;
    padding-bottom: 15px !important;
  }
  .py-sm-20 {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }
  .py-sm-25 {
    padding-top: 25px !important;
    padding-bottom: 25px !important;
  }
  .py-sm-30 {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
  }
  .py-sm-35 {
    padding-top: 35px !important;
    padding-bottom: 35px !important;
  }
  .py-sm-40 {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
  .py-sm-45 {
    padding-top: 45px !important;
    padding-bottom: 45px !important;
  }
  .py-sm-50 {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
  }
  .py-sm-55 {
    padding-top: 55px !important;
    padding-bottom: 55px !important;
  }
  .py-sm-60 {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }
  .py-sm-65 {
    padding-top: 65px !important;
    padding-bottom: 65px !important;
  }
  .py-sm-70 {
    padding-top: 70px !important;
    padding-bottom: 70px !important;
  }
  .py-sm-75 {
    padding-top: 75px !important;
    padding-bottom: 75px !important;
  }
  .py-sm-80 {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
  }
  .py-sm-85 {
    padding-top: 85px !important;
    padding-bottom: 85px !important;
  }
  .py-sm-90 {
    padding-top: 90px !important;
    padding-bottom: 90px !important;
  }
  .py-sm-95 {
    padding-top: 95px !important;
    padding-bottom: 95px !important;
  }
  .py-sm-100 {
    padding-top: 100px !important;
    padding-bottom: 100px !important;
  }
}

.overflow-auto {
  overflow: auto !important;
}
.overflow-hidden {
  overflow: hidden !important;
}
.overflow-visible {
  overflow: visible !important;
}
.overflow-scroll {
  overflow: scroll !important;
}
.overflow-clip {
  overflow: clip !important;
}
.overflow-unset {
  overflow: unset !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-x-clip {
  overflow-x: clip !important;
}
.overflow-x-unset {
  overflow-x: unset !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;
}
.overflow-y-clip {
  overflow-y: clip !important;
}
.overflow-y-unset {
  overflow-y: unset !important;
}
@media (max-width: 1599.98px) {
  .overflow-xxxl-auto {
    overflow: auto !important;
  }
  .overflow-xxxl-hidden {
    overflow: hidden !important;
  }
  .overflow-xxxl-visible {
    overflow: visible !important;
  }
  .overflow-xxxl-scroll {
    overflow: scroll !important;
  }
  .overflow-xxxl-clip {
    overflow: clip !important;
  }
  .overflow-xxxl-unset {
    overflow: unset !important;
  }
  .overflow-x-xxxl-auto {
    overflow-x: auto !important;
  }
  .overflow-x-xxxl-hidden {
    overflow-x: hidden !important;
  }
  .overflow-x-xxxl-visible {
    overflow-x: visible !important;
  }
  .overflow-x-xxxl-scroll {
    overflow-x: scroll !important;
  }
  .overflow-x-xxxl-clip {
    overflow-x: clip !important;
  }
  .overflow-x-xxxl-unset {
    overflow-x: unset !important;
  }
  .overflow-y-xxxl-auto {
    overflow-y: auto !important;
  }
  .overflow-y-xxxl-hidden {
    overflow-y: hidden !important;
  }
  .overflow-y-xxxl-visible {
    overflow-y: visible !important;
  }
  .overflow-y-xxxl-scroll {
    overflow-y: scroll !important;
  }
  .overflow-y-xxxl-clip {
    overflow-y: clip !important;
  }
  .overflow-y-xxxl-unset {
    overflow-y: unset !important;
  }
}
@media (max-width: 1399.98px) {
  .overflow-xxl-auto {
    overflow: auto !important;
  }
  .overflow-xxl-hidden {
    overflow: hidden !important;
  }
  .overflow-xxl-visible {
    overflow: visible !important;
  }
  .overflow-xxl-scroll {
    overflow: scroll !important;
  }
  .overflow-xxl-clip {
    overflow: clip !important;
  }
  .overflow-xxl-unset {
    overflow: unset !important;
  }
  .overflow-x-xxl-auto {
    overflow-x: auto !important;
  }
  .overflow-x-xxl-hidden {
    overflow-x: hidden !important;
  }
  .overflow-x-xxl-visible {
    overflow-x: visible !important;
  }
  .overflow-x-xxl-scroll {
    overflow-x: scroll !important;
  }
  .overflow-x-xxl-clip {
    overflow-x: clip !important;
  }
  .overflow-x-xxl-unset {
    overflow-x: unset !important;
  }
  .overflow-y-xxl-auto {
    overflow-y: auto !important;
  }
  .overflow-y-xxl-hidden {
    overflow-y: hidden !important;
  }
  .overflow-y-xxl-visible {
    overflow-y: visible !important;
  }
  .overflow-y-xxl-scroll {
    overflow-y: scroll !important;
  }
  .overflow-y-xxl-clip {
    overflow-y: clip !important;
  }
  .overflow-y-xxl-unset {
    overflow-y: unset !important;
  }
}
@media (max-width: 1199.98px) {
  .overflow-xl-auto {
    overflow: auto !important;
  }
  .overflow-xl-hidden {
    overflow: hidden !important;
  }
  .overflow-xl-visible {
    overflow: visible !important;
  }
  .overflow-xl-scroll {
    overflow: scroll !important;
  }
  .overflow-xl-clip {
    overflow: clip !important;
  }
  .overflow-xl-unset {
    overflow: unset !important;
  }
  .overflow-x-xl-auto {
    overflow-x: auto !important;
  }
  .overflow-x-xl-hidden {
    overflow-x: hidden !important;
  }
  .overflow-x-xl-visible {
    overflow-x: visible !important;
  }
  .overflow-x-xl-scroll {
    overflow-x: scroll !important;
  }
  .overflow-x-xl-clip {
    overflow-x: clip !important;
  }
  .overflow-x-xl-unset {
    overflow-x: unset !important;
  }
  .overflow-y-xl-auto {
    overflow-y: auto !important;
  }
  .overflow-y-xl-hidden {
    overflow-y: hidden !important;
  }
  .overflow-y-xl-visible {
    overflow-y: visible !important;
  }
  .overflow-y-xl-scroll {
    overflow-y: scroll !important;
  }
  .overflow-y-xl-clip {
    overflow-y: clip !important;
  }
  .overflow-y-xl-unset {
    overflow-y: unset !important;
  }
}
@media (max-width: 999.98px) {
  .overflow-lg-auto {
    overflow: auto !important;
  }
  .overflow-lg-hidden {
    overflow: hidden !important;
  }
  .overflow-lg-visible {
    overflow: visible !important;
  }
  .overflow-lg-scroll {
    overflow: scroll !important;
  }
  .overflow-lg-clip {
    overflow: clip !important;
  }
  .overflow-lg-unset {
    overflow: unset !important;
  }
  .overflow-x-lg-auto {
    overflow-x: auto !important;
  }
  .overflow-x-lg-hidden {
    overflow-x: hidden !important;
  }
  .overflow-x-lg-visible {
    overflow-x: visible !important;
  }
  .overflow-x-lg-scroll {
    overflow-x: scroll !important;
  }
  .overflow-x-lg-clip {
    overflow-x: clip !important;
  }
  .overflow-x-lg-unset {
    overflow-x: unset !important;
  }
  .overflow-y-lg-auto {
    overflow-y: auto !important;
  }
  .overflow-y-lg-hidden {
    overflow-y: hidden !important;
  }
  .overflow-y-lg-visible {
    overflow-y: visible !important;
  }
  .overflow-y-lg-scroll {
    overflow-y: scroll !important;
  }
  .overflow-y-lg-clip {
    overflow-y: clip !important;
  }
  .overflow-y-lg-unset {
    overflow-y: unset !important;
  }
}
@media (max-width: 719.98px) {
  .overflow-md-auto {
    overflow: auto !important;
  }
  .overflow-md-hidden {
    overflow: hidden !important;
  }
  .overflow-md-visible {
    overflow: visible !important;
  }
  .overflow-md-scroll {
    overflow: scroll !important;
  }
  .overflow-md-clip {
    overflow: clip !important;
  }
  .overflow-md-unset {
    overflow: unset !important;
  }
  .overflow-x-md-auto {
    overflow-x: auto !important;
  }
  .overflow-x-md-hidden {
    overflow-x: hidden !important;
  }
  .overflow-x-md-visible {
    overflow-x: visible !important;
  }
  .overflow-x-md-scroll {
    overflow-x: scroll !important;
  }
  .overflow-x-md-clip {
    overflow-x: clip !important;
  }
  .overflow-x-md-unset {
    overflow-x: unset !important;
  }
  .overflow-y-md-auto {
    overflow-y: auto !important;
  }
  .overflow-y-md-hidden {
    overflow-y: hidden !important;
  }
  .overflow-y-md-visible {
    overflow-y: visible !important;
  }
  .overflow-y-md-scroll {
    overflow-y: scroll !important;
  }
  .overflow-y-md-clip {
    overflow-y: clip !important;
  }
  .overflow-y-md-unset {
    overflow-y: unset !important;
  }
}
@media (max-width: 575.98px) {
  .overflow-sm-auto {
    overflow: auto !important;
  }
  .overflow-sm-hidden {
    overflow: hidden !important;
  }
  .overflow-sm-visible {
    overflow: visible !important;
  }
  .overflow-sm-scroll {
    overflow: scroll !important;
  }
  .overflow-sm-clip {
    overflow: clip !important;
  }
  .overflow-sm-unset {
    overflow: unset !important;
  }
  .overflow-x-sm-auto {
    overflow-x: auto !important;
  }
  .overflow-x-sm-hidden {
    overflow-x: hidden !important;
  }
  .overflow-x-sm-visible {
    overflow-x: visible !important;
  }
  .overflow-x-sm-scroll {
    overflow-x: scroll !important;
  }
  .overflow-x-sm-clip {
    overflow-x: clip !important;
  }
  .overflow-x-sm-unset {
    overflow-x: unset !important;
  }
  .overflow-y-sm-auto {
    overflow-y: auto !important;
  }
  .overflow-y-sm-hidden {
    overflow-y: hidden !important;
  }
  .overflow-y-sm-visible {
    overflow-y: visible !important;
  }
  .overflow-y-sm-scroll {
    overflow-y: scroll !important;
  }
  .overflow-y-sm-clip {
    overflow-y: clip !important;
  }
  .overflow-y-sm-unset {
    overflow-y: unset !important;
  }
}

.position-absolute {
  position: absolute !important;
}
.position-fixed {
  position: fixed !important;
}
.position-sticky {
  position: sticky !important;
}
.position-relative {
  position: relative !important;
}
@media (max-width: 1599.98px) {
  .position-xxxl-absolute {
    position: absolute !important;
  }
  .position-xxxl-fixed {
    position: fixed !important;
  }
  .position-xxxl-sticky {
    position: sticky !important;
  }
  .position-xxxl-relative {
    position: relative !important;
  }
}
@media (max-width: 1399.98px) {
  .position-xxl-absolute {
    position: absolute !important;
  }
  .position-xxl-fixed {
    position: fixed !important;
  }
  .position-xxl-sticky {
    position: sticky !important;
  }
  .position-xxl-relative {
    position: relative !important;
  }
}
@media (max-width: 1199.98px) {
  .position-xl-absolute {
    position: absolute !important;
  }
  .position-xl-fixed {
    position: fixed !important;
  }
  .position-xl-sticky {
    position: sticky !important;
  }
  .position-xl-relative {
    position: relative !important;
  }
}
@media (max-width: 999.98px) {
  .position-lg-absolute {
    position: absolute !important;
  }
  .position-lg-fixed {
    position: fixed !important;
  }
  .position-lg-sticky {
    position: sticky !important;
  }
  .position-lg-relative {
    position: relative !important;
  }
}
@media (max-width: 719.98px) {
  .position-md-absolute {
    position: absolute !important;
  }
  .position-md-fixed {
    position: fixed !important;
  }
  .position-md-sticky {
    position: sticky !important;
  }
  .position-md-relative {
    position: relative !important;
  }
}
@media (max-width: 575.98px) {
  .position-sm-absolute {
    position: absolute !important;
  }
  .position-sm-fixed {
    position: fixed !important;
  }
  .position-sm-sticky {
    position: sticky !important;
  }
  .position-sm-relative {
    position: relative !important;
  }
}

.sticky-bottom {
  bottom: 0;
}

.radius-0 {
  border-radius: 0px !important;
}
.radius-10 {
  border-radius: 10px !important;
}
.radius-15 {
  border-radius: 15px !important;
}
.radius-pill {
  border-radius: 1000px !important;
}
@media (max-width: 1599.98px) {
  .radius-xxxl-0 {
    border-radius: 0px !important;
  }
  .radius-xxxl-10 {
    border-radius: 10px !important;
  }
  .radius-xxxl-15 {
    border-radius: 15px !important;
  }
  .radius-xxxl-pill {
    border-radius: 1000px !important;
  }
}
@media (max-width: 1399.98px) {
  .radius-xxl-0 {
    border-radius: 0px !important;
  }
  .radius-xxl-10 {
    border-radius: 10px !important;
  }
  .radius-xxl-15 {
    border-radius: 15px !important;
  }
  .radius-xxl-pill {
    border-radius: 1000px !important;
  }
}
@media (max-width: 1199.98px) {
  .radius-xl-0 {
    border-radius: 0px !important;
  }
  .radius-xl-10 {
    border-radius: 10px !important;
  }
  .radius-xl-15 {
    border-radius: 15px !important;
  }
  .radius-xl-pill {
    border-radius: 1000px !important;
  }
}
@media (max-width: 999.98px) {
  .radius-lg-0 {
    border-radius: 0px !important;
  }
  .radius-lg-10 {
    border-radius: 10px !important;
  }
  .radius-lg-15 {
    border-radius: 15px !important;
  }
  .radius-lg-pill {
    border-radius: 1000px !important;
  }
}
@media (max-width: 719.98px) {
  .radius-md-0 {
    border-radius: 0px !important;
  }
  .radius-md-10 {
    border-radius: 10px !important;
  }
  .radius-md-15 {
    border-radius: 15px !important;
  }
  .radius-md-pill {
    border-radius: 1000px !important;
  }
}
@media (max-width: 575.98px) {
  .radius-sm-0 {
    border-radius: 0px !important;
  }
  .radius-sm-10 {
    border-radius: 10px !important;
  }
  .radius-sm-15 {
    border-radius: 15px !important;
  }
  .radius-sm-pill {
    border-radius: 1000px !important;
  }
}

.shadow {
  box-shadow: 0 8px 10px -8px rgba(0, 0, 0, 0.4);
}

.w-auto {
  width: auto !important;
}
.w-0 {
  width: 0% !important;
}
.w-10 {
  width: 10% !important;
}
.w-20 {
  width: 20% !important;
}
.w-30 {
  width: 30% !important;
}
.w-40 {
  width: 40% !important;
}
.w-50 {
  width: 50% !important;
}
.w-60 {
  width: 60% !important;
}
.w-70 {
  width: 70% !important;
}
.w-80 {
  width: 80% !important;
}
.w-90 {
  width: 90% !important;
}
.w-100 {
  width: 100% !important;
}
@media (max-width: 1599.98px) {
  .w-xxxl-auto {
    width: auto !important;
  }
  .w-xxxl-0 {
    width: 0% !important;
  }
  .w-xxxl-10 {
    width: 10% !important;
  }
  .w-xxxl-20 {
    width: 20% !important;
  }
  .w-xxxl-30 {
    width: 30% !important;
  }
  .w-xxxl-40 {
    width: 40% !important;
  }
  .w-xxxl-50 {
    width: 50% !important;
  }
  .w-xxxl-60 {
    width: 60% !important;
  }
  .w-xxxl-70 {
    width: 70% !important;
  }
  .w-xxxl-80 {
    width: 80% !important;
  }
  .w-xxxl-90 {
    width: 90% !important;
  }
  .w-xxxl-100 {
    width: 100% !important;
  }
}
@media (max-width: 1399.98px) {
  .w-xxl-auto {
    width: auto !important;
  }
  .w-xxl-0 {
    width: 0% !important;
  }
  .w-xxl-10 {
    width: 10% !important;
  }
  .w-xxl-20 {
    width: 20% !important;
  }
  .w-xxl-30 {
    width: 30% !important;
  }
  .w-xxl-40 {
    width: 40% !important;
  }
  .w-xxl-50 {
    width: 50% !important;
  }
  .w-xxl-60 {
    width: 60% !important;
  }
  .w-xxl-70 {
    width: 70% !important;
  }
  .w-xxl-80 {
    width: 80% !important;
  }
  .w-xxl-90 {
    width: 90% !important;
  }
  .w-xxl-100 {
    width: 100% !important;
  }
}
@media (max-width: 1199.98px) {
  .w-xl-auto {
    width: auto !important;
  }
  .w-xl-0 {
    width: 0% !important;
  }
  .w-xl-10 {
    width: 10% !important;
  }
  .w-xl-20 {
    width: 20% !important;
  }
  .w-xl-30 {
    width: 30% !important;
  }
  .w-xl-40 {
    width: 40% !important;
  }
  .w-xl-50 {
    width: 50% !important;
  }
  .w-xl-60 {
    width: 60% !important;
  }
  .w-xl-70 {
    width: 70% !important;
  }
  .w-xl-80 {
    width: 80% !important;
  }
  .w-xl-90 {
    width: 90% !important;
  }
  .w-xl-100 {
    width: 100% !important;
  }
}
@media (max-width: 999.98px) {
  .w-lg-auto {
    width: auto !important;
  }
  .w-lg-0 {
    width: 0% !important;
  }
  .w-lg-10 {
    width: 10% !important;
  }
  .w-lg-20 {
    width: 20% !important;
  }
  .w-lg-30 {
    width: 30% !important;
  }
  .w-lg-40 {
    width: 40% !important;
  }
  .w-lg-50 {
    width: 50% !important;
  }
  .w-lg-60 {
    width: 60% !important;
  }
  .w-lg-70 {
    width: 70% !important;
  }
  .w-lg-80 {
    width: 80% !important;
  }
  .w-lg-90 {
    width: 90% !important;
  }
  .w-lg-100 {
    width: 100% !important;
  }
}
@media (max-width: 719.98px) {
  .w-md-auto {
    width: auto !important;
  }
  .w-md-0 {
    width: 0% !important;
  }
  .w-md-10 {
    width: 10% !important;
  }
  .w-md-20 {
    width: 20% !important;
  }
  .w-md-30 {
    width: 30% !important;
  }
  .w-md-40 {
    width: 40% !important;
  }
  .w-md-50 {
    width: 50% !important;
  }
  .w-md-60 {
    width: 60% !important;
  }
  .w-md-70 {
    width: 70% !important;
  }
  .w-md-80 {
    width: 80% !important;
  }
  .w-md-90 {
    width: 90% !important;
  }
  .w-md-100 {
    width: 100% !important;
  }
}
@media (max-width: 575.98px) {
  .w-sm-auto {
    width: auto !important;
  }
  .w-sm-0 {
    width: 0% !important;
  }
  .w-sm-10 {
    width: 10% !important;
  }
  .w-sm-20 {
    width: 20% !important;
  }
  .w-sm-30 {
    width: 30% !important;
  }
  .w-sm-40 {
    width: 40% !important;
  }
  .w-sm-50 {
    width: 50% !important;
  }
  .w-sm-60 {
    width: 60% !important;
  }
  .w-sm-70 {
    width: 70% !important;
  }
  .w-sm-80 {
    width: 80% !important;
  }
  .w-sm-90 {
    width: 90% !important;
  }
  .w-sm-100 {
    width: 100% !important;
  }
}

.mw-auto {
  max-width: auto !important;
}
.mw-0 {
  max-width: 0% !important;
}
.mw-10 {
  max-width: 10% !important;
}
.mw-20 {
  max-width: 20% !important;
}
.mw-30 {
  max-width: 30% !important;
}
.mw-40 {
  max-width: 40% !important;
}
.mw-50 {
  max-width: 50% !important;
}
.mw-60 {
  max-width: 60% !important;
}
.mw-70 {
  max-width: 70% !important;
}
.mw-80 {
  max-width: 80% !important;
}
.mw-90 {
  max-width: 90% !important;
}
.mw-100 {
  max-width: 100% !important;
}
@media (max-width: 1599.98px) {
  .mw-xxxl-auto {
    max-width: auto !important;
  }
  .mw-xxxl-0 {
    max-width: 0% !important;
  }
  .mw-xxxl-10 {
    max-width: 10% !important;
  }
  .mw-xxxl-20 {
    max-width: 20% !important;
  }
  .mw-xxxl-30 {
    max-width: 30% !important;
  }
  .mw-xxxl-40 {
    max-width: 40% !important;
  }
  .mw-xxxl-50 {
    max-width: 50% !important;
  }
  .mw-xxxl-60 {
    max-width: 60% !important;
  }
  .mw-xxxl-70 {
    max-width: 70% !important;
  }
  .mw-xxxl-80 {
    max-width: 80% !important;
  }
  .mw-xxxl-90 {
    max-width: 90% !important;
  }
  .mw-xxxl-100 {
    max-width: 100% !important;
  }
}
@media (max-width: 1399.98px) {
  .mw-xxl-auto {
    max-width: auto !important;
  }
  .mw-xxl-0 {
    max-width: 0% !important;
  }
  .mw-xxl-10 {
    max-width: 10% !important;
  }
  .mw-xxl-20 {
    max-width: 20% !important;
  }
  .mw-xxl-30 {
    max-width: 30% !important;
  }
  .mw-xxl-40 {
    max-width: 40% !important;
  }
  .mw-xxl-50 {
    max-width: 50% !important;
  }
  .mw-xxl-60 {
    max-width: 60% !important;
  }
  .mw-xxl-70 {
    max-width: 70% !important;
  }
  .mw-xxl-80 {
    max-width: 80% !important;
  }
  .mw-xxl-90 {
    max-width: 90% !important;
  }
  .mw-xxl-100 {
    max-width: 100% !important;
  }
}
@media (max-width: 1199.98px) {
  .mw-xl-auto {
    max-width: auto !important;
  }
  .mw-xl-0 {
    max-width: 0% !important;
  }
  .mw-xl-10 {
    max-width: 10% !important;
  }
  .mw-xl-20 {
    max-width: 20% !important;
  }
  .mw-xl-30 {
    max-width: 30% !important;
  }
  .mw-xl-40 {
    max-width: 40% !important;
  }
  .mw-xl-50 {
    max-width: 50% !important;
  }
  .mw-xl-60 {
    max-width: 60% !important;
  }
  .mw-xl-70 {
    max-width: 70% !important;
  }
  .mw-xl-80 {
    max-width: 80% !important;
  }
  .mw-xl-90 {
    max-width: 90% !important;
  }
  .mw-xl-100 {
    max-width: 100% !important;
  }
}
@media (max-width: 999.98px) {
  .mw-lg-auto {
    max-width: auto !important;
  }
  .mw-lg-0 {
    max-width: 0% !important;
  }
  .mw-lg-10 {
    max-width: 10% !important;
  }
  .mw-lg-20 {
    max-width: 20% !important;
  }
  .mw-lg-30 {
    max-width: 30% !important;
  }
  .mw-lg-40 {
    max-width: 40% !important;
  }
  .mw-lg-50 {
    max-width: 50% !important;
  }
  .mw-lg-60 {
    max-width: 60% !important;
  }
  .mw-lg-70 {
    max-width: 70% !important;
  }
  .mw-lg-80 {
    max-width: 80% !important;
  }
  .mw-lg-90 {
    max-width: 90% !important;
  }
  .mw-lg-100 {
    max-width: 100% !important;
  }
}
@media (max-width: 719.98px) {
  .mw-md-auto {
    max-width: auto !important;
  }
  .mw-md-0 {
    max-width: 0% !important;
  }
  .mw-md-10 {
    max-width: 10% !important;
  }
  .mw-md-20 {
    max-width: 20% !important;
  }
  .mw-md-30 {
    max-width: 30% !important;
  }
  .mw-md-40 {
    max-width: 40% !important;
  }
  .mw-md-50 {
    max-width: 50% !important;
  }
  .mw-md-60 {
    max-width: 60% !important;
  }
  .mw-md-70 {
    max-width: 70% !important;
  }
  .mw-md-80 {
    max-width: 80% !important;
  }
  .mw-md-90 {
    max-width: 90% !important;
  }
  .mw-md-100 {
    max-width: 100% !important;
  }
}
@media (max-width: 575.98px) {
  .mw-sm-auto {
    max-width: auto !important;
  }
  .mw-sm-0 {
    max-width: 0% !important;
  }
  .mw-sm-10 {
    max-width: 10% !important;
  }
  .mw-sm-20 {
    max-width: 20% !important;
  }
  .mw-sm-30 {
    max-width: 30% !important;
  }
  .mw-sm-40 {
    max-width: 40% !important;
  }
  .mw-sm-50 {
    max-width: 50% !important;
  }
  .mw-sm-60 {
    max-width: 60% !important;
  }
  .mw-sm-70 {
    max-width: 70% !important;
  }
  .mw-sm-80 {
    max-width: 80% !important;
  }
  .mw-sm-90 {
    max-width: 90% !important;
  }
  .mw-sm-100 {
    max-width: 100% !important;
  }
}

.h-auto {
  height: auto !important;
}
.h-0 {
  height: 0% !important;
}
.h-10 {
  height: 10% !important;
}
.h-20 {
  height: 20% !important;
}
.h-30 {
  height: 30% !important;
}
.h-40 {
  height: 40% !important;
}
.h-50 {
  height: 50% !important;
}
.h-60 {
  height: 60% !important;
}
.h-70 {
  height: 70% !important;
}
.h-80 {
  height: 80% !important;
}
.h-90 {
  height: 90% !important;
}
.h-100 {
  height: 100% !important;
}
@media (max-width: 1599.98px) {
  .h-xxxl-auto {
    height: auto !important;
  }
  .h-xxxl-0 {
    height: 0% !important;
  }
  .h-xxxl-10 {
    height: 10% !important;
  }
  .h-xxxl-20 {
    height: 20% !important;
  }
  .h-xxxl-30 {
    height: 30% !important;
  }
  .h-xxxl-40 {
    height: 40% !important;
  }
  .h-xxxl-50 {
    height: 50% !important;
  }
  .h-xxxl-60 {
    height: 60% !important;
  }
  .h-xxxl-70 {
    height: 70% !important;
  }
  .h-xxxl-80 {
    height: 80% !important;
  }
  .h-xxxl-90 {
    height: 90% !important;
  }
  .h-xxxl-100 {
    height: 100% !important;
  }
}
@media (max-width: 1399.98px) {
  .h-xxl-auto {
    height: auto !important;
  }
  .h-xxl-0 {
    height: 0% !important;
  }
  .h-xxl-10 {
    height: 10% !important;
  }
  .h-xxl-20 {
    height: 20% !important;
  }
  .h-xxl-30 {
    height: 30% !important;
  }
  .h-xxl-40 {
    height: 40% !important;
  }
  .h-xxl-50 {
    height: 50% !important;
  }
  .h-xxl-60 {
    height: 60% !important;
  }
  .h-xxl-70 {
    height: 70% !important;
  }
  .h-xxl-80 {
    height: 80% !important;
  }
  .h-xxl-90 {
    height: 90% !important;
  }
  .h-xxl-100 {
    height: 100% !important;
  }
}
@media (max-width: 1199.98px) {
  .h-xl-auto {
    height: auto !important;
  }
  .h-xl-0 {
    height: 0% !important;
  }
  .h-xl-10 {
    height: 10% !important;
  }
  .h-xl-20 {
    height: 20% !important;
  }
  .h-xl-30 {
    height: 30% !important;
  }
  .h-xl-40 {
    height: 40% !important;
  }
  .h-xl-50 {
    height: 50% !important;
  }
  .h-xl-60 {
    height: 60% !important;
  }
  .h-xl-70 {
    height: 70% !important;
  }
  .h-xl-80 {
    height: 80% !important;
  }
  .h-xl-90 {
    height: 90% !important;
  }
  .h-xl-100 {
    height: 100% !important;
  }
}
@media (max-width: 999.98px) {
  .h-lg-auto {
    height: auto !important;
  }
  .h-lg-0 {
    height: 0% !important;
  }
  .h-lg-10 {
    height: 10% !important;
  }
  .h-lg-20 {
    height: 20% !important;
  }
  .h-lg-30 {
    height: 30% !important;
  }
  .h-lg-40 {
    height: 40% !important;
  }
  .h-lg-50 {
    height: 50% !important;
  }
  .h-lg-60 {
    height: 60% !important;
  }
  .h-lg-70 {
    height: 70% !important;
  }
  .h-lg-80 {
    height: 80% !important;
  }
  .h-lg-90 {
    height: 90% !important;
  }
  .h-lg-100 {
    height: 100% !important;
  }
}
@media (max-width: 719.98px) {
  .h-md-auto {
    height: auto !important;
  }
  .h-md-0 {
    height: 0% !important;
  }
  .h-md-10 {
    height: 10% !important;
  }
  .h-md-20 {
    height: 20% !important;
  }
  .h-md-30 {
    height: 30% !important;
  }
  .h-md-40 {
    height: 40% !important;
  }
  .h-md-50 {
    height: 50% !important;
  }
  .h-md-60 {
    height: 60% !important;
  }
  .h-md-70 {
    height: 70% !important;
  }
  .h-md-80 {
    height: 80% !important;
  }
  .h-md-90 {
    height: 90% !important;
  }
  .h-md-100 {
    height: 100% !important;
  }
}
@media (max-width: 575.98px) {
  .h-sm-auto {
    height: auto !important;
  }
  .h-sm-0 {
    height: 0% !important;
  }
  .h-sm-10 {
    height: 10% !important;
  }
  .h-sm-20 {
    height: 20% !important;
  }
  .h-sm-30 {
    height: 30% !important;
  }
  .h-sm-40 {
    height: 40% !important;
  }
  .h-sm-50 {
    height: 50% !important;
  }
  .h-sm-60 {
    height: 60% !important;
  }
  .h-sm-70 {
    height: 70% !important;
  }
  .h-sm-80 {
    height: 80% !important;
  }
  .h-sm-90 {
    height: 90% !important;
  }
  .h-sm-100 {
    height: 100% !important;
  }
}

.mh-auto {
  max-height: auto !important;
}
.mh-0 {
  max-height: 0% !important;
}
.mh-10 {
  max-height: 10% !important;
}
.mh-20 {
  max-height: 20% !important;
}
.mh-30 {
  max-height: 30% !important;
}
.mh-40 {
  max-height: 40% !important;
}
.mh-50 {
  max-height: 50% !important;
}
.mh-60 {
  max-height: 60% !important;
}
.mh-70 {
  max-height: 70% !important;
}
.mh-80 {
  max-height: 80% !important;
}
.mh-90 {
  max-height: 90% !important;
}
.mh-100 {
  max-height: 100% !important;
}
@media (max-width: 1599.98px) {
  .mh-xxxl-auto {
    max-height: auto !important;
  }
  .mh-xxxl-0 {
    max-height: 0% !important;
  }
  .mh-xxxl-10 {
    max-height: 10% !important;
  }
  .mh-xxxl-20 {
    max-height: 20% !important;
  }
  .mh-xxxl-30 {
    max-height: 30% !important;
  }
  .mh-xxxl-40 {
    max-height: 40% !important;
  }
  .mh-xxxl-50 {
    max-height: 50% !important;
  }
  .mh-xxxl-60 {
    max-height: 60% !important;
  }
  .mh-xxxl-70 {
    max-height: 70% !important;
  }
  .mh-xxxl-80 {
    max-height: 80% !important;
  }
  .mh-xxxl-90 {
    max-height: 90% !important;
  }
  .mh-xxxl-100 {
    max-height: 100% !important;
  }
}
@media (max-width: 1399.98px) {
  .mh-xxl-auto {
    max-height: auto !important;
  }
  .mh-xxl-0 {
    max-height: 0% !important;
  }
  .mh-xxl-10 {
    max-height: 10% !important;
  }
  .mh-xxl-20 {
    max-height: 20% !important;
  }
  .mh-xxl-30 {
    max-height: 30% !important;
  }
  .mh-xxl-40 {
    max-height: 40% !important;
  }
  .mh-xxl-50 {
    max-height: 50% !important;
  }
  .mh-xxl-60 {
    max-height: 60% !important;
  }
  .mh-xxl-70 {
    max-height: 70% !important;
  }
  .mh-xxl-80 {
    max-height: 80% !important;
  }
  .mh-xxl-90 {
    max-height: 90% !important;
  }
  .mh-xxl-100 {
    max-height: 100% !important;
  }
}
@media (max-width: 1199.98px) {
  .mh-xl-auto {
    max-height: auto !important;
  }
  .mh-xl-0 {
    max-height: 0% !important;
  }
  .mh-xl-10 {
    max-height: 10% !important;
  }
  .mh-xl-20 {
    max-height: 20% !important;
  }
  .mh-xl-30 {
    max-height: 30% !important;
  }
  .mh-xl-40 {
    max-height: 40% !important;
  }
  .mh-xl-50 {
    max-height: 50% !important;
  }
  .mh-xl-60 {
    max-height: 60% !important;
  }
  .mh-xl-70 {
    max-height: 70% !important;
  }
  .mh-xl-80 {
    max-height: 80% !important;
  }
  .mh-xl-90 {
    max-height: 90% !important;
  }
  .mh-xl-100 {
    max-height: 100% !important;
  }
}
@media (max-width: 999.98px) {
  .mh-lg-auto {
    max-height: auto !important;
  }
  .mh-lg-0 {
    max-height: 0% !important;
  }
  .mh-lg-10 {
    max-height: 10% !important;
  }
  .mh-lg-20 {
    max-height: 20% !important;
  }
  .mh-lg-30 {
    max-height: 30% !important;
  }
  .mh-lg-40 {
    max-height: 40% !important;
  }
  .mh-lg-50 {
    max-height: 50% !important;
  }
  .mh-lg-60 {
    max-height: 60% !important;
  }
  .mh-lg-70 {
    max-height: 70% !important;
  }
  .mh-lg-80 {
    max-height: 80% !important;
  }
  .mh-lg-90 {
    max-height: 90% !important;
  }
  .mh-lg-100 {
    max-height: 100% !important;
  }
}
@media (max-width: 719.98px) {
  .mh-md-auto {
    max-height: auto !important;
  }
  .mh-md-0 {
    max-height: 0% !important;
  }
  .mh-md-10 {
    max-height: 10% !important;
  }
  .mh-md-20 {
    max-height: 20% !important;
  }
  .mh-md-30 {
    max-height: 30% !important;
  }
  .mh-md-40 {
    max-height: 40% !important;
  }
  .mh-md-50 {
    max-height: 50% !important;
  }
  .mh-md-60 {
    max-height: 60% !important;
  }
  .mh-md-70 {
    max-height: 70% !important;
  }
  .mh-md-80 {
    max-height: 80% !important;
  }
  .mh-md-90 {
    max-height: 90% !important;
  }
  .mh-md-100 {
    max-height: 100% !important;
  }
}
@media (max-width: 575.98px) {
  .mh-sm-auto {
    max-height: auto !important;
  }
  .mh-sm-0 {
    max-height: 0% !important;
  }
  .mh-sm-10 {
    max-height: 10% !important;
  }
  .mh-sm-20 {
    max-height: 20% !important;
  }
  .mh-sm-30 {
    max-height: 30% !important;
  }
  .mh-sm-40 {
    max-height: 40% !important;
  }
  .mh-sm-50 {
    max-height: 50% !important;
  }
  .mh-sm-60 {
    max-height: 60% !important;
  }
  .mh-sm-70 {
    max-height: 70% !important;
  }
  .mh-sm-80 {
    max-height: 80% !important;
  }
  .mh-sm-90 {
    max-height: 90% !important;
  }
  .mh-sm-100 {
    max-height: 100% !important;
  }
}

.zindex--10 {
  z-index: -10 !important;
}
.zindex--9 {
  z-index: -9 !important;
}
.zindex--8 {
  z-index: -8 !important;
}
.zindex--7 {
  z-index: -7 !important;
}
.zindex--6 {
  z-index: -6 !important;
}
.zindex--5 {
  z-index: -5 !important;
}
.zindex--4 {
  z-index: -4 !important;
}
.zindex--3 {
  z-index: -3 !important;
}
.zindex--2 {
  z-index: -2 !important;
}
.zindex--1 {
  z-index: -1 !important;
}
.zindex-0 {
  z-index: 0 !important;
}
.zindex-1 {
  z-index: 1 !important;
}
.zindex-2 {
  z-index: 2 !important;
}
.zindex-3 {
  z-index: 3 !important;
}
.zindex-4 {
  z-index: 4 !important;
}
.zindex-5 {
  z-index: 5 !important;
}
.zindex-6 {
  z-index: 6 !important;
}
.zindex-7 {
  z-index: 7 !important;
}
.zindex-8 {
  z-index: 8 !important;
}
.zindex-9 {
  z-index: 9 !important;
}
.zindex-10 {
  z-index: 10 !important;
}
@media (min-width: 1600px) {
  .zindex-xxxl--10 {
    z-index: -10 !important;
  }
  .zindex-xxxl--9 {
    z-index: -9 !important;
  }
  .zindex-xxxl--8 {
    z-index: -8 !important;
  }
  .zindex-xxxl--7 {
    z-index: -7 !important;
  }
  .zindex-xxxl--6 {
    z-index: -6 !important;
  }
  .zindex-xxxl--5 {
    z-index: -5 !important;
  }
  .zindex-xxxl--4 {
    z-index: -4 !important;
  }
  .zindex-xxxl--3 {
    z-index: -3 !important;
  }
  .zindex-xxxl--2 {
    z-index: -2 !important;
  }
  .zindex-xxxl--1 {
    z-index: -1 !important;
  }
  .zindex-xxxl-0 {
    z-index: 0 !important;
  }
  .zindex-xxxl-1 {
    z-index: 1 !important;
  }
  .zindex-xxxl-2 {
    z-index: 2 !important;
  }
  .zindex-xxxl-3 {
    z-index: 3 !important;
  }
  .zindex-xxxl-4 {
    z-index: 4 !important;
  }
  .zindex-xxxl-5 {
    z-index: 5 !important;
  }
  .zindex-xxxl-6 {
    z-index: 6 !important;
  }
  .zindex-xxxl-7 {
    z-index: 7 !important;
  }
  .zindex-xxxl-8 {
    z-index: 8 !important;
  }
  .zindex-xxxl-9 {
    z-index: 9 !important;
  }
  .zindex-xxxl-10 {
    z-index: 10 !important;
  }
}
@media (min-width: 1400px) {
  .zindex-xxl--10 {
    z-index: -10 !important;
  }
  .zindex-xxl--9 {
    z-index: -9 !important;
  }
  .zindex-xxl--8 {
    z-index: -8 !important;
  }
  .zindex-xxl--7 {
    z-index: -7 !important;
  }
  .zindex-xxl--6 {
    z-index: -6 !important;
  }
  .zindex-xxl--5 {
    z-index: -5 !important;
  }
  .zindex-xxl--4 {
    z-index: -4 !important;
  }
  .zindex-xxl--3 {
    z-index: -3 !important;
  }
  .zindex-xxl--2 {
    z-index: -2 !important;
  }
  .zindex-xxl--1 {
    z-index: -1 !important;
  }
  .zindex-xxl-0 {
    z-index: 0 !important;
  }
  .zindex-xxl-1 {
    z-index: 1 !important;
  }
  .zindex-xxl-2 {
    z-index: 2 !important;
  }
  .zindex-xxl-3 {
    z-index: 3 !important;
  }
  .zindex-xxl-4 {
    z-index: 4 !important;
  }
  .zindex-xxl-5 {
    z-index: 5 !important;
  }
  .zindex-xxl-6 {
    z-index: 6 !important;
  }
  .zindex-xxl-7 {
    z-index: 7 !important;
  }
  .zindex-xxl-8 {
    z-index: 8 !important;
  }
  .zindex-xxl-9 {
    z-index: 9 !important;
  }
  .zindex-xxl-10 {
    z-index: 10 !important;
  }
}
@media (min-width: 1200px) {
  .zindex-xl--10 {
    z-index: -10 !important;
  }
  .zindex-xl--9 {
    z-index: -9 !important;
  }
  .zindex-xl--8 {
    z-index: -8 !important;
  }
  .zindex-xl--7 {
    z-index: -7 !important;
  }
  .zindex-xl--6 {
    z-index: -6 !important;
  }
  .zindex-xl--5 {
    z-index: -5 !important;
  }
  .zindex-xl--4 {
    z-index: -4 !important;
  }
  .zindex-xl--3 {
    z-index: -3 !important;
  }
  .zindex-xl--2 {
    z-index: -2 !important;
  }
  .zindex-xl--1 {
    z-index: -1 !important;
  }
  .zindex-xl-0 {
    z-index: 0 !important;
  }
  .zindex-xl-1 {
    z-index: 1 !important;
  }
  .zindex-xl-2 {
    z-index: 2 !important;
  }
  .zindex-xl-3 {
    z-index: 3 !important;
  }
  .zindex-xl-4 {
    z-index: 4 !important;
  }
  .zindex-xl-5 {
    z-index: 5 !important;
  }
  .zindex-xl-6 {
    z-index: 6 !important;
  }
  .zindex-xl-7 {
    z-index: 7 !important;
  }
  .zindex-xl-8 {
    z-index: 8 !important;
  }
  .zindex-xl-9 {
    z-index: 9 !important;
  }
  .zindex-xl-10 {
    z-index: 10 !important;
  }
}
@media (min-width: 1000px) {
  .zindex-lg--10 {
    z-index: -10 !important;
  }
  .zindex-lg--9 {
    z-index: -9 !important;
  }
  .zindex-lg--8 {
    z-index: -8 !important;
  }
  .zindex-lg--7 {
    z-index: -7 !important;
  }
  .zindex-lg--6 {
    z-index: -6 !important;
  }
  .zindex-lg--5 {
    z-index: -5 !important;
  }
  .zindex-lg--4 {
    z-index: -4 !important;
  }
  .zindex-lg--3 {
    z-index: -3 !important;
  }
  .zindex-lg--2 {
    z-index: -2 !important;
  }
  .zindex-lg--1 {
    z-index: -1 !important;
  }
  .zindex-lg-0 {
    z-index: 0 !important;
  }
  .zindex-lg-1 {
    z-index: 1 !important;
  }
  .zindex-lg-2 {
    z-index: 2 !important;
  }
  .zindex-lg-3 {
    z-index: 3 !important;
  }
  .zindex-lg-4 {
    z-index: 4 !important;
  }
  .zindex-lg-5 {
    z-index: 5 !important;
  }
  .zindex-lg-6 {
    z-index: 6 !important;
  }
  .zindex-lg-7 {
    z-index: 7 !important;
  }
  .zindex-lg-8 {
    z-index: 8 !important;
  }
  .zindex-lg-9 {
    z-index: 9 !important;
  }
  .zindex-lg-10 {
    z-index: 10 !important;
  }
}
@media (min-width: 720px) {
  .zindex-md--10 {
    z-index: -10 !important;
  }
  .zindex-md--9 {
    z-index: -9 !important;
  }
  .zindex-md--8 {
    z-index: -8 !important;
  }
  .zindex-md--7 {
    z-index: -7 !important;
  }
  .zindex-md--6 {
    z-index: -6 !important;
  }
  .zindex-md--5 {
    z-index: -5 !important;
  }
  .zindex-md--4 {
    z-index: -4 !important;
  }
  .zindex-md--3 {
    z-index: -3 !important;
  }
  .zindex-md--2 {
    z-index: -2 !important;
  }
  .zindex-md--1 {
    z-index: -1 !important;
  }
  .zindex-md-0 {
    z-index: 0 !important;
  }
  .zindex-md-1 {
    z-index: 1 !important;
  }
  .zindex-md-2 {
    z-index: 2 !important;
  }
  .zindex-md-3 {
    z-index: 3 !important;
  }
  .zindex-md-4 {
    z-index: 4 !important;
  }
  .zindex-md-5 {
    z-index: 5 !important;
  }
  .zindex-md-6 {
    z-index: 6 !important;
  }
  .zindex-md-7 {
    z-index: 7 !important;
  }
  .zindex-md-8 {
    z-index: 8 !important;
  }
  .zindex-md-9 {
    z-index: 9 !important;
  }
  .zindex-md-10 {
    z-index: 10 !important;
  }
}
@media (min-width: 576px) {
  .zindex-sm--10 {
    z-index: -10 !important;
  }
  .zindex-sm--9 {
    z-index: -9 !important;
  }
  .zindex-sm--8 {
    z-index: -8 !important;
  }
  .zindex-sm--7 {
    z-index: -7 !important;
  }
  .zindex-sm--6 {
    z-index: -6 !important;
  }
  .zindex-sm--5 {
    z-index: -5 !important;
  }
  .zindex-sm--4 {
    z-index: -4 !important;
  }
  .zindex-sm--3 {
    z-index: -3 !important;
  }
  .zindex-sm--2 {
    z-index: -2 !important;
  }
  .zindex-sm--1 {
    z-index: -1 !important;
  }
  .zindex-sm-0 {
    z-index: 0 !important;
  }
  .zindex-sm-1 {
    z-index: 1 !important;
  }
  .zindex-sm-2 {
    z-index: 2 !important;
  }
  .zindex-sm-3 {
    z-index: 3 !important;
  }
  .zindex-sm-4 {
    z-index: 4 !important;
  }
  .zindex-sm-5 {
    z-index: 5 !important;
  }
  .zindex-sm-6 {
    z-index: 6 !important;
  }
  .zindex-sm-7 {
    z-index: 7 !important;
  }
  .zindex-sm-8 {
    z-index: 8 !important;
  }
  .zindex-sm-9 {
    z-index: 9 !important;
  }
  .zindex-sm-10 {
    z-index: 10 !important;
  }
}
.zindex-xs--10 {
  z-index: -10 !important;
}
.zindex-xs--9 {
  z-index: -9 !important;
}
.zindex-xs--8 {
  z-index: -8 !important;
}
.zindex-xs--7 {
  z-index: -7 !important;
}
.zindex-xs--6 {
  z-index: -6 !important;
}
.zindex-xs--5 {
  z-index: -5 !important;
}
.zindex-xs--4 {
  z-index: -4 !important;
}
.zindex-xs--3 {
  z-index: -3 !important;
}
.zindex-xs--2 {
  z-index: -2 !important;
}
.zindex-xs--1 {
  z-index: -1 !important;
}
.zindex-xs-0 {
  z-index: 0 !important;
}
.zindex-xs-1 {
  z-index: 1 !important;
}
.zindex-xs-2 {
  z-index: 2 !important;
}
.zindex-xs-3 {
  z-index: 3 !important;
}
.zindex-xs-4 {
  z-index: 4 !important;
}
.zindex-xs-5 {
  z-index: 5 !important;
}
.zindex-xs-6 {
  z-index: 6 !important;
}
.zindex-xs-7 {
  z-index: 7 !important;
}
.zindex-xs-8 {
  z-index: 8 !important;
}
.zindex-xs-9 {
  z-index: 9 !important;
}
.zindex-xs-10 {
  z-index: 10 !important;
}

@keyframes rotateInfinite {
  to {
    transform: rotate(-360deg);
  }
}
.rotateInfinite {
  animation: rotateInfinite 1s linear infinite;
}

.badge {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 5px;
  width: fit-content;
  min-height: 35px;
  padding: 5px 10px;
  border: 1px solid;
  border-radius: 1000px;
  font-size: 16px;
  line-height: 100%;
  color: var(--black);
  border-color: var(--black);
  background-color: var(--white);
  vertical-align: middle;
  user-select: none;
  white-space: nowrap;
  transition: 0.25s ease-in-out;
}
@media (max-width: 999.98px) {
  .badge {
    font-size: 14px;
  }
}
.badge i {
  display: flex;
  font-size: small;
}
.badge > svg {
  display: flex;
  width: 16px;
  height: 16px;
}
@media (max-width: 999.98px) {
  .badge > svg {
    width: 14px;
    height: 14px;
  }
}
.badge-room {
  flex-direction: row;
  align-items: stretch;
  width: 170px;
  min-height: 60px;
  padding: 10px;
  background-color: var(--main);
  border: 1px solid var(--main);
  color: var(--white);
  text-decoration: none !important;
}
@media (max-width: 999.98px) {
  .badge-room {
    width: 130px;
    min-height: 50px;
    padding: 7.5px 15px;
  }
}
.badge-room:hover {
  color: var(--white);
  border-color: var(--green);
  background-color: var(--green);
}
.badge-room.active {
  color: var(--white);
  border-color: var(--green);
  background-color: var(--green);
}
.badge-room > .left, .badge-room > .right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.badge-room > .left {
  flex: 1;
  width: 0;
  text-align: left;
}
.badge-room > .left .top {
  margin-bottom: auto;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 135%;
}
@media (max-width: 999.98px) {
  .badge-room > .left .top {
    font-size: 14px;
  }
}
.badge-room > .left .top {
  line-height: 1.125;
  white-space: nowrap;
}
@media (max-width: 999.98px) {
  .badge-room > .left .top {
    font-size: 10px;
  }
}
.badge-room > .left .bottom {
  margin-top: auto;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 135%;
}
@media (max-width: 999.98px) {
  .badge-room > .left .bottom {
    font-size: 12px;
  }
}
.badge-room > .left .bottom {
  white-space: nowrap;
}
.badge-room > .right {
  flex: 1 1 0%;
  text-align: right;
}
.badge-room > .right .top {
  margin-bottom: auto;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 135%;
}
@media (max-width: 999.98px) {
  .badge-room > .right .top {
    font-size: 12px;
  }
}
.badge-room > .right .top {
  white-space: nowrap;
}
.badge-room > .right .bottom {
  margin-top: auto;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 135%;
}
@media (max-width: 999.98px) {
  .badge-room > .right .bottom {
    font-size: 12px;
  }
}
.badge-room > .right .bottom {
  font-weight: 700;
  white-space: nowrap;
}
@media (max-width: 999.98px) {
  .badge-room > .right .bottom {
    font-size: 10px;
  }
}
.badge-room.not-filter:not(:hover) {
  background-color: var(--main-50);
  border: 1px solid var(--main-50);
  color: var(--white);
}
.badge-room.disabled {
  background-color: transparent;
  border: 1px solid var(--grey-blue);
  color: var(--grey-blue);
  pointer-events: none;
  cursor: default;
}
.badge-main {
  color: #ffffff;
  border-color: #1f4aaa;
  background-color: #1f4aaa;
}
.badge-main-80 {
  color: #ffffff;
  border-color: rgba(31, 74, 170, 0.8);
  background-color: rgba(31, 74, 170, 0.8);
}
.badge-main-50 {
  color: #ffffff;
  border-color: rgba(31, 74, 170, 0.5019607843);
  background-color: rgba(31, 74, 170, 0.5019607843);
}
.badge-navy {
  color: #ffffff;
  border-color: #0f2b66;
  background-color: #0f2b66;
}
.badge-green {
  color: #ffffff;
  border-color: #4fac7f;
  background-color: #4fac7f;
}
.badge-grey-blue {
  color: #ffffff;
  border-color: #728494;
  background-color: #728494;
}
.badge-lg {
  padding: 2px 35px;
  font-size: 16px;
  min-height: 45px;
}
@media (max-width: 575.98px) {
  .badge-lg {
    min-height: 27.5px;
    font-size: 14px;
  }
}
.badge-min {
  padding: 2px 10px;
  font-size: 14px;
  min-height: 20px;
}
@media (max-width: 999.98px) {
  .badge-min {
    font-size: 12px;
  }
}
.badge-min > svg {
  display: flex;
  width: 14px;
  height: 14px;
}
@media (max-width: 999.98px) {
  .badge-min > svg {
    width: 12px;
    height: 12px;
  }
}
.badge-light.badge-green {
  color: #1f4e31;
  border-color: #b7f8d0;
  background-color: #b7f8d0;
}
.badge-light.badge-yellow {
  color: #454216;
  border-color: #f8f4b7;
  background-color: #f8f4b7;
}
.badge-light.badge-grey {
  color: #222222;
  border-color: #d3d3d3;
  background-color: #d3d3d3;
}

.banner {
  position: fixed;
  top: auto;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  width: fit-content;
  height: fit-content;
  display: flex;
  flex-direction: column;
  padding: 20px;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.4s ease-in-out, visibility 0.4s ease-in-out, background-color 0.4s ease-in-out, backdrop-filter 0.4s ease-in-out, filter 0.4s ease-in-out;
  will-change: transform, opacity;
}
@media (max-width: 999.98px) {
  .banner {
    padding: 10px;
  }
}
@media (max-width: 575.98px) {
  .banner {
    margin-left: auto;
    margin-right: auto;
  }
}
.banner.show {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
.banner.show .banner-dialog {
  transform: translate3d(0, 0, 1px);
}
.banner-dialog {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  max-width: 660px;
  height: auto;
  margin: auto;
  border-radius: 15px;
  border: 1px solid var(--navy);
  background-image: url("/assets/images/banner/actions/1-big.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: translate3d(-100%, 0, 1px);
  transform-origin: bottom left;
  transition: 0.4s ease;
  will-change: transform;
  overflow: hidden;
}
@media (max-width: 999.98px) {
  .banner-dialog {
    max-width: 340px;
    background-image: url("/assets/images/banner/actions/1.webp");
  }
}
.banner-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 15px;
}
.banner .btn-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 10;
  transform: translate(0, 0);
  color: #ffffff;
  border-color: #0f2b66;
  background-color: #0f2b66;
}
.banner .btn-close.hover, .banner .btn-close:hover {
  color: #ffffff;
  border-color: rgb(21.5384615385, 61.7435897436, 146.4615384615);
  background-color: rgb(21.5384615385, 61.7435897436, 146.4615384615);
}
.banner .btn-close:focus:active, .banner .btn-close.focus, .banner .btn-close.active, .banner .btn-close.open {
  background-color: rgb(8.4615384615, 24.2564102564, 57.5384615385);
  border-color: rgb(8.4615384615, 24.2564102564, 57.5384615385);
  color: #ffffff;
}
.banner .btn-close.glass {
  background-color: rgba(15, 43, 102, 0.5);
}
.banner .btn-close.dimmed {
  background-color: rgba(15, 43, 102, 0.15);
  color: #0f2b66;
  border-color: rgba(15, 43, 102, 0.85);
}
.banner .btn-close.dimmed.hover, .banner .btn-close.dimmed:hover {
  color: #ffffff;
  border-color: rgb(21.5384615385, 61.7435897436, 146.4615384615);
  background-color: rgb(21.5384615385, 61.7435897436, 146.4615384615);
}
@media (max-width: 999.98px) {
  .banner .btn-close {
    --btn-size: 35px;
  }
}
.banner .btn-close i {
  display: flex;
}
.banner-cover {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  flex: 1;
  padding: 20px 50px;
  color: var(--white);
  text-decoration: none !important;
  transition: 0.25s ease-in-out;
}
@media (max-width: 999.98px) {
  .banner-cover {
    padding: 20px;
  }
}

.cookies {
  position: fixed;
  box-sizing: border-box;
  bottom: 8px;
  left: 0;
  right: 0;
  z-index: 1020;
  margin: 0 auto;
  width: 96%;
  max-width: 360px;
  padding: 12px 16px 8px 16px;
  background: #f7f5f1;
  color: #443322;
  box-shadow: 0 0 8px 4px rgba(44, 33, 22, 0.2);
  border-radius: 24px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-size: 15px;
}
@media (max-width: 600px) {
  .cookies {
    font-size: 13px;
  }
}
.cookies span {
  display: block;
  padding-right: 16px;
}
.cookies .close_cookies {
  position: absolute;
  top: 10px;
  right: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  cursor: pointer;
  color: #223344;
  border: 1px solid transparent;
  border-radius: 4px;
}
.cookies .close_cookies:hover {
  border-color: rgba(22, 33, 44, 0.2);
}
.cookies .cookies_button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: #223344;
  color: #f7f5f1;
  border: none;
  border-radius: 24px;
  box-shadow: none;
  padding: 8px 16px;
  margin-top: 12px;
  text-align: center;
  cursor: pointer;
  transition: 0.2s;
}
.cookies .cookies_button:hover {
  background: #112233;
}

.btn,
button {
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 135%;
}
@media (max-width: 999.98px) {
  .btn,
  button {
    font-size: 14px;
  }
}
.btn,
button {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--btn-padding-y) var(--btn-padding-x);
  color: var(--white);
  line-height: 1;
  font-family: "Wix Madefor Display";
  text-align: center;
  text-decoration: none !important;
  vertical-align: middle;
  cursor: pointer;
  touch-action: manipulation;
  user-select: none;
  text-transform: none;
  border-radius: 100px;
  border: 1px solid;
  border-color: var(--main);
  background-color: var(--main);
  white-space: nowrap;
  transition: 0.25s ease-in-out;
}
@media (max-width: 999.98px) {
  .btn,
  button {
    --btn-padding-y: 14.5px;
    --btn-padding-x: 24px;
  }
}
.btn:hover, .btn.hover,
button:hover,
button.hover {
  background-color: rgb(38.8656716418, 92.776119403, 213.1343283582);
  border-color: rgb(38.8656716418, 92.776119403, 213.1343283582);
  color: var(--white);
}
.btn:focus:active, .btn.focus, .btn.active, .btn.open,
button:focus:active,
button.focus,
button.active,
button.open {
  background-color: rgb(23.1343283582, 55.223880597, 126.8656716418);
  border-color: rgb(23.1343283582, 55.223880597, 126.8656716418);
  color: var(--white);
}
.btn.disabled, .btn:disabled,
button.disabled,
button:disabled {
  background-color: rgba(114, 132, 148, 0.35) !important;
  color: var(--white) !important;
  border-color: rgba(114, 132, 148, 0.125) !important;
  box-shadow: none;
  cursor: not-allowed;
}
.btn.disabled:hover, .btn.disabled.hover, .btn.disabled:focus:active, .btn.disabled:focus, .btn.disabled.focus, .btn.disabled.active, .btn.disabled.open, .btn:disabled:hover, .btn:disabled.hover, .btn:disabled:focus:active, .btn:disabled:focus, .btn:disabled.focus, .btn:disabled.active, .btn:disabled.open,
button.disabled:hover,
button.disabled.hover,
button.disabled:focus:active,
button.disabled:focus,
button.disabled.focus,
button.disabled.active,
button.disabled.open,
button:disabled:hover,
button:disabled.hover,
button:disabled:focus:active,
button:disabled:focus,
button:disabled.focus,
button:disabled.active,
button:disabled.open {
  background-color: rgba(114, 132, 148, 0.35) !important;
  color: var(--white) !important;
  border-color: rgba(114, 132, 148, 0.125) !important;
}
.btn.hidden, .btn:hidden,
button.hidden,
button:hidden {
  display: none;
}
.btn > i, .btn > svg,
button > i,
button > svg {
  pointer-events: none;
  vertical-align: text-bottom;
  transition: 0.25s ease-in-out;
}
.btn.aspected,
button.aspected {
  --btn-padding-x: 4px;
  --btn-padding-y: 4px;
  --btn-padding-x: var(--btn-padding-y);
  width: var(--btn-size);
  height: var(--btn-size);
}
.btn .counter-items,
button .counter-items {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  max-width: 30px;
  height: 20px;
  padding: 0 3px;
  border-radius: 1000px;
  background-color: var(--green);
  color: var(--white);
  font-size: 12px;
  text-align: center;
  transform: translate(30%, 30%);
}
.btn .counter-items[data-compare-items="0"], .btn .counter-items[data-favorite-items="0"],
button .counter-items[data-compare-items="0"],
button .counter-items[data-favorite-items="0"] {
  display: none;
}
.btn-xs,
button-xs {
  --btn-size: 20px;
  --btn-padding-y: 4px;
  --btn-padding-x: 8px;
  font-size: 14px;
  min-height: 20px;
}
@media (max-width: 999.98px) {
  .btn-xs,
  button-xs {
    font-size: 12px;
  }
}
.btn-xs i,
button-xs i {
  font-size: x-small;
}
.btn-xs.aspected,
button-xs.aspected {
  width: var(--btn-size);
  height: var(--btn-size);
}
.btn-sm,
button-sm {
  --btn-padding-y: 8.5px;
  --btn-padding-x: 24px;
  --btn-size: 35px;
  min-height: 35px;
}
@media (max-width: 999.98px) {
  .btn-sm,
  button-sm {
    --btn-padding-y: 9.5px;
  }
}
.btn-sm.aspected,
button-sm.aspected {
  width: var(--btn-size);
  height: var(--btn-size);
}
.btn-md,
button-md {
  --btn-padding-y: 10px;
  --btn-padding-x: 24px;
  min-height: 35px;
}
.btn-md.aspected,
button-md.aspected {
  width: var(--btn-size);
  height: var(--btn-size);
}
.btn-lg,
button-lg {
  --btn-padding-y: 16px;
}
.btn-lg.aspected,
button-lg.aspected {
  width: var(--btn-size, 40px);
  height: var(--btn-size, 40px);
  --btn-padding-x: 4px;
  --btn-padding-y: 4px;
}
.btn-outline,
button-outline {
  color: var(--main);
  border-color: var(--main);
  background-color: transparent;
}
.btn-outline.hover, .btn-outline:hover,
button-outline.hover,
button-outline:hover {
  color: var(--white);
  border-color: var(--main);
  background-color: var(--main);
}
.btn-outline:focus:active, .btn-outline.focus, .btn-outline.active, .btn-outline.open,
button-outline:focus:active,
button-outline.focus,
button-outline.active,
button-outline.open {
  background-color: rgb(23.1343283582, 55.223880597, 126.8656716418);
  border-color: rgb(23.1343283582, 55.223880597, 126.8656716418);
  color: var(--white);
}
.btn-outline-green,
button-outline-green {
  color: #4fac7f;
  border-color: #4fac7f;
  background-color: transparent;
}
.btn-outline-green.hover, .btn-outline-green:hover,
button-outline-green.hover,
button-outline-green:hover {
  color: #ffffff;
  border-color: #4fac7f;
  background-color: #4fac7f;
}
.btn-outline-green:focus:active, .btn-outline-green.focus, .btn-outline-green.active, .btn-outline-green.open,
button-outline-green:focus:active,
button-outline-green.focus,
button-outline-green.active,
button-outline-green.open {
  background-color: rgb(62.9482071713, 137.0517928287, 101.1952191235);
  border-color: rgb(62.9482071713, 137.0517928287, 101.1952191235);
  color: #ffffff;
}
.btn-outline-grey-blue,
button-outline-grey-blue {
  color: #728494;
  border-color: #728494;
  background-color: transparent;
}
.btn-outline-grey-blue.hover, .btn-outline-grey-blue:hover,
button-outline-grey-blue.hover,
button-outline-grey-blue:hover {
  color: #ffffff;
  border-color: #728494;
  background-color: #728494;
}
.btn-outline-grey-blue:focus:active, .btn-outline-grey-blue.focus, .btn-outline-grey-blue.active, .btn-outline-grey-blue.open,
button-outline-grey-blue:focus:active,
button-outline-grey-blue.focus,
button-outline-grey-blue.active,
button-outline-grey-blue.open {
  background-color: rgb(91.0362903226, 106.3508064516, 119.9637096774);
  border-color: rgb(91.0362903226, 106.3508064516, 119.9637096774);
  color: #ffffff;
}
.btn-outline-red,
button-outline-red {
  color: #b43c3c;
  border-color: #b43c3c;
  background-color: transparent;
}
.btn-outline-red.hover, .btn-outline-red:hover,
button-outline-red.hover,
button-outline-red:hover {
  color: #ffffff;
  border-color: #b43c3c;
  background-color: #b43c3c;
}
.btn-outline-red:focus:active, .btn-outline-red.focus, .btn-outline-red.active, .btn-outline-red.open,
button-outline-red:focus:active,
button-outline-red.focus,
button-outline-red.active,
button-outline-red.open {
  background-color: rgb(141.75, 47.25, 47.25);
  border-color: rgb(141.75, 47.25, 47.25);
  color: #ffffff;
}
.btn-outline-white,
button-outline-white {
  color: #ffffff;
  border-color: #ffffff;
  background-color: transparent;
}
.btn-outline-white.hover, .btn-outline-white:hover,
button-outline-white.hover,
button-outline-white:hover {
  color: #0f2b66;
  border-color: #ffffff;
  background-color: #ffffff;
}
.btn-outline-white:focus:active, .btn-outline-white.focus, .btn-outline-white.active, .btn-outline-white.open,
button-outline-white:focus:active,
button-outline-white.focus,
button-outline-white.active,
button-outline-white.open {
  background-color: rgb(229.5, 229.5, 229.5);
  border-color: rgb(229.5, 229.5, 229.5);
  color: #0f2b66;
}
.btn-outline-navy,
button-outline-navy {
  color: #0f2b66;
  border-color: #0f2b66;
  background-color: transparent;
}
.btn-outline-navy.hover, .btn-outline-navy:hover,
button-outline-navy.hover,
button-outline-navy:hover {
  color: #ffffff;
  border-color: #0f2b66;
  background-color: #0f2b66;
}
.btn-outline-navy:focus:active, .btn-outline-navy.focus, .btn-outline-navy.active, .btn-outline-navy.open,
button-outline-navy:focus:active,
button-outline-navy.focus,
button-outline-navy.active,
button-outline-navy.open {
  background-color: rgb(8.4615384615, 24.2564102564, 57.5384615385);
  border-color: rgb(8.4615384615, 24.2564102564, 57.5384615385);
  color: #ffffff;
}
.btn-icon,
button-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
@media (max-width: 999.98px) {
  .btn-icon,
  button-icon {
    gap: 5px;
  }
}
.btn-icon > svg, .btn-icon > image, .btn-icon > img, .btn-icon > object, .btn-icon > i,
button-icon > svg,
button-icon > image,
button-icon > img,
button-icon > object,
button-icon > i {
  display: flex;
  align-self: center;
  justify-content: center;
  width: fit-content;
  max-height: 100%;
  aspect-ratio: 1/1;
  object-fit: contain;
  vertical-align: middle;
}
.btn-icon > svg, .btn-icon > image, .btn-icon > img, .btn-icon > object,
button-icon > svg,
button-icon > image,
button-icon > img,
button-icon > object {
  max-width: 16px;
  width: 100%;
}
.btn-icon > svg *,
button-icon > svg * {
  fill: currentColor;
}
.btn-navy,
button-navy {
  color: #ffffff;
  border-color: #0f2b66;
  background-color: #0f2b66;
}
.btn-navy.hover, .btn-navy:hover,
button-navy.hover,
button-navy:hover {
  color: #ffffff;
  border-color: rgb(21.5384615385, 61.7435897436, 146.4615384615);
  background-color: rgb(21.5384615385, 61.7435897436, 146.4615384615);
}
.btn-navy:focus:active, .btn-navy.focus, .btn-navy.active, .btn-navy.open,
button-navy:focus:active,
button-navy.focus,
button-navy.active,
button-navy.open {
  background-color: rgb(8.4615384615, 24.2564102564, 57.5384615385);
  border-color: rgb(8.4615384615, 24.2564102564, 57.5384615385);
  color: #ffffff;
}
.btn-navy.glass,
button-navy.glass {
  background-color: rgba(15, 43, 102, 0.5);
}
.btn-navy.dimmed,
button-navy.dimmed {
  background-color: rgba(15, 43, 102, 0.15);
  color: #0f2b66;
  border-color: rgba(15, 43, 102, 0.85);
}
.btn-navy.dimmed.hover, .btn-navy.dimmed:hover,
button-navy.dimmed.hover,
button-navy.dimmed:hover {
  color: #ffffff;
  border-color: rgb(21.5384615385, 61.7435897436, 146.4615384615);
  background-color: rgb(21.5384615385, 61.7435897436, 146.4615384615);
}
.btn-green,
button-green {
  color: #ffffff;
  border-color: #4fac7f;
  background-color: #4fac7f;
}
.btn-green.hover, .btn-green:hover,
button-green.hover,
button-green:hover {
  color: #ffffff;
  border-color: rgb(112.4661354582, 189.5338645418, 152.2430278884);
  background-color: rgb(112.4661354582, 189.5338645418, 152.2430278884);
}
.btn-green:focus:active, .btn-green.focus, .btn-green.active, .btn-green.open,
button-green:focus:active,
button-green.focus,
button-green.active,
button-green.open {
  background-color: rgb(62.9482071713, 137.0517928287, 101.1952191235);
  border-color: rgb(62.9482071713, 137.0517928287, 101.1952191235);
  color: #ffffff;
}
.btn-green.glass,
button-green.glass {
  background-color: rgba(79, 172, 127, 0.5);
}
.btn-green.dimmed,
button-green.dimmed {
  background-color: rgba(79, 172, 127, 0.15);
  color: #4fac7f;
  border-color: rgba(79, 172, 127, 0.85);
}
.btn-green.dimmed.hover, .btn-green.dimmed:hover,
button-green.dimmed.hover,
button-green.dimmed:hover {
  color: #ffffff;
  border-color: rgb(112.4661354582, 189.5338645418, 152.2430278884);
  background-color: rgb(112.4661354582, 189.5338645418, 152.2430278884);
}
.btn-red,
button-red {
  color: #ffffff;
  border-color: #b43c3c;
  background-color: #b43c3c;
}
.btn-red.hover, .btn-red:hover,
button-red.hover,
button-red:hover {
  color: #ffffff;
  border-color: rgb(200.25, 90.75, 90.75);
  background-color: rgb(200.25, 90.75, 90.75);
}
.btn-red:focus:active, .btn-red.focus, .btn-red.active, .btn-red.open,
button-red:focus:active,
button-red.focus,
button-red.active,
button-red.open {
  background-color: rgb(141.75, 47.25, 47.25);
  border-color: rgb(141.75, 47.25, 47.25);
  color: #ffffff;
}
.btn-red.glass,
button-red.glass {
  background-color: rgba(180, 60, 60, 0.5);
}
.btn-red.dimmed,
button-red.dimmed {
  background-color: rgba(180, 60, 60, 0.15);
  color: #b43c3c;
  border-color: rgba(180, 60, 60, 0.85);
}
.btn-red.dimmed.hover, .btn-red.dimmed:hover,
button-red.dimmed.hover,
button-red.dimmed:hover {
  color: #ffffff;
  border-color: rgb(200.25, 90.75, 90.75);
  background-color: rgb(200.25, 90.75, 90.75);
}
.btn-grey-blue,
button-grey-blue {
  color: #ffffff;
  border-color: #728494;
  background-color: #728494;
}
.btn-grey-blue.hover, .btn-grey-blue:hover,
button-grey-blue.hover,
button-grey-blue:hover {
  color: #ffffff;
  border-color: rgb(142.9959677419, 157.2943548387, 170.0040322581);
  background-color: rgb(142.9959677419, 157.2943548387, 170.0040322581);
}
.btn-grey-blue:focus:active, .btn-grey-blue.focus, .btn-grey-blue.active, .btn-grey-blue.open,
button-grey-blue:focus:active,
button-grey-blue.focus,
button-grey-blue.active,
button-grey-blue.open {
  background-color: rgb(91.0362903226, 106.3508064516, 119.9637096774);
  border-color: rgb(91.0362903226, 106.3508064516, 119.9637096774);
  color: #ffffff;
}
.btn-grey-blue.glass,
button-grey-blue.glass {
  background-color: rgba(114, 132, 148, 0.5);
}
.btn-grey-blue.dimmed,
button-grey-blue.dimmed {
  background-color: rgba(114, 132, 148, 0.15);
  color: #728494;
  border-color: rgba(114, 132, 148, 0.85);
}
.btn-grey-blue.dimmed.hover, .btn-grey-blue.dimmed:hover,
button-grey-blue.dimmed.hover,
button-grey-blue.dimmed:hover {
  color: #ffffff;
  border-color: rgb(142.9959677419, 157.2943548387, 170.0040322581);
  background-color: rgb(142.9959677419, 157.2943548387, 170.0040322581);
}
.btn-black,
button-black {
  color: #ffffff;
  border-color: #2b2f35;
  background-color: #2b2f35;
}
.btn-black.hover, .btn-black:hover,
button-black.hover,
button-black:hover {
  color: #ffffff;
  border-color: rgb(65.84375, 71.96875, 81.15625);
  background-color: rgb(65.84375, 71.96875, 81.15625);
}
.btn-black:focus:active, .btn-black.focus, .btn-black.active, .btn-black.open,
button-black:focus:active,
button-black.focus,
button-black.active,
button-black.open {
  background-color: rgb(20.15625, 22.03125, 24.84375);
  border-color: rgb(20.15625, 22.03125, 24.84375);
  color: #ffffff;
}
.btn-black.glass,
button-black.glass {
  background-color: rgba(43, 47, 53, 0.5);
}
.btn-black.dimmed,
button-black.dimmed {
  background-color: rgba(43, 47, 53, 0.15);
  color: #2b2f35;
  border-color: rgba(43, 47, 53, 0.85);
}
.btn-black.dimmed.hover, .btn-black.dimmed:hover,
button-black.dimmed.hover,
button-black.dimmed:hover {
  color: #ffffff;
  border-color: rgb(65.84375, 71.96875, 81.15625);
  background-color: rgb(65.84375, 71.96875, 81.15625);
}
.btn-black-50,
button-black-50 {
  color: #ffffff;
  border-color: rgba(43, 47, 53, 0.5019607843);
  background-color: rgba(43, 47, 53, 0.5019607843);
}
.btn-black-50.hover, .btn-black-50:hover,
button-black-50.hover,
button-black-50:hover {
  color: #ffffff;
  border-color: rgba(65.84375, 71.96875, 81.15625, 0.5019607843);
  background-color: rgba(65.84375, 71.96875, 81.15625, 0.5019607843);
}
.btn-black-50:focus:active, .btn-black-50.focus, .btn-black-50.active, .btn-black-50.open,
button-black-50:focus:active,
button-black-50.focus,
button-black-50.active,
button-black-50.open {
  background-color: rgba(20.15625, 22.03125, 24.84375, 0.5019607843);
  border-color: rgba(20.15625, 22.03125, 24.84375, 0.5019607843);
  color: #ffffff;
}
.btn-black-50.glass,
button-black-50.glass {
  background-color: rgba(43, 47, 53, 0.0019607843);
}
.btn-black-50.dimmed,
button-black-50.dimmed {
  background-color: rgba(43, 47, 53, 0);
  color: rgba(43, 47, 53, 0.5019607843);
  border-color: rgba(43, 47, 53, 0.3519607843);
}
.btn-black-50.dimmed.hover, .btn-black-50.dimmed:hover,
button-black-50.dimmed.hover,
button-black-50.dimmed:hover {
  color: #ffffff;
  border-color: rgba(65.84375, 71.96875, 81.15625, 0.5019607843);
  background-color: rgba(65.84375, 71.96875, 81.15625, 0.5019607843);
}
.btn-light-grey,
button-light-grey {
  color: #0f2b66;
  border-color: #f2f3f6;
  background-color: #f2f3f6;
}
.btn-light-grey.hover, .btn-light-grey:hover,
button-light-grey.hover,
button-light-grey:hover {
  color: #0f2b66;
  border-color: white;
  background-color: white;
}
.btn-light-grey:focus:active, .btn-light-grey.focus, .btn-light-grey.active, .btn-light-grey.open,
button-light-grey:focus:active,
button-light-grey.focus,
button-light-grey.active,
button-light-grey.open {
  background-color: rgb(211.8636363636, 215.1818181818, 225.1363636364);
  border-color: rgb(211.8636363636, 215.1818181818, 225.1363636364);
  color: #0f2b66;
}
.btn-light-grey.glass,
button-light-grey.glass {
  background-color: rgba(242, 243, 246, 0.5);
}
.btn-light-grey.dimmed,
button-light-grey.dimmed {
  background-color: rgba(242, 243, 246, 0.15);
  color: #f2f3f6;
  border-color: rgba(242, 243, 246, 0.85);
}
.btn-light-grey.dimmed.hover, .btn-light-grey.dimmed:hover,
button-light-grey.dimmed.hover,
button-light-grey.dimmed:hover {
  color: #0f2b66;
  border-color: white;
  background-color: white;
}
.btn-light-grey.hover, .btn-light-grey:hover,
button-light-grey.hover,
button-light-grey:hover {
  color: #ffffff;
  border-color: #728494;
  background-color: #728494;
}
.btn-light-grey.hover.hover, .btn-light-grey.hover:hover, .btn-light-grey:hover.hover, .btn-light-grey:hover:hover,
button-light-grey.hover.hover,
button-light-grey.hover:hover,
button-light-grey:hover.hover,
button-light-grey:hover:hover {
  color: #ffffff;
  border-color: rgb(142.9959677419, 157.2943548387, 170.0040322581);
  background-color: rgb(142.9959677419, 157.2943548387, 170.0040322581);
}
.btn-light-grey.hover:focus:active, .btn-light-grey.hover.focus, .btn-light-grey.hover.active, .btn-light-grey.hover.open, .btn-light-grey:hover:focus:active, .btn-light-grey:hover.focus, .btn-light-grey:hover.active, .btn-light-grey:hover.open,
button-light-grey.hover:focus:active,
button-light-grey.hover.focus,
button-light-grey.hover.active,
button-light-grey.hover.open,
button-light-grey:hover:focus:active,
button-light-grey:hover.focus,
button-light-grey:hover.active,
button-light-grey:hover.open {
  background-color: rgb(91.0362903226, 106.3508064516, 119.9637096774);
  border-color: rgb(91.0362903226, 106.3508064516, 119.9637096774);
  color: #ffffff;
}
.btn-light-grey.hover.glass, .btn-light-grey:hover.glass,
button-light-grey.hover.glass,
button-light-grey:hover.glass {
  background-color: rgba(114, 132, 148, 0.5);
}
.btn-light-grey.hover.dimmed, .btn-light-grey:hover.dimmed,
button-light-grey.hover.dimmed,
button-light-grey:hover.dimmed {
  background-color: rgba(114, 132, 148, 0.15);
  color: #728494;
  border-color: rgba(114, 132, 148, 0.85);
}
.btn-light-grey.hover.dimmed.hover, .btn-light-grey.hover.dimmed:hover, .btn-light-grey:hover.dimmed.hover, .btn-light-grey:hover.dimmed:hover,
button-light-grey.hover.dimmed.hover,
button-light-grey.hover.dimmed:hover,
button-light-grey:hover.dimmed.hover,
button-light-grey:hover.dimmed:hover {
  color: #ffffff;
  border-color: rgb(142.9959677419, 157.2943548387, 170.0040322581);
  background-color: rgb(142.9959677419, 157.2943548387, 170.0040322581);
}
.btn-light-grey:focus:active, .btn-light-grey.focus, .btn-light-grey.active,
button-light-grey:focus:active,
button-light-grey.focus,
button-light-grey.active {
  color: #ffffff;
  border-color: #1f4aaa;
  background-color: #1f4aaa;
}
.btn-light-grey:focus:active.hover, .btn-light-grey:focus:active:hover, .btn-light-grey.focus.hover, .btn-light-grey.focus:hover, .btn-light-grey.active.hover, .btn-light-grey.active:hover,
button-light-grey:focus:active.hover,
button-light-grey:focus:active:hover,
button-light-grey.focus.hover,
button-light-grey.focus:hover,
button-light-grey.active.hover,
button-light-grey.active:hover {
  color: #ffffff;
  border-color: rgb(38.8656716418, 92.776119403, 213.1343283582);
  background-color: rgb(38.8656716418, 92.776119403, 213.1343283582);
}
.btn-light-grey:focus:active:focus:active, .btn-light-grey:focus:active.focus, .btn-light-grey:focus:active.active, .btn-light-grey:focus:active.open, .btn-light-grey.focus:focus:active, .btn-light-grey.focus.focus, .btn-light-grey.focus.active, .btn-light-grey.focus.open, .btn-light-grey.active:focus:active, .btn-light-grey.active.focus, .btn-light-grey.active.active, .btn-light-grey.active.open,
button-light-grey:focus:active:focus:active,
button-light-grey:focus:active.focus,
button-light-grey:focus:active.active,
button-light-grey:focus:active.open,
button-light-grey.focus:focus:active,
button-light-grey.focus.focus,
button-light-grey.focus.active,
button-light-grey.focus.open,
button-light-grey.active:focus:active,
button-light-grey.active.focus,
button-light-grey.active.active,
button-light-grey.active.open {
  background-color: rgb(23.1343283582, 55.223880597, 126.8656716418);
  border-color: rgb(23.1343283582, 55.223880597, 126.8656716418);
  color: #ffffff;
}
.btn-light-grey:focus:active.glass, .btn-light-grey.focus.glass, .btn-light-grey.active.glass,
button-light-grey:focus:active.glass,
button-light-grey.focus.glass,
button-light-grey.active.glass {
  background-color: rgba(31, 74, 170, 0.5);
}
.btn-light-grey:focus:active.dimmed, .btn-light-grey.focus.dimmed, .btn-light-grey.active.dimmed,
button-light-grey:focus:active.dimmed,
button-light-grey.focus.dimmed,
button-light-grey.active.dimmed {
  background-color: rgba(31, 74, 170, 0.15);
  color: #1f4aaa;
  border-color: rgba(31, 74, 170, 0.85);
}
.btn-light-grey:focus:active.dimmed.hover, .btn-light-grey:focus:active.dimmed:hover, .btn-light-grey.focus.dimmed.hover, .btn-light-grey.focus.dimmed:hover, .btn-light-grey.active.dimmed.hover, .btn-light-grey.active.dimmed:hover,
button-light-grey:focus:active.dimmed.hover,
button-light-grey:focus:active.dimmed:hover,
button-light-grey.focus.dimmed.hover,
button-light-grey.focus.dimmed:hover,
button-light-grey.active.dimmed.hover,
button-light-grey.active.dimmed:hover {
  color: #ffffff;
  border-color: rgb(38.8656716418, 92.776119403, 213.1343283582);
  background-color: rgb(38.8656716418, 92.776119403, 213.1343283582);
}
.btn-white,
button-white {
  color: #2b2f35;
  border-color: #ffffff;
  background-color: #ffffff;
}
.btn-white.hover, .btn-white:hover,
button-white.hover,
button-white:hover {
  color: #ffffff;
  border-color: #0f2b66;
  background-color: #0f2b66;
}
.btn-white:focus:active, .btn-white.focus, .btn-white.active, .btn-white.open,
button-white:focus:active,
button-white.focus,
button-white.active,
button-white.open {
  color: #ffffff;
  border-color: #2b2f35;
  background-color: #2b2f35;
}
.btn-white.glass,
button-white.glass {
  background-color: rgba(255, 255, 255, 0.5);
}
.btn-white.dimmed,
button-white.dimmed {
  background-color: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.85);
}
.btn-white.dimmed.hover, .btn-white.dimmed:hover,
button-white.dimmed.hover,
button-white.dimmed:hover {
  color: #2b2f35;
  border-color: white;
  background-color: white;
}
.btn-ripple,
button-ripple {
  position: relative;
  background-color: var(--green);
  color: var(--white);
  border-color: var(--green);
  overflow: hidden;
}
.btn-ripple > *,
button-ripple > * {
  position: relative;
  z-index: 2;
}
.btn-ripple::before,
button-ripple::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 0;
  width: 0;
  height: 0;
  aspect-ratio: 1/1;
  border-radius: 1000px;
  background-color: var(--green);
  transform-origin: center;
  transform: translate(-50%, -50%);
  transition: 0.25s ease-in-out;
  will-change: transform;
}
.btn-ripple:hover, .btn-ripple.hover,
button-ripple:hover,
button-ripple.hover {
  background-color: var(--green);
  color: var(--white);
  border-color: var(--main);
}
.btn-ripple:hover::before, .btn-ripple.hover::before,
button-ripple:hover::before,
button-ripple.hover::before {
  width: 100%;
  height: 140px;
  background-color: var(--main);
  transform: translate(-50%, -50%);
}
.btn-ripple:focus:active, .btn-ripple.focus, .btn-ripple.active,
button-ripple:focus:active,
button-ripple.focus,
button-ripple.active {
  background-color: var(--main);
  color: var(--white);
  border-color: var(--main);
}
.btn-ripple:focus:active::before, .btn-ripple.focus::before, .btn-ripple.active::before,
button-ripple:focus:active::before,
button-ripple.focus::before,
button-ripple.active::before {
  background-color: rgb(23.1343283582, 55.223880597, 126.8656716418);
  transform: translate(-50%, -50%);
}
.btn-close,
button-close {
  --btn-size: 35px;
  font-weight: 100;
  font-size: 14px;
  flex: 0 0 var(--btn-size);
}
.btn-close > i,
button-close > i {
  transform: rotate(0deg);
}
.btn-close:hover > i,
button-close:hover > i {
  transform: rotate(180deg);
}
.btn-chat--secondary,
button-chat--secondary {
  border: 1px solid var(--light-grey);
  border-radius: 12px;
  background-color: var(--white);
  color: inherit;
}

.card {
  position: relative;
  z-index: 1;
  display: flex;
  max-width: 100%;
  padding: 15px;
  background-color: var(--light-grey);
  border: 1px solid;
  border-color: var(--light-grey);
  border-radius: 15px;
  color: var(--black);
  transition: 0.25s ease-in-out;
}
.card-building {
  flex-direction: column;
  width: 100%;
  aspect-ratio: 4/3;
  min-height: 240px;
  padding: 5px;
  overflow: hidden;
  cursor: default;
}
.card-building > .mini-slider {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}
.card-building > .card-body {
  display: flex;
  flex-direction: column;
  margin-top: auto;
  padding: 10px;
  background-color: var(--white);
  border-radius: 15px;
  box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.1);
  transition: 0.4s ease;
}
.card-building > .card-body .badge {
  align-self: flex-start;
}
.card-building > .card-body > .card-link {
  display: flex;
  flex-direction: column;
}
.card-building > .card-body > .card-link * {
  text-decoration-style: none !important;
}
.card-building > .card-body .specs {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 100%;
}
.card-building > .card-body .specs-char {
  display: flex;
  align-items: baseline;
  gap: 5px;
  flex-wrap: nowrap;
}
.card-building > .card-body .rooms {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
  width: 100%;
  flex: 1 0 auto;
}
@media (min-width: 1000px) {
  .card-building > .card-body .rooms {
    max-height: 0;
    visibility: hidden;
    opacity: 0;
    transform-origin: top center;
    transition: 0.25s ease;
  }
}
@media (max-width: 999.98px) {
  .card-building > .card-body .rooms {
    margin-top: 10px;
  }
}
@media (max-width: 999.98px) {
  .card-building > .card-body .rooms > * {
    flex: 0 0 48%;
    max-width: 48%;
    width: 100%;
  }
}
.card-building > .card-body .hidden {
  display: flex;
  flex-direction: column;
  transition: 0.4s ease;
}
@media (max-width: 999.98px) {
  .card-building > .card-body .hidden {
    margin-top: 5px;
  }
}
@media (min-width: 1000px) {
  .card-building > .card-body .hidden .specs {
    max-height: 0;
    visibility: hidden;
    opacity: 0;
    transition: 0.4s ease;
  }
}
.card-building > .card-body:hover .card-link {
  text-decoration: none !important;
}
@media (min-width: 1000px) {
  .card-building > .card-body:hover {
    max-height: 100%;
  }
  .card-building > .card-body:hover .hidden {
    margin-top: 5px;
  }
  .card-building > .card-body:hover .hidden .specs {
    max-height: 200px;
    visibility: visible;
    opacity: 1;
  }
  .card-building > .card-body:hover .rooms {
    max-height: 200px;
    margin-top: 15px;
    visibility: visible;
    opacity: 1;
  }
}
.card-apartment {
  flex-direction: column;
  width: 100%;
  min-height: 400px;
  padding: 0;
  z-index: 0;
  background-color: var(--white);
  border-color: var(--light-grey);
  text-decoration: none !important;
  overflow: hidden;
  transition: 0.25s ease-in-out;
}
.card-apartment .card-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 10px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
}
.card-apartment .card-labels, .card-apartment .card-actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 5px;
}
.card-apartment .card-labels {
  flex-wrap: wrap;
  margin-right: auto;
}
.card-apartment .card-actions {
  align-self: flex-start;
  margin-left: auto;
  touch-action: manipulation;
}
.card-apartment .card-actions > * {
  position: relative;
  z-index: 10;
  cursor: pointer;
}
.card-apartment .card-image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 50px 0 10px;
  overflow: hidden;
}
.card-apartment .card-image img {
  width: 100%;
  height: 100%;
  max-width: 150px;
  max-height: 150px;
  aspect-ratio: 1/1;
  object-fit: contain;
  object-position: center;
  transform: scale(1);
  transition: 0.25s ease-in-out;
}
.card-apartment .card-badges {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 5px;
  padding: 0 10px 10px 10px;
}
.card-apartment .card-badges > .badge {
  color: #ffffff;
  border-color: #728494;
  background-color: #728494;
}
@media (max-width: 999.98px) {
  .card-apartment .card-badges > .badge {
    color: #ffffff;
    border-color: #1f4aaa;
    background-color: #1f4aaa;
  }
}
.card-apartment .card-body {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 15px;
  padding: 10px;
  background: linear-gradient(180deg, var(--white) 73.87%, var(--light-grey) 100%);
  flex: 1;
}
.card-apartment .card-body > .specs-char {
  display: block;
  max-width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  transition: 0.25s ease-in-out;
}
@media (min-width: 1000px) {
  .card-apartment .card-body > .specs-char {
    color: var(--grey-blue);
  }
}
.card-apartment .card-body .specs {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.card-apartment .card-body .specs-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
  width: 100%;
}
.card-apartment .card-body .specs-row > * {
  flex: 0 0 48%;
  max-width: 48%;
  width: 100%;
}
.card-apartment .card-body .specs-row > *:last-child {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.card-apartment .card-body .bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  margin-top: auto;
}
.card-apartment .card-body .payment {
  padding: 5px 0;
  text-align: center;
}
@media (min-width: 1000px) {
  .card-apartment:is(.collapsed) .card-body .specs {
    max-height: 0;
    margin-top: -12px;
    visibility: hidden;
    opacity: 0;
    transform-origin: top center;
    transition: 0.4s ease;
  }
}
@media (min-width: 1000px) {
  .card-apartment:hover {
    border-color: var(--main-50);
  }
  .card-apartment:hover .card-image img {
    transform: scale(1.0625);
  }
  .card-apartment:hover .card-badges > .badge {
    color: #ffffff;
    border-color: #1f4aaa;
    background-color: #1f4aaa;
  }
  .card-apartment:hover .card-body > .specs-char {
    color: var(--main);
  }
}
@media (min-width: 1000px) {
  .card-apartment:hover:is(.collapsed) .specs {
    max-height: 1000px;
    margin-top: 0;
    margin-bottom: auto;
    opacity: 1;
    visibility: visible;
  }
}
.card-post {
  flex-direction: column;
  width: 100%;
  aspect-ratio: 16/9;
  min-height: 300px;
  padding: 5px;
  text-decoration: none;
  overflow: hidden;
  cursor: pointer;
}
.card-post > .card-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 5px;
  flex-wrap: nowrap;
  margin: -5px -5px 0;
  padding: 10px;
  background-color: var(--green);
  color: var(--white);
}
.card-post > .card-header > i {
  display: flex;
  font-size: 20px;
}
@media (max-width: 999.98px) {
  .card-post > .card-header > i {
    font-size: 14px;
  }
}
.card-post > .card-header > img {
  max-width: 72px;
  max-height: 34px;
  height: 100%;
  object-fit: contain;
  object-position: left center;
  user-select: none;
}
@media (max-width: 999.98px) {
  .card-post > .card-header > img {
    max-width: 52px;
    max-height: 28px;
  }
}
.card-post > .cover {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}
.card-post > .cover * {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: none;
  transition: 0.4s ease;
}
.card-post > .card-body {
  display: flex;
  flex-direction: column;
  margin-top: auto;
  padding: 15px;
  background-color: var(--white);
  border-radius: 15px;
  box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.1);
  transition: 0.4s ease;
}
@media (max-width: 575.98px) {
  .card-post > .card-body {
    padding: 10px;
  }
}
.card-post > .card-body p:last-child {
  margin: 0;
}
.card-post:hover {
  text-decoration: none;
}
@media (min-width: 1000px) {
  .card-post:hover .cover > * {
    transform: scale(1.125);
  }
}
.card-post:nth-child(4n-3) .card-header {
  background-color: var(--green);
}
.card-post:nth-child(4n-2) .card-header {
  background-color: var(--navy);
}
.card-post:nth-child(4n-1) .card-header {
  background-color: var(--main);
}
.card-review {
  flex-direction: column;
  gap: 10px;
  width: 100%;
  height: 100%;
  padding: 20px;
  background-color: var(--white);
  cursor: default;
}
.card-review > .card-header {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px;
}
@media (max-width: 999.98px) {
  .card-review > .card-header {
    gap: 10px;
  }
}
@media (max-width: 575.98px) {
  .card-review > .card-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
}
.card-review > .card-header .card-title {
  display: block;
  max-width: 70%;
  text-overflow: ellipsis;
  overflow: hidden;
  flex: 1;
}
@media (max-width: 999.98px) {
  .card-review > .card-header .card-title {
    gap: 5px;
  }
}
@media (max-width: 575.98px) {
  .card-review > .card-header .card-title {
    max-width: 100%;
  }
}
@media (min-width: 576px) {
  .card-review > .card-header .rating {
    margin-left: auto;
  }
}
.card-review > .card-body {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  height: 100%;
  flex: 1;
}
.card-review > .card-body > p {
  display: -webkit-box;
  -webkit-line-clamp: 7;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card-review > .card-footer {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
  flex-wrap: nowrap;
}
.card-review .date {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: nowrap;
  gap: 5px;
  align-self: flex-start;
  margin-right: auto;
}
.card-review .source {
  display: flex;
  align-items: stretch;
  align-self: flex-end;
  gap: 5px;
  margin-left: auto;
  padding-bottom: 3px;
  border-bottom: 1px solid transparent;
  line-height: 1;
  text-decoration: none !important;
  transition: 0.25s ease-in-out;
}
.card-review .source i {
  display: flex;
}
.card-review .source:hover {
  border-bottom: 1px solid currentColor;
  text-decoration: none !important;
}
@media (min-width: 1000px) {
  .card-review:hover {
    box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.1);
  }
}
.card-category {
  flex-direction: column;
  color: var(--white);
  backface-visibility: hidden;
  overflow: hidden;
}
@media (max-width: 575.98px) {
  .card-category {
    padding: 10px;
  }
}
.card-category span {
  position: relative;
  z-index: 2;
  text-decoration: none !important;
}
.card-category::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: rgba(79, 98, 172, 0.75);
  transition: 0.25s ease-in-out;
}
.card-category img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(70%);
  mix-blend-mode: hard-light;
  transform: scale(1);
  transform-origin: center top;
  transition: 0.25s ease-in-out;
}
.card-category:hover {
  text-decoration: none !important;
}
@media (min-width: 1000px) {
  .card-category:hover::before {
    background-color: rgba(79, 172, 127, 0.75);
  }
  .card-category:hover img {
    opacity: 0.5;
    transform: scale(1.125);
  }
}
.card-builds {
  --bg-image: url("../../assets/images/example/more-buildings.webp");
  border: 0;
}
.card-more {
  --bg-image: url("../../assets/images/example/more.webp");
  border: 0;
  min-height: 430px;
}
@media (max-width: 999.98px) {
  .card-more {
    min-height: 100%;
  }
}
.card-compare {
  position: relative;
  z-index: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
}
.card-compare .card-actions {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 10px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  gap: 5px;
  touch-action: manipulation;
}
.card-compare .card-actions > * {
  position: relative;
  z-index: 10;
  cursor: pointer;
}
.card-compare .card-image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 360px;
  height: 220px;
  border-radius: 15px;
  background-color: var(--black);
  transition: 0.25s ease-in-out;
  overflow: hidden;
}
@media (max-width: 1199.98px) {
  .card-compare .card-image {
    width: 285px;
    height: 175px;
  }
}
@media (max-width: 999.98px) {
  .card-compare .card-image {
    width: 255px;
    height: 145px;
  }
}
@media (max-width: 575.98px) {
  .card-compare .card-image {
    width: 105px;
    height: 105px;
  }
}
.card-compare .card-image * {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: 0.25s ease-in-out;
}
@media (min-width: 1000px) {
  .card-compare:hover .card-image img {
    transform: scale(1.125);
  }
}
.card-select {
  border-width: 1px;
  border-style: solid;
  border-color: transparent;
  color: var(--black);
}
.card-select::before, .card-select::after {
  display: none;
}
.card-select:is(:checked) {
  border-color: var(--main);
  color: var(--main);
}
.card-banner {
  flex-direction: column;
  min-height: 144px;
  border-radius: 15px;
  border: 1px solid var(--navy);
  background-color: var(--navy);
  background-image: url("/assets/images/banner/actions/1-big.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 20px 50px;
  color: var(--white);
  text-decoration: none !important;
  transition: 0.25s ease-in-out;
}
@media (max-width: 999.98px) {
  .card-banner {
    padding: 20px;
    background-image: url("/assets/images/banner/actions/1.webp");
  }
}
.card-banner > span {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 135%;
}
@media (max-width: 999.98px) {
  .card-banner > span {
    font-size: 12px;
  }
}
.card-banner > span {
  font-weight: 700;
  margin-right: auto;
}

input[type=checkbox]:checked, input[type=checkbox]:not(:checked),
input[type=radio]:checked,
input[type=radio]:not(:checked) {
  position: absolute;
  width: 14px;
  height: 14px;
  margin: 0;
  opacity: 0;
  pointer-events: none;
}
input[type=checkbox]:checked + label, input[type=checkbox]:not(:checked) + label,
input[type=radio]:checked + label,
input[type=radio]:not(:checked) + label {
  display: inline-block;
  position: relative;
  padding-left: 20px;
  line-height: 1;
  color: var(--navy);
  cursor: pointer;
}
@media (max-width: 999.98px) {
  input[type=checkbox]:checked + label, input[type=checkbox]:not(:checked) + label,
  input[type=radio]:checked + label,
  input[type=radio]:not(:checked) + label {
    padding-left: 20px;
  }
}
input[type=checkbox]:checked + label::before, input[type=checkbox]:not(:checked) + label::before,
input[type=radio]:checked + label::before,
input[type=radio]:not(:checked) + label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 16px;
  height: 16px;
  border: 1px solid var(--navy);
  background-color: var(--white);
}
@media (max-width: 999.98px) {
  input[type=checkbox]:checked + label::before, input[type=checkbox]:not(:checked) + label::before,
  input[type=radio]:checked + label::before,
  input[type=radio]:not(:checked) + label::before {
    width: 14px;
    height: 14px;
  }
}
input[type=checkbox]:checked + label::after, input[type=checkbox]:not(:checked) + label::after,
input[type=radio]:checked + label::after,
input[type=radio]:not(:checked) + label::after {
  content: "";
  position: absolute;
  transition: all 0.2s ease;
}

input[type=checkbox]:checked + label::before, input[type=checkbox]:not(:checked) + label::before {
  border-radius: 2px;
}
input[type=checkbox]:checked + label::after, input[type=checkbox]:not(:checked) + label::after {
  top: 0;
  left: 0;
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='13' viewBox='0 0 14 13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.5 0.5H1.75C1.05964 0.5 0.5 1.05964 0.5 1.75V10.5C0.5 11.1904 1.05964 11.75 1.75 11.75H10.5C11.1904 11.75 11.75 11.1904 11.75 10.5V1.75C11.75 1.05964 11.1904 0.5 10.5 0.5Z' fill='%231F4AAA' stroke='%231F4AAA' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M4.25 5.5L6.125 7.375L12.375 1.125' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 999.98px) {
  input[type=checkbox]:checked + label::after, input[type=checkbox]:not(:checked) + label::after {
    width: 16px;
    height: 16px;
  }
}

input[type=radio]:checked + label::before, input[type=radio]:not(:checked) + label::before {
  border-radius: 100%;
}
input[type=radio]:checked + label::after, input[type=radio]:not(:checked) + label::after {
  top: 4px;
  left: 4px;
  width: 8px;
  height: 8px;
  border-radius: 100%;
  background-color: var(--main);
}
input[type=radio]:is(.checkbox):checked + label::before, input[type=radio]:is(.checkbox):not(:checked) + label::before {
  border-radius: 2px;
}
input[type=radio]:is(.checkbox):checked + label::after, input[type=radio]:is(.checkbox):not(:checked) + label::after {
  top: 0;
  left: 0;
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='13' viewBox='0 0 14 13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.5 0.5H1.75C1.05964 0.5 0.5 1.05964 0.5 1.75V10.5C0.5 11.1904 1.05964 11.75 1.75 11.75H10.5C11.1904 11.75 11.75 11.1904 11.75 10.5V1.75C11.75 1.05964 11.1904 0.5 10.5 0.5Z' fill='%231F4AAA' stroke='%231F4AAA' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M4.25 5.5L6.125 7.375L12.375 1.125' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: unset;
  border-radius: 2px;
}
@media (max-width: 999.98px) {
  input[type=radio]:is(.checkbox):checked + label::after, input[type=radio]:is(.checkbox):not(:checked) + label::after {
    width: 16px;
    height: 16px;
  }
}

input[type=checkbox]:not(:checked) + label::after,
input[type=radio]:not(:checked) + label::after {
  opacity: 0;
}
input[type=checkbox]:checked + label,
input[type=radio]:checked + label {
  color: var(--main);
}
input[type=checkbox]:checked + label::before,
input[type=radio]:checked + label::before {
  border-color: var(--main);
}
input[type=checkbox]:checked + label::after,
input[type=radio]:checked + label::after {
  opacity: 1;
}
input[type=checkbox]:checked + label:is([class^=card]),
input[type=radio]:checked + label:is([class^=card]) {
  border-color: var(--main);
}
input[type=checkbox]:checked + label:is([class^=card])::before, input[type=checkbox]:checked + label:is([class^=card])::after,
input[type=radio]:checked + label:is([class^=card])::before,
input[type=radio]:checked + label:is([class^=card])::after {
  display: none;
}

.btn-form input[type=checkbox] + label, .btn-form input[type=radio] + label {
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 135%;
}
@media (max-width: 999.98px) {
  .btn-form input[type=checkbox] + label, .btn-form input[type=radio] + label {
    font-size: 14px;
  }
}
.btn-form input[type=checkbox] + label, .btn-form input[type=radio] + label {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--btn-padding-y) var(--btn-padding-x);
  color: var(--white);
  line-height: 1;
  font-family: "Wix Madefor Display";
  text-align: center;
  text-decoration: none !important;
  vertical-align: middle;
  cursor: pointer;
  touch-action: manipulation;
  user-select: none;
  text-transform: none;
  border-radius: 100px;
  border: 1px solid;
  border-color: var(--main);
  background-color: var(--main);
  white-space: nowrap;
  transition: 0.25s ease-in-out;
}
@media (max-width: 999.98px) {
  .btn-form input[type=checkbox] + label, .btn-form input[type=radio] + label {
    --btn-padding-y: 14.5px;
    --btn-padding-x: 24px;
  }
}
.btn-form input[type=checkbox] + label:hover, .btn-form input[type=checkbox] + label.hover, .btn-form input[type=radio] + label:hover, .btn-form input[type=radio] + label.hover {
  background-color: rgb(38.8656716418, 92.776119403, 213.1343283582);
  border-color: rgb(38.8656716418, 92.776119403, 213.1343283582);
  color: var(--white);
}
.btn-form input[type=checkbox] + label:focus:active, .btn-form input[type=checkbox] + label.focus, .btn-form input[type=checkbox] + label.active, .btn-form input[type=checkbox] + label.open, .btn-form input[type=radio] + label:focus:active, .btn-form input[type=radio] + label.focus, .btn-form input[type=radio] + label.active, .btn-form input[type=radio] + label.open {
  background-color: rgb(23.1343283582, 55.223880597, 126.8656716418);
  border-color: rgb(23.1343283582, 55.223880597, 126.8656716418);
  color: var(--white);
}
.btn-form input[type=checkbox] + label.disabled, .btn-form input[type=checkbox] + label:disabled, .btn-form input[type=radio] + label.disabled, .btn-form input[type=radio] + label:disabled {
  background-color: rgba(114, 132, 148, 0.35) !important;
  color: var(--white) !important;
  border-color: rgba(114, 132, 148, 0.125) !important;
  box-shadow: none;
  cursor: not-allowed;
}
.btn-form input[type=checkbox] + label.disabled:hover, .btn-form input[type=checkbox] + label.disabled.hover, .btn-form input[type=checkbox] + label.disabled:focus:active, .btn-form input[type=checkbox] + label.disabled:focus, .btn-form input[type=checkbox] + label.disabled.focus, .btn-form input[type=checkbox] + label.disabled.active, .btn-form input[type=checkbox] + label.disabled.open, .btn-form input[type=checkbox] + label:disabled:hover, .btn-form input[type=checkbox] + label:disabled.hover, .btn-form input[type=checkbox] + label:disabled:focus:active, .btn-form input[type=checkbox] + label:disabled:focus, .btn-form input[type=checkbox] + label:disabled.focus, .btn-form input[type=checkbox] + label:disabled.active, .btn-form input[type=checkbox] + label:disabled.open, .btn-form input[type=radio] + label.disabled:hover, .btn-form input[type=radio] + label.disabled.hover, .btn-form input[type=radio] + label.disabled:focus:active, .btn-form input[type=radio] + label.disabled:focus, .btn-form input[type=radio] + label.disabled.focus, .btn-form input[type=radio] + label.disabled.active, .btn-form input[type=radio] + label.disabled.open, .btn-form input[type=radio] + label:disabled:hover, .btn-form input[type=radio] + label:disabled.hover, .btn-form input[type=radio] + label:disabled:focus:active, .btn-form input[type=radio] + label:disabled:focus, .btn-form input[type=radio] + label:disabled.focus, .btn-form input[type=radio] + label:disabled.active, .btn-form input[type=radio] + label:disabled.open {
  background-color: rgba(114, 132, 148, 0.35) !important;
  color: var(--white) !important;
  border-color: rgba(114, 132, 148, 0.125) !important;
}
.btn-form input[type=checkbox] + label.hidden, .btn-form input[type=checkbox] + label:hidden, .btn-form input[type=radio] + label.hidden, .btn-form input[type=radio] + label:hidden {
  display: none;
}
.btn-form input[type=checkbox] + label > i, .btn-form input[type=checkbox] + label > svg, .btn-form input[type=radio] + label > i, .btn-form input[type=radio] + label > svg {
  pointer-events: none;
  vertical-align: text-bottom;
  transition: 0.25s ease-in-out;
}
.btn-form input[type=checkbox] + label.aspected, .btn-form input[type=radio] + label.aspected {
  --btn-padding-x: 4px;
  --btn-padding-y: 4px;
  --btn-padding-x: var(--btn-padding-y);
  width: var(--btn-size);
  height: var(--btn-size);
}
.btn-form input[type=checkbox] + label .counter-items, .btn-form input[type=radio] + label .counter-items {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  max-width: 30px;
  height: 20px;
  padding: 0 3px;
  border-radius: 1000px;
  background-color: var(--green);
  color: var(--white);
  font-size: 12px;
  text-align: center;
  transform: translate(30%, 30%);
}
.btn-form input[type=checkbox] + label .counter-items[data-compare-items="0"], .btn-form input[type=checkbox] + label .counter-items[data-favorite-items="0"], .btn-form input[type=radio] + label .counter-items[data-compare-items="0"], .btn-form input[type=radio] + label .counter-items[data-favorite-items="0"] {
  display: none;
}
.btn-form input[type=checkbox] + label, .btn-form input[type=radio] + label {
  flex: 1;
  min-width: 35px;
  width: auto;
  height: 100%;
  min-height: 35px;
  padding: 6px;
  background-color: var(--white);
  border-color: var(--white);
  border-radius: 1000px;
  color: var(--main);
  line-height: 100%;
}
.btn-form input[type=checkbox] + label::before, .btn-form input[type=checkbox] + label::after, .btn-form input[type=radio] + label::before, .btn-form input[type=radio] + label::after {
  display: none;
}
.btn-form input[type=checkbox] + label:hover:not(:active, .active), .btn-form input[type=radio] + label:hover:not(:active, .active) {
  background-color: var(--white);
  border-color: var(--main);
  color: var(--main);
}
.btn-form input[type=checkbox] + label.active, .btn-form input[type=checkbox] + label:active, .btn-form input[type=radio] + label.active, .btn-form input[type=radio] + label:active {
  background-color: var(--main);
  border-color: var(--main);
  color: var(--white);
}
.btn-form input[type=checkbox]:checked + label, .btn-form input[type=radio]:checked + label {
  background-color: var(--main);
  color: var(--white);
  border-color: var(--main);
}
.btn-form input[type=checkbox]:checked + label:hover, .btn-form input[type=radio]:checked + label:hover {
  background-color: var(--main);
  color: var(--white);
  border-color: var(--main);
}
.btn-form--main input[type=checkbox] + label, .btn-form--main input[type=radio] + label {
  color: var(--main);
  border-color: var(--main);
  background-color: transparent;
}
.btn-form--main input[type=checkbox] + label.hover, .btn-form--main input[type=checkbox] + label:hover, .btn-form--main input[type=radio] + label.hover, .btn-form--main input[type=radio] + label:hover {
  color: var(--white);
  border-color: var(--main);
  background-color: var(--main);
}
.btn-form--main input[type=checkbox] + label:focus:active, .btn-form--main input[type=checkbox] + label.focus, .btn-form--main input[type=checkbox] + label.active, .btn-form--main input[type=checkbox] + label:checked, .btn-form--main input[type=radio] + label:focus:active, .btn-form--main input[type=radio] + label.focus, .btn-form--main input[type=radio] + label.active, .btn-form--main input[type=radio] + label:checked {
  background-color: rgb(23.1343283582, 55.223880597, 126.8656716418);
  border-color: rgb(23.1343283582, 55.223880597, 126.8656716418);
  color: var(--white);
}

.collapse {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: fit-content;
  padding: 10px 0;
  border-top: 1px solid;
  border-color: var(--grey-blue);
}
.collapse [data-collapse-toggle] {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
  padding: 10px;
  user-select: none;
  cursor: pointer;
}
.collapse [data-collapse-toggle]::after {
  content: "B";
  font-family: "prorealty" !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  display: flex;
  align-items: center;
  align-self: center;
  justify-content: center;
  margin-left: auto;
  padding: 6px;
  font-size: 14px;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transform: rotate(0deg);
  transform-origin: center;
  transition: 0.25s ease-in-out;
}
@media (max-width: 999.98px) {
  .collapse [data-collapse-toggle]::after {
    font-size: 10px;
  }
}
.collapse [data-collapse-toggle].active::after {
  transform: rotate(180deg);
}
.collapse-header i {
  display: flex;
}
.collapse-header > * {
  margin: 0;
}
.collapse-content {
  width: 100%;
  max-height: 100%;
  padding: 10px 0;
  opacity: 1;
  overflow: hidden;
  transition: 0.25s ease-in-out;
}
.collapse-content.collapsed {
  max-height: 0px;
  opacity: 0;
  padding: 0;
}
.collapse-md {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: fit-content;
  padding: 10px 0;
  border-top: 1px solid;
  border-color: var(--grey-blue);
}
.collapse-md [data-collapse-toggle] {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
  padding: 10px;
  user-select: none;
  cursor: pointer;
}
.collapse-md [data-collapse-toggle]::after {
  content: "B";
  font-family: "prorealty" !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  display: flex;
  align-items: center;
  align-self: center;
  justify-content: center;
  margin-left: auto;
  padding: 6px;
  font-size: 14px;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transform: rotate(0deg);
  transform-origin: center;
  transition: 0.25s ease-in-out;
}
@media (max-width: 999.98px) {
  .collapse-md [data-collapse-toggle]::after {
    font-size: 10px;
  }
}
.collapse-md [data-collapse-toggle].active::after {
  transform: rotate(180deg);
}
.collapse-md-header i {
  display: flex;
}
.collapse-md-header > * {
  margin: 0;
}
.collapse-md-content {
  width: 100%;
  max-height: 100%;
  padding: 10px 0;
  opacity: 1;
  overflow: hidden;
  transition: 0.25s ease-in-out;
}
.collapse-md-content.collapsed {
  max-height: 0px;
  opacity: 0;
  padding: 0;
}
.collapse-md [data-collapse-toggle] {
  padding: 0;
}

.dropdown {
  position: absolute;
  z-index: 1020;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 135%;
}
@media (max-width: 999.98px) {
  .dropdown {
    font-size: 14px;
  }
}
@supports (-moz-appearance: none) {
  .dropdown {
    scrollbar-color: var(--navy) var(--light-grey);
    scrollbar-width: thin;
  }
}
.dropdown::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
.dropdown::-webkit-scrollbar-track {
  background: var(--light-grey);
  border-radius: 8px;
}
.dropdown::-webkit-scrollbar-thumb {
  background: var(--navy);
  border-radius: 8px;
}
.dropdown {
  display: none;
  min-height: 50px;
  padding: 5px 15px;
  font-family: "Wix Madefor Display";
  color: currentColor;
  border-radius: 15px;
  border: 1px solid;
  border-color: var(--white);
  background-color: var(--white);
  outline: none;
  box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.1);
  transition: 0.25s ease-in-out;
}
@media (max-width: 999.98px) {
  .dropdown {
    font-size: 14px;
  }
}
.dropdown.open {
  display: block;
}
.dropdown-trigger {
  position: relative;
  z-index: 1;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 135%;
}
@media (max-width: 999.98px) {
  .dropdown-trigger {
    font-size: 14px;
  }
}
.dropdown-trigger {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: nowrap;
  gap: 5px;
  width: fit-content;
  min-height: 35px;
  padding: 5px 15px;
  padding-right: 35px;
  font-family: "Wix Madefor Display";
  font-size: 16px;
  color: var(--grey-blue);
  border-radius: 1000px;
  border: 1px solid;
  border-color: var(--grey-blue);
  background-color: var(--white);
  outline: none;
  user-select: none;
  cursor: pointer;
  transition: 0.25s ease-in-out;
}
@media (max-width: 1199.98px) {
  .dropdown-trigger {
    padding-right: 30px;
  }
}
@media (max-width: 999.98px) {
  .dropdown-trigger {
    padding: 5px 10px;
    padding-right: 30px;
    font-size: 14px;
  }
}
.dropdown-trigger:hover, .dropdown-trigger.hover {
  background-color: var(--white);
  border-color: var(--main);
  color: var(--main);
}
.dropdown-trigger:focus:active, .dropdown-trigger.focus, .dropdown-trigger.active {
  background-color: var(--white);
  border-color: var(--main);
  color: var(--main);
}
.dropdown-trigger ~ .dropdown {
  transform: translate(0, -20px);
}
.dropdown-trigger.open {
  border-color: var(--main);
}
.dropdown-trigger.open::after {
  transform: translate(0, -50%) rotate(180deg);
}
.dropdown-trigger.open ~ .dropdown {
  transform: translate(0, 0);
}
.dropdown-trigger.selected {
  border-color: var(--main);
  color: var(--main);
}
.dropdown-trigger.disabled, .dropdown-trigger:disabled {
  background-color: var(--grey-blue);
  color: var(--white);
  border-color: var(--grey-blue);
  box-shadow: none;
  opacity: 0.35;
  cursor: not-allowed;
}
.dropdown-trigger.hidden, .dropdown-trigger:hidden {
  display: none;
}
.dropdown-trigger::after {
  content: "B";
  position: absolute;
  top: 50%;
  right: 15px;
  width: 15px;
  height: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "prorealty";
  font-size: 10px;
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  text-align: center;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transform-origin: center;
  transform: translate(0, -50%) rotate(0deg);
  transition: 0.25s ease-in-out;
}
@media (max-width: 999.98px) {
  .dropdown-trigger::after {
    font-size: 8px;
  }
}
.dropdown-trigger > i {
  display: flex;
}
.dropdown-trigger > span {
  display: block;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.dropdown-trigger span:nth-child(2) {
  overflow: visible;
}
.dropdown-trigger span:is(.select-text) {
  flex: 1;
}
.dropdown-trigger span.is-filled-circle {
  align-items: center;
  justify-content: center;
  align-self: center;
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  background-color: var(--green);
  border-radius: 100%;
  overflow: hidden;
}
.dropdown-trigger:not([data-dropdown-searchable]) ~ .dropdown .select-item {
  white-space: nowrap;
}
.dropdown-trigger[data-dropdown-toggle=apartment-select] span, .dropdown-trigger[data-dropdown-toggle=select-building] span {
  overflow: hidden !important;
}
.dropdown-trigger[data-dropdown-searchable] {
  padding-right: 35px;
}
@media (max-width: 1199.98px) {
  .dropdown-trigger[data-dropdown-searchable] {
    padding-right: 30px;
  }
}
.dropdown-trigger[data-dropdown-searchable]::before {
  content: "%";
  display: inline-block;
  font-family: "prorealty";
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  color: currentColor;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.dropdown-trigger[data-dropdown-searchable].open {
  border-color: transparent;
}
.dropdown-trigger[data-dropdown-searchable].open span {
  opacity: 0;
}
.dropdown-trigger-search {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: 0.25s ease-in-out;
}
.dropdown-trigger-search.show {
  z-index: 2;
  opacity: 1;
  visibility: visible;
}
.dropdown[data-dropdown-id*=select-building], .dropdown[data-dropdown-id*=city-select], .dropdown[data-dropdown-id*=city-building], .dropdown[data-dropdown-id*=city-district] {
  max-height: 300px;
  overflow-x: hidden;
  overflow-y: auto;
}
.dropdown[data-dropdown-id*=pageSelect] {
  min-width: 230px;
  max-height: 230px;
  overflow-x: hidden;
  overflow-y: auto;
}
.dropdown[data-dropdown-id*=select-citizenship] {
  min-width: 220px;
  width: max-content;
  max-height: 300px;
  overflow-x: hidden;
  overflow-y: auto;
}
.dropdown[data-dropdown-id*=select-citizenship] ul {
  max-width: max-content;
  width: 100%;
}
.dropdown[data-dropdown-id*=select-citizenship] ul li:first-of-type {
  padding-top: 0;
}
.dropdown[data-dropdown-id*=select-citizenship] ul li:last-of-type {
  padding-bottom: 0;
}
@supports (-moz-appearance: none) {
  .dropdown[data-dropdown-id=region-select] {
    scrollbar-color: var(--navy) var(--light-grey);
    scrollbar-width: thin;
  }
}
.dropdown[data-dropdown-id=region-select]::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
.dropdown[data-dropdown-id=region-select]::-webkit-scrollbar-track {
  background: var(--light-grey);
  border-radius: 8px;
}
.dropdown[data-dropdown-id=region-select]::-webkit-scrollbar-thumb {
  background: var(--navy);
  border-radius: 8px;
}
.dropdown[data-dropdown-id=region-select] {
  max-width: 230px;
  min-width: 230px;
  max-height: 300px;
  overflow-x: hidden;
  overflow-y: auto;
  padding-bottom: 0;
}
.dropdown[data-dropdown-id=region-select] .select-checkboxes li label span {
  white-space: normal;
}
.dropdown[data-dropdown-id=calculator-credit-term] {
  max-height: 80px;
  overflow-x: hidden;
  overflow-y: auto;
}
.dropdown-wrapper {
  position: relative;
}
.dropdown-wrapper.compare {
  max-width: 260px;
  width: 100%;
}
@media (max-width: 1399.98px) {
  .dropdown-wrapper.compare {
    max-width: 220px;
  }
}
@media (max-width: 1199.98px) {
  .dropdown-wrapper.compare {
    max-width: 180px;
  }
}
@media (max-width: 999.98px) {
  .dropdown-wrapper.compare {
    max-width: 140px;
  }
}
.dropdown-wrapper.compare .dropdown-trigger {
  max-width: 100%;
}
.dropdown-footer {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
}
.dropdown-footer.hidden {
  display: none;
}
.dropdown-footer.sticky {
  position: sticky;
  top: auto;
  bottom: 0;
  left: 0;
  z-index: 1;
  margin-left: -15px;
  margin-right: -15px;
  padding: 10px;
  background-color: var(--white);
}

.masked {
  mask-image: none;
  transition: 0.25s ease;
}
.masked-right {
  mask-image: linear-gradient(to right, rgb(0, 0, 0) 0%, rgb(0, 0, 0) 2%, rgb(0, 0, 0) 98%, rgba(0, 0, 0, 0) 100%);
}
.masked-left {
  mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 2%, rgb(0, 0, 0) 98%, rgb(0, 0, 0) 100%);
}
.masked-x {
  mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 2%, rgb(0, 0, 0) 98%, rgba(0, 0, 0, 0) 100%);
}
.masked.large.masked-right {
  mask-image: linear-gradient(to right, rgb(0, 0, 0) 0%, rgb(0, 0, 0) 5%, rgb(0, 0, 0) 90%, rgba(0, 0, 0, 0) 100%);
}
.masked.large.masked-left {
  mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 5%, rgb(0, 0, 0) 90%, rgb(0, 0, 0) 100%);
}
.masked.large.masked-x {
  mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 5%, rgb(0, 0, 0) 90%, rgba(0, 0, 0, 0) 100%);
}

.form-group {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 10px;
  flex-wrap: wrap;
}
.form-group-stack {
  gap: 0;
  flex-wrap: nowrap;
}
.form-group-stack > * {
  line-height: 1;
  border: 1px solid;
  border-color: var(--navy) !important;
}
.form-group-stack > *:first-child {
  border-top-left-radius: inherit;
  border-bottom-left-radius: inherit;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-right: 0;
  flex-grow: 1;
  width: 100%;
}
.form-group-stack > *:first-child:is(input, textarea) {
  padding-right: 4px;
  height: 100%;
}
.form-group-stack > *:last-child:is(.btn, button) {
  border-top-right-radius: inherit;
  border-bottom-right-radius: inherit;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-left: 0;
  height: 100%;
  color: #1f4aaa;
  border-color: #ffffff;
  background-color: #ffffff;
}
.form-group-stack > *:last-child:is(.btn, button).hover, .form-group-stack > *:last-child:is(.btn, button):hover {
  color: #ffffff;
  border-color: #0f2b66;
  background-color: #0f2b66;
}
.form-group-stack > *:last-child:is(.btn, button):focus:active, .form-group-stack > *:last-child:is(.btn, button).focus, .form-group-stack > *:last-child:is(.btn, button).active, .form-group-stack > *:last-child:is(.btn, button).open {
  color: #ffffff;
  border-color: #2b2f35;
  background-color: #2b2f35;
}
.form-group-stack > *:last-child:is(.btn, button).glass {
  background-color: rgba(255, 255, 255, 0.5);
}
.form-group-stack > *:last-child:is(.btn, button).dimmed {
  background-color: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.85);
}
.form-group-stack > *:last-child:is(.btn, button).dimmed.hover, .form-group-stack > *:last-child:is(.btn, button).dimmed:hover {
  color: #1f4aaa;
  border-color: white;
  background-color: white;
}
.form-group-stack > *:last-child:is(.btn, button) {
  padding-left: calc(var(--btn-padding-x) / 2);
  padding-right: calc(var(--btn-padding-x) / 2);
}
.form-ranges {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 10px;
  flex-wrap: nowrap;
}
.form-ranges > .form-field {
  flex: 1 1 0%;
}
.form-field {
  position: relative;
}
.form-field::after {
  position: absolute;
  top: 50%;
  right: 15px;
  color: var(--grey-blue);
  pointer-events: none;
  transform: translate(0, -50%);
}
.form-field.form-field > input, .form-field.to-field > input {
  padding-left: 40px;
  padding-right: 40px;
}
.form-field.form-field::before, .form-field.to-field::before {
  position: absolute;
  top: 50%;
  left: 15px;
  color: var(--grey-blue);
  pointer-events: none;
  transform: translate(0, -50%);
}
.form-field.from-field::before {
  content: "от";
}
.form-field.to-field::before {
  content: "до";
}
.form-field:is(.isPriceRange)::after {
  content: "₽";
}
.form-field:is(.isPriceRange) > input {
  width: 195px;
}
.form-field:is(.isSquareRange)::after {
  content: "м²";
}
.form-field:is(.isSquareRange) > input {
  width: 125px;
}
.form-field:is(.isSquareHundredRange)::after {
  content: "";
}
.form-field:is(.isSquareHundredRange) > input {
  width: 125px;
}
.form-field:is(.isMonthInput)::after {
  content: "мес";
}
.form-field:is(.isAddressInput)::after {
  content: "1";
  display: inline-block;
  font-family: "prorealty";
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.form-field.no-before::before {
  display: none;
}
.form-field.no-before > input {
  padding-left: var(--input-padding-x);
}
.form-field.no-after::after {
  display: none;
}
.form-field.no-after > input {
  padding-right: var(--input-padding-x);
}
.form-appointment {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.required-missing p[class*=t2] {
  color: var(--error);
}
.required-missing .dropdown-trigger {
  border-color: var(--error);
  color: var(--error);
}
.required-missing input[type=text] {
  border-color: var(--error);
  color: var(--error);
}
.required-missing .btn-form label:not(:checked) {
  border-color: var(--error);
  color: var(--error);
}

.icon-x-small {
  font-size: x-small;
}

.image {
  display: block;
}
.image * {
  width: 100%;
  height: 100%;
  object-fit: cover;
  overflow: hidden;
}

.input,
input:not([type=checkbox]),
input:not([type=radio]),
input[type=text].input,
textarea.input,
input[type=text],
input[type=number],
textarea {
  --input-padding-x: 15px;
  --input-padding-y: 5.5px;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 135%;
}
@media (max-width: 999.98px) {
  .input,
  input:not([type=checkbox]),
  input:not([type=radio]),
  input[type=text].input,
  textarea.input,
  input[type=text],
  input[type=number],
  textarea {
    font-size: 14px;
  }
}
.input,
input:not([type=checkbox]),
input:not([type=radio]),
input[type=text].input,
textarea.input,
input[type=text],
input[type=number],
textarea {
  display: inline;
  width: 100%;
  min-height: 35px;
  height: 100%;
  padding: var(--input-padding-y) var(--input-padding-x);
  font-family: "Wix Madefor Display";
  color: currentColor;
  border-radius: 18px;
  border: none;
  border: 1px solid;
  border-color: var(--grey-blue);
  background-color: var(--white);
  outline: none;
  transition: 0.25s ease-in-out;
}
@media (max-width: 999.98px) {
  .input,
  input:not([type=checkbox]),
  input:not([type=radio]),
  input[type=text].input,
  textarea.input,
  input[type=text],
  input[type=number],
  textarea {
    font-size: 14px;
  }
}
.input::placeholder,
input:not([type=checkbox])::placeholder,
input:not([type=radio])::placeholder,
input[type=text].input::placeholder,
textarea.input::placeholder,
input[type=text]::placeholder,
input[type=number]::placeholder,
textarea::placeholder {
  color: var(--grey-blue);
  transition: 0.25s ease-in-out;
}
.input:focus,
input:not([type=checkbox]):focus,
input:not([type=radio]):focus,
input[type=text].input:focus,
textarea.input:focus,
input[type=text]:focus,
input[type=number]:focus,
textarea:focus {
  color: var(--black);
  border-color: var(--main);
}
.input:focus::placeholder,
input:not([type=checkbox]):focus::placeholder,
input:not([type=radio]):focus::placeholder,
input[type=text].input:focus::placeholder,
textarea.input:focus::placeholder,
input[type=text]:focus::placeholder,
input[type=number]:focus::placeholder,
textarea:focus::placeholder {
  color: transparent;
  transition: 0.25s ease-in-out;
}
.input:not(:placeholder-shown),
input:not([type=checkbox]):not(:placeholder-shown),
input:not([type=radio]):not(:placeholder-shown),
input[type=text].input:not(:placeholder-shown),
textarea.input:not(:placeholder-shown),
input[type=text]:not(:placeholder-shown),
input[type=number]:not(:placeholder-shown),
textarea:not(:placeholder-shown) {
  color: var(--black);
  border-color: var(--main);
}
.input:user-invalid,
input:not([type=checkbox]):user-invalid,
input:not([type=radio]):user-invalid,
input[type=text].input:user-invalid,
textarea.input:user-invalid,
input[type=text]:user-invalid,
input[type=number]:user-invalid,
textarea:user-invalid {
  border-color: var(--error);
}
.input:user-valid,
input:not([type=checkbox]):user-valid,
input:not([type=radio]):user-valid,
input[type=text].input:user-valid,
textarea.input:user-valid,
input[type=text]:user-valid,
input[type=number]:user-valid,
textarea:user-valid {
  border-color: var(--main);
}
.input.error, .input::spelling-error,
input:not([type=checkbox]).error,
input:not([type=checkbox])::spelling-error,
input:not([type=radio]).error,
input:not([type=radio])::spelling-error,
input[type=text].input.error,
input[type=text].input::spelling-error,
textarea.input.error,
textarea.input::spelling-error,
input[type=text].error,
input[type=text]::spelling-error,
input[type=number].error,
input[type=number]::spelling-error,
textarea.error,
textarea::spelling-error {
  color: var(--error);
  border-color: var(--error);
}
.input:read-only,
input:not([type=checkbox]):read-only,
input:not([type=radio]):read-only,
input[type=text].input:read-only,
textarea.input:read-only,
input[type=text]:read-only,
input[type=number]:read-only,
textarea:read-only {
  color: var(--grey-blue);
  border-color: var(--grey-blue);
  cursor: default;
}
.input.dropdown-trigger-search,
input:not([type=checkbox]).dropdown-trigger-search,
input:not([type=radio]).dropdown-trigger-search,
input[type=text].input.dropdown-trigger-search,
textarea.input.dropdown-trigger-search,
input[type=text].dropdown-trigger-search,
input[type=number].dropdown-trigger-search,
textarea.dropdown-trigger-search {
  width: calc(100% - 40px);
  border-color: transparent;
  padding: 5px 15px;
  padding-right: 0 !important;
  background-color: transparent;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
@media (max-width: 1199.98px) {
  .input.dropdown-trigger-search,
  input:not([type=checkbox]).dropdown-trigger-search,
  input:not([type=radio]).dropdown-trigger-search,
  input[type=text].input.dropdown-trigger-search,
  textarea.input.dropdown-trigger-search,
  input[type=text].dropdown-trigger-search,
  input[type=number].dropdown-trigger-search,
  textarea.dropdown-trigger-search {
    padding-right: 35px;
  }
}
@media (max-width: 999.98px) {
  .input.dropdown-trigger-search,
  input:not([type=checkbox]).dropdown-trigger-search,
  input:not([type=radio]).dropdown-trigger-search,
  input[type=text].input.dropdown-trigger-search,
  textarea.input.dropdown-trigger-search,
  input[type=text].dropdown-trigger-search,
  input[type=number].dropdown-trigger-search,
  textarea.dropdown-trigger-search {
    padding: 5px 10px;
  }
}
.input.dropdown-trigger-search.has-icon,
input:not([type=checkbox]).dropdown-trigger-search.has-icon,
input:not([type=radio]).dropdown-trigger-search.has-icon,
input[type=text].input.dropdown-trigger-search.has-icon,
textarea.input.dropdown-trigger-search.has-icon,
input[type=text].dropdown-trigger-search.has-icon,
input[type=number].dropdown-trigger-search.has-icon,
textarea.dropdown-trigger-search.has-icon {
  padding: 5px 35px 5px 40px;
}
@media (max-width: 999.98px) {
  .input.dropdown-trigger-search.has-icon,
  input:not([type=checkbox]).dropdown-trigger-search.has-icon,
  input:not([type=radio]).dropdown-trigger-search.has-icon,
  input[type=text].input.dropdown-trigger-search.has-icon,
  textarea.input.dropdown-trigger-search.has-icon,
  input[type=text].dropdown-trigger-search.has-icon,
  input[type=number].dropdown-trigger-search.has-icon,
  textarea.dropdown-trigger-search.has-icon {
    padding: 5px 30px;
  }
}

textarea.input,
textarea {
  resize: vertical;
}

input[type=number] {
  appearance: textfield;
}

.datepicker__wrapper {
  width: 100%;
  min-width: 280px;
  min-height: 50px;
  padding: 5px 15px;
  font-family: "Wix Madefor Display";
  color: currentColor;
  border-radius: 15px;
  border: 1px solid;
  border-color: var(--white);
  background-color: var(--white);
  outline: none;
  box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.1);
  transition: 0.25s ease-in-out;
}
.datepicker__header {
  display: flex;
  justify-content: center;
  gap: 5px;
  width: 100%;
}
.datepicker__header .datepicker__prev, .datepicker__header .datepicker__next {
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 135%;
}
@media (max-width: 999.98px) {
  .datepicker__header .datepicker__prev, .datepicker__header .datepicker__next {
    font-size: 14px;
  }
}
.datepicker__header .datepicker__prev, .datepicker__header .datepicker__next {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--btn-padding-y) var(--btn-padding-x);
  color: var(--white);
  line-height: 1;
  font-family: "Wix Madefor Display";
  text-align: center;
  text-decoration: none !important;
  vertical-align: middle;
  cursor: pointer;
  touch-action: manipulation;
  user-select: none;
  text-transform: none;
  border-radius: 100px;
  border: 1px solid;
  border-color: var(--main);
  background-color: var(--main);
  white-space: nowrap;
  transition: 0.25s ease-in-out;
}
@media (max-width: 999.98px) {
  .datepicker__header .datepicker__prev, .datepicker__header .datepicker__next {
    --btn-padding-y: 14.5px;
    --btn-padding-x: 24px;
  }
}
.datepicker__header .datepicker__prev:hover, .datepicker__header .datepicker__prev.hover, .datepicker__header .datepicker__next:hover, .datepicker__header .datepicker__next.hover {
  background-color: rgb(38.8656716418, 92.776119403, 213.1343283582);
  border-color: rgb(38.8656716418, 92.776119403, 213.1343283582);
  color: var(--white);
}
.datepicker__header .datepicker__prev:focus:active, .datepicker__header .datepicker__prev.focus, .datepicker__header .datepicker__prev.active, .datepicker__header .datepicker__prev.open, .datepicker__header .datepicker__next:focus:active, .datepicker__header .datepicker__next.focus, .datepicker__header .datepicker__next.active, .datepicker__header .datepicker__next.open {
  background-color: rgb(23.1343283582, 55.223880597, 126.8656716418);
  border-color: rgb(23.1343283582, 55.223880597, 126.8656716418);
  color: var(--white);
}
.datepicker__header .datepicker__prev.disabled, .datepicker__header .datepicker__prev:disabled, .datepicker__header .datepicker__next.disabled, .datepicker__header .datepicker__next:disabled {
  background-color: rgba(114, 132, 148, 0.35) !important;
  color: var(--white) !important;
  border-color: rgba(114, 132, 148, 0.125) !important;
  box-shadow: none;
  cursor: not-allowed;
}
.datepicker__header .datepicker__prev.disabled:hover, .datepicker__header .datepicker__prev.disabled.hover, .datepicker__header .datepicker__prev.disabled:focus:active, .datepicker__header .datepicker__prev.disabled:focus, .datepicker__header .datepicker__prev.disabled.focus, .datepicker__header .datepicker__prev.disabled.active, .datepicker__header .datepicker__prev.disabled.open, .datepicker__header .datepicker__prev:disabled:hover, .datepicker__header .datepicker__prev:disabled.hover, .datepicker__header .datepicker__prev:disabled:focus:active, .datepicker__header .datepicker__prev:disabled:focus, .datepicker__header .datepicker__prev:disabled.focus, .datepicker__header .datepicker__prev:disabled.active, .datepicker__header .datepicker__prev:disabled.open, .datepicker__header .datepicker__next.disabled:hover, .datepicker__header .datepicker__next.disabled.hover, .datepicker__header .datepicker__next.disabled:focus:active, .datepicker__header .datepicker__next.disabled:focus, .datepicker__header .datepicker__next.disabled.focus, .datepicker__header .datepicker__next.disabled.active, .datepicker__header .datepicker__next.disabled.open, .datepicker__header .datepicker__next:disabled:hover, .datepicker__header .datepicker__next:disabled.hover, .datepicker__header .datepicker__next:disabled:focus:active, .datepicker__header .datepicker__next:disabled:focus, .datepicker__header .datepicker__next:disabled.focus, .datepicker__header .datepicker__next:disabled.active, .datepicker__header .datepicker__next:disabled.open {
  background-color: rgba(114, 132, 148, 0.35) !important;
  color: var(--white) !important;
  border-color: rgba(114, 132, 148, 0.125) !important;
}
.datepicker__header .datepicker__prev.hidden, .datepicker__header .datepicker__prev:hidden, .datepicker__header .datepicker__next.hidden, .datepicker__header .datepicker__next:hidden {
  display: none;
}
.datepicker__header .datepicker__prev > i, .datepicker__header .datepicker__prev > svg, .datepicker__header .datepicker__next > i, .datepicker__header .datepicker__next > svg {
  pointer-events: none;
  vertical-align: text-bottom;
  transition: 0.25s ease-in-out;
}
.datepicker__header .datepicker__prev.aspected, .datepicker__header .datepicker__next.aspected {
  --btn-padding-x: 4px;
  --btn-padding-y: 4px;
  --btn-padding-x: var(--btn-padding-y);
  width: var(--btn-size);
  height: var(--btn-size);
}
.datepicker__header .datepicker__prev .counter-items, .datepicker__header .datepicker__next .counter-items {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  max-width: 30px;
  height: 20px;
  padding: 0 3px;
  border-radius: 1000px;
  background-color: var(--green);
  color: var(--white);
  font-size: 12px;
  text-align: center;
  transform: translate(30%, 30%);
}
.datepicker__header .datepicker__prev .counter-items[data-compare-items="0"], .datepicker__header .datepicker__prev .counter-items[data-favorite-items="0"], .datepicker__header .datepicker__next .counter-items[data-compare-items="0"], .datepicker__header .datepicker__next .counter-items[data-favorite-items="0"] {
  display: none;
}
.datepicker__header .datepicker__prev, .datepicker__header .datepicker__next {
  --btn-padding-y: 8.5px;
  --btn-padding-x: 24px;
  --btn-size: 35px;
  min-height: 35px;
}
@media (max-width: 999.98px) {
  .datepicker__header .datepicker__prev, .datepicker__header .datepicker__next {
    --btn-padding-y: 9.5px;
  }
}
.datepicker__header .datepicker__prev.aspected, .datepicker__header .datepicker__next.aspected {
  width: var(--btn-size);
  height: var(--btn-size);
}
.datepicker__header .datepicker__prev, .datepicker__header .datepicker__next {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
@media (max-width: 999.98px) {
  .datepicker__header .datepicker__prev, .datepicker__header .datepicker__next {
    gap: 5px;
  }
}
.datepicker__header .datepicker__prev > svg, .datepicker__header .datepicker__prev > image, .datepicker__header .datepicker__prev > img, .datepicker__header .datepicker__prev > object, .datepicker__header .datepicker__prev > i, .datepicker__header .datepicker__next > svg, .datepicker__header .datepicker__next > image, .datepicker__header .datepicker__next > img, .datepicker__header .datepicker__next > object, .datepicker__header .datepicker__next > i {
  display: flex;
  align-self: center;
  justify-content: center;
  width: fit-content;
  max-height: 100%;
  aspect-ratio: 1/1;
  object-fit: contain;
  vertical-align: middle;
}
.datepicker__header .datepicker__prev > svg, .datepicker__header .datepicker__prev > image, .datepicker__header .datepicker__prev > img, .datepicker__header .datepicker__prev > object, .datepicker__header .datepicker__next > svg, .datepicker__header .datepicker__next > image, .datepicker__header .datepicker__next > img, .datepicker__header .datepicker__next > object {
  max-width: 16px;
  width: 100%;
}
.datepicker__header .datepicker__prev > svg *, .datepicker__header .datepicker__next > svg * {
  fill: currentColor;
}
.datepicker__header .datepicker__prev, .datepicker__header .datepicker__next {
  --btn-padding-x: 4px;
  --btn-padding-y: 4px;
  --btn-padding-x: var(--btn-padding-y);
  width: var(--btn-size);
  height: var(--btn-size);
}
.datepicker__header .datepicker__prev {
  margin-right: auto;
}
.datepicker__header .datepicker__next {
  margin-left: auto;
}
.datepicker__header .datepicker__title {
  align-self: center;
}
.datepicker__cal {
  width: 100%;
}
.datepicker__cal thead tr th {
  padding: 5px 0;
}
.datepicker__cal tbody tr td {
  padding: 5px 0;
  border-radius: 1000px;
  text-align: center;
  cursor: pointer;
  transition: 0.25s ease-in-out;
}
.datepicker__cal tbody tr td.is-disabled {
  opacity: 0.5;
  pointer-events: none;
}
.datepicker__cal tbody tr td.is-selected {
  color: var(--navy);
  background-color: rgba(31, 74, 170, 0.25);
}
.datepicker__cal tbody tr td:hover:not(.is-selected) {
  background-color: rgba(31, 74, 170, 0.15);
}

.intrid {
  position: relative;
  width: fit-content;
}
.intrid::before {
  content: "";
  display: block;
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--black);
  user-select: none;
  pointer-events: none;
  transition: 0.25s ease-in-out;
  transform: translateY(-50%);
}
.intrid a {
  display: inline-block;
  padding: 6px 14px 6px 32px;
  border-radius: 20px;
  font-family: "Wix Madefor Display";
  font-size: 14px;
  line-height: 1;
  text-decoration: none;
  background: var(--black);
  color: var(--black) !important;
  text-decoration: none !important;
  -webkit-mask: radial-gradient(circle 10px at 13px 50%, transparent 90%, var(--black) 100%);
  mask: radial-gradient(circle 10px at 13px 50%, transparent 90%, var(--black) 100%);
  white-space: nowrap;
  transition: 0.25s ease-in-out;
}
.intrid:hover a, .intrid:hover::before {
  background: var(--black);
  color: var(--black) !important;
}

.link-icon {
  display: inline;
}
.link-icon i {
  display: inline-flex;
  vertical-align: middle;
}

ul,
ol {
  padding-left: 20px;
}
ul li,
ol li {
  margin-bottom: 0.5em;
}
ul li:last-of-type, ul li:last-child,
ol li:last-of-type,
ol li:last-child {
  margin-bottom: 0;
}
ul > li::marker,
ol > li::marker {
  color: #1f4aaa;
}
ul:not([class]),
ol:not([class]) {
  margin: 0.45em 0;
}

.list-classes {
  margin: 0;
  padding: 0;
}
.list-classes > li {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: flex-start;
  gap: 10px;
  width: 100%;
  margin: 0;
  padding: 5px 0;
}
.list-classes > li:first-child {
  padding-top: 0;
}
.list-classes > li:last-child {
  padding-bottom: 0;
}
.list-classes > li > .prop {
  display: inline-block;
  width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.list-classes > li > .prop i {
  vertical-align: middle;
}
.list-amenities {
  margin: 0;
  padding: 0;
}
.list-amenities > li {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 5px;
  margin: 0;
  padding: 5px 0;
}
.list-amenities > li:first-child {
  padding-top: 0;
}
.list-amenities > li:last-child {
  padding-bottom: 0;
}
.list-amenities > li::before {
  content: "Y";
  display: inline-block;
  margin-top: 5px;
  font-family: "prorealty";
  font-style: normal;
  font-weight: normal;
  font-size: smaller;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media (max-width: 999.98px) {
  .list-amenities > li::before {
    margin-top: 4px;
  }
}
.list-amenities > li:not(.active, .list-toggle) > span {
  text-decoration: line-through;
}
.list-amenities > li.active {
  color: var(--green);
}
.list-amenities > li.active::before {
  content: "T";
}
.list-amenities > li.active {
  text-decoration: none;
}
.list-amenities > li.list-toggle {
  color: var(--black);
  text-decoration: none;
}
.list-amenities > li.list-toggle::before {
  display: none;
}
.list-availability {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.list-availability li {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: nowrap;
  gap: 5px;
  margin: 0;
  padding: 0;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 135%;
}
@media (max-width: 999.98px) {
  .list-availability li {
    font-size: 12px;
  }
}
.list-availability li::before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  border-radius: 1000px;
  background-color: var(--main-50);
  border: 1px solid var(--main-50);
  vertical-align: middle;
}
@media (max-width: 999.98px) {
  .list-availability li::before {
    width: 10px;
    height: 10px;
  }
}
.list-availability li.available::before {
  background-color: var(--main);
  border: 1px solid var(--main);
}
.list-availability li.disabled::before {
  background-color: var(--white);
  border: 1px solid var(--grey-blue);
}
.list-availability li > span {
  white-space: nowrap;
}
.list-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}
.list-links li {
  margin: 0;
  padding: 0;
}
.list-links li > a {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 5px;
  padding: 5px 0 5px 25px;
  color: var(--main);
  text-decoration: none !important;
}
@media (max-width: 999.98px) {
  .list-links li > a {
    padding: 5px 0 5px 20px;
  }
}
.list-links li > a::before {
  content: "f";
  position: absolute;
  top: 6px;
  left: 0;
  display: inline-block;
  font-family: "prorealty";
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-decoration: none !important;
}
.list-links li > a .text {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 135%;
}
@media (max-width: 999.98px) {
  .list-links li > a .text {
    font-size: 14px;
  }
}
.list-links li > a .text {
  max-width: 100%;
  text-decoration: none !important;
  white-space: nowrap;
}
.list-links li > a .text::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  visibility: visible;
}
.list-links li > a .text > span {
  max-width: 100%;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.list-links li > a .size {
  color: var(--main-50);
  text-decoration: none !important;
}
.list-links li > a:hover .text {
  text-decoration: none !important;
}
.list-links li > a:hover .text::before {
  visibility: hidden;
}

.pagination {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}
.pagination-dot {
  background-color: var(--light-grey);
  border: 1px solid;
  border-color: var(--light-grey);
}
.pagination-dot:hover:not(:active, .active) {
  background-color: var(--grey-blue);
  border-color: var(--grey-blue);
}
.pagination-dot.active, .pagination-dot:active {
  background-color: var(--main);
  border-color: var(--main);
}
.pagination-dot {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 100%;
  text-align: center;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.25s ease-in-out, border-color 0.25s ease-in-out, color 0.25s ease-in-out;
}
.pagination .prev, .pagination .next {
  padding: 0 8px;
  background-color: var(--white);
  color: var(--main);
  border: 1px solid;
  border-color: var(--white);
}
.pagination .prev:hover:not(:active, .active), .pagination .next:hover:not(:active, .active) {
  background-color: var(--grey-blue);
  color: var(--white);
  border-color: var(--grey-blue);
}
.pagination .prev.active, .pagination .prev:active, .pagination .next.active, .pagination .next:active {
  background-color: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.pagination .prev, .pagination .next {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  font-size: 12px;
  text-align: center;
  transition: background-color 0.25s ease-in-out, border-color 0.25s ease-in-out, color 0.25s ease-in-out;
}
.pagination .prev > i, .pagination .next > i {
  display: flex;
}
.pagination-select {
  cursor: pointer;
}
.pagination.isNumbers .pagination-dot {
  background-color: var(--white);
  color: var(--main);
  border: 1px solid;
  border-color: var(--white);
}
.pagination.isNumbers .pagination-dot:hover:not(:active, .active) {
  background-color: var(--white);
  color: var(--main);
  border-color: var(--main);
}
.pagination.isNumbers .pagination-dot.active, .pagination.isNumbers .pagination-dot:active {
  background-color: var(--main);
  color: var(--white);
  border-color: var(--main);
}
.pagination.isNumbers .pagination-dot {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  flex: 0 0 35px;
  line-height: 100%;
}
.pagination.isNumbers .prev, .pagination.isNumbers .next {
  width: 35px;
  height: 35px;
}

.breadcrumbs {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: row;
  align-items: baseline;
  flex-wrap: nowrap;
  gap: 10px;
  margin-top: 20px;
  margin-bottom: 20px;
  padding-bottom: 5px;
  overflow-x: auto;
  overflow-y: hidden;
}
@supports (-moz-appearance: none) {
  .breadcrumbs {
    scrollbar-color: var(--navy) var(--light-grey);
    scrollbar-width: thin;
  }
}
.breadcrumbs::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
.breadcrumbs::-webkit-scrollbar-track {
  background: var(--light-grey);
  border-radius: 8px;
}
.breadcrumbs::-webkit-scrollbar-thumb {
  background: var(--navy);
  border-radius: 8px;
}
@media (max-width: 719.98px) {
  .breadcrumbs {
    margin-bottom: 16px;
  }
}
.breadcrumbs > a {
  text-decoration: none !important;
  white-space: nowrap;
}
.breadcrumbs > a:hover {
  text-decoration: underline !important;
}
.breadcrumbs > span {
  white-space: nowrap;
}
.breadcrumbs > * {
  pointer-events: all;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 135%;
}
@media (max-width: 999.98px) {
  .breadcrumbs > * {
    font-size: 12px;
  }
}
.breadcrumbs > * {
  color: var(--grey-blue);
}
.breadcrumbs > *:nth-child(even) {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  align-self: center;
  justify-content: center;
  width: 8px;
  font-size: 12px;
}
@media (max-width: 719.98px) {
  .breadcrumbs > *:nth-child(even) {
    font-size: 10px;
  }
}
.breadcrumbs > *:nth-child(even)::before {
  content: "›";
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media print {
  .header,
  .footer,
  .aside,
  #filters,
  #mini-filters,
  #form-search-full,
  #form-search,
  .modal,
  .banner,
  .breadcrumbs,
  .wr-cookie-cookie-bar,
  .not-print,
  .slider-button,
  .slider-block-thumbnail,
  .tabs-header-scrolling button,
  .building-position .tabs-buttons .tab-button:not(.active) {
    display: none !important;
  }
  .building-slider .apartment-advantages {
    display: none !important;
  }
  .building-slider .slider-block-cover {
    break-after: page;
    overflow: visible !important;
    border-radius: unset !important;
  }
  .building-slider .slider-block-cover .slider {
    width: 100% !important;
    max-width: 100% !important;
    border-radius: unset !important;
  }
  .building-slider .slider-block-cover .slider::before {
    display: none !important;
  }
  .building-slider .slider-block-cover .slider .slides {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    border-radius: unset !important;
  }
  .building-slider .slider-block-cover .slider .slides .slide {
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    border-radius: unset !important;
  }
  .building-slider .slider-block-cover .slider .slides img {
    width: auto !important;
    height: auto !important;
    max-width: 100% !important;
    max-height: 600px !important;
  }
  .building-slider .slider-block-thumbnail {
    display: none !important;
  }
  .building-primary .card-stack {
    display: none !important;
  }
  .building-form-footer {
    display: none !important;
  }
  .apartment-header {
    margin-bottom: 10px !important;
  }
  .apartment-wrapper {
    flex-direction: column !important;
    flex-wrap: nowrap !important;
  }
  .apartment-wrapper > .apartment-side {
    order: -1 !important;
    min-width: unset !important;
    max-width: unset !important;
    width: 100%;
    flex: unset !important;
  }
  .apartment-wrapper > .apartment-side .card {
    max-width: 700px !important;
    gap: 10px !important;
    padding: 0 !important;
    border: none !important;
  }
  .apartment-wrapper > .apartment-side .payment-row {
    gap: 20px !important;
    justify-content: flex-start !important;
  }
  .apartment-wrapper > .apartment-side .payment-row .credit-payment {
    margin-left: unset !important;
  }
  .apartment-wrapper > .apartment-side .additional {
    gap: 0 !important;
  }
  .apartment-wrapper > .apartment-side .collapse {
    padding: 0 !important;
    border-top: none !important;
  }
  .apartment-wrapper > .apartment-side .collapse-header {
    display: none !important;
  }
  .apartment-wrapper > .apartment-side .collapse-content {
    max-height: 100% !important;
    padding: 10px 0 !important;
    opacity: 1 !important;
  }
  .apartment-wrapper > .apartment-side #recalculate {
    display: none !important;
  }
  .apartment-slider {
    position: relative !important;
    page-break-before: always !important;
    order: 2 !important;
  }
  .apartment-slider .apartment-advantages {
    display: none !important;
  }
  .apartment-slider .slider-block-cover {
    overflow: visible !important;
    border-radius: unset !important;
  }
  .apartment-slider .slider-block-cover .slider {
    width: 100% !important;
    max-width: 100% !important;
    border-radius: unset !important;
  }
  .apartment-slider .slider-block-cover .slider::before {
    display: none !important;
  }
  .apartment-slider .slider-block-cover .slider .slides {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    border-radius: unset !important;
  }
  .apartment-slider .slider-block-cover .slider .slides .slide {
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    border-radius: unset !important;
  }
  .apartment-slider .slider-block-cover .slider .slides img {
    width: auto !important;
    height: auto !important;
    max-width: 100% !important;
    max-height: 600px !important;
  }
  .apartment-slider .slider-block-thumbnail {
    display: none !important;
  }
  .apartment-body {
    display: flex !important;
    flex-direction: column !important;
    order: 1 !important;
  }
  .apartment-body > .apartment-map {
    order: 1 !important;
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    min-width: unset !important;
  }
}
@media print and (orientation: landscape) {
  .apartment-body > .apartment-map {
    page-break-inside: avoid !important;
    page-break-before: always !important;
  }
}
@media print {
  .apartment-body > .apartment-map-header {
    display: block !important;
  }
  .apartment-body > .apartment-map .pos-map {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    height: 350px !important;
    min-height: unset !important;
    aspect-ratio: 16/9 !important;
    overflow: visible !important;
  }
  .apartment-body > .apartment-map .pos-map .pos-map--actions {
    display: none !important;
  }
  .apartment-body > .apartment-map .pos-map .pos-map--wrapper {
    display: block !important;
    min-width: 100% !important;
    min-height: 100% !important;
    width: 100% !important;
    height: 100% !important;
    aspect-ratio: 16/9 !important;
  }
  .apartment-body > .apartment-map .pos-map #map-object-apartment {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    aspect-ratio: 16/9 !important;
  }
  .apartment-body > .apartment-map .pos-map #map-object-apartment canvas, .apartment-body > .apartment-map .pos-map #map-object-apartment img {
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
    display: block !important;
  }
  .apartment-body > .apartment-map .pos-map #map-object-apartment .ymaps-2-1-79-map {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    aspect-ratio: unset !important;
    overflow: visible !important;
  }
  .apartment-body > .apartment-map .pos-map #map-object-apartment .ymaps-2-1-79-map .ymaps-2-1-79-events-pane {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    aspect-ratio: unset !important;
    overflow: visible !important;
  }
  .apartment-body > .apartment-map .pos-map #map-object-apartment [class*=-controls__toolbar_left], .apartment-body > .apartment-map .pos-map #map-object-apartment [class*=-controls__toolbar_right], .apartment-body > .apartment-map .pos-map #map-object-apartment [class*=-gototech], .apartment-body > .apartment-map .pos-map #map-object-apartment [class*=-gototaxi], .apartment-body > .apartment-map .pos-map #map-object-apartment [class*=-controls__control] {
    display: none;
  }
  .apartment-body > .apartment-charts {
    order: 2 !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: unset !important;
  }
}
@media print and (orientation: landscape) {
  .apartment-body > .apartment-charts {
    page-break-inside: avoid !important;
    page-break-before: always !important;
  }
}
@media print {
  .apartment-body > .apartment-charts #apartment-chart {
    width: 100% !important;
    height: 100% !important;
    aspect-ratio: unset !important;
  }
  .apartment-body > .apartment-charts #apartment-chart * {
    width: 100% !important;
    height: 100% !important;
  }
  .apartment-body > .apartment-description {
    order: 3 !important;
  }
}
@media print and (orientation: landscape) {
  .apartment-body > .apartment-description {
    page-break-inside: avoid !important;
  }
}
.progress > div {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 8px;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 135%;
}
@media (max-width: 999.98px) {
  .progress > div {
    font-size: 12px;
  }
}
.progress strong span {
  color: var(--grey-blue);
}
.progress progress {
  width: 100%;
  height: 5px;
  border: 0;
  border-radius: 10px;
  overflow: hidden;
  background: var(--light-grey);
  accent-color: var(--main);
}
.progress progress::-webkit-progress-bar {
  background: var(--light-grey);
}
.progress progress::-webkit-progress-value {
  background: var(--main);
  border-radius: 10px;
}
.progress progress::-moz-progress-bar {
  background: var(--main);
  border-radius: 10px;
}

.select {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
}
.select-item {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 5px;
  margin: 0;
  padding: 5px 0;
  color: var(--black);
  cursor: pointer;
  transition: 0.25s ease-in-out;
}
.select-item input i {
  transition: 0.25s ease-in-out;
}
.select-item input + label {
  display: block;
  width: 100%;
  max-width: 300px;
  text-overflow: ellipsis;
  pointer-events: none;
  transition: 0.25s ease-in-out;
}
.select-item input:checked + label {
  font-weight: 700;
  color: var(--main);
}
.select-item input[type=radio] + label {
  padding-left: 0;
}
.select-item input[type=radio] + label::before, .select-item input[type=radio] + label::after {
  display: none;
}
.select-checkboxes .select-item i {
  display: flex;
  align-self: center;
  font-size: 14px;
}
.select-counter {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  max-width: 30px;
  padding: 0 5px;
  border-radius: 1000px;
  background-color: var(--green);
  color: var(--white);
  font-size: 12px;
  text-align: center;
}
@media (min-width: 1000px) {
  .select-counter {
    height: 20px;
  }
}

input[type=checkbox].switch + label {
  display: flex;
  align-items: center;
  width: fit-content;
  min-height: 30px;
  padding-left: 72px;
}
input[type=checkbox].switch + label::after, input[type=checkbox].switch + label::before {
  background-image: unset !important;
}
input[type=checkbox].switch + label::before {
  width: 60px;
  height: 30px;
  border-radius: 1000px;
}
input[type=checkbox].switch + label::after {
  top: 5px;
  left: 0;
  width: 20px;
  height: 20px;
  border-radius: 100%;
  border: 5px solid;
  opacity: 1;
}
input[type=checkbox].switch:not(:checked) + label::before {
  border-color: var(--light-grey);
}
input[type=checkbox].switch:not(:checked) + label::after {
  background-color: var(--white);
  border-color: var(--navy);
  transform-origin: left center;
  transform: translate3d(5px, 0, 1px);
}
input[type=checkbox].switch:not(:checked) + label:active::after {
  transform: translate3d(5px, 0, 1px) scaleX(1.25);
}
input[type=checkbox].switch:checked + label::before {
  background-color: var(--main);
  border-color: var(--main);
}
input[type=checkbox].switch:checked + label::after {
  background-color: var(--main);
  border-color: var(--white);
  transform-origin: right center;
  transform: translate3d(35px, 0, 1px);
}
input[type=checkbox].switch:checked + label:active::after {
  transform: translate3d(35px, 0, 1px) scaleX(1.25);
}
input[type=checkbox].switch.dark:not(:checked) + label::before {
  background-color: var(--black);
  border-color: var(--black);
}
input[type=checkbox].switch.dark:not(:checked) + label::after {
  background-color: var(--black);
  border-color: var(--white);
}
input[type=checkbox].switch.dark:checked + label::before {
  background-color: var(--main);
  border-color: var(--main);
}
input[type=checkbox].switch.dark:checked + label::after {
  background-color: var(--main);
  border-color: var(--white);
}
input[type=checkbox].switch-toggle + label {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  width: fit-content;
  padding: 5px;
  background-color: var(--light-grey);
  border: 1px solid var(--light-grey);
  border-radius: 1000px;
  overflow: hidden;
}
input[type=checkbox].switch-toggle + label::after, input[type=checkbox].switch-toggle + label::before {
  display: none;
}
input[type=checkbox].switch-toggle + label span {
  user-select: none;
}
input[type=checkbox].switch-toggle + label span.toggle {
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  z-index: -1;
  width: calc(50% - 5px);
  height: calc(100% - 10px);
  background-color: var(--navy);
  border-radius: 1000px;
  transform: translateX(0);
  transition: 0.25s ease-in-out;
  will-change: transform;
}
input[type=checkbox].switch-toggle + label span.variant {
  width: 50%;
  flex: 1 1 50%;
  padding: 6.5px 16px;
  color: var(--white);
  text-align: center;
  transition: color 0.25s ease-in-out;
}
input[type=checkbox].switch-toggle:not(:checked) + label span.toggle {
  transform-origin: left center;
  transform: translateX(0);
}
input[type=checkbox].switch-toggle:not(:checked) + label span.variant {
  color: var(--white);
}
input[type=checkbox].switch-toggle:not(:checked) + label span.variant:last-child {
  color: var(--navy);
}
input[type=checkbox].switch-toggle:not(:checked) + label:active span.toggle {
  transform: translateX(0) scaleX(1.125);
}
input[type=checkbox].switch-toggle:checked + label span.toggle {
  transform-origin: right center;
  transform: translateX(100%);
}
input[type=checkbox].switch-toggle:checked + label span.variant {
  color: var(--navy);
}
input[type=checkbox].switch-toggle:checked + label span.variant:last-child {
  color: var(--white);
}
input[type=checkbox].switch-toggle:checked + label:active span.toggle {
  transform: translateX(100%) scaleX(1.125);
}
input[type=checkbox].switch-reverse + label {
  padding-left: unset;
  padding-right: 72px;
}
input[type=checkbox].switch-reverse + label::after, input[type=checkbox].switch-reverse + label::before {
  left: auto;
  right: 0;
}
input[type=checkbox].switch-reverse:not(:checked) + label::after {
  transform-origin: left center;
  transform: translate3d(-35px, 0, 1px);
}
input[type=checkbox].switch-reverse:not(:checked) + label:active::after {
  transform: translate3d(-35px, 0, 1px) scaleX(1.25);
}
input[type=checkbox].switch-reverse:checked + label::after {
  transform-origin: right center;
  transform: translate3d(-5px, 0, 1px);
}
input[type=checkbox].switch-reverse:checked + label:active::after {
  transform: translate3d(-5px, 0, 1px) scaleX(1.25);
}

.tab {
  display: none;
  scroll-margin-block-start: 80px;
  padding: 16px 30px;
}
@media (max-width: 999.98px) {
  .tab {
    padding: 12px 24px;
  }
}
.tab.active {
  display: block;
}
.tab-button {
  --btn-size: 100%;
  --btn-padding-y: 8px;
  --btn-padding-x: 30px;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 135%;
}
@media (max-width: 999.98px) {
  .tab-button {
    font-size: 14px;
  }
}
.tab-button {
  position: relative;
  z-index: 1;
  display: inline-block;
  height: var(--btn-size);
  padding: var(--btn-padding-y) var(--btn-padding-x);
  color: var(--navy);
  font-weight: 500;
  text-align: center;
  text-decoration: none !important;
  vertical-align: middle;
  cursor: pointer;
  user-select: none;
  text-transform: none;
  border-radius: 16px 16px 0 0;
  border: 1px solid;
  border-color: var(--light-grey);
  border-bottom-color: var(--main);
  background-color: var(--light-grey);
  white-space: nowrap;
  transition: 0.25s ease-in-out;
}
@media (max-width: 999.98px) {
  .tab-button {
    --btn-padding-y: 4px;
    --btn-padding-x: 24px;
  }
}
.tab-button:hover, .tab-button.hover {
  background-color: var(--light-grey);
  border-color: var(--main);
  border-bottom: 1px solid var(--main);
  color: var(--main);
}
.tab-button:focus:active, .tab-button.focus, .tab-button:active {
  background-color: var(--white);
  border-color: var(--main);
  border-bottom: 1px solid var(--white);
  color: var(--main);
}
.tab-button.active {
  z-index: 5;
  font-weight: 700;
  background-color: var(--white);
  border-color: var(--main);
  border-bottom: 1px solid var(--white);
  color: var(--main);
}
.tab-button.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--white);
  transform: translateY(100%);
}
.tab-button.disabled, .tab-button:disabled {
  background-color: var(--grey-blue);
  color: var(--white);
  border-color: var(--grey-blue);
  border-bottom-color: var(--white);
  box-shadow: none;
  opacity: 0.35;
  cursor: not-allowed;
}
.tab-button.hidden, .tab-button:hidden {
  display: none;
}
.tab-button > i, .tab-button > svg {
  vertical-align: text-bottom;
  transition: 0.25s ease-in-out;
}
.tab-button.aspected {
  --btn-padding-x: var(--btn-padding-y);
  width: var(--btn-size);
  height: var(--btn-size);
}

.tabs {
  position: relative;
  z-index: 0;
  border: 1px solid var(--main);
  border-radius: 15px;
}
.tabs-clean {
  border: none;
  border-radius: unset;
}
.tabs-clean .tab {
  padding: 0;
}
.tabs-buttons {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5px;
  flex-wrap: nowrap;
  margin: 0 25px -1px;
  overflow-y: hidden;
  overflow-x: auto;
  scrollbar-width: none;
}
.tabs-buttons-compacts {
  margin: 0;
}
.tabs-buttons-compacts .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
@media (max-width: 999.98px) {
  .tabs-buttons-compacts .btn {
    gap: 5px;
  }
}
.tabs-buttons-compacts .btn > svg, .tabs-buttons-compacts .btn > image, .tabs-buttons-compacts .btn > img, .tabs-buttons-compacts .btn > object, .tabs-buttons-compacts .btn > i {
  display: flex;
  align-self: center;
  justify-content: center;
  width: fit-content;
  max-height: 100%;
  aspect-ratio: 1/1;
  object-fit: contain;
  vertical-align: middle;
}
.tabs-buttons-compacts .btn > svg, .tabs-buttons-compacts .btn > image, .tabs-buttons-compacts .btn > img, .tabs-buttons-compacts .btn > object {
  max-width: 16px;
  width: 100%;
}
.tabs-buttons-compacts .btn > svg * {
  fill: currentColor;
}
@media (min-width: 1000px) {
  .tabs-buttons-compacts .btn {
    --btn-padding-y: 8.5px;
    --btn-padding-x: 24px;
    --btn-size: 35px;
    min-height: 35px;
  }
}
@media (min-width: 1000px) and (max-width: 999.98px) {
  .tabs-buttons-compacts .btn {
    --btn-padding-y: 9.5px;
  }
}
@media (min-width: 1000px) {
  .tabs-buttons-compacts .btn.aspected {
    width: var(--btn-size);
    height: var(--btn-size);
  }
}
@media (max-width: 999.98px) {
  .tabs-buttons-compacts .btn {
    --btn-size: 35px;
    --btn-padding-x: 4px;
    --btn-padding-y: 4px;
    flex: 0 0 var(--btn-size);
    width: var(--btn-size);
    height: var(--btn-size);
    padding: var(--btn-padding-y) var(--btn-padding-x);
  }
}
.tabs-header {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5px;
  width: 100%;
  margin-left: 5px;
  margin-right: 5px;
}
.tabs-header > .tabs-buttons {
  flex: 1;
  margin-left: 0;
  margin-right: 0;
  padding-top: 1px;
  padding-left: 5px;
  padding-right: 5px;
}
.tabs-header-scrolling > .tabs-buttons {
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  overscroll-behavior-x: contain;
}
.tabs-switches .tabs {
  border-radius: 0;
  border: 0;
}
.tabs-switches .tabs-buttons {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  gap: 0;
  padding: 5px;
  background-color: var(--light-grey);
  border: 1px solid var(--light-grey);
  border-radius: 1000px;
}
.tabs-switches .tabs-buttons:is(.dynamic)::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  z-index: 1;
  width: var(--indicator-width, 50%);
  height: calc(100% - 10px);
  background-color: var(--navy);
  border-radius: 1000px;
  transform: translate(var(--indicator-position, 5px), -50%);
  transition: 0.4s ease;
  will-change: transform;
}
.tabs-switches .tabs-buttons:not(.dynamic) .active {
  background-color: var(--navy);
}
.tabs-switches .tabs-buttons {
  margin: 0;
}
.tabs-switches .tabs .tab {
  padding: 16px;
}
@media (max-width: 999.98px) {
  .tabs-switches .tabs .tab {
    padding: 16px;
  }
}
.tabs-switches .button-switch {
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 135%;
}
@media (max-width: 999.98px) {
  .tabs-switches .button-switch {
    font-size: 14px;
  }
}
.tabs-switches .button-switch {
  position: relative;
  z-index: 1;
  display: inline-block;
  padding: 5.5px 16px;
  text-align: center;
  text-decoration: none !important;
  vertical-align: middle;
  cursor: pointer;
  user-select: none;
  text-transform: none;
  border-radius: 100px;
  border: 1px solid;
  background-color: transparent;
  border-color: transparent;
  color: var(--navy);
  text-align: center;
  transition: 0.25s ease-in-out;
}
.tabs-switches .button-switch:hover, .tabs-switches .button-switch.hover {
  background-color: transparent;
  border-color: transparent;
  color: var(--navy);
}
.tabs-switches .button-switch:focus:active, .tabs-switches .button-switch.focus, .tabs-switches .button-switch:active {
  background-color: transparent;
  border-color: transparent;
}
.tabs-switches .button-switch.active {
  color: var(--white);
}
.tabs-switches .button-switch.disabled, .tabs-switches .button-switch:disabled {
  background-color: var(--light-grey);
  color: var(--black);
  border-color: var(--light-grey);
  box-shadow: none;
  opacity: 0.35;
  cursor: not-allowed;
}
.tabs-pos > .tab {
  padding: 30px;
}
@media (max-width: 999.98px) {
  .tabs-pos > .tab {
    padding: 15px;
  }
}

@supports (-moz-appearance: none) {
  .table-wrapper {
    scrollbar-color: var(--navy) var(--light-grey);
    scrollbar-width: thin;
  }
}
.table-wrapper::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
.table-wrapper::-webkit-scrollbar-track {
  background: var(--light-grey);
  border-radius: 8px;
}
.table-wrapper::-webkit-scrollbar-thumb {
  background: var(--navy);
  border-radius: 8px;
}
.table-wrapper {
  position: relative;
  z-index: 1;
  padding-bottom: 10px;
  overflow-x: auto;
  overflow-y: hidden;
}
@media (max-width: 999.98px) {
  .table-wrapper {
    margin-left: -10px;
    margin-right: -10px;
  }
}
.table-compare {
  table-layout: auto;
}
.table-compare thead tr th:first-child, .table-compare tbody tr th:first-child, .table-compare tbody tr td:first-child {
  position: sticky;
  left: 0;
  z-index: 3;
}
.table-compare > thead > tr {
  counter-reset: compareItems;
}
.table-compare > thead > tr > th {
  box-sizing: content-box;
  text-align: left;
}
.table-compare > thead > tr > th.main-th {
  text-align: center;
  vertical-align: middle;
}
.table-compare > thead > tr > th.main-th .th-btn {
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 135%;
}
@media (max-width: 999.98px) {
  .table-compare > thead > tr > th.main-th .th-btn {
    font-size: 14px;
  }
}
.table-compare > thead > tr > th.main-th .th-btn {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--btn-padding-y) var(--btn-padding-x);
  color: var(--white);
  line-height: 1;
  font-family: "Wix Madefor Display";
  text-align: center;
  text-decoration: none !important;
  vertical-align: middle;
  cursor: pointer;
  touch-action: manipulation;
  user-select: none;
  text-transform: none;
  border-radius: 100px;
  border: 1px solid;
  border-color: var(--main);
  background-color: var(--main);
  white-space: nowrap;
  transition: 0.25s ease-in-out;
}
@media (max-width: 999.98px) {
  .table-compare > thead > tr > th.main-th .th-btn {
    --btn-padding-y: 14.5px;
    --btn-padding-x: 24px;
  }
}
.table-compare > thead > tr > th.main-th .th-btn:hover, .table-compare > thead > tr > th.main-th .th-btn.hover {
  background-color: rgb(38.8656716418, 92.776119403, 213.1343283582);
  border-color: rgb(38.8656716418, 92.776119403, 213.1343283582);
  color: var(--white);
}
.table-compare > thead > tr > th.main-th .th-btn:focus:active, .table-compare > thead > tr > th.main-th .th-btn.focus, .table-compare > thead > tr > th.main-th .th-btn.active, .table-compare > thead > tr > th.main-th .th-btn.open {
  background-color: rgb(23.1343283582, 55.223880597, 126.8656716418);
  border-color: rgb(23.1343283582, 55.223880597, 126.8656716418);
  color: var(--white);
}
.table-compare > thead > tr > th.main-th .th-btn.disabled, .table-compare > thead > tr > th.main-th .th-btn:disabled {
  background-color: rgba(114, 132, 148, 0.35) !important;
  color: var(--white) !important;
  border-color: rgba(114, 132, 148, 0.125) !important;
  box-shadow: none;
  cursor: not-allowed;
}
.table-compare > thead > tr > th.main-th .th-btn.disabled:hover, .table-compare > thead > tr > th.main-th .th-btn.disabled.hover, .table-compare > thead > tr > th.main-th .th-btn.disabled:focus:active, .table-compare > thead > tr > th.main-th .th-btn.disabled:focus, .table-compare > thead > tr > th.main-th .th-btn.disabled.focus, .table-compare > thead > tr > th.main-th .th-btn.disabled.active, .table-compare > thead > tr > th.main-th .th-btn.disabled.open, .table-compare > thead > tr > th.main-th .th-btn:disabled:hover, .table-compare > thead > tr > th.main-th .th-btn:disabled.hover, .table-compare > thead > tr > th.main-th .th-btn:disabled:focus:active, .table-compare > thead > tr > th.main-th .th-btn:disabled:focus, .table-compare > thead > tr > th.main-th .th-btn:disabled.focus, .table-compare > thead > tr > th.main-th .th-btn:disabled.active, .table-compare > thead > tr > th.main-th .th-btn:disabled.open {
  background-color: rgba(114, 132, 148, 0.35) !important;
  color: var(--white) !important;
  border-color: rgba(114, 132, 148, 0.125) !important;
}
.table-compare > thead > tr > th.main-th .th-btn.hidden, .table-compare > thead > tr > th.main-th .th-btn:hidden {
  display: none;
}
.table-compare > thead > tr > th.main-th .th-btn > i, .table-compare > thead > tr > th.main-th .th-btn > svg {
  pointer-events: none;
  vertical-align: text-bottom;
  transition: 0.25s ease-in-out;
}
.table-compare > thead > tr > th.main-th .th-btn.aspected {
  --btn-padding-x: 4px;
  --btn-padding-y: 4px;
  --btn-padding-x: var(--btn-padding-y);
  width: var(--btn-size);
  height: var(--btn-size);
}
.table-compare > thead > tr > th.main-th .th-btn .counter-items {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  max-width: 30px;
  height: 20px;
  padding: 0 3px;
  border-radius: 1000px;
  background-color: var(--green);
  color: var(--white);
  font-size: 12px;
  text-align: center;
  transform: translate(30%, 30%);
}
.table-compare > thead > tr > th.main-th .th-btn .counter-items[data-compare-items="0"], .table-compare > thead > tr > th.main-th .th-btn .counter-items[data-favorite-items="0"] {
  display: none;
}
.table-compare > thead > tr > th.main-th .th-btn {
  color: var(--white);
  border-color: transparent;
  background-color: transparent;
}
.table-compare > thead > tr > th.main-th .th-btn.hover, .table-compare > thead > tr > th.main-th .th-btn:hover {
  color: var(--white);
  border-color: rgba(25.5, 25.5, 25.5, 0);
  background-color: rgba(25.5, 25.5, 25.5, 0);
}
.table-compare > thead > tr > th.main-th .th-btn:focus:active, .table-compare > thead > tr > th.main-th .th-btn.focus, .table-compare > thead > tr > th.main-th .th-btn.active, .table-compare > thead > tr > th.main-th .th-btn.open {
  background-color: rgba(0, 0, 0, 0);
  border-color: rgba(0, 0, 0, 0);
  color: var(--white);
}
.table-compare > thead > tr > th.main-th .th-btn.glass {
  background-color: rgba(0, 0, 0, 0);
}
.table-compare > thead > tr > th.main-th .th-btn.dimmed {
  background-color: rgba(0, 0, 0, 0);
  color: transparent;
  border-color: rgba(0, 0, 0, 0);
}
.table-compare > thead > tr > th.main-th .th-btn.dimmed.hover, .table-compare > thead > tr > th.main-th .th-btn.dimmed:hover {
  color: var(--white);
  border-color: rgba(25.5, 25.5, 25.5, 0);
  background-color: rgba(25.5, 25.5, 25.5, 0);
}
.table-compare > thead > tr > th.main-th .th-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
@media (max-width: 999.98px) {
  .table-compare > thead > tr > th.main-th .th-btn {
    gap: 5px;
  }
}
.table-compare > thead > tr > th.main-th .th-btn > svg, .table-compare > thead > tr > th.main-th .th-btn > image, .table-compare > thead > tr > th.main-th .th-btn > img, .table-compare > thead > tr > th.main-th .th-btn > object, .table-compare > thead > tr > th.main-th .th-btn > i {
  display: flex;
  align-self: center;
  justify-content: center;
  width: fit-content;
  max-height: 100%;
  aspect-ratio: 1/1;
  object-fit: contain;
  vertical-align: middle;
}
.table-compare > thead > tr > th.main-th .th-btn > svg, .table-compare > thead > tr > th.main-th .th-btn > image, .table-compare > thead > tr > th.main-th .th-btn > img, .table-compare > thead > tr > th.main-th .th-btn > object {
  max-width: 16px;
  width: 100%;
}
.table-compare > thead > tr > th.main-th .th-btn > svg * {
  fill: currentColor;
}
.table-compare > thead > tr > th.main-th .th-btn {
  position: absolute;
  top: 0;
  right: 5px;
  z-index: 1;
  display: none;
}
@media (max-width: 999.98px) {
  .table-compare > thead > tr > th.main-th .th-btn {
    display: flex;
  }
}
@media (max-width: 575.98px) {
  .table-compare > thead > tr > th.main-th .th-btn {
    right: 0;
  }
}
.table-compare > thead > tr > th.main-th .th-btn i {
  display: flex;
}
.table-compare > thead > tr > th.main-th .th-btn.active i {
  transform: rotate(180deg);
}
.table-compare > thead > tr > th.main-th .feature-logo {
  display: inline-block;
  width: 88px;
  height: 52px;
  transform-origin: center left;
  transition: 0.25s ease-in-out;
}
@media (max-width: 575.98px) {
  .table-compare > thead > tr > th.main-th .feature-logo {
    width: 50px;
    height: 30px;
  }
}
.table-compare > thead > tr > th.main-th .feature-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.table-compare > thead > tr > th.main-th::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  background-image: url("../../../assets/images/example/compare/side-bg.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  pointer-events: none;
  user-select: none;
}
@media (max-width: 999.98px) {
  .table-compare > thead > tr > th.main-th::before {
    background-size: 100% 100%;
  }
}
.table-compare > thead > tr > th.feature {
  border-radius: 0 15px 0 0;
  background: var(--grey-blue);
  color: var(--white);
  text-align: center;
}
.table-compare > thead > tr > th.product {
  position: relative;
  max-width: 360px;
  min-width: 360px;
  padding: 0 20px;
}
@media (max-width: 1199.98px) {
  .table-compare > thead > tr > th.product {
    max-width: 285px;
    min-width: 285px;
  }
}
@media (max-width: 999.98px) {
  .table-compare > thead > tr > th.product {
    max-width: 255px;
    min-width: 255px;
    padding: 0 15px;
  }
}
@media (max-width: 575.98px) {
  .table-compare > thead > tr > th.product {
    max-width: 105px;
    min-width: 105px;
    padding: 0 10px;
  }
}
.table-compare > thead > tr > th.product:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  width: 1px;
  height: 100%;
  background-color: #8fa5d5;
}
.table-compare > tbody {
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 135%;
}
@media (max-width: 999.98px) {
  .table-compare > tbody {
    font-size: 14px;
  }
}
.table-compare > tbody {
  overflow: hidden;
}
@media (max-width: 575.98px) {
  .table-compare > tbody {
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 135%;
  }
}
@media (max-width: 575.98px) and (max-width: 999.98px) {
  .table-compare > tbody {
    font-size: 12px;
  }
}
.table-compare > tbody > tr {
  transition: 0.25s ease-in-out;
}
.table-compare > tbody > tr:not(.collapse-row).collapsed {
  display: none;
}
.table-compare > tbody > tr:not(.collapse-row).isHidden .feature {
  min-width: 30px;
  max-width: 30px;
}
.table-compare > tbody > tr:not(.collapse-row).isHidden .feature > span > span {
  font-size: 0;
  visibility: hidden;
  opacity: 0;
}
.table-compare > tbody > tr.blank-row > th {
  padding-top: 20px;
  background: var(--grey-blue);
  color: var(--white);
}
.table-compare > tbody > tr.last-blank-row {
  position: relative;
  display: contents !important;
}
.table-compare > tbody > tr.last-blank-row > th {
  background: var(--grey-blue);
}
@media (max-width: 999.98px) {
  .table-compare > tbody > tr.collapse-row {
    background-color: var(--grey-blue);
  }
}
.table-compare > tbody > tr.collapse-row > th {
  background: var(--grey-blue);
  color: var(--white);
}
.table-compare > tbody > tr.collapse-row > th .side-trigger {
  position: relative;
  text-decoration: none !important;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 135%;
}
@media (max-width: 999.98px) {
  .table-compare > tbody > tr.collapse-row > th .side-trigger {
    font-size: 14px;
  }
}
.table-compare > tbody > tr.collapse-row > th .side-trigger {
  font-weight: 700;
}
@media (max-width: 999.98px) {
  .table-compare > tbody > tr.collapse-row > th .side-trigger {
    white-space: nowrap;
  }
}
.table-compare > tbody > tr.collapse-row > th .side-trigger i {
  display: inline-flex;
  vertical-align: middle;
  transition: 0.25s ease-in-out;
}
.table-compare > tbody > tr.collapse-row > th .side-trigger.collapsed i {
  transform: rotate(180deg);
}
.table-compare > tbody > tr > th {
  box-sizing: content-box;
  min-width: 260px;
  max-width: 260px;
  padding: 5px 30px;
  text-align: left;
  transition: 0.25s ease-in-out;
}
@media (max-width: 1199.98px) {
  .table-compare > tbody > tr > th {
    padding: 5px 20px;
  }
}
@media (max-width: 999.98px) {
  .table-compare > tbody > tr > th {
    min-width: 125px;
    max-width: 125px;
    padding: 5px 15px;
  }
}
@media (max-width: 575.98px) {
  .table-compare > tbody > tr > th {
    padding: 5px 10px;
  }
}
.table-compare > tbody > tr > th.feature {
  background: var(--grey-blue);
  color: var(--white);
}
@media (max-width: 999.98px) {
  .table-compare > tbody > tr > th.feature {
    color: var(--white-80);
  }
}
.table-compare > tbody > tr > th.feature span {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
  transition: 0.25s ease-in-out;
}
.table-compare > tbody > tr > th.feature span span {
  transition: 0.25s ease-in-out;
}
.table-compare > tbody > tr > th.feature span i {
  display: flex;
  margin-top: 2px;
  transition: 0.25s ease-in-out;
}
.table-compare > tbody > tr > th.feature-success ~ td {
  color: var(--green);
}
.table-compare > tbody > tr > td {
  box-sizing: content-box;
  max-width: 360px;
  min-width: 360px;
  padding: 5px 20px;
  color: var(--main);
  transition: 0.25s ease-in-out;
}
@media (max-width: 1199.98px) {
  .table-compare > tbody > tr > td {
    max-width: 285px;
    min-width: 285px;
  }
}
@media (max-width: 999.98px) {
  .table-compare > tbody > tr > td {
    max-width: 255px;
    min-width: 255px;
    padding: 5px 15px;
  }
}
@media (max-width: 575.98px) {
  .table-compare > tbody > tr > td {
    max-width: 105px;
    min-width: 105px;
    padding: 5px 10px;
  }
}
.table-compare > tbody > tr > td .icon-check {
  color: var(--green);
}
.table-compare > tbody > tr > td .icon-cross {
  color: var(--black);
}
.table-compare > tbody > tr:last-of-type > th {
  border-radius: 0 0 15px 0;
}
.table-compare > tbody > tr > td:not(:last-child) {
  position: relative;
}
.table-compare > tbody > tr > td:not(:last-child)::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
  width: 1px;
  height: 100%;
  min-height: 1000vh;
  background-color: #8fa5d5;
}
.table-compare > tbody > tr:nth-child(even):not(.collapse-row, .blank-row) {
  background-color: var(--light-grey);
}
.table-compare > tbody > tr:hover:not(.collapse-row, .blank-row, .last-blank-row) {
  background-color: rgba(79, 172, 127, 0.3);
}
.table-compare > tbody > tr:hover:not(.collapse-row, .blank-row, .last-blank-row) > th {
  background-color: var(--green);
}
@media (max-width: 999.98px) {
  .table-compare.isHidden > thead > tr > .main-th .feature-logo {
    width: 0;
    visibility: hidden;
    opacity: 0;
  }
  .table-compare.isHidden > thead > tr > .main-th::before {
    opacity: 0;
    visibility: hidden;
  }
  .table-compare.isHidden > tbody > tr > th {
    width: 20px;
    min-width: 20px;
    max-width: 20px;
  }
  .table-compare.isHidden > tbody > tr > th > span {
    justify-content: center;
  }
  .table-compare.isHidden > tbody > tr > th > span > span {
    width: 0;
    height: 0;
    opacity: 0;
    visibility: hidden;
  }
  .table-compare.isHidden > tbody > tr > th > span > i {
    margin-left: 5px;
  }
}

:root {
  --btn-size: 40px;
  --btn-padding-y: 13.5px;
  --btn-padding-x: 30px;
  --slides-gap: 10px;
}

h1,
.h1 {
  font-weight: 700;
  font-size: 40px;
  line-height: 115%;
}
@media (max-width: 999.98px) {
  h1,
  .h1 {
    font-size: 24px;
  }
}
h2,
.h2 {
  font-weight: 700;
  font-size: 24px;
  line-height: 115%;
}
@media (max-width: 999.98px) {
  h2,
  .h2 {
    font-size: 20px;
  }
}
h3,
.h3 {
  font-weight: 700;
  font-size: 24px;
  line-height: 115%;
}
@media (max-width: 999.98px) {
  h3,
  .h3 {
    font-size: 18px;
  }
}
h4,
.h4 {
  font-weight: 700;
  font-size: 20px;
  line-height: 115%;
}
@media (max-width: 999.98px) {
  h4,
  .h4 {
    font-size: 16px;
  }
}

p,
.p {
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 135%;
}
@media (max-width: 999.98px) {
  p,
  .p {
    font-size: 14px;
  }
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin-block-start: 0;
  margin-block-end: 0.45em;
}

a {
  color: inherit;
  text-decoration-skip-ink: none;
  text-underline-offset: 2px;
  text-decoration: none;
  transition: 0.25s ease-in-out;
}
a:hover {
  text-decoration: underline;
}
a:not([class]) {
  text-decoration: underline;
}
a:not([class]):hover {
  text-decoration: none;
}
a:not([class]) > i {
  margin-right: 4px;
  vertical-align: middle;
}

.small,
small {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 135%;
}
@media (max-width: 999.98px) {
  .small,
  small {
    font-size: 12px;
  }
}

.strong,
strong,
.b,
b {
  font-weight: 700;
}

.t1 {
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 135%;
}
@media (max-width: 999.98px) {
  .t1 {
    font-size: 14px;
  }
}
.t1-bold {
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 135%;
}
@media (max-width: 999.98px) {
  .t1-bold {
    font-size: 14px;
  }
}
.t1-bold {
  font-weight: 700;
}
.t2 {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 135%;
}
@media (max-width: 999.98px) {
  .t2 {
    font-size: 12px;
  }
}
.t2-bold {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 135%;
}
@media (max-width: 999.98px) {
  .t2-bold {
    font-size: 12px;
  }
}
.t2-bold {
  font-weight: 700;
}

.fw-400 {
  font-weight: 400;
}
.fw-500 {
  font-weight: 500;
}
.fw-700 {
  font-weight: 700;
}
.fw-light {
  font-weight: 400;
}
.fw-medium {
  font-weight: 500;
}
.fw-bold {
  font-weight: 700;
}

.text-white {
  color: #ffffff;
}
.text-white-80 {
  color: rgba(255, 255, 255, 0.8);
}
.text-light-grey {
  color: #f2f3f6;
}
.text-grey-blue {
  color: #728494;
}
.text-main {
  color: #1f4aaa;
}
.text-main-80 {
  color: rgba(31, 74, 170, 0.8);
}
.text-main-50 {
  color: rgba(31, 74, 170, 0.5019607843);
}
.text-navy {
  color: #0f2b66;
}
.text-black {
  color: #2b2f35;
}
.text-black-80 {
  color: rgba(43, 47, 53, 0.8);
}
.text-black-50 {
  color: rgba(43, 47, 53, 0.5019607843);
}
.text-green {
  color: #4fac7f;
}
.text-yellow {
  color: #ffe870;
}
.text-red {
  color: #b43c3c;
}
.text-error {
  color: #b94141;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.text-center {
  text-align: center;
}
.text-uppercase {
  text-transform: uppercase;
}
.text-lowercase {
  text-transform: lowercase;
}
.text-underline {
  text-decoration: underline;
}
.text-underline:is(a):hover {
  text-decoration: none;
}
.text-nowrap {
  white-space: nowrap;
}
.text-decoration-none {
  text-decoration: none !important;
}
@media (max-width: 1599.98px) {
  .text-xxxl-left {
    text-align: left;
  }
  .text-xxxl-right {
    text-align: right;
  }
  .text-xxxl-center {
    text-align: center;
  }
  .text-xxxl-uppercase {
    text-transform: uppercase;
  }
  .text-xxxl-lowercase {
    text-transform: lowercase;
  }
  .text-xxxl-underline {
    text-decoration: underline;
  }
  .text-xxxl-underline:is(a):hover {
    text-decoration: none;
  }
  .text-xxxl-nowrap {
    white-space: nowrap;
  }
  .text-xxxl-decoration-none {
    text-decoration: none !important;
  }
}
@media (max-width: 1399.98px) {
  .text-xxl-left {
    text-align: left;
  }
  .text-xxl-right {
    text-align: right;
  }
  .text-xxl-center {
    text-align: center;
  }
  .text-xxl-uppercase {
    text-transform: uppercase;
  }
  .text-xxl-lowercase {
    text-transform: lowercase;
  }
  .text-xxl-underline {
    text-decoration: underline;
  }
  .text-xxl-underline:is(a):hover {
    text-decoration: none;
  }
  .text-xxl-nowrap {
    white-space: nowrap;
  }
  .text-xxl-decoration-none {
    text-decoration: none !important;
  }
}
@media (max-width: 1199.98px) {
  .text-xl-left {
    text-align: left;
  }
  .text-xl-right {
    text-align: right;
  }
  .text-xl-center {
    text-align: center;
  }
  .text-xl-uppercase {
    text-transform: uppercase;
  }
  .text-xl-lowercase {
    text-transform: lowercase;
  }
  .text-xl-underline {
    text-decoration: underline;
  }
  .text-xl-underline:is(a):hover {
    text-decoration: none;
  }
  .text-xl-nowrap {
    white-space: nowrap;
  }
  .text-xl-decoration-none {
    text-decoration: none !important;
  }
}
@media (max-width: 999.98px) {
  .text-lg-left {
    text-align: left;
  }
  .text-lg-right {
    text-align: right;
  }
  .text-lg-center {
    text-align: center;
  }
  .text-lg-uppercase {
    text-transform: uppercase;
  }
  .text-lg-lowercase {
    text-transform: lowercase;
  }
  .text-lg-underline {
    text-decoration: underline;
  }
  .text-lg-underline:is(a):hover {
    text-decoration: none;
  }
  .text-lg-nowrap {
    white-space: nowrap;
  }
  .text-lg-decoration-none {
    text-decoration: none !important;
  }
}
@media (max-width: 719.98px) {
  .text-md-left {
    text-align: left;
  }
  .text-md-right {
    text-align: right;
  }
  .text-md-center {
    text-align: center;
  }
  .text-md-uppercase {
    text-transform: uppercase;
  }
  .text-md-lowercase {
    text-transform: lowercase;
  }
  .text-md-underline {
    text-decoration: underline;
  }
  .text-md-underline:is(a):hover {
    text-decoration: none;
  }
  .text-md-nowrap {
    white-space: nowrap;
  }
  .text-md-decoration-none {
    text-decoration: none !important;
  }
}
@media (max-width: 575.98px) {
  .text-sm-left {
    text-align: left;
  }
  .text-sm-right {
    text-align: right;
  }
  .text-sm-center {
    text-align: center;
  }
  .text-sm-uppercase {
    text-transform: uppercase;
  }
  .text-sm-lowercase {
    text-transform: lowercase;
  }
  .text-sm-underline {
    text-decoration: underline;
  }
  .text-sm-underline:is(a):hover {
    text-decoration: none;
  }
  .text-sm-nowrap {
    white-space: nowrap;
  }
  .text-sm-decoration-none {
    text-decoration: none !important;
  }
}

[data-tooltip] {
  position: relative;
  z-index: 120;
  cursor: pointer;
}
[data-tooltip]::before {
  vertical-align: middle;
}
[data-tooltip]::after {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}
[data-tooltip]::after {
  content: attr(data-tooltip);
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 135%;
}
@media (max-width: 999.98px) {
  [data-tooltip]::after {
    font-size: 12px;
  }
}
[data-tooltip]::after {
  position: absolute;
  top: 0;
  left: 50%;
  margin-bottom: 5px;
  padding: 10px;
  width: 180px;
  border-radius: 10px;
  background-color: var(--black);
  color: var(--white);
  text-align: center;
  white-space: normal;
  transform: translate(-50%, -100%);
}
[data-tooltip]:hover {
  z-index: 10000;
}
[data-tooltip]:hover::after {
  visibility: visible;
  opacity: 1;
}
[data-tooltip][data-tooltip-position="bottom,right"]::after {
  top: 100%;
  left: auto;
  right: 0;
  bottom: -100%;
  height: fit-content;
  margin-top: 5px;
  transform: translate(0, 0);
}

.user-block {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 10px;
  align-items: center;
  text-decoration: none !important;
}
.user-block .user-avatar {
  display: flex;
  width: 48px;
  height: 48px;
  border-radius: 1000px;
  background-color: var(--light-grey);
  overflow: hidden;
}
.user-block .user-avatar:hover {
  text-decoration: none !important;
}
.user-block .user-avatar > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.user-block .user-avatar > span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: var(--main);
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}
.user-block .user-avatar--initials {
  align-items: center;
  justify-content: center;
}
.user-name {
  font-weight: 700;
}

.page-user {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  align-items: flex-start;
  gap: 20px;
}
@media (max-width: 999.98px) {
  .page-user {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

.account-dashboard__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 0;
}
@media (max-width: 575.98px) {
  .account-dashboard__content {
    gap: 15px;
  }
}

.account-nav {
  position: sticky;
  top: 95px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  background-color: var(--white);
  border: 1px solid var(--light-grey);
  border-radius: 15px;
  box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.06);
}
@media (max-width: 999.98px) {
  .account-nav {
    position: relative;
    top: auto;
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
  }
  @supports (-moz-appearance: none) {
    .account-nav {
      scrollbar-color: var(--navy) var(--light-grey);
      scrollbar-width: thin;
    }
  }
  .account-nav::-webkit-scrollbar {
    width: 8px;
    height: 8px;
  }
  .account-nav::-webkit-scrollbar-track {
    background: var(--light-grey);
    border-radius: 8px;
  }
  .account-nav::-webkit-scrollbar-thumb {
    background: var(--navy);
    border-radius: 8px;
  }
}
.account-nav__item {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--black-80);
  font-weight: 500;
  text-decoration: none !important;
  white-space: nowrap;
  transition: 0.25s ease-in-out;
}
.account-nav__item > i {
  font-size: 18px;
  color: var(--grey-blue);
  transition: 0.25s ease-in-out;
}
.account-nav__item:hover, .account-nav__item.active {
  background-color: var(--light-grey);
  color: var(--main);
}
.account-nav__item--logout {
  color: #c53333;
}
.account-nav__item--logout:hover, .account-nav__item--logout.active {
  color: #c53333;
  background-color: #fdeaea;
}
.account-nav__item--logout > i {
  color: currentColor;
}
.account-nav__item > span {
  min-width: 0;
  overflow-wrap: break-word;
}

.account-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
@media (max-width: 719.98px) {
  .account-stats {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

.account-stat {
  position: relative;
  z-index: 1;
  display: flex;
  max-width: 100%;
  padding: 15px;
  background-color: var(--light-grey);
  border: 1px solid;
  border-color: var(--light-grey);
  border-radius: 15px;
  color: var(--black);
  transition: 0.25s ease-in-out;
  flex-direction: column;
  gap: 10px;
  min-height: 120px;
  padding: 25px;
  background-color: var(--white);
  box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.06);
  text-decoration: none !important;
}
@media (max-width: 575.98px) {
  .account-stat {
    min-height: unset;
    padding: 15px;
  }
}
.account-stat:hover {
  border-color: var(--main-50);
  box-shadow: 0 8px 20px 0 rgba(31, 74, 170, 0.12);
  transform: translateY(-2px);
}
.account-stat__label {
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 135%;
}
@media (max-width: 999.98px) {
  .account-stat__label {
    font-size: 14px;
  }
}
.account-stat__label {
  font-weight: 700;
}
.account-stat strong {
  font-weight: 700;
  font-size: 40px;
  line-height: 115%;
}
@media (max-width: 999.98px) {
  .account-stat strong {
    font-size: 24px;
  }
}
.account-stat strong {
  color: var(--navy);
}
.account-stat--messages {
  position: relative;
}
.account-stat__icons {
  position: absolute;
  right: 25px;
  bottom: 25px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  color: var(--main);
}
.account-stat__icons i:last-child {
  color: var(--error);
}

.account-panel {
  position: relative;
  z-index: 1;
  display: flex;
  max-width: 100%;
  padding: 15px;
  background-color: var(--light-grey);
  border: 1px solid;
  border-color: var(--light-grey);
  border-radius: 15px;
  color: var(--black);
  transition: 0.25s ease-in-out;
  flex-direction: column;
  padding: 0;
  background-color: var(--white);
  box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.06);
  overflow: hidden;
}
.account-panel__header {
  padding: 20px 25px 10px;
}
.account-panel__header h2 {
  margin: 0;
  font-size: 20px;
}
.account-panel__link {
  width: fit-content;
  margin: 5px 25px 20px;
  font-weight: 700;
  color: var(--main);
}
.account-panel__inside {
  padding: 20px 25px;
}
.account-panel__inside > .account-panel__header {
  padding: 0;
}
.account-panel__inside > .account-panel__header h2 {
  margin-block-end: 0.45em;
}

.account-notifications__list {
  display: flex;
  flex-direction: column;
}

.account-notice {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 14px 25px;
  border-top: 1px solid var(--light-grey);
  color: var(--black);
  text-decoration: none !important;
  transition: 0.25s ease-in-out;
}
@media (max-width: 575.98px) {
  .account-notice {
    grid-template-columns: 24px minmax(0, 1fr);
    padding: 12px 15px;
  }
}
.account-notice:hover {
  background-color: var(--light-grey);
  color: var(--main);
}
.account-notice > i {
  color: var(--grey-blue);
}
.account-notice > span {
  font-weight: 500;
}
.account-notice > time {
  font-size: 14px;
  color: var(--grey-blue);
  white-space: nowrap;
}
@media (max-width: 575.98px) {
  .account-notice > time {
    grid-column-start: 2;
  }
}

.page-user__notifications {
  display: flex;
  align-items: center;
  gap: 10px;
}

.page-chat {
  grid-template-columns: 230px minmax(0, 1fr);
}
@media (max-width: 1399.98px) {
  .page-chat {
    grid-template-columns: 1fr;
  }
  .page-chat .account-nav {
    position: relative;
    top: auto;
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
  }
  @supports (-moz-appearance: none) {
    .page-chat .account-nav {
      scrollbar-color: var(--navy) var(--light-grey);
      scrollbar-width: thin;
    }
  }
  .page-chat .account-nav::-webkit-scrollbar {
    width: 8px;
    height: 8px;
  }
  .page-chat .account-nav::-webkit-scrollbar-track {
    background: var(--light-grey);
    border-radius: 8px;
  }
  .page-chat .account-nav::-webkit-scrollbar-thumb {
    background: var(--navy);
    border-radius: 8px;
  }
}
.page-chat .account-nav__item.active {
  background-color: rgba(31, 74, 170, 0.08);
}

.chat-layout {
  display: grid;
  grid-template-columns: 300px minmax(420px, 1fr);
  gap: 15px;
  min-width: 0;
}
@media (max-width: 1199.98px) {
  .chat-layout {
    grid-template-columns: 290px minmax(0, 1fr);
  }
  .chat-layout .chat-info {
    grid-column: 1/-1;
    max-height: 100%;
  }
}
@media (max-width: 999.98px) {
  .chat-layout {
    grid-template-columns: 1fr;
  }
}

.chat-panel {
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 70vh;
  min-height: 70dvh;
  max-height: 720px;
  padding: 0;
  background-color: var(--white);
  border: 1px solid var(--light-grey);
  border-radius: 16px;
  box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.06);
  overflow: hidden;
}
@media (max-width: 999.98px) {
  .chat-panel {
    min-height: unset;
  }
}
.chat-panel__header {
  padding: 20px 20px 10px;
}
.chat-panel__header h2 {
  margin: 0;
  font-size: 20px;
}

.chat-avatar {
  position: relative;
  display: inline-flex;
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background-color: var(--light-grey);
}
.chat-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}
.chat-avatar > span {
  position: absolute;
  right: 0;
  bottom: 2px;
  width: 10px;
  height: 10px;
  border: 2px solid var(--white);
  border-radius: 50%;
  background-color: var(--green);
}
.chat-avatar__initials {
  position: static !important;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100% !important;
  height: 100% !important;
  border: 0 !important;
  border-radius: inherit !important;
  background-color: transparent !important;
  color: var(--main);
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  text-transform: uppercase;
}
.chat-avatar--lg .chat-avatar__initials {
  font-size: 24px;
}
.chat-avatar--lg {
  width: 76px;
  height: 76px;
}
.chat-avatar--group {
  align-items: center;
  justify-content: center;
  color: var(--white);
  background-color: var(--main);
  font-size: 34px;
}

.chat-list__items {
  display: flex;
  flex-direction: column;
  padding: 0 10px 14px;
  gap: 8px;
  flex: 1;
  max-height: 100%;
  overflow-y: auto;
}

.chat-list__navbar {
  position: sticky;
  bottom: 0;
  left: 0;
  z-index: 3;
  width: 100%;
  padding: 10px 20px 20px;
  background-color: var(--white);
}

.chat-preview {
  position: relative;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) auto;
  gap: 10px;
  padding: 10px;
  border: 1px solid transparent;
  border-radius: 14px;
  color: var(--black);
  text-decoration: none !important;
  transition: 0.25s ease-in-out;
}
.chat-preview:hover, .chat-preview.active {
  border-color: var(--main-50);
  background-color: rgba(31, 74, 170, 0.07);
}
.chat-preview__body {
  display: flex;
  flex-direction: column;
  min-width: 0;
  gap: 5px;
}
.chat-preview__top {
  display: flex;
  gap: 8px;
  justify-content: space-between;
}
.chat-preview__top b {
  font-size: 15px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.chat-preview__top time {
  color: var(--grey-blue);
  font-size: 13px;
  white-space: nowrap;
}
.chat-preview__text {
  color: var(--grey-blue);
  font-size: 13px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.chat-preview__source {
  color: var(--main);
  font-size: 13px;
  font-weight: 600;
}
.chat-preview em {
  align-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: 20px;
  background-color: var(--main);
  color: var(--white);
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
}

.chat-dialog__header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--light-grey);
}
.chat-dialog__header > div {
  overflow: hidden;
}
.chat-dialog__header h2 {
  margin: 0 0 4px;
  font-size: 18px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.chat-dialog__header p {
  margin: 0;
  color: var(--green);
  font-size: 13px;
}
.chat-dialog__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 14px;
  padding: 22px 18px;
  background: linear-gradient(180deg, rgba(247, 249, 252, 0.7), rgba(255, 255, 255, 0.9));
  overflow-x: hidden;
  overflow-y: auto;
}

.chat-date,
.chat-system {
  align-self: center;
  padding: 5px 12px;
  border-radius: 20px;
  background-color: var(--light-grey);
  color: var(--grey-blue);
  font-size: 12px;
  font-weight: 600;
}

.chat-system {
  background-color: transparent;
}

.chat-message {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  width: 100%;
  height: fit-content;
}
.chat-message p {
  max-width: 80%;
  margin: 0;
  padding: 12px 14px;
  border: 1px solid var(--light-grey);
  border-radius: 14px;
  background-color: var(--white);
  font-size: 14px;
  line-height: 1.35;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.04);
}
.chat-message p .user-name {
  display: block;
}
.chat-message time {
  display: inline-block;
  margin-left: 8px;
  color: var(--grey-blue);
  font-size: 11px;
  white-space: nowrap;
}
.chat-message.is-highlighted {
  position: relative;
}
.chat-message.is-highlighted::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 200vw;
  min-height: 100%;
  padding: 0 100px;
  transform: translate(0, 0);
  animation: chatMessageHighlight 2.6s ease;
}
.chat-message .chat-avatar {
  position: sticky;
  bottom: 0;
  left: 0;
}
.chat-message.outgoing {
  align-self: flex-end;
  justify-content: flex-end;
}
.chat-message.outgoing p {
  border-color: rgba(31, 74, 170, 0.16);
  background-color: rgba(31, 74, 170, 0.1);
}
.chat-message.outgoing p time span {
  font-weight: 700;
  letter-spacing: -70%;
}
@media (max-width: 575.98px) {
  .chat-message {
    max-width: 100%;
  }
}
.chat-message-input {
  min-height: 45px !important;
  max-height: 5em;
  padding-top: 10px;
  padding-bottom: 10px;
  border: 1px solid var(--light-grey);
  border-radius: 12px;
  background-color: var(--white);
  resize: none;
  overflow-y: auto;
}

@keyframes chatMessageHighlight {
  0% {
    background-color: rgba(31, 74, 170, 0.18);
  }
  100% {
    background-color: transparent;
  }
}
.chat-compose {
  position: sticky;
  left: 0;
  bottom: 0;
  z-index: 2;
  display: grid;
  grid-template-columns: 45px minmax(0, 1fr) 45px;
  gap: 10px;
  padding: 15px;
  background-color: var(--white);
  border-top: 1px solid var(--light-grey);
}
.chat-compose input, .chat-compose button {
  height: 45px;
  border: 1px solid var(--light-grey);
  border-radius: 12px;
  background-color: var(--white);
}
.chat-compose input {
  padding: 0 15px;
}
.chat-compose textarea {
  padding-left: 15px;
}
.chat-compose button {
  color: var(--main);
  width: 45px;
  --btn-padding-x: 5px;
  --btn-padding-y: 5px;
}
.chat-compose__send {
  border-color: var(--main) !important;
  background-color: var(--main) !important;
  color: var(--white) !important;
}

.chat-info {
  gap: 15px;
  padding: 25px 15px;
  overflow-y: auto;
}
.chat-info h3 {
  margin: 0 0 12px;
  font-size: 16px;
}
.chat-info__contacts {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.chat-info__contacts a {
  color: var(--black);
  text-decoration: none;
}
.chat-info__contacts i {
  margin-right: 8px;
  color: var(--grey-blue);
}
.chat-info__section {
  padding-top: 16px;
  border-top: 1px solid var(--light-grey);
}
.chat-info__more {
  display: inline-block;
  margin-top: 10px;
  color: var(--main);
  font-weight: 700;
}

.chat-client-card {
  text-align: center;
}
.chat-client-card h3 {
  margin: 10px 0 4px;
}
.chat-client-card p {
  margin: 0;
  color: var(--green);
  font-size: 13px;
}

.chat-messengers {
  display: flex;
  gap: 10px;
}

.chat-info-link {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 8px;
  padding: 5px 10px;
  border: 1px solid var(--light-grey);
  border-radius: 10px;
  color: var(--black);
  text-decoration: none !important;
}
.chat-info-link + .chat-info-link {
  margin-top: 5px;
}
.chat-info-link span {
  color: var(--grey-blue);
  font-size: 13px;
}
.chat-info-link i {
  grid-row: 1/3;
  grid-column: 2;
  align-self: center;
  color: var(--grey-blue);
}

.chat-member {
  display: grid;
  grid-template-columns: 42px 1fr 42px;
  grid-template-rows: 1fr;
  gap: 2px 10px;
  align-items: center;
  margin-bottom: 10px;
}
.chat-member .chat-avatar {
  grid-row: 1/3;
  width: 42px;
  height: 42px;
}
.chat-member .chat-member-content {
  display: flex;
  flex-direction: column;
  text-overflow: ellipsis;
  overflow: hidden;
}
.chat-member b {
  font-size: 14px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.chat-member small {
  color: var(--grey-blue);
}
.chat-member .btn, .chat-member button, .chat-member input {
  margin-left: auto;
}

.chat-pinned {
  margin: 0;
  padding: 14px;
  border: 1px solid var(--light-grey);
  border-radius: 12px;
  background-color: rgba(31, 74, 170, 0.06);
}
.chat-pinned small {
  color: var(--grey-blue);
}

@media (min-width: 1200px) {
  .chat-mobile-close {
    display: none;
  }
}

.chat-info-backdrop {
  display: none;
}

.chat-dialog {
  overflow-y: auto;
}
.chat-dialog__empty {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  min-height: 360px;
  padding: 40px 20px;
  color: var(--grey-blue);
  font-size: 18px;
  font-weight: 700;
  text-align: center;
}

.chat-layout:not(.is-chat-selected) .chat-dialog__header,
.chat-layout:not(.is-chat-selected) .chat-dialog__body,
.chat-layout:not(.is-chat-selected) .chat-compose,
.chat-layout:not(.is-chat-selected) .chat-info {
  display: none;
}
.chat-layout.is-chat-selected .chat-dialog__empty {
  display: none;
}
@media (min-width: 1200px) {
  .chat-layout .chat-info {
    display: none;
  }
}
@media (min-width: 1200px) {
  .chat-layout.is-info-open {
    grid-template-columns: 300px minmax(420px, 1fr) 300px;
  }
}
.chat-layout.is-info-open .chat-info {
  display: flex;
}

@media (max-width: 1199.98px) {
  .chat-layout {
    grid-template-columns: 300px minmax(0, 1fr);
  }
  .chat-layout .chat-info {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 110;
    width: min(360px, 92vw);
    height: 100vh;
    padding: 15px 10px;
    border-radius: 15px 0 0 15px;
    overflow-y: auto;
    transform: translateX(105%);
    transition: transform 0.25s ease-in-out;
  }
  .chat-layout.is-info-open .chat-info {
    transform: translateX(0);
  }
  .chat-layout.is-info-open .chat-info-backdrop {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: block;
    background-color: rgba(0, 0, 0, 0.5);
  }
  .chat-mobile-close {
    z-index: 2;
    margin-left: auto;
  }
}
@media (max-width: 999.98px) {
  .page-chat .page-user__content.chat-layout {
    position: relative;
    display: block;
  }
  .chat-layout .chat-list {
    display: flex;
    min-height: calc(100vh - 120px);
  }
  .chat-layout .chat-dialog {
    display: none;
    min-height: calc(100vh - 120px);
    border-radius: 14px;
  }
  .chat-layout:not(.is-chat-selected) .chat-dialog {
    display: none;
  }
  .chat-layout.is-chat-selected .chat-list {
    display: none;
  }
  .chat-layout.is-chat-selected .chat-dialog {
    display: flex;
  }
  .chat-dialog__header {
    position: sticky;
    top: 0;
    z-index: 4;
    padding: 12px;
    background-color: var(--white);
  }
  .chat-dialog__header .chat-avatar {
    width: 42px;
    height: 42px;
  }
  .chat-dialog__header h2 {
    font-size: 16px;
  }
  .chat-mobile-back {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 40px;
    height: 40px;
    padding: 0;
    border: 1px solid var(--light-grey);
    border-radius: 12px;
    background-color: var(--white);
    color: var(--main);
  }
}
@media (max-width: 575.98px) {
  .chat-layout {
    margin: 0 -10px;
  }
  .chat-layout .chat-panel {
    border-radius: 0;
    border-right: 0;
    border-left: 0;
    box-shadow: none;
  }
  .chat-layout .chat-info {
    width: 100vw;
    border-radius: 0;
  }
  .chat-dialog__body {
    padding: 16px 10px;
  }
  .chat-message {
    gap: 6px;
  }
  .chat-message .chat-avatar {
    width: 30px;
    height: 30px;
  }
  .chat-message p {
    max-width: 100%;
    padding: 10px 12px;
    font-size: 13px;
  }
  .chat-compose {
    gap: 10px;
    padding: 10px;
  }
  .chat-compose input,
  .chat-compose button {
    height: 42px;
  }
}
@media (max-width: 1199.98px) {
  .chat-info-open {
    position: static;
    max-width: 100vw;
    max-height: 100vh;
    width: 100%;
    height: 100%;
    touch-action: none;
    overflow: hidden;
  }
  .chat-info-open .header, .chat-info-open .footer, .chat-info-open .filters, .chat-info-open .selection {
    z-index: -1 !important;
  }
}

.chat-dialog {
  position: relative;
  overflow: hidden;
}
.chat-dialog__pinned {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr) 32px;
}
.chat-dialog__pinned[hidden] {
  display: none !important;
}
.chat-dialog__pinned {
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-bottom: 1px solid rgba(31, 74, 170, 0.12);
  background-color: rgba(31, 74, 170, 0.06);
  cursor: pointer;
  transition: 0.25s ease-in-out;
}
.chat-dialog__pinned:hover, .chat-dialog__pinned:focus-visible {
  background-color: rgba(31, 74, 170, 0.1);
}
.chat-dialog__pinned:focus-visible {
  outline: 2px solid rgba(31, 74, 170, 0.35);
  outline-offset: -2px;
}
.chat-dialog__pinned.is-loading {
  pointer-events: none;
  opacity: 0.65;
}
.chat-dialog__pinned > i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  color: var(--main);
  background-color: var(--white);
}
.chat-dialog__pinned b {
  display: block;
  margin-bottom: 2px;
  color: var(--main);
  font-size: 13px;
}
.chat-dialog__pinned p {
  margin: 0;
  color: var(--black);
  font-size: 13px;
  line-height: 1.35;
}
.chat-dialog__pinned small {
  color: var(--grey-blue);
}
.chat-dialog__pinned-content {
  min-width: 0;
}
.chat-dialog__pinned-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 0;
  border-radius: 10px;
  color: var(--grey-blue);
  background-color: transparent;
  cursor: pointer;
  transition: 0.25s ease-in-out;
}
.chat-dialog__pinned-close:hover {
  color: var(--main);
  background-color: var(--white);
}

.chat-layout.is-chat-empty,
.chat-layout.is-chat-loading {
  grid-template-columns: 1fr;
}
.chat-layout.is-chat-empty .chat-list,
.chat-layout.is-chat-empty .chat-info,
.chat-layout.is-chat-empty .chat-dialog__header,
.chat-layout.is-chat-empty .chat-compose,
.chat-layout.is-chat-empty .chat-dialog__pinned,
.chat-layout.is-chat-empty .chat-scroll-down,
.chat-layout.is-chat-loading .chat-list,
.chat-layout.is-chat-loading .chat-info,
.chat-layout.is-chat-loading .chat-dialog__header,
.chat-layout.is-chat-loading .chat-compose,
.chat-layout.is-chat-loading .chat-dialog__pinned,
.chat-layout.is-chat-loading .chat-scroll-down {
  display: none !important;
}
.chat-layout.is-chat-empty .chat-dialog,
.chat-layout.is-chat-loading .chat-dialog {
  display: flex;
  grid-column: 1/-1;
  min-height: 420px;
}
.chat-layout.is-chat-empty .chat-dialog__body,
.chat-layout.is-chat-loading .chat-dialog__body {
  display: flex !important;
  flex: 1;
  align-items: center;
  justify-content: center;
  min-height: 420px;
  padding: 40px 20px;
  overflow: hidden;
}

.chat-layout.is-chat-empty .chat-empty-state,
.chat-layout.is-chat-loading .chat-empty-state {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 100%;
  text-align: center;
}
.chat-layout.is-chat-empty .chat-empty-state__content,
.chat-layout.is-chat-loading .chat-empty-state__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 520px;
  gap: 32px;
}
.chat-layout.is-chat-empty .chat-empty-state h2,
.chat-layout.is-chat-loading .chat-empty-state h2 {
  max-width: 420px;
  color: var(--black);
}
.chat-layout.is-chat-empty .chat-dialog__empty,
.chat-layout.is-chat-loading .chat-dialog__empty {
  display: none;
}
.chat-layout.is-chat-empty .chat-loading-state,
.chat-layout.is-chat-loading .chat-loading-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 100%;
  min-height: 100%;
  color: var(--grey-blue);
  text-align: center;
}
.chat-layout.is-chat-empty .chat-loading-state p,
.chat-layout.is-chat-loading .chat-loading-state p {
  margin: 0;
  font-weight: 500;
}
.chat-layout.is-chat-empty .chat-loading-state__spinner,
.chat-layout.is-chat-loading .chat-loading-state__spinner {
  width: 44px;
  height: 44px;
  border: 3px solid rgba(31, 74, 170, 0.14);
  border-top-color: var(--main);
  border-radius: 50%;
  animation: chat-loading-spin 0.8s linear infinite;
}
.chat-layout.is-chat-empty .chat-loading-state:not(.is-hidden) ~ .chat-dialog__empty,
.chat-layout.is-chat-loading .chat-loading-state:not(.is-hidden) ~ .chat-dialog__empty {
  display: none;
}
@keyframes chat-loading-spin {
  to {
    transform: rotate(360deg);
  }
}
.chat-layout.is-chat-empty .chat-dialog__pinned,
.chat-layout.is-chat-empty .chat-scroll-down,
.chat-layout.is-chat-loading .chat-dialog__pinned,
.chat-layout.is-chat-loading .chat-scroll-down {
  display: none;
}

.chat-scroll-down {
  position: absolute;
  right: 22px;
  bottom: 82px;
  z-index: 6;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(31, 74, 170, 0.16);
  border-radius: 50%;
  color: var(--main);
  background-color: var(--white);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: 0.25s ease-in-out;
}
.chat-scroll-down.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

@media (max-width: 575.98px) {
  .chat-dialog__pinned {
    grid-template-columns: minmax(0, 1fr) 32px;
    padding: 10px;
  }
  .chat-dialog__pinned > i {
    display: none;
  }
  .chat-scroll-down {
    right: 14px;
    bottom: 72px;
    width: 40px;
    height: 40px;
  }
}
.chat-dialog__body {
  position: relative;
}
.chat-dialog__body::before {
  content: "Перетащите файлы сюда";
  position: sticky;
  top: 0;
  z-index: 20;
  display: none;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100dvh;
  min-height: 100%;
  margin: 0;
  border: 2px dashed var(--main);
  border-radius: 16px;
  background-color: rgb(229, 236, 245);
  color: var(--main);
  font-size: 16px;
  font-weight: 700;
  pointer-events: none;
}
.chat-dialog__body.is-drag-over::before {
  display: flex;
}

.chat-compose__file-input,
[data-chat-file-input] {
  display: none !important;
}

.chat-files-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.chat-files-uploading {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  background-color: rgba(31, 74, 170, 0.08);
  color: var(--main);
  font-size: 14px;
  font-weight: 500;
}
.chat-files-uploading[hidden] {
  display: none;
}
.chat-files-uploading__spinner {
  display: block;
  width: 18px;
  height: 18px;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: chatFileUploading 0.8s linear infinite;
}

@keyframes chatFileUploading {
  to {
    transform: rotate(360deg);
  }
}
.modal-chat-files.is-uploading .chat-files-list {
  opacity: 0.55;
  pointer-events: none;
}

.chat-files-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 50vh;
  overflow-x: hidden;
  overflow-y: auto;
}

.chat-file-item {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) 38px;
  gap: 12px;
  align-items: center;
  padding: 10px;
  border: 1px solid var(--light-grey);
  border-radius: 14px;
  background-color: var(--white);
  cursor: move;
}
.chat-file-item.is-dragging {
  opacity: 0.55;
}
.chat-file-item__preview {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 12px;
  background-color: rgba(31, 74, 170, 0.08);
  color: var(--main);
  overflow: hidden;
}
.chat-file-item__preview.is-image {
  background-color: var(--light-grey);
}
.chat-file-item__preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.chat-file-item__preview i {
  font-size: 24px;
}
.chat-file-item__content {
  min-width: 0;
}
.chat-file-item__content b, .chat-file-item__content span {
  display: block;
}
.chat-file-item__content b {
  margin-bottom: 4px;
  font-size: 14px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.chat-file-item__content span {
  color: var(--grey-blue);
  font-size: 12px;
}
.chat-file-item__remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--light-grey);
  border-radius: 10px;
  background-color: var(--white);
  color: var(--grey-blue);
}

.chat-files-errors {
  padding: 10px 12px;
  border-radius: 12px;
  background-color: rgba(220, 53, 69, 0.08);
  color: #dc3545;
  font-size: 13px;
}
.chat-files-errors p {
  margin: 0;
}
.chat-files-errors p + p {
  margin-top: 4px;
}

.chat-files-compose {
  display: grid;
  grid-template-columns: 45px minmax(0, 1fr) 45px;
  gap: 10px;
}
.chat-files-compose input, .chat-files-compose button {
  height: 46px;
  border: 1px solid var(--light-grey);
  border-radius: 12px;
  background-color: var(--white);
}
.chat-files-compose input {
  padding: 0 15px;
}
.chat-files-compose button {
  width: 45px;
  --btn-padding-x: 5px;
  --btn-padding-y: 5px;
}

.modal-chat-files .modal-dialog {
  max-width: 650px;
}

.chat-files-history__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.chat-history-file {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 112px;
  border: 1px solid var(--light-grey);
  border-radius: 14px;
  background-color: var(--white);
  color: inherit;
  overflow: hidden;
  text-decoration: none;
}
.chat-history-file:hover {
  border-color: var(--main);
}
.chat-history-file:hover .chat-history-file__actions {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.chat-history-file.is-deleting {
  opacity: 0.55;
  pointer-events: none;
}
.chat-history-file__preview {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  min-height: 64px;
  background-color: rgba(31, 74, 170, 0.08);
  color: var(--main);
}
.chat-history-file__preview.is-image {
  background-color: var(--light-grey);
}
.chat-history-file__preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.chat-history-file__preview i {
  font-size: 26px;
}
.chat-history-file__actions {
  position: absolute;
  top: auto;
  bottom: 48px;
  left: 50%;
  z-index: 2;
  display: flex;
  gap: 5px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-50%);
  transition: opacity 0.2s ease, visibility 0.2s ease;
}
.chat-history-file__actions .btn {
  box-shadow: 0 6px 16px rgba(33, 42, 54, 0.12);
}
.chat-history-file__remove {
  color: var(--error);
}
.chat-history-file__caption {
  display: block;
  padding: 7px 8px;
  background-color: rgba(255, 255, 255, 0.94);
}
.chat-history-file__caption b, .chat-history-file__caption small {
  display: block;
  min-width: 0;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.chat-history-file__caption b {
  margin-bottom: 2px;
  font-size: 12px;
  line-height: 1.2;
}
.chat-history-file__caption small {
  color: var(--grey-blue);
  font-size: 10px;
  line-height: 1.2;
  text-transform: uppercase;
}

@media (max-width: 575.98px) {
  .chat-files-history__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .chat-history-file__actions {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}
.chat-members-add {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.chat-members-search {
  position: sticky;
  top: 0;
  z-index: 2;
}
.chat-members-search input {
  width: 100%;
}

.chat-members-add__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.chat-member[hidden] {
  display: none;
}
.chat-member.is-added {
  opacity: 0.72;
}
.chat-member [data-chat-member-add] {
  border-color: var(--navy);
}
.chat-member [data-chat-member-add].is-added {
  border-color: var(--green) !important;
  background-color: var(--green) !important;
  color: var(--white) !important;
}
.chat-member [data-chat-member-add] .icon-plus {
  display: flex;
}
.chat-member [data-chat-member-add] .icon-plus::before {
  content: "+";
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Wix Madefor Display";
  font-weight: 100;
  font-size: 32px;
  line-height: 60%;
  vertical-align: middle;
  text-align: center;
}

.chat-members-empty {
  margin: 0;
  padding: 18px;
  border: 1px dashed var(--light-grey);
  border-radius: 14px;
  color: var(--grey-blue);
  text-align: center;
}

.chat-member__self {
  color: var(--grey-blue);
  font-weight: 400;
}

.chat-compose-input {
  position: relative;
  width: 100%;
}
.chat-compose-input input, .chat-compose-input textarea {
  padding-right: 54px !important;
}

.chat-emoji {
  position: absolute;
  top: 4px;
  right: 6px;
  z-index: 2;
  min-width: 36px;
}
.chat-emoji__toggle {
  width: 36px !important;
  height: 36px !important;
  min-width: 36px;
  border: 0 !important;
  background-color: transparent !important;
  color: var(--main);
}
.chat-emoji__toggle::after {
  display: none !important;
  content: none !important;
}
.chat-emoji__toggle:hover, .chat-emoji__toggle:focus-visible, .chat-emoji__toggle.open {
  background-color: var(--light-grey) !important;
}
.chat-emoji__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  line-height: 1;
  white-space: normal !important;
  text-overflow: unset !important;
  overflow: unset !important;
}
.chat-emoji__dropdown {
  width: 320px;
  max-width: calc(100vw - 30px);
  max-height: 320px;
  padding: 10px;
  border: 1px solid var(--light-grey);
  border-radius: 14px;
  background-color: var(--white);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  overflow-x: hidden;
  overflow-y: auto;
}
.chat-emoji__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.chat-emoji__title {
  position: sticky;
  top: -10px;
  z-index: 5;
  margin: 0 -10px 6px;
  padding: 8px 10px 6px;
  background-color: var(--white);
  color: var(--grey-blue);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
}
.chat-emoji__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
}
.chat-emoji__item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background-color: transparent;
  font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.chat-emoji__item:hover, .chat-emoji__item:focus-visible {
  background-color: var(--light-grey);
}

.chat-compose,
.chat-files-compose {
  grid-template-columns: 45px minmax(0, 1fr) 45px;
}

.chat-files-compose .chat-compose-input {
  min-width: 0;
}

.modal-chat-files .chat-emoji__dropdown {
  max-height: 280px;
}

@media (max-width: 575.98px) {
  .chat-emoji__dropdown {
    width: 280px;
    max-height: 280px;
  }
  .chat-emoji__grid {
    grid-template-columns: repeat(5, 1fr);
  }
}
.chat-message-context {
  position: fixed;
  z-index: 1200;
  display: none;
  min-width: 220px;
  padding: 6px;
  border: 1px solid var(--light-grey);
  border-radius: 14px;
  background-color: var(--white);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.14);
}
.chat-message-context.is-visible {
  display: block;
}
.chat-message-context__button {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 42px;
  padding: 8px 12px;
  border: 0;
  border-radius: 10px;
  background-color: transparent;
  color: var(--black);
  font-size: 14px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}
.chat-message-context__button:hover, .chat-message-context__button:focus-visible {
  background-color: var(--light-grey);
  color: var(--main);
  outline: none;
}
.chat-message-context__button:hover > i, .chat-message-context__button:focus-visible > i {
  color: var(--main);
}
.chat-message-context__button i {
  color: var(--main);
  font-size: 16px;
}

.chat-message {
  -webkit-touch-callout: none;
}

.chat-message__sender {
  display: block;
  margin-bottom: 4px;
  color: var(--grey-blue);
  font-size: 12px;
  font-weight: 600;
}

.chat-message__text:not(:first-child) {
  margin-top: 8px;
}

.chat-message__link {
  color: currentColor;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  word-break: break-word;
}
.chat-message__link:hover, .chat-message__link:focus-visible {
  color: var(--main);
  outline: none;
}

.chat-message-files {
  display: block;
  margin-top: 10px;
  margin-bottom: 10px;
}
.chat-message-files:first-child {
  margin-top: 0;
}

.chat-message-files__images {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
}
.chat-message-files__images--single {
  grid-template-columns: minmax(0, 1fr);
}
.chat-message-files__images--single .chat-message-file--image {
  max-width: 300px;
  max-height: 300px;
  min-height: 220px;
}

.chat-message-files__documents {
  display: grid;
  gap: 8px;
  margin-top: 8px;
}
.chat-message-files__documents:first-child {
  margin-top: 0;
}

.chat-message-file {
  position: relative;
  min-width: 0;
}

.chat-message-file--image {
  display: block;
  overflow: hidden;
  max-width: 300px;
  max-height: 300px;
  min-height: 140px;
  border-radius: 12px;
  background-color: var(--light-grey);
}
.chat-message-file--image .chat-message-file__preview {
  display: block;
  width: 100%;
  height: 100%;
  color: inherit;
  text-decoration: none;
}
.chat-message-file--image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 140px;
  object-fit: cover;
}
.chat-message-file--image .chat-message-file__download {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 2;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.16);
}
.chat-message-file--image .chat-message-file__caption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  display: grid;
  gap: 1px;
  padding: 18px 10px 8px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.62));
  color: var(--white);
  pointer-events: none;
}
.chat-message-file--image .chat-message-file__caption b,
.chat-message-file--image .chat-message-file__caption small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.chat-message-file--image .chat-message-file__caption b {
  font-size: 12px;
  font-weight: 600;
}
.chat-message-file--image .chat-message-file__caption small {
  opacity: 0.82;
  font-size: 10px;
}

.chat-message-file--document {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) 28px;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border: 1px solid rgba(114, 132, 148, 0.2);
  border-radius: 12px;
  background-color: rgba(255, 255, 255, 0.72);
  color: inherit;
  text-decoration: none;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}
.chat-message-file--document:hover {
  border-color: rgba(31, 74, 170, 0.35);
  background-color: var(--white);
}
.chat-message-file--document .chat-message-file__icon,
.chat-message-file--document .chat-message-file__action {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background-color: var(--light-grey);
  color: var(--blue);
  font-size: 18px;
}
.chat-message-file--document .chat-message-file__action {
  width: 28px;
  height: 28px;
  background-color: transparent;
  color: var(--grey-blue);
  font-size: 15px;
}
.chat-message-file--document .chat-message-file__content {
  display: grid;
  min-width: 0;
  gap: 2px;
}
.chat-message-file--document b,
.chat-message-file--document small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.chat-message-file--document b {
  color: var(--dark);
  font-size: 13px;
  font-weight: 600;
}
.chat-message-file--document small {
  color: var(--grey-blue);
  font-size: 11px;
}

.chat-message.outgoing .chat-message-file--document {
  background-color: rgba(255, 255, 255, 0.82);
}

@media (max-width: 575.98px) {
  .chat-message-files {
    width: 100%;
  }
  .chat-message-files__images--single .chat-message-file--image {
    min-height: 180px;
  }
  .chat-message-file--image {
    min-height: 120px;
  }
  .chat-message-file--image img {
    min-height: 120px;
  }
}
.lk-profile__panel {
  margin-bottom: 24px;
  overflow: hidden;
  border: 1px solid var(--light-grey, #e7e8ea);
  border-radius: 12px;
  background: var(--white, #fff);
}
.lk-profile__body {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 32px;
  padding: 20px 25px 25px;
}
@media (max-width: 719.98px) {
  .lk-profile__body {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 18px 15px;
  }
}
.lk-profile__avatar {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.lk-profile__avatar img, .lk-profile__avatar > span {
  display: grid;
  width: 120px;
  height: 120px;
  place-items: center;
  border-radius: 50%;
  background: var(--light-grey, #e7e8ea);
  color: var(--main, #1f3154);
  font-size: 42px;
  font-weight: 600;
  object-fit: cover;
}
.lk-profile__avatar input[type=file] {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}
.lk-profile__avatar small {
  color: var(--grey-blue, #6d778a);
  font-size: 12px;
}
.lk-profile__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.lk-profile__field small {
  color: var(--grey-blue, #6d778a);
  font-size: 12px;
}
.lk-profile__field > span {
  font-size: 14px;
  font-weight: 500;
}
.lk-profile__field input {
  width: 100%;
  min-height: 46px;
  padding: 10px 14px;
  border: 1px solid var(--light-grey, #dfe2e7);
  border-radius: 8px;
  background: #fff;
}
.lk-profile__field input[readonly] {
  color: var(--grey-blue, #6d778a);
  background: var(--light-grey, #f4f5f6);
}
.lk-profile__field-error {
  color: var(--error, #c53333);
  font-size: 13px;
}
.lk-profile__fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 20px;
}
@media (max-width: 719.98px) {
  .lk-profile__fields {
    grid-template-columns: 1fr;
  }
}
.lk-profile__password-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 20px;
  padding: 20px 25px 25px;
}
@media (max-width: 719.98px) {
  .lk-profile__password-fields {
    grid-template-columns: 1fr;
    padding-inline: 15px;
  }
}
.lk-profile__actions {
  padding: 0 25px 25px;
}
@media (max-width: 719.98px) {
  .lk-profile__actions {
    padding-inline: 15px;
  }
}
.lk-profile__notice {
  margin-bottom: 16px;
  padding: 12px 15px;
  border-radius: 8px;
}
.lk-profile__notice--success {
  background: #e7f7ed;
  color: #18733b;
}
.lk-profile__notice--error {
  background: #fdeaea;
  color: var(--error, #c53333);
}

.account-user-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}
.account-user-panel-header > a:not(.btn) {
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}
@media (max-width: 575.98px) {
  .account-user-panel-header {
    align-items: flex-start;
    padding: 15px;
  }
  .account-user-panel-header .btn {
    width: 42px;
    min-width: 42px;
    padding-inline: 0;
  }
  .account-user-panel-header .btn span {
    display: none;
  }
}
.account-user-filters {
  display: grid;
  grid-template-columns: minmax(220px, 1.8fr) minmax(170px, 0.8fr) minmax(170px, 0.8fr) auto;
  gap: 10px;
  padding: 10px 15px;
}
@media (max-width: 1199.98px) {
  .account-user-filters {
    grid-template-columns: minmax(220px, 1fr) repeat(2, minmax(160px, 0.7fr)) auto;
  }
}
@media (max-width: 719.98px) {
  .account-user-filters {
    grid-template-columns: 1fr 1fr auto auto;
  }
  .account-user-filters .account-user-search {
    grid-column: 1/-1;
  }
}
@media (max-width: 575.98px) {
  .account-user-filters {
    grid-template-columns: 1fr;
    padding: 5px 15px 15px;
  }
}
.account-user-filters.is-moderator {
  grid-template-columns: minmax(220px, 1fr) minmax(170px, 0.8fr) minmax(170px, 0.8fr) auto auto;
}
@media (max-width: 1199.98px) {
  .account-user-filters.is-moderator {
    grid-template-columns: minmax(160px, 1fr) minmax(120px, 0.8fr) minmax(120px, 0.8fr) minmax(120px, 0.8fr) auto;
  }
}
@media (max-width: 999.98px) {
  .account-user-filters.is-moderator {
    grid-template-columns: minmax(160px, 1fr) minmax(120px, 0.8fr) minmax(120px, 0.8fr) minmax(120px, 0.8fr) auto;
  }
}
@media (max-width: 719.98px) {
  .account-user-filters.is-moderator {
    grid-template-columns: 1fr auto auto auto;
  }
}
@media (max-width: 575.98px) {
  .account-user-filters.is-moderator {
    grid-template-columns: 1fr 1fr;
  }
}
.account-user-search, .account-user-date {
  position: relative;
}
.account-user-search > i, .account-user-date > i {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 14px;
  color: var(--grey-blue);
  transform: translateY(-50%);
  pointer-events: none;
}
.account-user-search input, .account-user-date input {
  padding-left: 42px;
}
.account-user-date input {
  display: flex;
  max-width: 100%;
  height: 100%;
  max-height: 35px;
  padding-right: var(--input-padding-x) !important;
}
.account-user-object-grid {
  padding: 0 25px 25px;
}
@media (max-width: 575.98px) {
  .account-user-object-grid {
    padding: 0 15px 15px;
  }
}
.account-user-widgets {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.9fr) minmax(0, 1.15fr);
  gap: 20px;
}
@media (max-width: 1399.98px) {
  .account-user-widgets {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .account-user-widgets .account-user-messages {
    grid-column: 1/-1;
  }
}
@media (max-width: 719.98px) {
  .account-user-widgets {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .account-user-widgets .account-user-messages {
    grid-column: auto;
  }
}
.account-user-widgets > .account-panel {
  min-height: 100%;
}

.account-selection-list,
.account-message-list {
  display: flex;
  flex-direction: column;
  padding: 0 20px 20px;
}

.account-selection-card {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 15px;
  padding: 10px 0;
  border-top: 1px solid var(--light-grey);
  color: var(--black);
  text-decoration: none !important;
}
.account-selection-card:first-child {
  border-top: 0;
}
.account-selection-card__image {
  position: relative;
  height: 80px;
  overflow: hidden;
  border-radius: 10px;
  background: var(--light-grey);
}
.account-selection-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.account-selection-card__image > span {
  position: absolute;
  left: 5px;
  bottom: 5px;
  align-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: 20px;
  background-color: var(--black-80);
  color: var(--white);
  font-size: 12px;
}
.account-selection-card__content {
  display: flex;
  flex-direction: row;
  align-items: start;
  gap: 5px 10px;
  flex-wrap: wrap;
}
.account-selection-card__content strong {
  min-width: 0;
  flex-basis: 50%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.account-selection-card__content span {
  flex-basis: 40%;
  margin-left: auto;
  text-align: right;
}
.account-selection-card__content .btn, .account-selection-card__content button {
  width: fit-content;
}

.account-agent-card {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 20px;
  padding: 10px 20px 20px;
}
.account-agent-card__person {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 15px;
  align-items: center;
}
.account-agent-card__person .user-avatar {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--light-grey);
}
.account-agent-card__person .user-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.account-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 260px;
  padding: 35px 20px;
  text-align: center;
}
.account-empty > i {
  font-size: 38px;
  color: var(--grey-blue);
}
.account-empty h3 {
  margin: 4px 0 0;
}
.account-empty p {
  max-width: 430px;
  color: var(--grey-blue);
}
.account-empty--compact {
  flex: 1;
  min-height: 220px;
}

@supports (-moz-appearance: none) {
  .account-agent-table-wrap {
    scrollbar-color: var(--navy) var(--light-grey);
    scrollbar-width: thin;
  }
}
.account-agent-table-wrap::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
.account-agent-table-wrap::-webkit-scrollbar-track {
  background: var(--light-grey);
  border-radius: 8px;
}
.account-agent-table-wrap::-webkit-scrollbar-thumb {
  background: var(--navy);
  border-radius: 8px;
}
.account-agent-table-wrap {
  padding: 0 20px 20px;
  overflow-x: auto;
}
.account-agent-table {
  width: 100%;
  min-width: 900px;
  border-collapse: collapse;
}
.account-agent-table.is-moderator {
  min-width: 1100px;
  table-layout: fixed;
}
.account-agent-table.is-moderator th:nth-child(1), .account-agent-table.is-moderator td:nth-child(1) {
  width: 27%;
}
.account-agent-table.is-moderator th:nth-child(2), .account-agent-table.is-moderator td:nth-child(2) {
  width: 10%;
}
.account-agent-table.is-moderator th:nth-child(3), .account-agent-table.is-moderator td:nth-child(3) {
  width: 14%;
}
.account-agent-table.is-moderator th:nth-child(4), .account-agent-table.is-moderator td:nth-child(4) {
  width: 10%;
}
.account-agent-table.is-moderator th:nth-child(5), .account-agent-table.is-moderator td:nth-child(5) {
  width: 15%;
}
.account-agent-table.is-moderator th:nth-child(6), .account-agent-table.is-moderator td:nth-child(6) {
  width: 12%;
}
.account-agent-table.is-moderator th:nth-child(7), .account-agent-table.is-moderator td:nth-child(7) {
  width: 64px;
  padding-inline: 5px;
  text-align: center;
}
.account-agent-table th {
  padding: 10px;
  color: var(--grey-blue);
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 135%;
}
@media (max-width: 999.98px) {
  .account-agent-table th {
    font-size: 12px;
  }
}
.account-agent-table th {
  text-align: left;
  border-bottom: 1px solid var(--light-grey);
}
.account-agent-table td {
  padding: 10px;
  vertical-align: middle;
  border-bottom: 1px solid var(--light-grey);
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 135%;
}
@media (max-width: 999.98px) {
  .account-agent-table td {
    font-size: 12px;
  }
}
.account-agent-table tbody tr:last-child td {
  border-bottom: 0;
}
.account-agent-table td > small {
  display: block;
  margin-top: 3px;
  color: var(--grey-blue);
}
.account-agent-object {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  color: var(--black);
  text-decoration: none !important;
}
.account-agent-object img {
  width: 48px;
  height: 42px;
  border-radius: 8px;
  object-fit: cover;
}
.account-agent-object strong,
.account-agent-object small {
  display: block;
}
.account-agent-object small {
  margin-top: 3px;
  color: var(--grey-blue);
}
.account-agent-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 20px;
}
@media (max-width: 1199.98px) {
  .account-agent-grid {
    grid-template-columns: 1fr;
  }
}
.account-agent-plan__list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 14px 25px 25px;
}
.account-agent-referral__form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 12px;
  padding: 8px 25px 12px;
}
.account-agent-referral__form .form-field {
  position: relative;
}
.account-agent-referral__form .form-field i {
  position: absolute;
  top: 50%;
  right: 14px;
  color: var(--main);
  transform: translateY(-50%);
}
.account-agent-referral__form input {
  padding-left: var(--input-padding-x) !important;
}
@media (max-width: 719.98px) {
  .account-agent-referral__form {
    grid-template-columns: 1fr 1fr;
  }
  .account-agent-referral__form .form-field {
    grid-column: 1/-1;
  }
}
@media (max-width: 575.98px) {
  .account-agent-referral__form {
    grid-template-columns: 1fr;
    padding-inline: 15px;
  }
  .account-agent-referral__form .form-field {
    grid-column: auto;
  }
}
.account-agent-referral__note {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 25px 20px;
}
@media (max-width: 575.98px) {
  .account-agent-referral__note {
    padding-inline: 15px;
  }
}

.adding-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 20px;
  align-items: start;
}
.adding-form__main, .adding-form__side {
  min-width: 0;
}
.adding-form__main, .adding-form__side {
  display: grid;
  gap: 15px;
}

.adding-section {
  min-width: 0;
  overflow: visible;
}
.adding-section > .account-panel__inside {
  padding-top: 10px;
}

.adding-control {
  width: 100%;
  min-width: 0;
  height: fit-content;
}
.adding-control > p {
  margin: 0 0 7px;
}
.adding-control .form-field > input {
  width: 100%;
}
.adding-control .dropdown-wrapper, .adding-control .dropdown-trigger {
  width: 100%;
}

.adding-address-field {
  align-content: start;
}

.adding-map {
  min-height: 230px;
  overflow: hidden;
  border-radius: 10px;
  background: var(--light);
}

.adding-photo-row {
  display: flex;
  gap: 12px;
  width: 100%;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x proximity;
}

.adding-photo-upload,
.adding-photo-card {
  position: relative;
  flex: 0 0 150px;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 10px;
  scroll-snap-align: start;
}

.adding-photo-upload {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 10px;
  background-color: var(--white);
  border: 1px dashed var(--main);
  border-radius: 10px;
  color: var(--main);
  text-align: center;
  cursor: pointer;
}

.adding-photo-upload input,
.adding-house-upload input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.adding-photo-upload i {
  font-size: 24px;
}

.adding-photo-upload strong {
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 135%;
}
@media (max-width: 999.98px) {
  .adding-photo-upload strong {
    font-size: 14px;
  }
}
.adding-photo-upload strong {
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 135%;
}
@media (max-width: 999.98px) {
  .adding-photo-upload strong {
    font-size: 14px;
  }
}
.adding-photo-upload strong {
  font-weight: 700;
}

.adding-photo-upload span,
.adding-photo-upload small {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 135%;
}
@media (max-width: 999.98px) {
  .adding-photo-upload span,
  .adding-photo-upload small {
    font-size: 12px;
  }
}
.adding-photo-upload span,
.adding-photo-upload small {
  color: var(--grey-blue);
}

.adding-photo-upload.is-dragover {
  background: var(--main-10);
}

.adding-photo-card {
  background: var(--light);
}

.adding-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.adding-photo-card button {
  position: absolute;
  top: 5px;
  right: 5px;
}

.adding-building-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.adding-house-upload {
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 10px;
  background-color: var(--white);
  border: 1px dashed var(--main);
  border-radius: 10px;
  color: var(--main);
  text-align: center;
  cursor: pointer;
}

.adding-house-preview {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  aspect-ratio: 16/9;
  background-color: var(--light-grey);
  overflow: hidden;
}
.adding-house-preview img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.adding-house-preview button {
  position: absolute;
  top: 5px;
  right: 5px;
}

.adding-status-card {
  position: sticky;
  top: 20px;
  height: fit-content;
}

.adding-progress-list {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  list-style: none;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 135%;
}
@media (max-width: 999.98px) {
  .adding-progress-list {
    font-size: 12px;
  }
}
.adding-progress-list {
  color: var(--grey-blue);
}

.adding-progress-list li::before {
  content: "○";
  margin-right: 6px;
}

.adding-progress-list li.is-complete {
  color: var(--green);
}

.adding-progress-list li.is-complete::before {
  content: "✓";
}

@media (max-width: 1199.98px) {
  .adding-form {
    grid-template-columns: 1fr;
  }
  .adding-form__side {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .adding-status-card {
    position: static;
  }
}
@media (max-width: 719.98px) {
  .adding-form__side {
    grid-template-columns: 1fr;
  }
  .adding-map {
    min-height: 260px;
  }
  .adding-section > .account-panel__header,
  .adding-section > .account-panel__inside {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (max-width: 575.98px) {
  .adding-building-grid {
    grid-template-columns: 1fr;
  }
  .adding-photo-upload,
  .adding-photo-card {
    flex-basis: 132px;
  }
  .adding-house-upload {
    grid-row: auto;
  }
}
.adding-radio-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.adding-bottom-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
}
.adding-bottom-grid .adding-bottom-wide {
  grid-column: 1/-1;
}

@media (max-width: 900px) {
  .adding-bottom-grid {
    grid-template-columns: 1fr;
  }
}
.adding-changed {
  padding: 10px;
  border: 1px solid var(--yellow);
  border-radius: 8px;
  background: rgba(255, 232, 112, 0.16);
}

.adding-changed__note {
  color: var(--grey-blue);
}

.adding-object-meta {
  display: grid;
  gap: 10px;
  margin: 0;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 135%;
}
@media (max-width: 999.98px) {
  .adding-object-meta {
    font-size: 12px;
  }
}
.adding-object-meta > div {
  display: flex;
  justify-content: space-between;
  gap: 15px;
}
.adding-object-meta dt {
  color: var(--grey-blue);
}
.adding-object-meta dd {
  margin: 0;
  text-align: right;
  color: var(--navy);
}

.adding-moderator-side textarea {
  resize: vertical;
  min-height: 130px;
}

.filters {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 17;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 640px;
  width: 100%;
  height: 100%;
  border-radius: 0 15px 15px 0;
  background-color: var(--light-grey);
  box-shadow: 0 -8px 20px 0 rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  overflow-x: hidden;
  overflow-y: auto;
  transform: translate3d(-100%, 0, 1px);
  transition: 0.4s ease;
  will-change: transform;
}
@supports (-moz-appearance: none) {
  .filters {
    scrollbar-color: var(--navy) var(--light-grey);
    scrollbar-width: thin;
  }
}
.filters::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
.filters::-webkit-scrollbar-track {
  background: var(--light-grey);
  border-radius: 8px;
}
.filters::-webkit-scrollbar-thumb {
  background: var(--navy);
  border-radius: 8px;
}
@media (max-width: 999.98px) {
  .filters {
    max-width: 520px;
  }
}
@media (max-width: 575.98px) {
  .filters {
    max-width: 100%;
    height: calc(100% - 95px);
    margin-top: 95px;
    border-radius: 15px 15px 0 0;
    transform: translate3d(0, 100%, 1px);
  }
}
.filters.open {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 1px);
}
.filters-is-open {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}
.filters-is-open::before {
  z-index: 16;
  opacity: 1;
  visibility: visible;
}
@media (max-width: 575.98px) {
  .filters-is-open::before {
    z-index: 5;
  }
}
.filters-header {
  position: sticky;
  top: 0;
  z-index: 1100;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 10px;
  width: 100%;
  padding: 15px;
  margin-bottom: 12px;
  background-color: var(--light-grey);
}
@media (max-width: 575.98px) {
  .filters-header {
    margin-bottom: 16px;
  }
}
.filters-header > button[type=reset] {
  flex: 0 0 var(--btn-size);
}
@media (min-width: 576px) {
  .filters-header > button[type=reset] {
    display: none;
  }
}
@media (max-width: 575.98px) {
  .filters-header > button[type=reset] {
    --btn-padding-x: 4px;
    --btn-padding-y: 4px;
    --btn-padding-x: var(--btn-padding-y);
    width: var(--btn-size);
    height: var(--btn-size);
  }
}
.filters-body {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 20px;
  flex: 1;
  width: 100%;
  padding: 0 15px;
}
@media (max-width: 575.98px) {
  .filters-body {
    gap: 15px;
  }
}
@media (min-width: 576px) {
  .filters-body [data-dropdown-toggle=apartment-select] {
    width: 180px !important;
  }
}
.filters-body [id*=city-select] .dropdown-trigger, .filters-body [id*=city-district] .dropdown-trigger, .filters-body [id*=filters-experience] .dropdown-trigger, .filters-body [id*=filters-] .dropdown-trigger {
  width: 100%;
  max-width: 100%;
}
.filters-body #filters-building-select {
  width: 100%;
}
.filters-body #filters-building-select .dropdown-trigger {
  width: 100%;
  max-width: 100%;
}
@media (max-width: 575.98px) {
  .filters-body #filters-building-select {
    min-width: 50%;
    flex: 1 1 0%;
    max-width: 458px;
  }
}
@media (min-width: 576px) {
  .filters-col {
    flex: auto;
    max-width: calc(50% - 10px);
    width: 100%;
  }
}
@media (max-width: 575.98px) {
  .filters-col {
    max-width: 100%;
    width: 100%;
  }
}
.filters-col--2x {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 10px;
}
.filters-col--2x > * {
  flex: 1 0 calc(50% - 5px);
  max-width: calc(50% - 5px);
  width: 100%;
}
.filters-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px;
  scroll-margin-block-start: 80px;
}
@media (max-width: 575.98px) {
  .filters-row {
    flex-direction: column;
    gap: 10px;
  }
}
.filters-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px 20px;
}
.filters-actions {
  position: sticky;
  bottom: 0;
  z-index: 1100;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 10px;
  width: 100%;
  padding: 15px;
  background-color: var(--light-grey);
}
@media (max-width: 575.98px) {
  .filters-actions {
    gap: 5px;
  }
}
.filters-actions > * {
  --btn-padding-y: 4px;
  height: var(--btn-size);
  flex: 1;
}
@media (max-width: 575.98px) {
  .filters-actions > *[type=submit] {
    width: 100%;
  }
}
.filters-actions > .btn-map {
  flex: 0 0 var(--btn-size);
}
@media (max-width: 575.98px) {
  .filters-actions > .btn-map {
    --btn-padding-x: 4px;
    --btn-padding-y: 4px;
    --btn-padding-x: var(--btn-padding-y);
    width: var(--btn-size);
    height: var(--btn-size);
  }
}
.filters-actions > button[type=reset] {
  flex: 0 0 var(--btn-size);
}
@media (max-width: 999.98px) {
  .filters-actions > button[type=reset] {
    --btn-padding-x: 4px;
    --btn-padding-y: 4px;
    --btn-padding-x: var(--btn-padding-y);
    width: var(--btn-size);
    height: var(--btn-size);
  }
}
@media (max-width: 575.98px) {
  .filters-actions > button[type=reset] {
    display: none;
  }
}
@media (max-width: 575.98px) {
  .filters#mortgage-calculator .filters-actions > button[type=reset] {
    display: flex;
  }
}

.footer {
  position: relative;
  z-index: 0;
  display: block;
  flex: 0;
  width: 100%;
  height: 100%;
  padding: 80px 0;
  background-color: var(--black);
  color: var(--white);
}
@media (max-width: 575.98px) {
  .footer {
    padding: 40px 0;
  }
}
.footer-main {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}
@media (min-width: 1000px) {
  .footer-main {
    padding-bottom: 50px;
  }
}
@media (max-width: 999.98px) {
  .footer-main {
    flex-wrap: wrap;
  }
}
.footer-main > *.logo {
  order: 0;
}
.footer-main > *.footer-col.first {
  order: 1;
}
@media (max-width: 999.98px) {
  .footer-main > *.footer-col.first {
    order: 4;
    max-width: 100%;
    width: 100%;
    flex: 1 0 auto;
  }
}
@media (max-width: 575.98px) {
  .footer-main > *.footer-col.first {
    max-width: 100%;
    width: 100%;
    flex: 1 0 auto;
  }
}
.footer-main > *.footer-nav.second {
  order: 2;
}
@media (max-width: 999.98px) {
  .footer-main > *.footer-nav.second {
    max-width: 50%;
    flex: 1 1 0%;
  }
}
@media (max-width: 575.98px) {
  .footer-main > *.footer-nav.second {
    max-width: 65%;
  }
}
.footer-main > *.footer-nav.third {
  order: 3;
}
@media (max-width: 999.98px) {
  .footer-main > *.footer-nav.third {
    max-width: 50%;
    flex: 1 1 0%;
  }
}
@media (max-width: 575.98px) {
  .footer-main > *.footer-nav.third {
    max-width: 35%;
  }
}
.footer-main > *.footer-actions {
  order: 4;
}
@media (max-width: 999.98px) {
  .footer-main > *.footer-actions {
    order: 1;
  }
}
.footer .logo {
  width: 168px;
  height: 100px;
}
@media (max-width: 1199.98px) {
  .footer .logo {
    width: 132px;
    height: 80px;
  }
}
@media (max-width: 575.98px) {
  .footer .logo {
    width: 118px;
    height: 70px;
  }
}
.footer .logo > * {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top left;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
@media (max-width: 575.98px) {
  .footer-nav {
    gap: 15px;
  }
}
@media (max-width: 719.98px) {
  .footer-nav:is(.first) {
    gap: 10px;
  }
}
@media (max-width: 575.98px) {
  .footer-nav:is(.first) {
    gap: 5px;
  }
}
.footer-nav:is(.first) > a, .footer-nav:is(.third) > a {
  text-decoration: none !important;
}
.footer-nav:is(.first) > a:hover, .footer-nav:is(.third) > a:hover {
  text-decoration: underline !important;
}
.footer-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 36px;
}
.footer-actions > .footer-social {
  align-self: flex-end;
}
@media (max-width: 999.98px) {
  .footer-actions {
    width: 100%;
  }
  .footer-actions > .footer-contacts {
    position: absolute;
    top: -20px;
    bottom: auto;
    right: 0;
    margin-bottom: 20px;
    transform: translate(0, -100%);
  }
  .footer-actions > .footer-social {
    display: none;
  }
}
.footer-col {
  display: flex;
}
@media (max-width: 999.98px) {
  .footer-col {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    width: 100%;
  }
}
@media (max-width: 999.98px) {
  .footer-col:is(.first) {
    padding: 20px 0;
    border-top: 1px solid;
    border-bottom: 1px solid;
    border-color: var(--grey-blue);
  }
}
@media (min-width: 1000px) {
  .footer-col:is(.first) .footer-social {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 1;
  }
}
@media (max-width: 999.98px) {
  .footer-col:is(.first) .footer-social {
    display: flex;
    max-width: 50%;
    flex: 1 1 0%;
  }
}
@media (max-width: 575.98px) {
  .footer-col:is(.first) .footer-social {
    max-width: unset;
    flex: unset;
  }
}
.footer-buttons {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
}
@media (max-width: 999.98px) {
  .footer-buttons {
    flex-direction: row;
    justify-content: center;
  }
}
@media (max-width: 575.98px) {
  .footer-buttons {
    flex-direction: column;
  }
}
.footer-buttons > * {
  --btn-padding-y: 2px;
  height: 35px;
}
@media (max-width: 575.98px) {
  .footer-buttons > * {
    height: 45px;
  }
}
.footer-contacts {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  text-align: end;
}
.footer-contacts > * {
  text-decoration: none !important;
}
.footer-contacts > *:hover {
  text-decoration: underline !important;
}
.footer-social {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}
.footer-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding-top: 20px;
}
@media (min-width: 1000px) {
  .footer-bottom {
    margin-top: 35px;
    padding-top: 30px;
    border-top: 1px solid;
    border-color: var(--white);
  }
}
@media (max-width: 999.98px) {
  .footer-bottom {
    gap: 10px;
  }
}
@media (min-width: 1000px) {
  .footer-bottom .copyright {
    position: absolute;
    top: -35px;
    left: 0;
    bottom: auto;
    transform: translate(0, -100%);
  }
}
.footer-bottom .footer-nav {
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
}
.footer-bottom .footer-nav > * {
  text-align: center;
}
.footer-bottom .intrid {
  user-select: none;
}
@media (min-width: 1200px) {
  .footer-bottom .intrid {
    position: absolute;
    bottom: 0;
    left: 0;
  }
}
@media (max-width: 1199.98px) {
  .footer-bottom .intrid {
    order: 5;
  }
}
.footer-company-details {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 135%;
}
@media (max-width: 999.98px) {
  .footer-company-details {
    font-size: 12px;
  }
}
.footer-company-details > span {
  display: block;
}

.header {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  color: var(--navy);
  background-color: var(--white);
  margin-bottom: 10px;
}
@media (max-width: 999.98px) {
  .header {
    position: sticky;
    top: 0;
    left: 0;
    margin-bottom: 0;
  }
}
@media (min-width: 1000px) {
  .header.isMain .header-top .menu .header-nav {
    display: none;
  }
}
@media (min-width: 1000px) and (max-width: 999.98px) {
  .header.isMain .header-top .menu .header-location {
    display: none;
  }
}
@media (max-width: 999.98px) {
  .header.scrolled {
    position: sticky;
    top: 0;
    left: 0;
    z-index: 5;
  }
}
.header-top {
  display: flex;
  flex-direction: column;
  width: 100%;
  background-color: rgb(226.9318181818, 229.0909090909, 235.5681818182);
  margin-top: 20px;
  padding: 15px 0;
  z-index: 5;
}
@media (max-width: 575.98px) {
  .header-top {
    margin-top: 15px;
    padding: 10px 0;
  }
}
.header-top .container {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
  height: 40px;
}
@media (max-width: 575.98px) {
  .header-top .container {
    gap: 0;
  }
}
.header-top .container .header-nav {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 15px;
}
@media (min-width: 1000px) {
  .header-top .container .header-nav {
    margin: 0 auto;
  }
}
@media (max-width: 999.98px) {
  .header-top .container .header-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%;
  }
}
@media (max-width: 999.98px) {
  .header-top .container .header-nav > * {
    width: 100%;
    padding: 10px;
    border-top: 1px solid;
    border-color: var(--light-grey);
    text-decoration: none;
  }
  .header-top .container .header-nav > *:last-of-type {
    border-bottom: 1px solid;
    border-color: var(--light-grey);
  }
}
.header-top .container .header-nav > * span:first-of-type {
  display: inline;
}
@media (max-width: 1399.98px) {
  .header-top .container .header-nav > * span:first-of-type {
    display: none;
  }
}
@media (max-width: 999.98px) {
  .header-top .container .header-nav > * span:first-of-type {
    display: inline;
  }
}
.header-top .container .header-nav > * span:last-of-type {
  display: none;
}
@media (max-width: 1399.98px) {
  .header-top .container .header-nav > * span:last-of-type {
    display: inline;
  }
}
@media (max-width: 999.98px) {
  .header-top .container .header-nav > * span:last-of-type {
    display: none;
  }
}
.header-actions {
  position: relative;
  z-index: 11;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}
@media (max-width: 999.98px) {
  .header-actions {
    gap: 5px;
  }
}
@media (max-width: 999.98px) {
  .header-actions > #compare_header, .header-actions > #favorite_header {
    color: #ffffff;
    border-color: rgba(31, 74, 170, 0.8);
    background-color: rgba(31, 74, 170, 0.8);
  }
  .header-actions > #compare_header.hover, .header-actions > #compare_header:hover, .header-actions > #favorite_header.hover, .header-actions > #favorite_header:hover {
    color: #ffffff;
    border-color: rgba(38.8656716418, 92.776119403, 213.1343283582, 0.8);
    background-color: rgba(38.8656716418, 92.776119403, 213.1343283582, 0.8);
  }
  .header-actions > #compare_header:focus:active, .header-actions > #compare_header.focus, .header-actions > #compare_header.active, .header-actions > #compare_header.open, .header-actions > #favorite_header:focus:active, .header-actions > #favorite_header.focus, .header-actions > #favorite_header.active, .header-actions > #favorite_header.open {
    background-color: rgba(23.1343283582, 55.223880597, 126.8656716418, 0.8);
    border-color: rgba(23.1343283582, 55.223880597, 126.8656716418, 0.8);
    color: #ffffff;
  }
  .header-actions > #compare_header.glass, .header-actions > #favorite_header.glass {
    background-color: rgba(31, 74, 170, 0.3);
  }
  .header-actions > #compare_header.dimmed, .header-actions > #favorite_header.dimmed {
    background-color: rgba(31, 74, 170, 0);
    color: rgba(31, 74, 170, 0.8);
    border-color: rgba(31, 74, 170, 0.65);
  }
  .header-actions > #compare_header.dimmed.hover, .header-actions > #compare_header.dimmed:hover, .header-actions > #favorite_header.dimmed.hover, .header-actions > #favorite_header.dimmed:hover {
    color: #ffffff;
    border-color: rgba(38.8656716418, 92.776119403, 213.1343283582, 0.8);
    background-color: rgba(38.8656716418, 92.776119403, 213.1343283582, 0.8);
  }
}
.header .logo {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 169px;
  height: 40px;
}
@media (max-width: 999.98px) {
  .header .logo {
    width: 145px;
    height: 24px;
  }
}
@media (max-width: 575.98px) {
  .header .logo {
    width: 110px;
  }
}
.header .logo > * {
  width: 169px;
  height: 100px;
  object-fit: contain;
  object-position: left center;
}
@media (max-width: 999.98px) {
  .header .logo > * {
    width: 145px;
    height: 100px;
  }
}
@media (max-width: 575.98px) {
  .header .logo > * {
    width: 110px;
    height: 70px;
  }
}
.header-location {
  width: 260px;
  flex: 0 0 260px;
}
@media (max-width: 1399.98px) {
  .header-location {
    width: 220px;
    flex: 0 0 220px;
  }
}
@media (max-width: 1199.98px) {
  .header-location {
    width: 180px;
    flex: 0 0 180px;
  }
}
@media (max-width: 999.98px) {
  .header-location {
    width: 100%;
    flex: unset;
  }
}
.header-location .dropdown-trigger {
  width: 100%;
}

.menu {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
  width: 100%;
}
@media (max-width: 999.98px) {
  .menu {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    max-width: 460px;
    width: 100%;
    height: 100%;
    padding: 128px 10px 32px;
    border-radius: 16px 0 0 16px;
    background-color: var(--white);
    box-shadow: 0 -8px 20px 0 rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    overflow-x: hidden;
    overflow-y: auto;
    transform: translate3d(100%, 0, 1px);
    transition: 0.4s ease;
    will-change: transform;
  }
}
@media (max-width: 719.98px) {
  .menu {
    padding: 95px 10px 35px;
  }
}
@media (max-width: 575.98px) {
  .menu {
    max-width: 100%;
    border-radius: 0;
  }
}
.menu-actions {
  display: none;
}
@media (max-width: 999.98px) {
  .menu-actions {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
  }
}
.menu-bottom {
  display: flex;
  gap: 15px;
  transition: 0.25s ease-in-out;
}
@media (min-width: 1000px) {
  .menu-bottom {
    position: absolute;
    top: 0;
    right: 0;
    flex-direction: column;
    margin-top: 0;
    padding: 16px;
    background-color: var(--white);
    box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    visibility: hidden;
    opacity: 0;
  }
}
@media (max-width: 999.98px) {
  .menu-bottom {
    display: flex;
    align-items: flex-end;
    flex-wrap: wrap;
  }
}
.menu-nav {
  margin: 0;
  padding: 0;
  list-style: none;
}
.menu-nav a:not([class]) {
  text-decoration: none;
}
.menu-nav li {
  width: 100%;
}
.menu-nav li a {
  display: block;
  width: 100%;
  text-decoration: none !important;
}
.menu-nav li a:hover {
  text-decoration: underline !important;
}
.menu-nav > li {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 8px 0;
}
.menu-nav > li:first-child {
  padding-top: 0;
}
.menu-nav > li:last-child {
  padding-bottom: 0;
}
.menu-nav > li.drop-list {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  flex-wrap: wrap;
}
.menu-nav > li.drop-list > a {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex: 1;
}
.menu-nav > li.drop-list ul {
  width: 100%;
  max-height: 0;
  padding-top: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-20px);
  transition: 0.4s ease;
}
.menu-nav > li.drop-list input[type=checkbox] + label {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -2px;
  padding: 5px;
}
.menu-nav > li.drop-list input[type=checkbox] + label i {
  display: flex;
  transform-origin: center;
  transform: rotate(0deg);
  transition: 0.4s ease;
}
.menu-nav > li.drop-list input[type=checkbox] + label::before, .menu-nav > li.drop-list input[type=checkbox] + label::after {
  display: none;
}
.menu-nav > li.drop-list input[type=checkbox]:checked + label i {
  transform: rotate(180deg);
}
.menu-nav > li.drop-list input[type=checkbox]:checked ~ ul {
  max-height: 1000px;
  padding-top: 8px;
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.menu-nav > li ul {
  margin: 0;
  list-style: none;
  padding-left: 16px;
}
.menu-nav > li ul li {
  margin: 0;
  padding: 8px 0;
}
.menu-social {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}
.menu-social > a {
  color: #ffffff;
  border-color: #0f2b66;
  background-color: #0f2b66;
}
.menu-social > a.hover, .menu-social > a:hover {
  color: #ffffff;
  border-color: rgb(21.5384615385, 61.7435897436, 146.4615384615);
  background-color: rgb(21.5384615385, 61.7435897436, 146.4615384615);
}
.menu-social > a:focus:active, .menu-social > a.focus, .menu-social > a.active, .menu-social > a.open {
  background-color: rgb(8.4615384615, 24.2564102564, 57.5384615385);
  border-color: rgb(8.4615384615, 24.2564102564, 57.5384615385);
  color: #ffffff;
}
.menu-social > a.glass {
  background-color: rgba(15, 43, 102, 0.5);
}
.menu-social > a.dimmed {
  background-color: rgba(15, 43, 102, 0.15);
  color: #0f2b66;
  border-color: rgba(15, 43, 102, 0.85);
}
.menu-social > a.dimmed.hover, .menu-social > a.dimmed:hover {
  color: #ffffff;
  border-color: rgb(21.5384615385, 61.7435897436, 146.4615384615);
  background-color: rgb(21.5384615385, 61.7435897436, 146.4615384615);
}
@media (max-width: 999.98px) {
  .menu-social > a {
    color: #ffffff;
    border-color: #1f4aaa;
    background-color: #1f4aaa;
  }
  .menu-social > a.hover, .menu-social > a:hover {
    color: #ffffff;
    border-color: rgb(38.8656716418, 92.776119403, 213.1343283582);
    background-color: rgb(38.8656716418, 92.776119403, 213.1343283582);
  }
  .menu-social > a:focus:active, .menu-social > a.focus, .menu-social > a.active, .menu-social > a.open {
    background-color: rgb(23.1343283582, 55.223880597, 126.8656716418);
    border-color: rgb(23.1343283582, 55.223880597, 126.8656716418);
    color: #ffffff;
  }
  .menu-social > a.glass {
    background-color: rgba(31, 74, 170, 0.5);
  }
  .menu-social > a.dimmed {
    background-color: rgba(31, 74, 170, 0.15);
    color: #1f4aaa;
    border-color: rgba(31, 74, 170, 0.85);
  }
  .menu-social > a.dimmed.hover, .menu-social > a.dimmed:hover {
    color: #ffffff;
    border-color: rgb(38.8656716418, 92.776119403, 213.1343283582);
    background-color: rgb(38.8656716418, 92.776119403, 213.1343283582);
  }
}
@media (min-width: 1000px) {
  .menu.open .menu-bottom {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 9;
    margin-top: 60px;
    visibility: visible;
    opacity: 1;
  }
}
@media (max-width: 999.98px) {
  .menu.open {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0, 0, 1px);
  }
}
@media (max-width: 999.98px) {
  .menu-is-open {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
  }
  .menu-is-open::before {
    opacity: 1;
    visibility: visible;
  }
  .menu-is-open .header-top {
    z-index: 1000;
  }
  .menu-is-open .header-top .logo {
    z-index: 1001;
  }
}

@supports (-moz-appearance: none) {
  .modal {
    scrollbar-color: var(--navy) var(--light-grey);
    scrollbar-width: thin;
  }
}
.modal::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
.modal::-webkit-scrollbar-track {
  background: var(--light-grey);
  border-radius: 8px;
}
.modal::-webkit-scrollbar-thumb {
  background: var(--navy);
  border-radius: 8px;
}
.modal {
  position: fixed;
  background-color: rgba(0, 0, 0, 0.75);
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1200;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 20px;
  visibility: hidden;
  opacity: 0;
  overflow-x: hidden;
  overflow-y: auto;
  pointer-events: none;
  transition: opacity 0.4s ease-in-out, visibility 0.4s ease-in-out, background-color 0.4s ease-in-out, backdrop-filter 0.4s ease-in-out, filter 0.4s ease-in-out;
  will-change: transform, opacity;
}
@media (max-width: 999.98px) {
  .modal {
    padding: 10px;
  }
}
.modal.show {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
.modal.show .modal-dialog {
  transform: scale(1) translateY(0%);
}
.modal-open {
  position: static;
  max-width: 100vw;
  max-height: 100vh;
  width: 100%;
  height: 100%;
  touch-action: none;
  overflow: hidden;
}
.modal-dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 738px;
  height: auto;
  margin: auto;
  padding: 25px;
  border-radius: 30px;
  color: var(--navy);
  background-color: var(--light-grey);
  transform: scale(0.75) translateY(25%);
  transition: 0.4s ease;
  will-change: transform;
}
@media (max-width: 999.98px) {
  .modal-dialog {
    padding: 15px;
    border-radius: 15px;
  }
}
.modal-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 15px;
}
.modal .btn-close {
  align-self: flex-start;
  z-index: 10;
  margin-left: auto;
  transform: translate(0, 0);
  color: #1f4aaa;
  border-color: #1f4aaa;
  background-color: transparent;
}
.modal .btn-close.hover, .modal .btn-close:hover {
  color: #ffffff;
  border-color: #1f4aaa;
  background-color: #1f4aaa;
}
.modal .btn-close:focus:active, .modal .btn-close.focus, .modal .btn-close.active, .modal .btn-close.open {
  background-color: rgb(23.1343283582, 55.223880597, 126.8656716418);
  border-color: rgb(23.1343283582, 55.223880597, 126.8656716418);
  color: #ffffff;
}
@media (max-width: 999.98px) {
  .modal .btn-close {
    --btn-size: 35px;
  }
}
.modal .btn-close i {
  display: flex;
}
.modal-title {
  margin: 0;
  text-align: left;
}
.modal-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 10px;
}
.modal-footer {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.modal-footer > * {
  flex: 1;
}
.modal-fullscreen {
  padding: 0;
}
.modal-fullscreen .modal-dialog {
  max-width: 100%;
  width: 100%;
  height: 100%;
  padding: 20px;
  border-radius: 0;
}
@media (max-width: 999.98px) {
  .modal-fullscreen .modal-dialog {
    padding: 10px;
  }
}
.modal-fullscreen .modal-dialog .modal-body {
  flex: 1;
}
.modal-fullscreen .modal-dialog .yandex-map-modal {
  width: 100% !important;
  max-height: 100% !important;
  border-radius: 15px;
  overflow: hidden;
}
.modal-fullscreen .modal-dialog .yandex-map-modal .ymaps-2-1-79-inner-panes {
  overflow: unset;
}
.modal-fullscreen .modal-dialog .yandex-map-modal [class*=-controls__toolbar_left], .modal-fullscreen .modal-dialog .yandex-map-modal [class*=-controls__toolbar_right], .modal-fullscreen .modal-dialog .yandex-map-modal [class*=-gototech], .modal-fullscreen .modal-dialog .yandex-map-modal [class*=-gototaxi] {
  display: none;
}
.modal-fullscreen:is(#modal-maps) {
  padding: 0;
}
.modal-fullscreen:is(#modal-maps) .modal-header {
  position: absolute;
  top: 10px;
  right: 10px;
}
.modal-fullscreen:is(#modal-maps) .modal-title {
  display: none;
}
.modal-fullscreen:is(#modal-maps) .modal-body {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.modal #map-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  aspect-ratio: 21/9;
  max-height: 450px;
}
@media (max-width: 719.98px) {
  .modal #map-wrapper {
    aspect-ratio: 1/1;
  }
}
.modal #map-wrapper::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: radial-gradient(farthest-side, var(--blue) 94%, rgba(0, 0, 0, 0)) top/9px 9px no-repeat, conic-gradient(rgba(0, 0, 0, 0) 30%, var(--blue));
  -webkit-mask: radial-gradient(farthest-side, rgba(0, 0, 0, 0) calc(100% - 9px), #000 0);
  transform: translate(-50%, -50%);
  animation: spinner-spin 1s infinite linear;
}
.modal #map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.modal-wider .modal-dialog {
  max-width: 900px;
}
.modal-notify .modal-dialog {
  max-width: 320px;
}
.modal-min .modal-dialog {
  max-width: 500px;
}
.modal-apartment .modal-header {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 100%;
}
.modal-apartment .modal-dialog {
  max-width: 360px;
  padding: 10px;
}
.modal[data-modal-id*=modal-chat] .modal-content {
  height: unset;
}
.modal[data-modal-id*=modal-chat] .position-sticky {
  z-index: 5;
}

.search-group {
  position: relative;
}
.search-group > input {
  padding-right: 30px;
}
.search-group::after {
  content: "%";
  position: absolute;
  top: 50%;
  right: 10px;
  z-index: 1;
  display: inline-block;
  align-self: center;
  font-family: "prorealty";
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  color: currentColor;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  pointer-events: none;
  transform: translate(0, -50%);
}
.search-results {
  position: absolute;
  z-index: 1020;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 135%;
}
@media (max-width: 999.98px) {
  .search-results {
    font-size: 14px;
  }
}
@supports (-moz-appearance: none) {
  .search-results {
    scrollbar-color: var(--navy) var(--light-grey);
    scrollbar-width: thin;
  }
}
.search-results::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
.search-results::-webkit-scrollbar-track {
  background: var(--light-grey);
  border-radius: 8px;
}
.search-results::-webkit-scrollbar-thumb {
  background: var(--navy);
  border-radius: 8px;
}
.search-results {
  display: none;
  width: 100%;
  min-width: 220px;
  max-width: 260px;
  max-height: 250px;
  padding: 5px 15px;
  font-family: "Wix Madefor Display";
  color: currentColor;
  border-radius: 15px;
  border: 1px solid;
  border-color: var(--white);
  background-color: var(--white);
  outline: none;
  box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.1);
  overflow-x: hidden;
  overflow-y: auto;
  transform: translate(0, 0);
  transition: 0.25s ease-in-out;
}
@media (max-width: 999.98px) {
  .search-results {
    font-size: 14px;
  }
}
.search-results.show {
  display: block;
}
.search-results ul {
  margin: 0;
  padding: 0;
}
.search-results ul li {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 5px;
  margin: 0;
  padding: 5px 0;
  cursor: pointer;
  transition: 0.25s ease-in-out;
}
.search-results ul li a {
  color: var(--black);
}
.search-results ul li a:hover {
  color: var(--main);
}

.slider {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 20px;
  width: 100%;
  height: 100%;
  margin: auto;
  user-select: none;
  -webkit-user-drag: none;
}
.slider[data-orientation=vertical] .slides {
  flex-direction: column;
}
.slider[data-orientation=vertical] .slide {
  width: 100%;
  max-width: 100%;
  margin-right: 0;
  margin-bottom: var(--slides-gap);
}
.slider[data-orientation=vertical] .slide:last-of-type {
  margin-bottom: 0;
}
.slider .slides {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: stretch;
  flex-wrap: nowrap;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  touch-action: pan-y;
  transition-property: transform;
  transition: transform 0.3s ease;
  will-change: transform;
  overflow: visible;
}
.slider .slides[data-orientation=horizontal] {
  touch-action: pan-y;
}
.slider .slides[data-orientation=vertical] {
  touch-action: pan-x;
}
.slider .slides .glightbox {
  pointer-events: all;
}
.slider .slides.isDragging {
  cursor: grabbing;
  touch-action: none;
  transition: none;
}
.slider .slides.isDragging * {
  cursor: grabbing;
}
.slider .slides.isDragging .glightbox {
  pointer-events: none;
}
.slider .slide {
  flex: 1 0 auto;
  width: 100%;
  max-width: 100%;
  margin-right: var(--slides-gap);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  user-select: none;
}
.slider .slide:last-of-type {
  margin-right: 0;
}
.slider .slide.active {
  position: relative;
}
.slider .slide > picture {
  width: 100%;
  height: 100%;
  pointer-events: none;
  user-select: none;
  overflow: hidden;
}
.slider .slide > picture > * {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.slider .slide-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  flex: 1;
  padding: 10px 50px;
}
.slider-button {
  padding: 0 8px;
  background-color: var(--white);
  color: var(--main);
  border: 1px solid;
  border-color: var(--white);
}
.slider-button:hover:not(:active, .active) {
  background-color: var(--grey-blue);
  color: var(--white);
  border-color: var(--grey-blue);
}
.slider-button.active, .slider-button:active {
  background-color: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.slider-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  font-size: 12px;
  text-align: center;
  transition: background-color 0.25s ease-in-out, border-color 0.25s ease-in-out, color 0.25s ease-in-out;
}
.slider-button > i {
  display: flex;
}
.slider .navigation {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}
.slider .navigation.isMain .slider-button {
  color: #ffffff;
  border-color: #1f4aaa;
  background-color: #1f4aaa;
}
.slider .navigation.isMain .slider-button.hover, .slider .navigation.isMain .slider-button:hover {
  color: #ffffff;
  border-color: rgb(38.8656716418, 92.776119403, 213.1343283582);
  background-color: rgb(38.8656716418, 92.776119403, 213.1343283582);
}
.slider .navigation.isMain .slider-button:focus:active, .slider .navigation.isMain .slider-button.focus, .slider .navigation.isMain .slider-button.active, .slider .navigation.isMain .slider-button.open {
  background-color: rgb(23.1343283582, 55.223880597, 126.8656716418);
  border-color: rgb(23.1343283582, 55.223880597, 126.8656716418);
  color: #ffffff;
}
.slider .navigation.isMain .slider-button.glass {
  background-color: rgba(31, 74, 170, 0.5);
}
.slider .navigation.isMain .slider-button.dimmed {
  background-color: rgba(31, 74, 170, 0.15);
  color: #1f4aaa;
  border-color: rgba(31, 74, 170, 0.85);
}
.slider .navigation.isMain .slider-button.dimmed.hover, .slider .navigation.isMain .slider-button.dimmed:hover {
  color: #ffffff;
  border-color: rgb(38.8656716418, 92.776119403, 213.1343283582);
  background-color: rgb(38.8656716418, 92.776119403, 213.1343283582);
}
@media (max-width: 575.98px) {
  .slider .navigation.isMain .slider-button {
    color: #1f4aaa;
    border-color: #ffffff;
    background-color: #ffffff;
  }
  .slider .navigation.isMain .slider-button.hover, .slider .navigation.isMain .slider-button:hover {
    color: #ffffff;
    border-color: #0f2b66;
    background-color: #0f2b66;
  }
  .slider .navigation.isMain .slider-button:focus:active, .slider .navigation.isMain .slider-button.focus, .slider .navigation.isMain .slider-button.active, .slider .navigation.isMain .slider-button.open {
    color: #ffffff;
    border-color: #2b2f35;
    background-color: #2b2f35;
  }
  .slider .navigation.isMain .slider-button.glass {
    background-color: rgba(255, 255, 255, 0.5);
  }
  .slider .navigation.isMain .slider-button.dimmed {
    background-color: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.85);
  }
  .slider .navigation.isMain .slider-button.dimmed.hover, .slider .navigation.isMain .slider-button.dimmed:hover {
    color: #1f4aaa;
    border-color: white;
    background-color: white;
  }
}
.slider .navigation.isPosts .slider-button {
  color: #ffffff;
  border-color: #1f4aaa;
  background-color: #1f4aaa;
}
.slider .navigation.isPosts .slider-button.hover, .slider .navigation.isPosts .slider-button:hover {
  color: #ffffff;
  border-color: rgb(38.8656716418, 92.776119403, 213.1343283582);
  background-color: rgb(38.8656716418, 92.776119403, 213.1343283582);
}
.slider .navigation.isPosts .slider-button:focus:active, .slider .navigation.isPosts .slider-button.focus, .slider .navigation.isPosts .slider-button.active, .slider .navigation.isPosts .slider-button.open {
  background-color: rgb(23.1343283582, 55.223880597, 126.8656716418);
  border-color: rgb(23.1343283582, 55.223880597, 126.8656716418);
  color: #ffffff;
}
.slider .navigation.isPosts .slider-button.glass {
  background-color: rgba(31, 74, 170, 0.5);
}
.slider .navigation.isPosts .slider-button.dimmed {
  background-color: rgba(31, 74, 170, 0.15);
  color: #1f4aaa;
  border-color: rgba(31, 74, 170, 0.85);
}
.slider .navigation.isPosts .slider-button.dimmed.hover, .slider .navigation.isPosts .slider-button.dimmed:hover {
  color: #ffffff;
  border-color: rgb(38.8656716418, 92.776119403, 213.1343283582);
  background-color: rgb(38.8656716418, 92.776119403, 213.1343283582);
}
.slider .navigation.isPosts .slider-button {
  display: none;
}
@media (max-width: 575.98px) {
  .slider .navigation.isPosts .slider-button {
    display: flex;
    color: #1f4aaa;
    border-color: #ffffff;
    background-color: #ffffff;
  }
  .slider .navigation.isPosts .slider-button.hover, .slider .navigation.isPosts .slider-button:hover {
    color: #ffffff;
    border-color: #0f2b66;
    background-color: #0f2b66;
  }
  .slider .navigation.isPosts .slider-button:focus:active, .slider .navigation.isPosts .slider-button.focus, .slider .navigation.isPosts .slider-button.active, .slider .navigation.isPosts .slider-button.open {
    color: #ffffff;
    border-color: #2b2f35;
    background-color: #2b2f35;
  }
  .slider .navigation.isPosts .slider-button.glass {
    background-color: rgba(255, 255, 255, 0.5);
  }
  .slider .navigation.isPosts .slider-button.dimmed {
    background-color: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.85);
  }
  .slider .navigation.isPosts .slider-button.dimmed.hover, .slider .navigation.isPosts .slider-button.dimmed:hover {
    color: #1f4aaa;
    border-color: white;
    background-color: white;
  }
}
@media (max-width: 575.98px) {
  .slider .navigation.isReviews .slider-button {
    color: #1f4aaa;
    border-color: #f2f3f6;
    background-color: #f2f3f6;
  }
  .slider .navigation.isReviews .slider-button.hover, .slider .navigation.isReviews .slider-button:hover {
    color: #1f4aaa;
    border-color: white;
    background-color: white;
  }
  .slider .navigation.isReviews .slider-button:focus:active, .slider .navigation.isReviews .slider-button.focus, .slider .navigation.isReviews .slider-button.active, .slider .navigation.isReviews .slider-button.open {
    background-color: rgb(211.8636363636, 215.1818181818, 225.1363636364);
    border-color: rgb(211.8636363636, 215.1818181818, 225.1363636364);
    color: #1f4aaa;
  }
  .slider .navigation.isReviews .slider-button.glass {
    background-color: rgba(242, 243, 246, 0.5);
  }
  .slider .navigation.isReviews .slider-button.dimmed {
    background-color: rgba(242, 243, 246, 0.15);
    color: #f2f3f6;
    border-color: rgba(242, 243, 246, 0.85);
  }
  .slider .navigation.isReviews .slider-button.dimmed.hover, .slider .navigation.isReviews .slider-button.dimmed:hover {
    color: #1f4aaa;
    border-color: white;
    background-color: white;
  }
}
.slider .navigation.isReviews .pagination-dot:not(.active) {
  color: #ffffff;
  border-color: #ffffff;
  background-color: #ffffff;
}
.slider .navigation.isReviews .pagination-dot:not(.active).hover, .slider .navigation.isReviews .pagination-dot:not(.active):hover {
  color: #ffffff;
  border-color: #0f2b66;
  background-color: #0f2b66;
}
.slider .navigation.isReviews .pagination-dot:not(.active):focus:active, .slider .navigation.isReviews .pagination-dot:not(.active).focus, .slider .navigation.isReviews .pagination-dot:not(.active).active, .slider .navigation.isReviews .pagination-dot:not(.active).open {
  color: #ffffff;
  border-color: #2b2f35;
  background-color: #2b2f35;
}
.slider .navigation.isReviews .pagination-dot:not(.active).glass {
  background-color: rgba(255, 255, 255, 0.5);
}
.slider .navigation.isReviews .pagination-dot:not(.active).dimmed {
  background-color: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.85);
}
.slider .navigation.isReviews .pagination-dot:not(.active).dimmed.hover, .slider .navigation.isReviews .pagination-dot:not(.active).dimmed:hover {
  color: #ffffff;
  border-color: white;
  background-color: white;
}
.slider .scrollbar {
  position: relative;
  height: 3px;
  background: var(--light-grey);
  border-radius: 8px;
  pointer-events: none;
  overflow: hidden;
}
.slider .scrollbar-thumb {
  position: absolute;
  min-width: 180px;
  height: 100%;
  background: var(--main);
  border-radius: 8px;
  cursor: pointer;
  transition: 0.25s ease-in-out;
}

.slider-block {
  position: relative;
  overflow: hidden;
}
.slider-block-centered .slider-button.prev, .slider-block-centered .slider-button.next {
  position: absolute;
  top: 50%;
  z-index: 10;
  transform: translate(0, -50%);
}
.slider-block-centered .slider-button.prev {
  left: 20px;
}
@media (max-width: 999.98px) {
  .slider-block-centered .slider-button.prev {
    left: 10px;
  }
}
.slider-block-centered .slider-button.next {
  right: 20px;
}
@media (max-width: 999.98px) {
  .slider-block-centered .slider-button.next {
    right: 10px;
  }
}
.slider-block-top .navigation {
  position: absolute;
  top: 0;
  right: 0;
  transform: translateY(2.5%);
}
@media (max-width: 575.98px) {
  .slider-block-top .navigation {
    position: relative;
    top: unset;
    left: unset;
    right: unset;
    bottom: unset;
    justify-content: center;
    transform: none;
  }
}
.slider-block-top.nav-centered {
  overflow: visible;
}
@media (min-width: 576px) {
  .slider-block-top.nav-centered .masked {
    max-width: calc(100% - 40px);
    margin-left: 20px;
  }
  .slider-block-top.nav-centered .navigation {
    position: unset;
    top: unset;
    left: unset;
    right: unset;
    bottom: 0;
    margin-top: -21.5px;
    transform: unset;
  }
}
@media (min-width: 1000px) {
  .slider-block-top.nav-centered .masked {
    max-width: unset;
    margin-left: unset;
  }
}
.slider-block-top.nav-centered .navigation {
  position: unset;
  top: unset;
  left: unset;
  right: unset;
  bottom: 0;
  transform: unset;
}
@media (min-width: 576px) {
  .slider-block-top.nav-centered .navigation {
    margin-top: -21.5px;
  }
}
.slider-block-top.nav-centered .slider-button {
  position: absolute;
  top: 50%;
  z-index: 10;
  transform: translate(0, -50%);
}
@media (min-width: 576px) {
  .slider-block-top.nav-centered .slider-button {
    transform: translate(0, calc(-50% + 21.5px));
  }
}
.slider-block-top.nav-centered .slider-button.prev {
  left: -20px;
}
@media (max-width: 999.98px) {
  .slider-block-top.nav-centered .slider-button.prev {
    left: 0;
  }
}
@media (max-width: 575.98px) {
  .slider-block-top.nav-centered .slider-button.prev {
    left: -10px;
  }
}
.slider-block-top.nav-centered .slider-button.next {
  right: -20px;
}
@media (max-width: 999.98px) {
  .slider-block-top.nav-centered .slider-button.next {
    right: 0;
  }
}
@media (max-width: 575.98px) {
  .slider-block-top.nav-centered .slider-button.next {
    right: -10px;
  }
}
.slider-block .slider:is(#sliderPosts) .slides .slide:nth-child(4n-3) .card-header {
  background-color: var(--green);
}
.slider-block .slider:is(#sliderPosts) .slides .slide:nth-child(4n-2) .card-header {
  background-color: var(--navy);
}
.slider-block .slider:is(#sliderPosts) .slides .slide:nth-child(4n-1) .card-header {
  background-color: var(--main);
}
.slider-block-cover .slider {
  border-radius: 15px;
  overflow: hidden;
}
.slider-block-cover .slider .slides {
  z-index: 1;
}
@media (max-width: 575.98px) {
  .slider-block-cover .slider .slides {
    flex: 1;
  }
}
.slider-block-cover .slider .slides .slide > a {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.slider-block-cover .slider .slides .slide > a picture {
  position: relative;
  width: 100%;
  height: 100%;
}
.slider-block-cover .slider .slides .slide > a img {
  position: relative;
  left: 50%;
  display: block;
  width: auto;
  height: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  transform: translateX(-50%);
}
.slider-block-thumbnail {
  opacity: 0;
  animation: 1s gfadeIn 0.5s ease forwards;
}
.slider-block-thumbnail .slide {
  border-radius: 15px;
  transition: 0.25s ease-in-out;
}
.slider-block-thumbnail .slide.active {
  box-shadow: 0 0 0 3px var(--white);
}
.slider-block-thumbnail .slide > a {
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
  border-radius: 15px;
  overflow: hidden;
}
.slider-block-thumbnail .slide > a img, .slider-block-thumbnail .slide > a picture {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.slider-block-mini .slider .slides .slide-content {
  max-width: 80%;
  margin: auto;
  padding-left: 0;
  padding-right: 0;
  text-align: center;
  color: var(--white);
}
@media (max-width: 999.98px) {
  .slider-block-mini .slider .slides .slide-content {
    max-width: 100%;
    padding-left: 25px;
    padding-right: 25px;
  }
}
.slider-block-mini .slider .slides .slide > a {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  background-image: url("/assets/images/banner/actions/1-big.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-decoration: none !important;
  overflow: hidden;
}
@media (max-width: 999.98px) {
  .slider-block-mini .slider .slides .slide > a {
    background-image: url("/assets/images/banner/actions/1.webp");
  }
}
.slider-block-mini .slider-button {
  position: absolute;
  top: 50%;
  z-index: 1;
  transform: translateY(-50%);
}
@media (max-width: 999.98px) {
  .slider-block-mini .slider-button {
    --btn-size: 20px;
    top: 10px;
    width: 20px;
    height: 20px;
    transform: translateY(0);
  }
}
.slider-block-mini .slider-button.prev {
  left: 5px;
}
@media (max-width: 999.98px) {
  .slider-block-mini .slider-button.prev {
    left: auto;
    right: 40px;
  }
}
.slider-block-mini .slider-button.next {
  right: 10px;
}
@media (min-width: 1000px) {
  .slider-block-absolute .masked {
    position: relative;
    min-height: 460px;
  }
  .slider-block-absolute .masked .slides {
    position: absolute;
    top: 0;
    left: 0;
    align-items: flex-start;
  }
}

.mini-slider--slides {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  flex-wrap: nowrap;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  touch-action: pan-y;
  transition-property: transform;
  transition: transform 0.5s ease;
  cursor: pointer;
}
.mini-slider--slides .image {
  display: block;
  flex-shrink: 0;
  height: 100%;
  width: 100%;
  min-width: 100%;
  user-select: none;
  cursor: grab;
  transition: 0.4s ease;
}
.mini-slider--slides .image.active {
  position: relative;
}
.mini-slider--slides .image > picture {
  width: 100%;
  height: 100%;
  pointer-events: none;
  user-select: none;
  overflow: hidden;
}
.mini-slider--slides .image > picture > * {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.mini-slider--slides .image > * {
  display: block;
  height: 100%;
}
.mini-slider--header {
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  z-index: 2;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
}
.mini-slider--navigation {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5px;
}
.mini-slider--next i, .mini-slider--prev i {
  display: flex;
}
.mini-slider--next i::before, .mini-slider--prev i::before {
  vertical-align: center;
}

.selection.sticky {
  position: sticky;
  top: 0;
  z-index: 5;
}
.selection.fixed {
  position: fixed;
  top: 0;
  left: 0;
}
.selection .selection-wrapper {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 10px;
}
.selection-block {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 10px;
  width: auto;
  padding: 5px 7px;
  background-color: var(--light-grey);
  border-radius: 25px;
}
@media (max-width: 1599.98px) {
  .selection-block {
    gap: 5px;
  }
}
.selection-block > button {
  --btn-size: 35px;
  flex: 0 0 var(--btn-size);
}
@media (max-width: 1279.98px) {
  .selection-block > button:not(.aspected) {
    --btn-padding-x: 20px;
  }
}
.selection-block .dropdown-trigger {
  width: 100%;
}
@media (max-width: 999.98px) {
  .selection-block .dropdown-trigger {
    padding-right: 30px;
  }
}
@media (max-width: 575.98px) {
  .selection-block .dropdown-trigger {
    padding-right: 25px;
  }
}
@media (max-width: 575.98px) {
  .selection-block .dropdown-trigger::after {
    right: 10px;
  }
}
.selection:is(.selection-main) {
  width: 100%;
  margin-top: 10px;
  padding: 10px 0;
  background-color: var(--white);
}
@media (max-width: 999.98px) {
  .selection:is(.selection-main) {
    top: 90px;
    z-index: 4;
  }
}
@media (max-width: 719.98px) {
  .selection:is(.selection-main) {
    margin-top: 0;
  }
}
@media (max-width: 575.98px) {
  .selection:is(.selection-main) {
    top: 75px;
  }
}
.selection:is(.selection-main) .selection-wrapper {
  flex-wrap: nowrap;
  height: 45px;
}
@media (min-width: 1000px) and (max-width: 1199.98px) {
  .selection:is(.selection-main) .selection-wrapper {
    margin-left: -20px;
    margin-right: -20px;
  }
}
.selection:is(.selection-main) .selection-action {
  display: flex;
  align-items: stretch;
  width: auto;
  height: 100%;
}
@media (max-width: 999.98px) {
  .selection:is(.selection-main) .selection-action {
    display: none;
  }
}
@media (max-width: 1399.98px) {
  .selection:is(.selection-main) .selection-action > * {
    --btn-padding-x: 16px;
  }
}
.selection:is(.selection-main) .selection-block {
  flex-grow: 1;
  background-color: var(--main);
}
@media (max-width: 999.98px) {
  .selection:is(.selection-main) .selection-block [data-filters-toggle] {
    display: none;
  }
}
.selection:is(.selection-main) .selection-block #sticky-filter-square {
  width: 100px;
}
@media (max-width: 1399.98px) {
  .selection:is(.selection-main) .selection-block #sticky-filter-square {
    display: none;
  }
}
.selection:is(.selection-main) .selection-block #apartment-select {
  width: 136px;
}
@media (max-width: 1199.98px) {
  .selection:is(.selection-main) .selection-block #apartment-select {
    width: 130px;
  }
}
@media (max-width: 999.98px) {
  .selection:is(.selection-main) .selection-block #apartment-select {
    display: none;
  }
}
.selection:is(.selection-main) .selection-block #room-select {
  width: 146px;
}
@media (max-width: 1199.98px) {
  .selection:is(.selection-main) .selection-block #room-select {
    width: 136px;
  }
}
@media (max-width: 999.98px) {
  .selection:is(.selection-main) .selection-block #room-select {
    display: none;
  }
}
.selection:is(.selection-main) .selection-block #cost-select {
  width: 120px;
}
@media (max-width: 1199.98px) {
  .selection:is(.selection-main) .selection-block #cost-select {
    width: 100px;
  }
}
@media (max-width: 999.98px) {
  .selection:is(.selection-main) .selection-block #cost-select {
    display: none;
  }
}
@media (max-width: 1279.98px) {
  .selection:is(.selection-main) .selection-block > .btn-map {
    display: none;
  }
}
.selection:is(.selection-main) .selection-block > .btn-map span:first-of-type {
  display: inline;
}
@media (max-width: 1599.98px) {
  .selection:is(.selection-main) .selection-block > .btn-map span:first-of-type {
    display: none;
  }
}
@media (max-width: 999.98px) {
  .selection:is(.selection-main) .selection-block > .btn-map span:first-of-type {
    display: inline;
  }
}
.selection:is(.selection-main) .selection-block > .btn-map span:last-of-type {
  display: none;
}
@media (max-width: 1599.98px) {
  .selection:is(.selection-main) .selection-block > .btn-map span:last-of-type {
    display: inline;
  }
}
@media (max-width: 999.98px) {
  .selection:is(.selection-main) .selection-block > .btn-map span:last-of-type {
    display: none;
  }
}
@media (max-width: 1399.98px) {
  .selection:is(.selection-main) .selection-block > .btn-map span {
    display: none;
  }
}
@media (max-width: 999.98px) {
  .selection:is(.selection-pos) {
    max-width: 100%;
  }
}
@media (max-width: 719.98px) {
  .selection:is(.selection-pos) {
    width: 100%;
  }
}
.selection:is(.selection-pos) .selection-wrapper {
  align-items: center;
}
@media (max-width: 999.98px) {
  .selection:is(.selection-pos) .selection-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }
}
.selection:is(.selection-pos) .selection-block {
  max-width: 505px;
  width: 100%;
}
@media (max-width: 719.98px) {
  .selection:is(.selection-pos) .selection-block {
    max-width: 100%;
  }
}
.selection:is(.selection-pos) .selection-block #pos-cost-select {
  max-width: 135px;
  flex: 1;
}
@media (max-width: 999.98px) {
  .selection:is(.selection-pos) .selection-block #pos-cost-select {
    max-width: 25%;
  }
}
.selection:is(.selection-pos) .selection-block #pos-room-select {
  max-width: 135px;
  flex: 1;
}
@media (max-width: 999.98px) {
  .selection:is(.selection-pos) .selection-block #pos-room-select {
    max-width: 30%;
  }
}
.selection:is(.selection-pos) .selection-block #pos-filter-square {
  flex: 1;
}
@media (max-width: 999.98px) {
  .selection:is(.selection-pos) .selection-block #pos-filter-square {
    max-width: 25%;
  }
}

.auth-page {
  min-height: 60vh;
  padding: 48px 0;
}
.auth-page__container {
  max-width: 460px;
}
.auth-page__title {
  margin: 0 0 24px;
}
.auth-flow {
  display: grid;
  gap: 16px;
}
.auth-flow__step form {
  display: grid;
  gap: 12px;
}
.auth-flow__lead, .auth-flow__phone {
  margin: 0;
}
.auth-flow__label {
  font-weight: 600;
}
.auth-flow__error {
  min-height: 18px;
  margin: -6px 0 0;
  color: #c53333;
  font-size: 14px;
}
.auth-flow__error:empty {
  display: none;
}
.auth-flow__consent {
  font-size: 14px;
}
.auth-flow__forgot-password {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--main, #4fac7f);
  cursor: pointer;
  text-align: center;
}

.password-recovery__step form {
  display: grid;
  gap: 12px;
}

.auth-flow input:not([type=checkbox]),
.password-recovery input:not([type=checkbox]) {
  width: 100%;
  min-height: 50px;
  padding: 10px 14px;
  border: 1px solid #b6c2cc;
  border-radius: 8px;
  background: #fff;
}

.modal-auth .modal-body {
  padding-top: 20px;
}

.auth-flash-modal .modal-header {
  min-height: 40px;
  border-bottom: 0;
}
.auth-flash-modal .modal-body {
  padding: 0 32px 32px;
  text-align: center;
}
.auth-flash-modal .modal-body .modal-title {
  margin-bottom: 12px;
  text-align: center;
}
.auth-flash-modal .modal-body p {
  margin: 0;
}
.auth-flash-modal__icon {
  display: grid;
  width: 42px;
  height: 42px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: #4fac7f;
  color: #fff;
  place-items: center;
  font-size: 28px;
  line-height: 1;
}

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

html {
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  overflow-x: hidden;
  overflow-y: auto;
}
@supports (-moz-appearance: none) {
  html {
    scrollbar-color: var(--navy) var(--light-grey);
    scrollbar-width: thin;
  }
}
html::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
html::-webkit-scrollbar-track {
  background: var(--light-grey);
  border-radius: 8px;
}
html::-webkit-scrollbar-thumb {
  background: var(--navy);
  border-radius: 8px;
}
html::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: 0.25s ease-in-out;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: 0;
  font-family: "Wix Madefor Display";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 135%;
}
@media (max-width: 999.98px) {
  body {
    font-size: 14px;
  }
}
body {
  color: var(--black);
  overflow-x: clip;
  -webkit-text-rendering: optimizeLegibility;
  -moz-text-rendering: optimizeLegibility;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@supports (-moz-appearance: none) {
  body {
    scrollbar-color: var(--navy) var(--light-grey);
    scrollbar-width: thin;
  }
}
body::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
body::-webkit-scrollbar-track {
  background: var(--light-grey);
  border-radius: 8px;
}
body::-webkit-scrollbar-thumb {
  background: var(--navy);
  border-radius: 8px;
}

main {
  flex: 1;
}
main > section:first-of-type {
  padding-top: 0;
}
main > section:is(.hero) {
  padding-top: 20px;
  padding-bottom: 20px;
}
main > section:not(:first-of-type) {
  padding-top: 0;
}

section {
  position: relative;
  z-index: 1;
  display: block;
  padding: 80px 0;
}
@media (max-width: 1199.98px) {
  section {
    padding: 50px 0;
  }
}
@media (max-width: 719.98px) {
  section {
    padding: 40px 0;
  }
}

.page-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px 40px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--light-grey);
}
@media (max-width: 575.98px) {
  .page-header {
    gap: 10px;
    margin-bottom: 15px;
    padding-bottom: 0;
    border-bottom: none;
  }
}
.page-header h1, .page-header h2, .page-header h3 {
  margin-block-end: 0;
}
@media (max-width: 999.98px) {
  .page-filters {
    flex: 1 0 auto;
  }
}

.layouts {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  flex-wrap: wrap;
}
.layouts-2x {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 10px;
}
.layouts-2x > * {
  flex: 1 0 calc(50% - 5px);
  max-width: calc(50% - 5px);
  width: 100%;
}
@media (max-width: 575.98px) {
  .layouts-2x {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 10px;
  }
  .layouts-2x > * {
    flex: 1 0 calc(100% - 0px);
    max-width: calc(100% - 0px);
    width: 100%;
  }
}
.layouts-3x {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 10px;
}
.layouts-3x > * {
  flex: 1 0 calc(33.3333% - 6.6666666667px);
  max-width: calc(33.3333% - 6.6666666667px);
  width: 100%;
}
@media (max-width: 999.98px) {
  .layouts-3x {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 10px;
  }
  .layouts-3x > * {
    flex: 1 0 calc(50% - 5px);
    max-width: calc(50% - 5px);
    width: 100%;
  }
}
@media (max-width: 575.98px) {
  .layouts-3x {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 10px;
  }
  .layouts-3x > * {
    flex: 1 0 calc(100% - 0px);
    max-width: calc(100% - 0px);
    width: 100%;
  }
}
.layouts-4x {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 10px;
}
.layouts-4x > * {
  flex: 1 0 calc(25% - 7.5px);
  max-width: calc(25% - 7.5px);
  width: 100%;
}
@media (max-width: 1199.98px) {
  .layouts-4x {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 10px;
  }
  .layouts-4x > * {
    flex: 1 0 calc(33.3333% - 6.6666666667px);
    max-width: calc(33.3333% - 6.6666666667px);
    width: 100%;
  }
}
@media (max-width: 999.98px) {
  .layouts-4x {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 10px;
  }
  .layouts-4x > * {
    flex: 1 0 calc(50% - 5px);
    max-width: calc(50% - 5px);
    width: 100%;
  }
}
@media (max-width: 575.98px) {
  .layouts-4x {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 10px;
  }
  .layouts-4x > * {
    flex: 1 0 calc(100% - 0px);
    max-width: calc(100% - 0px);
    width: 100%;
  }
}
.layouts-5x {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 10px;
}
.layouts-5x > * {
  flex: 1 0 calc(20% - 8px);
  max-width: calc(20% - 8px);
  width: 100%;
}
@media (max-width: 1399.98px) {
  .layouts-5x {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 10px;
  }
  .layouts-5x > * {
    flex: 1 0 calc(25% - 7.5px);
    max-width: calc(25% - 7.5px);
    width: 100%;
  }
}
@media (max-width: 1199.98px) {
  .layouts-5x {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 10px;
  }
  .layouts-5x > * {
    flex: 1 0 calc(33.3333% - 6.6666666667px);
    max-width: calc(33.3333% - 6.6666666667px);
    width: 100%;
  }
}
@media (max-width: 999.98px) {
  .layouts-5x {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 10px;
  }
  .layouts-5x > * {
    flex: 1 0 calc(50% - 5px);
    max-width: calc(50% - 5px);
    width: 100%;
  }
}
@media (max-width: 575.98px) {
  .layouts-5x {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 10px;
  }
  .layouts-5x > * {
    flex: 1 0 calc(100% - 0px);
    max-width: calc(100% - 0px);
    width: 100%;
  }
}

.categories-cards > .container {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 30px;
}
@media (max-width: 1199.98px) {
  .categories-cards > .container {
    margin-top: 20px;
  }
}
.categories-cards > .container > * {
  z-index: 1;
  flex: 1 1 0%;
  width: 100%;
  max-width: calc(25% - 2px);
  height: 120px;
  border: 0;
}
@media (max-width: 719.98px) {
  .categories-cards > .container > * {
    flex-basis: calc(50% - 2px);
    max-width: calc(50% - 2px);
  }
}

#mainTitle {
  margin: 15px 0 5px;
  text-align: center;
}
@media (min-width: 720px) {
  #mainTitle {
    margin: 25px 0 5px;
  }
}
@media (min-width: 1000px) {
  #mainTitle {
    margin: 0;
    font-size: 24px;
    text-align: left;
  }
}
@media (max-width: 999.98px) {
  #mainTitle {
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
  }
}

.title-icon {
  position: relative;
  top: -4px;
  max-width: 76px;
  max-height: 40px;
  height: 100%;
  padding-top: 4px;
  object-fit: contain;
  object-position: left center;
  vertical-align: middle;
  user-select: none;
  pointer-events: none;
}
@media (max-width: 999.98px) {
  .title-icon {
    max-width: 58px;
    max-height: 34px;
  }
}

.rating {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 5px;
  font-size: 16px;
}
.rating > i {
  color: var(--grey-blue);
}
.rating > i:is(.icon-star-filled) {
  color: var(--green);
}

@media (max-width: 575.98px) {
  .building h1 {
    text-align: center;
  }
}
.building-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}
@media (max-width: 575.98px) {
  .building-header {
    flex-direction: column;
    flex-wrap: nowrap;
    margin-bottom: 15px;
  }
}
.building-header > span[class*=icon-map]::before {
  vertical-align: center;
}
.building-header--actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.building-body {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 10px;
  margin-bottom: 50px;
}
@media (max-width: 999.98px) {
  .building-body {
    flex-direction: column;
  }
}
@media (max-width: 575.98px) {
  .building-body {
    margin-bottom: 30px;
  }
}
.building-body > .building-slider {
  width: 100%;
  flex: 1;
}
@media (min-width: 1000px) {
  .building-body > .building-slider {
    max-width: 960px;
  }
}
.building-body > .building-form {
  width: 100%;
}
.building-primary {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (min-width: 1000px) {
  .building-primary {
    max-width: 490px;
    min-width: 490px;
  }
}
@media (min-width: 1400px) {
  .building-primary {
    max-width: 690px;
  }
}
.building-slider {
  position: relative;
  display: grid;
  max-height: 600px;
}
@media (max-width: 575.98px) {
  .building-slider {
    max-height: 500px;
  }
}
.building-slider > .slider-block-cover {
  flex: 1;
  height: 100%;
}
.building-slider > .slider-block-thumbnail {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 3;
  width: 100%;
  padding: 30px;
}
@media (max-width: 575.98px) {
  .building-slider > .slider-block-thumbnail {
    padding: 10px;
  }
}
.building-slider:has(.slider-block-thumbnail) .slider-block-cover .slider::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(43, 47, 53, 0) 0%, rgba(43, 47, 53, 0) 70%, rgba(43, 47, 53, 0.6196078431) 100%);
  pointer-events: none;
  user-select: none;
}
.building-advantages {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  width: 100%;
  height: fit-content;
  padding: 10px;
}
@media (max-width: 575.98px) {
  .building-advantages {
    justify-content: flex-start;
  }
}
.building-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
@media (max-width: 575.98px) {
  .building-actions {
    aspect-ratio: 1/0.588;
  }
}
.building-actions .slider-block {
  width: 100%;
  height: 100%;
  border-radius: 15px;
  overflow: hidden;
}
.building-actions .slider-block .slide {
  min-height: 144px;
}
.building-form {
  flex-direction: column;
  align-items: stretch;
  gap: 15px;
  width: 100%;
}
@media (max-width: 575.98px) {
  .building-form {
    gap: 20px;
  }
}
.building-form > .row {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.building-form > .row > .payment-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 5px;
  width: 100%;
  flex: 1;
}
.building-form > .row .credit-payment {
  margin-left: auto;
}
@media (max-width: 1399.98px) {
  .building-form > .row #recalculate {
    width: 100%;
    flex: 1 0 auto;
  }
}
@media (max-width: 999.98px) {
  .building-form > .row #recalculate {
    width: auto;
    flex: unset;
  }
}
@media (max-width: 575.98px) {
  .building-form > .row #recalculate {
    width: 100%;
    flex: 1 0 auto;
  }
}
.building-form .cards-stack {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 5px;
}
.building-form .cards-stack > * {
  text-decoration: none !important;
  flex: 1;
}
.building-form .cards-stack > *:hover {
  color: var(--main);
}
@media (min-width: 1200px) {
  .building-form .cards-stack > *:nth-last-child(1), .building-form .cards-stack > *:nth-last-child(2) {
    min-width: 48%;
  }
}
@media (max-width: 1199.98px) {
  .building-form .cards-stack > * {
    min-width: 48%;
  }
  .building-form .cards-stack > *:nth-child(4n-1) {
    display: none;
  }
}
.building-form .additional {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 10px;
}
.building-form .additional > .list-classes {
  max-width: 60%;
  flex: 1;
}
@media (max-width: 1399.98px) {
  .building-form .additional > .list-classes {
    max-width: 100%;
    flex: 1 0 auto;
  }
}
@media (max-width: 999.98px) {
  .building-form .additional > .list-classes {
    max-width: calc(50% - 5px);
    flex: 1 0 calc(50% - 5px);
  }
}
@media (max-width: 719.98px) {
  .building-form .additional > .list-classes {
    max-width: 100%;
    flex: 1 0 auto;
  }
}
.building-form .additional > .list-amenities {
  max-width: 30%;
}
@media (max-width: 1399.98px) {
  .building-form .additional > .list-amenities {
    max-width: 100%;
    flex: 1 0 auto;
  }
}
.building-form-footer {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 10px;
}
@media (max-width: 575.98px) {
  .building-form-footer {
    justify-content: center;
  }
}
.building-form-footer > #building-request {
  flex: 1;
}
@media (max-width: 575.98px) {
  .building-form-footer > #building-request {
    flex: 1 0 auto;
    width: 100%;
  }
}
.building-position {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
@media (max-width: 999.98px) {
  .building-position {
    gap: 30px;
  }
}
.building-position .pos-wrapper > .pos-map {
  aspect-ratio: 16/9;
  height: 100%;
}
.building-position .pos-wrapper > .pos-map .ymaps-2-1-79-map {
  width: 100% !important;
  height: 100% !important;
}
.building-content {
  padding: 30px;
  background-color: var(--light-grey);
  border: 1px solid;
  border-color: var(--light-grey);
  border-radius: 15px;
  color: var(--navy);
}
@media (max-width: 999.98px) {
  .building-content {
    padding: 15px;
  }
}
.building-content > h6 {
  font-weight: 700;
  font-size: 24px;
  line-height: 115%;
}
@media (max-width: 999.98px) {
  .building-content > h6 {
    font-size: 18px;
  }
}
.building-content > p {
  margin-block-end: 1em;
}
.building-content .card {
  flex-direction: column;
  float: right;
  max-width: 498px;
  margin: 20px 0 20px 20px;
}
@media (max-width: 719.98px) {
  .building-content .card {
    max-width: 100%;
    width: 100%;
    margin: 15px 0;
  }
}
.building-photo {
  display: flex;
  width: 100%;
  height: 100%;
  border-radius: 15px;
  overflow: hidden;
}
.building-photo picture, .building-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.building-description h6 {
  font-weight: 700;
  font-size: 24px;
  line-height: 115%;
}
@media (max-width: 999.98px) {
  .building-description h6 {
    font-size: 18px;
  }
}

@media (max-width: 575.98px) {
  .apartment h1 {
    text-align: center;
  }
}
.apartment-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}
@media (max-width: 575.98px) {
  .apartment-header {
    flex-direction: column;
    flex-wrap: nowrap;
    margin-bottom: 15px;
  }
}
.apartment-header > h1 {
  margin: 0;
}
@media (max-width: 1399.98px) {
  .apartment-header > h1 {
    flex: 1 0 auto;
    width: 100%;
  }
}
@media (min-width: 1400px) {
  .apartment-header > span {
    min-width: 20%;
  }
}
.apartment-header > span[class*=icon-map]::before {
  vertical-align: center;
}
.apartment-header > .apartment-header--actions {
  margin-left: auto;
}
@media (max-width: 575.98px) {
  .apartment-header > .apartment-header--actions {
    margin-left: unset;
  }
}
.apartment-header--actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.apartment-wrapper {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 20px;
  width: 100%;
  margin-bottom: 50px;
}
@media (max-width: 1199.98px) {
  .apartment-wrapper {
    gap: 10px;
  }
}
@media (max-width: 999.98px) {
  .apartment-wrapper {
    flex-direction: column;
  }
}
@media (max-width: 575.98px) {
  .apartment-wrapper {
    margin-bottom: 30px;
  }
}
.apartment-wrapper > .apartment-primary {
  min-width: 0;
  width: 100%;
}
@media (min-width: 1000px) {
  .apartment-wrapper > .apartment-side {
    min-width: 380px;
    max-width: 380px;
    width: 100%;
    flex: 0 0 380px;
  }
}
.apartment-primary {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.apartment-side {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.apartment-side-fixed {
  position: sticky;
  top: 90px;
  left: 0;
}
.apartment-advantages {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  width: 100%;
  height: fit-content;
  padding: 10px;
}
@media (max-width: 575.98px) {
  .apartment-advantages {
    justify-content: flex-start;
  }
}
.apartment-slider {
  position: relative;
  display: grid;
}
@media (max-width: 575.98px) {
  .apartment-slider {
    max-height: 500px;
  }
}
.apartment-slider > .slider-block-cover {
  flex: 1;
  height: 100%;
}
.apartment-slider > .slider-block-thumbnail {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 3;
  width: 100%;
  padding: 30px;
}
@media (max-width: 575.98px) {
  .apartment-slider > .slider-block-thumbnail {
    padding: 10px;
  }
}
.apartment-slider:has(.slider-block-thumbnail) .slider-block-cover .slider::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(43, 47, 53, 0) 0%, rgba(43, 47, 53, 0) 70%, rgba(43, 47, 53, 0.6196078431) 100%);
  pointer-events: none;
  user-select: none;
}
.apartment-form {
  flex-direction: column;
  align-items: stretch;
  gap: 15px;
  width: 100%;
}
@media (max-width: 575.98px) {
  .apartment-form {
    gap: 20px;
  }
}
.apartment-form > .row {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.apartment-form > .row > .payment-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 5px;
  width: 100%;
  flex: 1;
}
.apartment-form > .row .credit-payment {
  margin-left: auto;
}
.apartment-form > .row #recalculate {
  width: 100%;
}
@media (max-width: 1399.98px) {
  .apartment-form > .row #recalculate {
    width: 100%;
    flex: 1 0 auto;
  }
}
@media (max-width: 999.98px) {
  .apartment-form > .row #recalculate {
    width: auto;
    flex: unset;
  }
}
@media (max-width: 575.98px) {
  .apartment-form > .row #recalculate {
    width: 100%;
    flex: 1 0 auto;
  }
}
.apartment-form .additional {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.apartment-form .additional a {
  color: var(--main);
}
.apartment-body {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 20px;
}
@media (max-width: 575.98px) {
  .apartment-body {
    gap: 30px;
  }
}
.apartment-body > .apartment-charts {
  max-width: 60%;
}
.apartment-body > .apartment-map {
  max-width: 40%;
}
.apartment-body > .apartment-charts, .apartment-body > .apartment-map {
  flex: 1 1 0%;
}
@media (max-width: 1199.98px) {
  .apartment-body > .apartment-charts, .apartment-body > .apartment-map {
    max-width: 100%;
    width: 100%;
    flex: 1 0 auto;
  }
}
.apartment-description {
  flex: 1 0 auto;
  width: 100%;
}
.apartment-description h1, .apartment-description h2, .apartment-description h3, .apartment-description h4, .apartment-description h5, .apartment-description h6 {
  color: var(--main);
}
.apartment-description > p:last-child {
  margin: 0;
}
.apartment-charts, .apartment-map {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
}
.apartment-charts-header, .apartment-map-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  gap: 0 5px;
}
.apartment-charts-header [class^=icon-map]::before, .apartment-map-header [class^=icon-map]::before {
  vertical-align: center;
}
.apartment-map .pos-map {
  flex: 1;
}
.apartment-charts-element {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  flex: 1;
  padding: 5px;
  aspect-ratio: 18/9;
  border: 1px solid var(--light-grey);
  border-radius: 15px;
  user-select: none;
  overflow: hidden;
}
.apartment-charts-element canvas {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain;
  user-select: none;
}
.apartment-other {
  display: flex;
  flex-direction: column;
  max-width: 100%;
}

.pos {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
@media (max-width: 999.98px) {
  .pos {
    gap: 30px;
  }
}
.pos-title {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: nowrap;
  gap: 15px;
  width: 100%;
  flex: 1;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--light-grey);
}
@media (max-width: 575.98px) {
  .pos-title {
    justify-content: space-between;
  }
}
.pos-title h2 {
  display: inline-block;
  margin: 0;
}
.pos-wrapper {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 30px;
}
@media (max-width: 999.98px) {
  .pos-wrapper {
    flex-direction: column;
    gap: 15px;
  }
}
.pos-wrapper > .pos-primary {
  width: 100%;
}
.pos-wrapper > .pos-map {
  position: relative;
  max-width: 630px;
  width: 100%;
  overflow: hidden;
}
@media (max-width: 1199.98px) {
  .pos-wrapper > .pos-map {
    max-width: 390px;
  }
}
@media (max-width: 999.98px) {
  .pos-wrapper > .pos-map {
    max-width: 100%;
  }
}
.pos-primary {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 15px;
}
.pos-info {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 30px;
  width: 100%;
  flex: 1;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--light-grey);
}
@media (max-width: 1199.98px) {
  .pos-info {
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 15px;
  }
  .pos-info > * {
    width: 100%;
  }
}
.pos-map {
  position: relative;
  display: flex;
  flex-direction: column;
  align-self: stretch;
  min-height: 262px;
  border-radius: 15px;
  overflow: hidden;
}
.pos-map.fullscreen .pos-map--wrapper > * {
  height: 100%;
}
.pos-map--actions {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5px;
  width: fit-content;
  height: fit-content;
}
.pos-map--wrapper {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  flex: 1;
  width: 100%;
  height: 100%;
}
.pos-map--wrapper [id^=map-object] {
  width: 100%;
  height: 100%;
  flex: 1;
  aspect-ratio: 16/9;
}
.pos-map--wrapper [id^=map-object] [class*=-controls__toolbar_left], .pos-map--wrapper [id^=map-object] [class*=-controls__toolbar_right], .pos-map--wrapper [id^=map-object] [class*=-gototech], .pos-map--wrapper [id^=map-object] [class*=-gototaxi] {
  display: none;
}
.pos-header {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
}
@media (max-width: 719.98px) {
  .pos-header {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.pos-header > .pos-header-text {
  align-self: center;
  flex: 1 0 60%;
}
@media (min-width: 1200px) {
  .pos-header > .list-availability {
    padding-top: 15px;
  }
}
.pos-header > .selection-pos {
  align-self: center;
  flex: 1 0 60%;
}
.pos-header-text {
  margin: 0;
  text-align: left;
}
@media (max-width: 719.98px) {
  .pos-header-text {
    text-align: center;
  }
}
@media (min-width: 720px) {
  .pos-header-text span {
    white-space: nowrap;
  }
}
@media (max-width: 719.98px) {
  .pos-header .selection-wrapper {
    flex-direction: column;
  }
}
.pos-header .list-availability {
  justify-self: flex-end;
}
@media (max-width: 1199.98px) {
  .pos-header .list-availability {
    flex-direction: column;
    gap: 0;
  }
}
@media (max-width: 719.98px) {
  .pos-header .list-availability {
    flex-direction: row;
    gap: 20px;
    width: 100%;
  }
}
@media (max-width: 575.98px) {
  .pos-header .list-availability {
    justify-content: space-between;
  }
}
.pos-header > .tabs-switches {
  justify-self: flex-end;
}
.pos-body {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
@media (max-width: 999.98px) {
  .pos-body {
    gap: 20px;
  }
}
@media (max-width: 575.98px) {
  .pos-body {
    gap: 30px;
  }
}
@media (max-width: 999.98px) {
  .pos-body .chess-wrapper {
    left: -15px;
    width: calc(100% + 30px);
    padding: 0 15px;
  }
}

.chess {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
}
.chess-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
  padding-bottom: 10px;
  overflow-x: auto;
  overflow-y: hidden;
}
@supports (-moz-appearance: none) {
  .chess-wrapper {
    scrollbar-color: var(--navy) var(--light-grey);
    scrollbar-width: thin;
  }
}
.chess-wrapper::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
.chess-wrapper::-webkit-scrollbar-track {
  background: var(--light-grey);
  border-radius: 8px;
}
.chess-wrapper::-webkit-scrollbar-thumb {
  background: var(--navy);
  border-radius: 8px;
}
.chess-wrapper {
  transition: 0.25s ease-in-out;
}
@media (max-width: 999.98px) {
  .chess-wrapper {
    gap: 10px;
  }
}
@media (min-width: 1000px) {
  .chess-wrapper {
    cursor: grab;
  }
}
.chess-row {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 5px;
  min-width: fit-content;
  border-radius: 1000px;
  transition: 0.25s ease-in-out;
}
.chess-row:hover, .chess-row.active {
  background-color: var(--light-grey);
}
.chess-row:hover > .chess-number, .chess-row.active > .chess-number {
  background-color: var(--green);
  color: var(--white);
}
.chess-number {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 3;
  font-weight: 700;
  font-size: 24px;
  line-height: 115%;
}
@media (max-width: 999.98px) {
  .chess-number {
    font-size: 18px;
  }
}
.chess-number {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 54px;
  width: 54px;
  height: 54px;
  background-color: var(--light-grey);
  color: var(--main);
  user-select: none;
  border-radius: 1000px;
  transition: 0.25s ease-in-out;
}
@media (min-width: 1000px) {
  .chess-number {
    left: 3px;
    margin-top: 3px;
    margin-bottom: 3px;
  }
}
@media (max-width: 999.98px) {
  .chess-number {
    min-width: 50px;
    width: 50px;
    height: 50px;
  }
}
.chess-items {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: flex-start;
  flex-wrap: nowrap;
  gap: 5px;
  border-radius: 1000px;
  transition: 0.25s ease-in-out;
}
.chess-items:hover {
  background-color: var(--light-grey);
}

.map {
  position: relative;
  display: flex;
  flex-direction: row;
  align-self: stretch;
  gap: 10px;
  height: 100%;
  border-radius: 15px;
  overflow: hidden;
}
@media (max-width: 999.98px) {
  .map {
    flex-direction: column-reverse;
    max-height: 100%;
  }
}
.map.fullscreen .map-wrapper > * {
  height: 100%;
}
.map-side {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 15px;
  width: fit-content;
  height: calc(100% - 20px);
  margin: 10px;
  pointer-events: none;
  transform: translate(-390px, 0);
  transition: 0.25s ease-in-out;
}
.map-side.open {
  transform: translate(0, 0);
}
@media (max-width: 999.98px) {
  .map-side {
    top: auto;
    bottom: 0;
    flex-direction: column-reverse;
    gap: 0;
    width: 100%;
    height: unset;
    margin: 0;
    transform: translate(0, calc(100% - 55px));
  }
}
.map-side-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  pointer-events: all;
}
@media (max-width: 999.98px) {
  .map-side-actions {
    flex-direction: row;
    padding: 10px;
  }
}
.map-side-actions #toggleSidebar::before {
  display: inline-block;
  font-family: "prorealty";
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  font-size: small;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.map-side-actions #toggleSidebar[data-map-side-open]::before {
  content: "C";
}
@media (max-width: 999.98px) {
  .map-side-actions #toggleSidebar[data-map-side-open]::before {
    content: "B";
  }
}
.map-side-actions #toggleSidebar[data-map-side-open=false]::before {
  content: "D";
}
@media (max-width: 999.98px) {
  .map-side-actions #toggleSidebar[data-map-side-open=false]::before {
    content: "E";
  }
}
.map-list {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 10px;
  width: 380px;
  height: 100%;
  padding: 10px;
  border-radius: 15px;
  background-color: var(--white);
  box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.1);
  pointer-events: all;
}
@media (min-width: 1000px) {
  @supports (-moz-appearance: none) {
    .map-list {
      scrollbar-color: var(--navy) var(--light-grey);
      scrollbar-width: thin;
    }
  }
  .map-list::-webkit-scrollbar {
    width: 8px;
    height: 8px;
  }
  .map-list::-webkit-scrollbar-track {
    background: var(--light-grey);
    border-radius: 8px;
  }
  .map-list::-webkit-scrollbar-thumb {
    background: var(--navy);
    border-radius: 8px;
  }
  .map-list {
    counter-reset: item;
    scroll-behavior: smooth;
    overflow-x: hidden;
    overflow-y: auto;
  }
}
@media (max-width: 999.98px) {
  .map-list {
    top: auto;
    bottom: 0;
    width: 100%;
    height: unset;
  }
}
.map-list .pagination {
  display: none;
}
@media (max-width: 999.98px) {
  .map-list .pagination {
    display: flex;
    align-self: center;
  }
}
.map-items {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 10px;
  counter-reset: item;
}
@media (max-width: 999.98px) {
  .map-items {
    top: auto;
    bottom: 0;
    flex-direction: row;
    flex-wrap: nowrap;
    width: 100%;
    height: unset;
    margin: 0;
    scroll-snap-type: x mandatory;
    overflow-x: auto;
    overflow-y: hidden;
  }
  @supports (-moz-appearance: none) {
    .map-items {
      scrollbar-color: transparent transparent;
      scrollbar-width: none;
    }
  }
  .map-items::-webkit-scrollbar {
    width: 0;
    height: 0;
  }
}
.map-items > * {
  counter-increment: item;
  scroll-snap-align: center;
}
@media (max-width: 999.98px) {
  .map-items > * {
    min-width: 400px;
    max-width: 400px;
  }
}
@media (max-width: 575.98px) {
  .map-items > * {
    min-width: 100%;
  }
}
.map-items > *.selected, .map-items > *.active {
  order: -1;
}
.map-actions {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5px;
  width: fit-content;
  height: fit-content;
}
.map-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  flex: 1;
  width: 100%;
  max-height: 100vh;
  max-height: 100svh;
  height: 100%;
  min-height: 75vh;
  min-height: 75svh;
  overflow: hidden;
}
@media (max-width: 999.98px) {
  .map-inner {
    min-height: 85vh;
    min-height: 85svh;
  }
}
@media (max-width: 575.98px) {
  .map-inner {
    min-height: 75vh;
    min-height: 75svh;
  }
}
.map-wrapper {
  position: relative;
  z-index: -1;
  display: flex;
  flex-direction: column;
  flex: 1;
  width: 100%;
  height: 100%;
  border-radius: 15px;
  overflow: hidden;
}
.map-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  box-shadow: inset 0 8px 10px -8px rgba(0, 0, 0, 0.2), inset 0 -8px 10px -8px rgba(0, 0, 0, 0.2);
  border-radius: 15px;
  pointer-events: none;
  user-select: none;
}
.map-wrapper > [id^=map-object] {
  width: 100%;
  flex: 1;
  image-rendering: optimizeSpeed;
}
.map-wrapper > [id^=map-object] [class*=ymaps-2-1-79-balloon__tail]::after {
  background-color: var(--main);
}
.map-wrapper > [id^=map-object] .ymaps-2-1-79-balloon-content__header {
  display: none;
}
.map-wrapper > [id^=map-object] .ymaps-2-1-79-balloon__layout {
  overflow: unset;
}
.map-wrapper > [id^=map-object] .ymaps-2-1-79-balloon__close {
  position: absolute;
  top: -15px;
  right: -15px;
  left: auto;
  float: none;
  margin-bottom: unset;
}
.map-wrapper > [id^=map-object] .ymaps-2-1-79-balloon__close-button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: transparent;
  background-color: var(--main);
  color: var(--white);
  border-radius: 1000px;
}
.map-wrapper > [id^=map-object] .ymaps-2-1-79-balloon__close-button::before {
  content: "Y";
  display: inline-block;
  font-family: "prorealty";
  font-style: normal;
  font-weight: normal;
  font-size: 10px;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.map-wrapper > [id^=map-object] .ymaps-2-1-79-balloon__close + .ymaps-2-1-79-balloon__content {
  margin-right: unset;
  padding-right: 5px;
}
.map-wrapper > [id^=map-object] .ymaps-2-1-79-balloon, .map-wrapper > [id^=map-object] .ymaps-2-1-79-balloon__layout {
  background-color: transparent;
  border-radius: 15px;
  box-shadow: unset;
}
.map-wrapper > [id^=map-object] .ymaps-2-1-79-balloon__content {
  background-color: var(--main);
  border-radius: 15px;
  box-shadow: unset;
  padding: 5px;
}
@supports (-moz-appearance: none) {
  .map-wrapper > [id^=map-object] .ymaps-2-1-79-balloon__content > * {
    scrollbar-color: var(--navy) var(--light-grey);
    scrollbar-width: thin;
  }
}
.map-wrapper > [id^=map-object] .ymaps-2-1-79-balloon__content > *::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
.map-wrapper > [id^=map-object] .ymaps-2-1-79-balloon__content > *::-webkit-scrollbar-track {
  background: var(--light-grey);
  border-radius: 8px;
}
.map-wrapper > [id^=map-object] .ymaps-2-1-79-balloon__content > *::-webkit-scrollbar-thumb {
  background: var(--navy);
  border-radius: 8px;
}
.map-wrapper > [id^=map-object] .ymaps-2-1-79-balloon__content > * {
  padding: 5px;
  background-color: var(--white);
  border-radius: 10px;
}
.map-wrapper > [id^=map-object] [class*=-controls__toolbar_left], .map-wrapper > [id^=map-object] [class*=-controls__toolbar_right], .map-wrapper > [id^=map-object] [class*=-gototech], .map-wrapper > [id^=map-object] [class*=-gototaxi], .map-wrapper > [id^=map-object] [class*=-controls__control] {
  display: none;
}
.map-balloon {
  display: grid;
  grid-template-columns: 128px 1fr;
  gap: 10px;
  max-width: 400px;
  font-family: "Wix Madefor Display";
  text-decoration: none !important;
}
@media (max-width: 999.98px) {
  .map-balloon {
    grid-template-columns: 80px 1fr;
    max-width: calc(100vw - 40px);
  }
}
.map-balloon--image {
  display: flex;
  width: 128px;
  height: 80px;
  border-radius: 5px;
  overflow: hidden;
}
@media (max-width: 999.98px) {
  .map-balloon--image {
    width: 80px;
  }
}
.map-balloon--image * {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.map-balloon--header {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}
@media (max-width: 999.98px) {
  .map-balloon--header > .badge {
    color: #ffffff;
    border-color: #4fac7f;
    background-color: #4fac7f;
  }
}
.map-balloon--content {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.map-balloon--body {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.map-balloon--footer {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  grid-column-start: 1;
  grid-column-end: 3;
}
.map-balloon--more {
  grid-column-start: 1;
  grid-column-end: 3;
  margin-top: auto;
  margin-left: -5px;
  margin-right: -5px;
  margin-bottom: -10px;
  padding: 5px;
  background-color: var(--main);
}

.multi-balloon-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.no-results-message {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1 0 auto;
  max-width: 100%;
  width: 100%;
  height: 100%;
  padding: 100px 10px;
  text-align: center;
}
@media (max-width: 575.98px) {
  .no-results-message {
    padding: 50px 10px;
  }
}