.sideBar_mobile_con {
    position: fixed;
    top: 0;
    left: 0;
    width: 30%;
    min-height: 100vh;

    background: #000000bf;

    display: flex;
    justify-content: space-around;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transform: translateX(-100%);
    transition: transform .45s ease, opacity .3s ease;
    z-index: 9999999;
}

.sideBar_mobile_con.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
}

.sideBar_mobile {
    background: #f1f1f1;
    width: 300px;
    height: 100vh;
    overflow-y: auto;
    padding: 70px 0;
}

.sideBar_mobile_closeBtn {
    position: absolute;
    top: 0;
    right: 0;
    padding: 20px 30px;
    cursor: pointer;
    font-size: 30px;
}