.bigBox{
    position: fixed;
    top: 30%;
    left: 0;
    right: 0;    
    margin: auto;
    z-index: 999999999;
    background-color: whitesmoke;
    border: 1px solid black;
    border-radius: 15px;
    width: 550px;
}

@media only screen and (max-width: 600px) {
    .bigBox{
        width: 98%;
        height: 420px;
    }
}

.bigBox__cerrar{
    float: right;
    padding-right: 10px;
    padding-top: 10px;
    font-size: 25px;
    cursor: pointer;
    padding-top: 6px;
}

.bigBox__fondo{
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: #000000bd;
    z-index: 999999998;
    top: 0;
}

.bigBox__contenido{
    padding: 30px;
}

.bigBox__contenido--icono{
            
    width: 100px;
    height: 100px;
    font-size: 45px;
    border-radius: 50%;
    text-align: center;
    padding: 10px;
    margin: 0 auto;
}

.bigBox__contenido--titulo{
    font-size: 30px;
    font-weight: bold;
    text-align: center;
    padding-top: 10px;
}   

.bigBox__contenido--mensaje{
    text-align: center;
    padding-top: 10px;
}

.bigBox__btn{
    text-align: center;   
    padding-top: 20px;
}

.bigBox__footer{
    position: fixed;
    right: 12px;
    bottom: 2px;
    font-size: 12px;
}


.bigBox__AnimarIcono {
	animation: bigBox__AnimarIcono 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}
@keyframes bigBox__AnimarIcono {
    0% {
      transform: scale(0);
      opacity: 1;
    }
    100% {
      transform: scale(1);
      opacity: 1;
    }
}
  

.bigBox__AnimarEntrada {
    animation: bigBox__AnimarEntrada 1.1s both;
}

@keyframes bigBox__AnimarEntrada {
    0% {
        transform: translateY(-500px);
        animation-timing-function: ease-in;
        opacity: 0;
    }
    38% {
        transform: translateY(0);
        animation-timing-function: ease-out;
        opacity: 1;
    }
    55% {
        transform: translateY(-65px);
        animation-timing-function: ease-in;
    }
    72% {
        transform: translateY(0);
        animation-timing-function: ease-out;
    }
    81% {
        transform: translateY(-28px);
        animation-timing-function: ease-in;
    }
    90% {
        transform: translateY(0);
        animation-timing-function: ease-out;
    }
    95% {
        transform: translateY(-8px);
        animation-timing-function: ease-in;
    }
    100% {
        transform: translateY(0);
        animation-timing-function: ease-out;
    }
}