/* PAGE ERROR */

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  padding: 0;
  margin: 0;
}

#error-container {
  position: relative;
  height: 100vh;
  z-index: 1;
}

#error-container .error {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  min-height: 265px;
}

.error {
  max-width: 640px;
  width: 100%;
  padding-left: 160px;
  line-height: 1.1;
}

.error .error-icon {
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0;
  margin: 0;
}

.error-icon img {
  width: 150px;
  height: 150px;
}

.error .error-icon:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(2.2);
  -ms-transform: scale(2.2);
  transform: scale(2.2);
  border-radius: 50%;
  background-color: #f2f5f8;
  z-index: -1;
}

.error h1 {
  font-family: 'Nunito', sans-serif;
  font-size: 65px;
  font-weight: 700;
  margin-top: 0px;
  margin-bottom: 10px;
  color: #151723;
  text-transform: uppercase;
}

.error h2 {
  font-family: 'Nunito', sans-serif;
  font-size: 21px;
  font-weight: 400;
  margin: 0;
  text-transform: uppercase;
  color: #151723;
}

.error p {
  font-family: 'Nunito', sans-serif;
  font-size: 19px;
  font-weight: 400;
  line-height: 1.6rem;
  color: #54565f;
}

.error a {
  font-family: 'Nunito', sans-serif;
  display: inline-block;
  font-weight: 700;
  border-radius: 40px;
  text-decoration: none;
  color: #0079cd;
}

@media only screen and (max-width: 767px) {
  .error .error-icon {
    top: -2rem;
  }

  .error {
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 110px;
  }
}

/* ICON */

.icon {
  width: 24px;
  height: 24px;

  fill: none;
  stroke: #000;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;

  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  display: inline-block;
}

.icon.left,
.icon.right {
  position: fixed;
  top: 50%;
  width: 2rem;
  height: 2rem;
  padding: 2rem;
  cursor: pointer;
  opacity: 0.12;
  transition: opacity 0.3s ease;
  z-index: 1000;
  transform: translateY(-50%);
}

.icon.left:hover,
.icon.right:hover {
  opacity: 1;
}

.icon.left {
  left: 0;
}

.icon.right {
  right: 0;
}

/* OFFSET */

.ms-1 {
  margin-left: 1.6rem;
}

.me-1 {
  margin-right: 1.6rem;
}

.me-2 {
  margin-right: 3.52rem;
}

.mx-1 {
  margin-left: 1.6rem;
  margin-right: 1.6rem;
}

/* HEADER */

header.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 1rem;
  background-color: #fff;
}

header.header nav {
  text-align: center;

  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;

  font-family: 'Nunito', sans-serif;
}

header.header button {
  display: block;
  margin: 0.3rem;
  padding: 0.3rem 0.6rem;
  border: 0;
  border-radius: 0.16rem;
  background-color: #fff;
  font-size: 0.96rem;
  color: #6a899f; /*#6e7e92*/
  cursor: pointer;
  transition: color 0.2s ease;
  outline-width: 0;
  font-family: 'Nunito', sans-serif;
}

header.header button:hover {
  color: #274a63;
}
header.header button.active {
  color: #274a63;
  font-weight: 600;
  outline: 2px solid #e3e9ed; /* #ced9e2; */
  outline-offset: -2px;
}

/* FOOTER */

.arrows kbd {
  padding: 0.3rem 0.4rem;
  font-family: system-ui, sans-serif;
  font-weight: 600;
  text-align: center;
}

footer.footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 1rem;
  /* background-color: #f2f5f8; */
  background-color: #fff;
  text-align: center;

  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;

  font-family: 'Nunito', sans-serif;
}

footer.footer .controls {
  margin-left: 1rem;
  margin-right: 1rem;
  width: 50px;
  height: 50px;
}

footer.footer .hint {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4rem;
  text-align: left;
  text-transform: uppercase;
  /* color: #54565f; */
  color: #6a899f;
}

footer.footer .hook {
  display: inline-block;
  vertical-align: middle;
  color: #6a899f;
}

footer.footer kbd {
  display: block;
  padding: 0.2rem 0.5rem;
  margin: 0.1rem;
  /* background-color: #1e2225; */
  /* background-color: #ddd; */
  background-color: #e3e9ed;
  border-radius: 0.16rem;
  font-size: 0.8rem;
}

footer.footer a {
  /* color: #0079cd; */
  color: #555;
  text-decoration: none;
  font-weight: 600;
}


footer.footer .offset {
  padding-top: 1.6rem;
}