.side_cont {
    position: fixed;
    width: 260px;
    top: 0;
    left: 0;
    height: 100vh;
    z-index: 999;
    background: linear-gradient(to right, #fffce4, #ffffff);
}

.side_cont_inr {
    position: fixed;
    width: 100%;
    height: 100vh;
    max-width: 500px;
    background-color: #fff;
    border: 5px solid #eee;
    left: -500px;
    top: 0;
    z-index: 99;
    overflow: auto;
    transition: left .4s;
}

.side_cont_img {
    width: 100%;
    max-width: 220px;
    margin: auto;
    margin-top: 10px;
}

.side_cont_lst {
    margin-top: 60px;
    padding: 0 30px;
    padding-right: 20px;
}

.side_cont_lst_itm {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;  /* Set a fixed height (adjust as needed) */
    text-align: center;
}

.side_cont_lst_itm_inr {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;  /* Optional: space between icon and text */
    width: 100%;
    height: 100%;
}

.side_cont_lst_itm_inr:hover {
    transform: scale(1.1);
    opacity: 0.6;
    color: #000;
}

.side_cont_lst_icon {
    display: inline-block;
    width: 33px;
}

.side_cont_lst_icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.side_cont_lst_txt {
    font-size: 1.1rem;
    font-weight: bold;
    white-space: nowrap; /* Prevent text from wrapping */
}

@media (max-width: 1380px) {
    .side_cont {
        width: 85px;
    }

    .side_cont_img {
        display: none;
    }

    .side_cont_lst {
        padding: 10px;
        margin-top: 20px;
    }

    .side_cont_lst_icon {
        display: inline-block;
        width: 33px;
    }

    .side_cont_lst_icon img {
        height: 100%;
        width: 100%;
        object-fit: contain;
        object-position: center;
    }

    .side_cont_lst_txt {
        display: none;
    }

    .side_cont_lst_itm {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 80px;  /* Set a fixed height (adjust as needed) */
        text-align: center;
    }

    .side_cont_lst_itm_inr {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;  /* Optional: space between icon and text */
        width: 100%;
        height: 100%;
}
}

@media (max-width: 896px) {
    .side_cont {
        width: 0px;
    }
}