/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    min-height: 100%;
    position: relative;
}

body {
    background: #bbb;
    display: flex;
    flex-direction: column;
    font-family: Arial, sans-serif;
    font-size: 14px;
    justify-content: center;
    margin-bottom: 100px;
}

/* ===== HEADER & NAVEGACIÓN ===== */
header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    background: #222;
    align-items: center;
}

header .div_m_admin {
    margin: 0 auto;
}

header a:hover {
    color: #fff;
}

.logo {
    width: fit-content;
    height: 60px;
}

.logo img {
    height: 60px;
}

/* ===== MENÚ ADMINISTRADOR ===== */
#btn_admin {
    cursor: pointer;
}

#btn_admin:hover {
    color: #fff;
}

.m_admin {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    flex-wrap: nowrap;
    z-index: 999;
    width: fit-content;
    margin: auto;
}

.m_admin span {
    margin: 17px auto;
    color: #bbb;
    text-align: center;
    width: 180px;
}

.m_admin a {
    background: #222;
    padding: 10px;
    color: #bbb;
    text-align: center;
    display: block;
    text-decoration: none;
    text-transform: none;
}

.m_admin a:hover {
    background: #ccc;
    color: #222;
}

.ver {
    display: none;
}

.oculto {
    background: rgba(255, 255, 255, 0);
    font-weight: 400;
    border: none;
    box-shadow: none;
    color: #222;
}

/* ===== MENÚS PRINCIPALES ===== */
.menu_principal {
    background: #222;
    border-radius: 10px;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    width: fit-content;
    margin: .2em 1em;
}

.menu_principal div {
    border: 1px solid #333;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 2px;
    color: #ddd;
}

.menu_principal div a {
    display: flex;
    flex-direction: column;
    color: #ddd;
    text-decoration: none;
    text-transform: none;
    font-size: .7em;
    text-align: center;
}

.menu_principal div a i {
    color: #ddd;
    font-size: 3em;
}

.menu_principal div a:hover {
    opacity: .5;
    transition: .3s ease all;
}

.menu_secundario {
    background: #444;
    border-radius: 10px;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    flex-wrap: wrap;
    width: fit-content;
    margin: 1em auto;
}

.menu_secundario div {
    border: 1px solid #aaa;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 5px;
    color: #ddd;
    padding: 5px;
}

.menu_secundario div a {
    display: flex;
    flex-direction: column;
    color: #222;
    text-decoration: none;
    text-transform: none;
    font-size: .7em;
    text-align: center;
}

.menu_secundario div a i {
    color: #222;
    font-size: 4em;
}

.menu_secundario div a:hover {
    opacity: .5;
    transition: .3s ease all;
}

/* ===== CONTENEDORES & LAYOUT ===== */
#result {
    margin: 0 auto;
}

.buscar {
    display: flex;
    flex-direction: column;
    width: fit-content;
    margin: auto;
    justify-content: center;
}

.buscar-auditoria input[type="text"] {
    background-color: rgb(222, 216, 216);
    border: none;
    font-size: 10pt;
    float: left;
    color: #63717f;
    padding-left: 45px;
    border-radius: 5px;
    transition: .55s ease;
}

.contenedor_front {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-wrap: nowrap;
    width: 100%;
    margin: 0 auto 2px;
    background-color: #eee;
    box-shadow: 0px 1px 2px #333;
    padding: 10px;
}

.contenedor_aud {
    display: grid;
    grid-template-columns: 5% 6% 5% 34% 34% 5% 5% 5%;
    align-items: center;
    width: 100%;
    margin: 0 auto 2px;
    background-color: #eee;
    box-shadow: 0px 1px 2px #333;
}

.front {
    display: grid;
    grid-template-columns: 10% 90%;
    align-self: center;
    max-width: 1200px;
    width: 90%;
    margin: 1em;
    overflow: hidden;
}

.front div {
    display: flex;
    justify-content: center;
}

.front div img {
    width: 100%;
    margin: auto;
}

.front div p {
    padding: 10px;
    color: #222;
    margin: auto;
    text-align: justify;
    font-size: .8em;
}

.contenedor_titulos {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    width:100%;
    margin: 1.5em auto 0;
}

.contenedor_titulos_aud {
    display: grid;
    grid-template-columns: 5% 6% 5% 34% 34% 5% 5% 5%;
    justify-content: space-around;
    width: 100%;
    margin: 1.5em auto 0;
}

.contenedor {
    align-items: center;
    display: flex;
    flex-direction: row;
    justify-content: space-between;    
    margin-bottom:2px;
    background-color: #eee;
    box-shadow: 0px 1px 2px #333;
    width: 100%;
    padding: 5px;
}

.contenedor_v {
    width: 45%;
    margin: 0 auto;
}

.cont_fin {
    align-items: center;
    border-radius: 0 0 15px 15px;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    width: 100%;
    margin: -2px auto 1em;
    background-color: #eee;
    padding: .2em;
    box-shadow: 0px 2px 2px #333;
}

/* ===== FORMULARIOS & INPUTS ===== */
.log {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 80%;
    margin: 0 auto;
}

.registro {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    margin: 0 auto;
}

.registro-b {
    padding: 10px;
    width: fit-content;
}

.registro-respuestas {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
    width: 75%;
    gap: 1em;
    margin: 1em auto;
}

legend {
    font-weight: bold;
    text-align: center;
}

.import {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    margin: 1em auto;
}

.f_import {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-around;
    width: 90%;
    margin: 0 auto;
}

.f_import div {
    width: 33%;
    display: flex;
    align-items: center;
}

.f_import .btn_azul {
    margin-right: 1em;
}

.f_import .btn_amarillo {
    margin-right: 1em;
}

.f_import .btn_verde {
    margin-right: 0;
    width: 500px;
}

.inputs {
    border-bottom: 1px dotted #bbb;
    margin: 5px auto;
    width: 90%;
    align-content: center;
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 5px;
}

.inputs_pre {
    border-bottom: 1px dotted #bbb;
    margin: 5px auto;
    width: 98%;
    align-content: center;
    align-items: center;
    display: flex;
    justify-content: space-between;
    padding: 5px;
    flex-direction: row;
}

.inputs_pre div {
    display: flex;
    flex-direction: column;
    padding: 5px;
    margin: 1%;
}

.inputs_pre div select {
    padding: 10px;
    border-radius: 10px 10px 0 0;
    border: none;
    box-shadow: 1px 2px 3px #888;
    text-transform: none;
    text-align: center;
    width: 100%;
    word-break: break-word;
}

.inputs_pre div input {
    box-shadow: none;
}

.mas_pre {
    display: grid;
    grid-template-columns: 5% 5% 25% 25% 5% 15% 10%;
    gap: .5em;
    text-align: center;
    padding: .5em 0;
    justify-content: center;
    background-color: #bbb;
    border-radius: 0 0 15px 15px;
}

.mas_pre input {
    box-shadow: none;
    width: 100%;
    margin: 0 auto;
}

.mas_pre input[type="checkbox"] {
    margin: 9px;
    height: 20px;
}

.si-no {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.si-no div {
    display: flex;
    flex-direction: column;
}

.inputs div {
    display: flex;
    flex-direction: column;
    padding: 5px;
    width: 45%;
    margin: 1%;
}

.inputs_r {
    border-bottom: 1px dotted #bbb;
    margin: auto;
    width: 90%;
    align-content: center;
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 5px;
}

.inputs_rb {
    border-bottom: 1px dotted #bbb;
    margin: 5px auto;
    width: 90%;
    padding: 5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.inputs_rb legend {
    margin-left: 5px;
    width: fit-content;
}

.inputs label {
    justify-content: center;
    font-weight: bolder;
    color: #444;
}

/* ===== LISTAS & TABLAS ===== */
div#listroles {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    padding-bottom: 10px;
    background: #ddd;
    border-radius: 10px;
    margin-top: 10px;
}

div#listroles .buscar {
    width: fit-content;
}

div#outerol {
    justify-content: center;
}

div#listclientes {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    padding-bottom: 10px;
    background: #ddd;
    border-radius: 10px;
    margin-top: 10px;
}

/* ===== ELEMENTOS DE FORMULARIO ===== */
input {
    padding: 10px;
    border-radius: 10px;
    border: none;
    text-align: center;
    color: #444;
}

.inp_med {
    width: 50%;
}

.label {
    font-weight: bold;
    margin: 5px;
    text-transform: none;
}

input[type="file"] {
    box-shadow: none;
}

input[type="button"] {
    margin: 0 auto;
}

input[type="checkbox"] {
    box-shadow: none;
}

.form-control {
    margin-top: 10px;
}

li {
    list-style: none;
}

select {
    padding: 10px;
    border-radius: 10px;
    border: none;
    text-transform: none;
    text-align: center;
    width: 50%;
    word-break: break-word;
}

select option {
    padding: 5px;
    border-radius: 15px;
}

/* ===== ROLES ===== */
.roles {
    display: flex;
    flex-direction: column;
    width: 45%;
}

.roles div {
    display: flex;
    flex-direction: row;
    text-align: center;
    justify-content: center;
    padding: 5px;
    background: #fff;
    border-radius: 10px;
    margin: 0 auto;
    width: 100%;
}

/* ===== CAMPOS & CELDAS ===== */
.campos {
    color: #333;
    margin: 5px auto;
    padding: 5px;
    text-align: center;
    word-break: break-word;
}

.campos_aud {
    color: #333;
    margin: 5px auto;
    padding: 5px;
    text-align: center;
}

.campos a {
    text-decoration: none;
    color: #222;
    font-weight: bold;
    cursor: pointer;
    word-break: break-word;
}

.campos a:hover {
    color: rgba(34, 34, 34, .5);
}

.campos span {
    cursor: pointer;
    word-break: break-word;
}

.campos_reg {
    color: #333;
    margin: 5px auto;
    padding: 5px;
    text-align: center;
    text-shadow: 1px 1px 1px #bbb;
    width: 25%;
    word-break: break-word;
}

.campos_dom_a {
    color: #333;
    margin: 5px auto;
    padding: 5px;
    text-align: center;
    text-shadow: 1px 1px 1px #bbb;
    width: 50%;
    word-break: break-word;
}

.campos_dom_b {
    color: #333;
    margin: 5px auto;
    padding: 5px;
    text-align: center;
    text-shadow: 1px 1px 1px #bbb;
    width: 14%;
    word-break: break-word;
}

.campos_dom_b input[type="submit"] {
    background: #ddd;
    color: #222;
    border-radius: 5px;
    border: 1px solid #222;
    cursor: pointer;
}

.campos_res {
    justify-content: center;
    width: 14%;
    padding: 5px;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.campos_pre {
    justify-content: center;
    width: 100%;
    padding: 5px;
    display: flex;
    flex-direction: row;
    text-align: center;
}

.campos_list_u {
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: center;
   word-break: break-word;
   width: 100%;
}

.campos_list_u input[type="submit"] {
    background: #ddd;
    color: #222;
    border-radius: 5px;
    border: 1px solid #222;
    cursor: pointer;
}

.campos_pais {
    color: #333;
    margin: 5px auto;
    padding: 5px;
    text-align: center;
    width: 25%;
    align-self: center;
    word-break: break-word;
}

.campos_departamento {
    color: #333;
    margin: 5px auto;
    padding: 5px;
    text-align: center;
    word-break: break-word;
    align-self: center;
    width: 25%;
}

.campos_ciudad {
    color: #333;
    margin: 5px auto;
    padding: 5px;
    text-align: center;
    word-break: break-word;
    align-self: center;
    width: 20%;
}

.campos_ciudad input[type="submit"],
.campos_departamento input[type="submit"],
.campos_pais input[type="submit"] {
    background: #ddd;
    color: #222;
    border-radius: 5px;
    border: 1px solid #222;
    cursor: pointer;
}

.campos_pais input[type="submit"] {
    width: fit-content !important;
}

.campos-p {
    color: #333;
    text-align: center;
    width: 50%;
    word-break: break-word;
    padding: 1em 0;
    font-weight: bold;
}

.campos_f {
    color: #333;
    margin: 5px auto;
    padding: 5px;
    text-align: center;
    word-break: break-word;
    width: 14%;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}

.campos_f2 {
    color: #333;
    margin: 5px auto;
    padding: 5px;
    text-align: left;
    word-break: break-word;
    width: 900%;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}

/* ===== ACTUALIZAR PASSWORD ===== */
.actualiza_pass {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 1fr);
    width: fit-content;
    margin: 1em auto;
    gap: 10px;
}

.actualiza_pass div {
    align-items: center;
    justify-self: end;
}

.ocultar {
    opacity: 0;
}

/* ===== TÍTULOS ===== */
.titulo_p {
    color: #fff;
    background: #444;
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding: 10px;
    width: 80%;
    margin: 0 auto;
    text-align: center;
    box-shadow: 0px 1px 2px #333;
    word-break: break-word;
    gap: 5px;
}

.titulo_p a {
    color: #fff;
    text-decoration: none;
}

.titulo {
    background-color: #222;
    border-radius: 15px 15px 0 0;
    color: #fff;
    font-size: .9em;
    text-align: center;
    width: 100%;
    text-transform: none;
    padding: .5em;
    margin: 0;
    box-shadow: 0px 1px 2px #333;
    display: flex;
    align-items: center;
    justify-content: center;
    word-break: break-word;
}

.titulo2 {
    background-color: rgb(222, 216, 216);
    border-radius: 0 15px 15px 0;
    box-shadow: 0px 1px 2px #333;
    display: flex;
    height: 50px;
    color: #222;
    font-weight: bold;
    text-align: center;
    font-size: 1em;
    width: fit-content;
    text-transform: none;
    padding: .5em;
    justify-self: end;
    word-break: break-word;
    align-items: center;
}

.titulo2 a {
    color: #222;
    text-decoration: none;
}

.titulo3,
.tituloB {
    background-color: rgb(222, 216, 216);
    border-radius: 15px 0 0 15px;
    box-shadow: 0px 1px 2px #333;
    display: flex;
    height: 50px;
    color: #222;
    font-weight: bold;
    text-align: center;
    font-size: 1em;
    width: fit-content;
    text-transform: none;
    padding: .5em;
    justify-self: end;
    word-break: break-word;
    align-items: center;
    
}

.titulo3 a {
    color: #222;
    text-decoration: none;
}

.titulo2 button[type="submit"],
.titulo3 button[type="submit"] {
    border: none;
    background: none;
    cursor: pointer;
    font-weight: bold;
}

.titulo4 {
    border-radius: 15px 15px 0 0;
    background-color: #444;
    color: #eee;
    text-align: center;
    padding: 10px 0;
}

.link_int {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    margin: 1em auto;
}

.titulo_list_u {
    background-color: #222;
    border-radius: 15px 15px 0 0;
    color: #fff;
    font-weight: bold;
    text-align: center;
    width: 12.5%;
    text-transform: none;
    padding: 5px;    
    word-break: break-all;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

}

.titulo_list_f {
    background-color: #222;
    border-radius: 15px 15px 0 0;
    color: #fff;
    font-weight: bold;
    text-align: center;
    text-transform: none;
    padding: 1em;
    margin: 0 1px;
    box-shadow: 0px 1px 2px #333;
    word-break: break-word;
}

.titulo_list_r {
    background-color: #222;
    border-radius: 15px 15px 0 0;
    color: #fff;
    font-weight: bold;
    text-align: center;
    flex-grow: 1;
    text-transform: none;
    padding: 1em;
    margin: 0 1px;
    box-shadow: 0px 1px 2px #333;
    word-break: break-word;
}

.titulo_aud {
    background-color: #222;
    border-radius: 15px 15px 0 0;
    color: #fff;
    font-size: .8em;
    text-align: center;
    text-transform: none;
    padding: 1em;
    margin: 0 1px;
    box-shadow: 0px 1px 2px #333;
    width: 100%;
}

/* ===== BOTONES ===== */
.btn_azul {
    background: rgba(8, 113, 196, 1.0);
    color: #fff;
    border: 1px solid rgb(124, 124, 124);
    text-decoration: none;
    text-align: center;
    padding: 5px 10px;
    border-radius: 0.25rem;
    text-transform: none;
    font-weight: 400;
    display: inline-block;    
    cursor: pointer;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    word-break: break-all;
    width: fit-content;
    margin: auto;
}

.btn_azul:hover {
    box-shadow: none;
    background-color: rgba(8, 113, 196, .7);
}

.btn_amarillo {
    background: #ffc107;
    color: #000;
    border: 1px solid rgb(124, 124, 124);
    text-decoration: none;
    text-align: center;
    padding: 5px 10px;
    border-radius: 0.25rem;
    text-transform: none;
    font-weight: 400;
    margin: 5px auto;
    display: inline-block;
    word-break: break-all;    
    cursor: pointer;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.btn_amarillo:hover {
    box-shadow: none;
    background-color: rgba(255, 193, 7, 0.7);
}

.btn_rojo {
    background: rgb(200, 92, 109);
    color: #fff;
    border: 1px solid rgb(124, 124, 124);
    text-decoration: none;
    text-align: center;
    padding: 5px 10px;
    border-radius: 0.25rem;
    text-transform: none;
    font-weight: 400;
    margin: 5px auto;
    display: inline-block;
    word-break: break-all;    
    cursor: pointer;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.btn_rojo:hover {
    background: rgba(200, 92, 109, 0.7);
    box-shadow: none;
}

.btn_gris {
    background: rgba(124, 124, 124, .3);
    color: #000;
    border: 1px solid rgb(124, 124, 124);
    text-decoration: none;
    text-align: center;
    padding: 5px 10px;
    border-radius: 0.25rem;
    text-transform: none;
    font-weight: 400;
    margin: 5px auto;
    display: inline-block;
    word-break: break-all;    
    cursor: pointer;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.btn_gris:hover {
    box-shadow: none;
    background-color: #eee;
    color: #555;
}

.centrar {
    width: 50%;
    margin: 0 auto;
}

.btn_oscuro {
    background-color: rgba(0, 0, 0, .2);
    color: #000;
    border: 1px solid rgb(124, 124, 124);
    text-decoration: none;
    text-align: center;
    padding: 5px 10px;
    border-radius: 0.25rem;
    text-transform: none;
    font-weight: 400;
    margin: 5px auto;
    display: inline-block;
    word-break: break-all;    
    cursor: pointer;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.btn_oscuro:hover {
    box-shadow: none;
    background: rgba(0, 0, 0, .5);
    color: #fff;
}

.btn_verde {
    background: rgb(73, 114, 35);
    color: #fff;
    border: 1px solid rgb(124, 124, 124);
    text-decoration: none;
    text-align: center;
    padding: 5px 10px;
    border-radius: 0.25rem;
    text-transform: none;
    font-weight: 400;
    margin: 5px auto;
    display: inline-block;
    word-break: break-all;
    cursor: pointer;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    
}

.btn_verde:hover {
    background: rgba(73, 114, 35, 0.7);
}

.btn_sel {
    background: #bbb;
    box-shadow: 0px 1px 2px #333;
    color: #333;
    border: 1px solid rgb(124, 124, 124);
    text-decoration: none;
    text-align: center;
    padding: 5px 10px;
    border-radius: 0.25rem;
    text-transform: none;
    font-weight: 400;
    font-size: 1rem;
    margin: 5px auto;
    display: inline-block;    
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    cursor: pointer;
}

.resalta {
    padding: 5px;
    color: #333;
    text-shadow: 0;
    font-weight: bolder;
    border-radius: 15px;
}

.bonito {
    background: #ccc;
    border-radius: 15px;
    box-shadow: 0px 1px 2px #333;
    color: #333;
    font-weight: bolder;
    padding: 5px;
    border: 0;
}

/* ===== MENSAJES ===== */
.msj_rojo {
    border-radius: 15px;
    align-items: center;
    background-color: rgb(247, 121, 121);
    padding: 20px;
    text-align: center;
    margin: 1em auto;
}

.msj_rojo span {
    color: white;
    font-weight: bolder;
}

.msj_verde {
    border-radius: 15px;
    background: rgb(130, 247, 132);
    padding: 20px;
    text-align: center;
    margin: 1em auto;
}

.msj_verde span {
    color: green;
    font-weight: bolder;
}

/* ===== FOOTER ===== */
footer {
    background: #222;
    align-items: center;
    display: flex;
    flex-direction: column;
    height: 100px;
    padding: 10px;
    width: 100%;
    justify-content: center;
    position: absolute;
    bottom: 0;
}

footer div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: auto;
    margin: 0 auto;
}

footer div img {
    width: 68px;
    height: 48px;
    margin: 0 auto;
}

footer div span {
    color: #bbb;
}

/* ===== PREGUNTAS & RESPUESTAS ===== */
.bloque-pregunta {
    font-weight: bold;
    text-transform: none;
    display: grid;
    grid-template-columns: 5% 35% 35% 25%;
    width: 100%;
    margin: 0 auto;
}

.bloque-p {
    border: 1px solid #bbb;
    background: #cfcfcf;
    display: flex;
    flex-direction: column;
    padding: 5px;
    border-radius: 10px;
    margin: 10px;
}

.bloque-p .float-left {
    display: flex;
    flex-direction: column;
}

.bloque-p div input {
    width: 100%;
    height: 40px
}

.bloque-p div input[type="text"] {
    width: 410px
}

.bloque-p span {
    margin: 10px
}

.bloque-p span i {
    margin-top: 20px
}

.bloque-check {
    background: #ddd;
}

.estado {
    display: flex;
    flex-direction: column;
    align-items: left;
}

.titulo-bloque {
    background: #222;
    color: #fff;
    padding: 10px;
    border-radius: 10px 10px 0 0;
    margin: -5px;
}

.nueva_pre {
    border-bottom: 1px dotted #bbb;
    border-radius: 0 0 15px 15px;
    border: 1px solid #bbb;
    margin: 0 auto;
    width: 98%;
    align-content: center;
    align-items: center;
    display: flex;
    justify-content: space-around;
    padding: 5px;
    flex-direction: row;
    background-color: #ddd;
}

.textarea {
    height: 150px;
    width: 100%;
    resize: none;
}

.nueva_pre div {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.nueva_pre div input {
    width: 100%;
}

/* RESPUESTAS */
.r_iconos {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 5px;
    justify-content: space-around;
    text-align: center;
    background: #ddd;
    width: 98%;
    margin: 0 auto;
    border-radius: 10px;
    border: 1px solid #ccc;
}

.r_iconos span {
    display: flex;
    flex-direction: column;
    border: 1px solid #aaa;
    border-radius: 5px;
    background: #eee;
    padding: 5px;
    margin: 5px;
}

.r_iconos span label {
    font-size: .8em;
    display: flex;
    flex-direction: column;
}

.r_iconos span label i {
    font-size: 2.5em;
    margin: 5px;
    text-shadow: 1px 2px 10px #fff;
}

/* ===== MEDIA QUERIES ===== */
@media (max-width: 1024px) {
    header {
        flex-wrap: wrap !important;
        justify-content: left;
        flex-wrap: wrap;
        height: auto;
        align-items: center;
    }

    .sesion {
        position: unset !important;
        ;
    }
}