/* ================================
   SORRY PAGE BASE SECTION
================================== */
.sorry-page--section {
  width: 100%;
}
.sorry-page--section h1,
.sorry-page--section h2 {
  font-weight: bold;
}
.sorry-page--section h1 {
  font-size: 30px;
}
.sorry-page--section h2 {
  font-size: 24px;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}
.sorry-page--section p {
  font-size: 18px;
}
.sorry-page--section p.small-font {
  font-size: 12px;
}

/* ================================
   LAYOUT WRAPPER
================================== */
.sorry-page--inner {
  padding: 4rem;
  display: flex;
  justify-content: space-between;
  max-width: 1280px;
  margin: auto;
}

/* ================================
   TEXT COLUMN
================================== */
.sorry-page--text {
  max-width: calc(100% - 500px);
  text-align: left;
  display: flex;
  flex-direction: column;
  /* Link emphasis */
}
.sorry-page--text a.sorry-page--link,
.sorry-page--text a.sorry-page--link--e-loket {
  font-weight: bold;
}

/* Message wrapper grows vertically */
.sorry-page--messages {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.sorry-page--info {
  margin-top: 2rem;
}

/* ================================
   IMAGE WRAPPER
================================== */
.sorry-page--image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}
.sorry-page--image-wrapper img {
  width: 450px;
  height: auto;
  margin: auto;
}

/* ================================
   RESPONSIVE: LARGE TABLET
================================== */
@media only screen and (max-width: 1024px) {
  .sorry-page--text {
    min-width: calc(100% - 275px);
  }
  .sorry-page--image-wrapper img {
    width: 250px;
  }
}
/* ================================
   RESPONSIVE: MOBILE
================================== */
@media only screen and (max-width: 768px) {
  .sorry-page--inner {
    flex-direction: column;
    align-items: center;
    padding: 2rem;
  }
  .sorry-page--text {
    max-width: 100%;
    margin-bottom: 2rem;
  }
  .sorry-page--image-wrapper img {
    width: 100%;
    max-width: 350px;
    height: auto;
  }
}
/* ================================
   BACKGROUND THEMES
================================== */
.yellow-background {
  background-color: #ffe615;
  color: #333332;
}

.orange-background {
  background-color: #ef8120;
  color: #fff;
}

.green-background {
  background-color: #009b48;
  color: #fff;
}

.pink-background {
  background-color: #fb6566;
  color: #fff;
}

.red-background {
  background-color: #f00;
  color: #fff;
}

/*# sourceMappingURL=sorry-page.css.map */
