@charset "UTF-8";

body{
  margin: 0;
  padding: 0;
  background: #f3f6fb;
}

.loading-wrapper{
  width: 100%;
  height: 100svh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loading-block{
  width: 400px;
  max-width: calc(100% - 32px);
  height: 400px;
  padding: 32px 0;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 8px 10px rgba(0, 0, 0, 0.03);
  box-sizing: border-box;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
}

.loading-block__animation video{
  width: 140px;
}

.loading-block__text{
  color: #666;
  font-size: 14px;
  font-weight: 600;
}

.loading-block__link{
  margin-top: 12px;
}

.loading-block__link p{
  margin: 0;
  font-size: 15px;
  text-align: center;
  line-height: 2;
}

.loading-block__link p:not(:first-child){
  margin-top: 12px;
}

.loading-block__link a{
  color: #0078de;
  font-size: 108%;
  font-weight: 600;
}

.loading-block__link a:hover{
  text-decoration: none;
}