body *{
    box-sizing: border-box;
}
body{
    background-color: #B2DFDB;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Trebuchet MS', 'Verdana', sans-serif;
}

body > ul::before{
    box-sizing: border-box;
    border-top: #009688 8px solid;
    position: absolute;
    content: "Ambientes:";
    height: 70px;
    display: flex;
    align-items: center;
    padding: 20px;
    font-size: 1.2rem;
    width: 100%;
    left: 0;
    top: 0;
    color: white;
    background-color: #26A69A;
    box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
}
body > ul{
    position: relative;
    overflow-y: auto;
    overflow-x: hidden;
    width: 60vw;
    height: auto;
    min-height: 400px;
    max-height: 80vh;
    min-width: 280px;
    max-width: 480px;
    background-color: #FAFAFA;
    padding: 0px;
    padding-top: 80px;
    padding-bottom: 16px;
    box-shadow: 0 19px 38px rgba(0,0,0,0.30), 0 15px 12px rgba(0,0,0,0.22);
}

body > ul a {
    width: 100%;
    display: inline-block;
    height: 56px;
    padding: 10px 25px;
    color:rgb(33, 33, 33);
    text-decoration:none;
    display: flex;
    align-items: center;
    position: relative;
    transition: all .4s ease;
}

body > ul a:hover {
    background-color: #EEEEEE;
    color:#26A69A;
}


body > ul li a::before {
    border-radius: 50%;
    background-color: #E0E0E0;
    max-height: 40px;
    width: 40px;
    height: 40px;
    content: " ";
    position: absolute;
    left: 25px;
    top: 8px;
    z-index: 0
}

body > ul li a::after {
    height: 20px;
    width: 20px;
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' class='MuiSvgIcon-root MuiSvgIcon-fontSizeMedium MuiBox-root css-uqopch' focusable='false' aria-hidden='true' fill='rgb(158,158,158)' viewBox='0 0 24 24' data-testid='ArrowOutwardIcon'%3E%3Cpath d='M6 6v2h8.59L5 17.59 6.41 19 16 9.41V18h2V6z'%3E%3C/path%3E%3C/svg%3E");
    justify-self: right;
    display: flex;
    float:right;
    right: 25px;
    position: absolute;
}
body > ul li img {
    max-height: 40px;
    width: 35px;
    margin-left: 2px;
    margin-right: 20px;
    z-index: 1;
}

ul{
    list-style: none;
}

ul a em {
	color: #aaa;
	font-style: normal;
	font-size: 0.8em;
}
