body,
html,
ul,
li,
p {
    margin: 0;
    padding: 0;
}

li {
    list-style: none;
}

::-webkit-scrollbar {

    width: 5px;

}


::-webkit-scrollbar-thumb {

    width: 5px;

    height: 70px;

    background-color: #d8d8d8;

    border-radius: 10px;

}

.menu_select {
    position: fixed;
    bottom: 0;
    height: 160px;
    /* height: 120px; */
    padding-left: 10px;
    /* background-color: pink; */
    z-index: 10;
}

.menu_select .menu_select_list {
    display: none;
}

.menu_select .menu_select_list button {
    display: block;
    /* display: inline-block;  */
    /* text-align: center; */
    outline: none;
    border: none;
    /* width: auto; */
    background-color: #1296db;
    color: #fff;
    margin-bottom: 10px;
    padding: 5px 8px;
    box-sizing: border-box;
    font-size: 15px;
    border-radius: 20px;
    /* z-index: 10; */
    cursor: pointer;
}

.menu_select .menu_select_icon {
    position: absolute;
    bottom: 10px;
    /* left: 10px; */
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: #1296db;
    text-align: center;
    z-index: 10;
    transition: all ease-out 200ms;
    cursor: pointer;
}

.menu_select .menu_select_icon:hover {
    transform: scale(1.2, 1.2) translate3d(0, 0, 0);
}

.menu_select .menu_select_icon img {
    width: 20px;
    margin: auto 0;
}

