#loading-area {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999999999;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 80px;
  background: #fff;
  text-align: center; }
  #loading-area .text {
    font-size: 30px;
    font-family: var(--font-family-title);
    font-weight: 900;
    color: #000;
    margin-bottom: 10px; }
  #loading-area .line {
    width: 300px;
    height: 3px;
    position: relative;
    background-color: #f5f5f5;
    overflow: hidden; }
    #loading-area .line:after {
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      width: 100px;
      content: "";
      background-color: var(--primary);
      animation: center-animate 2s ease infinite alternate; }