/*Pop-Up Area*/

#SearchArea{
    display: none;
    width: 100%;
    height: 120px;
    background-color: white;
    position: fixed;
    top: 100px;
    z-index: 80 !important;
    box-shadow: 0px 1px 10px 1px darkgrey;
    opacity: 0.99;
} 

.Suche{
    position: relative;
    top: 50px;
    left: 160px;
    width: 100%;
    
}

.awesomplete {
    width: 100%;
}

.Suche input {
    width: 65%;
    height: 35px;
    border: none;
    font-size: 20px;
    padding: 10px;
    padding-left: 25px;
    padding-bottom: 0px;
    border-bottom: 1px rgb(71, 71, 71) solid;
    
}

textarea:focus, input:focus{
    outline: none;
}

.Suche button {
    position: relative;
    font-size: 20px;
    left: 65%;
    border: none;
    background: none;
    cursor: pointer;
    bottom: 30px;
}

.close {
    position: absolute;
    right: 29px;
    top: 10%;
    font-size: 35px;
    color: rgb(71, 71, 71);
    cursor: pointer;

    background: none;
    border: none;
    padding: 0;
    margin: 0;
    
}

/*Animationen*/

.Fade-in {
    animation: Fade-in .3s;
    -webkit-animation: Fade-in .3s;
    -moz-animation: Fade-in .3s;
  }

@keyframes Fade-in {
    from { opacity: 0 }
    to { opacity: inherit }
}

.Fade-out {
    animation: Fade-out .3s;
    -webkit-animation: Fade-out .3s;
    -moz-animation: Fade-out .3s;
  }

@keyframes Fade-out {
    from { opacity: inherit }
    to { opacity: 0 }
}


@media all and (max-width: 800px) {

    #SearchArea {
        top: 50px;
    }

    .Suche {
        left: 116px;
    }
}

@media all and (max-width: 700px) {

    #SearchArea {
        height: 100px;
    }

    .Suche {
        top: 33px;
        left: auto;
    }

    .Suche input {
        margin-right: auto;
        margin-left: auto;
    }

    .Suche button {
        left: 80%;
    }

}