.menu {
    width: 205px;
    border-radius: 8px;
    overflow: hidden;
	
}

.item {
    border-top: 1px solid #FBEBEA;/*#F7D9D7;/*#FFF6ED;/* #18dcff */
    overflow: hidden;
}

.btn {
    display: block;
    padding: 4px 20px;
    background: #FBEBEA;/*#F7D9D7;/*#FFF6ED;/*#17c0eb;*/
    color: #42230D;/*#643513;/*#6a3a15; /* white;*/
    position: relative;
}

.btn::before {
    content: "";
    position: absolute;
    width: 14px;
    height: 14px;
    background: #FBEBEA;/*#F7D9D7;/*#FFF6ED;/*#17c0eb;*/
    left: 30px;
    bottom: -7px;
    transform: rotate(45deg);
}

.btn i {
    margin-right: 10px;
}

.smenu {
    background: #F0F2F1; /*#76455e;/*#333;*/
    overflow: hidden;
    transition: max-height 0.3s;
    max-height: 0;
}

.smenu a {
    display: block;
    padding: 0px 38px;
    color: #dfcdbb;/*#9AAFCA;/*#FFF6ED;white;*/
    margin: 12px 0;
    position: relative;
	
}

.smenu a::before {
    content: "";
    position: absolute;
    width: 6px;
    height: 100%;
    background: #9AAFCA; /*#dfcdbb;/*#18dcff */
    left: 0;
    top: 0;
    transition: .3s;
    opacity: 0;
}

.smenu a:hover::before {
    opacity: 1;
}

.item:target .smenu {
    max-height: 25em;
}