.lds-dual-ring {
    display: inline-block;
    top: 50%;
    width: 80px;
    height: 80px;
}

.lds-dual-ring:after {
    content: " ";
    display: block;
    top: 50%;
    width: 64px;
    height: 64px;
    margin: 8px;
    border-radius: 50%;
    border: 6px solid #56CCF2;
    border-color: #56CCF2 transparent #56CCF2 transparent;
    animation: lds-dual-ring 1.2s linear infinite;
}

@keyframes lds-dual-ring {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.container {
    height: 80;
    width: 80;
    position: fixed;
    /* or absolute */
    top: calc(50% - 40px);
    left: calc(50% - 40px);
}

.info {
    height: 15px;
    position: fixed;
    color: black;
    top: calc(100% - 20px);
}