.titulo-notop {
    margin-top: 50px;
    margin-bottom: 30px;
    font-size: 30px;
    font-weight: 300;
    color: rgb(87,192,230) !important;
}

input[type='radio'] {
    -webkit-appearance:none;
    width:20px;
    height:20px;
    border:1px solid darkgray;
    border-radius:50%;
    outline:none;
    box-shadow:0 0 5px 0px gray inset;
    margin-top: 0px !important;
    cursor: pointer;
}
input[type='radio']:hover {
    box-shadow:0 0 5px 0px orange inset;
}
input[type='radio']:before {
    content:'';
    display:block;
    width:60%;
    height:60%;
    margin: 20% auto;
    border-radius:50%;
}
input[type='radio']:checked:before {
    background: rgb(87,192,230);
}