.veraz{
    color: #666;
}

.veraz label{
    font-family: roboto;
    font-size:14px;
}

.veraz .pregunta{
    margin-bottom:1rem;
}

.veraz .pregunta .texto{
    /*font-weight: bold;*/
    font-size:16px;
    font-family: robotomedium;

}

.veraz .respuestas{

}

.veraz .respuesta{
    margin-bottom: 5px;
    font-weight: normal;
    display: block;
}

.veraz .pregunta .tooltip.bottom {
    top: auto !important;
    margin-top:0;
    margin-left:25px;
}

.veraz .identidad-verificada{
    text-align: center;
}

.veraz .identidad-verificada i{
    color: #05af05;
    font-size: 200px;
}
@media screen and (min-width: 768px){
    .veraz .identidad-verificada i{
        font-size: 400px;
    }
}

.veraz .identidad-verificada .texto{
    font-size:20px;
    font-weight: bold;
}

.boton-verificar-identidad{
    margin-top: 15px;
}

@keyframes ripple {
    0% {
        box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.0);
    }
    50% {
        box-shadow: 0px 0px 0px 15px rgba(0, 0, 0, 0.1);
    }
    100% {
        box-shadow: 0px 0px 0px 15px rgba(0, 0, 0, 0);
    }
}
.md-radio {
    margin-top:0.5rem;
}
.md-radio.md-radio-inline {
    display: inline-block;
}
.md-radio input[type="radio"] {
    display: none;
}
.md-radio input[type="radio"]:checked + label:before {
    border-color: #00aeff;
    animation: ripple 0.2s linear forwards;
}
.md-radio input[type="radio"]:checked + label:after {
    transform: scale(1);
}
.md-radio label {
    display: inline-block;
    height: 20px;
    position: relative;
    padding: 0 30px;
    margin-bottom: 0;
    cursor: pointer;
    vertical-align: bottom;
}
.md-radio label:before, .md-radio label:after {
    position: absolute;
    content: '';
    border-radius: 50%;
    transition: all 0.3s ease;
    transition-property: transform, border-color;
}
.md-radio label:before {
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(0, 0, 0, 0.54);
}
.md-radio label:after {
    top: 5px;
    left: 5px;
    width: 10px;
    height: 10px;
    transform: scale(0);
    background: #00aeff;
}
.respuesta label{
    height: auto;
}
.pregunta{
    border-bottom: 1px solid #ccc;
    padding-bottom: 15px;
}
.pregunta:nth-last-child(1){
    border: none;
    padding-bottom: 0px;
}