.mobilmenu {
    height: 70px;
    top: -100%;
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 999;
    background: white;
    width: 100vw;
    border-bottom: 2px solid #2E456288;
    opacity: 0;
}

.mobilmenu a .mobillogo {
    width: 130px;
}

.mobilmenu #sidebar-collapse {
    padding: 0;
    margin: 0;
    background-color: transparent;
    border: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.mobilmenu #sidebar-collapse .logo {
    width: 30px;
    height: 34px;
    position: relative;
    margin-bottom: 3px;
}

.mobilmenu #sidebar-collapse span {
    display: block;
    font-size: 11px;
    font-weight: 600;
    margin: 0;
    padding: 0;
    line-height: 1.2;
    transition: all 0.4s;
    overflow: hidden;
    height: 13px;
}

.mobilmenu .hb1 {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 17px;
    border-right: 5px solid var(--blue);
    border-radius: 99px;
    transition: all 0.4s;
}

.mobilmenu .hb2 {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    height: 34px;
    width: 5px;
    border-right: 5px solid var(--blue);
    border-radius: 99px;
    transition: all 0.4s;
}

.mobilmenu .hb3 {
    position: absolute;
    right: 0;
    bottom: 0;
    height: 23px;
    border-left: 5px solid var(--blue);
    border-radius: 99px;
    transition: all 0.4s;
}

.mobilmenu #sidebar-collapse.closed .logo .hb1 {
    transform: rotate(45deg);
    height: 34px;
    left: 13px;
}

.mobilmenu #sidebar-collapse.closed .logo .hb2 {
    height: 0px;
}

.mobilmenu #sidebar-collapse.closed .logo .hb3 {
    transform: rotate(-45deg);
    right: 13px;
    height: 34px;
}

.mobilmenu #sidebar-collapse.closed span {
    height: 0px;
}

.mobilmenu .buttons {
    display: flex;
    align-items: center;
    gap: 20px;
}

.mobilmenu .buttons a {
    position: relative;
}

.mobilmenu .buttons a img {
    width: 28px;
    height: 28px;
    padding: 0;
    margin: 0;
    object-fit: contain;
}

.mobilmenu .buttons .basketsum {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #fff;
    color: var(--blue);
    border-radius: 50%;
    width: 15px;
    height: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 600;
}

#sidebar {
    width: 100%;
    position: fixed;
    top: -120%;
    left: 0;
    height: 100vh;
    z-index: 998;
    background: var(--blue);
    color: #fff;
    transition: all 0.5s ease-out;
    overflow-y: scroll;
    box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

#sidebar.active {
    top: 70px;
}

#sidebar .content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: calc(100vh - 70px);
}

#sidebar .links {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#sidebar .links a {
    width: 100%;
    height: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

#sidebar .links a span {
    font-size: 20px;
    font-weight: 300;
    text-transform: uppercase;
    color: white;
}

#sidebar .links a .line {
    width: 50%;
    border: none;
    border-bottom: 1px solid #606C3855;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

#sidebar .links a:last-child .line {
    display: none;
}

#sidebar .bottom {
    padding: 60px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

#sidebar .bottom a {
    width: 200px;
    height: 60px;
    text-align: center;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
}

#sidebar .bottom a:first-child {
    background: #fff;
    color: var(--blue);
    font-size: 16px;
    font-weight: 600;
}

#sidebar .bottom a:last-child {
    background: var(--blue);
    border: 1px solid #fff;
    color: #fff;
    font-size: 16px;
    font-weight: 300;
}

.overlay {
    display: none;
    position: fixed;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    z-index: 998;
    opacity: 0;
    transition: all 0.5s ease-in-out;
    top: 0;
}

.overlay.active {
    display: block;
    opacity: 1;
}

@media (min-width: 1200px) {

    #sidebar,
    .overlay.active {
        display: none;
    }
}