/* root styles */

:root {
    --primary-light: #57b9fb;
    --secondary-light: #eeeeee;
}

/* global styles */

* {
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: inherit;
}

html {
    font-size: 16px;
}

body {
    font-family: sans-serif;
    line-height: 1.5;
    color: var(--bs-body-color);
    background-color: var(--bs-white);
}

/* Addtional styles */

.map-container.fullscreen {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
}

.hero-bg .overlay {
  background: rgba(0, 0, 0, 0.5);
}

.white-overlay {
  background: rgba(255, 255, 255, 0.7);
}


/* custom classes */

.smaller {
    font-size: 0.75rem !important;
}

.mini {
    font-size: 0.65rem !important;
}

.micro {
    font-size: 0.5rem !important;
}

.reset-input {
    border: none;
    outline: none;
    background-color: transparent;
    padding: 0;
}

.reset-input::placeholder {
    color: inherit;
    opacity: 0.5;
}

.bg-white-mask {
    background: linear-gradient(white 50%, rgba(255, 255, 255, 0));
}

/* media classes */

@media (max-width: 1200px) {
    /* large screens */
}

@media (max-width: 992px) {
    /* medium screens */
}

@media (max-width: 768px) {
    /* small screens */
}

@media (max-width: 576px) {
    /* extra small screens */
}

/* scrollbar classes */