.ldcon {
    position: fixed;
    height: 100%;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.5);
    top: 0;
    left: 0;
    z-index:9999;
}

.loadermain {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    width: 500px;
    height: 500px;
}

.loader {
    font-size: 13px;
    margin: 50px auto;
    text-indent: -9999em;
    width: 150px;
    height: 150px;
    top: 50px;
    border-radius: 50%;
    background: #00B0B9;
    background: -moz-linear-gradient(left, #00B0B9 10%, rgba(255, 255, 255, 0) 42%);
    background: -webkit-linear-gradient(left, #00B0B9 10%, rgba(255, 255, 255, 0) 42%);
    background: -o-linear-gradient(left, #00B0B9 10%, rgba(255, 255, 255, 0) 42%);
    background: -ms-linear-gradient(left, #00B0B9 10%, rgba(255, 255, 255, 0) 42%);
    background: linear-gradient(to right, #00B0B9 10%, rgba(255, 255, 255, 0) 42%);
    position: relative;
    -webkit-animation: load3 1.4s infinite linear;
    animation: load3 1.4s infinite linear;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
}

    .loader:before {
        width: 50%;
        height: 50%;
        background: #00B0B9;
        border-radius: 100% 0 0 0;
        position: absolute;
        top: 0;
        left: 0;
        content: '';
    }

.loader:after {
    background: #fff;
    width: 75%;
    height: 75%;
    border-radius: 50%;
    content: '';
    margin: auto;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-repeat: no-repeat;
    background-position: center center;
}

@-webkit-keyframes load3 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes load3 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.spinner {
    width: 100px;
    height: 100px;
    background-color: #00B0B9;
    position: absolute;
    top: 200px;
    left: 80px;
    border-radius: 100%;
    -webkit-animation: sk-scaleout 3.0s infinite ease-in-out;
    animation: sk-scaleout 3.0s infinite ease-in-out;
}

@-webkit-keyframes sk-scaleout {
    0% {
        -webkit-transform: scale(0)
    }
    100% {
        -webkit-transform: scale(3.0);
        opacity: 0;
    }
}

@keyframes sk-scaleout {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    100% {
        -webkit-transform: scale(3.0);
        transform: scale(3.0);
        opacity: 0;
    }
}

.spinner1 {
    width: 80px;
    height: 80px;
    background-color: #fff;
    border: 8px solid #00B1A8;
    position: absolute;
    top: 230px;
    right: 120px;
    border-radius: 100%;
    -webkit-animation: sk-scaleout 2.0s infinite ease-in-out;
    animation: sk-scaleout 2.0s infinite ease-in-out;
}

@-webkit-keyframes sk-scaleout {
    0% {
        -webkit-transform: scale(0)
    }
    100% {
        -webkit-transform: scale(2.0);
        opacity: 0;
    }
}

@keyframes sk-scaleout {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    100% {
        -webkit-transform: scale(2.0);
        transform: scale(2.0);
        opacity: 0;
    }
}

.spinner2 {
    width: 80px;
    height: 80px;
    margin: 100px auto;
    background: #00B0B9 url(../../images/loaderstar.png) no-repeat center center;
    position: absolute;
    top: 0;
    left: 100px;
    border-radius: 100%;
    -webkit-animation: sk-scaleout 1.0s infinite ease-in-out;
    animation: sk-scaleout 1.0s infinite ease-in-out;
}

@-webkit-keyframes sk-scaleout {
    0% {
        -webkit-transform: scale(0)
    }
    100% {
        -webkit-transform: scale(1.0);
        opacity: 0;
    }
}

@keyframes sk-scaleout {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    100% {
        -webkit-transform: scale(1.0);
        transform: scale(1.0);
        opacity: 0;
    }
}
