.floating-menu__nav {
	--blue-1: #0f385a;
    --blue-1_hover: #002849;
	position: fixed;
	top: 50%;
	right: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 20px;
	z-index: 100;
	opacity: 1;
	animation: slideInRight 1.5s ease-in-out;
    -webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

.floating-menu__menu-item--active {
	--floating-menu__button-level-1--display: flex;

	/* Descendiente Button close */
	--floating-menu__button-close--display: block;

	/* Descendiente Icon (img) */
	--floating-menu__icon-level-1: block;

	/* Descendiente texto en span */
	--floating-menu__button-text: flex;

	--floating-menu__button-level-0--z-index: -1;
}

.floating-menu__menu-item::marker {
	font-size: 0;
	line-height: 0;
}

.floating-menu__menu-level-0 {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.floating-menu__menu-level-1 {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.floating-menu__menu-item--0 {
	display: flex;
	flex-direction: row-reverse;
	align-items: center;
}

.floating-menu__button {
	border: 0;
	background-color: transparent;
	border-radius: 0;
}

/*
 * Descendiente 1
 */
.floating-menu__children {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	-ms-flex-flow: row-reverse;
	flex-flow: row-reverse;
	width: 50px;
	max-height: 50px;
	-webkit-transition: all .9s ease;
	transition: all .9s ease;
	border-radius: 15px 0px 0px 15px;
	-webkit-box-shadow: -2px 2px 20px 0px rgba(23,53,87,.15);
	box-shadow: -2px 2px 20px 0px rgba(23,53,87,.15);
}

.floating-menu__menu-item--active .floating-menu__children {
	width: 180px;
	max-height: 616px;
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
	background: rgba(240,248,255,.75);
	-webkit-backdrop-filter: blur(15px);
	backdrop-filter: blur(15px);
	opacity: 1;
}

.floating-menu__menu-item--active .floating-menu__button-text-level-0 {
	display: none;
}


/*
 * Descendiente 2
 */
.floating-menu__children-inner {
	max-height: 50px;
	opacity: 0;
	padding: 0;
	pointer-events: none;
	-webkit-transition: all .9s ease;
	transition: all .9s ease;
}

.floating-menu__menu-item--active .floating-menu__children-inner {
	padding: 20px 0 !important;
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-flow: column;
	flex-flow: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	max-height: 616px;
	opacity: 1;
	padding: 20px;
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
	pointer-events: all;
}

/*
 * Descendiente 3 sin active
 */
.floating-menu__menu-level-1 {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-flow: column nowrap;
	flex-flow: column nowrap;
	gap: 15px;
	/* max-width: var(--px85); */
	padding: 0;
}


/*
 * Descendiente Button close
 */
.floating-menu__button-close {
	display: var(--floating-menu__button-close--display, none);
}

/*
 * Descendiente Icon (img)
 */
.floating-menu__icon-level-1 {
	display: var(--floating-menu__icon-level-1, none);
	/*filter: brightness(0) invert(100);*/
}

.floating-menu__icon-wrapper-level-1 {
	display: block;
	/* padding: 5px;*/
	width: 40px;
	height: 40px;
	/* background-color: var(--blue-1);*/
	border-radius: 50%;
}

.floating-menu__icon-wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
}




/*
 * Button text
 */
.floating-menu__button-text-0 {
	display: none;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 100%;
	margin: auto;
	width: auto;
	color: var(--azul-principal);
	background: rgba(255,255,255,.7);
	-webkit-backdrop-filter: blur(15px);
	backdrop-filter: blur(15px);
	border-radius: 10px;
	margin-right: 10px;
	max-height: 100%;
}

.floating-menu__button-level-1 {
	display: var(--floating-menu__button-level-1--display, none);
	flex-direction: column;
	align-items: center;
	width: 100%;
	color: var(--Azul-principal,var(--Azul-principal,#0F385A));
	text-align: center;
	font-family: var(--font-family-2);
	font-size: 12px;
	font-style: normal;
	font-weight: 400;
	line-height: 16px;
	text-transform: capitalize;
}

.floating-menu__button-text-level-1 {
	max-width: 10ch;
}

.floating-menu__button-text--length-large {
	max-width: 14ch;
}

.floating-menu__button {
	position: relative;
}

.floating-menu__menu-item--0 {
	min-height: 50px;
}

.floating-menu__button-level-0 {
	position: absolute;
	right: 0;
	z-index: var(--floating-menu__button-level-0--z-index, 2);
	display: flex;
	justify-content: center;
	align-items: center;
	max-height: 31px;
	margin-right: 10px;
	padding: 5px 10px;
	color: var(--azul-principal);
	text-align: center;
	font-family: var(--font-family-1);
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 21px;
	border-radius: 10px;
	text-decoration: none;
	background: rgba(255,255,255,.7);
	-webkit-box-shadow: 2px 0px 30px 0px rgba(23,53,87,.15);
	box-shadow: 2px 0px 30px 0px rgba(23,53,87,.15);
	-webkit-backdrop-filter: blur(15px);
	backdrop-filter: blur(15px);
	width: 50px;
	min-height: 50px;
	color: rgba(0,0,0,0);
	background: rgba(0,0,0,0);
	border-radius: 15px 0 0 15px;
	-webkit-backdrop-filter: none;
	backdrop-filter: none;
	margin-right: 0;
	background-color: #E0006E;
}

.floating-menu__button-text {
	display: none;
}

.floating-menu__button-text-level-0 {
	position: absolute;
	top: 0;
	bottom: 0;
	right: calc(100% + 10px);
	margin: auto;
	padding: 5px 10px;
	display: none;
	align-items: center;
	height: 31px;
	color: var(--blue-1);
	background: #bdc4cd;
	-webkit-backdrop-filter: blur(15px);
	backdrop-filter: blur(15px);
	border-radius: 10px;
	white-space: nowrap;
	font-size: 14px;
	line-height: 16px;
}

.floating-menu__button:hover .floating-menu__button-text-level-0 {
	display: flex;
}

.floating-menu__button-text {
	color: var(--Azul-principal,var(--Azul-principal,#0F385A));
	text-align: center;
	font-family: var(--font-family-2);
	font-size: 12px;
	font-style: normal;
	font-weight: 400;
	line-height: 16px;
	display: var(--floating-menu__button-text, none);
	text-transform: capitalize;
}

.floating-menu__menu-item--0.active .floating-menu__menu-item--1 .floating-menu__button span {
	display: block;
	width: 100%;
	font-family: var(--font-family-2);
	font-size: 14px;
	font-weight: 400;
	line-height: 21px;
	letter-spacing: 0px;
	text-align: center;
	color: var(--blue-1);
}

/*
 * Botón X para cerrar
 */
.floating-menu__button-close-level-1 {
	position: relative;
	-webkit-transform: rotate(360deg);
	transform: rotate(360deg);
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 50px;
	min-width: 50px;
	max-height: 50px;
	border: 0;
	background-color: var(--blue-1);
	border-radius: 15px 0 0 15px;
}

.floating-menu__button-close-level-1 img {
	width: 20px;
	height: 20px;
	filter: brightness(0) invert(100) !important;
}

.floating-menu__menu-item--0 + .floating-menu__menu-item--0 img {
	filter: none;
}

.floating-menu__menu-item--0 + .floating-menu__menu-item--0 .floating-menu__icon-wrapper-level-1 {
	padding: 0;
	background-color: transparent;
}

#zoom_messenger_plugin_iframe_minimized_encabezado_flotante > p > img {
	opacity: 0;
}

div#zoom_messenger_plugin_iframe_minimized_flotante.zoom_messenger_plugin_iframe_minimized {
	background-color: transparent !important;
	border: none !important;
	cursor: default !important;
	animation: none;
}

#zoom_messenger_plugin_iframe_minimized_ctaMessage_classic {
	display: none !important;
}

.bk-wch-main {
	display: none !important;
}