* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  /* outline: 1px solid red; */
}

@font-face {
  font-family: "Roboto";
  src: url(f25bd05915c1a3468d3d.ttf);
}

/* SETTINGS */
img[src$=".svg"] {
  width: 1rem;
}
body,
html {
  height: 100%;
  font-family: "Roboto";
}
body {
  position: relative;
}
button,
input {
  background-color: unset;
  border: none;
}

/* CUSTOM  */
.flexRow {
  display: flex;
  flex-direction: row;
}
.flexColumn {
  display: flex;
  flex-direction: column;
}
.flexCenter {
  justify-content: center;
  align-items: center;
}

main {
  position: relative;
  height: 100%;
  width: 100%;
  display: grid;
  visibility: hidden;
  opacity: 0;
  grid-template-columns: 1fr 10fr;
  grid-template-areas: "sidebar map";
}

/* LOWBAR */
.lowBar {
  position: absolute;
  bottom: 0;
  left: 55%;
  transform: translate(-50%, 0%);
  z-index: 2;
  width: 80vw;
  color: white;
  flex-wrap: wrap;
  /* border-radius: 0.5rem 0.5rem 0 0;
  padding: 0 0.8rem;
  box-shadow: 0px 0px 32px 1px rgba(0, 0, 0, 0.75); */
}
.lowBar > button {
  background-color: rgba(0, 0, 0, 0.788);
  padding: 0.5rem 1.5rem;
  border-radius: 0.5rem 0.5rem 0 0;
  cursor: pointer;
}
.lowBar > button > img {
  filter: invert(100%);
  width: 1.5rem;
}
#lowBarOptionsContainer {
  border-radius: 0.5rem 0.5rem 0 0;
  background-color: rgba(0, 0, 0, 0.788);
  height: 0vh;
  transition: 0.4s;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  padding: 0rem;
}
#lowBarOptionsContainer > * {
  height: 100%;
  display: none;
  overflow-y: auto;
  gap: 0.5rem;
  border: 1px solid white;
  padding: 0.5rem;
}

#lowBarOptionsContainer > * > *,
#lowBarOptionsContainer > * > * > * {
  gap: 0.5rem;
}
.feederMarker {
  padding: 0.8rem;
  font-size: 1rem;
  font-weight: bold;
  color: black;
  font-family: "Roboto";
  background-color: rgb(255, 229, 29);
  border: 3px solid black;
  align-items: center;
  justify-content: center;
  display: flex;
  border-radius: 50%;
}

/* SIDEPANE */
#sidePane {
  position: absolute;
  top: 0%;
  left: 0%;
  width: 0;
  height: 100%;
  background-color: rgb(240, 240, 240);
  z-index: -1;
  visibility: hidden;
  transition: 0.4s;
  box-shadow: 0px 0px 32px 1px rgba(0, 0, 0, 0.75);
  display: grid;
  grid-template-columns: 5fr 1fr;
  grid-template-rows: auto 1fr;
  grid-template-areas:
    "sidePaneTitle sidePaneCloseButton"
    "sidePaneContent sidePaneContent";
  align-items: center;
  justify-items: center;
}

#sidePaneTitle {
  grid-area: sidePaneTitle;
  padding: 1rem 0 0.5rem 0;
  text-align: center;
  align-self: self-start;
}
#sidePaneCloseButton {
  grid-area: sidePaneCloseButton;
  border: none;
  background-color: unset;
  cursor: pointer;
  padding: 1rem 0 0.5rem 0;
  align-self: self-start;
}
#sidePaneCloseButton img {
  width: 1.5em;
}

#sidePaneContent {
  height: 100%;
  grid-area: sidePaneContent;
  overflow-y: scroll;
  width: 100%;
}
#sidePaneContent p {
  color: rgb(35, 35, 35);
  font-size: 0.9rem;
}
#sidePaneContent h1 {
  font-size: 1.5rem;
}
#sidePaneContent h2 {
  font-size: 1.3rem;
}

#sidePaneItems {
  overflow-y: scroll;
  gap: 1rem;
  padding: 1rem;
}
#sidePaneItems > div {
  display: flex;
  flex-direction: column;
  padding: 1rem;
  gap: 0.3rem;
  border: 1px solid black;
  border-radius: 0.3rem;
  cursor: pointer;
  transition: 0.4s;
  &:hover,
  &:active {
    box-shadow: 0px 0px 10px 3px rgba(0, 0, 0, 0.75);
  }
}

/*
.sidePaneSection {
  justify-content: space-evenly;
}
yello
.alertSection {
  cursor: pointer;
  border: 1px solid black;
  width: 100%;
  padding: 1rem;
  transition: 0.4s;
  &:hover,
  &:active {
    transform: scale(1.1);
    background-color: antiquewhite;
    box-shadow: 0px 0px 4px 1px rgba(0, 0, 0, 0.75);
  }
} */

/* SIDEBAR */
.sideBar {
  padding: 1rem;
  grid-area: sidebar;
  z-index: 2;
  background-color: white;
  gap: 1.5rem;
  box-shadow: 0px 0px 32px 1px rgba(0, 0, 0, 0.75);
}
.sideBar img {
  width: 3rem;
  justify-self: center;
  align-self: center;
}
.sideBar > button {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: none;
  background-color: unset;
  cursor: pointer;
  font-size: 1rem;
  transition: 0.4s;
  &:hover,
  &:active {
    transform: scale(1.1);
  }
}

/* SEARCH BAR */
.searchBar {
  z-index: 2;
  position: absolute;
  top: 5%;
  left: 31%;
  transform: translate(-50%, -50%);
  background-color: white;
  border-radius: 0.8rem;
  padding: 0.3rem 1rem;
  gap: 1rem;
  width: 30%;
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.75);
}
.searchBar > input {
  width: 100%;
  padding: 0.5rem;
}
.searchBar > input:focus {
  border: none;
  outline: none;
}

#map {
  grid-area: map;
  z-index: 1;
  height: 100%;
}

.loadingScreen {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  z-index: 98;
  background-color: rgb(236, 236, 236);
  transition: 0.5s;
  opacity: 1;
}
.loadingScreen img {
  width: 10vw;
}

.countDown {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  z-index: 99;
  background-color: rgb(236, 236, 236);
  transition: 0.5s;
  opacity: 1;
}
.countDownTitle {
  text-align: center;
  font-size: 3rem;
  justify-content: center;
  align-items: center;
}
.countDownTitle img {
  width: 10vw;
}

.countDownTimer {
  text-align: center;
  font-size: 5rem;
}

/* HEADER */

/* MAIN */
/* FOOTER */

