﻿.FondoAplicacion{
    background-color: #000;
    filter: alpha(opacity=80);
    opacity: 0.8;
    
}

.Oculto{
    
    display:none;
}

.curve{
    
    /*para Firefox*/
    -moz-border-radius: 15px 15px 15px 15px;
    /*para Safari y Chrome*/
    -webkit-border-radius: 15px 15px 15px 15px;
    /*para IE */
    /*behavior:url(border.htc);*/
    /* para Opera */
    border-radius: 15px 15px 15px 15px;
}

.overlay {
    position: fixed;
    z-index: 98;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    background-color: #000000;
    opacity: 0.9;
    /*overflow: hidden;*/ /* Hide vertical scrollbar */
    animation: fadeinn 0.5s ease-out;
    /*transition: 3s ease;*/
    /*filter:blur(4px);*/
}
@keyframes fadeinn{
    from {opacity:0}
    to {opacity:0.9}
}
@keyframes fadeout{
    from {
        opacity: 0.9
    }

    to {
        opacity: 0
    }
}

.overlayContent {
    /*animation: rotation 2s infinite linear;*/
    z-index: 99;
    opacity: 1;
    margin: 250px auto;
    text-align: center;
    animation: rotacion 2s infinite;
}

@keyframes rotacion{
    from {
        -webkit-transform: rotate(0deg)
    }
    to {
        -webkit-transform: rotate(360deg)
    }
}

.overlayContent h2 {
    color: White;
    font-family: Verdana;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    /*color: #000;*/
}
        
.overlayContent img
{
    width: 35px;
    height: 35px;
}




