/* ESTILOS WIZARD ANGULAR
============================================================================= */


/* CONTENEDOR VISTAS */


/* entrada y salida */


#contenedorVistas.ng-enter,
#contenedorVistas.ng-leave {
    position: absolute;
    right: 0;
    left: 0;
    transition: 0.5s all ease;
    -moz-transition: 0.5s all ease;
    -webkit-transition: 0.5s all ease;
}


/* entrada animación */

#contenedorVistas.ng-enter {
    -webkit-animation: slideInRight 0.5s both ease;
    -moz-animation: slideInRight 0.5s both ease;
    animation: slideInRight 0.5s both ease;
}


/* salida animación */

#contenedorVistas.ng-leave {
    -webkit-animation: slideOutLeft 0.5s both ease;
    -moz-animation: slideOutLeft 0.5s both ease;
    animation: slideOutLeft 0.5s both ease;
}

#contenedorBotones {
    position: relative;
}

#contenedorBotones .indicadores {
    width: 50%;
    margin: 0 auto;
    margin-top: -6px;
    position: relative;
}
#contenedorBotones .indicadores a {
    position: absolute;
    width: 100px;
    text-align: center;
    font-size: 14px;
    top: 46px;
    pointer-events: none;
    border-bottom: 0;
    color: black;
    font-weight: normal;
}

.indicadores .activo {
    line-height: 13px;
}

#contenedorBotones .indicadores a:nth-child(1) {
    left: -50px;
}
#contenedorBotones .indicadores a:nth-child(3) {
    left: calc(50% - 50px);
}
#contenedorBotones .indicadores a:nth-child(5) {
    left: calc(100% - 50px);
}


#contenedorBotones .indicadores a span {
    position: absolute;
    top: -81px;
    left: 50%;
    background-color: white;
    border: 3px solid #f1f1f1;
    width: 80px;
    height: 80px;
    border-radius: 40px;
    padding: 10px;
    display: inline-block;
    text-align: center;
    font-size: 30px;
    line-height: 54px;
    font-weight: normal;
    transform: translateX(-50%);
}

#contenedorBotones .indicadores a.activo span,
#contenedorBotones .indicadores a.activado span {
    background-color: #5b59d1;
    color: white;
}

.w3-progress-container {
    width: 50%;
    margin: 0 auto;
    height: 3px;
    position: relative;
    background-color: #f1f1f1;
}

.w3-progressbar {
    background-color: #00C1C6;
    height: 100%;
    position: absolute;
    line-height: inherit;
    width: 0;
    transition: all ease 400ms;
}
.paso1 span, .paso2 span, .paso3 span, .paso4 span, .paso5 span, .paso6 span {
    background-color: #757575;
}
.paso1 {
    width: 0;
}
.paso2 {
    width: 50%;
}
.paso3 {
    width: 100%;
}
.paso1Intermedio {
    width: 25%;
}
.paso2Intermedio {
    width: 75%;
}
/* ANIMACIONES
============================================================================= */


/* slide out a la izquierda */

@keyframes slideOutLeft {
    to {
        transform: translateX(-200%);
    }
}

@-moz-keyframes slideOutLeft {
    to {
        -moz-transform: translateX(-200%);
    }
}

@-webkit-keyframes slideOutLeft {
    to {
        -webkit-transform: translateX(-200%);
    }
}


/* slide in desde la derecha */

@keyframes slideInRight {
    from {
        transform: translateX(200%);
    }
    to {
        transform: translateX(0);
    }
}

@-moz-keyframes slideInRight {
    from {
        -moz-transform: translateX(200%);
    }
    to {
        -moz-transform: translateX(0);
    }
}

@-webkit-keyframes slideInRight {
    from {
        -webkit-transform: translateX(200%);
    }
    to {
        -webkit-transform: translateX(0);
    }
}