/*-------------------
--  HAMB MENU
-------------------*/

svg {
    min-height: 20px;
    transition: transform 0.3s ease-in-out;
}

svg line {
    stroke: currentColor;
    stroke-width: 3;
    transition: transform 0.3s ease-in-out
}

.hamb {
    position: absolute;
    top: 10px;
    right :10px;
    border-radius:6px;
    max-width: 40px;
    padding: 5px;
    cursor: pointer;
    --text-opacity: 1;
    color: #a0aec0;
    color: rgba(160,174,192,var(--text-opacity));
    border-style: none;
    z-index:99;
}

.hamb.open {
    z-index: 100;
}

.open svg {
    transform: scale(0.7)
}

.open #top {
    transform: translate(2px, 0px) rotate(45deg) scale(1.5,1);
}
.open #bottom {
    transform: translate(-17px, 11px) rotate(-45deg) scale(1.5,1);
}

.open #middle {
    opacity: 0;
}

/*-------------------
--  ASIDE
-------------------*/
aside {
    position: absolute;
    line-height: 2;
    top: 0;
    left: 100%;
    transition: transform 0.3s ease-in-out;
    background-color: lightgray;
    z-index: 98;
    opacity: 1;
    width: 100%;
    height: 100%;
    padding-top: 59px;
}

aside.open {
    transform: translate(-450px,0);
}

.backblur{
    opacity: 0;
}

.backblur.open{
    position: absolute;
    width:100%;
    height: 100%;
    opacity: 0.75;
    transition:opacity 1s ease-in-out;
    background-color: black;
}

aside>nav>hr {
    border: 0;
    width: 82%;
    height: 1px;
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0));
    opacity: 0.2;
    margin: -1px 0px;
}

aside>nav{
    flex-flow:column nowrap;
    align-items: flex-end;
    display: flex;
}

aside>nav>li {
    flex: 1 1;
    width: 100%;
    text-align: right;
    padding:5px 2em;
    line-height: 2.2em;
    font-size: 1.7em;
    font-weight: 250;
    z-index: 93;
}

aside>nav>li:hover {
    background-color: #939aa03b;
    cursor: pointer;
}

/* more-than 640px 
@media (min-width: 640px) {
    .open {
        left: 400px;
    }
}
 more-than 1200px 
@media (min-width: 1200px) {
    .open {
        left: 600px;
    }
}
*/

aside .logo-128{
    opacity: 0.07;
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 94;
}