.loader {
    position: relative;
  }
  
  .box-1 {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 150px;
    width: 150px;
    background-color: #FFFFFF;
    background-image: linear-gradient(135deg, #FFFFFF 0%, #6284FF 34%, #FF0000 100%);
    border-radius: 50%;
    animation: rotate 3s linear infinite;
    box-shadow: rgba(17, 17, 26, 0.1) 0px 1px 0px, rgba(17, 17, 26, 0.1) 0px 8px 24px, rgba(17, 17, 26, 0.1) 0px 16px 48px;
  }
  
  @keyframes rotate {
    0% {
      transform: rotate(0deg);
    }
  
    100% {
      transform: rotate(360deg);
    }
  }
  
  .box-1::before {
    content: '';
    position: absolute;
    inset: 15px;
    background: #f5f5f5;
    border-radius: 50%;
    box-shadow: rgb(204, 219, 232) 3px 3px 6px 0px inset, rgba(255, 255, 255, 0.5) -3px -3px 6px 1px inset;
  }
  
  .loader span {
    text-align: center;
    position: absolute;
    top: 65px;
    left: 25px;
    color: black;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    letter-spacing: 2px;
    font-weight: 800;
    font-size: 1rem;
    animation: text-animate412 3s linear infinite;
  }
  
  @keyframes text-animate412 {
  
    10% {
      opacity: 0;
    }
  
    100% {
      opacity: 1;
    }
  }
  
.wrap-loading{ /*화면 전체를 어둡게 합니다.*/

position: fixed;

left:0;

right:0;

top:0;

bottom:0;

background: rgba(0,0,0,0.2); /*not in ie */

filter: progid:DXImageTransform.Microsoft.Gradient(startColorstr='#20000000', endColorstr='#20000000');    /* ie */
}

.display-none{ /*감추기*/

    display:none;

}

