.pulse-lulas {
	display: inline-block;
	animation: pulse 1.5s infinite;
}

@keyframes pulse {
	0% {
		transform: scale(1);
		opacity: 1;
	}
	50% {
		transform: scale(1.2); /* Escala del ícono al máximo */
		opacity: 0.7;
	}
	100% {
		transform: scale(1);
		opacity: 1;
	}
}

input[type="date"]::-webkit-calendar-picker-indicator {
	opacity: 0;
	z-index: 2;
	cursor: pointer;
}

.cal-icon:after {
	background: transparent url("./resources/assets/img/icons/calendar-icon.svg")
		no-repeat scroll 0 0;
	bottom: 0;
	content: "";
	display: block;
	height: 24px;
	margin: auto;
	position: absolute;
	right: 15px;
	top: 0;
	width: 24px;
	cursor: pointer;
}

.cal-icon {
	position: relative;
	width: 100%;
}

.modal-body .iframe-lulas {
	padding: 0 !important;
	margin: 0 !important;
}

.iframe-container {
	max-width: 100%;
	max-height: 100%;
	position: relative;
	overflow: hidden;
}

.iframe-container iframe {
	width: 100%;
	height: 100%;
	border: none;
}

.fa-chevron-left,
.fa-chevron-right {
	cursor: pointer;
	font-size: smaller;
}

.fa-chevron-left:hover,
.fa-chevron-right:hover {
	color: #f5f5f5;
}

#calendario {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 5px;
}

.dia {
	padding: 10px;
	border: 1px solid #ccc;
	text-align: center;
	background-color: #f0f0f0;
	cursor: pointer;
}

.dia.encabezado {
	background-color: #1b0588;
	color: #ffffff;
	pointer-events: none;
}

.dia:hover {
	background-color: #f9e79f;
}

.dia.seleccionado {
	background-color: #ffcc00;
}

.dia.dia-block {
	background-color: #c0c0c0;
	cursor: not-allowed;
}

.dia.seleccionado-con-disponibilidad {
	background-color: #00d3c7;
}

.dia.seleccionado-con-disponibilidad-edit {
	background-color: #02ada3 !important;
}

.custom-lbl {
	color: #2e37a4;
	font-size: smaller;
	font-weight: 500;
}

.box-params-schedule {
	border: 1px solid #2e37a4;
	border-radius: 10px;
	padding: 15px;
}

.close-box-params-schedule {
	display: flex;
	align-items: center;
}

.lbl-box {
	font-size: smaller;
	font-weight: 500;
	color: gray;
}

.buttons-container {
	margin-left: auto;
	display: flex;
}

.buttons-container .btn-remove,
.buttons-container .btn-add {
	margin-left: 5px; /* Espaciado entre los botones */
}

.close-box-params-schedule .btn-remove {
	width: 20px;
	height: 20px;
	background-color: #ffaeae;
	color: #fff;
	border-radius: 50%;
	cursor: pointer;
}

.close-box-params-schedule .btn-add {
	width: 20px;
	height: 20px;
	background-color: #2e37a4;
	color: #fff;
	border-radius: 50%;
	cursor: pointer;
}

.v-cloak {
	display: none;
}

/* .loader {
	width: 50px;
	aspect-ratio: 1;
	border-radius: 50%;
	background: #514b82;
	-webkit-mask: radial-gradient(circle closest-side at 50% 40%,#0000 94%, #000);
	transform-origin: 50% 40%;
	animation: l25 1s infinite linear;
} */

.container-loader {
	position: absolute;
	z-index: 2;
	left: 52%;
	top: 39%;
}

.loader {
	width: 50px;
	aspect-ratio: 1;
	display: grid;
	border: 4px solid #0000;
	border-radius: 50%;
	border-color: #ccc #0000;
	animation: l16 1s infinite linear;
}
.loader::before,
.loader::after {
	content: "";
	grid-area: 1/1;
	margin: 2px;
	border: inherit;
	border-radius: 50%;
}
.loader::before {
	border-color: #514b82 #0000;
	animation: inherit;
	animation-duration: 0.5s;
	animation-direction: reverse;
}
.loader::after {
	margin: 8px;
}
@keyframes l16 {
	100% {
		transform: rotate(1turn);
	}
}

@keyframes l25 {
	100% {
		transform: rotate(1turn);
	}
}

.badge-lulas {
	width: 18px;
	height: 18px;
	font-weight: 100;
	color: #fff;
	float: right;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.message-item.active {
	background: #efefef;
}

.chat-body {
	height: 400px;
	overflow-y: auto;
	padding-right: 15px;
}

::-webkit-scrollbar {
	width: 10px;
}

::-webkit-scrollbar-track {
	background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
	background: #888;
}

::-webkit-scrollbar-thumb:hover {
	background: #555;
}

.chat-user-count .user-check {
	background: none;
	color: #838383;
	font-size: 14px;
}

/*.modal-dialog {
	max-width: 80%;
	width: 100%;
}*/

#contentFile {
	width: 100%;
	height: 100%;
}

#contentFile iframe {
	width: 100%;
	height: 100%;
	border: none;
}

:root {
	--star-size: 17px;
	--star-color: #c1c1c1;
	--star-background: #fc0;
}

.Stars-rating {
	--percent: calc(var(--rating) / 5 * 100%);
	display: inline-block;
	font-size: var(--star-size);
	font-family: Times;
	line-height: 1;
}

.Stars-rating::before {
	content: "★★★★★";
	letter-spacing: 1rem;
	background: linear-gradient(
		90deg,
		var(--star-background) var(--percent),
		var(--star-color) var(--percent)
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	font-size: xx-large;
}

.star-rating {
	display: flex;
	cursor: pointer;
	justify-content: center;
	gap: 2.5rem;
}

.star {
	font-size: 2rem;
	color: gray;
	transition: color 0.2s;
}

.star.filled {
	color: rgb(255, 217, 0);
}

.star.hover {
	color: rgb(253, 253, 83);
}


.accordion-item{
	margin-bottom: 10px;
	border: 1px solid #d5d5d5;
}

