@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

html {
  margin-top: 0px !important;
  scroll-behavior: smooth;
}

body {
  font-family: 'helvetica', sans-serif !important;
  margin: 0 !important;
  padding: 0 !important;
  box-sizing: border-box !important;
}

input,
textarea,
button,
select {
  font-family: 'helvetica', sans-serif !important;
}

.filter-sort {
  filter: drop-shadow(-4px -4px 8px rgba(32, 100, 168, 0.1)) drop-shadow(4px 4px 8px rgba(32, 100, 168, 0.1));
}

.error-message-show {
  color: red;
}

input.form-error,
textarea.form-error {
  border: 1px solid red;
}

.no-scrollbar::-webkit-scrollbar {
  display: none;
}

.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

a {
  text-decoration: none;
}

.pulse-btn {
  position: relative;
}

.pulse-btn::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #7A4F31;
  animation: pulse-ring 2s infinite;
  z-index: -1;
  display: none;
}

@keyframes pulse-ring {
  0% {
    transform: scale(0.9);
    opacity: 0.8;
  }

  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

.pulse-btn:hover::before {
  display: flex;
}

/* GTranslate active language style */
.gt-link-wrapper a {
  display: inline-flex;
  padding: 2px;
  border: 1px solid transparent;
  border-radius: 2px;
  transition: all 0.3s ease;
  line-height: 0;
}
.gt-link-wrapper a img{
  width: 30px !important;
  height: 20px !important;
  border-radius: 2px !important;
  overflow: hidden !important;
  object-fit: cover;
}

.gt-link-wrapper a.gt-current-lang {
  border-color: #7A4F31 !important;
}

.gt-link-wrapper a img {
  display: block;
}