:root {
	--header-color: white;
	--header-shadow: 0px 10px 10px rgba(0, 0, 0, 0.1);
	--header-item-hover: rgba(0, 0, 0, 0.3);
	--menu-color: white;
	--menu-shadow: 0px 10px 10px rgba(0, 0, 0, 0.1);
	--form-color: #ffffff;
	--text-color-secundary: rgb(66, 66, 66);
	--main-color1: rgb(193, 102, 102);
	--main-color2: #000066;
	--sidebar-bckg: rgb(193, 102, 102);
	--sidebar-wdt: 250px;
	--sidebar-hover-item-bckg: rgb(214, 179, 63);
	--sidebar-hover-item-color: rgb(0, 0, 0);
	--sidebar-hover-item-selected-bckg: rgb(255, 255, 255);
	--sidebar-hover-item-selected-color: rgb(0, 0, 0);
	--sidebar-toggle-top: 0px;
	--field-outline: 2px solid rgb(0, 142, 207);
	--field-shdow: 0px 0px 20px rgba(0, 105, 153, 0.5);
	--loader-color: rgb(83, 83, 83);
	--container-color: #ffffff;
	--modal-bckg: rgba(0, 0, 0, 0.3);
	--chat-bkg-image: rgb(11, 122, 111);
	--chat-bkg-color: rgb(11, 122, 111);
	--chat-activo-size: 600px;
	--chat-inactivo-size: 120px;
	--table-tr: white;
	--table-tr-color: rgb(0, 0, 0);
	--table-tr-even: rgb(255, 218, 218);
	--table-tr-even-color: rgb(138, 138, 138);
	--table-button-bck: rgb(193, 102, 102);
	--table-button-color: rgb(0, 0, 0);
	--paginas-button-bck: white;
	--paginas-button-color: black;
}
@font-face {
	font-family: 'noto-sans';
	src: url('Noto_Sans/NotoSans-Regular.ttf');
	font-display: swap;
}
* {
	margin: 0;
	padding: 0;
	font-family: 'noto-sans', sans-serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
}
/* latin-ext */

/* latin */
@font-face {
	font-family: 'Work Sans';
	font-style: normal;
	src: url(../fonts/QGYsz_wNahGAdqQ43Rh_fKDp.woff2) format('woff2');
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
		U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191,
		U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
	font-display: swap;
}
body {
	max-width: 2560px;
	margin: auto;
}
.body {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	text-align: center;
	gap: 15px;
	padding-top: 50px;
	padding-bottom: 50px;
}
.body h2 {
	font-size: 36px;
	font-weight: 600;
	text-transform: uppercase;
	margin-bottom: 15px;
}
.body h3 {
	font-family: 'Work Sans', sans-serif;
	font-size: 18px;
	font-weight: 400;
	margin-bottom: 15px;
	color: #777;
}
p.body {
	width: calc(100% - 40px);
	text-align: justify;
	line-height: 30px;
	padding: 20px;
}
.main-gradient {
	background: linear-gradient(
		180deg,
		rgba(228, 228, 228, 1) 0%,
		rgba(208, 229, 255, 1) 100%
	);
}
.hidden {
	display: none;
}
.absolute-top {
	position: absolute;
	top: 0;
	z-index: 1;
}
.focus1:focus {
	outline: unset;
	background-color: #ebebeb;
	border-radius: 5px;
}
.lightgray {
	background-color: #ebebeb;
}
.no-shadow {
	box-shadow: none !important;
}
.shadow-1 {
	box-shadow: 0px 10px 10px 10px rgba(0, 0, 0, 0.3) !important;
}
.shadow-2 {
	box-shadow: 0px 10px 10px 5px rgba(0, 0, 0, 0.2) !important;
}
.shadow-3 {
	box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.2) !important;
}
button:disabled {
	/* background-color: rgb(175, 175, 175) !important; */
	background-color: var(--table-button-bck) !important;
}
.borde-1 {
	border: 1px solid rgb(105, 105, 105) !important;
}
.borde-2 {
	border: 7px double rgb(0, 0, 0) !important;
}
.borde-3 {
	border: 5px dotted rgb(105, 105, 105) !important;
}
.borde-item-left {
	border-top-right-radius: 0 !important;
	border-bottom-right-radius: 0 !important;
}
.borde-item-right {
	border-top-left-radius: 0 !important;
	border-bottom-left-radius: 0 !important;
}
.radius5 {
	border-radius: 5px;
}
.pd5 {
	padding: 5px;
}
.pd10 {
	padding: 10px;
}
.pd15 {
	padding: 15px;
}
.pd20 {
	padding: 20px;
}
.pd-tp5 {
	padding-top: 5px;
}
.pd-bt5 {
	padding-bottom: 5px;
}
.mg-auto {
	margin-left: auto;
	margin-right: auto;
}
.mg-l-auto {
	margin-left: auto !important;
}
.mg-r-auto {
	margin-right: auto !important;
}
.mg-l-15 {
	margin-left: 15px;
}
.mg-l-0 {
	margin-left: 0 !important;
}
.mg-l-5 {
	margin-left: 5px !important;
}
.mg-r-0 {
	margin-right: 0 !important;
}

.mg-tp5 {
	margin-top: 5px;
}
.mg-tp10 {
	margin-top: 10px;
}
.mg-tp15 {
	margin-top: 15px;
}
.mg-tp20 {
	margin-top: 20px;
}
.mg-tp50 {
	margin-top: 50px;
}
.mg--tp15 {
	margin-top: -15px;
}
.mg-bt5 {
	margin-bottom: 5px;
}
.mg-bt10 {
	margin-bottom: 10px;
}
.mg-bt15 {
	margin-bottom: 15px;
}
.mg-bt20 {
	margin-bottom: 20px;
}
.mg-bt50 {
	margin-bottom: 50px;
}
.gap1 {
	gap: 1px !important;
}
.gap2 {
	gap: 2px !important;
}
.gap3 {
	gap: 3px !important;
}
.gap4 {
	gap: 4px !important;
}
.gap5 {
	gap: 5px !important;
}
.brd1 {
	border: 1px solid darkgray;
}
.brd0 {
	border: none;
}
.txt-size5 {
	font-size: 5px !important;
}
.txt-size10 {
	font-size: 10px !important;
}
.txt-size15 {
	font-size: 15px !important;
}
.txt-size20 {
	font-size: 20px !important;
}
.txt-size25 {
	font-size: 25px !important;
}
.txt-size35 {
	font-size: 35px !important;
}
.txt-size45 {
	font-size: 45px !important;
}
.bck-white {
	background-color: white !important;
}
.txt-color-lightgray {
	color: var(--text-color-secundary);
}
.wdt100 {
	width: 100% !important;
}
.wdt90 {
	width: 90% !important;
}
.wdt80 {
	width: 80% !important;
}
.wdt50 {
	width: 50% !important;
}
.wdt45 {
	width: 45% !important;
}
.wdt40 {
	width: 40% !important;
}
.container .hg-100 {
	min-height: calc(100vh - 40px);
	min-height: calc(100svh - 40px);
}
.container .hg-80 {
	min-height: calc(80vh - 40px);
	min-height: calc(80svh - 40px);
}
.txtcenter {
	text-align: center;
}
.titulo {
}
.nogap {
	gap: 0 !important;
}
.nopad {
	padding: 0 !important;
}
.mx-wdt1200 {
	max-width: 1200px !important;
}
.mx-wdt100 {
	max-width: 100% !important;
}
.mx-wdt90 {
	max-width: 90% !important;
}
.mx-wdt30 {
	max-width: 30% !important;
}
.mx-wdt20 {
	max-width: 30% !important;
}
.min-wdt200 {
	min-width: 200px !important;
}
.min-wdt70 {
	min-width: 70% !important;
}
.mx-hgt100 {
	max-height: 100% !important;
}
.mx-hgt300 {
	max-height: 300px !important;
}
.hgt100 {
	height: 100% !important;
}
.min-hgt50s {
	min-height: 50vh !important;
	min-height: 50svh !important;
}
.stick-right {
	position: sticky;
	right: 0;
	background-color: inherit;
}
.stick-left {
	position: sticky;
	left: 0;
	background-color: inherit;
}
.stick-top {
	position: sticky;
	top: 0;
	background-color: inherit;
}
.stick-bottom {
	position: sticky;
	bottom: 0;
	background-color: inherit;
}
.icono-1 {
	width: 25px;
}
.icono-2 {
	width: 35px;
}
.icono-3 {
	width: 55px;
}
.absolute {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
}
.overflow-hide {
	overflow: hidden;
}
.overflow-auto {
	overflow: auto !important;
}
.flow-auto {
	overflow: auto;
}
.row {
	display: flex;
	gap: 15px;
}
.wrap {
	flex-wrap: wrap;
}
.column {
	display: flex;
	flex-direction: column;
	gap: 15px;
}
.center-flex {
	justify-content: center;
	align-items: center;
}
.left-flex {
	justify-content: flex-start;
}
.center-top-flex {
	justify-content: center;
	align-items: flex-start;
}
.left-center-flex {
	justify-content: flex-start;
	align-items: center;
}
.right-center-flex {
	justify-content: flex-end;
	align-items: center;
}
.center-right-flex {
	justify-content: center;
	align-items: flex-start;
}
.left-top-flex {
	justify-content: flex-start;
	align-items: flex-start;
}
.spread-flex {
	justify-content: space-between !important;
}
.btn {
	padding: 5px;
	cursor: pointer;
	border: none;
	border-radius: 5px;
	width: calc(100% - 14px);
	box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.2);
	font-size: 12px;
	font-weight: 600;
}
.btn-confirm {
	padding: 12px;
	cursor: pointer;
	border: none;
	border-radius: 25px;
	box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.3);
	font-size: 18px;
	font-weight: 600;
	margin: 5px;
	background-color: #00aeff;
	color: black;
}
.btn-cancel {
	padding: 12px;
	cursor: pointer;
	border: none;
	border-radius: 25px;
	box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.3);
	font-size: 18px;
	font-weight: 600;
	margin: 5px;
	background-color: #ff3e3e;
	color: white;
}
button.btn {
	padding: 8px;
	cursor: pointer;
	/* border: none; */
	border-radius: 5px;
	width: 100%;
	box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.3);
	font-size: 18px;
	font-weight: 600;
}
button.danger {
	color: white;
	background-color: rgb(170, 32, 32);
}
.nobreak {
	white-space: nowrap;
}
.mxbtwdt100 {
	max-width: 100px;
}
.btn:active {
	box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.5);
}
.field-button {
}
.field-context {
	gap: 0px;
}
/* .field-context:hover {
	transform: scale(1.3);
	background-color: white;
	border-radius: 10px;
	box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
	padding: 10px;
	margin: -10px;
	transition: all 0.1s ease-in-out;
} */
.center {
	margin: auto;
}
.container {
	min-height: calc(100vh - 40px);
	min-height: calc(100svh - 40px);
	max-width: 100%;
	padding: 20px 0 20px 0;
	display: flex;
	justify-content: center;
	align-items: flex-start;
	flex-wrap: wrap;
	gap: 15px;
	background-color: var(--container-color);
}
.panel {
	min-height: 100vh;
	min-height: 100svh;
	display: flex;
	justify-content: center;
	align-items: flex-start;
	overflow: hidden;
}
.panel .sidepanel {
	min-width: var(--sidebar-wdt);
	max-width: var(--sidebar-wdt);
	height: 100vh;
	height: 100svh;
	background-color: var(--sidebar-bckg);
	transition: all 0.3s ease-in-out;
	box-shadow: 5px 0px 10px rgba(0, 0, 0, 0.3);
	z-index: 10;
}

.panel .sidepanel .usuario {
	width: 100%;
	height: 100px;
	background-color: var(--sidebar-bckg);
}
.panel .sidepanel .usuario .foto-perfil {
	min-width: 100px;
	max-width: 100px;
	min-height: 100px;
	max-height: 100px;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	color: white;
}
.panel .sidepanel .usuario .nombre {
	width: 90%;
	display: flex;
	padding-top: 5px;
	padding-bottom: 5px;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	text-align: center;
	background-color: white;
	border-radius: 5px;
}
.panel .sidepanel .items {
	width: calc(100% - 20px);
	height: calc(100vh - 100px);
	height: calc(100svh - 100px);
	overflow: auto;
	padding-left: 10px;
	padding-right: 10px;
	gap: 5px;
}
.panel .sidepanel .items .item {
	width: 100%;
	padding-top: 10px;
	padding-bottom: 10px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	cursor: pointer;
	border-radius: 0px;
	margin-left: auto;
	margin-right: auto;
	color: white;
	border-radius: 10px;
	font-size: 14px;
	transition: all 0.1s linear;
}
.panel .sidepanel .items .item:hover {
	color: var(--sidebar-hover-item-color);
	background-color: var(--sidebar-hover-item-bckg);
}
.panel .sidepanel .items .item.cerrar-sesion {
	color: white;
	background-color: black;
}
.panel .sidepanel .items .item.cerrar-sesion:hover {
	color: black !important;
	background-color: white !important;
}
.panel .sidepanel .items .item.selected {
	color: var(--sidebar-hover-item-selected-color);
	background-color: var(--sidebar-hover-item-selected-bckg);
}
.panel .sidepanel .items .item.selected:hover {
	color: var(--sidebar-hover-item-color);
	background-color: var(--sidebar-hover-item-bckg);
}
.panel .sidepanel .items .item .icono {
	height: 35px;
	margin-left: 15px;
	margin-right: 15px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.panel .sidepanel .items .item:hover .icono {
	filter: invert(100%);
}
.panel .sidepanel .items .item.cerrar-sesion .icono {
	/* filter: invert(100%); */
}
.panel .sidepanel .items .item.cerrar-sesion:hover .icono {
	filter: invert(0%);
}
.panel .mainpanel {
	width: 100%;
	transition: all 0.3s ease-in-out;
	height: 100vh;
	height: 100svh;
	overflow: auto;
}
.panel .mainpanel .header {
	width: 100%;
	height: 70px;
	background-color: #e6e7e8;
	display: flex;
	justify-content: center;
	align-items: center;
}
.header-1 {
	width: 100%;
	height: 70px;
	background-color: #ffffff;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.2);
}
.panel .mainpanel .header img {
	height: 90%;
}
.panel .mainpanel .header .items {
	width: calc(100% - 30px);
	height: 100%;
	padding-left: 15px;
	padding-right: 15px;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
}
.panel .mainpanel .header .items .item {
	width: 100px;
}
.panel .mainpanel .content {
	width: calc(100% - 40px);
	/* height: calc(100vh - 70px); */
	padding: 0 20px 0 20px;
	background-color: var(--container-color);
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-direction: column;
	color: gray;
	overflow: auto;
}
form {
	background-color: var(--form-color);
}
.formulario {
	background-color: var(--form-color);
	box-shadow: 0px 0px 30px 10px rgba(0, 0, 0, 0.3);
	padding: 50px 20px 50px 20px;
	border-radius: 10px;
	position: relative;
	overflow: hidden;
	min-width: 300px;
	width: calc(100% - 40px);
	max-width: 400px;
}
.formulario .line {
	width: 100%;
	height: 2px;
	background-color: rgb(141, 141, 141);
	border-radius: 5px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.line-titulo {
	width: 90%;
	height: 2px;
	margin-top: 40px;
	margin-bottom: 40px;
	background-color: rgb(141, 141, 141);
	border-radius: 5px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.line-titulo p {
	background-color: white;
	padding: 3px;
	border-radius: 5px;
	font-size: 20px;
}
.formulario .line p {
	background-color: var(--form-color);
	padding: 3px;
	border-radius: 5px;
}
.form-fields {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	gap: 15px;
	min-width: 300px;
}
.form-field-checkbox {
	height: 100%;
	width: 100%;
	cursor: pointer;
}
input.form-field {
	padding: 5px;
	border-radius: 5px;
	border: 1px solid darkgray;
	font-size: 20px;
	width: calc(100% - 12px);
	max-width: calc(100% - 12px);
}
input.form-field:disabled {
	background-color: #e7e7e7;
}
input.form-field:focus {
	outline: var(--field-outline);
	box-shadow: var(--field-shdow);
}
select.form-field {
	padding: 5px;
	border-radius: 5px;
	border: 1px solid darkgray;
	font-size: 20px;
}
select.form-field:focus {
	outline: var(--field-outline);
	box-shadow: var(--field-shdow);
}
textarea.form-field {
	padding: 5px;
	border-radius: 5px;
	border: 1px solid darkgray;
	font-size: 17px;
	width: calc(100% - 12px);
	max-width: calc(100% - 12px);
	height: inherit;
	resize: none;
}
textarea.form-field:disabled {
	background-color: #e7e7e7;
}
textarea.form-field:focus {
	outline: var(--field-outline);
	box-shadow: var(--field-shdow);
}
.din-form-field {
	min-width: 150px;
}
.hide-content {
	width: 100px;
	height: 30px;
	border-radius: 15px;
	overflow: hidden;
	background-color: white;
	color: black;
	box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
}
.hide-content div {
	opacity: 0;
	width: 0;
	height: 0;
	padding: 0;
}
.show-content {
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 200;
	background-color: rgba(0, 0, 0, 0.3);
}
.show-content > * {
	padding: 20px;
	border-radius: 20px;
}
table input.din-form-field {
	border: none;
	background-color: transparent;
	width: 100%;
	padding: 10px;
	color: inherit;
	font-size: inherit;
	font-family: inherit;
}
table input.din-form-field:focus {
	outline: none;
	background-color: rgba(0, 0, 0, 0.2);
}
table select.din-form-field {
	border: none;
	background-color: transparent;
	width: 100%;
	padding: 10px;
	color: inherit;
	font-size: inherit;
	font-family: inherit;
}
table select.din-form-field:focus {
	outline: none;
	background-color: rgba(0, 0, 0, 0.2);
}
.field-context label {
	font-size: 20px;
	text-shadow: 1px 1px #ffffff, -1px -1px #ffffff, -1px 1px #ffffff,
		1px -1px #ffffff;
}
.borde {
	width: 70%;
	height: 1px;
	background-color: #cacaca;
}
img.logo {
	height: 100%;
	max-width: 150px;
}
.drop-shadow {
	filter: drop-shadow(5px 5px 5px #8b8b8b);
}
img.form-logo {
	border-radius: 10px;
}
img.logo.outside {
	position: absolute;
	top: 15px;
	left: 15px;
}
.primario {
	background-color: var(--main-color1);
	color: white;
	font-size: 17px;
	letter-spacing: 1px;
}
.acciones {
	background-color: rgb(0, 101, 216);
	color: white;
	font-size: 17px;
	letter-spacing: 1px;
}
.secundario {
	background-color: rgb(148, 26, 26);
	color: white;
	font-size: 17px;
	letter-spacing: 1px;
}
.texto-ejemplo {
	margin-top: 15px;
	margin-left: auto;
	margin-right: auto;
	font-size: 40px;
	color: rgb(105, 105, 105);
	text-shadow: 5px 5px 20px rgba(0, 0, 0, 0.5);
}
.loading {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: rgba(0, 0, 0, 0.15);
	border-radius: 5px;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 200;
}
.loading .loader {
	width: 50px;
	height: 50px;
	border: 5px solid var(--loader-color);
	border-bottom: 5px solid rgba(0, 0, 0, 0);
	border-radius: 50%;
	/* box-shadow: 0 0 20px rgba(0, 0, 0, 0.3), inset 0 0 20px rgba(0, 0, 0, 0.3); */
	animation: 1s load linear infinite;
}
.show {
	transform: translate(0px) !important;
}
.tabla-container {
	max-height: 600px;
	width: calc(100% - 2px);
	overflow: auto;
	/* padding-top: 15px;
	border: 1px solid lightgray; */
}
.tabla-chats {
	width: 100%;
	overflow: auto;
}
table {
	font-family: arial, sans-serif;
	border-collapse: collapse;
	width: 100%;
	/* overflow: hidden; */
	border-radius: 20px;
}
table button {
	padding: 10px 15px 10px 15px !important;
	border-radius: 20px !important;
	background-color: var(--table-button-bck) !important;
	font-size: 17px !important;
	font-weight: 600 !important;
	cursor: pointer !important;
	border: none !important;
	color: var(--table-button-color) !important;
	white-space: nowrap !important;
	max-width: 250px;
}
td,
th {
	text-align: left;
	padding: 20px;
}
tr {
	background-color: var(--table-tr);
	color: var(--table-tr-color);
}
tr:nth-child(even) {
	background-color: var(--table-tr-even);
	color: var(--table-tr-even-color);
}
.opciones {
	gap: 10px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 10px;
}
.paginas button {
	padding: 10px 15px 10px 15px;
	border-radius: 20px;
	background-color: var(--paginas-button-bck);
	color: var(--paginas-button-color);
	font-size: 17px;
	font-weight: 600;
	cursor: pointer;
	border: none;
}
.particles {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	z-index: -1;
	overflow: hidden;
}
.back-desing1,
.back-desing2,
.back-desing5 {
	position: absolute;
	width: 100%;
	height: 20%;
	z-index: 0;
	left: 0;
	right: 0;
}
.back-desing3,
.back-desing4 {
	position: absolute;
	width: 100%;
	height: 20%;
	z-index: 0;
	left: 0;
	right: 0;
}
.back-desing1 {
	bottom: 0;
	background-color: var(--main-color2);
	clip-path: polygon(0 100%, 50% 0%, 100% 0, 0 0);
}
.back-desing2 {
	bottom: 0;
	background-color: var(--main-color1);
	clip-path: polygon(0 100%, 100% 0%, 50% 100%, 0 100%);
}
.back-desing3 {
	top: 0;
	background-color: var(--main-color1);
	clip-path: polygon(0 100%, 50% 0%, 100% 0, 0 0);
}
.back-desing4 {
	top: 0;
	background-color: var(--main-color2);
	clip-path: polygon(41% 0, 100% 60%, 0 100%, 50% 100%);
	/* animation: 20s fluid ease-in-out infinite; */
}
.back-desing5 {
	bottom: 0;
	background-color: var(--sidebar-bckg);
	clip-path: polygon(0 100%, 50% 0%, 100% 0, 0 0);
}
.z0 {
	z-index: 0;
}
.z1 {
	position: relative;
	z-index: 1;
}
.z2 {
	z-index: 2;
}
.siiscom {
	position: absolute;
	z-index: 1;
	bottom: 15px;
	left: 0;
	right: 0;
	text-align: center;
	font-size: 10px;
}
.siiscom a {
	text-decoration: none;
	color: #494949;
}
.download {
	background-color: dodgerblue;
	color: white;
	padding: 10px;
	box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.3);
	text-decoration: none;
}
.chart {
	max-width: 600px;
	max-height: 400px;
	background-color: white;
	border-radius: 10px;
}
.chart2 {
	max-width: 600px;
	max-height: 400px;
	background-color: white;
	border-radius: 10px;
}
.relleno {
	height: 100%;
	background-color: white;
	border-radius: 10px;
	color: black;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 10px;
}
.modal,
.modal2 {
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	background-color: var(--modal-bckg);
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}
.modal2 {
	z-index: 101;
}
.modal {
	z-index: 100;
}
.modal .cerrar,
.modal2 .cerrar {
	min-width: 40px;
	min-height: 40px;
	position: relative;
	margin: auto;
	margin-bottom: 5px;
	margin-top: 5px;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	background-color: red;
	border: 2px black solid;
	border-radius: 50%;
	padding: 5px;
	transition: all 0.3s;
}
.modal .cerrar:before,
.modal2 .cerrar:before {
	content: '';
	position: absolute;
	width: 40px;
	height: 5px;
	background-color: white;
	transform: rotate(45deg);
	border-radius: 5px;
}
.modal .cerrar:after,
.moda2 .cerrar:after {
	content: '';
	position: absolute;
	width: 40px;
	height: 5px;
	background-color: white;
	transform: rotate(-45deg);
	border-radius: 5px;
}
.modal .cerrar:hover,
.modal2 .cerrar:hover {
	background-color: white;
	border-color: red;
}
.modal .cerrar:hover:after,
.modal .cerrar:hover:before,
.modal2 .cerrar:hover:after,
.modal2 .cerrar:hover:before {
	background-color: red;
}
.modal .modal_content,
.modal2 .modal_content {
	max-width: 90%;
	max-height: 90%;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: auto;
	background-color: white;
	border-radius: 5px;
}
.card {
	width: 250px;
	min-height: 200px;
	max-width: 100%;
	padding: 20px;
	background-color: white;
	border-radius: 10px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.card > img {
	height: 150px;
	border-radius: 10px;
	margin-top: 10px;
	margin-bottom: auto;
}
.card > .nombre {
	width: calc(100% - 10px);
	font-size: 15px;
	color: black;
	text-align: left;
	margin-top: auto;
	padding: 5px;
	word-break: break-all;
}
.card > .control {
	width: 100%;

	display: flex;
	justify-content: center;
	align-items: center;
	justify-content: center;
}
.card > .control > .opcion1 {
	width: 100%;
	background-color: rgb(168, 0, 0);
	color: white;
	margin-right: auto;
	font-size: 15px;
	border-radius: 0 0 0 0;
	text-align: center;
	padding: 8px !important;
}
.card > .control > .opcion2 {
	width: 100%;
	background-color: rgb(30, 96, 194);
	color: white;
	margin-left: auto;
	font-size: 15px;
	border-radius: 0 0 0 0;
	text-align: center;
	padding: 8px !important;
}
.tag {
	background-color: white;
	color: black;
	border-radius: 10px 10px 0 0;
	padding: 5px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
	z-index: 9;
	cursor: pointer;
}
.tag:hover {
	background-color: darkgray;
}
.load {
	width: 100%;
	max-width: 600px;
	background: white;
	border-radius: 50px;
}

.load .progres {
	text-align: center;
	color: white;
	margin-left: 0;
	background: #67af45;
	width: 0%;
	border-radius: 50px;
	/*box-shadow: 0 0 10px 2px red;*/
}

.prog {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 99999;
	margin: auto;
	text-align: center;
	font-size: 40px;
	color: white;
}
.comentario_cont {
	padding: 10px;
	display: flex;
	justify-content: center;
	align-items: flex-start;
	flex-direction: column;
	background-color: white;
	border-radius: 5px;
	color: black;
	box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
}
.comentario {
	white-space: pre-wrap; /* Since CSS 2.1 */
	white-space: -moz-pre-wrap; /* Mozilla, since 1999 */
	white-space: -pre-wrap; /* Opera 4-6 */
	white-space: -o-pre-wrap; /* Opera 7 */
	word-wrap: break-word; /* Internet Explorer 5.5+ */
	word-break: break-word;
	max-width: 100%;
	font-size: 18px;
}
.comentario_cont button {
	font-size: 12px;
	padding: 5px;
}
.chat-container-float {
	width: var(--chat-inactivo-size);
	height: 50px;
	position: absolute;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-direction: column;
	right: 30px;
	bottom: 30px;
	overflow: hidden;
	transition: all 0.7s ease;
	z-index: 100;
	border: 0px solid rgb(255, 255, 255);
	border-radius: 25px 25px 0 25px;
}
.chat-container-float::before {
	content: '';
	position: absolute;
	margin-right: -10px;
	border-width: 18px;
	height: 0px;
	width: 0px;
	margin-top: 43px;
	margin-bottom: 0px;
	border-style: solid;
	right: 0;
	bottom: 0;
	transition: all 0.7s ease;
	border-color: transparent rgb(0, 132, 255) rgb(0, 132, 255) transparent;
}
.chat-container-float .cerrar-float {
	width: var(--chat-inactivo-size);
	height: 50px;
	background-color: rgb(0, 132, 255);
	border-radius: 25px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	margin-right: auto;
	cursor: pointer;
	transition: all 0.7s ease;
}
.chat-container-float .cerrar-float .text {
	margin-left: 40px;
	color: white;
	font-weight: bold;
	font-size: 1.2rem;
}
.chat-container-float .cerrar-float::before {
	content: '';
	position: absolute;
	width: 30px;
	height: 5px;
	background-color: white;
	transform: rotate(90deg);
	border-radius: 5px;
	transition: all 0.7s ease;
	margin-right: 60px;
}
.chat-container-float .cerrar-float::after {
	content: '';
	position: absolute;
	width: 30px;
	height: 5px;
	background-color: white;
	transform: rotate(180deg);
	border-radius: 5px;
	transition: all 0.7s ease;
	margin-right: 60px;
}
.chat-container-float.activo {
	width: var(--chat-activo-size);
	height: calc(100% - 166px);
	background-color: #ebebeb;
	border: 1px solid rgb(0, 132, 255);
	justify-content: flex-start;
	border-radius: 25px;
}
.chat-container-float.activo::before {
	content: '';
	position: absolute;
	margin-right: -10px;
	border-width: 20px;
	height: 0px;
	width: 0px;
	margin-top: 43px;
	margin-bottom: 0px;
	border-style: solid;
	border-color: transparent transparent transparent transparent;
}
.chat-container-float .cerrar-float.activo {
	width: 50px;
	border-radius: 25px 0 25px 0;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}
.chat-container-float .cerrar-float.activo .text {
	display: none;
}
.chat-container-float .cerrar-float.activo::before {
	content: '';
	position: absolute;
	width: 30px;
	height: 5px;
	background-color: white;
	transform: rotate(45deg);
	border-radius: 5px;
	margin: 0;
}
.chat-container-float .cerrar-float.activo::after {
	content: '';
	position: absolute;
	width: 30px;
	height: 5px;
	background-color: white;
	transform: rotate(-45deg);
	border-radius: 5px;
	margin: 0;
}
.chat-content {
	max-width: 100%;
	position: relative;
}
button.success {
	background-color: rgb(46, 126, 63) !important;
}
.circle-load {
	width: 15px;
	height: 15px;
	border: 5px solid white;
	border-right: 5px solid transparent;
	border-radius: 50%;
	margin: auto;
	animation: load 1s infinite linear;
}
/* ---------- HEADER/MENU ---------- */
header {
	width: calc(100% - 60px);
	height: 70px;
	padding: 30px;
	padding-top: 10px;
	padding-bottom: 10px;
	position: sticky;
	top: 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background-color: var(--header-color);
	box-shadow: var(--header-shadow);
	z-index: 10;
	gap: 30px;
	flex-wrap: nowrap;
}
.menu {
	width: calc(100% - 60px);
	height: 100vh;
	overflow: auto;
	padding: 30px;
	padding-top: 10px;
	padding-bottom: 10px;
	position: fixed;
	top: 0;
	display: none;
	justify-content: flex-start;
	align-items: center;
	flex-direction: column;
	background-color: var(--menu-color);
	box-shadow: var(--menu-shadow);
	z-index: 100;
	gap: 30px;
}
header ol,
.menu ol,
header ul,
.menu ul {
	font-weight: 600;
}
header ol,
header ul {
	flex-wrap: nowrap !important;
}
.menu ol,
.menu ul {
	width: calc(100% - 30px);
}
header .buscar,
.menu .buscar {
	height: 30px;
	cursor: pointer;
}
header > ol > li,
.menu > ol > li,
header > ul > li,
.menu > ul > li {
	padding: 20px;
	border-radius: 10px;
	line-height: 30px;
	display: flex;
	transition: all 0.1s linear;
	font-size: 1.2rem;
	cursor: pointer;
}
.menu > ol > li,
.menu > ul > li {
	width: calc(100% - 40px);
	display: flex;
	justify-content: center;
	align-items: center;
}
header > ol > li:hover,
.menu > ol > li:hover,
header > ul > li:hover,
.menu > ul > li:hover {
	background-color: var(--header-item-hover);
}
header > ol > li > a,
.menu > ol > li > a,
header > ul > li > a,
.menu > ul > li > a {
	text-decoration: none;
	color: inherit;
}
.menu > ol,
.menu > ul {
	flex-direction: column;
}
header > ol,
.header-redes > ol,
.menu > ol,
header > ul,
.header-redes > ul,
.menu > ul {
	list-style-type: none;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap: 15px;
}
.header-redes > ol,
.header-redes > ul {
	gap: 25px;
}
.header-redes .fa-facebook:hover {
	color: #00b3ff;
}
.header-redes .fa-envelope:hover {
	color: #e6a749;
}
.header-redes .fa-phone:hover {
	color: #31b89a;
}
.header-redes > ol img,
.header-redes > ul img {
	height: 30px;
	background-color: white;
	border-radius: 10px;
}
header > .header-logo > img {
	margin-top: -130px;
	transition: all 0.1s linear;
}
header > .header-logo > img,
.menu > .header-logo > img {
	height: 100px;
	filter: drop-shadow(10px 10px 10px rgba(0, 0, 0, 0.3));
}
.header-redes {
	width: calc(100% - 60px);
	height: 50px;
	padding: 30px;
	padding-top: 10px;
	padding-bottom: 10px;
	background-color: var(--main-color1);
	display: flex;
	justify-content: flex-end;
	align-items: center;
	font-size: 30px;
	color: white;
}
.header-redes > ol > li > a,
.header-redes > ul > li > a {
	text-decoration: none;
	color: inherit;
}
.drop-down {
	position: relative;
}
.drop-down:hover ol,
.drop-down:hover ul {
	display: flex;
}
.drop-down a {
	text-decoration: none;
	color: inherit;
	width: 100%;
	height: 100%;
	padding-top: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
	padding-right: 10px;
}
.drop-down ol,
.drop-down ul {
	display: none;
	position: absolute;
	width: 100%;
	min-width: 250px;
	top: 100%;
	left: 0;
	z-index: 999;
	list-style-type: none;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	background-color: white;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.3);
}
.drop-down ol li,
.drop-down ul li {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: wrap;
	white-space: pre-wrap; /* Since CSS 2.1 */
	white-space: -moz-pre-wrap; /* Mozilla, since 1999 */
	white-space: -pre-wrap; /* Opera 4-6 */
	white-space: -o-pre-wrap; /* Opera 7 */
	word-wrap: break-word; /* Internet Explorer 5.5+ */
	word-break: break-word;
	border-top: 1px solid rgb(163, 163, 163);
	width: 100%;
	height: 100%;
}
.drop-down ol li:hover,
.drop-down ul li:hover {
	background-color: rgba(0, 0, 0, 0.3);
}
.drop-down ol li:last-child,
.drop-down ul li:last-child {
	border-bottom: 1px solid rgb(163, 163, 163);
}
.toggle {
	display: none;
	gap: 7px;
	flex-direction: column;
	padding: 15px;
	background-color: rgba(0, 0, 0, 0.2);
	border-radius: 10px;
	cursor: pointer;
}
.toggle:before,
.toggle:after {
	content: '';
	width: 30px;
	height: 3px;
	background-color: black;
	border-radius: 3px;
}
.toggle .line {
	width: 30px;
	height: 3px;
	background-color: black;
	border-radius: 3px;
}
.info-cards {
	width: 100%;
	max-width: 1100px;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 20px;
	color: white;
}
.info-cards > .info-card {
	width: 300px;
	border-radius: 20px;
	overflow: hidden;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	background-color: var(--main-color1);
	transition: all 0.1s linear;
}
.info-cards > .info-card:hover {
	transform: scale(1.2);
	box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
	z-index: 10;
}
.info-cards > .info-card > img {
	position: absolute;
	object-fit: cover;
	width: 100%;
	height: 100%;
	top: 0;
	z-index: 1;
}
.info-cards > .info-card > .info {
	width: calc(100% - 40px);
	height: calc(100% - 40px);
	padding: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	gap: 15px;
	top: 0;
	background-color: rgba(193, 102, 102, 0.8);
	z-index: 2;
}
.imagepreview {
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 200;
	background-color: rgba(0, 0, 0, 0.3);
}
.imagepreview img {
	max-width: 90%;
	max-height: 90%;
	object-fit: contain;
	border: 5px;
}
.info-cards > .info-card > .info h4 {
	color: #fff;
	font-size: 17px;
	font-weight: 600;
	text-transform: uppercase;
}
.info-cards > .info-card > .info p {
	color: #d6ddff;
	font-size: 14px;
	line-height: 1.6;
	font-weight: 400;
	text-align: center;
}
.info-cards i {
	font-size: 60px;
	color: #fff;
}
.video {
	box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.3);
	border-radius: 10px;
}
footer {
	background-color: #313131;
	padding-top: 50px;
	padding-bottom: 50px;
	color: white;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}
footer > ol,
footer > ul {
	width: 60%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap: 20px;
	padding-bottom: 20px;
	list-style-type: none;
	color: inherit;
}
footer > ol:first-child,
footer > ul:first-child {
	border-bottom: 1px rgb(189, 189, 189) solid;
	margin-bottom: 20px;
}
footer > p {
	font-size: 0.9rem;
}
footer > p a {
	text-decoration: none;
	color: inherit;
}
/* ------------------------------------------ */
@keyframes fluid {
	0% {
		clip-path: polygon(41% 0, 100% 60%, 0 100%, 50% 100%);
	}
	50% {
		clip-path: polygon(46% 0, 100% 45%, 0 100%, 55% 100%);
	}
	100% {
		clip-path: polygon(41% 0, 100% 60%, 0 100%, 50% 100%);
	}
}
@keyframes load {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}
@media (max-width: 750px) {
	.back-desing3,
	.back-desing4 {
		height: 10%;
		top: unset;
		bottom: 0;
		display: none;
	}
	.res-wdt100 {
		width: 100% !important;
	}
	.res-wdt200 {
		width: 200px !important;
	}
	.res-wdt80 {
		width: 80% !important;
	}
	.res-nopad {
		padding: 0 !important;
	}
	.res-wrap {
		flex-wrap: wrap !important;
	}
	.res-min-wdt60 {
		min-width: 60% !important;
	}
	.res-wrap {
		flex-wrap: wrap;
		justify-content: center;
		align-items: center;
	}
}
@media (max-width: 900px) {
	header > .header-logo > img,
	.menu > .header-logo > img {
		height: 70px;
	}
	header > ol,
	header > ul {
		display: none;
	}
	.menu {
		display: flex;
	}
	.toggle {
		display: flex;
	}
	.header-logo > img {
		max-width: 100%;
		max-height: 70px;
		height: unset !important;
	}
	.panel .sidepanel {
		position: absolute;
		left: 0;
		transform: translateX(calc(var(--sidebar-wdt) * -1));
	}
	.panel .sidepanel:before {
		content: '';
		min-width: 50px;
		min-height: 50px;
		right: -50px;
		top: var(--sidebar-toggle-top);
		position: absolute;
		display: flex;
		justify-content: center;
		align-items: center;
		z-index: 10;
		background-color: white;
		background-image: url('../iconos/menu.svg');
		background-position: center;
		background-repeat: no-repeat;
		background-size: 80%;
		border-radius: 0 0 10px 0;
		box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.15);
		cursor: pointer;
		transition: all 0.3s linear;
	}
	.panel .sidepanel.show:before {
		content: '';
		transform: rotate(180deg);
		border-radius: 10px 0 0 0;
		box-shadow: -5px -5px 10px rgba(0, 0, 0, 0.15);
	}
	.chat-container-float.activo {
		width: 100%;
		height: calc(100% - 166px);
		max-width: 100%;
		max-height: 90vh;
		max-height: 90dvh;
		right: 0;
		bottom: 0;
		border: 1px solid rgb(0, 132, 255);
		justify-content: flex-start;
		border-radius: 25px;
	}
}
/* Comienza estilos del chat */

.ventana-chat {
	width: 100%;
	height: calc(100vh - 70px);
	height: calc(100svh - 70px);
	overflow: hidden;
}
.chat-content > .ventana-chat {
	height: unset !important;
}
.ventana-chat html,
.ventana-chat body {
	padding: 0;
	background: rgba(220, 220, 220, 1);
	font-family: sans-serif;
}
.ventana-chat body {
	margin: auto;
	flex-direction: column;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
	height: 100svh;
}
.ventana-chat body::-webkit-scrollbar {
	width: 8px;
}
.ventana-chat body::-webkit-scrollbar-track {
	box-shadow: inset 0 0 6px white;
}
.ventana-chat body::-webkit-scrollbar-thumb {
	background-color: darkgrey;
	outline: 1px solid slategrey;
}
.ventana-chat * {
	scrollbar-width: thin;
	scrollbar-color: darkgrey white;
}
.ventana-chat .loader {
	position: relative;
	width: 100%;
	height: 3px;
	background: transparent;
	z-index: 9999;
	top: 0;
}
.ventana-chat .loader .prog {
	height: 3px;
	margin-left: 0;
	background: red;
	width: 0%;
	position: absolute;
	top: 0;
	transition: all 0.1s linear;
	/*box-shadow: 0 0 10px 2px red;*/
}
/*---------POPUP----------*/

.ventana-chat .popup {
	visibility: hidden;
	position: relative;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	height: 0;
	width: 0;
	white-space: nowrap;
	transition-delay: 0.5s;
}
/* The actual popup (appears on top) */

.ventana-chat .mensaje .popup .popuptext {
	background-color: #555;
	color: #fff;
	text-align: center;
	border-radius: 6px;
	padding: 8px 0;
	z-index: 1;
}
.ventana-chat .mensaje-prop .popup .popuptext {
	position: absolute;
	right: 0;
	margin-top: -7px;
	background-color: #555;
	color: #fff;
	text-align: center;
	border-radius: 6px;
	padding: 8px 0;
	z-index: 1;
}
/* Popup arrow */

.ventana-chat .mensaje-prop .popup .popuptext::after {
	content: '';
	position: absolute;
	margin-left: -5px;
	border-width: 5px;
	border-style: solid;
	border-color: #555 transparent transparent transparent;
}
.ventana-chat .mensaje .popup .popuptext::before {
	content: '';
	position: absolute;
	margin-left: -5px;
	border-width: 5px;
	border-style: solid;
	border-color: #555 transparent transparent transparent;
}
/* Toggle this class when clicking on the popup container (hide and show the popup) */

@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
		height: 30px;
		margin-top: -50px;
		margin-bottom: 20px;
	}
}
.ventana-chat .responder {
	position: sticky;
	bottom: 0px;
	left: 0;
	right: 0;
	margin: auto;
	margin-bottom: -4px;
	width: 100%;
	max-width: calc(100% - 40px);
	height: 400px;
	display: inline-block;
	word-wrap: break-word;
	padding: 20px;
	border-radius: 25px 25px 0 0;
	color: white;
	font-size: 20px;
	background-color: rgb(0, 0, 0);
	z-index: 9999;
	overflow-y: auto;
	box-shadow: 0 0 50px 0 rgba(0, 0, 0, 0.5);
}
.ventana-chat .responder .respuesta {
	color: rgb(200, 100, 50);
	font-family: sans-serif;
}
.ventana-chat .cerrar {
	background: red;
	color: white;
	width: 90px;
	text-align: center;
	border-radius: 5px;
	cursor: pointer;
	user-select: none;
	padding: 5px;
	margin-left: auto;
}
.ventana-chat .cerrar:active {
	transform: scale(0.95);
}
.ventana-chat .sala-nombre {
	width: 100%;
	max-width: 1368px;
	position: fixed;
	background: rgb(224, 224, 224);
	text-align: center;
	color: white;
	font-weight: 900;
	font-size: 40px;
	border-radius: 0px;
	z-index: 999;
	top: 0;
	height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 30px;
	text-shadow: rgba(0, 0, 0, 0.5) 0 0 5px;
}
.ventana-chat .activos {
	position: absolute;
	margin-right: auto;
	margin-left: auto;
	opacity: 0.3;
	top: 55px;
	width: 72px;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	background-color: white;
	border-radius: 20px;
	padding: 10px;
	overflow: hidden;
	height: 10px;
	transition: all 0.3s ease;
	content: 'Conectados';
	box-shadow: 0 0 5px 0 black;
	color: rgba(0, 0, 0, 0);
	z-index: 999;
}
.ventana-chat .activos:hover {
	color: rgba(0, 0, 0, 1);
	opacity: 1;
	height: 180px;
	width: 300px;
	overflow-y: auto;
}
.ventana-chat .activos .titulo {
	font-size: 20px;
	font-weight: 900;
}
.ventana-chat .usuario {
	min-height: 40px;
	width: 100%;
	border: 5px white solid;
	text-align: center;
	border-radius: 30px;
	background-color: rgba(0, 0, 0, 0);
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0;
	font-weight: 900;
	font-size: 20px;
	transition: all 0.3s ease;
}
.ventana-chat .activos .salir {
	width: 100%;
	background-color: black;
	font-size: 20px;
	font-weight: 900;
	color: white;
	border: none;
	border-radius: 20px;
	cursor: pointer;
	margin-bottom: 10px;
	transition: all 0.3s ease;
}
.ventana-chat .activos .salir:active {
	transform: scaleX(0.9);
}
.ventana-chat .activos button {
	opacity: 0;
}
.ventana-chat .activos:hover .usuario {
	margin-top: 8px;
}
.ventana-chat .activos:hover .green {
	background-color: #a0ffa4 !important;
}
.ventana-chat .activos:hover .yellow {
	background-color: #fffea0 !important;
}
.ventana-chat .activos:hover button {
	opacity: 1;
}
.ventana-chat .contenedor {
	width: 100%;
	height: calc(100vh - 134px);
	height: calc(100svh - 134px);
	/* max-height: 1080px; */
	/* max-width: 1368px; */
	box-shadow: 0 0 50px 0 rgba(0, 0, 0, 0.5);
	margin: auto;
	/* margin-top: 50px; */
	overflow-y: auto;
	margin-bottom: 0;
	position: relative;
	display: flex;
	flex-direction: column-reverse;
	justify-content: end;
	background-color: #ebebeb;
}
.chat-content > .ventana-chat .contenedor {
	height: calc(100vh - 233px);
	height: calc(100svh - 233px);
}
.ventana-chat .chat {
	/* margin-top: 85px; */
}
.ventana-chat .form-mensaje {
	position: sticky;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 64px;
	max-height: 144px;
	margin: auto;
	margin-top: 0;
	width: 100%;
	/* max-width: 1368px; */
	bottom: 0;
	background: rgba(0, 0, 0, 1);
	box-shadow: 0 0 5px 0px rgba(0, 0, 0, 1);
}
.ventana-chat .form-mensaje:hover {
	/* box-shadow: 0 0 5px 0px rgba(0, 0, 0, 1.0);*/
}
.ventana-chat .form-mensaje .texto {
	width: 90%;
	width: 1000px;
	padding: 5px;
	height: 40px;
	max-height: 120px;
	border: none;
	border-radius: 25px 0 0 25px;
	font-size: 20px;
	/* z-index: 999; */
	resize: none;
	font-family: sans-serif;
	line-height: 40px;
}
.ventana-chat .form-mensaje .texto:hover {
}
.ventana-chat .form-mensaje .texto:focus {
	outline: none;
}
.ventana-chat .form-mensaje input[type='submit'] {
	background-image: url('../chat/img/enviar2.png') !important;
	background-size: 35px !important;
	background-position: center !important;
	background-repeat: no-repeat !important;
	border-radius: 1px;
	border-radius: 0 25px 25px 0;
	width: 50px;
	min-width: 50px;
	height: calc(100% - 14px);
	border: none;
	margin: 0;
	position: relative;
	background: rgba(255, 255, 255, 1);
}
.ventana-chat .form-mensaje input[type='submit']:hover {
	background: rgba(200, 200, 200, 1);
}
.ventana-chat .form-mensaje input[type='submit']:active {
	box-shadow: 0 0 5px 0px rgba(0, 0, 0, 1) inset;
}
#btnComenzarGrabacion {
	background-image: url('../chat/img/forma-de-microfono-negro.png') !important;
	background-size: 35px !important;
	background-position: center !important;
	background-repeat: no-repeat !important;
	border-radius: 1px;
	border-radius: 0 25px 25px 0;
	width: 50px;
	min-width: 50px;
	height: calc(100% - 14px);
	border: none;
	margin: 0;
	position: relative;
	background: rgba(255, 255, 255, 1);
}
.ventana-chat .form-mensaje #btnComenzarGrabacion:hover {
	background: rgba(200, 200, 200, 1);
}
.ventana-chat .form-mensaje #btnComenzarGrabacion:active {
	box-shadow: 0 0 5px 0px rgba(0, 0, 0, 1) inset;
}
#btnDetenerGrabacion {
	background-image: url('../chat/img/verificado.png') !important;
	background-size: 70% !important;
	background-position: center !important;
	background-repeat: no-repeat !important;
	border-radius: 1px;
	border-radius: 0 0px 0px 0;
	width: 50px;
	min-width: 50px;
	height: 50px;
	border: none;
	margin: 0;
	position: relative;
	background: rgba(255, 255, 255, 1);
}
.ventana-chat .form-mensaje #btnDetenerGrabacion:hover {
	background: rgba(200, 200, 200, 1);
}
.ventana-chat .form-mensaje #btnDetenerGrabacion:active {
	box-shadow: 0 0 5px 0px rgba(0, 0, 0, 1) inset;
}
#btnCancelarGrabacion {
	background-image: url('../chat/img/cerrar.png') !important;
	background-size: 70% !important;
	background-position: center !important;
	background-repeat: no-repeat !important;
	border-radius: 1px;
	border-radius: 0 50px 50px 0;
	width: 50px;
	min-width: 50px;
	height: 50px;
	border: none;
	margin: 0;
	position: relative;
	background: rgba(255, 255, 255, 1);
}
.ventana-chat .form-mensaje #btnCancelarGrabacion:hover {
	background: rgba(200, 200, 200, 1);
}
.ventana-chat .form-mensaje #btnCancelarGrabacion:active {
	box-shadow: 0 0 5px 0px rgba(0, 0, 0, 1) inset;
}
#duracion {
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 1px;
	border-radius: 0 0px 0px 0;
	width: 60px;
	min-width: 60px;
	height: 50px;
	border: none;
	margin: 0;
	position: relative;
	background: rgba(255, 255, 255, 1);
}
.ventana-chat audio {
	max-width: 100%;
}
.ventana-chat .imagen {
	width: 50px;
	min-width: 50px;
	height: calc(100% - 14px);
	background-color: white;
	background-image: url('../chat/img/insertar-icono-de-imagen.png');
	background-size: 40px 40px;
	background-position: center;
	background-repeat: no-repeat;
	border: none;
	display: inline-block;
	cursor: pointer;
	overflow: hidden;
	cursor: pointer;
}
.ventana-chat .imagen:hover {
	background-color: rgba(200, 200, 200, 1);
}
.ventana-chat .imagen:active {
	box-shadow: 0 0 5px 0px rgba(0, 0, 0, 1) inset;
}
.ventana-chat .imagen input[type='file'] {
	opacity: 0;
	height: 50px;
	width: 100%;
	cursor: pointer;
}
.ventana-chat .archivo-chat {
	width: 50px;
	min-width: 50px;
	height: calc(100% - 14px);
	background-color: white;
	background-image: url('../chat/img/clip.png');
	background-size: 40px 40px;
	background-position: center;
	background-repeat: no-repeat;
	border: none;
	display: inline-block;
	cursor: pointer;
	overflow: hidden;
	cursor: pointer;
}
.ventana-chat .archivo-chat:hover {
	background-color: rgba(200, 200, 200, 1);
}
.ventana-chat .archivo-chat:active {
	box-shadow: 0 0 5px 0px rgba(0, 0, 0, 1) inset;
}
.ventana-chat .archivo-chat input[type='file'] {
	opacity: 0;
	height: 50px;
	width: 100%;
	cursor: pointer;
}
.ventana-chat .chat-img {
	display: block;
	width: auto;
	max-width: 100%;
	height: 300px;
	border-radius: 20px;
	margin: auto;
}
.ventana-chat .msn-cont {
	width: 100%;
	display: inline-block;
	display: table;
	display: flex;
	flex-direction: column;
}
.ventana-chat .mensaje,
.ventana-chat .mensaje-prop {
	cursor: pointer;
	user-select: none;
	font-family: sans-serif;
}
.ventana-chat .mensaje:active,
.ventana-chat .mensaje-prop:active {
	transform: scale(0.95);
}
.ventana-chat .mensaje-aviso {
	border-radius: 20px;
	background: white;
	width: 90%;
	padding: 10px;
	margin: auto;
	margin-top: 10px;
	margin-bottom: 5px;
	text-align: center;
	float: left;
	font-size: 20px;
	transition: all 0.3s ease;
	box-shadow: 0 0 30px 0px rgba(0, 0, 0, 0.5);
}
.ventana-chat .mensaje {
	border-radius: 0px 20px 20px 20px;
	background: white;
	max-width: 90%;
	padding: 10px;
	margin: auto;
	margin-top: 10px;
	margin-bottom: 5px;
	margin-left: 5px;
	text-align: left;
	float: left;
	font-size: 20px;
	transition: all 0.3s ease;
	box-shadow: 0 0 30px 0px rgba(0, 0, 0, 0.5);
}
.ventana-chat .mensaje::before {
	content: '';
	display: flex;
	position: relative;
	margin-left: -15px;
	border-width: 5px;
	height: 0px;
	width: 5px;
	margin-top: -10px;
	margin-bottom: -10px;
	border-style: solid;
	border-color: white transparent transparent transparent;
}
.ventana-chat .mensaje-prop {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-end;
	border-radius: 20px 0px 20px 20px;
	background: var(--chat-bkg-color);
	background-image: var(--chat-bkg-image);
	background-attachment: fixed;
	background-position: center;
	background-size: 100%;
	max-width: 90%;
	padding: 10px;
	margin: auto;
	margin-top: 10px;
	margin-bottom: 5px;
	margin-right: 5px;
	text-align: left;
	float: right;
	font-size: 20px;
	transition: all 0.3s ease;
	box-shadow: 0 0 30px 0px rgba(0, 0, 0, 0.5);
}
.ventana-chat .mensaje-prop::before {
	content: '';
	position: relative;
	margin-right: -15px;
	/* border-width: 5px; */
	height: 5px;
	width: 5px;
	margin-top: -10px;
	margin-bottom: 0px;
	border-style: solid;
	background: var(--chat-bkg-color);
	background-image: var(--chat-bkg-image);
	background-attachment: fixed;
	background-position: center;
	background-size: 100%;
	clip-path: polygon(0 0, 0% 100%, 100% 0);
	border: none;
	/* border-color: rgb(0, 167, 209) transparent transparent transparent; */
}
.ventana-chat .respuestamsn {
	display: inline-block;
	word-wrap: break-word;
	background: gray;
	max-width: 90%;
	padding: 10px;
	margin: auto;
	margin-top: 10px;
	margin-bottom: -20px;
	padding-bottom: 30px;
	text-align: left;
	font-size: 20px;
	transition: all 0.3s ease;
	box-shadow: 0 0 30px 0px rgba(0, 0, 0, 0.5);
	color: white;
	font-family: sans-serif;
	font-style: italic;
}
.ventana-chat .prop {
	border-radius: 20px 20px 0px 20px;
	margin-right: 5px;
	float: right;
}
.ventana-chat .prop::after {
	content: '';
	right: 0;
	position: relative;
	margin-right: -15px;
	border-width: 5px;
	height: 0px;
	width: 5px;
	float: right;
	margin-top: 25px;
	margin-bottom: -10px;
	border-style: solid;
	border-color: transparent transparent transparent transparent;
	transform: rotate(180deg);
}
.ventana-chat .recib {
	border-radius: 20px 20px 20px 0px;
	margin-left: 5px;
	float: left;
}
.ventana-chat .recib::after {
	content: '';
	display: flex;
	position: relative;
	margin-left: -15px;
	border-width: 5px;
	height: 0px;
	width: 5px;
	margin-top: -5px;
	margin-bottom: -10px;
	border-style: solid;
	border-color: transparent transparent transparent transparent;
	transform: rotate(180deg);
}
.ventana-chat .mensaje .nombre {
	margin-top: 10px;
}
.ventana-chat .mensaje-prop .nombre,
.ventana-chat .mensaje .nombre {
	font-size: 14px;
	font-weight: bold;
	font-family: sans-serif;
	color: #adadad;
}
.ventana-chat .mensaje-prop .time,
.ventana-chat .mensaje .time {
	font-size: 12px;
	color: #adadad;
}
.ventana-chat .mensaje-prop .msj {
	color: white;
}
.ventana-chat .mensaje:hover .popup {
	visibility: visible;
	opacity: 1;
	margin-top: -50px;
	margin-bottom: 40px;
}
.ventana-chat .mensaje-prop:hover .popup {
	visibility: visible;
	opacity: 1;
	height: 30px;
	margin-top: -50px;
	margin-bottom: 20px;
}
.ventana-chat .hora {
	transform: scaleY(0);
	height: 0;
	transition: all 0.1s ease;
	transition-delay: 2s;
	font-size: 15px;
	white-space: nowrap;
}
.ventana-chat .mensaje .hora {
	/*float: left;*/
	margin-right: auto;
}
.ventana-chat .mensaje-prop .hora {
	/*float: right;*/
	color: white;
	margin-left: auto;
}
.ventana-chat .mensaje:active .hora,
.ventana-chat .mensaje-prop:active .hora {
	transform: scale(1);
	height: 20px;
	user-select: none;
	transition-delay: 0s;
}
.ventana-chat .out {
	opacity: 0;
	transform: rotate3d(-1, 0, 0, 90deg);
}
.ventana-chat .clipboard {
	height: 0;
	transform: scale(0);
	position: absolute;
}
.ventana-chat .msj pre {
	max-width: 100%;
	/* display: inline-block; */
	white-space: pre-wrap; /* Since CSS 2.1 */
	white-space: -moz-pre-wrap; /* Mozilla, since 1999 */
	white-space: -pre-wrap; /* Opera 4-6 */
	white-space: -o-pre-wrap; /* Opera 7 */
	word-wrap: break-word; /* Internet Explorer 5.5+ */
	word-break: break-word;
	margin: 0;
	font-family: sans-serif;
	font-size: 1.2rem;
	padding: 10px 0 10px 0;
}
.particles-js-canvas-el {
	position: absolute;
}
.container .particles-js-canvas-el {
	width: calc(100% - 20px) !important;
	height: calc(100% - 20px) !important;
}
@media only screen and (max-width: 400px) {
	/* .contenedor {
		margin-top: 0;
		height: calc(100vh - 64px);
	} */
	.ventana-chat .chat-img {
		height: 250px;
	}
	.ventana-chat .responder {
		height: 200px;
	}
	/* .form-mensaje {
		position: absolute;
		bottom: 0;
	} */
	/* .chat {
		margin-bottom: 50px;
	} */
	.ventana-chat body {
		/* display: unset; */
	}
}
@media only screen and (max-height: 500px) and (max-height: 400px) {
	.ventana-chat .chat {
		margin-bottom: 80px;
	}
	.ventana-chat body {
		overflow: hidden;
	}
}
