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

html, body {
  width: 100%;
  min-width: 400px;
  min-height: 100%;
  margin: 0;
  padding: 0;
  font-family: 'Muli';
  color: white;
}

body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #f5f5f5;
  overflow: auto;
  padding-bottom: 64px;
  min-height: 100vh;
}

a, a:visited, a:link {
  color: #242E3C;
}

a:hover {
  color: #E94E24;
}

.emb-logo-container {
  position: relative;
  margin: 0 auto;
  margin-top: 64px;
  padding: 0 50px;
  width: 100%;
  max-width: 600px;
}

.emb-logo {
  width: 100%;
  max-height: 35vh;
}

.emb-login-button__container {
  display: flex;
  justify-content: center;
  margin-top: 64px;
}

a.emb-login-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  border: none;
  margin: 0 auto;
  padding: 0 32px;
  border-radius: 2px;
  font-size: 16px;
  color: white;
  cursor: pointer;
  white-space: nowrap;
  transition: box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1);
  background: linear-gradient(to right, rgb(255, 120, 0), rgb(245, 55, 0));

  min-width: 200px;

  text-decoration: none;
}

a.emb-login-button:hover,
a.emb-login-button:active,
a.emb-login-button:focus {
  color: white;
}

a.emb-login-button:hover {
  box-shadow: 0 3px 20px rgba(45, 58, 76, 0.2);
}

.emb-imprint-overlay-container,
.emb-privacy-overlay-container {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;

  pointer-events: none;

  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

.emb-imprint-overlay,
.emb-privacy-overlay {
  position: relative;

  display: flex;
  flex-direction: column;

  background-color: white;
  box-shadow: 0 0 20px rgba(36, 46, 60, 0.3);

  padding: 32px;
  margin: 32px;

  color: #242E3C;
  opacity: 1;

  z-index: 11;

  height: 70vh;
  overflow: hidden;
  margin-bottom: 48px;

  pointer-events: all;
}

.emb-imprint-overlay h1,
.emb-privacy-overlay h1 {
  margin-bottom: 16px;
}

.emb-imprint-overlay-content,
.emb-privacy-overlay-content {
  position: relative;
  width: 100%;

  padding-right: 16px;
  overflow-y: auto;
}

.emb-privacy-overlay-content ol {
  list-style-type: none;
}

.emb-privacy-overlay-content ul {
  padding-left: 32px
}

.emb-privacy-overlay-content ul li {
  list-style-type: disc;
  list-style-position: outside;
}

.emb-privacy-overlay-content h2 {
  margin-top: 20px;
}

.emb-privacy-overlay-content h3 {
  margin-top: 16px;
}

.emb-imprint-overlay-click-area,
.emb-privacy-overlay-click-area {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background-color: rgba(36, 46, 60, 0.65);
  z-index: 10;

  pointer-events: all;

  opacity: 1;
}

.emb-imprint-overlay-click-area--hidden,
.emb-privacy-overlay-click-area--hidden {
  display: none;
}

.emb-imprint-overlay--hidden,
.emb-privacy-overlay--hidden {
  display: none;
}

.emb-imprint-overlay__close-button,
.emb-privacy-overlay__close-button {
  position: absolute;
  top: 0;
  right: 0;
  width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  cursor: pointer;
}

footer {
  position: fixed;
  left: 0;
  bottom: 0;
  right: 0;
  text-align: center;
  line-height: 48px;
  height: 48px;
  background-color: #242E3C;
  box-shadow: 0 0 20px rgba(36, 46, 60, 0.3);
  font-size: 16px;
  font-weight: 300;
  z-index: 9;
}

footer span {
  display: inline-block;
  margin: 0 10px;
  cursor: pointer;
}

footer span:hover {
  text-decoration: underline;
}

@media (max-width: 750px) {
  .emb-claim {
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .emb-contact-container {
    /* flex-wrap: wrap; */
    display: block;
    padding: 0 32px;
    padding-bottom: 96px;
  }

  .emb-address,
  .emb-contact {
    width: 1fr;
    min-width: 340px;
    margin: 0 auto;
  }

  .emb-contact {
    margin-top: 16px;
  }
}

@media (max-height: 400px) {
  .emb-login-button__container {
    margin-top: 32px;
  }
}
