* {
  scroll-behavior: smooth;
  overflow-x: hidden;
  overflow-y: auto;
}

body {
  background: url(../assets/background/background.jpg) repeat center center
    fixed;
  background-size: cover;
  color: #fff;
  min-height: 100vh;
}

body:hover {
  transform: none !important;
  box-shadow: none !important;
}

a {
  text-decoration: none;
}

.logo_adris {
  max-height: 100px;
}

.carousel-inner {
  border-radius: 5px;
}

.carousel-inner img {
  height: 300px;
  object-fit: cover;
}

.menu-item {
  text-align: justify;
}

footer {
  width: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
  position: sticky;
  bottom: 0;
  text-align: center;
}

.ti-widget,
.elfsight-widget {
  width: 100%;
  max-height: auto;
}

.social_media_container {
  margin-top: 10px;
}

.social_media_ig {
  width: 40px;
  height: 40px;
}

.iva-section {
  font-size: 10px;
}

.tr-tittle {
  color: #5f6369;
  font-size: 16px;
  font-weight: 500;
  text-align: left;
  margin: 0px 0px -4px 14px;
}

.reviews-contentor {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

.review-widget {
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 10px;
  width: 250px;
  font-family: Arial, sans-serif;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
  height: 85px;
  margin-bottom: 14px;
}

.review-logo, .img-btn {
  width: 50px;
}

.review-content {
  flex-grow: 1;
  margin-top: 0.1rem;
  font-size: 0.7rem;
  font-weight: bold;
  letter-spacing: 2px;
  padding-left: 0.2rem;
}

.pointer-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.review-score {
  font-size: 30px;
  color: #5f6369;
  align-self: flex-start;
}
.stars {
  color: #ffd43b;
}
.review-count {
  font-size: 12px;
  color: #777;
}

/* ===== Loader ===== */
#loader {
  position: fixed;
  inset: 0;
  background: #0e0e0e;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.loading-text {
  margin-top: 20px;
  color: #fff;
  font-weight: 300;
  letter-spacing: 1px;
}

/* Glass */
.glass {
  width: 120px;
  height: 200px;
  border: 4px solid #fff;
  border-radius: 0 0 20px 20px;
  position: relative;
  overflow: hidden;
}

/* Liquid */
.liquid {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 0%;
  background: linear-gradient(
    135deg,
    #f39c12,
    #f1c40f
  );
  animation: fill 2.5s ease-in-out forwards;
}

.liquid::before {
  content: "";
  position: absolute;
  top: -15px;
  width: 200%;
  height: 30px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  animation: wave 1.2s infinite linear;
}

/* Animations */
@keyframes fill {
  from {
    height: 0%;
  }
  to {
    height: 100%;
  }
}

@keyframes wave {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}