.spinner-wrap {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1040;
    background-color: #ffffffa5;
}
      
.caf-spinner-grid {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.caf-spinner-wave{
    position: relative;
    margin-left: 92px;
}
      
.caf-spinner-wave span{
    position: absolute;
    width: 8px;
    height: 110px;
    margin-top: -45px;
    animation: animate 0.8s infinite;
    animation-direction: alternate-reverse;
}

.caf-spinner-wave span:nth-child(1){
    margin-left: 0px;
    background-color: #f31156;
}

.caf-spinner-wave span:nth-child(2){
    margin-left: -14px;
    animation-delay: 0.1s;
    background-color: #f31156;
}

.caf-spinner-wave span:nth-child(3){
    margin-left: -28px;
    animation-delay: 0.2s;
    background-color: #cd2b82;
}

.caf-spinner-wave span:nth-child(4){
    margin-left: -42px;
    animation-delay: 0.3s;
    background-color: #cd2b82;
}

.caf-spinner-wave span:nth-child(5){
    margin-left: -56px;
    animation-delay: 0.4s;
    background-color: #cd2b82;
}

.caf-spinner-wave span:nth-child(6){
    margin-left: -70px;
    animation-delay: 0.5s;
    background-color: #5c5193;
}

.caf-spinner-wave span:nth-child(7){
    margin-left: -84px;
    animation-delay: 0.6s;
    background-color: #5c5193;
}

.caf-spinner-wave span:nth-child(8){
    margin-left: -98px;
    animation-delay: 0.7s;
    background-color: #5c5193;
}

@keyframes animate{
    0%{
        height: 5px;
        margin-top: 0;
        transform: rotate(40deg);
    }
    100%{
        height: 90px;
         transform: rotate(0deg);
    }
}