/* CSS Reset Styles */
* {
  margin: 0;
}
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
body .hide {
  display: none;
}

input,
button,
textarea,
select {
  font: inherit;
}
body {
  display: flex;
  flex-direction: column;
  height: 100vh;
  margin: 0;
  padding: 0;
}

#loading-page-svg-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 100vh;
}

#loading-page-svg-container.hide {
  display: none;
}

#main {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  margin-top: 55px;
  font-family: open-sans, sans-serif;
  font-weight: 400;
}

#main.hide {
  display: none;
}

@media only screen and (max-width: 615px) {
  #main {
    min-height: 75vh;
  }
}
