#section-error-template {  
  border-top: 2px solid var(--website-color-3);

  background-image: url(../../images/site_imgs/splash/error.png);
  background-color: var(--color-gray-100);
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
}

#section-error-template #center-container.flexbox-col {
  height: 100vh;
  justify-content: center;
}

#section-error-template section {
  text-align: center;
  max-width: 60rem;
  padding: 0;
}

#section-error-template section #timer {
  text-align: center;
  text-transform: capitalize;
  font-size: calc(0.825rem + 0.2vw);
  font-weight: 700;
  color: var(--font-color);
}

#section-error-template section #checkmark-icon {
  background-image: url(../../images/site_imgs/icons/errors/error-verified.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10rem;
  height: 10rem;
  padding: var(--space-6);
  background-color: transparent;
}

#section-error-template section #unauthorized-icon {
  background-image: url(../../images/site_imgs/icons/errors/error-unauthorized.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10rem;
  height: 10rem;
  padding: var(--space-6);
  background-color: transparent;
}

#section-error-template section #no-find-icon {
  background-image: url(../../images/site_imgs/icons/errors/error-no-find.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10rem;
  height: 10rem;
  padding: var(--space-6);
  background-color: transparent;
}

#section-error-template section #wrench-icon {
    background-image: url(../../images/site_imgs/icons/errors/error-wrench.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 10rem;
    height: 10rem;
    padding: var(--space-6);
    background-color: transparent;
  }

#section-error-template section h2 {
  text-align: center;
}

#section-error-template ul.flexbox-row {
  justify-content: space-evenly;
  align-items: center;
  gap: var(--space-8);
  background-color: var(--color-blue-500);
  border: 1px solid var(--color-blue-100);
  border-radius: var(--border-radius-medium);
  padding: var(--space-8);
  box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.25);
  -webkit-box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.25);
}

#section-error-template #right-col .flexbox-col {
  text-align: center;
}

#section-error-template img {
  width: 100%;
  max-width: auto;
  height: auto;
}

/* =============================================================================
  MEDIA RESPONSIVE 
  ================================================================================ */

@media (max-width: 48rem) {
  /* 768px */

  #section-error-template section h2 {
    text-align: center;
  }
  #section-error-template #center-container.flexbox-col {
    height: 100%;
  }

  #section-error-template {
    padding: var(--space-12) var(--space-4);
  }

  #section-error-template a {
    max-width: 100%;
    max-height: 100%;
  }

  #section-error-template {
    height: 100%;
    max-height: 60rem;
    overflow-y: scroll;
  }

  #section-error-template .grid {
    grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
  }
}
