#loader .page-loader, 
.loaderIP4-solid .page-loader {
    z-index: 1;
    display: table;
    height: 100%;
    width: 100%;
    position: absolute;
    background-color: #214c9a !important;
}

#loader .page-loader .page-loader-content,
.loaderIP4-solid .page-loader .page-loader-content {
    display: table-cell;
    vertical-align: middle;
}

#loader .lds-ellipsis,
.loaderIP4-solid .lds-ellipsis {
    display: inline-block;
    position: relative;
    width: 64px;
    height: 64px;
}

#loader .lds-ellipsis div:nth-child(1),
.loaderIP4-solid .lds-ellipsis div:nth-child(1) {
    left: 6px;
    animation: lds-ellipsis1 0.6s infinite;
}

#loader .lds-ellipsis div:nth-child(2),
.loaderIP4-solid .lds-ellipsis div:nth-child(2) {
    left: 6px;
    animation: lds-ellipsis2 0.6s infinite;
}

#loader .lds-ellipsis div:nth-child(3),
.loaderIP4-solid .lds-ellipsis div:nth-child(3) {
    left: 26px;
    animation: lds-ellipsis2 0.6s infinite;
}

#loader .lds-ellipsis div:nth-child(4),
.loaderIP4-solid .lds-ellipsis div:nth-child(4) {
    left: 45px;
    animation: lds-ellipsis3 0.6s infinite;
}

#loader .lds-ellipsis div,
.loaderIP4-solid .lds-ellipsis div {
    position: absolute;
    top: 27px;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #fff;
    animation-timing-function: cubic-bezier(0, 1, 1, 0);
}

@keyframes lds-ellipsis1 {
    0% {
      transform: scale(0);
    }
    100% {
      transform: scale(1);
    }
}

@keyframes lds-ellipsis3 {
    0% {
      transform: scale(1);
    }
    100% {
      transform: scale(0);
    }
}

@keyframes lds-ellipsis2 {
    0% {
      transform: translate(0, 0);
    }
    100% {
          transform: translate(19px, 0);
    }
}