    #load_wrap{
        position:fixed;
        width:100%;
        height: 100%;
        z-index: 12;
        background: #FFF;
        left:0;
        top:0;
    }
    #load_k1{
        position: absolute;
        left:0;
        width:150px;
        height: 81px;
        top:0;
    }
    #load_k2{
        position: absolute;
        width:150px;
        left:0;
        bottom:0;
        height: 0;
        overflow: hidden;
    }
	@media screen and (min-width: 801px) {
        transition:0.5s;
	}

    #load_k2 img{
        position: absolute;
        right:0;
        bottom:0;
    }
    #load_icon{
        position: absolute;
        width:150px;
        height: 81px;
        left:50%;
        top:50%;
        margin-left:-75px;
        margin-top:-80px;
        animation: move_anim 1s infinite linear;
        transform-origin: center center;
    }
    
    @keyframes move_anim {
      0% {transform:rotate(10deg)}
      40% {transform:rotate(10deg)}
      41% {transform:rotate(0deg)}
      50% {transform:rotate(0deg)}
      51% {transform:rotate(-10deg)}
      89% {transform:rotate(-10deg)}
      90% {transform:rotate(0deg)}
      100% {transform:rotate(0deg)}
    }
    
    @keyframes move_mask {
      0% {height:0}
      100% {height:150px}
    }
    @keyframes move_mask2 {
      0% {bottom:-100%}
      100% {bottom:0%}
    }
    #load_text{
        position: absolute;
        width:100%;
        text-align: center;
        top:50%;
        margin-top:15px;
        font-size:14px;
        font-weight: bold;
        color: #000;
        font-family: sans-serif;
    }
    @media screen and (max-width: 800px){
        #now_load{
            position: absolute;
            width:150px;
            height: 81px;
            left:50%;
            top:50%;
            margin-left:-75px;
            margin-top:-80px;            
            transform:scale(0.7) translateY(100%);
            transform-origin: center top;
        }
    }
    .red{
        color: #F00 !important;
        
        animation: move_text 0.3s 1 ease-out;
        transform-origin: center center;        
    }
    @keyframes move_text {
      0% {transform:scale(1.4);opacity:0}
      30% {transform:scale(1.4);opacity:0}
      100% {transform:scale(1);opacity:1}}
    }