.booking-wrap {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(50, 60, 70, 0.5);
  z-index: 50;
  align-items: center;
  justify-content: center;
  display: none;
}
.booking-wrap.show {
  display: flex;
}
.booking__inner-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 400px;
  width: 90%;
  background-color: #ffffff;
}
.booking__close-btn {
  position: absolute;
  right: 20px;
  top: 20px;
  width: 40px;
  height: 40px;
  border: none;
  background-repeat: no-repeat;
  background-color: transparent;
  background-image: url("https://studiointerval.ru/img/icons/close_black.svg");
  background-position: center;
  background-size: contain;
  cursor: pointer;
  transition: all 300ms ease-out;
}
.booking__close-btn:hover {
  transform: scale(1.2);
}
.booking__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.booking__item {}
.booking__item:first-child {}

.booking__link {
  display: flex;
  align-items: center;
  text-decoration: none;
  padding: 5px 10px;
}
.booking__link:hover .booking__label:after {
  width: 100%;
}

.booking__label {
  font-size: 30px;
  color: #000000;
  position: relative;
}
.booking__label:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background-color: #000000;
  transition: width 300ms ease-out;
}
.booking__img {
  width: 40px;
  height: auto;
  margin-right: 10px;
}

.booking-button {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  bottom: 20px;
  left: 50%;
  margin-left: -120px;
  width: 240px;
  height: 60px;
  border-radius: 30px;
  border: 2px solid #ff6a3b;
  background-color: #ff6a3b;
  box-shadow: 2px 2px 8px rgba(0,0,0, 0.3);
  z-index: 100;
  cursor: pointer;
  transition: all 300ms ease-in;
}
.booking-button:hover {
   color: #ffffff;
   background-color: #d15707;
 }

.booking-button span {
  font-size: 18px;
  letter-spacing: 1px;
}
.booking-button img {
  width: 30px;
  height: auto;
  display: block;
  margin-left: 10px;
  animation-name: scaleButtonImage;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

@keyframes scaleButtonImage {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

@media (min-width:768px) {
  .booking__inner-wrap {
    position: absolute;
    height: 30vh;
    width: 90%;
    bottom: 60px;
    left: 5%;
  }
  .booking__list {
    flex-direction: row;
  }
  .booking__item:first-child {
    margin-bottom: 0;
  }
}/* END tablet-width */
