  *,
  *::before,
  *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    /* font-weight: normal; */
  }
  
  body {
    /* font-family: "Open Sans", serif; */
    font-size: 16px;
    background-color: #f2f2f2;
  }
  
  .page-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
    color: #3c3c3c;
    min-height: 100vh;
    width: 100%;
    background-color: #f2f2f2;
    margin: 0 auto;
    position: relative;
  }
  
  header {
    width: 100%;
  }
  
  header select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("/static/assets/arrow-down.svg");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 20px;
    width: 50px;
    outline: none;
    box-shadow: none;
    cursor: pointer;
  }
  
  header select:hover {
    background-image: url("/static/assets/arrow-down.svg");
  }
  
  .font-din-light {
    font-family: "DIN Next LT Pro", sans-serif;
    font-weight: 300;
  }
  
  .font-din-heavy {
    font-family: "DIN Next LT Pro", sans-serif;
    font-weight: 900;
  }
  
  .font-din-regular {
    font-family: "DIN Next Rounded LT Pro", sans-serif;
    font-weight: 400;
  }
  .font-din-medium {
    font-family: "DIN Next Rounded LT Pro", sans-serif;
    font-weight: 500;
  }
  
  .section-selector {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("/static/assets/arrow-down.svg");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 30px;
  }
  
  .hyphenated-text {
    hyphens: auto;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  
  .hidden {
    display: none;
  }
  
  /** disable reconnect error messages **/
  
  /* should be fix in .net9: https://github.com/dotnet/aspnetcore/issues/10325 */
  #components-reconnect-modal {
    display: none !important;
  }
  
  .components-reconnect-show, .components-reconnect-failed, .components-reconnect-rejected {
    display: none !important;
  }