/*hamburger*/

.close {
  display: none;
}

@media (max-width: 991px) {
  .main-menu {
    display: none;
    position: absolute;
    background-color: #fff;
    right: 0;
    top: 55px;
    width: 100px;
  }
  #navigation li a {
    padding: 10px 24px;
  }
  .close {
    display: block;
    margin-right: 44px;
    cursor: pointer;
  }
  .submenu {
    display: none;
  }
  .hamburger {
    display: block;
    border: none;
    cursor: pointer;
  }
}

/*modal window*/
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: gray;
  opacity: 0.5;
}

.wrapper-modal {
  width: 100%;
  height: 100%;
  display: none;
}
.modal-window {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 474px;
  width: 100%;
  z-index: 2;
  background: #ffffff;
  box-shadow: 0px 20px 40px rgb(0 0 0 / 9%);
  border-radius: 10px;
}
.form-order {
  background: #fff;
  padding: 40px;
  max-width: 600px;
  margin: 0 auto;
  border-radius: 10px;
}
.modal-close {
  position: absolute;
  top: 10px;
  right: 8px;
  font-size: 14px;
  font-weight: 700;
  color: #000;
  border: none;
  cursor: pointer;
}
/*swiper*/
.swiper-container {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
