* {
  margin: 0;
  padding: 0;
}

:root {
  --color-primary: rgba(253, 243, 206, 1);
  --color-text-primary: rgba(30, 37, 41, 1);
  --color-secondary: rgba(123, 186, 181, 1);
  --color-tertiary: rgba(213, 107, 53, 1);
  --color-supplement: rgba(244, 204, 108, 1);
}

a, p, button, li, label, #feedback {
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

h1, h2 {
  font-family: "Sigmar One", sans-serif;
  font-weight: 400;
  font-style: normal;
}

body {
  color: var(--color-text-primary);
  background-color: var(--color-primary);
}

img {
  width: 100%;
  height: auto;
}

a {
  color: inherit;
}
a:visited {
  color: inherit;
}

@media only screen and (max-width: 734px) {
  .small-hide {
    display: none;
  }
}
@media only screen and (max-width: 1068px) {
  .medium-hide {
    display: none;
  }
}
input {
  border: none;
  padding: 0.25rem;
}

.container {
  max-width: 80%;
  margin: 2rem auto;
  position: relative;
}

@media only screen and (min-width: 735px) {
  .container {
    max-width: 678px;
  }
}
@media only screen and (min-width: 1069px) {
  .container {
    max-width: 1080px;
    padding: 0 3rem;
  }
}
button, .btn-link {
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  background-color: var(--color-secondary);
  color: white !important;
  cursor: pointer;
}
button.active, .btn-link.active {
  background-color: rgb(86, 157, 184);
}

.btn-link {
  text-decoration: none;
}

button:disabled {
  cursor: not-allowed;
  background-color: rgb(167, 179, 184);
}

label {
  margin-block: auto;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

.input-group {
  display: flex;
  flex-wrap: wrap;
  /* flex-direction: column; */
  gap: 0.5rem;
}

nav {
  padding: 1rem;
  background-color: var(--color-tertiary);
}
nav ul {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  justify-content: space-between;
}
nav ul li {
  list-style-type: none;
}
nav ul li a {
  text-decoration: none;
  color: whitesmoke !important;
}

.sub-nav {
  display: flex;
  gap: 1rem;
}

.container.container-home {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.container.container-home a {
  color: white !important;
}

@media (min-width: 1069px) {
  #hero-logo {
    width: 80%;
  }
}
#nav-logo {
  width: 50px;
}

#map {
  height: 380px;
}
#map.map-explore {
  height: 500px;
  margin-bottom: 1rem;
}

.email-style {
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(0 0 99.9% 99.9%);
          clip-path: inset(0 0 99.9% 99.9%);
  overflow: hidden;
  height: 1px;
  width: 1px;
  padding: 0;
  border: 0;
}

#dash-con {
  display: none;
}

#error {
  display: none;
}

form {
  display: block;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  width: 100%;
}
form #gps {
  margin-top: 0.5rem;
}
form .question-group {
  margin-block: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
form .question-group .question-title {
  font-weight: 500;
  margin-bottom: 0.25rem;
}

#survey-instructions {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
#survey-instructions #survey-instructions-copy {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
  gap: 1rem;
}

@media (min-width: 735px) {
  #survey-instructions #survey-instructions-copy {
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    gap: 2rem;
  }
  #survey-instructions #survey-instructions-copy p {
    width: 33%;
  }
}
@media (min-width: 1069px) {
  #survey-instructions {
    max-width: 850px;
    margin: 0 auto;
  }
  #survey-instructions #survey-instructions-copy {
    gap: 3rem;
  }
}
#survey-container {
  display: flex;
  position: relative;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
}
#survey-container #map {
  width: 100%;
}
#survey-container #feedback {
  color: red;
}

#survey-controls {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
}

@media (min-width: 1069px) {
  #module-controls.active #survey-controls {
    margin-top: 4rem;
  }
}
@media only screen and (min-width: 1069px) {
  #survey-container {
    flex-direction: row;
    gap: 2rem;
  }
  #survey-container #feedback {
    margin-bottom: 2rem;
  }
}
@media only screen and (min-width: 1069px) {
  #survey-container #map {
    width: 60%;
  }
  #survey-container #smell-form {
    position: relative;
  }
  #survey-container #smell-form #module-map {
    padding-bottom: 0.5rem;
  }
  #survey-container #smell-form #module-map #category-div {
    width: -moz-max-content;
    width: max-content;
    flex-direction: row;
    position: absolute;
    bottom: -55px;
    left: -56.1797752809vw;
  }
  #survey-container form.active {
    width: 40%;
  }
}
@media only screen and (min-width: 1180px) {
  #survey-container #smell-form #module-map #category-div {
    left: -662px;
  }
}
.survey-block {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: center;
}

#about-desc-container {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
#about-desc-container .about-copy-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
#about-desc-container .about-copy-container a {
  font-style: italic;
}

#about-team-container {
  margin-top: 3rem;
}
#about-team-container #about-team-image-wrapper {
  margin-top: 1rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
}
#about-team-container #about-team-image-wrapper #about-team-image-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
#about-team-container #about-team-image-wrapper #about-team-image-container .about-team-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#about-team-container #about-team-image-wrapper #about-team-image-container .about-team-tile img {
  border-radius: 100%;
  margin-bottom: 1rem;
  max-width: 150px;
}
#about-team-container #about-team-image-wrapper #about-team-image-container .about-team-tile p {
  margin-bottom: 0.5rem;
}
#about-team-container #about-team-image-wrapper #about-team-image-container .about-team-tile p, #about-team-container #about-team-image-wrapper #about-team-image-container .about-team-tile a {
  align-self: flex-start;
}

@media only screen and (min-width: 735px) {
  #about-desc-container {
    flex-direction: row;
  }
  #about-desc-container .about-copy-container {
    width: 65%;
  }
  #about-desc-container .about-copy-container:last-of-type {
    width: 35%;
  }
  #about-team-container #about-team-image-wrapper {
    margin-top: 2rem;
  }
  #about-team-container #about-team-image-wrapper #about-team-image-container {
    width: 80%;
    flex-direction: row;
  }
}
@media only screen and (min-width: 1069px) {
  #about-team-container #about-team-image-wrapper #about-team-image-container {
    width: 75%;
  }
}
#module-email {
  text-align: center;
}

#embed {
  width: 80%;
  min-height: 550px;
}

@media only screen and (max-width: 1068px) {
  #embed {
    width: 100%;
    min-height: 600px;
  }
}
@media only screen and (max-width: 734px) {
  #embed {
    min-height: 700px;
  }
}
.container.container-login {
  display: flex;
  justify-content: center;
  flex-direction: row;
}

#login-form {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  align-items: start;
  gap: 1rem;
}
#login-form label {
  min-width: 70px;
}
#login-form #login-btns {
  margin-top: 1rem;
  align-self: center;
}
#table-wrapper {
  display: none;
  margin-top: 2rem;
  overflow: scroll;
  max-height: 450px;
}
#table-wrapper table {
  margin-top: 2rem;
  font-family: arial, sans-serif;
  border-collapse: collapse;
  width: 100%;
}
#table-wrapper table .table-item-no {
  position: sticky;
  left: 0;
  background-color: var(--color-secondary);
  color: white;
  min-width: 30px;
  max-width: 70px;
}
#table-wrapper table .table-item-small {
  min-width: 80px;
}
#table-wrapper table .table-item-medium {
  min-width: 150px;
}
#table-wrapper table th {
  position: sticky;
  top: 0;
  background-color: var(--color-secondary);
  color: white;
}
#table-wrapper table td, #table-wrapper table th {
  min-width: 250px;
  border: 1px solid rgb(53, 53, 53);
  text-align: left;
  padding: 8px;
}
#table-wrapper table .btn-div {
  display: flex;
  gap: 0.5rem;
  flex-direction: column;
  align-items: center;
}
#table-wrapper table .btn-div button {
  width: -moz-fit-content;
  width: fit-content;
}

#module-end-btns {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  flex-direction: column;
  align-items: center;
}
#module-end-btns a {
  width: -moz-fit-content;
  width: fit-content;
}

@media only screen and (min-width: 1069px) {
  #module-end-btns {
    flex-direction: row;
    justify-content: center;
  }
}
footer {
  display: none;
  margin-top: 4rem;
}
footer ul {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
footer ul li {
  list-style-type: none;
  font-size: 12px;
}/*# sourceMappingURL=styles.css.map */