﻿body {
    /*background-color: rgb(250, 250, 250);*/
}

header {
    background-color: rgb(13, 49, 94);
    padding: 20px 0;
    color: #ededed;
    font-size: 12px;
    text-align: center;
}

/*--------------------------------------------------------*/
/*-------------------Estilo formulario--------------------*/
.contenedor-informacion-usuario p{
    margin-bottom:0;
    padding:0;
}


.container2 {
    padding: 0;
    margin: 0;
}

.\ {
    border: solid 1px #e8e8e8;
    border-radius: 5px;
    width: 95%;
    margin: 50px auto;
    padding: 60px 40px 0px 40px;
    background-color: white;
}

.nombre-encuesta {
    text-align: center;
    font-size: 3rem;
    color: #515151;
    font-family: Quicksand;
    margin: 3% 0;
}

.contenedor-estilo {
    display:flex;
    justify-content:space-between;
}

.contenedor-pregunta { /*Contenedor pregunta y radios button*/
    border-bottom: solid 1px #e5e5e5;
    padding-top: 40px;
    padding-bottom: 5px;
}

.contenedor-pregunta p {/*Pregunta*/
    /*margin: 0 0 0 30px;*/
    font-size: 15px;
}

.contenedor-radios {
    /*border-bottom: solid 1px #e5e5e5;*/
    /*padding-top: 40px;*/
    padding-bottom: 5px;
    display: flex;
    justify-content: space-between;
    padding-right: 20px;
}

.contenedor-pregunta input {/*Radios*/
    /*margin-left: 15px;*/
}



/*-------------------------------------------------------------------------*/
/*-------------------Estilos numeros de radio button-----------------------*/

.contenedor-numeros-radio { /*Contenedor renglon*/
    background-color: rgb(13, 49, 94);
    border-radius: 3px;
}

.contenedor-numeros-radio p { /*Contenedor izq*/
    display: inline-block;
    margin: 0 0 0 30px;
    
}

.contenedor-numeros { /*Contenedor numeros*/
    /*border-bottom: solid 1px #e5e5e5;*/
    padding-top: 0px;
    padding-bottom: 5px;
    padding-right:20px;
    /*display: flex;*/
    /*justify-content: space-between;*/
}

.contenedor-numeros p { /*Numeros*/
    display: inline-block;
    margin-left: 0px;
    font-size: 12px;
    font-weight: bold;
    color: #ededed;
}

/*-------------------------------------------------------------------------*/


.bt-formulario {
    width: 100px;
    float: right;
    margin: 0 auto;
}

.titulo-seccion {
    margin-top: 60px;
    font-size: 20px;
    color: #515151;
}


/*-------------------------*/
.containerRd {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    /* Hide the browser's default radio button */
    .containerRd input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
    }

/* Create a custom radio button */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
    border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.containerRd:hover input ~ .checkmark {
    background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.containerRd input:checked ~ .checkmark {
    background-color: #2196F3;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the indicator (dot/circle) when checked */
.containerRd input:checked ~ .checkmark:after {
    display: block;
}

/* Style the indicator (dot/circle) */
.containerRd .checkmark:after {
    top: 9px;
    left: 9px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white;
}

