@keyframes fadein {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

.form-inputs-box {
	width: 100%;
	padding: 20px 15px 15px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.form-input-container {
	width: 100%;
	position: relative;
}

.form-input-container:not(:last-child) {
	margin-bottom: 15px;
}

.form-input-container input,
select,
textarea {
	width: 100%;
	margin-bottom: 3px;
	padding: 15px 0px 3px 14px;
	background-color: #ffffff;
	border-width: 1px;
	border-style: solid;
	border-color: #7c7c7c;
	border-radius: 2px;
	font-size: 1em;
	transition: border-color ease 0.2s;
	font-family: "sfui Light", -apple-system, BlinkMacSystemFont, "Segoe UI",
		Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", Arial,
		sans-serif;
}

.form-input-container input:focus,
select:focus {
	outline: none;
}

.form-input-container label {
	width: auto;
	color: #000000;
	pointer-events: none;
	font-size: 0.9em;
	position: absolute;
	top: 9px;
	left: 15px;
	transition: all ease 0.2s;
	font-family: "sfui Light", -apple-system, BlinkMacSystemFont, "Segoe UI",
		Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", Arial,
		sans-serif;
}

.form-input-container label.on-focus {
	font-size: 0.55em;
	top: 3px;
}

#content-saldo {
	position: fixed;
	top: 90px;
	right: 0px;
	padding: 10px;
	background-color: #ff4f77;
	border-radius: 10px 0px 0px 10px;
}
#content-saldo > p span {
	color: #ffffff;
	letter-spacing: 1px;
}
#content-saldo > p span:first-child {
	font-size: 20px;
	font-family: "sfui Heavy";
	margin-right: 5px;
}
#content-saldo > p span:last-child {
	font-family: "sfui Semibold";
	font-size: 20px;
}

#pregunta-container {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
#pregunta-container .tox-tinymce {
	border-radius: 10px;
	box-shadow: 0 8px 17px 2px rgba(0, 0, 0, 0.14),
		0 3px 14px 2px rgba(0, 0, 0, 0.12), 0 5px 5px -3px rgba(0, 0, 0, 0.2);
}
#pregunta-container > div {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
#pregunta-container > div > div {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
#pregunta-container > div > div textarea {
	width: 100%;
	height: 100px;
	border-radius: 4px;
	resize: none;
}
#pregunta-container > div > div a {
	color: #ffffff;
	border-radius: 10px;
	background-color: #ff4f77;
	padding: 4px 15px;
	margin: 30px 0px;
	box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14),
		0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 2px 4px -1px rgba(0, 0, 0, 0.3);
}
#pregunta-container > div > div a:hover {
	box-shadow: 0 8px 17px 2px rgba(0, 0, 0, 0.14),
		0 3px 14px 2px rgba(0, 0, 0, 0.12), 0 5px 5px -3px rgba(0, 0, 0, 0.2);
}
@media screen and (min-width: 992px) {
	#pregunta-container > div {
		width: 100%;
	}
}

.popup {
	width: 100vw;
	height: 100vh;
	background-color: rgba(0, 0, 0, 0.8);
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	position: fixed;
	z-index: 101;
	top: 0;
	left: 0;
}

#popup-pregunta {
	display: none;
}
#popup-pregunta.active {
	display: flex;
}
#popup-pregunta .cortina-popup {
	display: none;
}
#popup-pregunta .cortina-popup.active {
	width: 100%;
	height: 100%;
	display: flex;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 101;
}
#popup-pregunta .popup-content {
	background-color: #ffff;
	color: #4d4d4d;
	width: 1000px;
	height: auto;
	border-radius: 10px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	z-index: 1000;
	position: absolute;
}
#popup-pregunta .popup-content .btn-cerrar-popup-container {
	width: 100%;
	text-align: end;
	font-size: 30px;
	padding: 15px;
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
	align-items: center;
}
#popup-pregunta .popup-content .btn-cerrar-popup {
	width: 38px;
	height: 38px;
	color: #767676;
	cursor: pointer;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all ease 0.2s;
}
#popup-pregunta .popup-content .btn-cerrar-popup:hover {
	transform: rotateZ(180deg);
}
#popup-pregunta .popup-content .btn-cerrar-popup:hover svg path {
	fill: #000;
}
#popup-pregunta .popup-content #form-contactenos {
	width: 100%;
	padding: 0 20px 20px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	color: #4e4e4e;
}
#popup-pregunta .popup-content #form-contactenos #pregunta-container {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
#popup-pregunta .popup-content #form-contactenos #pregunta-container > div {
	width: 90%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
#popup-pregunta .popup-content #form-contactenos #pregunta-container > div h3 {
	color: #000000;
	font-size: 30px;
	letter-spacing: 1.5px;
	padding: 10px 0px;
}
#popup-pregunta
	.popup-content
	#form-contactenos
	#pregunta-container
	> div
	textarea {
	width: 90%;
	height: 200px;
	border-radius: 4px;
	resize: none;
}
#popup-pregunta .popup-content #form-contactenos #pregunta-container > div a {
	color: #ffffff;
	border-radius: 10px;
	background-color: #ff4f77;
	padding: 4px 15px;
	margin: 30px 0px;
	box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14),
		0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 2px 4px -1px rgba(0, 0, 0, 0.3);
}
#popup-pregunta
	.popup-content
	#form-contactenos
	#pregunta-container
	> div
	a:hover {
	box-shadow: 0 8px 17px 2px rgba(0, 0, 0, 0.14),
		0 3px 14px 2px rgba(0, 0, 0, 0.12), 0 5px 5px -3px rgba(0, 0, 0, 0.2);
}

#s-asesor {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
#s-asesor .c-asesor {
	width: 90%;
	min-height: 400px;
	padding: 40px;
	margin: 20px 0px;
	border-radius: 4px;
	box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14),
		0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 2px 4px -1px rgba(0, 0, 0, 0.3);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	align-items: center;
	background-image: url(/src/img/commons/fondo-morado-1.png);
	background-repeat: no-repeat;
	background-size: cover;
}
#s-asesor .c-asesor div {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}
#s-asesor .c-asesor div:first-child {
	width: 30%;
	flex-direction: row;
}
#s-asesor .c-asesor div:first-child img {
	width: 50%;
	border-radius: 50%;
	box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14),
		0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 2px 4px -1px rgba(0, 0, 0, 0.3);
	margin-bottom: 10px;
}
#s-asesor .c-asesor div:last-child {
	width: 100%;
	flex-direction: column;
	color: #ffffff;
}
#s-asesor .c-asesor div:last-child h3 {
	width: 100%;
	font-size: 30px;
	margin-bottom: 20px;
	text-align: center;
}
#s-asesor .c-asesor div:last-child p {
	font-size: 18px;
	letter-spacing: 1px;
	text-align: justify;
}
#s-asesor .c-asesor div:last-child a {
	color: #ffffff;
	border-radius: 10px;
	background-color: #ff4f77;
	padding: 4px 15px;
	margin: 20px 0px;
	box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14),
		0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 2px 4px -1px rgba(0, 0, 0, 0.3);
}

.message-date {
	width: 98%;
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
	align-items: center;
}

#contentt-img {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
#contentt-img > div {
	width: 200px;
	height: 200px;
	margin-bottom: 20px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	position: relative;
}
#contentt-img > div > img {
	width: 100%;
	overflow: hidden;
	border-radius: 50%;
	-webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14),
		0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
	box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14),
		0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
	display: inline-block;
	padding: 2px;
	background: #f7f7f7;
	border: 1px solid #e6e6e6;
}

#btn-img-to-edit {
	width: 100%;
	height: 100%;
	color: #a6a6a6;
	font-family: "sf-ui Bold";
	font-size: 18px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: revert;
	flex-direction: revert;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	border-radius: 50%;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background-color: rgba(0, 0, 0, 0.5);
	position: absolute;
	top: 0px;
	left: 0px;
	-webkit-transition: all ease 0.2s;
	-o-transition: all ease 0.2s;
	transition: all ease 0.2s;
}
#btn-img-to-edit:hover {
	color: #ffffff;
	background-color: rgba(0, 0, 0, 0.6);
}

section#s-users {
	width: 100%;
	height: auto;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	position: relative;
}
section#s-users #titlef-t {
	width: 100%;
	text-align: center;
	margin-top: 20px;
}
section#s-users .form-inputs-box {
	flex-direction: row;
	flex-wrap: wrap;
}
section#s-users .form-input-container:not(:last-child) {
	width: 95%;
	margin: 10px;
}
section#s-users #container-content-users {
	width: 100%;
	height: auto;
	padding: 10px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background-color: #f3f3f3;
}
section#s-users #container-content-users #info-u {
	width: 98%;
	margin: 30px 0px;
	box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14),
		0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
	border-radius: 10px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background-color: #fff;
}
section#s-users #container-content-users #info-u #form-user-desc {
	width: 100%;
	background-image: linear-gradient(
		to right bottom,
		#00e5b5,
		#00e5c0,
		#00e5ca,
		#00e5d3,
		#00e5db,
		#00d4db,
		#00c3d7,
		#00b2cf,
		#178db3,
		#286992,
		#2b486d,
		#252947
	);
	border-radius: 4px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
section#s-users #container-content-users #info-u #form-user-desc > form {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
section#s-users #container-content-users #info-u #form-user-desc > form h2 {
	margin-bottom: 30px;
	color: #ffffff;
}
section#s-users #container-content-users #info-u #form-user-desc > a {
	padding: 5px 10px;
	color: #252947;
	background-color: #00e5e5;
	border-radius: 20px;
	box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14),
		0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 2px 4px -1px rgba(0, 0, 0, 0.3);
	text-decoration: none;
	margin-bottom: 20px;
}
#btn-enviar-trabajo {
	padding: 5px 10px;
	color: #252947;
	background-color: #00e5e5;
	border-radius: 20px;
	box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14),
		0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 2px 4px -1px rgba(0, 0, 0, 0.3);
	text-decoration: none;
	margin-bottom: 20px;
	border: none;
	cursor: pointer;
}
@media screen and (min-width: 992px) {
	section#s-users #container-content-users {
		width: 80%;
		padding: 30px 40px;
	}
	section#s-users #container-content-users #info-u {
		width: 50%;
	}
}
section#s-users #container-content-users #info-m {
	width: 70%;
	height: 80vh;
	overflow: auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background-image: linear-gradient(
		to right,
		#dd4390,
		#d3329c,
		#c324aa,
		#ad1fb9,
		#8d25ca
	);
	box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14),
		0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
	border-radius: 10px;
	position: relative;
}
section#s-users #container-content-users #info-m::-webkit-scrollbar-thumb {
	background-color: #dd4390;
}
section#s-users #container-content-users #info-m > div {
	width: 100%;
	padding: 30px;
	position: absolute;
	top: 0px;
	left: 0px;
}
section#s-users #container-content-users #info-m > div > h2 {
	color: #ffffff;
	text-align: center;
	margin-bottom: 20px;
	font-weight: bold;
	letter-spacing: 1px;
}
section#s-users #container-content-users #info-m > div .card-chat {
	padding: 20px;
	background-color: #fff;
	box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14),
		0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
	border-radius: 10px;
	margin-bottom: 20px;
	position: relative;
}
section#s-users #container-content-users #info-m > div .card-chat #gender {
	position: absolute;
	top: 15px;
	right: 5px;
}
section#s-users #container-content-users #info-m > div .card-chat #signo {
	position: absolute;
	top: 15px;
	right: 60px;
}
section#s-users #container-content-users #info-m > div .card-chat h4 {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
}
section#s-users #container-content-users #info-m > div .card-chat h4 > span {
	font-size: 20px;
	color: #ff4f77;
}
section#s-users #container-content-users #info-m > div .card-chat p {
	color: #000;
	letter-spacing: 1px;
	font-size: 16px;
	padding-top: 10px;
	font-family: "sfui light", -apple-system, BlinkMacSystemFont, "Segoe UI",
		Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", Arial,
		sans-serif;
	margin-bottom: 10px;
	margin-left: 10px;
}
section#s-users
	#container-content-users
	#info-m
	> div
	.card-chat
	.content-resp {
	margin-left: 40px;
}
section#s-users
	#container-content-users
	#info-m
	> div
	.card-chat
	.content-resp
	#btn-enviar-respuesta {
	width: 98%;
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
	align-items: center;
}
section#s-users
	#container-content-users
	#info-m
	> div
	.card-chat
	.content-resp
	#btn-enviar-respuesta
	> a {
	letter-spacing: 1px;
	color: #ffffff;
	background-color: #ff4f77;
	border-radius: 30px;
	padding: 5px 15px;
	margin: 20px 0px;
	font-size: 15px;
	font-weight: bold;
	text-decoration: none;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	transition: ease all 0.3s;
	box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14),
		0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 2px 4px -1px rgba(0, 0, 0, 0.3);
}
