:root {
    --green-success: #2d9183;
    --green-hover: #1c5a52;
    --red-fail: #E6B0AA;
    --yellow-alert: #ffd51c;
    --gray-user-background: #ECF0F1;
    --blue-background-title: #2980B9;
    --blue-background-thead: #FBFCFC;
    --gray-borders: #B3B6B7;
    --white: white;
    --black: black;
    --main-font: 'Roboto', sans-serif;
    --sm: 0.7rem;
    --md: 1rem;
    --lg: 1.2rem;
    --xlg: 1.6rem;
}
html {
	font-size: 85%;
}
body {
    margin: 0;
	font-family: var(--main-font);
	font-size: var(--md);
}
.main {
    width: 100%;
    display: grid;
    grid-template-columns: auto 1fr;
}

.container_qmenu {
    display: grid;
    grid-template-columns: 80% 20%;
}
.container_qmenu .item-1 {
    align-self: center;    
}
.container_qmenu .item-2 {
    justify-self: center;
    align-self: center;    
}

.isDisabled {
    color: currentColor;
    cursor: not-allowed;
    opacity: 0.5;
    text-decoration: none;
    pointer-events: none;
}

header .container_header {
    display: grid;
    grid-template-columns: 20% 58% 20%;
}

.container_header .item-1 {
    justify-self: start;
    align-self: start;
    padding-left: 1rem;
    padding-top: 0.5em;
}
.container_header .item-2 {
    text-align: center;
    justify-self: center;
    align-self: center;
    font-family: 'Varela';
    font-weight: bolder;
    font-size: 20px;
    color: #448a91;
}
.container_header .item-3 {
    justify-self: end;
    align-self: start;
    padding-right: 1rem;
    padding-top: 0.5em; 
}

.header__img {
    height: 4rem;
    margin-bottom: 0.2em;
    padding: 0.5rem;
}
.header__user {
	font-weight: bold;
	background-color: var(--gray-user-background);
	padding: 0.3rem;
	margin-bottom: 0.2rem;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    height: 1.5rem;

}
.header_user__text {
    display: flex;
    flex-direction: row;
    align-items: center;
}
.tiny {
    font-size: var(--xlg);
}
.header-user__link-color {
    color: var(--green-success);
}
.footer__img {
    height: 7rem;
}
.aside {
    width: 95%;
    margin-right: 2rem;
    margin-bottom: 2rem;
}
.section {
    display: inline-block;
    width: 98%;
    margin: 0;
}
.section__title {
    width: 100%;
    padding: 0.5rem;
    margin: 0;
    background-color: rgb(0, 71, 80);
    color: var(--white);
    font-weight: bold;
    font-size: 1.4rem;
    text-align: center;
}

.section__subtitle {
    width: 100%;
    padding: 0.5rem;
    margin: 0;
    background-color: rgb(200, 200, 200);
    display: grid;
    grid-template-columns: 80% 10% 5% 5%;
}
.section__subtitle .item1 {
    justify-self: start;
    align-self: center;
}
.section__subtitle .item2 {
    justify-self: end;
    align-self: center;
}
.section__subtitle .item3 {
    justify-self: center;
    align-self: center;
}
.section__subtitle .item4 {
    width: 60px;
    justify-self: end;
    align-self: center;
}

/*---- Inician Sections para cuestionario ----*/
.section__componente {
    width: 100%;
    padding: 0.5rem;
    margin: 0.2rem 0rem 0rem 0rem;
    color: rgb(77, 76, 76);
    font-weight: bold;
    font-size: 1.1rem;
}
.section__desc_componente {
    text-align: justify;
    width: 99.7%;
    padding: 0.5rem;
    margin: 0rem 0rem 0.2rem 0rem;
    color: rgb(77, 76, 76);
    font-size: 1rem;
    border-left: 2px solid rgb(186, 184, 184);
    border-right: 2px solid rgb(186, 184, 184);
    border-bottom: 2px solid rgb(186, 184, 184);
}
.section__principio {
    width: 100%;
    padding: 0.5rem;
    margin: 0.2rem 0rem;
    color: rgb(77, 76, 76);
    font-weight: bold;
    font-size: 1.1rem;
}
.section__subprincipio {
    width: 100%;
    padding: 0.5rem;
    margin: 0.2rem 0rem;
    color: rgb(77, 76, 76);
    font-weight: bold;
    font-size: 1rem;
}
/*---- Termina ----*/

.section__fieldset {
    width: 100%;
    margin: 2rem 0;
    border: 0.1rem solid var(--gray-borders);
    padding: 0.5rem;
}
.section__fieldset2 {
    display: flex;
    flex-direction: column;
}
.section__legend {
    font-weight: bold;
    font-size: var(--lg);
}
.form {
    display: flex;
    flex-direction: column;
}
.form__label {
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.form__label--size10 {
    display: inline-block;
    width: 10rem;
}

.form__input {
    display: inline-block;
    font-family: var(--main-font);
    font-size: var(--md);
    padding: 0.7rem;
    margin: 1rem 0;
}
.form__input--size3 {
    text-align: center;
    width: 3rem;
}
.form__input--size5 {
    text-align: center;
    width: 6rem;
}
.form__input--size8 {
    text-align: center;
    width: 8rem;
}
.form__input--size10 {
    width: 11rem;
}
.form__input--size12 {
    width: 13rem;
}
.form__input--size15 {
    width: 15rem;
}
.form__input--size20 {
    width: 20rem;
}
.form__input--size25 {
    width: 25rem;
}
.form__input--size30 {
    width: 30rem;
}
.form__input--size35 {
    width: 35rem;
}
.form__input--size40 {
    width: 40rem;
}
.form__input--size45 {
    width: 45rem;
}
.form__input--size50 {
    width: 50rem;
}
.form__input--size55 {
    width: 55rem;
}
.form__input--size60 {
    width: 60rem;
}
.form__select {
    background-color: var(--gray-user-background);
    border: none;
    border-radius: 0.3rem;
    padding: 0.5rem;
    font-family: var(--main-font);
    font-size: var(--md);
    margin: 0.5rem 0;
}
.form__select--size10 {
    width: 11rem;
}
.form__select--size15 {
    width: 15rem;
}
.form__select--size20 {
    width: 20rem;
}
.form__select--size30 {
    width: 30rem;
}
.form__select--size40 {
    width: 40rem;
}
.form__select--size50 {
    width: 50rem;
}
.form__select--size60 {
    width: 60rem;
}
.form__textarea {
    padding: 1rem;
    font-family: var(--main-font);
    font-size: var(--md);
    margin: 1rem 0;
}

.form__textarea--size60x10 {
    width: 60rem;
    height: 10rem;
}
.form__textarea--size60x5 {
    width: 60rem;
    height: 5rem;
}
.form__textarea--size80x10 {
    width: 80rem;
    height: 10rem;
}
.form__textarea--size30x5 {
    width: 30rem;
    height: 5rem;
}
.form__button {
    /*
    background-color: var(--green-success);
    border: none;
    border-radius: 1rem;
    height: 3.5rem;
    color: var(--white);
    margin-top: 2rem;
    font-size: var(--md);
    */
    padding: 0.2rem;
    font-family: var(--main-font);
    cursor: pointer;
    transition-duration: 0.4s;
}
/*
.form__button:hover {
    background-color: var(--green-hover);
    color: white;
}
.form__button--size10 {
    width: 10rem;
}
.form__button--size20 {
    width: 10rem;
}
*/
.form__excel {
    display: inline;
    margin-left: 2rem;
    width: 1.5rem;
}

table {
    width: 100%;
    border-collapse: collapse;
    font-family: var(--main-font);
    color: rgb(52, 52, 52);
}

table thead {
    text-align: center;
    height: 3rem;
    background-color: #d8d8d8;
    font-weight: bold;
}

table tfoot {
    text-align: center;
    height: 3rem;
    background-color: #d8d8d8;
    font-weight: bold;
}

table thead th {
    /*border: 1px solid rgb(231, 231, 231);*/
    border: 1px solid black;
}

table tfoot td {
    border: 1px solid black;
}

table tbody td {
    border: 1px solid black;
    padding: 0.5rem;
    text-align: center;
}

.table__th--highlight {
    background-color: #b6b6b6;
}

.table__td--align_left {
    text-align: left;
    padding-left: 0.5rem;
}

.table__td--highlight {
    background-color: #fafafa;
}

.table__td--highlight2 {
    background-color: #f0f5fd;
}

.table__td--highlight3 {
    background-color: #edfcea;
}

.table__tr {
    border-top: 0.1rem solid var(--gray-borders);
    border-bottom: 0.1rem solid var(--gray-borders);
    border: 1px solid rgb(231, 231, 231);
}
.table__td__title {
    background-color: var(--blue-background-thead);
    font-weight: bold;
    width: 20rem;
    text-align: left;
    padding-left: 0.5rem;
}
.table_tr--background_disabled {
    background-color: var(--gray-user-background);
}
.table__th--size5 {
    width: 5%;
}
.table__th--size10 {
    width: 10%;
}
.table__th--size15 {
    width: 15%;
}
.table__th--size20 {
    width: 20%;
}
.table__th--size25 {
    width: 25%;
}
.table__th--size30 {
    width: 30%;
}
.table__th--size35 {
    width: 35%;
}
.table__th--size45 {
    width: 45%;
}

.tablerep__td {
    text-align: center;
    padding: 1rem 0;
    border: 1px solid rgb(231, 231, 231);
}


.tablerep__thead {
    /*border-top: 0.1rem solid var(--green-success);
    border-bottom: 0.1rem solid var(--green-success);*/
    text-align: center;
    height: 4rem;
}
.tablerep__thead--background {
    /*background-color: var(--green-success);*/
    background-color: #8a8a8a;
}
.tablerep__thead--color {
    font-weight: bold;
    color: var(--white);
}
.tablerep__tr {
    border-top: 0.1rem solid #8a8a8a;
    border-bottom: 0.1rem solid #8a8a8a;
}
.tablerep__td__title {
    /*background-color: var(--green-success);*/
    background-color: #8a8a8a;
    font-weight: bold;
    color: var(--white);
    width: 20rem;
    padding-right: 1rem;
}

.table_matriz_fag {
    width: 100%;
    margin-top: 0.5rem;
}

.square {
    border: 1px solid rgb(173, 173, 173);
    width: 1.5rem;
    height: 1.5rem;
    margin: auto;
}

.circle {
    width: 1rem;
    height: 1rem;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    margin: auto;
}
.circle--s {
    width: 0.5rem;
    height: 0.5rem;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    margin: auto;
    display: inline-block;
}
.circle--green {
    background: rgb(1, 248, 63);
}
.circle--red {
    background: var(--red-fail);
}
.circle--yellow {
    background: var(--yellow-alert);
}
.circle--blue {
    background: var(--blue-background-title);
}
.circle--gray {
    background: var(--gray-borders);
}
.td--w2_5 {
    width: 2.5%;
}
.td--w5 {
    width: 5%;
}
.td--ml0 {
    border-left: none;
}
.td--mr0 {
    border-right: none;
}
.td--res {
    font-weight: 500;
    background-color: #f4f3f3;
}
.section__buttons {
    border-top: 1px solid #a8a8a8;
    padding: 1rem;
    /*
    display: flex;
    justify-content: space-around;
    */
}
.button__delete {
    cursor: pointer;
    color: #383838;
    padding: 5px;
}
.input_file::-webkit-file-upload-button {
    visibility: hidden;
}
.input_file::before {
    content: "Seleccionar archivo";
    /*
    color: var(--white);
    */
    background-color: #ebebeb;
    border-radius: 3px;
    border: 1px solid #525252; 
    width: 15rem;
    height: 2rem;
    display: inline-block;
    border: none;
    padding: 0.5rem;
    font-family: var(--main-font);
    font-size: var(--md);
    cursor: pointer;
    outline: none;
    white-space: nowrap;
    text-align: center;
}
.image-upload>input {
    display: none;
}
.loader {
    border: 0.5rem solid #f3f3f3;
    border-top: 0.5rem solid var(--green-success);
    border-radius: 50%;
    width: 5rem;
    height: 5rem;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.jconfirm-box {
    width: 30rem;
}
.submit_link {
    background: none;
    border: 0;
    color: blue;
    text-decoration: underline;
    box-shadow: none;
    cursor: pointer;
    font-family: var(--main-font);
    font-size: var(--md);
}
label.error {
	float: none;
	width: auto;
	display: block;
	color: red;
	font-style: italic;
	height: 20px;
	font-size: 10px;
	margin-top: 3px;
}
a:visited {
    text-decoration: none;
}
h2 {
    font-family: var(--main-font);
}
.icon_button {
    background: none;
    border: 0;
    color: var(--green-success);
    cursor: pointer;
}

.button {
    display: inline-block;
    border-radius: 2px;
    background-color: rgb(172, 172, 172);
    border: none;
    color: #FFFFFF;
    text-align: center;
    font-size: 1.05rem;
    padding: 0.5rem;
    width: 100px;
    transition: all 0.5s;
    cursor: pointer;
    margin: 0;
    opacity: 0.7;
}

.button span {
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: 0.5s;
}

.button:hover {opacity: 1}

.button_after span:after {
    content: '\00bb';
    position: absolute;
    opacity: 0;
    top: 0;
    right: -20px;
    transition: 0.5s;
}

.button_after:hover span {
    padding-right: 25px;
}

.button_after:hover span:after {
    opacity: 1;
    right: 0;
}

.button_before span:after {
    content: '\00ab';
    position: absolute;
    opacity: 0;
    top: 0;
    left: -20px;
    transition: 0.5s;
}

.button_before:hover span {
    padding-left: 25px;
}

.button_before:hover span:after {
    opacity: 1;
    left: 0;
}

.ui-icon {
    background-image: url(http://download.jqueryui.com/themeroller/images/ui-icons_ffffff_256x240.png) !important;
}

.ui-accordion-header-icon {
    margin-right: 0.5rem;
}

.td_titulo {
    width: 20%;
    text-align: left;
    background-color: #dfdddd;
    font-weight: bold;
}

.td_contenido {
    width: 80%;
    text-align: left;
}
/*
input[type=submit], input[type=button] {
	border: 1px solid gray;
	border-radius: 3px;
	padding: 4px 10px;
	box-shadow: 2px 2px rgba(0, 0, 0, 0.2);
	font-family: "Tw Cen MT Normal", Tahoma;
	font-size: 11px;
}

.input {
	padding: 3px;
	border: 1px solid #bfbfbf;
	border-radius: 3px;
	font-family: "Tw Cen MT Normal", Tahoma;
	font-size: 11px;
}

textarea {
	padding: 3px;
	border: 1px solid #bfbfbf;
	border-radius: 3px;
	font-family: "Tw Cen MT Normal", Tahoma;
	font-size: 11px;
}

.input:focus, textarea:focus {
	box-shadow: 0 0 5px rgba(81, 203, 238, 1);
	border: 1px solid rgba(81, 203, 238, 1);
}

.div_separador {
	background-color: gray;
	padding: 10px;
	font-size: 13px;
	text-align: right;
	color: white;
}

.header_local {
	float: right;
	height: 26px;
	padding-top: 50px;
	padding-right: 20px;
	color: white;
	font-size: 14px;
	font-weight: bold;
	text-align: right;
}

section {
	margin-bottom: 40px;
	width: auto;
	overflow-x: auto;
}

footer {
	clear: both;
	padding: 5px;
	text-align: center;
}

.ui-datepicker {
	font-family: "Tw Cen MT Normal", Tahoma;
	font-size: 10px;
}
.header_out {
	float: right;
	text-align: right;
	padding-right: 15px;
}
*/