/* Estilos menu-usabilidad-aux */

.menu-usabilidad-aux {
    position: fixed;
    top: 50%;
    bottom: 50%;
    right: 0;
    z-index: 999999;
    display: grid;
    grid-row-gap: 0;
    justify-content: center;
    align-items: center;
    align-content: center;
    padding: 10px 0;
    margin: auto;
    width: 36px;
    min-height: 150px;
    background-color: var(--colorBackgroundMenuUsabilidad);
    border-radius: 8px;
    box-sizing: initial;
	box-shadow: var(--shadowUsabilidad); /* 0px 0px 10px 3px #0000002b */
}

@media (max-width: 575.98px) {
	.menu-usabilidad-aux {
		display: none
	}
}

.menu-usabilidad-aux button {
	border: 0;
    background-color: initial;
    cursor: pointer;
}

.menu-usabilidad-aux ul {
	display: grid;
    grid-row-gap: 0;
    justify-content: center;
    align-items: center;
    align-content: center;
}

.menu-usabilidad-aux li {
    position: relative;
    width: 30px;
    height: 39px;
    list-style: none;
}

.boton-usabilidad-aux,
.menu-usabilidad-aux a {
	position: absolute;
	right: 0;
	display: grid;
	grid-template-columns: 27px 1fr;
	grid-column-gap: 6px;
	font-family: var(--fontFamilyBotonUsabilidad);
	font-weight: 300;
	align-items: center;
	padding: 6px 14px 6px 6px;
	border-radius: 8px;
	transform: translate(calc(100% - 34px));
	transition: all .3s ease-out;
	white-space: nowrap;
	text-decoration: none;
}

.menu-usabilidad-aux a:focus, 
.menu-usabilidad-aux a:hover, 
.boton-usabilidad-aux:focus, 
.boton-usabilidad-aux:hover {
	background-color: var(--colorBackgroundBotonMenuUsabilidadHover);
	transform: translate(10px);
}

.menu-usabilidad-aux a:focus span, 
.menu-usabilidad-aux a:hover span, 
.boton-usabilidad-aux:focus span, 
.boton-usabilidad-aux:hover span {
	opacity: 1;
}


.menu-usabilidad-aux a:before,
.boton-usabilidad-aux:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background: #0000;
    width: 100%;
    height: 100%;
    border: 2px solid #0000;
    transition: all .3s ease-out;
    box-sizing: border-box;
    border-radius: 10px 0 0 10px;
}

.menu-usabilidad-aux a:focus, 
.boton-usabilidad-aux:focus {
	outline: 0
}

.menu-usabilidad-aux a:focus:before, 
.boton-usabilidad-aux:focus:before {
	border-color: var(--color--blue-1);
	width: calc(100% + 10px);
	height: calc(100% + 10px);
	top: -5px;
	left: -5px;
}

.menu-usabilidad-aux a span, 
.boton-usabilidad-aux span {
	font-size: 12px;
	line-height: 12px;
	color: var(--colorTextoBotonMenuUsabilidad);
	opacity: 0;
}

.menu-usabilidad-aux a img, 
.menu-usabilidad-aux a span, 
.boton-usabilidad-aux img, 
.boton-usabilidad-aux span {
	display: flex;
	align-items: center;
}

.menu-usabilidad-aux a img, 
.boton-usabilidad-aux img {
	justify-content: center;
	padding: 4px;
	width: 27px;
	height: 27px;
	background-color: var(--colorBackgroundImagenBotonMenuUsabilidad);
	border-radius: 6px;
	fill: currentColor;
	color: var(--color--blue-1)
}

.menu-usabilidad-aux a img:focus, 
.boton-usabilidad-aux img:focus {
	outline: 2px solid var(--colorBackgroundImagenBotonMenuUsabilidad);
}

.menu-usabilidad-aux a strong, 
.boton-usabilidad-aux strong {
	font-weight: 500;
}

.menu-usabilidad-aux a i, 
.menu-usabilidad-aux a span, 
.menu-usabilidad-aux a strong,
.boton-usabilidad-aux i, 
.boton-usabilidad-aux span, 
.boton-usabilidad-aux strong {
	margin-left: 6px;
}

/* -> Estilos menu-usabilidad-aux */


/* Estilos boton-volver-arriba */

.boton-volver-arriba-aux {
	display: flex;
	align-items: center;
	position: fixed;
	right: 20px;
	bottom: 40px;
	z-index: 2;
	background: #3366cc;
	border: 0;
	padding: 9px;
	border-radius: 5rem;
	text-transform: initial;
	max-width: 8.1rem;
	text-align: left;
	line-height: 1.2;
	font-size: 0;
	color: transparent !important;
	transition: all .4s;
	
	text-decoration: none;
	font-weight: 400;
	vertical-align: middle;
    user-select: none;
	
	cursor: pointer;
}

.boton-volver-arriba-aux:before {
    content: "";
    display: inline-block;
    background-color: #fff;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
	background-image: url('../images/noun-chevron-up-730242-3366CC.svg');
    background-repeat: no-repeat; 
    background-size: 100%;
    background-position: center;
    flex-shrink: 0;
}

.boton-volver-arriba-aux:hover {
    background-color: var(--color--blue-14);
    border-bottom-right-radius: 15px;
    border-top-right-radius: 15px;
    font-size: 1rem;
    color: #fff !important;
}

.boton-volver-arriba-aux:hover:before {
    margin-right: 11px;
}


/* -> Estilos boton-volver-arriba */



