.other-menu .menu-section{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 4.25rem;
}

.other-menu .good{
    width: 34.6875rem;
    margin-bottom: 2.5rem;
}

ul li{
    margin: 0;
    font-family: "Roboto";
    font-size: 0.9375rem;
    font-weight: 400;
    line-height: 1.875rem;
    color: #5d564f;
    text-align: left;
}

.booking__input.booking__input_submit:hover{
  color: #fff !important;
}

.booking__wrapper_checkbox .booking__label_error::before {
  border-color: red;
}

.window-popup {
  position: fixed;
  z-index: -1;
  top: calc(50% - 12.40625rem);
  left: calc(50% - 19.34375rem);
  width: 38.6875rem;
  height: 24.8125rem;
  padding-top: 0.1875rem;
  background-color: #f1f1f1;
  opacity: 0;
  visibility: hidden;
  -webkit-transition-timing-function: ease-in-out, ease-in-out;
          transition-timing-function: ease-in-out, ease-in-out;
  -webkit-transition-duration: 300ms, 300ms;
          transition-duration: 300ms, 300ms;
  -webkit-transition-property: opacity, visibility;
  transition-property: opacity, visibility;
}
.popup_open {
    z-index: 2;
    opacity: 1;
    visibility: visible;
}
@media screen and (max-width: 749px) {
  .window-popup {
    top: calc(50% - 12.40625rem);
    left: calc(50% - 9.375rem);
    width: 18.75rem;
  }
}