

/* SELECTOR DE PUNTOS  */
.selector-de-puntos, #respuesta {
    padding: 50px 30px;
}

.selector-de-puntos .titulo {
    font-size: 22px;
    text-align: center;
}

.selector-de-puntos .boton-verde {
    width:48.5%;
    float: left;
}

.float-right {
    float:right!important;
}

.botones-selector {
    width: 80%;
    margin: 0px auto;
}

/* APLICACION  */

#app {
    display: none;
}

.nosotros, .ellos {
    width: 50%;
    float: left;
    box-sizing: border-box;
    padding: 0px 30px;
    text-align: center;
}

.nosotros {
    border-right: 3px solid #ddd;
    margin-right: -1.5px;
}

.ellos {
    border-left: 3px solid #ddd;
    margin-left: -1.5px;

}

.nosotros .titulo, .ellos .titulo {
    font-size: 22px;
    border-bottom: 3px solid #ddd;
    padding-bottom: 20px;
}

.buenas {
    border-bottom: 3px dashed #ddd;
    padding: 20px 0px;
    min-height: 227px;

}

.malas {
    padding-top: 20px;
    min-height: 205px;
    display: none;
}

.bloques {
    margin:0px auto;
    width: 48px;
}

.bloque {
    width: 48px;
    height: 48px;
    margin:10px 0px;
    border-radius: 3px;
}

.uno {
    border-top: 3px solid #4cb050;
}

.dos {
    border-right: 3px solid #4cb050;
}

.tres {
    border-bottom: 3px solid #4cb050;
}

.cuatro {
    border-left: 3px solid #4cb050;
}

.bloque-completo {
    width: 61px;
    height: 3px;
    background-color: #4cb050;
    transform: rotate(45deg);
    margin-top: 19px;
    margin-left: -10px;
}

.buenas-titulo, .malas-titulo {
    transform: rotate(-90deg);
    position: absolute;
    margin-top: 90px;
    font-size: 16px;
    text-transform: uppercase;
    color: #b7b7b7;
    margin-left: -30px;
}

.boton-linea-roja {
    display: none;
}

.no-movil {
    color:inherit;
}

/* RESPUESTA  */

.popup {
    position: fixed;
    top: 250px;
    left: 50%;
    z-index: 1;
}

#respuesta {
    display: none;
}

.felicitaciones {
    font-size: 36px;
    text-align: center;
    padding-bottom: 10px;
}

.resultado {
    color: #6d6d6d;
    font-size: 20px;
    text-align: center;
}

#respuesta .boton-verde {
    width: 50%;
    margin:0px auto;
}

.popup .overlay {
    position:fixed;
    top:0px;
    left:0px;
    width:100vw;
    height:100vh;
    background:rgba(0,0,0,0.7);
    z-index:1;
    display:none;
  }
  
  .popup .content {
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%) scale(0);
    background:#f7f7f7;
    border-radius: 15px;
    padding: 35px;
    box-shadow: 1px 1px 0px 0px rgba(0,0,0,0.10);
    width:500px;
    height:250px;
    z-index:2;
    text-align:center;
    box-sizing:border-box;
    font-family:"Open Sans",sans-serif;
  }
  
  .popup .close-btn {
    cursor:pointer;
    position:absolute;
    right:20px;
    top:20px;
    width:30px;
    height:30px;
    background:#222;
    color:#fff;
    font-size:25px;
    font-weight:600;
    line-height:30px;
    text-align:center;
    border-radius:50%;
  }
  
  .popup.active .overlay {
    display:block;
  }
  
  .popup.active .content {
    transition:all 300ms ease-in-out;
    transform:translate(-50%,-50%) scale(1);
  }

/* ESTILOS PARA RESPONSIVE  */

@media screen and (max-width:728px) {

    .aplicacion-container {
        width: 100%;
        margin:0px;
    }

    .selector-de-puntos .titulo {
        padding-bottom: 35px;
    }

    .selector-de-puntos .boton-verde {
        width:100%;
        box-sizing: border-box;
        margin-top:15px;
    }
    
    .botones-selector {
        width: 100%;
    }

}

@media screen and (max-width:480px) {

    .nosotros, .ellos {
        padding:0px 5px;
    }

    .no-movil {
        display: none;
    }

    .nosotros .boton-verde, .ellos .boton-verde, .nosotros .boton-linea-roja, .ellos .boton-linea-roja {
        width: 90%;
        margin:20px auto;
        box-sizing: border-box;
    }

    #respuesta .boton-verde {
        width: 75%;
    }
    
    .popup .content {
        width: inherit;
    }
}