* {
  font-family: 'Pretendard GOV' !important;
  font-weight: 500;
  font-size: 15px;
}

html, body{
  height: 100%;
  width: 100%;
}

body{
  background-color: #E2E9F3;
}

.wrapper-error{
  width: 100%;
  height: 100%;
  position: relative;
}

.error-info{
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 100%;
  max-width: 1000px;
  min-width: 280px;
  gap: 15px;
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.error-info .img{
  width: 300px;
  height: 300px;
  margin: 0 auto;
  background: url('../../images/error_bg.svg')no-repeat center;
  background-size: 100%;
}

.error-info .info-txt{
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 90%;
  gap: 5px;
  margin-bottom: 1rem;
}

.error-info .info-txt p{
  color: #333;
  text-align: center;
  word-break: keep-all;
}

.error-info .info-txt strong{
  font-size: 48px;
  font-weight: 700;
  color: #02336B;
}

.error-info .info-txt p:nth-child(2){
  font-size: 20px;
  color: #02336B;
  margin-bottom: 1rem;
}

.error-info .info-txt p:last-child{
  margin-top: 1rem;
}

.wrapper-error .button-box{
  display: flex;
  width: 100%;
  gap: 5px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.button-box button{
  width: 80%;
  padding: 14px 10px;
  border: 0;
  border-radius: 5px;
  cursor: pointer;
}

.button-box button.goMain{
  background-color: #0455B2;
  color: #fff;
}

.button-box button.before{
  background-color: #C2C6CC;
  color: #333;
}

@media all and (min-width:768px) {
  .error-info .info-txt{
    width: 100%;
  }

  .wrapper-error .button-box{
    flex-direction: row;
  }
  .button-box button{
    width: 120px;
  }
}

