.line {
    fill: none;
    stroke: #5c5c5c;
    stroke-width: 6;
    transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
        stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}
.line1 {
    stroke-dasharray: 60 207;
    stroke-width: 6;
}
.line2 {
    stroke-dasharray: 60 60;
    stroke-width: 6;
}
.line3 {
    stroke-dasharray: 60 207;
    stroke-width: 6;
}
.menu {
    background-color: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}
.opened .line1 {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
    stroke-width: 6;
}
.opened .line2 {
    stroke-dasharray: 1 60;
    stroke-dashoffset: -30;
    stroke-width: 6;
}
.opened .line3 {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
    stroke-width: 6;
}
.overlay {
    position: fixed;
    display: none;
    top: 50px;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 998;
}
.sidebar-image {
    width: 24px;
    margin-right: 10px;
}
.sidenav {
    height: 100%;
    width: 250px;
    position: fixed;
    top: 50px;
    left: -250px;
    background-color: #F6F9FE;
    overflow-x: hidden;
    transition: 0.5s;
    z-index: 999;
}
#mySidenav .container {
    height: calc(100% - 50px);
}
#header-mobile {
    height: 50px;
    width: 100%;
    position: fixed;
    top: 0px;
    background-color: #e9ebee;
}
.fixed-top {
    width: 100vw;
}