/*====STYLE FOR SEARCH===*/
.searchdynamiclist{
    /* display:none; */
    opacity: 0;
    transition: 0.3s;
}

/*===Active Class===*/
.searchdynamiclist.activeresultsearch{
/*     display: flex !important; */
    justify-content: center;
    margin-top: .5rem;
    margin-bottom: 3rem;
    z-index: 10;
    position: absolute;
    width: 100%;
    background-color: #fff;
    height: auto;
    padding: 2%;
    opacity: 1;
    transition: 0.3s;
}

.searchdynamiclist ul{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.searchdynamiclist ul li{
    margin-top:.5rem;
    margin-bottom:.5rem;
}