/*--------------------------------------------------------------
>>> Animation
--------------------------------------------------------------*/
@-webkit-keyframes slide-up {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2rem, 0);
            transform: translate3d(0, 2rem, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
@keyframes slide-up {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2rem, 0);
            transform: translate3d(0, 2rem, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

.err404-inner {
  padding: 7.9375rem 0;
  max-width: 57.875rem;
  margin: auto;
}

.err404-inner > * {
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
  max-width: 50%;
}

.err404__text {
  font-size: 9rem;
  font-weight: 300;
  color: #449350;
}

.err404__image {
  width: 12.3125rem;
  height: 12.3125rem;
  position: relative;
  overflow: hidden;
  border-radius: 50%;
}

.page-title {
  color: #449350;
  font-weight: 400;
  font-size: 3.3125rem;
}

.err404__description {
  font-size: 1rem;
}

.err404-popular-tags-list {
  list-style-type: none;
  margin: 0;
}

.err404__title {
  margin-top: 0;
  white-space: nowrap;
}

.err404__image-wrapper {
  padding-right: 2rem;
}

.err404__content > .btn {
  margin-top: .5rem;
  min-width: 9rem;
}

.err404-popular-tags {
  margin-top: 1rem;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.err404-popular-tags__title {
  font-size: .75rem;
  font-weight: 500;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
}

.err404-popular-tags-item:not(:first-child) {
  margin-left: .75rem;
}

.err404__image-wrapper > *:not(:first-child) {
  margin-left: .5rem;
}

.err404__image:before {
  width: 100%;
  height: 100%;
  content: '';
  position: absolute;
  left: -1rem;
  bottom: 0;
  background-image: url(../images/brand-circle.svg);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: bottom;
  opacity: 0;
  -webkit-animation: slide-up 0.5s .2s ease;
          animation: slide-up 0.5s .2s ease;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.err404__image:after {
  width: 100%;
  height: 100%;
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 50%;
  border: thin solid #7DB352;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 1;
}

.err404-line {
  margin: -2rem 0 1rem;
  opacity: .6;
}

.err404-popular-tags::-webkit-scrollbar {
  width: 0;
  height: 0;
  background: transparent;
}

.archive .err404__image-wrapper {
  display: none;
}

.archive .err404-inner {
  padding: 0;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.archive .err404-inner > * {
  -ms-flex-preferred-size: 75%;
      flex-basis: 75%;
  max-width: 75%;
}

.archive .err404__title {
  display: none;
}

@media screen and (max-width: 1023px) {
  .err404-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    max-width: 100%;
    padding: 5.857rem 0;
  }
  .err404-inner > * {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
  }
  .err404__image {
    width: 10.714rem;
    height: 10.714rem;
  }
  .err404__text {
    font-size: 6.857rem;
  }
  .err404__title {
    margin-top: 2rem;
    white-space: normal;
  }
  .err404__content > .btn {
    display: none;
  }
  .err404-popular-tags {
    margin-top: 1.5rem;
    overflow: auto;
  }
  .archive .err404-inner > * {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
  }
  .err404-popular-tags__title {
    margin-bottom: 1rem;
  }
  .err404-popular-tags-list {
    padding: 0;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    overflow-x: auto;
  }
  .archive .err404-popular-tags {
    margin-bottom: 2.57rem;
  }
}
/*# sourceMappingURL=404.css.map */