<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.font-select * {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.font-select {
	font-size: 16px;
	width: 100%;
	position: relative;
	display: inline-block;
	
}

.font-select .fs-drop {
	position: absolute;
	top: 38px;
	left: 0;
	z-index: 999;
	background: #fff;
	color: #000;
	width: 100%;
/*border: 1px solid #aaa;*/
	border-top: 0;
	box-shadow: 0 4px 5px rgba(0,0,0,.15);
	border-radius: 0 0 4px 4px;
	transform: 0.5s ease;
}

.font-select &gt; span {
	outline: 0;
	border-radius: 25px;
	border: 1px solid #ced4da;
	display: block;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	height: 44px;
	line-height: 32px;
	padding: 3px 8px 3px 8px;
	color: #444;
	background: #fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%23303030' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-text-stroke: 1px black;
}

.font-select-active &gt; span {
	background-color: #eee;
	border-bottom-left-radius : 25px;
	border-bottom-right-radius: 25px;
	display: none;
}

.font-select .fs-results {
	/*max-height: 190px;*/
	overflow-x: hidden;
	overflow-y: auto;
	margin: 0;
	padding: 0;
	margin-top: 56px;
}

.font-select .fs-results li {
	line-height: 80%;
	padding: 8px;
	margin: 0;
	list-style: none;
	font-size: 18px;
	white-space: nowrap;
	-webkit-text-stroke: 1px black;
	/*LANDING*/
	width:31%;
	float: left;
	margin: 1%;
	background-color: white;
	padding: 4%;
	border-radius: 7px;
}

.font-select .fs-results li.active {
	background-color: #3875d7;
	color: #fff;
	cursor: pointer;
}

.font-select .fs-search {
	border-bottom: 1px solid #aaa;
	padding: 4px;
	display: none;
}

.font-select .fs-search input {
	padding: 7px;
	width: 100%;
	border: 1px solid #aaa;
	font: 16px Helvetica, Sans-serif;
	box-shadow: inset 0 1px 3px rgba(0,0,0,.06);
	border-radius: .1875rem;
}

/* Estilo para el popup */
.font-select .font-popup {
    position: absolute;
    left: 70%;
    transform: translate(-100%, -120%) scale(0); /* Inicialmente fuera de la pantalla */
    background-color: #fff;
    z-index: 1001;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    width: 300px;
    border-radius: 20px;
    background-color: #231f1fb0;
    opacity: 0; /* Invisible por defecto */
    visibility: hidden; /* Evita interacciÃ³n cuando estÃ¡ oculto */
    transition: transform 0.5s ease, opacity 0.5s ease; /* Suaviza el movimiento y la opacidad */
}
  /* Estilo cuando el popup estÃ¡ visible */
  .font-select .font-popup.visible {
	display: block;
  } 

.overlay-font-popup {
/*	position: absolute;*/
position:relative;
	top: 0; /* Centra verticalmente */
	left: 50%; /* Centra horizontalmente */
	transform: translate(-50%); /* Centra en pantalla */
/*	width: 50%;  Ancho del overlay */

	/*height: 280px;*/ /* Altura del overlay */
	background: #0000008f; /* Fondo negro transparente */
	z-index: 1000; /* Z-index alto para estar por encima de todo */
	transition: transform 0.5s ease; 
  }


  .font-select .font-popup.show {
    transform: translate(-100%, -101%) scale(0.5); /* Mueve el popup a su posiciÃ³n normal */
    opacity: 1; /* Lo hace visible */
    visibility: visible; /* Permite la interacciÃ³n */
}

.overlay-font-popup{
	/*background-color: red;*/
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	justify-content: flex-start;
	gap:20px;
	padding: 20px;
}
.overlay-font-popup .contenedor_fuentes{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
}
.overlay-font-popup .contenedor_fuentes li {
	color: #000;
	line-height: 40%;
	padding: 8px;
	margin: 0;
	list-style: none;
	font-size: 18px;
	white-space: nowrap;
	-webkit-text-stroke: 1px black;
	width: 23%;
	float: left;
	margin: 1%;
	background-color: white;
	padding: 4%;
	border-radius: 7px;
	cursor: pointer;
}
.overlay-font-popup .contenedor_fuentes li:hover {
	background-color: #3875d7;
	color: #fff;
}
.overlay-font-popup .btn_cerrar_fuentes {
	background: none;
	border: none;
	font-size: 20px;
	font-weight: bold;
	cursor: pointer;
	width: 30px;
	height: 30px;
	border-radius: 20px;
	color: white;
	background-color: #d41676;
}
.overlay-font-popup.editor_abierto
{
	position: absolute;
}
.overlay-font-popup.editor_abierto .contenedor_fuentes li {
	line-height: 80%;
	font-size: 20px;
	width: 48%;
}</pre></body></html>