/**
 * @license Copyright 2022 Lahuen Health SPA. All Rights Reserved.
 */
.indicaciones__examenes-laboratorio .barra-busqueda-central {
	margin: 1rem;
	display: flex;
	align-items: center;
}

.indicaciones__examenes-laboratorio .contenido {
	display: flex;
	height: calc(100% - 6rem);
}

/* Spinner */
.waiting-category {
	font: 600 1.2rem 'Lato', sans-serif;
	z-index: 100;
	background-color: rgba(255, 255, 255, 0.7);
	color: var(--primary-d-normal);
	position: absolute;
	width: 100%;
	margin-top: -4rem;
	height: 63rem;
	display: flex;
	align-items: center;
	justify-content: center;
}

.waiting-category-spiner {
	display: flex;
	flex-direction: column;
	align-items: center;
}

/* Sugerencias o exámenes por categoria*/
.indicaciones__examenes-laboratorio .sugerencias {
	padding: 0.5rem;
	width: 33rem;
	height: 100%;
	margin-right: 2rem;
}

.indicaciones__examenes-laboratorio .sugerencias__title {
	margin-bottom: 0.75rem;
	color: var(--primary-c-normal);
	font: 600 1.4rem 'Lato', sans-serif;
	border-bottom: 0.1rem solid;
}

.indicaciones__examenes-laboratorio .cuerpo {
	display: flex;
	height: 100%;
}

.indicaciones__examenes-laboratorio .exam-actionbar {
	margin-right: 1rem;
	width: 13rem;
}

.indicaciones__examenes-laboratorio .exam-actionbar .suggest-option,
.indicaciones__examenes-laboratorio .exam-actionbar .categories-option {
	background-color: #fff;
	border: 0.1rem solid var(--primary-e-normal);
	font: 600 1.2rem 'Lato', sans-serif;
	outline: none;
	color: var(--primary-d-normal);
	padding: 0.5rem 1rem;
	position: relative;
	text-align: left;
	width: -webkit-fill-available;
	cursor: pointer;
	display: flex;
}

.indicaciones__examenes-laboratorio .exam-actionbar .suggest-option:hover,
.indicaciones__examenes-laboratorio .exam-actionbar .categories-option:hover {
	background-color: var(--primary-a-bright);
	transition: all ease 0.3s;
}

.indicaciones__examenes-laboratorio .exam-actionbar .suggest-option,
.indicaciones__examenes-laboratorio .exam-actionbar .categories-option:not(:last-child) {
	margin-bottom: 0.2rem;
}

.indicaciones__examenes-laboratorio .exam-actionbar .categories-option--active,
.indicaciones__examenes-laboratorio .exam-actionbar .suggest-option--active {
	border-color: var(--primary-a-light);
	color: var(--primary-a-light);
}

.indicaciones__examenes-laboratorio .exam-actionbar .suggest-option::after,
.indicaciones__examenes-laboratorio .exam-actionbar .categories-option::after {
	content: '';
	position: absolute;
	right: -15px;
	top: 0;
	visibility: hidden;
}

.indicaciones__examenes-laboratorio .exam-actionbar .suggest-option--active::after,
.indicaciones__examenes-laboratorio .exam-actionbar .categories-option--active::after {
	visibility: visible;
}

.indicaciones__examenes-laboratorio .exam-actionbar .suggest-option:before {
	-webkit-mask: url('//ficha.en.hegc.cl/images/icono-ampolleta.svg') no-repeat center/1.2rem;
	content: '';
	width: 1.2rem;
	height: 1.2rem;
	background-color: var(--primary-a-normal);
	margin-right: 0.5rem;
}

.indicaciones__examenes-laboratorio .exam-list {
	flex: 1;
	overflow-y: scroll;
	height: 100%;
}

.indicaciones__examenes-laboratorio .exam-list__suggestion {
	font: 400 1.2rem 'Open Sans', sans-serif;
	color: var(--gray-c);
}

.indicaciones__examenes-laboratorio .exam-list__options {
	background: #fff;
	display: flex;
	align-items: center;
	padding: 0.4rem 1rem;
	font: 400 1.2rem 'Open Sans', sans-serif;
	text-align: left;
	color: var(--primary-d-normal);
	border: 0.1rem solid var(--primary-f-dark);
	border-radius: 0.3rem;
	cursor: pointer;
	margin-bottom: 0.3rem;
}

.indicaciones__examenes-laboratorio .exam-list__options:hover {
	background-color: var(--primary-a-bright);
	border-color: var(--primary-b-light);
	transition: all ease 0.3s;
}

.indicaciones__examenes-laboratorio .exam-list__options::before {
	color: var(--primary-a-normal);
	content: '+';
	font: 600 1.2rem 'Open Sans', sans-serif;
	height: fit-content;
	width: fit-content;
	margin-right: 0.5rem;
}

/* Examenes seleccionados */
.indicaciones__examenes-laboratorio .indicacion-examenes {
	flex: 1;
	padding: 0.5rem;
	height: 100%;
}

.indicaciones__examenes-laboratorio .indicacion-examenes__titulo {
	color: var(--primary-c-normal);
	margin-bottom: 0.75rem;
	display: flex;
	font: 600 1.4rem 'Lato', sans-serif;
	border-bottom: 0.1rem solid;
}

.indicaciones__examenes-laboratorio .indicacion-examenes__table {
	table-layout: fixed;
	width: 100%;
}

.indicacion-examenes__table th {
	border: none;
	color: var(--primary-d-normal);
	background-color: var(--primary-e-bright);
	padding: 0.5rem 1rem;
	font: 600 1.2rem 'Lato', sans-serif;
}

.indicacion-examenes__table th:nth-child(1) {
<<<<<<< HEAD
	border-radius: .3rem 0 0 .3rem;
	width: 16rem;
}

.indicacion-examenes__table th:nth-child(2) {
    width: 20rem;
}

.indicacion-examenes__table th:nth-child(3) {
    width: 11rem;
}

.indicacion-examenes__table th:nth-child(4) {
	border-radius: 0 .3rem .3rem 0;
	width: 2rem;
=======
	border-radius: 0.3rem 0 0 0.3rem;
	width: 26rem;
}

.indicacion-examenes__table th:nth-child(2) {
	width: 10rem;
}

.indicacion-examenes__table th:nth-child(3) {
	width: 15rem;
}

.indicacion-examenes__table th:nth-child(4) {
	border-radius: 0 0.3rem 0.3rem 0;
	width: 4rem;
>>>>>>> feature-sprint-hlh-merge
}

.indicaciones__examenes-laboratorio .dropdown-select-req-ejecucion {
	margin-bottom: 0.5rem;
}

.indicaciones__examenes-laboratorio .indicacion-examenes__table-cell {
	border-bottom: 0.1rem solid var(--primary-f-normal);
	padding: 0.5rem;
}

.indicaciones__examenes-laboratorio .indicacion-examenes__table-cell--description {
	font: 400 1.2rem 'Open Sans', sans-serif;
	width: 33rem;
	color: var(--gray-a);
}

.indicaciones__examenes-laboratorio .indicacion-examenes__table-cell--observations input {
	background-color: #fff;
	border: 0.1rem solid var(--primary-e-normal);
	border-radius: 0.3rem;
	padding: 0.25rem 0.5rem;
	width: -webkit-fill-available;
	font: 400 1.1rem 'Open Sans', sans-serif;
}

.indicaciones__examenes-laboratorio .indicacion-examenes__table-cell--observations input::placeholder {
	color: var(--gray-e);
	font-style: normal;
}

.indicaciones__examenes-laboratorio .indicacion-examenes__table-cell--actions {
	width: 2rem;
}

.indicaciones__examenes-laboratorio .indicacion-examenes__table-action {
	background: url(/assets/skins/lahuen/base/images/icon_delete.svg) no-repeat center;
	background-size: 1.3rem;
	height: 1.8rem;
	width: 1.8rem;
	border-radius: 0.3rem;
	padding: 0.5rem;
	border: none;
	cursor: pointer;
	text-indent: -999rem;
}

.indicaciones__examenes-laboratorio .indicacion-examenes__table-action:hover {
	background-color: var(--primary-e-bright);
}

/** No hay exámenes seleccionados**/
.indicaciones__examenes-laboratorio .indicacion-examenes__sin-msj {
	color: var(--gray-e);
	font: 400 1.2rem 'Lato', sans-serif;
	padding: 0.5rem;
}
