@import url('https://fonts.googleapis.com/css?family=Roboto:300,400,400i,500&display=swap');

body {
  font-family: "Roboto", Helvetica, Arial, sans-serif;
  margin: 0
}
.error-page__header {
  min-width: 375px;
}
.error-page__header-logo-wrap {
  display: inline-block;
  cursor: pointer;
}
.error-page__header-logo {
  height: 50px;
  max-width: 300px;
  padding: 0.5rem 1rem;
}
.error-page__wrapper {
  padding: 1rem 1.5rem;
  display: flex;
  min-width: 375px;
  box-sizing: border-box;
}
.error-page__title {
  display: inline-block;
  position: relative;
  margin-bottom: 1.5rem;
  font-size: 1.5em;
  font-weight: 500;
  line-height: 1.33;
}
.error-page__title::after {
  background-color: black;
  bottom: -0.75rem;
  content: ' ';
  height: 2px;
  left: 0;
  max-width: 33%;
  position: absolute;
  width: 133%;
}
.error-page__content-row {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.error-page__content-column {
  display: flex;
  flex-direction: column;
}
.error-page__content {
  margin: 0 auto;
}
.error-page__text,
.error-page__download-list--title,
.error-page__download-list--text {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 0;
  color: black;
}
.error-page__text {
  font-weight: 300;
}
.error-page__download-list--title {
  margin-top: 1.5rem;
  font-weight: 500;
}
.error-page__download-list {
  display: flex;
  flex-direction: row;
  list-style: none;
  margin-bottom: 0;
  padding: 0;
  margin-block-start: 0;
  margin-block-end: 0;
}
.error-page__download-list--text {
  color: #1E7CB3;
  margin-right: 1rem;
  margin-top: 0;
  font-weight: 400;
}
.error-page__download-list--item:last-child > a {
  margin-right: 0;
}
li.error-page__download-list--item {
  display: flex;
}
li.error-page__download-list--item:nth-child(n+2):before {
  background-color: black;
  content: ' ';
  display: flex;
  height: 15px;
  left: -0.5rem;
  position: relative;
  top: 0.25rem;
  width: 1px;
}
.error-page__icon {
  height: 120px;
  padding-top: 1.25rem;
  text-align: center;
}

/* desktop styles */
@media (min-width: 1024px) {
  .error-page__wrapper {
    padding: 4rem 1.5rem;
  }
  .error-page__content {
    max-width: 740px;
    margin: 0 auto;
  }
  .error-page__title {
    font-size: 1.85em;
    margin-bottom: 1.625rem;
    max-width: 75%;
  }
  .error-page__text,
  .error-page__download-list--title,
  .error-page__download-list--text {
    font-size: 1.25rem;
    line-height: 1.33;
  }
  .error-page__icon {
    padding-top: 1.5rem;
    padding-left: 3.5rem;
  }
  .error-page__content-row {
    flex-direction: row;
  }
  .error-page__download-list--text {
    margin-right: 1.5rem;
  }
  .error-page__download-list--item:last-child > a {
    margin-right: 0;
  }
  li.error-page__download-list--item:nth-child(n+2):before {
    left: -0.75rem;
    height: 20px;
  }
}
