/*****LDS-Spinner*****/

.lds-grid {
    display: inline-block;
    position: relative;
    width: 40px;
    height: 40px;
    vertical-align: middle;
}

.lds-grid div {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #00556b;
    animation: lds-grid 1.4s linear infinite;
}

.lds-grid div:nth-child(1) {
    width: 4px;
    height: 4px;
    top: 7px;
    left: 7px;
}

.lds-grid div:nth-child(2) {
    width: 6px;
    height: 6px;
    top: 6px;
    left: 17px;
}

.lds-grid div:nth-child(3) {
    width: 4px;
    height: 4px;
    top: 7px;
    left: 29px;
}

.lds-grid div:nth-child(4) {
    width: 6px;
    height: 6px;
    top: 17px;
    left: 6px;
}

.lds-grid div:nth-child(5) {
    top: 16px;
    left: 16px;
}

.lds-grid div:nth-child(6) {
    width: 6px;
    height: 6px;
    top: 17px;
    left: 28px;
}

.lds-grid div:nth-child(7) {
    width: 4px;
    height: 4px;
    top: 29px;
    left: 7px;
}

.lds-grid div:nth-child(8) {
    width: 6px;
    height: 6px;
    top: 28px;
    left: 17px;
}

.lds-grid div:nth-child(9) {
    width: 4px;
    height: 4px;
    top: 29px;
    left: 29px;
}

.lds-grid div:nth-child(1),
.lds-grid div:nth-child(3),
.lds-grid div:nth-child(7),
.lds-grid div:nth-child(9) {
    animation-delay: -0.1s;
}

.lds-grid div:nth-child(2),
.lds-grid div:nth-child(4),
.lds-grid div:nth-child(6),
.lds-grid div:nth-child(8) {
    animation-delay: -0.25s;
}

.lds-grid div:nth-child(5) {
    animation-delay: -0.5s;
}

@keyframes lds-grid {
    0%,
    100% {
        opacity: 0.3;
    }
    40%,
    60% {
        opacity: 1;
    }
}