:root {
  --svg-height: 43, 75rem;
  --svg-width: 50rem;
  --gutter: 2.75rem;

  --fixed-position: calc(max(0px, (100vw - var(--svg-width)) / 2, var(--gutter)))
}

html * {
  box-sizing: border-box;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

html,
body {
  margin: 0;
  padding: 0;
  line-height: 1;
  height: 100%;
  background-color: oklch(98% 0.02 230.63);
}

header {
  width: calc(var(--svg-width) / 2);
  margin: .5rem auto;
  padding: .5rem;
  font-size: 1rem;
  font-weight: 600;
  color: #13235A;
  background-color: #fff;
  border: 1px solid #00a9e0;
  text-align: center;

  span {
    text-transform: uppercase;
    padding: .5rem;
    background-color: #00a9e0;
    color: #fff;
  }

  @media (max-width: 440px) {
    max-width: 400px
  }

  .logo {
    max-width: 50px;
    max-height: 50px;
    float: left;
    margin: 0 .5rem 0 .5rem;
  }
}

.map {
  margin: 125px auto;
  max-width: var(--svg-width);

  @media (max-width: 440px) {
    margin: 200px 0;
  }
}

svg {
  width: 100%;
}

.hidden {
  display: none;
}

/* modal */
.modal {
  display: none;
  position: fixed;
  z-index: 1;
  padding-top: 1%;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: scroll;
}

.modal-content {
  position: fixed;
  background-color: #fefefe;
  padding: .5rem;
  margin: 70px var(--fixed-position);
  /*max-width: fit-content;*/
  border: 1px solid #00a9e0;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);

  p {
    margin: 0;
    line-height: 1.2;
    max-width: 400px
  }

  h4 {
    text-transform: uppercase;
    text-align: center;
    font-weight: 700;
    margin: 0;
    padding: .5rem;
    background-color: #00a9e0;
    color: #fff;
  }

  button {
    float: right;
    border: none;
    background: transparent;
    cursor: pointer;
  }

  hr {
    border: 0;
    height: 1px;
    background: #aaa;
  }
    .icon {
      width: 2rem;
      height: 2rem;
      margin: 0 .5rem 0 0;
      float: left;
    }
  .inscription {
    line-height: 2rem;

    span {
      color: #fff;
      background-color: #00a9e0;
      padding: .25rem;
      font-size: 1.2rem;
      font-weight: 700;
      margin: 5px 0
    }

    .icon {
      width: 2rem;
      height: 2rem;
      margin: 0 .5rem 0 0;
      float: left;
    }

    form {
      margin-top: .75rem
    }

    label {
      display: inline-block;
    }

    .form-label {
      margin-bottom: .5rem;
      width: 66px;
      text-align: right;
      font-style: italic;
      margin-right: .5rem;
    }

    button,
    input,
    optgroup,
    select,
    textarea {
      margin: 0;
      font-family: inherit;
      font-size: inherit;
      line-height: inherit;
    }

    .btn {
      border-radius: 0;
      color: #fff;
      background: #13235A;
      font-weight: 700;
      font-style: italic;
    }

    .btn:hover {
      background-color: greenyellow;
      color: #000;
    }
  }

  @media (max-width: 440px) {
    margin: 75px var(--fixed-position);
    width: fit-content;
    max-width: 390px;
  }

}