.search{
    padding: 5px 0 5px 5px;
    margin: 10px 0 0px 5px;
    border-radius: 0.375rem;
    width: 30ch;
}
.search_result{
    //position: absolute;
    padding: 0;
//    width: 30%;
	 width: max-content;
//    left: 37ch;
    top: 5ch;
    text-align: center;
    background: #f2f3f4;;
    border: 1px #ccc solid;
    border-radius: 4px;
    display:none;
    z-index: 100;
}
.search_result li{
    list-style: none;
    text-align: left;
    padding: 0 5px 0 5px;
 //   margin: 0 0 0 -30px;
    //color: #ADFF2F;
    //border-bottom: 1px #ccc solid;
    cursor: pointer;
    transition:0.3s;
}
.search_result li:hover{
    background: #DCDCDC;
}
.active{
    background: #DCDCDC;
}
