#overlay{ 
  position: fixed;
  top: 0;
  z-index: 999;
  width: 100%;
  height:100%;
  display: none;
  background: #ffffff;
}
.cv-spinner {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;  
}
.spinner {
  width: 50px;
  height: 50px;
  border: 5px #D1E0F2 solid;
  border-top: 5px #65C2FF solid;
  border-radius: 50%;
  animation: sp-anime 1.0s infinite linear;
}
@keyframes sp-anime {
  100% { 
    transform: rotate(360deg); 
  }
}
.is-hide{
  display:none;
}
.loading {
  font-family: "M PLUS Rounded 1c", sans-serif;
  text-align: center;
  color: #65C2FF;
  font-size: 1.8em;
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: 0.02em;
  text-decoration: none;
  padding: 0 0 0 0;
  margin: 10px 0 0 0;
}