.modal-content {
  background: transparent;
  border: none;
}
.modal-body {
  display: flex;
  justify-content: center;
  align-items: center;
}
.promo-banner img {
  width: 100%;
  max-width: 300px;
}
.close-btn {
  position: absolute;
  top: 2px;
  right: 9px;
  background: none;
  border: none;
  font-size: 51px;
  color: white;
  cursor: pointer;
}
.btn-book {
  background: linear-gradient(135deg, #180901, #fcd8af);
  color: white;
  font-size: 18px;
  padding: 6px 18px;
  border: none;
  border-radius: 4px;
  text-transform: uppercase;
  font-weight: bold;
  display: block;
  margin: 20px auto 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  position: relative;
  clip-path: polygon(0 0, 100% 0, 92% 100%, 0% 100%);
  animation: blink 0.3s infinite alternate, pulse 1s infinite alternate;
}
.btn-book:hover {
  background: linear-gradient(135deg, #180901, #fcd8af);
  transform: scale(1.05);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.3);
}
/* @keyframes blink {
    0% { opacity: 1; }
    100% { opacity: 0.3; }
} */

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}

.sb-responsive-close-btn {
  display: none;
  position: fixed;
  width: 50px;
  height: 50px;
  right: 0;
  top: 0;
  text-align: right;
  z-index: 99995;

  &:before {
    display: none;
    font-size: 12px;
    line-height: 19px;
    z-index: 9;
    position: relative;
    top: 8px;
    right: 10px;
    color: #fff;
  }
}
