.progress-wrap {
  position: fixed;
  right: 50px;
  bottom: 50px;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.2);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.progress-wrap::after {
  position: absolute;
  content: '\f176';
  font-family: "Font Awesome 5 Pro";
  text-align: center;
  line-height: 46px;
  font-size: 20px;
  color: var(--tp-common-gray);
  left: 0;
  top: 0;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  z-index: 1;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

.progress-wrap svg path {
  fill: none;
}

.progress-wrap svg.progress-circle path {
  stroke: var(--tp-common-gray);
  stroke-width: 4;
  box-sizing: border-box;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}


.error-page-wrapper {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.error-page-wrapper .main {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  overflow: hidden;
}

.error-page-wrapper .main h1 {
  font-size: 10em;
  line-height: 1;
}
.error-page-wrapper .main h2 {
  color: var(--tp-common-gray);
  line-height: 1;
}

.error-page-wrapper .main h1.X {
  width: 110px;
  margin: 0 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.error-page-wrapper .caution__tape.text {
  width: 200%;
  height: 10px;
}

.error-page-wrapper .caution__tape.text:nth-child(1) {
  transform: rotateZ(45deg);
}

.error-page-wrapper .caution__tape.text:nth-child(2) {
  transform: rotateZ(-45deg);
}

.error-page-wrapper .background {
  width: 100%;
  height: 100%;
  position: absolute;
  overflow: hidden;
}

.error-page-wrapper .caution__tape {
  position: absolute;
  z-index: 3;
  width: 105%;
  height: 40px;
  user-select: none;
  background-color: var(--tp-theme-1);
  background-image: linear-gradient(var(--tp-theme-1) 0%, var(--tp-theme-1) 100%);
  color: #0a0a0a;
  display: flex;
  align-items: center;
  justify-content: space-around;
  font-weight: bolder;
  box-shadow: 0 0 25px rgba(191, 56, 63, 0.8);
  border: 1px rgba(0, 0, 0, 0.9) solid;
}

.error-page-wrapper .caution__tape.center {
  bottom: 20%;
  transform: scale(1.5) rotateZ(5deg);
  -webkit-animation: show_tape_center 500ms cubic-bezier(0.18, 0.89, 0.32, 1.28) both;
  -o-animation: show_tape_center 500ms cubic-bezier(0.18, 0.89, 0.32, 1.28) both;
  animation: show_tape_center 500ms cubic-bezier(0.18, 0.89, 0.32, 1.28) both;
}

.error-page-wrapper .caution__tape.left {
  top: 10%;
  left: -20%;
  transform: rotateZ(-45deg);
  -webkit-animation: show_tape_left 500ms cubic-bezier(0.18, 0.89, 0.32, 1.28) both;
  -o-animation: show_tape_left 500ms cubic-bezier(0.18, 0.89, 0.32, 1.28) both;
  animation: show_tape_left 500ms cubic-bezier(0.18, 0.89, 0.32, 1.28) both;
}

@keyframes show_tape_left {
  0% {
    top: 0;
  }
}

@keyframes show_tape_center {
  0% {
    bottom: 0;
  }
}

@media (max-height: 320px) {
  .error-page-wrapper .caution__tape.center {
    display: none;
  }
}

@media (max-width: 768px) {
  .error-page-wrapper main h1 {
    font-size: 7em;
  }

  .error-page-wrapper .caution__tape {
    width: 130%;
  }

  .error-page-wrapper .caution__tape.left {
    top: 10%;
    left: -35%;
  }
}