.menu-container {
    position: absolute;
	display: grid;
    right: 2%;
    /* left: 2%; */
    top: 2%;
}

.hide{
    display: none;
    width: 130px;
    text-align: right;
}

.hide a:visited{
    color: black;
}


#menor{
    width: 70px;
    text-align: center;
}

.menu-icon__cheeckbox:checked + div div{
    display: flex;
    flex-direction: row-reverse;
    grid-template-columns: auto;
    margin-right: 37px;
    height: 20px;
}


.menu-icon__cheeckbox:checked + div a li{
    display: grid;
    grid-template-columns: auto;
}

.menu-icon {
	position: relative;
	width: 50px;
	height: 50px;
	cursor: pointer;

	.menu-icon__cheeckbox {
		display: block;
		width: 100%;
		height: 100%;
		position: relative;
		cursor: pointer;
		z-index: 2;
		-webkit-touch-callout: none;
		position: absolute;
		opacity: 0;
	}
	div {
		margin: auto;
		position: absolute;
		top: 0;
		right: 0;
		left: 0;
		bottom: 0;
		width: 22px;
		height: 12px;
	}
	span {
		position: absolute;
		display: block;
		width: 100%;
		height: 2px;
		background-color: var(--bar-bg, #000);
		border-radius: 1px;
		transition: all 0.2s cubic-bezier(0.1, 0.82, 0.76, 0.965);

		&:first-of-type {
			top: 0;
		}
		&:last-of-type {
			bottom: 0;
		}
	}
	&.active,
	.menu-icon__cheeckbox:checked + div {
		span {
			&:first-of-type {
				transform: rotate(45deg);
				top: 5px;
			}
			&:last-of-type {
				transform: rotate(-45deg);
				bottom: 5px;
			}
		}
	}

}