﻿@charset "UTF-8";
/* CSS Document */

@font-face {
    font-family: 'ProximaNova';
    src: url('../fonts/ProximaNova-Bold.eot');
    src: url('../fonts/ProximaNova-Bold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/ProximaNova-Bold.woff2') format('woff2'),
        url('../fonts/ProximaNova-Bold.woff') format('woff'),
        url('../fonts/ProximaNova-Bold.ttf') format('truetype'),
        url('../fonts/ProximaNova-Bold.svg#ProximaNova-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'ProximaNova';
    src: url('../fonts/ProximaNova-Light.eot');
    src: url('../fonts/ProximaNova-Light.eot?#iefix') format('embedded-opentype'),
        url('../fonts/ProximaNova-Light.woff2') format('woff2'),
        url('../fonts/ProximaNova-Light.woff') format('woff'),
        url('../fonts/ProximaNova-Light.ttf') format('truetype'),
        url('../fonts/ProximaNova-Light.svg#ProximaNova-Light') format('svg');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'ProximaNova';
    src: url('../ProximaNova-Regular.eot');
    src: url('../ProximaNova-Regular.eot?#iefix') format('embedded-opentype'),
        url('../ProximaNova-Regular.woff2') format('woff2'),
        url('../ProximaNova-Regular.woff') format('woff'),
        url('../ProximaNova-Regular.ttf') format('truetype'),
        url('../ProximaNova-Regular.svg#ProximaNova-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'ProximaNova';
    src: url('../ProximaNova-Thin.eot');
    src: url('../ProximaNova-Thin.eot?#iefix') format('embedded-opentype'),
        url('../ProximaNova-Thin.woff2') format('woff2'),
        url('../ProximaNova-Thin.woff') format('woff'),
        url('../ProximaNova-Thin.ttf') format('truetype'),
        url('../ProximaNova-Thin.svg#ProximaNova-Thin') format('svg');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'ProximaNova';
    src: url('../ProximaNova-Medium.eot');
    src: url('../ProximaNova-Medium.eot?#iefix') format('embedded-opentype'),
        url('../ProximaNova-Medium.woff2') format('woff2'),
        url('../ProximaNova-Medium.woff') format('woff'),
        url('../ProximaNova-Medium.ttf') format('truetype'),
        url('../ProximaNova-Medium.svg#ProximaNova-Medium') format('svg');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'ProximaNova';
    src: url('../ProximaNova-Semibold.eot');
    src: url('../ProximaNova-Semibold.eot?#iefix') format('embedded-opentype'),
        url('../ProximaNova-Semibold.woff2') format('woff2'),
        url('../ProximaNova-Semibold.woff') format('woff'),
        url('../ProximaNova-Semibold.ttf') format('truetype'),
        url('../ProximaNova-Semibold.svg#ProximaNova-Semibold') format('svg');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

.overlay {
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	position: fixed;
	/*background: #222;*/
	background: transparent;
	z-index: 1000;
}

.overlay__inner {
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	position: absolute;
	background-color: rgba(256,256,256,.8);
}

.overlay__content {
	left: 50%;
	position: absolute;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	text-align: center;
}

	.overlay__content::before {
		content: '';
		width: 90px;
		height: 90px;
		position: absolute;
		left: 50%;
		top: 50%;
		-webkit-transform: translate(-50%, -50%);
		-moz-transform: translate(-50%, -50%);
		-ms-transform: translate(-50%, -50%);
		transform: translate(-50%, -50%);
		border-radius: 100%;
		background-image: url(../media/icons/icon_cuentanos_color.svg);
		background-position: center center;
		background-repeat: no-repeat;
		background-size: 80%;
		overflow: hidden;
	}

.spinner {
	width: 180px;
	height: 180px;
	display: inline-block;
	border-width: 10px;
	animation: spin 2s infinite linear;
	border-radius: 100%;
	border-style: solid;
	position: relative;
}

.textoSpinner {
	padding-top: 35px;
}

@-webkit-keyframes spin {
	100% {
		-webkit-transform: rotate(360deg);
		-moz-transform: rotate(360deg);
		-ms-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@keyframes spin {
	100% {
		-webkit-transform: rotate(360deg);
		-moz-transform: rotate(360deg);
		-ms-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

.overlay__content {
	background: transparent;
}

.textoSpinner {
	display: none;
	color: #000;
	font-weight: bolder;
}

.spinner {
	border-color: rgba(243, 243, 243, 1);
	border-top-color: rgba(245,159,4,1);
} 



*{
    margin: 0;
    padding: 0;
	-moz-box-sizing: border-box;
    box-sizing: border-box;
    font-family: ProximaNova, Arial;
	font-weight: normal;
	/*color: #606060;*/
}
b, strong{
	font-weight: bold\9;
}
h1, h1, h3, h4, h5, h6, span, p, b, a, li, br, label{
    font-size: 16px ;
    line-height: 24px;
}
img{
	display: block;
	width: 100%;
}
@media screen and (-webkit-min-device-pixel-ratio:0) {

	Body {
		font-family: ProximaNova, Arial!important;
	}
	
	b, strong {
		font-weight: bold !important;
	}
}
html {
}
a {
	color: #414141;
	outline: none;
	text-decoration: none;
}
button{
    border: none;
    background: transparent;
    position: relative;
    cursor: pointer;
}
img{
	display: block;
	width: 100%;
}
:focus {
    outline: none;
}
.wrapper{
	position: relative;
	max-width: 910px;
	/*max-width: 414px;*/
	margin: 0 auto;
}
.break{
	display: none;
}
/*** Estilos del header y footer ***/
.container{
	width: 100%;
	height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	position: relative;
	background-color: #06376E;
	background-image: url("../media/img/backAzul.jpg");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}
.logoHonestel{
	margin: 0 auto 3rem;
	display: block;
}
.saludo{
	color: #FFFFFF;
	font-size: 2.625rem
}
.primerAcercamiento{
	color: #EF992A;
	font-size: 1.5rem;
	line-height: 2.5rem;
}
.seguimiento{
	padding-left: 1.75rem;
	color: #FFFFFF;
	text-decoration: underline;
	font-weight: 500;
	position: relative;
}
.seguimiento::before{
	content: '';
	width: 1.25rem;
	height: 1.25rem;
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	left: 0;
	background-image: url("../media/icons/cursor-finger.svg");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 100%;
}
.hammer{
	max-width: 380px;
	position: absolute;
	left: 5vw;
	bottom: 20vh;	
}
.header{
	height: 54px;
	display: flex;
	justify-content: center;
	align-items: center;
    text-align: center;
    position: relative;
	border-bottom: 3px solid #F59F04;
    background: #FFFFFF;
	z-index: 1000;
}
.header h1{
	width: 30px;
	height: 30px;
	display: inline-block;
	color: #FFFFFF;
	font-size: 0;
	line-height: 1px;
	background-image: url("../media/icons/icon_cuentanos_color.svg");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 100%;
}
.header h2{
	width: 23px;
	height: 23px;
	display: inline-block;
	font-size: 0;		
	margin: 12px auto 12px;
	background-image: url("../media/img/icons/icon_cuentanos_color.svg");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 100%;
}
/*.header .back{
	width: 2rem;
	height: 2rem;
	position: absolute;
	left: 1rem;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	transition: all ease-in-out .35s;
	border-radius: 100%;
	background-color: #EDEFF7;
	background-image: url("../media/img/icons/back.svg");
	background-position: center center;
	background-repeat: no-repeat;
}
.header .back:hover{
	background-color: #D9D9D9;
	background-image: url("../media/img/icons/back.svg");
	background-position: center center;
	background-repeat: no-repeat;
}
.footer{
    background: #292a2a;
    color: #ffffff;
    text-align: center;
    padding: 25px 0;
}
	.footer.float{
		position: fixed;
		bottom: 0;
		width: 100%;
	}
.footer .line{
	display: inline-block;
}
.footer a{
    color: #606060;
    text-decoration: underline;
}*/
.btn{
	max-width: 180px;
	min-width: 180px;
	margin: 1rem auto;
	padding: .75rem 1rem;
	display: block;
	color: #ffffff;
	font-size: 1rem;
	text-align: center;
    transition: all ease-in-out .35s;
	border: none;
	border-radius: 50px;
	background: #1E3565;
	cursor: pointer;
}

.btnInactive {
	background: #e8e7e7;
}

.btnActive {
	background: #1E3565 !important;
}

.navLink {
	color: #22A6FA;
	text-decoration: underline;
	cursor: pointer;
}

.btn.principal{
	max-width: 300px;
	min-width: 300px;
	margin: 3rem auto;
	color: #021B3A;
	background-color: #F59F04;
}
.bloqued{
	color: #FFFFFF;
	background: #D9D9D9;
}
.two-Columns, .two-Columns-detail {
	height: 100vh;
	display: flex;
	/*background-color: #06376E;*/
}
.col-left{
	width: 45%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #06376E;
	background-image: url("../media/img/backAzul.jpg");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}
.content-col{
	width: 100%;
	height: 375px;
	padding: 0 5rem;
	position: relative;
}
.content-col::after{
	content: '';
	width: 554px;
	height: 421px;
	position: absolute;
	top:  80px;
	right: -130px;
	background-image: url("../media/img/hammer.png");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}
.col-left .lgHonestel{
	max-width: 256px;
}
.col-right{
	width: 65%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.col-right .header{
	display: none;
}
.logoDesktop{
	max-width: 2rem;
	display: block;
	margin: 0 auto 1rem;
}
.logoMobile{
	max-width: 149px;
	margin: 0 auto 2rem;
	display: none;
}
.boxLogIn{
	width: 275px;
	margin: 0 auto;
}
.logIn h2{
	margin: 0 auto 2rem;
	color: #747474;
	font-size: 1.125rem;
	line-height: 2rem;
	font-weight: bold;
	text-align: center;
}
.registroDenuncia h2{
	max-width: 420px;
	margin: 0 auto 1.5rem;
	font-size: 1.25rem;
}
.boxLogIn{
	text-align: left;
}
.boxLogIn .cajaInput:last-of-type{
	margin-bottom: 4rem;
}
.boxLogIn .cajaInput:last-of-type.anonima{
	width: 116%;
	margin: 0 0 2rem -8%;
}
#denunciaAnonima + label{
	font-size: 1.125rem;
	font-weight: bold;
	cursor: pointer;
}
.two-Columns-detail, .following{
	height: calc(100vh - 54px);
}
.two-Columns-detail .col-left, .two-Columns-detail .col-right{
	height: calc(100vh - 54px);
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
}
.two-Columns-detail .col-left{
	padding: 2rem 4rem 3rem;
	background-color: #F6F4F0;
	background-image: none;
}
.two-Columns-detail .col-right{
	padding: 4rem;
}
.folioDenuncia, .folioDenuncia span{
	color: #8A898F;
	font-size: 1rem;
}
.folioDenuncia{
	margin: 0 0 2rem;
}
.folioDenuncia span{
	font-weight: 500;
	margin: 0 0 0 .25rem;
}
.TituloDenuncia{
	margin: 0 0 1rem;
	color: #333132;
	font-size: 1.75rem;
	font-weight: bold;
}
.categoriaDenuncia{
	padding: .5rem;
	margin: 0 0 2rem 0;
	display: inline-block;
	font-size: 0.75rem;
	font-weight: 600;
}
.faltas .categoriaDenuncia{
	color: #4B4C4F;
	background-color: #FFC400;
}
.pecados .categoriaDenuncia{
	color: #FFFFFF;
	background-color: #FF8000;
}
.conflictos .categoriaDenuncia{
	color: #FFFFFF;
	background-color: #5D296A;
}
.descripcionDenuncia{
	width: 100%;
	max-height: 125px;
	margin: 0 auto 3rem;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
	color: #6C6C6C;
    overflow: hidden;
}
.two-Columns-detail .miga, .following .miga{
	width: 100%;
	margin: 0 0 2.5rem;
	display: flex;
}
.two-Columns-detail .miga .back, .following .miga .back{
	padding:  0 0 0 1.5rem;
	position: relative;
}
.two-Columns-detail .miga .back::before, .following .miga .back::before{
	content: '';
	width: 1rem;
	height: 1rem;
	position: absolute;
	left: 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	background-image: url("../media/icons/back.svg");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 100%;
}
.two-Columns-detail h6{
	padding: 0 0 0 3.5rem;
	margin: 0 0 2rem 0;
	color: #333132;
	font-size: 1.5rem;
	font-weight: bold;
	position: relative;
}
.two-Columns-detail h6::before{
	content: '';
	width: 2.4375rem;
	height: 2.4375rem;
	position: absolute;
	left: 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	border: 2px solid #EF992A;
	border-radius: 100%;
	background-color: #FFFFFF;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 100%;
}
.listadoDatos{
	padding: 0 0 0 2.5rem;
}
.listadoDatos a{
	margin: 0 auto .5rem;
	color: #3E3E3E;
	font-size: 1.125rem;
}
.two-Columns-detail .datosContacto h6{
	padding: 0 0 0 2.5rem;
}
.two-Columns-detail h6.datos::before{
	width: 1.82125rem;
	height: 1.82125rem;
	background-image: url("../media/icons/contact.png");
}
.two-Columns-detail h6.status::before{
	background-image: url("../media/icons/ruta.png");
}
.datosContacto a{
	display: block;
}
.avance{
	width: 100%;
	margin: 1.5rem auto 0;
}
.step{
	/*padding: .5rem 0 1rem 0;*/
	width: 100%;
	margin: 0 auto 2rem;
	display: inline-block;
}
.step.actual{
	/*margin: .125rem auto;*/
}
.faltas .step.actual{
	background-color: #FFFAEB;
}
.pecados .step.actual{
	background-color: #FFF0E0;
}
.conflictos .step.actual{
	background-color: #FDF4FF;
}
.headerStep{
	margin: 0 auto;
	color: #868589;
	font-weight: 600;
}
.step.actual{
	padding: 1rem 0 1.5rem;
	margin: .25rem auto .75rem;
}
.step.actual .headerStep{
	margin: 0 auto .35rem;
	color: #4B4C4F;
	font-size: 1.25rem;
}
.faltas .step.complete .headerStep{
	color: #FFC400;
}
.pecados .step.complete .headerStep{
	color: #FF8000;
}
.conflictos .step.complete .headerStep{
	color: #5D296A;
}
.stepContent{
	max-width: 70%;
	/*min-height: 40px;*/
	/*min-height: 72px;*/
	padding: 0 0 0 2rem;
	margin: 0 auto;
	display: block;
	position: relative;
}
.stepContent .marker{
	width: 16px;
	height: 16px;
	position: absolute;
	top: 4px;
	left: 0;
	transition: all ease-in-out .35s;
	border: 1px solid #D3D2D3;
	border-radius: 100%;
}
.stepContent .marker::before{
	content: '';
	width: 6px;
	height: 6px;
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%,-50%);
	-moz-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
	transition: all ease-in-out .35s;
	border-radius: 100%;
	background-color: #D3D2D3;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 100%;
}
.step.complete .stepContent .marker::before{
	background-image: url("../media/icons/checkStep.svg");
}
.step.actual .stepContent .marker::before, .step.complete .stepContent .marker::before{
	width: 100%;
	height: 100%;
}
.faltas .step.actual .stepContent .marker, .faltas .step.complete .stepContent .marker{
	border: 1px solid #FFC400;
}
.faltas .step.actual .stepContent .marker{
	box-shadow: 0 0 0 4px #FFE99F;
}
.faltas .step.actual .stepContent .marker::before, .faltas .step.complete .stepContent .marker::before{
	background-color: #FFC400;
}
.pecados .step.actual .stepContent .marker, .pecados .step.complete .stepContent .marker{
	border: 1px solid #FF8000;
}
.pecados .step.actual .stepContent .marker{
	box-shadow: 0 0 0 4px #FFD1A2;
}
.pecados .step.actual .stepContent .marker::before, .pecados .step.complete .stepContent .marker::before{
	background-color: #FF8000;
}
.conflictos .step.actual .stepContent .marker, .conflictos .step.complete .stepContent .marker{
	border: 1px solid #5D296A;
}
.conflictos .step.actual .stepContent .marker{
	box-shadow: 0 0 0 4px #E4D3FF;
}
.conflictos .step.actual .stepContent .marker::before, .conflictos .step.complete .stepContent .marker::before{
	background-color: #5D296A;
}
.step .stepContent .marker::after{
	content: '';
	width: 1px;
	height: 25px;
	position: absolute;
	left: 5px;
	bottom: -32px;
	border-left: 5px dotted #F1EFF1;
}
.faltas .step.complete .stepContent .marker::after{
	border-left: 5px dotted #ffe99f;
}
.pecados .step.complete .stepContent .marker::after{
	border-left: 5px dotted #ffd1a2;
}
.conflictos .step.complete .stepContent .marker::after{
	border-left: 5px dotted #E4D3FD;
}
.step:last-of-type .stepContent .marker::after{
	display: none;
}
.step.actual .stepContent .marker::after{
	display: none;
}
.following{
	padding: 1rem;
}
.empty{
	height: calc(100% - 24px - 2.5rem);
	padding: 5rem 0 0 0;
    display: none;
    flex-direction: column;
	justify-content: flex-start;
}
.noCases .empty{
	display: flex;
}
.noCases .caseBox{
	display: none;
}
.empty .iconReport{
	width: 103px;
	min-height: 103px;
	max-width: 103px;
	height: 103px;
	margin: 0 auto;
	display: block;
	border: 1px solid #FFCE8E;
	border-radius: 100%;
	background-color: #FFDEB2;
	box-shadow: 0 0 0 10px inset rgba(255,255,255,1);
}
.empty p{
	max-width: 450px;
	margin: 1.5rem auto;
	display: block;
	color: #6C6C6C;
	text-align: center;
}
.bandejaBtn{
	min-width: 256px;
	max-width: 256px;
	color: #1E3565;
	background-color: #F59F04;
}
.box{
	margin: 0 auto 2rem;
}
.box:last-of-type{
	margin: 0 auto;
}
.box h3{
	margin: 0 auto 1.5rem;
	color: #3E3E3E;
	font-weight: bold;
	position: relative;
}
.caseList .caseCard{
	display: block;
	position: relative;
	background-color: #FAFAFA;
}
.caseList .caseCard.faltas{
	background-color: rgba(255,250,230,1);
}
.caseList .caseCard.pecados{
	background-color: rgba(242,140,40,.08);
}
.caseList .caseCard.conflictos{
	background-color: rgba(180,137,250,.08);
}
.caseList .caseCard:last-of-type{
	margin: 0 auto;
}
.caseList .caseCard .advanceMarkers{
	width: 4px;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	position: absolute;
	left: 0;
	top: 0;
}
.caseList .caseCard .advanceMarkers .mark{
	width: 100%;
	height: calc((100% / 6) - 5px);
	transition: all ease-in-out .35s;
	background-color: rgba(211,210,211,1);
}
.caseList .caseCard.faltas .advanceMarkers .mark, .caseList .caseCard.pecados .advanceMarkers .mark{
	background-color: rgba(250,239,228,1);
}
.caseList .caseCard.conflictos .advanceMarkers .mark{
	background-color: rgba(180,137,250,.23);
}
.caseList .caseCard.faltas .advanceMarkers .mark.on{
	background-color: rgba(242,200,75,1);
}
.caseList .caseCard.pecados .advanceMarkers .mark.on{
	background-color: rgba(239,153,42,1);
}
.caseList .caseCard.conflictos .advanceMarkers .mark.on{
	background-color: rgba(180,137,250,1);
}
.caseList .caseCard .caseInfo{
	display: flex;
}
.caseList .caseCard .case, .caseList .caseCard .record{
	color: #868589;
}
.caseList .caseCard .case span, .caseList .caseCard .record span{
	font-size: inherit;
	color: inherit;
}
.caseList .caseCard .caseName{
	color: #878680;
}
.caseList .caseCard.faltas .caseName, .caseList .caseCard.pecados .caseName, .caseList .caseCard.conflictos .caseName{
	color: #4B4C4F;
}
/*.stepContent .marker .dots{
	width: 5px;
	height: 58px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	position: absolute;
	left: 5px;
	bottom: -66px;
}
.stepContent .marker .dots .dot{
	width: 5px;
	height: 5px;
	border-radius: 100%;
	background-color: #F1EFF1;
}
.faltas .step.complete .stepContent .marker .dots .dot{
	background-color: #FFB76E;
}
.pecados .step.complete .stepContent .marker .dots .dot{
	background-color: #FFB76E;
}
.conflictos .step.complete .stepContent .marker .dots .dot{
	background-color: #E4D3FD;
}
.step.actual .marker .dots, .step:last-of-type .marker .dots{
	display: none;
}*/
.stepDescript{
	display: none;
	color: #8B8C8F;
	font-size: 0.875rem;
}
.step.actual .stepDescript{
	display: block;
	color: #333132;
	font-size: 1rem;
}
.terminos{
	padding: 4.5rem 2rem 1rem;
	text-align: center;
	background: #ffffff;
}
.terminos h2, .terminos h4{
	display: block;
	color: #135F8F;
}
.terminos h2{
	width: 5.0625rem;
	height: 5.0625rem;
	display: block;
	margin: 0 auto;
	font-size: 0;
	line-height: 1px;
	background-image: url("../media/icons/shake.svg");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 100%;
}
.terminos h4{
	margin: 2rem auto 1rem;
	color: #333132;
	font-size: 2rem;
	line-height: 2.5rem;
	font-weight: bold;
}
.terminos p{
	color: #135F8F;
	padding: 0 1rem;
}
.juramento{
	width: 100%;
	max-width: 525px;
	display: block;
	margin: 0 auto;
}
.juramento p{
	color: #135F8F;
	font-size: 1rem;
	margin: 0 auto .25rem;
	line-height: 1.75rem;
}
.btn#jura{
	margin-top: 2.5rem;
}
.aviso{
	color: #22A6FA;
	text-decoration: underline;
}
.popTooltip{
	display: none;
	width: 235px;
	padding: 1rem;
	font-size: 0.875rem;
	position: absolute;
	border-radius: 8px;
	background: #FFEED8;
}
.popTooltip::before{
	content: '';
	width: 0;
	height: 0;
	position: absolute;
	top: -15px;
	left: 15px;
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	border-bottom: 15px solid #FFEED8;
}
.closePop{
	width: 1.125rem;
	height: 1.125rem;
	display: none;
	position: absolute;
	top: .75rem;
	right: .75rem;
	background-image: url("../media/icons/Icon-close.svg");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 100%;
}
input[type="checkbox"]{
	display: none;
}
input[type="checkbox"] + label{
	padding-left: 1.85rem;
	margin: 0 auto 1.5rem;
	display: block;
	color: #3E3E3E;
	position: relative;
	cursor: pointer;
}
input[type="checkbox"] + label::before, input[type="checkbox"] + label::after{
	content: '';
	position: absolute;
}
input[type="checkbox"] + label::before{
	width: .75rem;
	height: .75rem;
	left: 0;
	top: .2rem;
	transition: all ease-in-out .35s;
	border: 2px solid #F59F04;
	border-radius: 3px;
	background-color: #ffffff;
}
input[type="checkbox"] + label::after{
	width: .75rem;
	height: 0.75rem;
	left: .15rem;
	top: .285rem;
	background-image: url(../media/icons/check.svg);
	background-size: 100%;
	-webkit-transform: scale(0);
	-moz-transform: scale(0);
	-ms-transform: scale(0);
	transform: scale(0);
}
input[type="checkbox"]:checked + label::before{
	background-color: #F59F04;
}
input[type="checkbox"]:checked + label::after{
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
}
.denunciaForm{
	padding: 1rem 1rem 0;
}
.denunciaForm .miga{
	padding-left: 1.5rem;
	position: relative;
	color: #3E3E3E;
	font-size: 1rem;
	font-weight: bold;
}
.denunciaForm .miga::before{
	content: '';
	width: 1rem;
	height: 1rem;
	position: absolute;
	top: 0;
	left: 0;
	background-image: url("../media/icons/back.svg");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 100%;
}
.formulario h3{
	padding: 1rem 0 0;
	margin: 0 auto 2rem;
	color: #3E3E3E;
	font-size: 1.75rem;
	line-height: 2rem;
	font-weight: bold;
}
.formulario .labForm{
	margin: 0 auto .5rem;
	color: #747474;
	font-size: 1.125rem;
	font-weight: bold;
}
.textarea{
	width: 100%;
	height: 192px;
	max-width: 100%;
	min-width: 100%;
	min-height: 192px;
	padding: 1rem .75rem;
	display: block;
	color: #6C6C6C;
	font-size: 1rem;
	line-height: 1.35rem;
	border: 2px solid #F1EFF1;
}
.textarea::placeholder{
	color: #D9D9D9;
	font-size: 1.125rem;
	font-style: italic;
}
.evidencias{
	/*max-width: 256px;*/
	display: flex;
	/*flex-direction: column;*/
	justify-content: space-between;
	align-items: center;
	margin: 0 0 2rem 0;
}
.uploadedFiles{
	margin: 0;
	display: inline-block;
	color: #bcbcbc;
	font-size: 0.9375rem;
	text-decoration: underline;
	transition: all ease-in-out .15s;
	cursor: pointer;
}
.uploadedFiles.loaded{
	color: #135F8F;
}
.uploadedFiles span{
	color: inherit;
	font-size: inherit;
}
.involucrados{
	width: 100%;
	max-width: 445px;
}
.listadoInvolucrados{
	margin: 2rem auto 0;
}
.invBox{
	margin: 0 auto 1.25rem;
	padding-bottom: .25rem;
	border-bottom: 2px solid #F1EFF1;
}
input[type="file"]{
	display: none;
}
input[type="file"] + label{
	max-width: 176px;
	width: 100%;
	display: inline-block;
	padding: .5rem;
	border: 1px dashed #BEBFC1;
	text-align: center;
	border-radius: 10px;
	cursor: pointer;
}
input[type="file"] + label span{
	color: #0071CE;
	font-size: 0.9375rem;
	padding-left: 1.25rem;
	position: relative;
}
input[type="file"] + label span::before{
	content: '';
	width: 1rem;
	height: 1rem;
	position: absolute;
	left: 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	background-image: url("../media/icons/clip.svg");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 100%;
}
.cajaInput{
    width: 100%;
	 margin: 0 auto 2rem;
}
.cajaInput .labelTag{
	display: block;
	color: #D5D5D5;
	font-size: 0.875rem;
	font-weight: 500;
}
input[type="text"], input[type="password"], input[type="mail"]{
	width: 100%;
	padding: .5rem .75rem;
	color: #3F3F3F;
    font-size: 1.0625rem;
    margin: 0 auto;
    outline: none;
    border: none;
	background-color: #F4F4F4;
}
input[type="text"]::placeholder, input[type="password"]::placeholder, input[type="mail"]::placeholder{
	color: #949292;
	font-size: 0.8125rem;
}
.involucrados input[type="text"].involucrado{
	padding: 0 .5rem;
	color: #8A898F;
	border-bottom: 2px solid #F1EFF1;
	background-color: transparent;
}
.involucrados input[type="text"].involucrado::placeholder{
	color: #D3D2D3;
	font-style: italic;
	font-size: 0.9375rem;
}
.involucrados input[type="text"].involucrado:disabled{
	color: #3E3E3E;
}
.invBox input[type="text"].involucrado{
	width: calc(100% - 1.75rem);
	display: inline-block;
	border: none;
}
.invBox .removeInv{
	width: 1.25rem;
	height: 1.25rem;
	display: inline-block;
	vertical-align: bottom;
	background-image: url("../media/icons/Icon-trash.svg");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 100%;
}
.agregarInv{
	padding: 0 0 0 2rem;
	margin: 1rem 0;
	display: block;
	position: relative;
	color: #868589;
	font-size: 0.875rem;
}
.agregarInv::before{
	content: '';
	width: 1.25rem;
	height: 1.25rem;
	position: absolute;
	top: 50%;
	left: 0;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	border-radius: 100%;
	background-color: #F59F28;
	background-image: url("../media/icons/plus.svg");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 100%;
	overflow: hidden;
}
.switch{
	width: 56px;
	height: 22px;
	margin: 0 1rem;
	display: inline-block;
	position: relative;
}
.switch input{
	width: 0;
	height: 0;
	opacity: 0;
}
.slider{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	-webkit-transition: .35s;
	transition: .35s;
	border-radius: 20px;
	background-color: #EFEEEC;
	cursor: pointer;
}
.slider:before{
	content: "";
	width: 26px;
	height: 26px;
	position: absolute;
	right: -2px;
	bottom: -5px;
	-webkit-transition: .35s;
	transition: .35s;
	border-radius: 50%;
	border: 3px solid #FFFFFF;
	background-color: #BCBCBC;
	background-image: url("../media/icons/user.svg");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 100%;
	box-shadow: 0 2px 20px rgba(0,0,0,.16);
}
input:checked + .slider{
	background-color: #FFD000;
}
input:checked + .slider:before{
	background-color: #FFD000;
	-webkit-transform: translateX(-28px);
	-ms-transform: translateX(-28px);
	transform: translateX(-28px);
}
.switchBox{
	margin: 0 auto;
	display: flex;
	align-items: center;
}
.switchBox p{
	display: inline-block;
	color: #4B4C4F;
	font-size: 0.9375rem;
}
.switchLab{
	cursor: pointer;
}
.opciones {
	margin: 0 auto;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: flex-start;
}


/*input:-webkit-autofill{
    -webkit-box-shadow: 0 0 0px 1000px white inset;
	-webkit-text-fill-color: #D88B00 !important;
}*/

.custom-select{
	width: 275px;
	position: relative;
	display: inline-block;
}
.custom-select select{
	display: none;
}
.select-selected{
	transition: border ease-in-out .25s;
	background-color: #FFFFFF;
	position: relative;
	z-index: 100;
}
.select-selected.select-arrow-active{
	border: 1px solid #FFD000;
}
.select-selected:after{
	content: "";
	width: 0;
	height: 0;
	position: absolute;
	top: 50%;
	right: 10px;
	-webkit-transform: translateY(-55%);
	-moz-transform: translateY(-55%);
	-ms-transform: translateY(-55%);
	transform: translateY(-55%);
	transition: all ease-in-out .35s;
	border-left: 7px solid transparent;
	border-right: 7px solid transparent;
	border-top: 9px solid #C3C2C2;
}
.select-selected.select-arrow-active:after{
	-webkit-transform: translateY(-55%) rotate(-180deg);
	-moz-transform: translateY(-55%) rotate(-180deg);
	-ms-transform: translateY(-55%) rotate(-180deg);
	transform: translateY(-55%) rotate(-180deg);
	border-top: 9px solid #FFD000;
}
.select-items div,.select-selected{
	padding: 8px 16px;
	color: #8B8C8F;
	font-size: 0.9375rem;
	cursor: pointer;
}
.select-selected{
	border: 1px solid #C3C2C2;
}
.select-selected.icon{
	padding-left: 3rem;
}
.select-selected.icon::before{
	content: '';
	width: 1.125rem;
	height: 1.125rem;
	position: absolute;
	left: .75rem;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	transition: all ease-in-out .35s;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 100%;
}
.select-selected.icon.Pecados::before {
	background-image: url("../media/icons/pecados_on.svg");
}
.select-selected.icon.No::before {
	background-image: url("../media/icons/pecados_on.svg");
}

.select-selected.icon.Faltas::before {
	background-image: url("../media/icons/faltas_on.svg");
}

.select-selected.icon.Bajas::before {
	background-image: url("../media/icons/conflictos_on.svg");
}
.select-items{
	padding: 3px;
	position: absolute;
	background-color: #FFFFFF;
	top: 100%;
	left: 0;
	right: 0;
	z-index: 99;
	box-shadow: 0 3px 30px rgba(0,0,0,.09);
}
.select-hide{
	display: none;
}
.select-items div{
	padding: 16px 16px 16px 2.5rem;
	color: #8A898F;
	position: relative;
	border-radius: 3px;
	transition: all ease-in-out .35s;
}
.select-items div::before{
	content: '';
	width: 1.125rem;
	height: 1.125rem;
	position: absolute;
	left: .75rem;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	transition: all ease-in-out .35s;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 100%;
}
.select-items div.Pecados::before{
	background-image: url("../media/icons/pecados.svg");
}
.select-items div.No::before{
	background-image: url("../media/icons/pecados.svg");
}
.select-items div.Faltas::before{
	background-image: url("../media/icons/faltas.svg");
}
.select-items div.Mal::before{
	background-image: url("../media/icons/conflictos.svg");
}
.select-items div.Bajas::before{
	background-image: url("../media/icons/conflictos.svg");
}
.select-items div.Pecados:hover::before{
	background-image: url("../media/icons/pecados_on.svg");
}
.select-items div.No:hover::before{
	background-image: url("../media/icons/pecados_on.svg");
}
.select-items div.Faltas:hover::before{
	background-image: url("../media/icons/faltas_on.svg");
}
.select-items div.Mal:hover::before{
	background-image: url("../media/icons/conflictos_on.svg");
}
.select-items div.Bajas:hover::before{
	background-image: url("../media/icons/conflictos_on.svg");
}
.select-items div:hover, .same-as-selected{
	background-color: rgba(255,208,0,.16);
}
.select-items div.Pecados.same-as-selected::before{
	background-image: url("../media/icons/pecados_on.svg");
}
.select-items div.No.same-as-selected::before{
	background-image: url("../media/icons/pecados_on.svg");
}
.select-items div.Faltas.same-as-selected::before{
	background-image: url("../media/icons/faltas_on.svg");
}
.select-items div.Mal.same-as-selected::before{
	background-image: url("../media/icons/conflictos_on.svg");
}
.select-items div.Bajas.same-as-selected::before{
	background-image: url("../media/icons/conflictos_on.svg");
}
.msjError{
	display: none;
    color: #f5333f !important;
    position: absolute;
    font-size: 14px !important;
    margin: 5px auto;
}
.radios{
	margin: 1rem auto;
	display: flex;
	justify-content: center;
}
.radios input[type="radio"]{
	display: none;
}
.radios input[type="radio"] + label{
	font-size: 0;
	width: 50px;
	height: 50px;
	margin: 0 10px;
	background-size: 100% !important;
	transition: all ease-in-out .25s;
	cursor: pointer;
}
.radios input[type="radio"]:first-of-type + label{
	margin-left: 0;
}
.radios input[type="radio"]:last-of-type + label{
	margin-right: 0;
}
.radios input[type="radio"]:checked + label{
	-webkit-transform: scale(1.25);
	-moz-transform: scale(1.25);
	-ms-transform: scale(1.25);
	transform: scale(1.25);
}
.radios input[type="radio"] + label.normal{
	background: url("../media/icons/normal.svg") center center no-repeat;
}
.radios input[type="radio"] + label.incomodo{
	background: url("../media/icons/incomodo.svg") center center no-repeat;
}
.radios input[type="radio"] + label.triste{
	background: url("../media/icons/triste.svg") center center no-repeat;
}
.radios input[type="radio"] + label.enojado{
	background: url("../media/icons/enojado.svg") center center no-repeat;
}
.radios input[type="radio"] + label.furioso{
	background: url("../media/icons/furioso.svg") center center no-repeat;
}
.pregunta{
	display: block;
	margin: 2rem auto 3rem;
}
.pregunta p{
	text-align: center;
	color: #747474;
	font-size: 1.125rem;
	font-weight: bold;
}
.help{
	width: 1.5625rem;
	height: 1.5625rem;
	margin-left: 1.5rem;
	display: inline-block;
	vertical-align: middle;
	border-radius: 100%;
	border: 2px solid #FFD000;
	background-image: url("../media/icons/Info.svg");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 100%;
}
.black{
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: rgba(0,0,0,.3);
	z-index: 500;
	display: none;
}
.mascara{
	width: 100%;
	height: 100vh;
	display: none;
	position: relative;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	overflow-y: scroll;
	z-index: 1000;
}

.mascaraFiles {
	width: 100%;
	height: 100vh;
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	overflow-y: scroll;
	z-index: 1000;
}
.mascara.open {
	display: block;
	overflow: hidden;
	position: fixed;
}

	.mascaraFiles.open {
		display: block;
	}
.popCheck{
	width: 70%;
	min-width: 350px;
	max-width: 400px;
    padding: 4rem 2rem;
	text-align: center;
    position: fixed;
    left: 50%;
    top: 50%;
	-webkit-transform: translate(-50%, -50%) scale(0);
	-moz-transform: translate(-50%, -50%) scale(0);
	-ms-transform: translate(-50%, -50%) scale(0);
	transform: translate(-50%, -50%) scale(0);
	transition: all ease-in-out .35s;
	border-radius: 10px;
    background-color: #FFFFFF;
	box-shadow: 0 0 30px rgba(0,0,0,.16);
    z-index: 1000;
}
.popCheck.open{
	-webkit-transform: translate(-50%, -50%) scale(1);
	-moz-transform: translate(-50%, -50%) scale(1);
	-ms-transform: translate(-50%, -50%) scale(1);
	transform: translate(-50%, -50%) scale(1);
}
.popCheck .closePop{
	display: block;
}
.popCheck p{
	font-size: 1.25rem;	
	line-height: 2rem;
}
	.popCheck .closePop {
		display: block;
	}

	.popCheck p {
		margin-bottom: 40px;
		font-size: 1.25rem;
		line-height: 2rem;
	}

	.popCheck .link {
		color: #135F8F;
		text-decoration: underline;
		cursor: pointer;
	}

.popAnonimo {
	width: 650px;
	/* min-width: 500px;
	max-width: 400px; */
	padding: 4rem 2rem;
	text-align: center;
	position: fixed;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%) scale(0);
	-moz-transform: translate(-50%, -50%) scale(0);
	-ms-transform: translate(-50%, -50%) scale(0);
	transform: translate(-50%, -50%) scale(0);
	transition: all ease-in-out .35s;
	border-radius: 10px;
	background-color: #FFFFFF;
	box-shadow: 0 0 30px rgba(0,0,0,.16);
	z-index: 1000;
}

	.popAnonimo.open {
		-webkit-transform: translate(-50%, -50%) scale(1);
		-moz-transform: translate(-50%, -50%) scale(1);
		-ms-transform: translate(-50%, -50%) scale(1);
		transform: translate(-50%, -50%) scale(1);
	}

	.popAnonimo p {
		margin-bottom: 40px;
	}

	.popAnonimo .link {
		color: #135F8F;
		text-decoration: underline;
		cursor: pointer;
	}

.popHelp {
	width: 100%;
	max-width: 700px;
	min-height: 90vh;
	padding: 2rem 2rem 2rem;
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	bottom: auto;
	transition: all ease-in-out .35s;
	border-radius: 20px 20px 0 0;
	background-color: #FFFFFF;
}

    .popHelp.open {
        /*top: 90px;*/
        top: 10vh;
    }

    .popHelp .closeHelp, .popFiles .closeFiles {
        width: 1.5rem;
        height: 1.5rem;
        position: absolute;
        top: 1.125rem;
        right: 1.125rem;
        background-image: url("../media/icons/icon-closePop.svg");
        background-position: center center;
        background-repeat: no-repeat;
        background-size: 100%;
    }

    .popHelp h4 {
        margin: 4rem auto 4rem;
        color: #8A898F;
        font-size: 1.5rem;
        line-height: 2rem;
        text-align: left;
        font-weight: 300;
    }

.popFiles h4 {
    color: #8A898F;
    font-size: 1.3125rem;
    line-height: 2rem;
}

.popHelp h4 strong {
    display: block;
}

.popEnvio {
	width: 600px;
	/* padding: 20px 60px; */
	text-align: center;
	position: fixed;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%) scale(0);
	-moz-transform: translate(-50%, -50%) scale(0);
	-ms-transform: translate(-50%, -50%) scale(0);
	transform: translate(-50%, -50%) scale(0);
	transition: all ease-in-out .35s;
	border-radius: 10px;
	background-color: #FFFFFF;
	box-shadow: 0 0 30px rgba(0,0,0,.16);
	z-index: 1000;
}

	.popEnvio.open {
		-webkit-transform: translate(-50%, -50%) scale(1);
		-moz-transform: translate(-50%, -50%) scale(1);
		-ms-transform: translate(-50%, -50%) scale(1);
		transform: translate(-50%, -50%) scale(1);
	}

.popEnvioImg {
	margin: 30px auto 15px;
	width: 70px;
	height: 70px;
	background-image: url(../media/icons/icn-pop-envio.svg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}

.popEnvio p {
	font-weight: bold;
	font-size: 20px;
	max-width: 300px;
	margin: 0px auto;
}

.popEnvioCheck {
	margin-top: 50px;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
}

#anonima {
	font-size: 12px;
	font-weight: 300;
	color: #D3D3D8;
	width: fit-content;
	height: auto;
}

	#anonima::before {
		left: 10px;
		border: 1px solid #D3D3D8;
	}

	#anonima::after {
		border: 1px solid #F59F04;
		border-radius: 3px;
		left: 10px;
		color: #3E3E3E;
		top: 3px;
	}

#denunciaAnonima:checked ~ #anonima {
	font-weight: normal;
	color: #3E3E3E;
}

.tab{
	margin: 0 auto 2rem;
}
.tab:last-of-type{
	margin: 0 auto;
}
.tabheader{
	padding: 1rem 3rem 1rem 1rem;
	position: relative;
	/* color: #FFFFFF; */
	color: #333132;
	font-size: 1.125rem;
	font-weight: 400;
	border-radius: 8px;
	cursor: pointer;
}
.tabheader.faltas{
	background-color: #F7F1E1;
	border: 1px solid #EF992A;
}
.tabheader.faltasOpen{
	background-color: #F2C84B;
	border: 1px solid #EF992A;
}
.tabheader.pecados{
	background-color: #FFD9D9;
	border: 1px solid #FF1C1C;
}
.tabheader.pecadosOpen{
	background-color: #FF1C1C;
	border: 1px solid #FF1C1C;
	color: #ffffff;
}
.tabheader.conflictos{
	background-color: #FBEBFF;
	border: 1px solid #5D296A;
}
.tabheader.conflictosOpen{
	background-color: #5D296A;
	border: 1px solid #5D296A;
	color: #ffffff;
}
/* .tabheader::before{
	content: '';
	width: 1.5rem;
	height: 1.5rem;
	position: absolute;
	left: 1rem;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 100%;
	filter: brightness(100) contrast(100);
}
.tabheader.faltas::before{
	background-image: url("../media/icons/faltas_on.svg");
}
.tabheader.pecados::before{
	background-image: url("../media/icons/pecados_on.svg");
}
.tabheader.conflictos::before{
	background-image: url("../media/icons/conflictos.svg");
} */
.tabheader::after{
	content: '';
	width: 1.25rem;
	height: 1.25rem;
	position: absolute;
	right: 1rem;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	transition: all ease-in-out .35s;
	background: url("../media/icons/down.svg");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 100%;
	filter: brightness(.5);
}
.tabheader.opn::after{
	-webkit-transform: translateY(-50%) rotate(180deg);
	-moz-transform: translateY(-50%) rotate(180deg);
	-ms-transform: translateY(-50%) rotate(180deg);
	transform: translateY(-50%) rotate(180deg);
	filter: none;
}
.tabBody{
	margin-top: -10px;
	padding: 36px 1rem 1rem 1rem;
	border-radius: 0 0 8px 8px;
	background-color: #F8F8F8;
}
.tabBodyRed{
	border: 1px solid #FF1C1C;
}
.tabBodyYellow{
	border: 1px solid #F28C28;
}
.tabBodyPurple{
	border: 1px solid #5D296A;
}
.tabBody h6{
	margin: 0 auto 1rem;
	color: #3E3E3E;
	font-size: 1.375rem;
	line-height: 2rem;
	font-weight: 600;
}
.tabBody ul{
	padding: 0 0 0 1rem;
	margin: 0 auto 1.75rem;
	list-style-type: none;
}
.tabBody ul li{
	margin: 0 auto .5rem;
}
.tabBodyRed ul li::before{
	content: "\2022";
	color: #FF1C1C;
	font-weight: bold;
	display: inline-block;
	width: 1em;
	margin-left: -1em;
}
.tabBodyYellow ul li::before{
	content: "\2022";
	color: #F28C28;
	font-weight: bold;
	display: inline-block;
	width: 1em;
	margin-left: -1em;
}
.tabBodyPurple ul li::before{
	content: "\2022";
	color: #5D296A;
	font-weight: bold;
	display: inline-block;
	width: 1em;
	margin-left: -1em;
}
.tabBody ul li p{
	color: #8A898F;
	font-size: 0.875rem;
}
.tabBody ul li p strong{
	font-size: 0.9375rem;
}
.contacto{
	display: block;
	margin: 0 auto 2rem;
}
.registrada{
    padding: 8rem 4rem;
	text-align: center;
}
.iconMail{
	width: 5.3125rem;
	height: 5.3125rem;
	display: block;
	margin: 0 auto 2rem;
	-webkit-animation-duration: .75s;
	animation-duration: .75s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	animation-name: zoomIn;
	background-color: #F59F2C;
	box-shadow: 0 0 0 15px rgba(245,159,44,.3);
	border-radius: 100%;
	padding: 1rem;
}

.iconMailclose {
	width: 5.3125rem;
	height: 5.3125rem;
	display: block;
	margin: 0 auto 2rem;
	-webkit-animation-duration: .75s;
	animation-duration: .75s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	animation-name: zoomIn;
	background-color: #D90D1E;
	box-shadow: 0 0 0 15px rgba(217,13,30,.3);
	border-radius: 100%;
	padding: 1rem;
}
.registrada p{
	color: #868589;
	font-size: 1.125rem;
	/*margin: 0 auto 1rem;*/
	display: block;
}
.registrada p.respuesta{
	padding: 0 1rem;
}
.registrada p.gracias{
	margin: 1rem auto 2rem;
	font-weight: bold;
}
.registrada p.respuesta_anonima{
	padding: 0 2rem;
}
.registrada p.respuesta span, .registrada p.respuesta_anonima span{
	font-size: 1.0625rem;
	color: #F59F28;
	text-decoration: underline;
}
.registrada p a.link{
	color: #1885e2;
	font-size: inherit;
	text-decoration: underline;
}
.folio{
	display: block;
	margin: 1.5rem auto;
}
.folio p{
	margin: 0;
	color: #868589;
	font-size: 1rem;
	font-weight: bold;
}
.folio p span{
	display: block;
	margin: .5rem auto 0;
	color: #4895F7;
	font-size: 2.125rem;
	line-height: 2.75rem;
	font-weight: 600;
}
.notificacion{
	display: block;
	margin: 1rem auto;
	color: #3E3E3E;
	font-size: 1.25rem;
	font-weight: bold;
}

.show {
	display: inline-block;
}
/* .hide{
	display: none;
} */
#anonimaText {
	display: none;
	color: #3E3E3E;
	font-size: 1.25rem;
	font-weight: bold;
}

.revisionDatos {
	list-style-type: none;
	width: 90%;
	max-width: fit-content;
	height: auto;
	margin: 20px auto 40px;
	display: flex;
	flex-direction: column;
	gap: 15px;
}

	.revisionDatos li {
		text-align: left;
		padding: 0px 0px 0px 30px;
		color: #F28C28;
		font-weight: 300;
	}

		.revisionDatos li span {
			text-align: left;
			color: #3F3F3F;
			font-weight: bold;
		}

.datoUsuario {
	background: url(../media/icons/icon-user.svg);
	background-repeat: no-repeat;
	background-size: 20px;
	background-position: left top;
}

.datoFecha {
	background: url(../media/icons/icon-cake.svg);
	background-repeat: no-repeat;
	background-size: 20px;
	background-position: left top;
}

.datoEmail {
	background: url(../media/icons/icon-mail.svg);
	background-repeat: no-repeat;
	background-size: 20px;
	background-position: left top;
}

.datoPhone {
	background: url(../media/icons/icon-phone.svg);
	background-repeat: no-repeat;
	background-size: 20px;
	background-position: left top;
}
.popFiles{
	width: 100%;
	max-width: 700px;
	min-height: 70vh;
	padding: 2rem 1rem 2rem 2rem;
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	bottom: auto;
	transition: all ease-in-out .35s;
	border-radius: 20px 20px 0 0 ;
	background-color: #FFFFFF;
}
.popFiles.open{
	top: 30vh;
}
.adjuntos{
	width: 100%;
	height: calc(50vh - 4rem);
	padding: 0 1rem 0 0;
	margin: 1rem auto;
	overflow-y: scroll;
}
.adjuntos .file{
	padding: .25rem 2.125rem .25rem 2.125rem;
	margin: 0 auto .5rem;
	display: block;
	position: relative;
	border-bottom: 1px solid #F1EFF1;
}
.adjuntos .file::before, .adjuntos .file .removeFile{
	content: '';
	width: 1.35rem;
	height: 1.35rem;
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 100%;
}
.adjuntos .file::before{
	background-image: url("../media/icons/Icon-adjunto.svg");
}
.adjuntos .file .removeFile{
	background-image: url("../media/icons/trash.svg");
}
.adjuntos .file::before{
	left: 0;
}
.adjuntos .file .removeFile{
	right: 0
}
.adjuntos .file p{
	color: #8A898F;
}
.adjuntos .file span{
    display: inline-block;
	color: inherit;
	font-size: inherit;
	vertical-align: middle;
}
.adjuntos .file span.nombre_doc{
	max-width: 87%;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.agregarArchivos{
    padding: 0 2rem 0 0;
    margin: 1rem 0;
    display: block;
    position: relative;
    color: #868589;
    font-size: 0.875rem;
}
.agregarArchivos::after{
    content: '';
    width: 1.25rem;
    height: 1.25rem;
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    border-radius: 100%;
    background-color: #F59F28;
    background-image: url(../media/icons/plus.svg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 100%;
    overflow: hidden;
}
.notif{
	width: 80%;
	max-width: 300px;
	padding: 1rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: fixed;
	left: 50%;
	bottom: -100%;
	-webkit-transform: translatex(-50%);
	-moz-transform: translatex(-50%);
	-ms-transform: translatex(-50%);
	transform: translatex(-50%);
	transition: all ease-out .75s;
	transition-delay: .25s;
	border-radius: 3px;
	background: #000000;
	opacity: 0;
    z-index: 10000;
}
.notif.visible{
	bottom: 10%;
}
.notif.visible.opacity{
	opacity: 1;
	transition-delay: .25s;
}
.notif p{
	color: #FFFFFF;
	font-size: 1rem;
}
.notif button{
	color: #0089FF;
	font-size: 1rem;
	text-decoration: underline;
}


@-webkit-keyframes zoomIn{
	from{
		opacity: 0;
		-webkit-transform: scale3d(0.3, 0.3, 0.3);
		transform: scale3d(0.3, 0.3, 0.3);
	}
	50%{
		opacity: 1;
	}
}
@keyframes zoomIn{
	from{
		opacity: 0;
		-webkit-transform: scale3d(0.3, 0.3, 0.3);
		transform: scale3d(0.3, 0.3, 0.3);
	}
	50%{
		opacity: 1;
	}
}
.zoomIn{
	-webkit-animation-name: zoomIn;
	animation-name: zoomIn;
}

@media only screen and (min-width:2000px){
	.col-left .lgHonestel{
	    max-width: 400px;
	}
}
@media only screen and (max-width:1024px){
	.hammer{
		max-width: 300px;
	}
	.content-col{
		padding: 0 2rem;
	}
	.content-col::after{
		width: 400px;
		height: 304px;
		top:  80px;
		right: -100px;
	}
}
@media only screen and (max-width:1000px){
	.two-Columns-detail .col-left{
		padding: 2rem 2rem 3rem;
	}
	.two-Columns-detail .col-right{
		padding: 4rem 1rem;
	}
	.stepContent{
		max-width: 80%;
	}
}
@media only screen and (min-width:768px) {
	.logoHonestel {
		margin: -15vh auto 3rem;
	}

	input[type="checkbox"] + label {
		width: 100%;
	}

	.popHelp {
		min-height: 550px;
		max-height: 550px;
		top: 50%;
		left: 50%;
		-webkit-transform: translate(-50%,-50%) scale(0);
		-moz-transform: translate(-50%,-50%) scale(0);
		-ms-transform: translate(-50%,-50%) scale(0);
		transform: translate(-50%,-50%) scale(0);
		border-radius: 20px;
		box-shadow: 0 0 20px rgba(0,0,0,.16);
	}

	.popFiles {
		min-width: 700px;
		max-width: 700px;
		min-height: initial;
		top: 50%;
		left: 50%;
		-webkit-transform: translate(-50%,-50%) scale(0);
		-moz-transform: translate(-50%,-50%) scale(0);
		-ms-transform: translate(-50%,-50%) scale(0);
		transform: translate(-50%,-50%) scale(0);
		border-radius: 20px;
		box-shadow: 0 0 20px rgba(0,0,0,.16);
	}

		.popHelp.open, .popFiles.open {
			top: 50%;
			-webkit-transform: translate(-50%,-50%) scale(1);
			-moz-transform: translate(-50%,-50%) scale(1);
			-ms-transform: translate(-50%,-50%) scale(1);
			transform: translate(-50%,-50%) scale(1);
		}

	.popHelp h4 {
		margin: 0 auto 2rem;
	}

	.mascaraDesk {
		height: 370px;
		padding: 1rem;
		overflow-y: scroll;
	}

	.adjuntos {
		height: calc(35vh - 4rem);
	}

	.tabBody {
		padding: 36px 1rem 0 1rem;
		background-color: transparent;
	}

		.tabBody h6 br {
			display: none;
		}

	.two-Columns, .two-Columns-detail {
		height: 100vh;
	}
}
@media only screen and (max-width:768px){
	.container{
		justify-content: space-between;
	}
	.logoHonestel {
		margin: 20vh auto 3rem;
	}
	.hammer{
		position: relative;
		left: initial;
		bottom: initial;
		margin-bottom: 3rem;
	}
	.two-Columns, .two-Columns-detail {
		/*height: 150%;*/
		display: flex;
		background-color: #06376E;
	}
	.col-left{
		display: none;
	}
	.two-Columns-detail .col-left{
		display: block;
	}
	.two-Columns-detail .col-left{
		padding: 2rem 1rem;
	}
	.two-Columns-detail .col-right{
		padding:  3rem 1rem;
	}
	.registroDenuncia .col-right{
		background-color: #06376E;
		background-image: url(../media/img/backAzul.jpg);
		background-position: center center;
		background-repeat: no-repeat;
		background-size: cover;
	}
	.registroDenuncia .col-right h2{
		color: #FFFFFF;
	}
	.registroDenuncia .col-right #denunciaAnonima + label{
		color: #FFFFFF
	}
	/*.registroDenuncia .col-right .btn{
		background-color: #F59F2B;
	}*/

	.btnActive {
		background-color: #F59F2B !important;
	}
	.col-right{
		width: 100%;
		display: flex;
		flex-direction: column;
		justify-content: flex-start;
		align-items: center;
	}
	.col-right .header{
		width: 100%;
		display: block;
	}
	.logoDesktop{
		display: none;
	}
	.logoMobile{
		display: block;
	}
	.formLogos{
		margin-top: 15vh;
	}
	.stepContent{
	    max-width: 90%;
	}
	.two-Columns-detail .miga{
		margin: 0 0 1rem;
	}
	.folioDenuncia{
		margin: 0 0 1rem;
	}
	.folioDenuncia, .folioDenuncia span{
		font-size: 0.9325rem;
	}
	.TituloDenuncia{
		font-size: 1.5rem;
	}
	.step .headerStep{
		font-size: 1.125rem;
	}
	.step.actual .headerStep{
		font-size: 1.125rem;
	    margin: 0 auto 0.25rem;
	}
	.step.actual .stepDescript{
		font-size: 0.875rem;
		line-height: 1.125rem;
	}
	.two-Columns-detail .datosContacto h6{
		font-size: 1.125rem;
		padding: 0 0 0 3rem;
	    margin: 0 0 1rem 0;
	}
	.listadoDatos{
		padding: 0 0 0 3rem;
	}
	.listadoDatos a{
		font-size: 1rem;
	}
	.avance{
		margin: 0 auto;
	}
	.stepDescript{
		font-size: 0.75rem;
	}

	.opciones {
		margin: 0 auto;
		display: block;
	}
}
@media screen and (min-width: 600px){	
	.registrada p.respuesta{
		padding: 0 4rem;
	}
	.registrada p.respuesta_anonima{
		padding: 0 6rem;
	}
	.bandeja .vacia h4{
		padding: 0 3rem;
	}
}
@media screen and (max-width: 600px){
	.two-Columns, .two-Columns-detail {
		display: grid;
	}
	
	.logoHonestel{
		margin: 15vh auto 3rem;
	}
	.popTooltip{
		max-width: 300px;
		padding: 3rem 1rem;
		display: block;
		text-align: center;
		position: fixed;
		top: 50%;
		left: 50%;
		-webkit-transform: translate(-50%, -50%) scale(0);
		-moz-transform: translate(-50%, -50%) scale(0);
		-ms-transform: translate(-50%, -50%) scale(0);
		transform: translate(-50%, -50%) scale(0);
		transition: all ease-in-out .35s;
		z-index: 1100;
	}
	.popTooltip.open{
		-webkit-transform: translate(-50%, -50%) scale(1);
		-moz-transform: translate(-50%, -50%) scale(1);
		-ms-transform: translate(-50%, -50%) scale(1);
		transform: translate(-50%, -50%) scale(1);
	}
	.closePop{
		display: block;
	}
	.popTooltip::before{
		display: none;
	}
	.boxLogIn .cajaInput:last-of-type.anonima{
		width: 100%;
		margin: 0 0 2rem 0;
	}
	.denunciaForm{
	    padding: 1rem 2rem 3rem;
	}
	.two-Columns-detail{
		/*height: initial;*/
		flex-direction: column;
	}
	.two-Columns-detail .col-left, .two-Columns-detail .col-right{
		width: 100%;
	}
	.two-Columns-detail .col-left{
		padding-bottom: 0;
		background-color: initial;
	}
	.two-Columns-detail .miga{
		margin: 0 0 1rem;
		justify-content: flex-end;
	}
	.two-Columns-detail .col-right{
		padding-top: 1.5rem;
	}
	.two-Columns-detail .col-right .status{
		display: none;
	}
	.avance{
		margin: 0 auto;
	}
	.two-Columns-detail .col-right{
		padding: 1.5rem 0 2rem;
	}
	.datosContacto{
		margin: 0 auto 1rem;
	}
	.formLogos{
		margin-top: 12vh;
	}
	.following{
		height: initial;
		padding: 2rem 1.5rem;
	}
	.following .miga{
		justify-content: flex-end;
	}
	.box{
		margin: 0 auto 3rem;
	}
	.box h3{
		padding: 0 0 0 2.5rem;
		font-size: 1.75rem;
	}
	.box h3::before{
		content: '';
		width: 1.65rem;
		height: 1.65rem;
		position: absolute;
		left: 0;
		top: 50%;
		-webkit-transform: translateY(-50%);
		-moz-transform: translateY(-50%);
		-ms-transform: translateY(-50%);
		transform: translateY(-50%);
		border: 2px solid #EF992A;
		border-radius: 100%;
		background-color: #FFFFFF;
		background-image: url("../media/icons/document.svg");
		background-position: center center;
		background-repeat: no-repeat;
		background-size: 100%;
		overflow: hidden;
	}
	.caseList .caseCard{
		min-height: 110px;
		padding: .5rem 1.125rem;
		margin: 0 auto 1.5rem;
	}
	.caseList .caseCard .caseInfo{
		flex-direction: column;
	}
	.caseList .caseCard .case, .caseList .caseCard .record{
		font-size: 0.9375rem;
	}
	.caseList .caseCard .caseName{
		font-size: 1.375rem;
		line-height: 1.75rem;
		margin: .35rem 0;
	}
	.notificacion.anonima{
		width: 80%;
	}
}
@media only screen and (min-width:414px){
	.pregunta p{
		padding: 0 2rem;
	}
}

@media only screen and (max-width:414px){
	.juramento .wrapper{
		padding: 0 2rem;
	}
	.terminos h4{
		font-size: 1.75rem;
	}
	.notificacion{
		width: 65%;
		line-height: 1.75rem;
	}
	.notificacion.anonima{
		width: 70%;
	}
	.registrada{
		padding: 7rem 1rem;
	}
	.btn_honestel{
		right: 2rem;
		bottom: 3rem;
	}
	.denunciaForm .miga{
		display: none;
	}
	.formulario h3{
		padding-top: 1rem;
		font-size: 1.25rem;
		line-height: 1.75rem;
	}
	.evidencias{
		/*justify-content: flex-end;*/
	}
	/*input[type="file"] + label{
		width: 2rem;
		height: 2rem;
		margin: 0;
		padding: 0;
		border: none;
		border-radius: initial;
		background-image: url("../media/icons/clip.svg");
		background-position: center center;
		background-repeat: no-repeat;
		background-size: 80%;
	}
	input[type="file"] + label span{
		display: none;
	}*/
	.pregunta p{
		max-width: 90%;
		margin: 0 auto;
	}
	.hammer{
		max-width: 250px;
	}
	.denunciaForm{
		padding: 1rem 1.5rem 3rem;
	}
	.cajaInput{
		margin: 0 auto 1.5rem;
	}
	.denuncia .cajaInput{
		margin: 0 auto .5rem;
	}
	.formulario .labForm{
		font-size: 1rem;
	}
	.textarea{
		padding: .5rem .5rem;
	}
	.evidencias{
		max-width: initial;
		margin: 0 auto 1.5rem;
	    flex-direction: row-reverse;
	}
	/*.adjuntos{
		width: calc(100% - 1rem);
		margin: 0 1rem  0 auto;
		text-align: right;
	}
	.adjuntos .file{
	    max-width: 165px;
		display: inline-block;
	    margin-left: 5%;
		margin-right: 0;
	}
	.adjuntos .file span.nombre_doc{
		max-width: 75%;
	}*/
	.involucrados{
		margin: 0 auto;
	}
	.listadoInvolucrados {
		margin: 0 auto 0;
	}
	.pregunta{
		margin: 4rem auto 3rem;
	}
	.two-Columns-detail .miga{
	    margin: 0 0 0.5rem;
	}
	.two-Columns-detail .col-left{
	    padding-left: 1.5rem;
		padding-right: 1.5rem;
	}
	.descripcionDenuncia{
		margin: 0 auto 2.5rem;
	}
	.popHelp h4{
		margin: 3rem auto;
	}
	.empty p{
		max-width: 310px;
		text-align: left;
	}
	.step{
	    margin: 0 auto 1rem;
	}
	.step .stepContent .marker::after{
	    height: 9px;
		bottom: -18px;
	    border-left: 6px dotted #F1EFF1;
	}
	.popCheck{
		min-width: 320px;
	}
	.popCheck p{
		font-size: 1rem;
		line-height: 1.75rem;
	}

}

@media only screen and (max-width:395px){
	.notificacion{
	    width: 80%;
	}
	.notificacion.anonima{
	    width: 72%;
	}
}
@media only screen and (max-width:375px){
	.terminos{
		padding: 3rem 1rem 1rem;
	}
	.terminos h4{
		font-size: 1.5rem;
	}
	.terminos p{
	    padding: 0 1rem;
	}
	.logoHonestel {
		max-width: 250px;
		margin: 10vh auto 2rem;
	}
	.hammer{
		max-width: 200px;
		margin-bottom: 1rem;
	}
	.formLogos{
		margin-top: 10vh;
	}
	.registroDenuncia h2{
		font-size: 1.125rem;
	}
	#denunciaAnonima + label{
		font-size: 1rem;
	}
	/*.adjuntos .file{
	    max-width: 125px;
	}*/
	.notificacion{
		width: 70%;
	}
	.notificacion.anonima{
		width: 78%;
	}
	.registrada p{
		font-size: 1rem;
	}
	input[type="file"] + label{
	    max-width: 156px;
	}
}
@media only screen and (max-width:375px) and (min-height:650px){
	
	.logoHonestel {
		margin: 18vh auto 3rem;
	}
	.formLogos{
		margin-top: 15vh;
	}
	.two-Columns.registroDenuncia .formLogos{
		margin-top: 8vh;
	}
	.registrada {
		padding: 5rem 1rem;
	}
}
@media only screen and (max-width:375px) and (max-height:690px){
	.two-Columns.registroDenuncia{
		height: 100vh;
	}
	.two-Columns{
	    height: auto;
	}
	.cajaInput{
		margin: 0 auto 1rem;
	}
	.registroDenuncia .col-right .btn{
		margin: 0 auto 3rem;
	}
	.popHelp h4{
		margin: 1rem auto 2rem;
	}
	.empty{
	    padding: 2rem 0 0 0;	
	}
}
@media only screen and (max-width:360px){
	.primerAcercamiento{
		font-size: 1.35rem;
	}
	.btn.principal{
		max-width: 250px;
		min-width: 250px;
	}
	.pregunta p {
		padding: 0;
	}
	.terminos p{
	    padding: 0 .5rem;
	}
	.radios input[type="radio"] + label{
		width: 45px;
		height: 45px;
	}
	.evidencias p{
		margin: 0 1rem 0 0;
	}
	.denunciaForm{
		padding: 1rem 1rem 3rem;
	}
	.listadoDatos a{
		font-size: 1rem;
	}
	.help{
		margin-left: 1rem;	
	}
	.popHelp{
		padding: 2rem 1rem;
	}
	.tabheader{
		font-size: 1rem;
	}
	.notificacion.anonima{
		width: 80%;
	}
	.adjuntos .file span.nombre_doc{
		max-width: 86%;
	}
}
@media only screen and (max-width:320px){
	.logoHonestel {
		margin: 10vh auto 2rem;
	}
	.terminos h4{
		margin: 1rem auto 1rem;
	}
	.terminos p{
		padding: 0 1.5rem;
	}
	.logo_honestel_full{
		margin: 16rem auto 0;
	}
	.radios input[type="radio"] + label{
		margin: 0 2%;
	}
	input[type="file"] + label{
		max-width: 140px;
	    padding: 0.25rem 0.5rem;
	}
	input[type="file"] + label span, .evidencias p{
		font-size: .8125rem;
	}
	.pregunta p{
		max-width: initial;
		font-size: 1rem;
	}
	.registrada{
		padding: 4.5rem 1rem 2rem;
	}
	.registrada p{
		font-size: .875rem;
	}
	.registrada p.respuesta{
		padding: 0;
	}
	.registrada .folio p, .registrada p.gracias{
		font-size: 1rem;
	}
	.two-Columns-detail .col-left{
		padding-left: 1rem;
		padding-right: 1rem;
	}
	.custom-select{
		width: 240px;
	}
	.tabheader{
		font-size: 0.875rem;
	}
	.following {
		padding: 2rem 1rem;
	}
	.empty p{
		max-width: 300px;
		font-size: 0.9375rem;
	}
	.caseList .caseCard .caseName{
		font-size: 1.125rem;
		line-height: 1.5rem;
		margin: 0.125rem 0;
	}	
	.popCheck{
		min-width: 300px;
		padding: 4rem 1rem;
	}
	.notificacion.anonima{
		width: 90%;
	}
	.adjuntos .file span.nombre_doc{
		max-width: 82%;
	}
}

.list {
	display: flex !important;
}

.fotoCandidato {
	width: 2.5rem;
	min-width: 2.5rem;
	height: 2.5rem;
	margin: 0 1rem 0 0;
	border-width: 2px;
	border-style: solid;
	border-radius: 100%;
	border-color: transparent;
	background-color: #F59F04;
	background-image: url("../media/img/icons/user.svg");
	background-position: center center;
	background-size: 100%;
	overflow: hidden;
}

.candidato.disabled .fotoCandidato {
	border-color: rgba(232,201,99,1);
}

.nombreCandidato {
	font-size: 0.875rem;
	font-weight: 600;
}

.ui-autocomplete li .puestoCandidato {
	font-size: 0.8875rem;
	font-weight: 500;
}
/*Diseño swal*/
.swal2-styled.swal2-confirm {
	background-color: #F59F04 !important;
}

.swal2-title {
	color: #144683!important;
}

.ui-autocomplete {
	background: #fff;
	list-style: none;
	max-width: 600px !important;
	max-height: 295px;
	overflow-y: scroll;
	-webkit-box-shadow: 3px 3px 10px 0px rgba(0,0,0,0.2);
	-moz-box-shadow: 3px 3px 10px 0px rgba(0,0,0,0.2);
	box-shadow: 3px 3px 10px 0px rgba(0,0,0,0.2);
	position: relative;
}

.ui-helper-hidden-accessible {
	display: none;
}

.ui-autocomplete li {
	font-size: 16px;
	padding: 8px 10px;
	cursor: pointer;
	color: black !important;
	font-family: ProximaNova;
}

	.ui-autocomplete li:last-child {
		border: none;
	}

	.ui-autocomplete li:hover {
		color: #FFFFFF !important;
		font-family: ProximaNovaSemibold;
		background: #073072;
	}

.swal2-icon {
	border-color: white !important;
}

#mensaje_ayuda {
	color: red;
	font-size: 12px;
	padding-left: 10px;
}