/**
 * Survey push Fixed (only desktop)
 */


a.block-booking-push {
  position: fixed;
  right: 0;
  left: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 1rem 0.7rem 1rem;
  background: var(--brand-primary-color);
  color: var(--brand-white);
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  transition: color 0.2s, background-color 0.2s;
  z-index: 999;
}
a.block-booking-push::after{
  content: '';
  position: relative;
  display: block;
  width: 20px;
  height: 14px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url('../../images/arrow-medium--white.svg');
}
a.block-booking-push:hover {
  background-color: var(--brand-secondary-color);
  text-decoration: none;
  color: var(--brand-primary-color);
}

@media (min-width: 1000px){
  a.block-booking-push {
    left: initial;
    bottom: 10%;
    max-width: 210px;
    overflow: hidden;
  }
}

/**
 * Fix Main footer dispartion on mobile
 */

.main__footer {
  margin-bottom: 59px;
}
@media (min-width: 1000px){
  .main__footer {
    margin-bottom: 0;
  }
}