/* app/frontend/src/utils/utils.scss */
@keyframes slide-bottom-up {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0px);
  }
}
.color-contrast-lower {
  color: hsl(0deg, 0%, 96%);
}
.color-contrast-low {
  color: hsl(212deg, 28%, 88%);
}
.color-contrast-medium {
  color: hsl(212deg, 19%, 60%);
}
.color-contrast-high {
  color: hsl(212deg, 27%, 18%);
}
.color-contrast-higher {
  color: hsl(240deg, 8%, 12%);
}
.bg-contrast-lower {
  background: hsl(0deg, 0%, 96%);
}
.bg-contrast-low {
  background: hsl(212deg, 28%, 88%);
}
.has-border {
  border-width: 1px;
  border-style: solid;
}
.border-contrast-low {
  border-color: hsl(212deg, 28%, 88%);
}
.color-primary {
  color: hsl(211deg, 98%, 63%);
}
.color-success {
  color: hsl(155deg, 84%, 45%);
}
.color-error {
  color: hsl(2deg, 64%, 58%);
}
.bg-success-lighter {
  background-color: hsl(155deg, 84%, 96%);
}
.color-grey-1 {
  color: #212d3a;
}
.color-grey-2 {
  color: #677a8d;
}
.color-grey-3 {
  color: #8598ac;
}
.color-grey-4 {
  color: #9fb2c6;
}
.color-grey-5 {
  color: #d8e0e9;
}
.color-grey-6 {
  color: #e9edf1;
}
.color-grey-7 {
  color: #f2f4f7;
}
.color-grey-8 {
  color: #f6f8f9;
}
.bg-blue-feint {
  background-color: #ecf5ff;
}
.grid {
  display: flex;
  flex-wrap: wrap;
}
.grid > * {
  flex-basis: 100%;
  max-width: 100%;
  min-width: 0;
}
.grid.gap {
  margin-bottom: -0.75em;
  margin-left: -0.75em;
}
.grid.gap > * {
  padding-bottom: 0.75em;
  padding-left: 0.75em;
}
.col {
  flex-grow: 1;
  flex-basis: 0;
  max-width: 100%;
}
@media (min-width: 992px) {
  .col-4\@md {
    flex-basis: 33.333333333%;
    max-width: 33.333333333%;
  }
}
.margin-0 {
  margin: 0;
}
.margin-bottom-0,
.mb-0 {
  margin-bottom: 0;
}
.margin-bottom-xs {
  margin-bottom: 0.5em;
}
.margin-bottom-md {
  margin-bottom: 1.25em;
}
.margin-right-xxxs {
  margin-right: 0.25em;
}
.margin-right-xxs {
  margin-right: 0.375em;
}
.margin-right-xs {
  margin-right: 0.5em;
}
.margin-top-0,
.mt-0 {
  margin-top: 0;
}
.margin-top-sm,
.mt-sm {
  margin-top: 0.75em;
}
.margin-top-md,
.mt-md {
  margin-top: 1.25em;
}
.padding-xs {
  padding: 0.5em;
}
.padding-sm {
  padding: 0.75em;
}
.padding-md {
  padding: 1.25em;
}
.padding-lg {
  padding: 2em;
}
.padding-xl {
  padding: 3.25em;
}
.text-xs {
  font-size: 0.625rem;
}
.text-sm {
  font-size: 0.75rem;
}
.text-root {
  font-size: 1rem;
}
.text-base {
  font-size: 0.875rem;
}
.text-md {
  font-size: 0.9375rem;
}
.text-lg {
  font-size: 1.125rem;
}
.text-xl {
  font-size: 1.5rem;
}
.text-xxl {
  font-size: 1.625rem;
}
.text-xxxl {
  font-size: 2.5rem;
}
.text-xxxxl {
  font-size: 3.125rem;
}
.text-strong {
  font-weight: 600;
}
.font-light {
  font-weight: 300;
}
.font-normal {
  font-weight: 400;
}
.font-bold {
  font-weight: 500;
}
.font-strong {
  font-weight: 600;
}
.font-fat {
  font-weight: 700;
}
.no-break {
  white-space: nowrap;
}
.line-height-small {
  line-height: 1.5;
}
.line-height-2 {
  line-height: 2;
}
.reset {
  background-color: transparent;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: inherit;
  line-height: inherit;
  appearance: none;
}
.reset i {
  font-style: normal;
}
.icon {
  display: inline-block;
  color: inherit;
  fill: currentColor;
  height: 1em;
  width: 1em;
  line-height: 1;
  flex-shrink: 0;
  max-width: initial;
}
.relative {
  position: relative;
}
.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.break-word {
  overflow-wrap: break-word;
  min-width: 0;
}
.flex {
  display: flex;
}
.inline-flex {
  display: inline-flex;
}
.flex-grow {
  flex-grow: 1;
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}
.justify-end {
  justify-content: flex-end;
}
.flip-horizontal {
  transform: rotate(180deg);
}
.blur3 {
  filter: blur(3px);
  width: calc(100% + 10px);
  height: calc(100% + 10px);
  margin-top: -5px;
  margin-left: -5px;
}
.animate-to {
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  transform: translateY(25px);
  transform-origin: bottom center;
  opacity: 0;
  visibility: hidden;
  right: auto;
}
.animate-to.shown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.visibility-toggle {
  transition: opacity 0.3s ease;
}
.visibility-toggle.invisible {
  opacity: 0;
}
.tilted-image {
  border-radius: 3px;
  border: 3px solid #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transform: rotate(-3deg);
}
.media {
  display: flex;
  align-items: flex-start;
}
.media-body {
  flex: 1;
}
.rounded-10 {
  border-radius: 10px;
}
.strike-through {
  position: relative;
}
.strike-through::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  border-top: 1px solid #677A8D;
}

/* app/frontend/src/components/form/switch.scss */
@keyframes slide-bottom-up {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0px);
  }
}
.toggle-btn {
  position: relative;
  display: inline-block;
  width: 86px;
  height: 36px;
  margin: 0;
}
.toggle-btn input {
  display: none;
}
.toggle-btn .slider-with-border--off {
  top: 7px !important;
}
.toggle-btn .slider-with-border--on {
  top: 7px !important;
}
.toggle-btn .slider {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  cursor: pointer;
  background-color: #9fb2c6;
  transition: 0.4s;
}
.toggle-btn .slider.round {
  border-radius: 50px;
}
.toggle-btn .slider.round:before {
  border-radius: 50%;
}
.toggle-btn .slider.bordered-slider:before {
  bottom: 1px;
  left: 1px;
}
.toggle-btn .slider.bordered-slider .slider--off,
.toggle-btn .slider.bordered-slider .slider--on {
  top: 7px !important;
}
.toggle-btn .slider:before {
  content: "";
  position: absolute;
  height: 4px;
  width: 4px;
  left: 3px;
  bottom: 3px;
  border: 13px solid #fff;
  transition: 0.4s;
  box-sizing: content-box;
}
.toggle-btn .slider--off {
  position: absolute;
  right: 21px;
  top: 9px;
  transition: 0.2s;
  -webkit-user-select: none;
          user-select: none;
  opacity: 1;
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  color: #fff;
}
.toggle-btn .slider--on {
  position: absolute;
  left: 16px;
  top: 9px;
  transition: 0.2s;
  -webkit-user-select: none;
          user-select: none;
  opacity: 0;
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  color: #fff;
}
.toggle-btn input:checked + .slider {
  background-color: hsl(155deg, 84%, 45%);
}
.toggle-btn input:checked + .slider:before {
  transform: translateX(50px);
}
.toggle-btn input:checked + .slider.slider--disabled {
  pointer-events: none;
}
.toggle-btn input:checked + .slider.slider--disabled span {
  left: auto;
  right: auto;
  width: 100%;
}
.toggle-btn input:checked + .slider.slider--disabled:before {
  display: none;
}
.toggle-btn input:checked + .slider.slider--warning {
  background-color: hsl(35deg, 84%, 62%);
}
.toggle-btn input:checked + .slider .slider--on {
  opacity: 1;
}
.toggle-btn input:checked + .slider .slider--off {
  opacity: 0;
}
.toggle-btn input:not(:checked) + .slider.slider--disabled {
  pointer-events: none;
}
.toggle-btn input:not(:checked) + .slider.slider--disabled span {
  left: auto;
  right: auto;
  width: 100%;
}
.toggle-btn input:not(:checked) + .slider.slider--disabled:before {
  display: none;
}
.toggle-btn input:focus + .slider {
  box-shadow: 0 0 1px hsl(155deg, 84%, 45%);
}
.toggle-btn--xl {
  width: 118px;
}
.toggle-btn--xl .slider:before {
  left: 4px;
}
.toggle-btn--xl .slider--off {
  right: 18px;
}
.toggle-btn--xl .slider--on {
  left: 30px;
}
.toggle-btn--xl input:checked + .slider:before {
  transform: translateX(80px);
}
.toggle-btn--xxl {
  width: 142px;
}
.toggle-btn--xxl .slider:before {
  left: 4px;
}
.toggle-btn--xxl .slider--off {
  right: 22px;
}
.toggle-btn--xxl .slider--on {
  left: 36px;
}
.toggle-btn--xxl input:checked + .slider:before {
  transform: translateX(104px);
}

/* app/frontend/src/components/flash_message/flash_message.scss */
@keyframes slide-bottom-up {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0px);
  }
}
.flash-message {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  right: auto;
  z-index: 1060;
  background-color: rgba(33, 45, 58, 0.9);
  box-shadow: 0 2px 30px rgba(33, 45, 58, 0.5);
  border-radius: 0.75em;
  color: hsl(0deg, 0%, 100%);
  text-align: center;
  font-size: 0.875rem;
  transition: 0.3s ease;
  transform: translate3d(-50%, 16px, 0);
  transform-origin: bottom left;
  opacity: 0;
  visibility: hidden;
}
@media (min-width: 768px) {
  .flash-message {
    font-size: 1rem;
  }
}
.flash-message li {
  text-align: left;
  margin-bottom: 0.5em;
  display: inline-flex;
  align-items: flex-start;
}
.flash-message li .icon {
  width: 1.14285714em;
  height: 1.14285714em;
  margin-top: 0.1em;
}
.flash-message--warning {
  background-color: rgb(253, 76, 69);
  width: 85vw;
  max-width: 45em;
}
.flash-message__inner {
  position: relative;
  padding: 1em 1.5em;
}
.flash-message__text a {
  color: inherit;
  text-decoration: underline;
}
.flash-message__close {
  width: 2.5em;
  height: 2.5em;
  background-color: hsl(0deg, 0%, 100%);
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.12), 0 2px 4px rgba(0, 0, 0, 0.24);
  color: hsl(210deg, 16%, 48%);
  border-radius: 50%;
  transition: 0.2s;
  outline: 0;
  border: 0;
  padding: 0;
  position: absolute;
  right: -1.25em;
  top: -1.25em;
}
.flash-message__close:focus,
.flash-message__close:hover {
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.14), 0 4px 8px rgba(0, 0, 0, 0.28);
}
.flash-message__close .icon {
  display: block;
  margin: auto;
  width: 0.85em;
  height: 0.85em;
}
.flash-message--is-visible {
  opacity: 1;
  visibility: visible;
  transition: all 0.3s ease;
  transform: translate3d(-50%, 0, 0);
}

/* app/frontend/src/components/form/validate.scss */
@keyframes slide-bottom-up {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0px);
  }
}
.validate-form input:invalid:focus,
.validate-form select:invalid:focus,
.validate-form textarea:invalid:focus {
  border-color: hsl(35deg, 84%, 62%);
  box-shadow: 0 0 3px 1px hsl(35deg, 84%, 94%);
}
.validate-form input:focus,
.validate-form select:focus,
.validate-form textarea:focus {
  border-color: hsl(211deg, 98%, 63%);
  box-shadow: 0 0 3px 1px hsl(211deg, 98%, 97%);
}
.validate-form input[type=checkbox]:invalid:focus + label::after {
  border-color: hsl(35deg, 84%, 62%);
  box-shadow: 0 0 3px 1px hsl(35deg, 84%, 94%);
}

/* app/frontend/src/components/notifications/notifications.scss */
@keyframes slide-bottom-up {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0px);
  }
}
.notif {
  position: relative;
  z-index: 1;
  background: hsl(0deg, 0%, 100%);
  font-size: 0.875rem;
}
.notif__item:not(:last-child) {
  border-bottom: 1px solid hsl(0deg, 0%, 96%);
}
.notif__link {
  display: flex;
  padding: 15px;
  text-decoration: none;
  color: inherit;
  transition: 0.2s;
  white-space: normal;
}
.notif__link:hover {
  text-decoration: none;
  color: inherit;
  background-color: hsl(0deg, 0%, 96%);
}
.notif__figure {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  margin-right: 10px;
}
.notif__figure > * {
  position: relative;
  z-index: 1;
}
.notif__figure img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.notif__figure::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background-color: currentColor;
  opacity: 0.15;
}
.notif__body {
  flex-grow: 1;
  margin-right: 10px;
  font-weight: 400;
  color: hsl(212deg, 27%, 18%);
}
.notif__message {
  padding-top: 2.5px;
}
.notif__message .user {
  font-weight: 600;
}
.notif__timestamp {
  margin-top: 4px;
  font-size: 0.75rem;
  color: hsl(212deg, 19%, 60%);
}
.notif__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: hsl(211deg, 98%, 63%);
  align-self: center;
  flex-shrink: 0;
}

/* app/frontend/src/components/sidenav/sidenav.scss */
@keyframes slide-bottom-up {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0px);
  }
}
.sidenav {
  margin-top: 2em;
  margin-bottom: 2em;
  font-size: 0.875rem;
}
@media (min-width: 992px) {
  .sidenav {
    margin-top: 0;
    padding-right: 40px;
  }
}
.sidenav__control {
  width: 100%;
  padding: 0.75em;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sidenav__control-text {
  position: relative;
}
.sidenav__control-label-default {
  display: inline-block;
  transition: opacity 0.4s, transform 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.sidenav__control-label-active {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
}
.sidenav__icon-arrow {
  margin-left: 0.25em;
  display: inline-block;
  color: inherit;
  fill: currentColor;
  height: 1em;
  width: 1em;
  line-height: 1;
  flex-shrink: 0;
  max-width: initial;
}
.sidenav__icon-arrow .icon__group {
  will-change: transform;
  transform-origin: 8px 8px;
  transition: transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.sidenav__icon-arrow .icon__group > * {
  transform-origin: 8px 8px;
  stroke-dasharray: 17;
  transform: translateY(3px);
  transition: transform 0.3s, stroke-dashoffset 0.3s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.sidenav__icon-arrow .icon__group > *:first-child {
  stroke-dashoffset: 8.5;
}
.sidenav__icon-arrow .icon__group > *:last-child {
  stroke-dashoffset: 8.5;
}
.sidenav__list:not(:last-child) {
  margin-bottom: 1.6em;
}
.sidenav__label {
  margin-bottom: 0.35em;
  font-size: 0.75rem;
  color: #a1b0bf;
}
.sidenav__link {
  position: relative;
  display: flex;
  align-items: center;
  font-weight: 400;
  color: hsl(210deg, 16%, 48%);
  transition: 0.2s;
}
.sidenav__link:hover,
.sidenav__link:focus {
  text-decoration: none;
}
.sidenav__missing {
  margin-right: 0.2em;
  width: 20px;
  height: 20px;
}
.sidenav__badge {
  margin-left: 0.5em;
}
.sidenav__badge--warning {
  background-color: hsl(2deg, 64%, 58%);
  color: #fff;
}
.sidenav__badge--succes {
  background-color: hsl(155deg, 84%, 45%);
  color: #fff;
}
.sidenav:not(.sidenav--static) {
  border-radius: 0.25em;
  background-color: #fff;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.12), 0 2px 4px rgba(0, 0, 0, 0.24);
  transition: 0.3s;
}
.sidenav:not(.sidenav--static):hover {
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.14), 0 4px 8px rgba(0, 0, 0, 0.28);
}
.sidenav:not(.sidenav--static) .sidenav__nav {
  display: none;
  margin-top: 0.375em;
  padding-bottom: 1em;
}
.sidenav:not(.sidenav--static) .sidenav__label {
  padding-left: 1.59em;
}
.sidenav:not(.sidenav--static) .sidenav__link-text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sidenav:not(.sidenav--static) .sidenav__link {
  padding: 1em 1.25em;
}
.sidenav:not(.sidenav--static) .sidenav__link:hover,
.sidenav:not(.sidenav--static) .sidenav__link:focus {
  color: hsl(240deg, 8%, 12%);
  background-color: hsl(0deg, 0%, 96%);
}
.sidenav:not(.sidenav--static) .sidenav__link[aria-current=page] {
  color: #fff;
  background-color: hsl(211deg, 98%, 63%);
}
.sidenav:not(.sidenav--static) .sidenav__link[aria-current=page] .sidenav__icon {
  fill: #fff;
}
.sidenav:not(.sidenav--static) .sidenav__link-active-icon {
  display: none;
}
.sidenav:not(.sidenav--static).sidenav--expanded .sidenav__control-label-default {
  transform: translateY(10px);
  opacity: 0;
  pointer-events: none;
}
.sidenav:not(.sidenav--static).sidenav--expanded .sidenav__control-label-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.sidenav:not(.sidenav--static).sidenav--expanded .sidenav__nav {
  display: block;
  animation: slide-bottom-up 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.sidenav:not(.sidenav--static).sidenav--expanded .sidenav__icon-arrow .icon__group {
  transform: rotate(-90deg);
}
.sidenav:not(.sidenav--static).sidenav--expanded .sidenav__icon-arrow .icon__group > * {
  stroke-dashoffset: 0;
  transform: translateY(0px);
}
.sidenav:not(.sidenav--static) .sidenav__separator {
  display: none;
}
.sidenav--static {
  margin-top: 0;
}
.sidenav--static .sidenav__control {
  display: none;
}
.sidenav--static .sidenav__list:not(:last-child) {
  margin-bottom: 2em;
}
.sidenav--static .sidenav__link {
  font-weight: 500;
}
.sidenav--static .sidenav__link:hover,
.sidenav--static .sidenav__link[aria-current=page] {
  color: hsl(240deg, 8%, 12%);
}
.sidenav--static .sidenav__link-text {
  margin-top: 0.6em;
  margin-bottom: 0.6em;
}
.sidenav--static .sidenav__link[aria-current=page]:hover {
  cursor: default;
}
.sidenav--static .sidenav__separator {
  margin-bottom: 35px;
}
html:not(.js) .sidenav .sidenav__nav {
  display: block;
}
[class*=sidenav--static]::before {
  display: none;
  content: "collapsed";
}
@media (min-width: 768px) {
  .sidenav--static-md::before {
    content: "static";
  }
}
.mobile_menu .sidenav {
  font-size: 16px;
}
.mobile_menu .sidenav__list:not(:last-child) {
  margin-bottom: 0;
}
.mobile_menu .sidenav__list-item {
  margin-bottom: 13px;
}
.mobile_menu .sidenav__list.reset-list:first-of-type {
  margin: 0.5rem 0 1.5rem 0;
}
.mobile_menu .sidenav__link-text {
  color: #212D3A;
}

/* app/frontend/src/components/socials/socials.scss */
@keyframes slide-bottom-up {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0px);
  }
}
.social-icons {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.post-wrapper .social-icons {
  margin-bottom: 2rem;
}
.social-icons a:last-child {
  margin-right: 0;
}
.social-icons .copy-url {
  padding: 8.5px 15px;
  font-size: 12px;
  color: #677A8D;
  border-radius: 17px;
  background-color: hsl(0deg, 0%, 96%);
  transition: 0.3s;
  height: 34px;
}
.social-icons .copy-url:hover {
  color: hsl(212deg, 27%, 18%);
}
.social-item {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin: 0 6px 5px 0;
  border-radius: 17px;
  background-color: hsl(0deg, 0%, 96%);
  transition: 0.3s;
  height: 34px;
  width: 34px;
}
.social-item:hover {
  background-color: hsl(212deg, 28%, 88%);
}
.colored .social-item.facebook {
  color: #3b5998;
}
.colored .social-item.whatsapp {
  color: #25b33c;
}
.colored .social-item.twitter {
  color: #25a1f2;
}
.colored .social-item.pinterest {
  color: #bd2125;
}
.sidebar .social-icons {
  justify-content: center;
}
.sidebar .social-item,
.site-footer .social-item {
  background-color: hsl(212deg, 28%, 88%);
  color: hsl(210deg, 16%, 48%);
}
.sidebar .social-item:hover,
.site-footer .social-item:hover {
  color: hsl(212deg, 27%, 18%);
}

/* app/frontend/src/components/dropzone/dropzone.scss */
@keyframes slide-bottom-up {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0px);
  }
}
@keyframes passing-through {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  30%, 70% {
    opacity: 1;
    transform: translateY(0px);
  }
  100% {
    opacity: 0;
    transform: translateY(-40px);
  }
}
@keyframes slide-in {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  30% {
    opacity: 1;
    transform: translateY(0px);
  }
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  10% {
    transform: scale(1.1);
  }
  20% {
    transform: scale(1);
  }
}
.dropzone {
  min-height: 9.75rem;
  padding: 0.5rem;
  border: 0.125rem dashed #449DFD;
  border-radius: 6px;
  background: #ECF5FF;
}
.dropzone.dz-clickable {
  cursor: pointer;
}
.dropzone.dz-clickable * {
  cursor: default;
}
.dropzone.dz-clickable .dz-message {
  cursor: pointer;
}
.dropzone.dz-clickable .dz-message * {
  cursor: pointer;
}
.dropzone.dz-started .dz-message {
  display: none;
}
.dropzone.dz-drag-hover {
  border-color: hsl(155deg, 84%, 45%);
  background: hsl(155deg, 84%, 96%);
}
.dropzone.dz-drag-hover .dz-message {
  opacity: 0.5;
  color: hsl(155deg, 84%, 45%);
}
.dropzone.dz-drag-hover .dz-message span:before {
  background-image: svg-uri("<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='hsl(155deg, 84%, 45%)' d='M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM14 13v4h-4v-4H7l5-5 5 5h-3z'/></svg>");
}
.dropzone.is-valid {
  border-color: hsl(155deg, 84%, 45%);
}
.dropzone.is-valid .dz-message {
  color: hsl(155deg, 84%, 45%);
}
.dropzone.is-valid .dz-message span:before {
  background-image: svg-uri("<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='hsl(155deg, 84%, 45%)' d='M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM10 17l-3.5-3.5 1.41-1.41L10 14.17 15.18 9l1.41 1.41L10 17z'/></svg>");
}
.dropzone.is-invalid {
  border-color: hsl(2deg, 64%, 58%);
}
.dropzone.is-invalid .dz-message {
  color: hsl(2deg, 64%, 58%);
}
.dropzone.is-invalid .dz-message span:before {
  background-image: svg-uri("<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='hsl(2deg, 64%, 58%)' d='M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM19 18H6c-2.21 0-4-1.79-4-4s1.79-4 4-4h.71C7.37 7.69 9.48 6 12 6c3.04 0 5.5 2.46 5.5 5.5v.5H19c1.66 0 3 1.34 3 3s-1.34 3-3 3z'/></svg>");
}
.dropzone .dz-preview .dz-details .dz-size {
  margin-bottom: 1em;
  font-size: 0.9375rem;
}
.dropzone .dz-preview .dz-details .dz-filename {
  white-space: nowrap;
}
.dropzone .dz-preview .dz-details .dz-filename:not(:hover) {
  overflow: hidden;
  text-overflow: ellipsis;
}
.dropzone .dz-preview:hover .dz-details {
  opacity: 1;
}
.dropzone .dropzone-msg-title__container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 10px 0 30px;
  gap: 6px;
  color: hsl(212deg, 19%, 60%);
}
.dropzone .dropzone-msg-title__first-line {
  font-size: 0.8125rem;
}
.dropzone .dropzone-msg-title__first-line u {
  font-weight: 500;
}
.dropzone .dropzone-msg-title__second-line {
  font-size: 0.75rem;
  font-weight: 300;
}
.dropzone .dz-message span:before {
  display: block;
  position: relative;
  top: 0;
  left: calc(50% - 2.5rem / 2);
  width: 2.5rem;
  height: 2.5rem;
  content: "";
  background-image: svg-uri("<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='hsl(211deg, 98%, 63%)' d='M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM14 13v4h-4v-4H7l5-5 5 5h-3z'/></svg>");
  background-size: 2.5rem 2.5rem;
  background-position: center center;
  background-repeat: no-repeat;
}
.dropzone .dz-preview {
  position: relative;
  display: inline-block;
  min-height: 5rem;
  margin: 0.5rem;
  vertical-align: top;
  background-color: #fff;
}
.dropzone .dz-preview:hover {
  z-index: 1000;
}
.dropzone .dz-preview:hover .dz-details {
  opacity: 1;
}
.dropzone .dz-preview.dz-file-preview .dz-image {
  background-color: hsl(211deg, 98%, 97%);
}
.dropzone .dz-preview.dz-file-preview .dz-image:hover {
  background-color: hsl(211deg, 98%, 63%);
}
.dropzone .dz-preview.dz-file-preview .dz-details {
  opacity: 1;
}
.dropzone .dz-preview.dz-image-preview .dz-details {
  transition: opacity 200ms linear;
}
.dropzone .dz-preview .dz-remove {
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 1.65rem;
  width: 1.65rem;
  font-size: 1rem;
  text-indent: -9999px;
  white-space: nowrap;
  position: absolute;
  z-index: 11;
  border-radius: 100%;
  top: -0.825rem;
  right: -0.825rem;
  background-position: 60% 50%;
  background-color: hsl(212deg, 28%, 88%);
  background-size: 50%;
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.014.655a1.657 1.657 0 0 0-1.656 1.657v.557H.587a.55.55 0 1 0 0 1.1h.557v9.964a1.104 1.104 0 0 0 1.104 1.103h8.854a1.104 1.104 0 0 0 1.103-1.103V3.969h.556a.55.55 0 1 0 0-1.1H9.991v-.557A1.657 1.657 0 0 0 8.335.655h-3.32ZM9.438 3.97H11.105v9.964l-.001.002-.001.001H2.245V3.968h7.193Zm-.547-1.1v-.557a.557.557 0 0 0-.556-.557h-3.32a.557.557 0 0 0-.557.557v.557H8.89Zm-3.877 3.32a.55.55 0 0 1 .55.55v4.427a.55.55 0 0 1-1.1 0V6.74a.55.55 0 0 1 .55-.55Zm3.87.55a.55.55 0 0 0-1.1 0v4.427a.55.55 0 0 0 1.1 0V6.74Z' fill='%23677A8D'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
}
.dropzone .dz-preview .dz-remove:hover {
  background-color: #fff;
}
.dropzone .dz-preview:hover .dz-details {
  opacity: 1;
}
.dropzone .dz-preview .dz-details {
  z-index: 20;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  font-size: 0.8125rem;
  min-width: 100%;
  max-width: 100%;
  padding: 2em 1em;
  text-align: center;
  color: hsl(212deg, 27%, 18%);
  line-height: 150%;
}
.dropzone .dz-preview .dz-details .dz-size span,
.dropzone .dz-preview .dz-details .dz-filename span {
  background-color: rgba(255, 255, 255, 0.4);
  padding: 0 0.4em;
  border-radius: 3px;
}
.dropzone .dz-preview .dz-details .dz-size:not(:hover),
.dropzone .dz-preview .dz-details .dz-filename:not(:hover) {
  overflow: hidden;
  text-overflow: ellipsis;
}
.dropzone .dz-preview .dz-details .dz-filename:hover span {
  border: 1px solid rgba(200, 200, 200, 0.8);
  background-color: rgba(255, 255, 255, 0.8);
}
.dropzone .dz-preview .dz-image {
  overflow: hidden;
  width: 7.5rem;
  height: 7.5rem;
  position: relative;
  display: block;
  z-index: 10;
}
.dropzone .dz-preview .dz-image img {
  display: block;
}
.dropzone .dz-preview.dz-success .dz-success-mark {
  animation: passing-through 300ms cubic-bezier(0.77, 0, 0.175, 1);
}
.dropzone .dz-preview.dz-error .dz-error-mark {
  opacity: 1;
  animation: slide-in 300ms cubic-bezier(0.77, 0, 0.175, 1);
}
.dropzone .dz-preview .dz-success-mark,
.dropzone .dz-preview .dz-error-mark {
  pointer-events: none;
  opacity: 0;
  z-index: 500;
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  margin-top: -1.5rem;
  margin-left: -1.5rem;
}
.dropzone .dz-preview .dz-success-mark svg,
.dropzone .dz-preview .dz-error-mark svg {
  display: block;
  width: 3rem;
  height: 3rem;
}
.dropzone .dz-preview .dz-success-mark svg * {
  fill: hsl(155deg, 84%, 45%);
  fill-opacity: 1;
}
.dropzone .dz-preview .dz-error-mark svg * {
  fill: hsl(2deg, 64%, 58%);
  fill-opacity: 1;
}
.dropzone .dz-preview.dz-processing .dz-progress {
  opacity: 1;
  transition: all 200ms linear;
}
.dropzone .dz-preview.dz-complete .dz-progress {
  opacity: 0;
  transition: opacity 400ms ease-in;
}
.dropzone .dz-preview:not(.dz-processing) .dz-progress {
  animation: pulse 6s ease infinite;
}
.dropzone .dz-preview .dz-progress {
  opacity: 1;
  z-index: 1000;
  pointer-events: none;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 5rem;
  height: 1rem;
  margin-top: -0.5rem;
  margin-left: -2.5rem;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.6);
  -webkit-transform: scale(1);
  overflow: hidden;
}
.dropzone .dz-preview .dz-progress .dz-upload {
  background: hsl(155deg, 84%, 45%);
  background:
    linear-gradient(
      to bottom,
      hsl(155deg, 84%, 45%),
      hsl(155deg, 84%, 25%));
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 0;
  transition: width 300ms ease-in-out;
}
.dropzone .dz-preview.dz-error .dz-error-message {
  display: block;
}
.dropzone .dz-preview.dz-error:hover .dz-error-message {
  opacity: 1;
  pointer-events: auto;
}
.dropzone .dz-preview .dz-error-message {
  pointer-events: none;
  z-index: 1000;
  position: absolute;
  display: block;
  display: none;
  top: 8rem;
  left: -0.5rem;
  width: 8.5rem;
  padding: 0.25rem 0.5rem;
  border-radius: 2px;
  background: hsl(2deg, 64%, 58%);
  font-size: 0.75rem;
  color: white;
  opacity: 0;
  transition: opacity 300ms ease;
}
.dropzone .dz-preview .dz-error-message:after {
  content: "";
  position: absolute;
  top: -0.5rem;
  left: 3.75rem;
  width: 0;
  height: 0;
  border-left: 0.5rem solid transparent;
  border-right: 0.5rem solid transparent;
  border-bottom: 0.5rem solid hsl(2deg, 64%, 58%);
}

/* app/frontend/src/components/details/details.scss */
.details__summary {
  cursor: pointer;
  -webkit-user-select: none;
          user-select: none;
  padding-top: 9px;
}
.details__summary:not(.progress__summary) {
  display: inline-block;
}
.details__summary .icon-custom {
  transition: transform 0.2s;
  flex-shrink: 0;
}
.details__icon {
  margin-right: 0.35em;
}
details[open] > summary > .flex > .details__icon {
  transform: rotate(90deg);
}
.details__label {
  margin-top: 2px;
}
.js .details__summary {
  list-style: none;
}
.js .details__summary::-webkit-details-marker {
  display: none;
}
.js .details__summary[aria-expanded=true] .icon-custom {
  transform: rotate(90deg);
}
.js .details__content[aria-hidden=true] {
  display: none;
}
html:not(.js) .details__summary .icon {
  display: none;
}

/* app/frontend/src/components/accordion/accordion.scss */
@keyframes slide-bottom-up {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0px);
  }
}
.accordion__item {
  border-style: solid;
  border-color: hsl(212deg, 28%, 88%);
  border-width: 0 0 1px 0;
}
.accordion__item:first-child {
  border-top-width: 1px;
}
.accordion__header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  cursor: pointer;
}
.accordion__header .icon {
  font-size: 10px;
}
.accordion__header .icon .icon__group {
  stroke-width: 1px;
}
.accordion__icon-arrow .icon__group {
  will-change: transform;
  transform-origin: 8px 8px;
}
.accordion__icon-arrow .icon__group > * {
  transform-origin: 8px 8px;
  stroke-dasharray: 17;
  transform: translateY(3px);
}
.accordion__icon-arrow .icon__group > *:first-child {
  stroke-dashoffset: 8.5;
}
.accordion__icon-arrow .icon__group > *:last-child {
  stroke-dashoffset: 8.5;
}
.accordion__item--is-open > .accordion__header > .accordion__icon-arrow .icon__group > *:first-child {
  transform: translateY(-3px) rotate(-90deg);
}
.accordion__item--is-open > .accordion__header > .accordion__icon-arrow .icon__group > *:last-child {
  transform: translateY(-3px) rotate(90deg);
}
.js .accordion__panel {
  display: none;
  will-change: height;
  transform: translateZ(0px);
}
.js .accordion__item--is-open > .accordion__panel {
  display: block;
}
.accordion[data-animation=on] .accordion__item--is-open .accordion__panel > * {
  animation: accordion-entry-animation 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.accordion[data-animation=on] .accordion__icon-arrow .icon__group {
  transition: transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.accordion[data-animation=on] .accordion__icon-arrow .icon__group > * {
  transition: transform 0.3s, stroke-dashoffset 0.3s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
@keyframes accordion-entry-animation {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0px);
  }
}

/* app/frontend/src/components/popover/popover.scss */
@keyframes slide-bottom-up {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0px);
  }
}
.popover--vanilla {
  position: fixed;
  width: 250px;
  z-index: 1030;
  margin-top: 10px;
  margin-bottom: 10px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.14), 0 4px 8px rgba(0, 0, 0, 0.28);
  border-radius: 0.25em;
  outline: 0;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s 0.2s, opacity 0.2s;
}
.popover__content {
  background-color: hsl(0deg, 0%, 100%);
  padding: 20px;
  font-weight: 400;
  font-size: 14px;
}
.popover__title {
  margin-top: 0;
  font-weight: 700;
  font-size: 1.1875em;
}
.popover--is-visible {
  visibility: visible;
  opacity: 1;
  transition: visibility 0s, opacity 0.2s;
}

/* app/frontend/src/components/modal/modal.scss */
@keyframes slide-bottom-up {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0px);
  }
}
.listings .js-modal,
.cookies .js-modal,
.financial-actions .js-modal,
.settlement .js-modal,
.financial_overview .js-modal,
.partner_insurance_update .js-modal,
.accept_change_dates .js-modal,
.decline_change_dates .js-modal,
.blocked_periods .js-modal,
.check_in_out_modal .js-modal,
.booking_cancellation_modal .js-modal,
.listings_setup .js-modal {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1050;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  opacity: 0;
  visibility: hidden;
  background: hsla(212, 27%, 18%, 0.9);
  padding: 2rem;
}
@media (max-width: 767px) {
  .listings .js-modal,
  .cookies .js-modal,
  .financial-actions .js-modal,
  .settlement .js-modal,
  .financial_overview .js-modal,
  .partner_insurance_update .js-modal,
  .accept_change_dates .js-modal,
  .decline_change_dates .js-modal,
  .blocked_periods .js-modal,
  .check_in_out_modal .js-modal,
  .booking_cancellation_modal .js-modal,
  .listings_setup .js-modal {
    padding: 1.2rem;
  }
}
.listings .js-modal:not(.modal--is-visible),
.cookies .js-modal:not(.modal--is-visible),
.financial-actions .js-modal:not(.modal--is-visible),
.settlement .js-modal:not(.modal--is-visible),
.financial_overview .js-modal:not(.modal--is-visible),
.partner_insurance_update .js-modal:not(.modal--is-visible),
.accept_change_dates .js-modal:not(.modal--is-visible),
.decline_change_dates .js-modal:not(.modal--is-visible),
.blocked_periods .js-modal:not(.modal--is-visible),
.check_in_out_modal .js-modal:not(.modal--is-visible),
.booking_cancellation_modal .js-modal:not(.modal--is-visible),
.listings_setup .js-modal:not(.modal--is-visible) {
  pointer-events: none;
  background-color: transparent;
}
.listings .modal--is-visible,
.cookies .modal--is-visible,
.financial-actions .modal--is-visible,
.settlement .modal--is-visible,
.financial_overview .modal--is-visible,
.partner_insurance_update .modal--is-visible,
.accept_change_dates .modal--is-visible,
.decline_change_dates .modal--is-visible,
.blocked_periods .modal--is-visible,
.check_in_out_modal .modal--is-visible,
.booking_cancellation_modal .modal--is-visible,
.listings_setup .modal--is-visible {
  opacity: 1;
  visibility: visible;
}
.listings.check-in-out-modal-drawer,
.cookies.check-in-out-modal-drawer,
.financial-actions.check-in-out-modal-drawer,
.settlement.check-in-out-modal-drawer,
.financial_overview.check-in-out-modal-drawer,
.partner_insurance_update.check-in-out-modal-drawer,
.accept_change_dates.check-in-out-modal-drawer,
.decline_change_dates.check-in-out-modal-drawer,
.blocked_periods.check-in-out-modal-drawer,
.check_in_out_modal.check-in-out-modal-drawer,
.booking_cancellation_modal.check-in-out-modal-drawer,
.listings_setup.check-in-out-modal-drawer {
  margin-bottom: 20px;
  text-align: center;
}
.listings.check-in-out-modal-drawer .modal__close-btn--outer,
.cookies.check-in-out-modal-drawer .modal__close-btn--outer,
.financial-actions.check-in-out-modal-drawer .modal__close-btn--outer,
.settlement.check-in-out-modal-drawer .modal__close-btn--outer,
.financial_overview.check-in-out-modal-drawer .modal__close-btn--outer,
.partner_insurance_update.check-in-out-modal-drawer .modal__close-btn--outer,
.accept_change_dates.check-in-out-modal-drawer .modal__close-btn--outer,
.decline_change_dates.check-in-out-modal-drawer .modal__close-btn--outer,
.blocked_periods.check-in-out-modal-drawer .modal__close-btn--outer,
.check_in_out_modal.check-in-out-modal-drawer .modal__close-btn--outer,
.booking_cancellation_modal.check-in-out-modal-drawer .modal__close-btn--outer,
.listings_setup.check-in-out-modal-drawer .modal__close-btn--outer {
  display: none;
}
.listings.check-in-out-modal-drawer .modal__close-btn--inner,
.cookies.check-in-out-modal-drawer .modal__close-btn--inner,
.financial-actions.check-in-out-modal-drawer .modal__close-btn--inner,
.settlement.check-in-out-modal-drawer .modal__close-btn--inner,
.financial_overview.check-in-out-modal-drawer .modal__close-btn--inner,
.partner_insurance_update.check-in-out-modal-drawer .modal__close-btn--inner,
.accept_change_dates.check-in-out-modal-drawer .modal__close-btn--inner,
.decline_change_dates.check-in-out-modal-drawer .modal__close-btn--inner,
.blocked_periods.check-in-out-modal-drawer .modal__close-btn--inner,
.check_in_out_modal.check-in-out-modal-drawer .modal__close-btn--inner,
.booking_cancellation_modal.check-in-out-modal-drawer .modal__close-btn--inner,
.listings_setup.check-in-out-modal-drawer .modal__close-btn--inner {
  display: flex;
}
.listings.check-in-out-modal-drawer .js-modal,
.cookies.check-in-out-modal-drawer .js-modal,
.financial-actions.check-in-out-modal-drawer .js-modal,
.settlement.check-in-out-modal-drawer .js-modal,
.financial_overview.check-in-out-modal-drawer .js-modal,
.partner_insurance_update.check-in-out-modal-drawer .js-modal,
.accept_change_dates.check-in-out-modal-drawer .js-modal,
.decline_change_dates.check-in-out-modal-drawer .js-modal,
.blocked_periods.check-in-out-modal-drawer .js-modal,
.check_in_out_modal.check-in-out-modal-drawer .js-modal,
.booking_cancellation_modal.check-in-out-modal-drawer .js-modal,
.listings_setup.check-in-out-modal-drawer .js-modal {
  background: rgba(0, 0, 0, 0.28);
}
@media only screen and (min-width: 769px) {
  .listings.check-in-out-modal-drawer .js-modal .modal__inner--xs,
  .cookies.check-in-out-modal-drawer .js-modal .modal__inner--xs,
  .financial-actions.check-in-out-modal-drawer .js-modal .modal__inner--xs,
  .settlement.check-in-out-modal-drawer .js-modal .modal__inner--xs,
  .financial_overview.check-in-out-modal-drawer .js-modal .modal__inner--xs,
  .partner_insurance_update.check-in-out-modal-drawer .js-modal .modal__inner--xs,
  .accept_change_dates.check-in-out-modal-drawer .js-modal .modal__inner--xs,
  .decline_change_dates.check-in-out-modal-drawer .js-modal .modal__inner--xs,
  .blocked_periods.check-in-out-modal-drawer .js-modal .modal__inner--xs,
  .check_in_out_modal.check-in-out-modal-drawer .js-modal .modal__inner--xs,
  .booking_cancellation_modal.check-in-out-modal-drawer .js-modal .modal__inner--xs,
  .listings_setup.check-in-out-modal-drawer .js-modal .modal__inner--xs {
    max-width: 38rem;
  }
}
@media only screen and (max-width: 768px) {
  .listings.check-in-out-modal-drawer .js-modal,
  .cookies.check-in-out-modal-drawer .js-modal,
  .financial-actions.check-in-out-modal-drawer .js-modal,
  .settlement.check-in-out-modal-drawer .js-modal,
  .financial_overview.check-in-out-modal-drawer .js-modal,
  .partner_insurance_update.check-in-out-modal-drawer .js-modal,
  .accept_change_dates.check-in-out-modal-drawer .js-modal,
  .decline_change_dates.check-in-out-modal-drawer .js-modal,
  .blocked_periods.check-in-out-modal-drawer .js-modal,
  .check_in_out_modal.check-in-out-modal-drawer .js-modal,
  .booking_cancellation_modal.check-in-out-modal-drawer .js-modal,
  .listings_setup.check-in-out-modal-drawer .js-modal {
    padding: 0;
  }
  .listings.check-in-out-modal-drawer .js-modal .modal__inner,
  .cookies.check-in-out-modal-drawer .js-modal .modal__inner,
  .financial-actions.check-in-out-modal-drawer .js-modal .modal__inner,
  .settlement.check-in-out-modal-drawer .js-modal .modal__inner,
  .financial_overview.check-in-out-modal-drawer .js-modal .modal__inner,
  .partner_insurance_update.check-in-out-modal-drawer .js-modal .modal__inner,
  .accept_change_dates.check-in-out-modal-drawer .js-modal .modal__inner,
  .decline_change_dates.check-in-out-modal-drawer .js-modal .modal__inner,
  .blocked_periods.check-in-out-modal-drawer .js-modal .modal__inner,
  .check_in_out_modal.check-in-out-modal-drawer .js-modal .modal__inner,
  .booking_cancellation_modal.check-in-out-modal-drawer .js-modal .modal__inner,
  .listings_setup.check-in-out-modal-drawer .js-modal .modal__inner {
    align-self: flex-end;
  }
}
.listings.check-in-out-modal-drawer .modal__content .modal__header,
.listings.check-in-out-modal-drawer .modal__content .modal__body,
.cookies.check-in-out-modal-drawer .modal__content .modal__header,
.cookies.check-in-out-modal-drawer .modal__content .modal__body,
.financial-actions.check-in-out-modal-drawer .modal__content .modal__header,
.financial-actions.check-in-out-modal-drawer .modal__content .modal__body,
.settlement.check-in-out-modal-drawer .modal__content .modal__header,
.settlement.check-in-out-modal-drawer .modal__content .modal__body,
.financial_overview.check-in-out-modal-drawer .modal__content .modal__header,
.financial_overview.check-in-out-modal-drawer .modal__content .modal__body,
.partner_insurance_update.check-in-out-modal-drawer .modal__content .modal__header,
.partner_insurance_update.check-in-out-modal-drawer .modal__content .modal__body,
.accept_change_dates.check-in-out-modal-drawer .modal__content .modal__header,
.accept_change_dates.check-in-out-modal-drawer .modal__content .modal__body,
.decline_change_dates.check-in-out-modal-drawer .modal__content .modal__header,
.decline_change_dates.check-in-out-modal-drawer .modal__content .modal__body,
.blocked_periods.check-in-out-modal-drawer .modal__content .modal__header,
.blocked_periods.check-in-out-modal-drawer .modal__content .modal__body,
.check_in_out_modal.check-in-out-modal-drawer .modal__content .modal__header,
.check_in_out_modal.check-in-out-modal-drawer .modal__content .modal__body,
.booking_cancellation_modal.check-in-out-modal-drawer .modal__content .modal__header,
.booking_cancellation_modal.check-in-out-modal-drawer .modal__content .modal__body,
.listings_setup.check-in-out-modal-drawer .modal__content .modal__header,
.listings_setup.check-in-out-modal-drawer .modal__content .modal__body {
  padding: 30px 28px;
}
.listings.check-in-out-modal-drawer .modal__content .modal__header,
.cookies.check-in-out-modal-drawer .modal__content .modal__header,
.financial-actions.check-in-out-modal-drawer .modal__content .modal__header,
.settlement.check-in-out-modal-drawer .modal__content .modal__header,
.financial_overview.check-in-out-modal-drawer .modal__content .modal__header,
.partner_insurance_update.check-in-out-modal-drawer .modal__content .modal__header,
.accept_change_dates.check-in-out-modal-drawer .modal__content .modal__header,
.decline_change_dates.check-in-out-modal-drawer .modal__content .modal__header,
.blocked_periods.check-in-out-modal-drawer .modal__content .modal__header,
.check_in_out_modal.check-in-out-modal-drawer .modal__content .modal__header,
.booking_cancellation_modal.check-in-out-modal-drawer .modal__content .modal__header,
.listings_setup.check-in-out-modal-drawer .modal__content .modal__header {
  padding-bottom: 22px;
}
.listings.check-in-out-modal-drawer .modal__content .modal__header .modal__title,
.cookies.check-in-out-modal-drawer .modal__content .modal__header .modal__title,
.financial-actions.check-in-out-modal-drawer .modal__content .modal__header .modal__title,
.settlement.check-in-out-modal-drawer .modal__content .modal__header .modal__title,
.financial_overview.check-in-out-modal-drawer .modal__content .modal__header .modal__title,
.partner_insurance_update.check-in-out-modal-drawer .modal__content .modal__header .modal__title,
.accept_change_dates.check-in-out-modal-drawer .modal__content .modal__header .modal__title,
.decline_change_dates.check-in-out-modal-drawer .modal__content .modal__header .modal__title,
.blocked_periods.check-in-out-modal-drawer .modal__content .modal__header .modal__title,
.check_in_out_modal.check-in-out-modal-drawer .modal__content .modal__header .modal__title,
.booking_cancellation_modal.check-in-out-modal-drawer .modal__content .modal__header .modal__title,
.listings_setup.check-in-out-modal-drawer .modal__content .modal__header .modal__title {
  color: #677A8D;
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
}
.listings.check-in-out-modal-drawer .modal__content .modal__body,
.cookies.check-in-out-modal-drawer .modal__content .modal__body,
.financial-actions.check-in-out-modal-drawer .modal__content .modal__body,
.settlement.check-in-out-modal-drawer .modal__content .modal__body,
.financial_overview.check-in-out-modal-drawer .modal__content .modal__body,
.partner_insurance_update.check-in-out-modal-drawer .modal__content .modal__body,
.accept_change_dates.check-in-out-modal-drawer .modal__content .modal__body,
.decline_change_dates.check-in-out-modal-drawer .modal__content .modal__body,
.blocked_periods.check-in-out-modal-drawer .modal__content .modal__body,
.check_in_out_modal.check-in-out-modal-drawer .modal__content .modal__body,
.booking_cancellation_modal.check-in-out-modal-drawer .modal__content .modal__body,
.listings_setup.check-in-out-modal-drawer .modal__content .modal__body {
  padding-top: 0;
}
.listings.check-in-out-modal-drawer .modal__content .modal-body,
.cookies.check-in-out-modal-drawer .modal__content .modal-body,
.financial-actions.check-in-out-modal-drawer .modal__content .modal-body,
.settlement.check-in-out-modal-drawer .modal__content .modal-body,
.financial_overview.check-in-out-modal-drawer .modal__content .modal-body,
.partner_insurance_update.check-in-out-modal-drawer .modal__content .modal-body,
.accept_change_dates.check-in-out-modal-drawer .modal__content .modal-body,
.decline_change_dates.check-in-out-modal-drawer .modal__content .modal-body,
.blocked_periods.check-in-out-modal-drawer .modal__content .modal-body,
.check_in_out_modal.check-in-out-modal-drawer .modal__content .modal-body,
.booking_cancellation_modal.check-in-out-modal-drawer .modal__content .modal-body,
.listings_setup.check-in-out-modal-drawer .modal__content .modal-body {
  padding: 0;
}
.listings.check-in-out-modal-drawer .modal__content .modal-body p,
.cookies.check-in-out-modal-drawer .modal__content .modal-body p,
.financial-actions.check-in-out-modal-drawer .modal__content .modal-body p,
.settlement.check-in-out-modal-drawer .modal__content .modal-body p,
.financial_overview.check-in-out-modal-drawer .modal__content .modal-body p,
.partner_insurance_update.check-in-out-modal-drawer .modal__content .modal-body p,
.accept_change_dates.check-in-out-modal-drawer .modal__content .modal-body p,
.decline_change_dates.check-in-out-modal-drawer .modal__content .modal-body p,
.blocked_periods.check-in-out-modal-drawer .modal__content .modal-body p,
.check_in_out_modal.check-in-out-modal-drawer .modal__content .modal-body p,
.booking_cancellation_modal.check-in-out-modal-drawer .modal__content .modal-body p,
.listings_setup.check-in-out-modal-drawer .modal__content .modal-body p {
  color: #212D3A;
  font-size: 16px;
  line-height: 24px;
}
.listings.check-in-out-modal-drawer .modal__content .modal-body .support-container,
.cookies.check-in-out-modal-drawer .modal__content .modal-body .support-container,
.financial-actions.check-in-out-modal-drawer .modal__content .modal-body .support-container,
.settlement.check-in-out-modal-drawer .modal__content .modal-body .support-container,
.financial_overview.check-in-out-modal-drawer .modal__content .modal-body .support-container,
.partner_insurance_update.check-in-out-modal-drawer .modal__content .modal-body .support-container,
.accept_change_dates.check-in-out-modal-drawer .modal__content .modal-body .support-container,
.decline_change_dates.check-in-out-modal-drawer .modal__content .modal-body .support-container,
.blocked_periods.check-in-out-modal-drawer .modal__content .modal-body .support-container,
.check_in_out_modal.check-in-out-modal-drawer .modal__content .modal-body .support-container,
.booking_cancellation_modal.check-in-out-modal-drawer .modal__content .modal-body .support-container,
.listings_setup.check-in-out-modal-drawer .modal__content .modal-body .support-container {
  gap: 14px;
}
.listings.check-in-out-modal-drawer .modal__content .modal-body .support-container .description-part-two-text,
.cookies.check-in-out-modal-drawer .modal__content .modal-body .support-container .description-part-two-text,
.financial-actions.check-in-out-modal-drawer .modal__content .modal-body .support-container .description-part-two-text,
.settlement.check-in-out-modal-drawer .modal__content .modal-body .support-container .description-part-two-text,
.financial_overview.check-in-out-modal-drawer .modal__content .modal-body .support-container .description-part-two-text,
.partner_insurance_update.check-in-out-modal-drawer .modal__content .modal-body .support-container .description-part-two-text,
.accept_change_dates.check-in-out-modal-drawer .modal__content .modal-body .support-container .description-part-two-text,
.decline_change_dates.check-in-out-modal-drawer .modal__content .modal-body .support-container .description-part-two-text,
.blocked_periods.check-in-out-modal-drawer .modal__content .modal-body .support-container .description-part-two-text,
.check_in_out_modal.check-in-out-modal-drawer .modal__content .modal-body .support-container .description-part-two-text,
.booking_cancellation_modal.check-in-out-modal-drawer .modal__content .modal-body .support-container .description-part-two-text,
.listings_setup.check-in-out-modal-drawer .modal__content .modal-body .support-container .description-part-two-text {
  color: #449DFD;
  font-size: 14px;
  line-height: 21px;
  font-weight: 500;
  margin: auto 0;
}
@media only screen and (max-width: 768px) {
  .listings.check-in-out-modal-drawer .modal__content,
  .cookies.check-in-out-modal-drawer .modal__content,
  .financial-actions.check-in-out-modal-drawer .modal__content,
  .settlement.check-in-out-modal-drawer .modal__content,
  .financial_overview.check-in-out-modal-drawer .modal__content,
  .partner_insurance_update.check-in-out-modal-drawer .modal__content,
  .accept_change_dates.check-in-out-modal-drawer .modal__content,
  .decline_change_dates.check-in-out-modal-drawer .modal__content,
  .blocked_periods.check-in-out-modal-drawer .modal__content,
  .check_in_out_modal.check-in-out-modal-drawer .modal__content,
  .booking_cancellation_modal.check-in-out-modal-drawer .modal__content,
  .listings_setup.check-in-out-modal-drawer .modal__content {
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
  }
}
.modal__inner {
  display: flex;
  flex-direction: column-reverse;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.modal__inner--sm {
  max-width: 60rem;
}
.modal__inner--xs {
  max-width: 42rem;
}
.modal__inner--xxs {
  max-width: 36rem;
}
.modal__content {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  max-height: 100%;
  max-height: 86vh;
  width: 100%;
  border-radius: 0.15em;
  background: hsl(0deg, 0%, 100%);
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.14), 0 4px 8px rgba(0, 0, 0, 0.28);
}
.modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px 0;
}
@media (min-width: 992px) {
  .modal__header {
    padding: 40px 50px 20px;
  }
}
.modal__title {
  font-weight: 600;
  color: hsl(212deg, 27%, 18%);
  margin: 0;
}
@media (min-width: 992px) {
  .modal__title {
    font-size: 1.5rem;
  }
}
.modal__body {
  padding: 12px 20px 0;
  color: hsl(212deg, 27%, 18%);
}
.modal__body p:last-child,
.modal__body li:last-child {
  margin-bottom: 0;
}
.modal__body .form-group:last-of-type {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .modal__body {
    padding: 16px 50px 0;
  }
}
.modal__body .modal__footer {
  padding-left: 0;
  padding-right: 0;
}
.modal__footer {
  padding: 20px;
}
@media (min-width: 992px) {
  .modal__footer {
    padding: 30px 50px 40px;
  }
}
.modal__footer-container {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-bottom: -12px;
  margin-right: -12px;
}
.modal__footer-container .btn {
  margin-bottom: 12px;
  margin-right: 12px;
}
@media (max-width: 991px) {
  .modal__footer-container .btn {
    margin-right: 0;
    flex: 1 0 100%;
    max-width: 97%;
    padding-left: 1.85em;
    padding-right: 1.85em;
  }
}
.modal__inner--center {
  text-align: center;
}
.modal__inner--center .modal__title {
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 991px) {
  .modal__inner--center .modal__title {
    padding-left: 30px;
  }
}
.modal__inner--center .modal__footer-container {
  justify-content: center;
}
.modal__inner--center .alert {
  text-align: left;
}
.modal__close-btn {
  display: flex;
  flex-shrink: 0;
  border-radius: 50%;
  transition: 0.2s;
  outline: 0;
  color: inherit;
  line-height: inherit;
  padding: 0;
  border: 0;
  appearance: none;
}
.modal__close-btn .icon {
  display: block;
  margin: auto;
  width: 12px;
  height: 12px;
}
.modal__close-btn--outer {
  width: 48px;
  height: 48px;
  align-self: flex-end;
  margin-bottom: 20px;
  z-index: 1040;
  background-color: hsl(212deg, 19%, 60%);
}
.modal__close-btn--outer:hover {
  background-color: hsl(212deg, 27%, 18%);
}
@media (max-width: 991px) {
  .modal__close-btn--outer {
    display: none;
  }
}
.modal__close-btn--outer .icon {
  color: hsl(0deg, 0%, 100%);
}
.modal__close-btn--inner {
  width: 2em;
  height: 2em;
  background-color: hsl(0deg, 0%, 100%);
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.12), 0 2px 4px rgba(0, 0, 0, 0.24);
}
.modal__close-btn--inner .icon {
  color: inherit;
}
@media (min-width: 992px) {
  .modal__close-btn--inner {
    display: none;
  }
}
.modal__close-btn--inner:hover {
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.14), 0 4px 8px rgba(0, 0, 0, 0.28);
}
:root {
  --modal-transition-duration: 0.2s;
}
@media (prefers-reduced-motion: no-preference) {
  .modal--animate-fade {
    --modal-transition-duration: 0.2s;
    transition:
      opacity 0.2s,
      background-color 0.2s,
      visibility 0s 0.2s;
  }
  .modal--animate-fade.modal--is-visible {
    transition:
      opacity 0.2s,
      background-color 0.2s,
      visibility 0s;
  }
  .modal--animate-scale,
  .modal--animate-translate-up,
  .modal--animate-translate-down,
  .modal--animate-translate-right,
  .modal--animate-translate-left {
    --modal-transition-duration: 0.2s;
    transition: opacity 0.2s, visibility 0s 0.2s;
  }
  .modal--animate-scale .modal__content,
  .modal--animate-translate-up .modal__content,
  .modal--animate-translate-down .modal__content,
  .modal--animate-translate-right .modal__content,
  .modal--animate-translate-left .modal__content {
    will-change: transform;
    transition: transform 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  .modal--animate-scale.modal--is-visible,
  .modal--animate-translate-up.modal--is-visible,
  .modal--animate-translate-down.modal--is-visible,
  .modal--animate-translate-right.modal--is-visible,
  .modal--animate-translate-left.modal--is-visible {
    transition: opacity 0.2s, visibility 0s;
  }
  .modal--animate-scale.modal--is-visible .modal__content,
  .modal--animate-translate-up.modal--is-visible .modal__content,
  .modal--animate-translate-down.modal--is-visible .modal__content,
  .modal--animate-translate-right.modal--is-visible .modal__content,
  .modal--animate-translate-left.modal--is-visible .modal__content {
    transform: scale(1);
  }
  .modal--animate-slide-up,
  .modal--animate-slide-down,
  .modal--animate-slide-right,
  .modal--animate-slide-left {
    --modal-transition-duration: 0.3s;
    transition:
      opacity 0s 0.2s,
      background-color 0.2s,
      visibility 0s 0.2s;
  }
  .modal--animate-slide-up .modal__content,
  .modal--animate-slide-down .modal__content,
  .modal--animate-slide-right .modal__content,
  .modal--animate-slide-left .modal__content {
    will-change: transform;
    transition: transform 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  .modal--animate-slide-up.modal--is-visible,
  .modal--animate-slide-down.modal--is-visible,
  .modal--animate-slide-right.modal--is-visible,
  .modal--animate-slide-left.modal--is-visible {
    transition: background-color 0.2s, visibility 0s;
  }
  .modal--animate-slide-up.modal--is-visible .modal__content,
  .modal--animate-slide-down.modal--is-visible .modal__content,
  .modal--animate-slide-right.modal--is-visible .modal__content,
  .modal--animate-slide-left.modal--is-visible .modal__content {
    transform: scale(1);
  }
  .modal--animate-scale .modal__content {
    transform: scale(0.95);
  }
  .modal--animate-translate-up .modal__content {
    transform: translateY(40px);
  }
  .modal--animate-translate-down .modal__content {
    transform: translateY(-40px);
  }
  .modal--animate-translate-right .modal__content {
    transform: translateX(-40px);
  }
  .modal--animate-translate-left .modal__content {
    transform: translateX(40px);
  }
  .modal--animate-slide-up .modal__content {
    transform: translateY(100%);
  }
  .modal--animate-slide-down .modal__content {
    transform: translateY(-100%);
  }
  .modal--animate-slide-right .modal__content {
    transform: translateX(-100%);
  }
  .modal--animate-slide-left .modal__content {
    transform: translateX(100%);
  }
}
.modal--is-loading .modal__content {
  visibility: hidden;
}
.modal--is-loading .modal__loader {
  display: flex;
}
.modal__loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  display: none;
  pointer-events: none;
}

/* app/frontend/src/components/cookies/cookie_modal.scss */
@keyframes slide-bottom-up {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0px);
  }
}
.cookies .modal {
  background: hsla(212, 27%, 18%, 0.5);
}
.cookies .modal .cookie-modal-text {
  color: hsl(210deg, 16%, 60%);
}
@media (max-width: 991px) {
  .cookies .modal .cookie-modal-text {
    font-size: 0.75rem;
  }
}
@media (max-width: 991px) {
  .cookies .modal .modal__header {
    padding: 20px 20px 0;
  }
}
@media (min-width: 992px) {
  .cookies .modal .modal__header {
    padding: 35px 40px 0;
  }
}
.cookies .modal .modal__body {
  padding: 12px 40px 0;
}
@media (max-width: 991px) {
  .cookies .modal .modal__body {
    padding: 8px 20px 0;
  }
}
@media (max-width: 991px) {
  .cookies .modal .modal__title {
    font-size: 1.4rem;
  }
}
@media (min-width: 992px) {
  .cookies .modal .modal__title {
    padding-bottom: 0;
  }
}
@media (max-width: 991px) {
  .cookies .modal .modal__footer-container {
    margin-right: 0;
  }
}
.cookies .modal .modal__footer {
  display: block;
}
@media (max-width: 991px) {
  .cookies .modal .modal__footer {
    padding: 20px 20px 20px;
  }
}
@media (min-width: 992px) {
  .cookies .modal .modal__footer {
    padding: 30px 40px 35px;
  }
}
.cookies .reject_cookies {
  cursor: pointer;
}

/* node_modules/flatpickr/dist/flatpickr.css */
.flatpickr-calendar {
  background: transparent;
  opacity: 0;
  display: none;
  text-align: center;
  visibility: hidden;
  padding: 0;
  animation: none;
  direction: ltr;
  border: 0;
  font-size: 14px;
  line-height: 24px;
  border-radius: 5px;
  position: absolute;
  width: 307.875px;
  box-sizing: border-box;
  touch-action: manipulation;
  background: #fff;
  box-shadow:
    1px 0 0 #e6e6e6,
    -1px 0 0 #e6e6e6,
    0 1px 0 #e6e6e6,
    0 -1px 0 #e6e6e6,
    0 3px 13px rgba(0, 0, 0, 0.08);
}
.flatpickr-calendar.open,
.flatpickr-calendar.inline {
  opacity: 1;
  max-height: 640px;
  visibility: visible;
}
.flatpickr-calendar.open {
  display: inline-block;
  z-index: 99999;
}
.flatpickr-calendar.animate.open {
  animation: fpFadeInDown 300ms cubic-bezier(0.23, 1, 0.32, 1);
}
.flatpickr-calendar.inline {
  display: block;
  position: relative;
  top: 2px;
}
.flatpickr-calendar.static {
  position: absolute;
  top: calc(100% + 2px);
}
.flatpickr-calendar.static.open {
  z-index: 999;
  display: block;
}
.flatpickr-calendar.multiMonth .flatpickr-days .dayContainer:nth-child(n+1) .flatpickr-day.inRange:nth-child(7n+7) {
  box-shadow: none !important;
}
.flatpickr-calendar.multiMonth .flatpickr-days .dayContainer:nth-child(n+2) .flatpickr-day.inRange:nth-child(7n+1) {
  box-shadow: -2px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;
}
.flatpickr-calendar .hasWeeks .dayContainer,
.flatpickr-calendar .hasTime .dayContainer {
  border-bottom: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.flatpickr-calendar .hasWeeks .dayContainer {
  border-left: 0;
}
.flatpickr-calendar.hasTime .flatpickr-time {
  height: 40px;
  border-top: 1px solid #e6e6e6;
}
.flatpickr-calendar.noCalendar.hasTime .flatpickr-time {
  height: auto;
}
.flatpickr-calendar:before,
.flatpickr-calendar:after {
  position: absolute;
  display: block;
  pointer-events: none;
  border: solid transparent;
  content: "";
  height: 0;
  width: 0;
  left: 22px;
}
.flatpickr-calendar.rightMost:before,
.flatpickr-calendar.arrowRight:before,
.flatpickr-calendar.rightMost:after,
.flatpickr-calendar.arrowRight:after {
  left: auto;
  right: 22px;
}
.flatpickr-calendar.arrowCenter:before,
.flatpickr-calendar.arrowCenter:after {
  left: 50%;
  right: 50%;
}
.flatpickr-calendar:before {
  border-width: 5px;
  margin: 0 -5px;
}
.flatpickr-calendar:after {
  border-width: 4px;
  margin: 0 -4px;
}
.flatpickr-calendar.arrowTop:before,
.flatpickr-calendar.arrowTop:after {
  bottom: 100%;
}
.flatpickr-calendar.arrowTop:before {
  border-bottom-color: #e6e6e6;
}
.flatpickr-calendar.arrowTop:after {
  border-bottom-color: #fff;
}
.flatpickr-calendar.arrowBottom:before,
.flatpickr-calendar.arrowBottom:after {
  top: 100%;
}
.flatpickr-calendar.arrowBottom:before {
  border-top-color: #e6e6e6;
}
.flatpickr-calendar.arrowBottom:after {
  border-top-color: #fff;
}
.flatpickr-calendar:focus {
  outline: 0;
}
.flatpickr-wrapper {
  position: relative;
  display: inline-block;
}
.flatpickr-months {
  display: flex;
}
.flatpickr-months .flatpickr-month {
  background: transparent;
  color: rgba(0, 0, 0, 0.9);
  fill: rgba(0, 0, 0, 0.9);
  height: 34px;
  line-height: 1;
  text-align: center;
  position: relative;
  -webkit-user-select: none;
  user-select: none;
  overflow: hidden;
  flex: 1;
}
.flatpickr-months .flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month {
  -webkit-user-select: none;
  user-select: none;
  text-decoration: none;
  cursor: pointer;
  position: absolute;
  top: 0;
  height: 34px;
  padding: 10px;
  z-index: 3;
  color: rgba(0, 0, 0, 0.9);
  fill: rgba(0, 0, 0, 0.9);
}
.flatpickr-months .flatpickr-prev-month.flatpickr-disabled,
.flatpickr-months .flatpickr-next-month.flatpickr-disabled {
  display: none;
}
.flatpickr-months .flatpickr-prev-month i,
.flatpickr-months .flatpickr-next-month i {
  position: relative;
}
.flatpickr-months .flatpickr-prev-month.flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month.flatpickr-prev-month {
  left: 0;
}
.flatpickr-months .flatpickr-prev-month.flatpickr-next-month,
.flatpickr-months .flatpickr-next-month.flatpickr-next-month {
  right: 0;
}
.flatpickr-months .flatpickr-prev-month:hover,
.flatpickr-months .flatpickr-next-month:hover {
  color: #959ea9;
}
.flatpickr-months .flatpickr-prev-month:hover svg,
.flatpickr-months .flatpickr-next-month:hover svg {
  fill: #f64747;
}
.flatpickr-months .flatpickr-prev-month svg,
.flatpickr-months .flatpickr-next-month svg {
  width: 14px;
  height: 14px;
}
.flatpickr-months .flatpickr-prev-month svg path,
.flatpickr-months .flatpickr-next-month svg path {
  transition: fill 0.1s;
  fill: inherit;
}
.numInputWrapper {
  position: relative;
  height: auto;
}
.numInputWrapper input,
.numInputWrapper span {
  display: inline-block;
}
.numInputWrapper input {
  width: 100%;
}
.numInputWrapper input::-ms-clear {
  display: none;
}
.numInputWrapper input::-webkit-outer-spin-button,
.numInputWrapper input::-webkit-inner-spin-button {
  margin: 0;
  -webkit-appearance: none;
}
.numInputWrapper span {
  position: absolute;
  right: 0;
  width: 14px;
  padding: 0 4px 0 2px;
  height: 50%;
  line-height: 50%;
  opacity: 0;
  cursor: pointer;
  border: 1px solid rgba(57, 57, 57, 0.15);
  box-sizing: border-box;
}
.numInputWrapper span:hover {
  background: rgba(0, 0, 0, 0.1);
}
.numInputWrapper span:active {
  background: rgba(0, 0, 0, 0.2);
}
.numInputWrapper span:after {
  display: block;
  content: "";
  position: absolute;
}
.numInputWrapper span.arrowUp {
  top: 0;
  border-bottom: 0;
}
.numInputWrapper span.arrowUp:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-bottom: 4px solid rgba(57, 57, 57, 0.6);
  top: 26%;
}
.numInputWrapper span.arrowDown {
  top: 50%;
}
.numInputWrapper span.arrowDown:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid rgba(57, 57, 57, 0.6);
  top: 40%;
}
.numInputWrapper span svg {
  width: inherit;
  height: auto;
}
.numInputWrapper span svg path {
  fill: rgba(0, 0, 0, 0.5);
}
.numInputWrapper:hover {
  background: rgba(0, 0, 0, 0.05);
}
.numInputWrapper:hover span {
  opacity: 1;
}
.flatpickr-current-month {
  font-size: 135%;
  line-height: inherit;
  font-weight: 300;
  color: inherit;
  position: absolute;
  width: 75%;
  left: 12.5%;
  padding: 7.48px 0 0 0;
  line-height: 1;
  height: 34px;
  display: inline-block;
  text-align: center;
  transform: translate3d(0px, 0px, 0px);
}
.flatpickr-current-month span.cur-month {
  font-family: inherit;
  font-weight: 700;
  color: inherit;
  display: inline-block;
  margin-left: 0.5ch;
  padding: 0;
}
.flatpickr-current-month span.cur-month:hover {
  background: rgba(0, 0, 0, 0.05);
}
.flatpickr-current-month .numInputWrapper {
  width: 6ch;
  width: 7ch\fffd;
  display: inline-block;
}
.flatpickr-current-month .numInputWrapper span.arrowUp:after {
  border-bottom-color: rgba(0, 0, 0, 0.9);
}
.flatpickr-current-month .numInputWrapper span.arrowDown:after {
  border-top-color: rgba(0, 0, 0, 0.9);
}
.flatpickr-current-month input.cur-year {
  background: transparent;
  box-sizing: border-box;
  color: inherit;
  cursor: text;
  padding: 0 0 0 0.5ch;
  margin: 0;
  display: inline-block;
  font-size: inherit;
  font-family: inherit;
  font-weight: 300;
  line-height: inherit;
  height: auto;
  border: 0;
  border-radius: 0;
  vertical-align: initial;
  appearance: textfield;
}
.flatpickr-current-month input.cur-year:focus {
  outline: 0;
}
.flatpickr-current-month input.cur-year[disabled],
.flatpickr-current-month input.cur-year[disabled]:hover {
  font-size: 100%;
  color: rgba(0, 0, 0, 0.5);
  background: transparent;
  pointer-events: none;
}
.flatpickr-current-month .flatpickr-monthDropdown-months {
  appearance: menulist;
  background: transparent;
  border: none;
  border-radius: 0;
  box-sizing: border-box;
  color: inherit;
  cursor: pointer;
  font-size: inherit;
  font-family: inherit;
  font-weight: 300;
  height: auto;
  line-height: inherit;
  margin: -1px 0 0 0;
  outline: none;
  padding: 0 0 0 0.5ch;
  position: relative;
  vertical-align: initial;
  -webkit-box-sizing: border-box;
  -webkit-appearance: menulist;
  -moz-appearance: menulist;
  width: auto;
}
.flatpickr-current-month .flatpickr-monthDropdown-months:focus,
.flatpickr-current-month .flatpickr-monthDropdown-months:active {
  outline: none;
}
.flatpickr-current-month .flatpickr-monthDropdown-months:hover {
  background: rgba(0, 0, 0, 0.05);
}
.flatpickr-current-month .flatpickr-monthDropdown-months .flatpickr-monthDropdown-month {
  background-color: transparent;
  outline: none;
  padding: 0;
}
.flatpickr-weekdays {
  background: transparent;
  text-align: center;
  overflow: hidden;
  width: 100%;
  display: flex;
  align-items: center;
  height: 28px;
}
.flatpickr-weekdays .flatpickr-weekdaycontainer {
  display: flex;
  flex: 1;
}
span.flatpickr-weekday {
  cursor: default;
  font-size: 90%;
  background: transparent;
  color: rgba(0, 0, 0, 0.54);
  line-height: 1;
  margin: 0;
  text-align: center;
  display: block;
  flex: 1;
  font-weight: bolder;
}
.dayContainer,
.flatpickr-weeks {
  padding: 1px 0 0 0;
}
.flatpickr-days {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  width: 307.875px;
}
.flatpickr-days:focus {
  outline: 0;
}
.dayContainer {
  padding: 0;
  outline: 0;
  text-align: left;
  width: 307.875px;
  min-width: 307.875px;
  max-width: 307.875px;
  box-sizing: border-box;
  display: inline-block;
  display: flex;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  justify-content: space-around;
  transform: translate3d(0px, 0px, 0px);
  opacity: 1;
}
.dayContainer + .dayContainer {
  box-shadow: -1px 0 0 #e6e6e6;
}
.flatpickr-day {
  background: none;
  border: 1px solid transparent;
  border-radius: 150px;
  box-sizing: border-box;
  color: #393939;
  cursor: pointer;
  font-weight: 400;
  width: 14.2857143%;
  flex-basis: 14.2857143%;
  max-width: 39px;
  height: 39px;
  line-height: 39px;
  margin: 0;
  display: inline-block;
  position: relative;
  justify-content: center;
  text-align: center;
}
.flatpickr-day.inRange,
.flatpickr-day.prevMonthDay.inRange,
.flatpickr-day.nextMonthDay.inRange,
.flatpickr-day.today.inRange,
.flatpickr-day.prevMonthDay.today.inRange,
.flatpickr-day.nextMonthDay.today.inRange,
.flatpickr-day:hover,
.flatpickr-day.prevMonthDay:hover,
.flatpickr-day.nextMonthDay:hover,
.flatpickr-day:focus,
.flatpickr-day.prevMonthDay:focus,
.flatpickr-day.nextMonthDay:focus {
  cursor: pointer;
  outline: 0;
  background: #e6e6e6;
  border-color: #e6e6e6;
}
.flatpickr-day.today {
  border-color: #959ea9;
}
.flatpickr-day.today:hover,
.flatpickr-day.today:focus {
  border-color: #959ea9;
  background: #959ea9;
  color: #fff;
}
.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected.inRange,
.flatpickr-day.startRange.inRange,
.flatpickr-day.endRange.inRange,
.flatpickr-day.selected:focus,
.flatpickr-day.startRange:focus,
.flatpickr-day.endRange:focus,
.flatpickr-day.selected:hover,
.flatpickr-day.startRange:hover,
.flatpickr-day.endRange:hover,
.flatpickr-day.selected.prevMonthDay,
.flatpickr-day.startRange.prevMonthDay,
.flatpickr-day.endRange.prevMonthDay,
.flatpickr-day.selected.nextMonthDay,
.flatpickr-day.startRange.nextMonthDay,
.flatpickr-day.endRange.nextMonthDay {
  background: #569ff7;
  box-shadow: none;
  color: #fff;
  border-color: #569ff7;
}
.flatpickr-day.selected.startRange,
.flatpickr-day.startRange.startRange,
.flatpickr-day.endRange.startRange {
  border-radius: 50px 0 0 50px;
}
.flatpickr-day.selected.endRange,
.flatpickr-day.startRange.endRange,
.flatpickr-day.endRange.endRange {
  border-radius: 0 50px 50px 0;
}
.flatpickr-day.selected.startRange + .endRange:not(:nth-child(7n+1)),
.flatpickr-day.startRange.startRange + .endRange:not(:nth-child(7n+1)),
.flatpickr-day.endRange.startRange + .endRange:not(:nth-child(7n+1)) {
  box-shadow: -10px 0 0 #569ff7;
}
.flatpickr-day.selected.startRange.endRange,
.flatpickr-day.startRange.startRange.endRange,
.flatpickr-day.endRange.startRange.endRange {
  border-radius: 50px;
}
.flatpickr-day.inRange {
  border-radius: 0;
  box-shadow: -5px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;
}
.flatpickr-day.flatpickr-disabled,
.flatpickr-day.flatpickr-disabled:hover,
.flatpickr-day.prevMonthDay,
.flatpickr-day.nextMonthDay,
.flatpickr-day.notAllowed,
.flatpickr-day.notAllowed.prevMonthDay,
.flatpickr-day.notAllowed.nextMonthDay {
  color: rgba(57, 57, 57, 0.3);
  background: transparent;
  border-color: transparent;
  cursor: default;
}
.flatpickr-day.flatpickr-disabled,
.flatpickr-day.flatpickr-disabled:hover {
  cursor: not-allowed;
  color: rgba(57, 57, 57, 0.1);
}
.flatpickr-day.week.selected {
  border-radius: 0;
  box-shadow: -5px 0 0 #569ff7, 5px 0 0 #569ff7;
}
.flatpickr-day.hidden {
  visibility: hidden;
}
.rangeMode .flatpickr-day {
  margin-top: 1px;
}
.flatpickr-weekwrapper {
  float: left;
}
.flatpickr-weekwrapper .flatpickr-weeks {
  padding: 0 12px;
  box-shadow: 1px 0 0 #e6e6e6;
}
.flatpickr-weekwrapper .flatpickr-weekday {
  float: none;
  width: 100%;
  line-height: 28px;
}
.flatpickr-weekwrapper span.flatpickr-day,
.flatpickr-weekwrapper span.flatpickr-day:hover {
  display: block;
  width: 100%;
  max-width: none;
  color: rgba(57, 57, 57, 0.3);
  background: transparent;
  cursor: default;
  border: none;
}
.flatpickr-innerContainer {
  display: block;
  display: flex;
  box-sizing: border-box;
  overflow: hidden;
}
.flatpickr-rContainer {
  display: inline-block;
  padding: 0;
  box-sizing: border-box;
}
.flatpickr-time {
  text-align: center;
  outline: 0;
  display: block;
  height: 0;
  line-height: 40px;
  max-height: 40px;
  box-sizing: border-box;
  overflow: hidden;
  display: flex;
}
.flatpickr-time:after {
  content: "";
  display: table;
  clear: both;
}
.flatpickr-time .numInputWrapper {
  flex: 1;
  width: 40%;
  height: 40px;
  float: left;
}
.flatpickr-time .numInputWrapper span.arrowUp:after {
  border-bottom-color: #393939;
}
.flatpickr-time .numInputWrapper span.arrowDown:after {
  border-top-color: #393939;
}
.flatpickr-time.hasSeconds .numInputWrapper {
  width: 26%;
}
.flatpickr-time.time24hr .numInputWrapper {
  width: 49%;
}
.flatpickr-time input {
  background: transparent;
  box-shadow: none;
  border: 0;
  border-radius: 0;
  text-align: center;
  margin: 0;
  padding: 0;
  height: inherit;
  line-height: inherit;
  color: #393939;
  font-size: 14px;
  position: relative;
  box-sizing: border-box;
  appearance: textfield;
}
.flatpickr-time input.flatpickr-hour {
  font-weight: bold;
}
.flatpickr-time input.flatpickr-minute,
.flatpickr-time input.flatpickr-second {
  font-weight: 400;
}
.flatpickr-time input:focus {
  outline: 0;
  border: 0;
}
.flatpickr-time .flatpickr-time-separator,
.flatpickr-time .flatpickr-am-pm {
  height: inherit;
  float: left;
  line-height: inherit;
  color: #393939;
  font-weight: bold;
  width: 2%;
  -webkit-user-select: none;
  user-select: none;
  align-self: center;
}
.flatpickr-time .flatpickr-am-pm {
  outline: 0;
  width: 18%;
  cursor: pointer;
  text-align: center;
  font-weight: 400;
}
.flatpickr-time input:hover,
.flatpickr-time .flatpickr-am-pm:hover,
.flatpickr-time input:focus,
.flatpickr-time .flatpickr-am-pm:focus {
  background: #eee;
}
.flatpickr-input[readonly] {
  cursor: pointer;
}
@keyframes fpFadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/* node_modules/smartbanner.js/src/smartbanner.scss */
.smartbanner {
  position: absolute;
  top: 0;
  left: 0;
  overflow-x: hidden;
  width: 100%;
  height: 84px;
  background: #f3f3f3;
  font-family:
    Helvetica,
    sans,
    sans-serif;
}
.smartbanner__exit {
  position: absolute;
  top: calc(50% - 6px);
  left: 9px;
  display: block;
  margin: 0;
  width: 12px;
  height: 12px;
  border: 0;
  text-align: center;
}
.smartbanner__exit::before,
.smartbanner__exit::after {
  position: absolute;
  width: 1px;
  height: 12px;
  background: #716F6F;
  content: " ";
}
.smartbanner__exit::before {
  transform: rotate(45deg);
}
.smartbanner__exit::after {
  transform: rotate(-45deg);
}
.smartbanner__icon {
  position: absolute;
  top: 10px;
  left: 30px;
  width: 64px;
  height: 64px;
  border-radius: 15px;
  background-size: 64px 64px;
}
.smartbanner__info {
  position: absolute;
  top: 10px;
  left: 104px;
  display: flex;
  overflow-y: hidden;
  width: 60%;
  height: 64px;
  align-items: center;
  color: #000;
}
.smartbanner__info__title {
  font-size: 14px;
}
.smartbanner__info__author,
.smartbanner__info__price {
  font-size: 12px;
}
.smartbanner__button {
  position: absolute;
  top: 32px;
  right: 10px;
  z-index: 1;
  display: block;
  padding: 0 10px;
  min-width: 10%;
  border-radius: 5px;
  background: #f3f3f3;
  color: #1474fc;
  font-size: 18px;
  text-align: center;
  text-decoration: none;
}
.smartbanner__button__label {
  text-align: center;
}
.smartbanner.smartbanner--android {
  background: #3d3d3d url(data:image/gif;base64,R0lGODlhCAAIAIABAFVVVf///yH5BAEHAAEALAAAAAAIAAgAAAINRG4XudroGJBRsYcxKAA7);
  box-shadow: inset 0 4px 0 #88b131;
}
.smartbanner.smartbanner--android .smartbanner__exit {
  left: 6px;
  margin-right: 7px;
  width: 17px;
  height: 17px;
  border-radius: 14px;
  background: #1c1e21;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.8) inset, 0 1px 1px rgba(255, 255, 255, 0.3);
  color: #b1b1b3;
  font-family: "ArialRoundedMTBold", Arial;
  font-size: 20px;
  line-height: 17px;
  text-shadow: 0 1px 1px #000;
}
.smartbanner.smartbanner--android .smartbanner__exit::before,
.smartbanner.smartbanner--android .smartbanner__exit::after {
  top: 3px;
  left: 8px;
  width: 2px;
  height: 11px;
  background: #b1b1b3;
}
.smartbanner.smartbanner--android .smartbanner__exit:active,
.smartbanner.smartbanner--android .smartbanner__exit:hover {
  color: #eee;
}
.smartbanner.smartbanner--android .smartbanner__icon {
  background-color: transparent;
  box-shadow: none;
}
.smartbanner.smartbanner--android .smartbanner__info {
  color: #ccc;
  text-shadow: 0 1px 2px #000;
}
.smartbanner.smartbanner--android .smartbanner__info__title {
  color: #fff;
  font-weight: bold;
}
.smartbanner.smartbanner--android .smartbanner__button {
  top: 30px;
  right: 20px;
  padding: 0;
  min-width: 12%;
  border-radius: 0;
  background: none;
  box-shadow: 0 0 0 1px #333, 0 0 0 2px #dddcdc;
  color: #d1d1d1;
  font-size: 14px;
  font-weight: bold;
}
.smartbanner.smartbanner--android .smartbanner__button:active,
.smartbanner.smartbanner--android .smartbanner__button:hover {
  background: none;
}
.smartbanner.smartbanner--android .smartbanner__button__label {
  display: block;
  padding: 0 10px;
  background: #42b6c9;
  background:
    linear-gradient(
      to bottom,
      #42b6c9,
      #39a9bb);
  box-shadow: none;
  line-height: 24px;
  text-align: center;
  text-shadow: none;
  text-transform: none;
}
.smartbanner.smartbanner--android .smartbanner__button__label:active,
.smartbanner.smartbanner--android .smartbanner__button__label:hover {
  background: #2ac7e1;
}

/* app/frontend/src/components/glider/glider.scss */
@keyframes slide-bottom-up {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0px);
  }
}
.glider-contain {
  width: 100%;
  margin: 0 auto;
  position: relative;
}
.glider-container {
  margin: 0 auto;
  position: relative;
  max-width: 100%;
}
.embed-responsive > .glider__wrapper {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.embed-responsive img {
  position: relative;
  width: 100%;
  display: block;
}
.embed-responsive-glider {
  height: auto;
}
.embed-responsive-glider::before {
  display: block;
  content: "";
  padding-top: 75%;
}
@media (min-width: 768px) {
  .embed-responsive-glider::before {
    padding-top: 61.3333333333%;
  }
}
.glider,
.glider-track,
.glider-slide {
  backface-visibility: hidden;
  transform: translateZ(0);
}
.glider.draggable {
  -webkit-user-select: none;
          user-select: none;
  cursor: grab;
}
.glider.drag {
  cursor: grabbing;
}
.glider {
  margin: 0 auto;
  position: relative;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: none;
}
.glider-track {
  width: 100%;
  margin: 0 auto;
  padding: 0;
  display: flex;
  z-index: 1;
}
.owner-modal .glider-track {
  width: 100% !important;
}
.owner-modal .carousel-review {
  padding-left: 0 !important;
}
.glider-slide {
  -webkit-user-select: none;
          user-select: none;
  justify-content: center;
  align-content: center;
  width: 100%;
  position: relative;
  min-width: 150px;
}
.glider-dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 15px auto 0;
  padding: 0;
}
.glider-dot {
  outline: none;
  display: block;
  cursor: pointer;
  color: #ccc;
  border-radius: 99px;
  background: hsl(212deg, 28%, 88%);
  width: 6px;
  height: 6px;
  margin: 0 3px;
  padding: 0;
  border: 0;
}
.glider-dot.active {
  background-color: hsl(212deg, 27%, 18%);
}
.glider__pager {
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: 2;
  width: 55px;
  height: 30px;
  padding-left: 0;
  text-align: center;
  list-style: none;
  color: #fff;
  pointer-events: none;
}
.glider__pager .glider__pager-item {
  background: rgba(0, 0, 0, 0.5);
  border-radius: 5px;
  width: 55px;
  height: 30px;
  line-height: 30px;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  padding: 0;
  border: 0;
  color: #fff;
  font-size: 0.875rem;
  position: absolute;
  left: 0;
  top: 0;
  transition: 0.5s;
  z-index: 0;
}
.glider__pager .glider__pager-item.active {
  z-index: 1;
  visibility: visible;
  opacity: 1;
}
.glider__pager--center {
  left: 50%;
  right: auto;
  transform: translateX(-50%);
}
.glider-slide img {
  max-width: 100%;
}
.glider::-webkit-scrollbar {
  opacity: 0;
  height: 0;
}
.glider-prev,
.glider-next {
  display: block;
  -webkit-user-select: none;
          user-select: none;
  outline: none;
  background: none;
  padding: 0;
  z-index: 2;
  left: 20px;
  border: 0;
  width: 42px;
  height: 42px;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  margin-top: -20px;
  cursor: pointer;
  fill: #fff;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.3s;
}
.glider-prev .glider-arrow-icon,
.glider-next .glider-arrow-icon {
  padding-left: 2px;
}
.glider-next {
  right: 20px;
  left: auto;
}
.glider-arrow-icon {
  width: 8px;
  height: 8px;
}
.glider-prev .glider-arrow-icon {
  transform: scaleX(-1);
}
.glider-next.disabled,
.glider-prev.disabled {
  visibility: hidden;
  opacity: 0;
  cursor: default;
}
.glider-hide {
  opacity: 0;
}

/* app/frontend/src/components/glider/carousel.scss */
@keyframes slide-bottom-up {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0px);
  }
}
.carousel-holder {
  margin-top: 0 !important;
  padding: 60px 0 65px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
@media (min-width: 992px) {
  .carousel-holder {
    padding-top: 80px;
    padding-bottom: 120px;
  }
}
.carousel-holder__bg-image-wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  display: block;
  z-index: 1;
  overflow: hidden;
}
.carousel-holder__bg-image {
  -o-object-fit: cover;
     object-fit: cover;
  max-width: none;
}
.carousel-holder__content {
  position: relative;
  z-index: 2;
}
.carousel {
  position: relative;
}
.carousel a:hover {
  text-decoration: none;
}
.carousel__item {
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  margin: 0 10px 30px;
  opacity: 1;
}
.carousel__item--card {
  padding: 26px 31px 28px 31px;
  border-radius: 2px;
  box-shadow: 0 2px 10px 0 rgba(33, 45, 58, 0.2);
  background: #fff;
}
@media (min-width: 992px) {
  .carousel__item--card {
    padding: 36px 44px 37px 48px;
  }
}
@media (min-width: 768px) {
  .carousel__item > * {
    transition: 0.3s;
  }
  .carousel__item:not(.visible) .carousel__icon {
    opacity: 0.5;
  }
  .carousel__item:not(.visible) .carousel__title {
    color: hsl(212deg, 19%, 60%);
  }
  .carousel__item:not(.visible) .carousel__body {
    color: hsl(212deg, 28%, 88%);
  }
  .carousel__item:not(.visible) .step__indicator {
    background-color: hsl(212deg, 28%, 88%);
  }
}
.carousel__title {
  margin-bottom: 7px;
  margin-top: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: hsl(212deg, 27%, 18%);
}
@media (max-width: 575px) {
  .carousel__title {
    font-size: 1rem;
  }
}
.carousel__icon {
  height: 46px;
  margin-bottom: 9px;
}
.carousel__icon img {
  margin: 0;
}
@media (max-width: 575px) {
  .carousel__icon {
    margin-bottom: 12px;
  }
}
.carousel__body {
  font-size: 0.875rem;
  color: hsl(212deg, 19%, 60%);
}
.carousel-prev,
.carousel-next {
  display: none;
}
@media (any-pointer: fine) and (min-width: 768px) {
  .carousel-prev,
  .carousel-next {
    display: block;
    -webkit-user-select: none;
            user-select: none;
    outline: none;
    z-index: 2;
    width: 50px;
    height: 50px;
    position: absolute;
    top: 50%;
    margin-top: -25px;
    cursor: pointer;
    color: hsl(212deg, 27%, 18%);
    opacity: 1;
    transition: opacity 0.5s cubic-bezier(0.17, 0.67, 0.83, 0.67), color 0.5s cubic-bezier(0.17, 0.67, 0.83, 0.67);
  }
  .carousel-prev:hover,
  .carousel-next:hover {
    color: hsl(240deg, 8%, 12%);
  }
  .carousel-prev.disabled,
  .carousel-next.disabled {
    visibility: hidden;
    opacity: 0;
    cursor: default;
  }
}
.carousel-prev {
  left: -25px;
}
.carousel-next {
  right: -25px;
}
.navigation-hidden .carousel-prev,
.navigation-hidden .carousel-next {
  display: none;
}
.glider-dots--carousel {
  margin-top: 10px;
  display: none;
}
@media (pointer: coarse) {
  .glider-dots--carousel {
    display: flex;
  }
}
.section--invert .glider-dot {
  background-color: hsl(212deg, 19%, 60%);
}
.section--invert .glider-dot.active {
  background-color: hsl(0deg, 0%, 96%);
}
.carousel__dotted-line {
  display: none;
}
@media (min-width: 992px) {
  .carousel__dotted-line {
    display: block;
    position: absolute;
    z-index: -1;
    color: hsl(355deg, 98%, 63%);
    width: 360px;
    height: auto;
  }
  .carousel--gray .carousel__dotted-line {
    color: hsl(212deg, 28%, 88%);
  }
}
.carousel__dotted-line--left {
  width: 251px;
  height: 441px;
  left: 0;
  top: 100px;
}
.carousel__dotted-line--right {
  width: 260px;
  height: 379px;
  right: 4px;
  top: 0;
}
.carousel--gradient {
  background-size: cover;
  background-repeat: repeat-x;
  background-position: top;
  background-image:
    linear-gradient(
      180deg,
      #FFF 0%,
      #F2F4F7 100%);
}
.carousel__container {
  z-index: 3;
  position: relative;
}
.carousel--with-number {
  margin-top: -25px;
}
.carousel--with-number .carousel__item {
  margin-top: 50px;
  padding: 36px 34px 37px 41px;
}
@media (any-pointer: fine) {
  .carousel--with-number .carousel-prev,
  .carousel--with-number .carousel-next {
    margin-top: 0;
  }
}
.step__indicator {
  position: absolute;
  width: 50px;
  height: 50px;
  background-color: hsl(212deg, 28%, 88%);
  top: -25px;
  right: 50%;
  margin-right: -25px;
  color: hsl(212deg, 27%, 18%);
  line-height: 50px;
  text-align: center;
  border-radius: 100%;
  font-weight: 600;
}
@media (any-pointer: fine) {
  .step__indicator {
    right: 20px;
    margin-right: 0;
    background-color: hsl(212deg, 27%, 18%);
    color: #fff;
  }
}
.carousel--gray .carousel__item {
  background-color: hsl(0deg, 0%, 96%);
  box-shadow: none;
}
.carousel-review {
  padding: 0 15px !important;
}
.carousel--hiw .carousel__item {
  margin-top: 30px;
}
.carousel--hiw .carousel-prev {
  left: 5px;
}
.carousel--hiw .carousel-next {
  right: 15px;
}
@media (min-width: 768px) {
  .carousel--hiw {
    padding-left: 35px;
    padding-right: 35px;
  }
  .carousel--hiw .carousel-prev {
    left: -15px;
  }
  .carousel--hiw .carousel-next {
    right: -15px;
  }
}
.carousel--listing {
  padding-top: 30px;
  padding-bottom: 30px;
  margin-top: 40px;
  margin-bottom: 40px;
  background-color: hsl(0deg, 0%, 96%);
}
@media (min-width: 992px) {
  .carousel--listing .carousel {
    margin-left: 30px;
    margin-right: 30px;
  }
}
.carousel--listing .carousel-prev,
.carousel--listing .carousel-next {
  margin-top: -55px;
}
.carousel--listing .carousel-prev {
  left: -15px;
}
.carousel--listing .carousel-next {
  right: -15px;
}
.carousel--listing .carousel__item {
  padding: 0;
  margin-bottom: 0;
  box-shadow: none;
  background-color: inherit;
}

/* app/frontend/src/components/glider/carousel-testimonial.scss */
@keyframes slide-bottom-up {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0px);
  }
}
.carousel--testimonial .carousel {
  max-width: 1170px;
  margin-left: auto;
  margin-right: auto;
}
.carousel--testimonial .carousel-prev {
  left: 5px;
}
.carousel--testimonial .carousel-next {
  right: 15px;
}
@media (min-width: 768px) {
  .carousel--testimonial {
    padding-left: 35px;
    padding-right: 35px;
  }
  .carousel--testimonial .carousel-prev {
    left: -15px;
  }
  .carousel--testimonial .carousel-next {
    right: -15px;
  }
}
.carousel--testimonial .carousel__item {
  padding-top: 80px;
  margin-top: 30px;
}
@media (min-width: 992px) {
  .carousel--testimonial .carousel__item {
    padding-top: 90px;
  }
}
.carousel--testimonial .carousel__item--video {
  padding: 40px 40px 36px;
  cursor: pointer;
}
.carousel--testimonial .carousel__background-image {
  position: absolute;
  top: 30px;
  left: 30px;
  width: 30px;
  height: auto;
}
@media (min-width: 992px) {
  .carousel--testimonial .carousel__background-image {
    top: 40px;
    left: 40px;
    width: 40px;
  }
}
.carousel--testimonial .carousel__dotted-line {
  width: 360px;
  height: auto;
}
.carousel--testimonial .carousel__dotted-line--left {
  left: -150px;
  top: 160px;
}
.carousel--testimonial .carousel__dotted-line--right {
  right: -100px;
  top: -100px;
  bottom: auto;
  transform: rotate(90deg);
}
.carousel__author {
  display: flex;
  align-items: center;
  position: relative;
  margin-top: 24px;
}
.carousel__profile-image-wrapper {
  flex: 0 0 60px;
  position: relative;
  z-index: 2;
}
.carousel__profile-image-wrapper.carousel__profile-image-wrapper--single {
  flex-basis: 70px;
}
.carousel__profile-image-wrapper--second {
  position: relative;
  z-index: 1;
  margin-left: -20px;
}
.carousel__profile-image {
  max-width: 100%;
  margin: 0;
  border-radius: 50%;
  border: 2px #fff solid;
  box-shadow: 0 2px 4px rgba(33, 45, 58, 0.2);
}
.carousel__author-intro {
  flex: 1 1 auto;
  margin-left: 1.5em;
  min-width: 0;
  font-size: 12px;
  color: hsl(212deg, 19%, 60%);
  line-height: 1.8;
}
.carousel__profile-image-wrapper--second + .carousel__author-intro {
  margin-left: 5px;
}
.testimonial__quote {
  color: hsl(212deg, 27%, 18%);
  font-style: italic;
  font-size: 0.9375rem;
  line-height: 1.8;
  flex: 1;
}
.carousel__item--video .carousel__author-intro {
  color: hsl(212deg, 27%, 18%);
  font-style: italic;
  font-size: 0.9375rem;
  line-height: 1.8;
  flex: 1;
}
.carousel__video-image-wrapper {
  pointer-events: none;
  box-shadow: 0 2px 30px 0 rgba(33, 45, 58, 0.14);
  margin-bottom: 20px;
  position: relative;
}
.carousel__video-image-wrapper::after {
  position: absolute;
  display: block;
  z-index: 2;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 138px 157px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 134 158'%3E%3Cdefs/%3E%3Cpath fill='none' stroke='%23FFF' stroke-dasharray='.01 14' stroke-linecap='round' stroke-width='3' d='M2 2c88 17 43 125 138 157'/%3E%3C/svg%3E%0A");
}
.carousel__video-image {
  background: hsl(212deg, 27%, 18%);
  border: 3px solid #FFF;
  border-radius: 2px;
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.carousel__video-image-play-button {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  transform: translateX(-50%) translateY(-50%);
  transform-origin: 50% 50%;
  transition: all 0.15s ease-in-out;
}
.carousel__video-image-play-button .fill-red {
  fill: hsl(355deg, 98%, 63%);
}
.carousel__item--video:hover .carousel__video-image-play-button {
  transform: translateX(-50%) translateY(-52%) scale(1.05);
}
.carousel__item--video:hover .fill-red {
  fill: hsl(355deg, 98%, 53%);
}

/* app/frontend/src/components/glider/carousel-calendar.scss */
@keyframes slide-bottom-up {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0px);
  }
}
.carousel--calendar {
  margin: 30px -10px 0;
}
.carousel--calendar .carousel__item {
  margin-bottom: 0;
}
.carousel__arrows {
  display: flex;
  margin: 20px 10px 10px;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.carousel__arrows .glider-btn-prev,
.carousel__arrows .glider-btn-next {
  display: inline-flex;
  padding: 8px 18px;
  background-color: #fff;
  background-size: 6px 8px;
  background-repeat: no-repeat;
  border-radius: 22px;
  border: solid 1px hsl(212deg, 28%, 88%);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: -0.4px;
  color: hsl(212deg, 19%, 60%);
}
.carousel__arrows .glider-btn-prev:hover,
.carousel__arrows .glider-btn-next:hover {
  border-color: hsl(212deg, 27%, 18%);
}
.carousel__arrows .glider-btn-prev {
  padding-left: 32px;
  background-position: 15px 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='6' height='8'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M-140-2552h1440v4493H-140z'/%3E%3Cpath stroke='%23677A8D' stroke-linecap='round' stroke-width='2' d='M5 7L2 4l3-3'/%3E%3C/g%3E%3C/svg%3E");
}
.carousel__arrows .glider-btn-next {
  padding-right: 32px;
  background-position: calc(100% - 15px) 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='6' height='8'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M-929-2552H511v4493H-929z'/%3E%3Cpath stroke='%23677A8D' stroke-linecap='round' stroke-width='2' d='M1 7l3-3-3-3'/%3E%3C/g%3E%3C/svg%3E");
}
.carousel__arrows .glider-btn-next.disabled,
.carousel__arrows .glider-btn-prev.disabled {
  visibility: hidden;
  opacity: 0;
  cursor: default;
}

/* app/frontend/src/components/insurance/own_insurance.scss */
.insurance_company_fields .missing-field {
  margin-right: 20px;
}
.insurance_company_fields .panel-warning {
  display: flex;
  background-color: #f5f5f5;
}

/* node_modules/swiper/swiper-bundle.css */
@font-face {
  font-family: "swiper-icons";
  src: url(data:application/font-woff;charset=utf-8;base64,\ d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA);
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color: #007aff;
}
:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}
.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
  display: block;
}
.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}
.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}
.swiper-horizontal {
  touch-action: pan-y;
}
.swiper-vertical {
  touch-action: pan-x;
}
.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}
.swiper-slide-invisible-blank {
  visibility: hidden;
}
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}
.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}
.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
}
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}
.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}
.swiper-3d {
  perspective: 1200px;
}
.swiper-3d .swiper-slide,
.swiper-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}
.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}
.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}
.swiper-css-mode.swiper-vertical > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  scroll-snap-type: none;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: none;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper::before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}
.swiper-3d .swiper-slide-shadow-left {
  background-image:
    linear-gradient(
      to left,
      rgba(0, 0, 0, 0.5),
      rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-right {
  background-image:
    linear-gradient(
      to right,
      rgba(0, 0, 0, 0.5),
      rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-top {
  background-image:
    linear-gradient(
      to top,
      rgba(0, 0, 0, 0.5),
      rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-bottom {
  background-image:
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.5),
      rgba(0, 0, 0, 0));
}
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}
.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear;
}
.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}
.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}
@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.swiper-virtual .swiper-slide {
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}
.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}
.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
  height: 1px;
  width: var(--swiper-virtual-size);
}
.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
  width: 1px;
  height: var(--swiper-virtual-size);
}
:root {
  --swiper-navigation-size: 44px;
}
.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: var(--swiper-navigation-top-offset, 50%);
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}
.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}
.swiper-button-prev.swiper-button-hidden,
.swiper-button-next.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}
.swiper-navigation-disabled .swiper-button-prev,
.swiper-navigation-disabled .swiper-button-next {
  display: none !important;
}
.swiper-button-prev svg,
.swiper-button-next svg {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  transform-origin: center;
}
.swiper-rtl .swiper-button-prev svg,
.swiper-rtl .swiper-button-next svg {
  transform: rotate(180deg);
}
.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, 10px);
  right: auto;
}
.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}
.swiper-button-lock {
  display: none;
}
.swiper-button-prev:after,
.swiper-button-next:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
}
.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: "prev";
}
.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}
.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: "next";
}
:root {
}
.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}
.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}
.swiper-pagination-disabled > .swiper-pagination,
.swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: var(--swiper-pagination-bottom, 8px);
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%;
}
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}
.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}
button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  appearance: none;
}
.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}
.swiper-pagination-bullet:only-child {
  display: none !important;
}
.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}
.swiper-vertical > .swiper-pagination-bullets,
.swiper-pagination-vertical.swiper-pagination-bullets {
  right: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}
.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 200ms transform, 200ms top;
}
.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}
.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}
.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms left;
}
.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms right;
}
.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}
.swiper-pagination-progressbar {
  background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));
  position: absolute;
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}
.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}
.swiper-horizontal > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: var(--swiper-pagination-progressbar-size, 4px);
  left: 0;
  top: 0;
}
.swiper-vertical > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-vertical,
.swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {
  width: var(--swiper-pagination-progressbar-size, 4px);
  height: 100%;
  left: 0;
  top: 0;
}
.swiper-pagination-lock {
  display: none;
}
:root {
}
.swiper-scrollbar {
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  position: relative;
  touch-action: none;
  background: var(--swiper-scrollbar-bg-color, rgba(0, 0, 0, 0.1));
}
.swiper-scrollbar-disabled > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-disabled {
  display: none !important;
}
.swiper-horizontal > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-horizontal {
  position: absolute;
  left: var(--swiper-scrollbar-sides-offset, 1%);
  bottom: var(--swiper-scrollbar-bottom, 4px);
  top: var(--swiper-scrollbar-top, auto);
  z-index: 50;
  height: var(--swiper-scrollbar-size, 4px);
  width: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}
.swiper-vertical > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-vertical {
  position: absolute;
  left: var(--swiper-scrollbar-left, auto);
  right: var(--swiper-scrollbar-right, 4px);
  top: var(--swiper-scrollbar-sides-offset, 1%);
  z-index: 50;
  width: var(--swiper-scrollbar-size, 4px);
  height: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}
.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: var(--swiper-scrollbar-drag-bg-color, rgba(0, 0, 0, 0.5));
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  left: 0;
  top: 0;
}
.swiper-scrollbar-cursor-drag {
  cursor: move;
}
.swiper-scrollbar-lock {
  display: none;
}
.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.swiper-slide-zoomed {
  cursor: move;
  touch-action: none;
}
.swiper .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}
.swiper-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}
.swiper-grid > .swiper-wrapper {
  flex-wrap: wrap;
}
.swiper-grid-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}
.swiper-fade.swiper-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}
.swiper-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}
.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-fade .swiper-slide-active {
  pointer-events: auto;
}
.swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper.swiper-cube {
  overflow: visible;
}
.swiper-cube .swiper-slide {
  pointer-events: none;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}
.swiper-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-cube.swiper-rtl .swiper-slide {
  transform-origin: 100% 0;
}
.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-next,
.swiper-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}
.swiper-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: 0;
}
.swiper-cube .swiper-cube-shadow:before {
  content: "";
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  filter: blur(50px);
}
.swiper-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-top,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-bottom,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-left,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-right {
  z-index: 0;
  backface-visibility: hidden;
}
.swiper.swiper-flip {
  overflow: visible;
}
.swiper-flip .swiper-slide {
  pointer-events: none;
  backface-visibility: hidden;
  z-index: 1;
}
.swiper-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-flip .swiper-slide-active,
.swiper-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-top,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-bottom,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-left,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-right {
  z-index: 0;
  backface-visibility: hidden;
}
.swiper-creative .swiper-slide {
  backface-visibility: hidden;
  overflow: hidden;
  transition-property:
    transform,
    opacity,
    height;
}
.swiper.swiper-cards {
  overflow: visible;
}
.swiper-cards .swiper-slide {
  transform-origin: center bottom;
  backface-visibility: hidden;
  overflow: hidden;
}

/* app/frontend/src/components/progress/progress.scss */
@keyframes slide-bottom-up {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0px);
  }
}
.progress:not(.progress--notification) {
  padding: 20px;
  border-radius: 0.4em;
  background-color: hsl(211deg, 98%, 97%);
}
@media (min-width: 992px) {
  .progress:not(.progress--notification) {
    padding: 30px;
  }
}
.progress--notification {
  padding: 22px 20px;
  background-color: hsl(211deg, 98%, 63%);
  color: hsl(0deg, 0%, 100%);
}
.progress__summary {
  padding: 0.2em 0;
  display: block;
  outline: 0;
}
.progress__summary-toggle {
  font-size: 0.75rem;
  color: inherit;
  margin-left: auto;
  margin-right: 0;
  display: flex;
  align-items: center;
}
@media (min-width: 768px) {
  .progress__summary-toggle-show {
    display: block;
  }
  .progress__summary-toggle-hide {
    display: none;
  }
}
.progress__summary-arrow {
  display: inline-block;
  margin-left: 0.5em;
  color: inherit;
  fill: currentColor;
  transition: transform 0.3s ease-in-out;
  transform-origin: center center;
}
.progress__details[open] .progress__summary-arrow {
  transform: rotateX(180deg);
}
@media (min-width: 768px) {
  .progress__details[open] .progress__summary-toggle-show {
    display: none;
  }
  .progress__details[open] .progress__summary-toggle-hide {
    display: block;
  }
}
.progress__header {
  display: flex;
  margin-top: 0;
  font-size: 0.875rem;
  color: hsl(212deg, 27%, 18%);
}
@media (min-width: 768px) {
  .progress__header {
    font-size: 1.1875rem;
  }
}
.progress__title {
  padding-right: 0.5em;
  font-weight: 400;
}
.progress__subtitle {
  display: none;
}
@media (min-width: 768px) {
  .progress__subtitle {
    display: block;
    font-size: 0.875rem;
    color: hsl(212deg, 27%, 18%);
    margin-top: 1em;
  }
}
.progress__label {
  display: block;
  background-size: 100%;
  background-repeat: repeat;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-background-clip: text;
  -moz-text-fill-color: transparent;
  font-weight: 700;
}
.progress__label--bronze {
  background-color: #C87A40;
  background-image:
    linear-gradient(
      150deg,
      #E6B274 9%,
      #C87A40 89%);
}
.progress__label--silver {
  background-color: #C9CCDC;
  background-image:
    linear-gradient(
      150deg,
      #bfc5ce 9%,
      #b1b6c0 89%);
}
.progress__label--gold {
  background-color: #D6A411;
  background-image:
    linear-gradient(
      150deg,
      #F0E7AF 9%,
      #DCB953 89%);
}
.progress__indicator {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.progress__milestone {
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  margin: 5px 2px;
  border-radius: 100%;
  color: hsl(0deg, 0%, 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.progress__milestone svg {
  width: 10px;
}
.progress__milestone:not(.progress__milestone--start):hover {
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.12), 0 2px 4px rgba(0, 0, 0, 0.24);
  cursor: pointer;
}
.progress__milestone:first-child {
  margin-left: 0;
}
.progress__milestone:last-child {
  margin-right: 0;
}
.progress__milestone--start {
  background-color: hsl(211deg, 98%, 63%);
}
.progress__milestone--bronze {
  background-image:
    linear-gradient(
      150deg,
      #E6B274 9%,
      #C87A40 89%);
}
.progress__milestone--silver {
  background-image:
    linear-gradient(
      150deg,
      #E6ECF6 9%,
      #C5CAD6 89%);
}
.progress__milestone--gold {
  background-image:
    linear-gradient(
      150deg,
      #F0E7AF 9%,
      #DCB953 89%);
}
.progress__line {
  flex: 1 1 auto;
  height: 3px;
  color: hsl(212deg, 28%, 88%);
}
.progress__line .stroke-it-filled {
  stroke: hsl(211deg, 98%, 63%);
}
.progress__list-item a {
  display: flex;
  align-items: flex-start;
  color: hsl(210deg, 16%, 48%);
  outline: 0;
  text-decoration: none;
}
.progress__list-item a:hover,
.progress__list-item a:active {
  color: hsl(212deg, 27%, 18%);
}
.progress__list-item--done .progress__list-icon {
  color: hsl(211deg, 98%, 63%);
}
.progress__steps .progress__list {
  margin-top: 10px;
}
@media (min-width: 992px) {
  .progress__steps .progress__list {
    display: flex;
    margin-left: -5px;
    margin-right: -5px;
  }
}
@media (max-width: 991px) {
  .progress__steps .progress__list-item + .progress__list-item {
    margin-top: 7px;
  }
}
@media (min-width: 992px) {
  .progress__steps .progress__list-item {
    flex: 0 1 25%;
    display: flex;
    align-items: stretch;
    margin: 10px 10px 0;
  }
}
.progress__steps .progress__list-link {
  font-size: 0.75rem;
  padding: 0.75em 1em;
  background: hsl(0deg, 0%, 100%);
  border-radius: 0.4em;
  flex: 1 0 100%;
}
.progress__steps .progress__list-link span {
  pointer-events: none;
}
@media (min-width: 992px) {
  .progress__steps .progress__list-link {
    font-size: 0.875rem;
  }
}
.progress__list-icon {
  color: hsl(212deg, 19%, 60%);
  flex: 0 0 15px;
  margin-right: 0.5em;
  margin-top: 0.25em;
  pointer-events: none;
}
@media (min-width: 992px) {
  .progress__list-icon {
    flex-basis: 18px;
  }
}
.progress__list-icon path {
  stroke-width: 1px;
}
.progress__list-item--done .progress__list-icon path {
  stroke-width: 1.5px;
}
.progress__btn {
  white-space: nowrap;
  font-size: 0.875rem;
  margin-top: 1em;
}
@media (min-width: 768px) {
  .progress .container {
    display: flex;
    align-items: flex-end;
  }
  .progress--notification .container {
    align-items: center;
  }
  .progress__content {
    flex: 1 1 80%;
  }
  .progress__btn {
    margin-top: 0;
    margin-left: 1em;
    flex: 1 1 20%;
  }
}

/* app/frontend/src/components/form/slider/slider.scss */
@keyframes slide-bottom-up {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0px);
  }
}
.slider {
  position: relative;
  width: 100%;
}
.slider__range {
  width: 100%;
  --slider-fill-value: 0%;
  --slider-empty-value: 100%;
}
.slider__input {
  display: block;
  -webkit-appearance: none;
  width: 100%;
  background: transparent;
}
.slider__input:focus {
  outline: none;
}
.slider__input::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  border: none;
  border-radius: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cdefs/%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Ccircle cx='12' cy='12' r='11.5' fill='%23FFF' stroke='%23D8E0E9'/%3E%3Ccircle cx='12' cy='12' r='5' fill='%23212D3A'/%3E%3C/g%3E%3C/svg%3E");
  background-color: transparent;
  box-shadow: none;
  cursor: grab;
  margin-top: -8px;
}
.slider__input:active::-webkit-slider-thumb {
  cursor: grabbing;
}
.slider__input::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border: none;
  border-radius: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cdefs/%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Ccircle cx='12' cy='12' r='11.5' fill='%23FFF' stroke='%23D8E0E9'/%3E%3Ccircle cx='12' cy='12' r='5' fill='%23212D3A'/%3E%3C/g%3E%3C/svg%3E");
  background-color: transparent;
  box-shadow: none;
  cursor: grab;
}
.slider__input:active::-moz-range-thumb {
  cursor: grabbing;
}
.slider__input:active::-ms-thumb {
  cursor: grabbing;
}
.slider__input::-webkit-slider-runnable-track {
  height: 8px;
  border-radius: 50em;
  border: 1px solid hsl(212deg, 28%, 88%);
  background-image:
    linear-gradient(
      to right,
      hsl(212deg, 27%, 18%) var(--slider-fill-value),
      hsl(0deg, 0%, 100%) var(--slider-fill-value),
      hsl(0deg, 0%, 100%) var(--slider-empty-value));
  margin-top: 8px;
}
.slider__input::-moz-range-track {
  height: 8px;
  border-radius: 50em;
  border: 1px solid hsl(212deg, 28%, 88%);
  background-image:
    linear-gradient(
      to right,
      hsl(212deg, 27%, 18%) var(--slider-fill-value),
      hsl(0deg, 0%, 100%) var(--slider-fill-value),
      hsl(0deg, 0%, 100%) var(--slider-empty-value));
}
.slider__input::-moz-focus-outer {
  border: 0;
}
.js .slider__input::-ms-tooltip {
  display: none;
}
.slider__input::-ms-thumb {
  width: 24px;
  height: 24px;
  border: none;
  border-radius: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cdefs/%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Ccircle cx='12' cy='12' r='11.5' fill='%23FFF' stroke='%23D8E0E9'/%3E%3Ccircle cx='12' cy='12' r='5' fill='%23212D3A'/%3E%3C/g%3E%3C/svg%3E");
  background-color: transparent;
  box-shadow: none;
  cursor: grab;
  transform: translateY(0);
}
.slider__input:focus::-ms-thumb {
  box-shadow: inset 0 0 0 2px hsla(220, 90%, 56%, 0.2);
}
.slider__input::-ms-track {
  height: 8px;
  border-radius: 50em;
  border: 1px solid hsl(212deg, 28%, 88%);
  background-image:
    linear-gradient(
      to right,
      hsl(212deg, 27%, 18%) var(--slider-fill-value),
      hsl(0deg, 0%, 100%) var(--slider-fill-value),
      hsl(0deg, 0%, 100%) var(--slider-empty-value));
  border: 1px solid hsl(212deg, 28%, 88%);
  background-color: hsl(0deg, 0%, 100%);
  color: transparent;
  height: 8px;
}
.slider__values {
  display: flex;
  justify-content: space-between;
  margin-top: 0.5em;
  font-size: 0.75rem;
}
.js-slider__value {
  display: inline-block;
  margin: 2px;
}
.slider__value-suffix {
  display: inline-block;
  margin: 2px;
}
.slider__value-suffix--singular {
  display: none;
}
.slider--floating-value .slider__value {
  position: absolute;
  top: -24px;
  left: 24px;
  transform: translateX(-50%);
  font-size: 0.75rem;
  color: hsl(212deg, 27%, 18%);
  font-weight: 600;
  display: inline-flex;
}
.slider--input .form-control {
  font-size: 0.75rem;
  text-align: center;
  width: 4em;
}
.slider--range-not-supported .slider__value,
html:not(.js) .slider__value {
  display: none;
}
