* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Nunito", sans-serif;
  background: #eee4e5;
  color: #fff;
  background-image: url("../bg-2024.jpeg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.wrapper {
  max-width: 991px;
  min-width: 360px;
  margin: 0 auto;
  padding: 0 10px;
  padding-bottom: 70px;
}

.overflow {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(51, 51, 51, 0.65);
  z-index: -1;
}

.header {
  padding-top: 10px;
  display: flex;
  justify-content: center;
}
.header__logo {
  width: 150px;
  display: inline-block;
}
.header__image {
  width: 100%;
  height: auto;
}

.block {
  padding: 20px 0 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4784313725);
}
.block__col:not(:last-child) {
  margin-bottom: 30px;
}
.block__head {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
}
.block__list {
  list-style: none;
  margin-left: 10px;
}
.block__item {
  font-size: 20px;
}
.block__item:not(:last-child) {
  margin-bottom: 5px;
}

.drinks__item::before {
  content: "";
  position: relative;
  display: inline-block;
  width: 5px;
  height: 5px;
  background-color: #fff;
  margin-right: 10px;
  transform: translate(0, -50%) scaleY(1.5) rotate(45deg);
}
.drinks__item--text {
  font-size: 16px;
  margin-left: 18px;
  padding-top: 5px;
  padding-bottom: 10px;
  display: block;
}

.wifi__item {
  display: flex;
  align-items: center;
}
.wifi__icon {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}
.wifi__icon img {
  width: 100%;
  height: auto;
}
.wifi__text {
  font-size: 18px;
}

.contacts {
  border-bottom: 0px;
}
.contacts__item:not(:last-child) {
  margin-bottom: 10px;
}
.contacts__item a {
  display: flex;
  text-decoration: none;
}
.contacts__icon {
  width: 24px;
  height: 24px;
  margin-right: 10px;
}
.contacts__icon img {
  width: 100%;
  height: auto;
}
.contacts__text {
  font-size: 18px;
  color: #fff;
}

.fixed {
  position: fixed;
  height: 70px;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.fixed__blur {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.9;
}
.fixed__button {
  padding: 10px 40px;
  font-size: 18px;
  color: #1f1a20;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0px 0px 10px 5px rgba(31, 26, 32, 0.14);
  border-radius: 20px;
  background: #eee4e5;
  position: relative;
  z-index: 9999;
}

.fixed-loader {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffdce2;
}

.loader {
  width: 48px;
  height: 48px;
  border: 5px solid #fff;
  border-bottom-color: transparent;
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}/*# sourceMappingURL=main.css.map */