:root {
  --border-radius-btn: 0.9375rem;
}

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

html,
body {
  width: 100%;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'BRHendrix', sans-serif;
  user-select: none;
  height: 100vh;
  position: relative;
}

.main-content {
  position: relative;
  transition: transform 0.3s ease;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 3rem;
  position: absolute;
  top: 0;
  width: -webkit-fill-available;
  z-index: 10;
  height: 4.625rem;
}

.header-img {
  padding: 1rem 1.25rem;
  border-radius: var(--border-radius-btn);
  height: 4.625rem;
}

.header-img .header-img--logo {
  width: auto;
  height: 100%;
}

.header-img--partner {
  width: auto;
  height: 4.625rem;
  border-radius: var(--border-radius-btn);
}

.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 3rem;
  position: absolute;
  bottom: 0;
  width: -webkit-fill-available;
  z-index: 10;
  height: 4.625rem;
}

#map {
  flex: 1;
  background-color: #959539;
  height: 100vh;
  position: relative;
  z-index: 1;
}

.leaflet-control-container {
  display: none;
}

.btn-primary {
  display: flex;
  z-index: 999;
  background-color: transparent;
  padding: 1.5625rem;
  cursor: pointer;
  border: none;
  border-radius: var(--border-radius-btn);
}

.btn-primary-cut-right {
  padding: 1.5625rem 0.78125rem 1.5625rem 0.78125rem;
  cursor: pointer;
  border: none;
  border-radius: 0 var(--border-radius-btn) var(--border-radius-btn) 0;
}

.btn-primary-cut-left {
  padding: 1.5625rem 0.78125rem 1.5625rem 0.78125rem;
  cursor: pointer;
  border: none;
  border-radius: var(--border-radius-btn) 0 0 var(--border-radius-btn);
}

.glass-effect {
  backdrop-filter: blur(1.875rem);
  -webkit-backdrop-filter: blur(1.875rem);
  background-color: rgb(17 25 40 / 20%);
}

.map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.3),
    rgba(0, 0, 0, 0) 50%,
    rgba(0, 0, 0, 0.3)
  );
  z-index: 2;
  pointer-events: none;
}

body.with-box-thanks-active .main-content {
  transform: translateX(-25rem);
}

::-webkit-scrollbar {
  width: 0.5rem;
  height: 0.5rem;
}

::-webkit-scrollbar-track {
  border-radius: 0.625rem;
}

::-webkit-scrollbar-thumb {
  background: #795c32;
  border-radius: 0.625rem;
}
