*{
    margin: 0;
    padding: 0;
}
.box_nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 10px;
}
.but{
    width: 16%;
    border: 0;
    height: 40px;
    color: white;
    border-radius: 0 6px 6px 0;
    background: #007CFF;
    margin-left: 5px;
    font-size: 15px;
}
.inut{
    font-size: 15px;
    width: 82%;
    height: 40px;
    border-radius: 6px 0 0 6px;
    border: 1px solid #dedede;
    padding: 0 6px;
}
.butdh{
    /* padding: 0px 5px; */
    /* display: flex; */
    align-items: center;
    position: fixed;
    bottom: 0px;
    left: 0;
    width: 100%;
    padding: 10px 5px;
    box-sizing: border-box;
    background-color: #F2F0F3;
}
@keyframes change {
    0% {
        top: 100px;
    }

    100% {
        top: 0;
    }
}
/* .list_item{
  animation: change 1s;
} */
.list_val {
    /* background: url() no-repeat; */
    transition: transform 0.5s ease;
}
.item_show {
    display: flex;
    padding: 18px 18px;

    transform: translateY(40px);
    transition: transform 1s;
}

@keyframes identifier {
    0%{
        transform: translateY(40px);
    }
    100%{
        transform: translateY(0px);
    }
}

.item_show.show {

    transform: translateY(0);
}