﻿.modalloand {
    position: fixed;
    z-index: 1000;
    height: 100%;
    width: 100%;
    top: 0;
    background-color: Black;
    /*filter: alpha(opacity=60);*/
    opacity: 0.6;
    /*-moz-opacity: 0.8;*/
    display: none;
}

.centerloand {
    margin: 50px auto;
    padding: 10px;
    width: 150px;
    background-color: White;
    border-radius: 10px;
    /*filter: alpha(opacity=100);*/
    z-index: 100000;
    opacity: 1;
    /*-moz-opacity: 1;*/
}

    .centerloand img {
        height: 128px;
        width: 128px;
    }


/*.loader {
    background-color: Black;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100000;
    opacity: 0.6;
}*/
.esconderLoader{
    display:none;
}
.loader2 {
    clip-path: circle(0% at 100% 0);
}
    .lds-ring{
    /*    display:inline-block;
        position:relative;*/
   /*     width:80px;
        height:80px;*/
    }


.loader {
    position: fixed;
    height: 100%;
    width: 100%;
    top: 0;
    background-color: Black;
    /*filter: alpha(opacity=60);*/
    /* En lugar de esto (obsoleto) */
    /*filter: alpha(opacity=60);*/
    /* Usa esto */
    /*opacity: 0.5;*/
    opacity: 0.8;
    /*-moz-opacity: 0.8;*/
    z-index: 100000;
    display: none;
}

    .loader .center {
        display: flex;
        text-align: center;
        justify-content: center;
        align-items: center;
        min-height: 100vh;
      
    }

    .loader .ring {
        position: absolute;
        width: 170px;
        height: 170px;
        border-radius: 50%;
   
        animation: ring 2s linear infinite;
    }

@keyframes ring {
    0% {
        transform: rotate(0deg);
        box-shadow: 1px 4px 2px #e65c00;
    }

    50% {
        transform: rotate(180deg);
        box-shadow: 1px 4px 2px #18b201;
    }

    100% {
        transform: rotate(360deg);
        box-shadow: 1px 4px 2px #0456c8;
    }
}

.loader .ring::before {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    border-radius: 50%;
    box-shadow: 0 0 5px rgba(255,255,255,.3);
}

.loader span {
    color: #737373;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 200px;
    animation: text 3s ease-in-out infinite;
}

@keyframes text {
    50% {
        color: black;
    }
}