.bottomMenu {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: row;
}

.bottomMenu__box {
  margin-right: 25px;
  box-sizing: border-box;
}

.schedule__days {
  display: flex;
  margin-bottom: 16px;
  box-sizing: border-box;
}

.schedule__day {
  width: 18px;
  height: 4px;
  border-radius: 6px;
}
.schedule__day_green {
  background-color: #28c57c;
}

.schedule__day:not(:last-child) {
  margin-right: 2px;
}

.schedule__day_red {
  background-color: #fa4451;
}

.schedule__day_green + .schedule__day_red {
  margin-left: 10px;
}

.schedule__info {
  display: flex;
  font-weight: 500;
  justify-content: center;
}
.schedule__time {
  margin-right: 20px;
}

.bottom-title {
  display: block;
  margin-bottom: 15px;
}

.bottomMenu-item_lines {
  margin-top: 24px;
}

@media screen and (max-width: 1164px) {
  .bottomMenu {
    flex-wrap: wrap;
  }

  .bottomMenu__box:last-child {
    margin-top: 60px;
  }
}

@media screen and (max-width: 979px) {
  .bottomMenu {
    padding: 0 30px;
  }
  .bottomMenu__box {
    width: 43%;
  }

  .bottomMenu__box:last-child,
  .bottomMenu__box:nth-child(3) {
    margin-top: 60px;
  }
  .schedule__info {
    justify-content: left;
  }
}

@media screen and (max-width: 620px) {
  .bottomMenu {
    padding: 0 15px;
  }
  .bottomMenu__box {
    width: 100%;
  }

  .bottomMenu__box {
    margin-top: 40px;
  }
  .schedule__info {
    justify-content: left;
  }

  .bottom-title {
    margin-bottom: 4px;
  }
}
