.navdiv {
    display: inline-block;
    align-items: center;
    justify-content: space-between;
    background-color: transparent;
    padding: 5px 5px;
    width: 90px;
    position: absolute;
    transition: width 0.3s ease-out;
    left: 130px;
  }

.navdiv.show {
    width: calc(100% - 130px);

}

.navdiv .loupe button {
    background-color: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
  }

.navdiv  svg {
    fill: #fff;
  }

.navdiv   #search-form {
    display: flex;
    align-items: center;
    background-color: transparent;
    padding: 0px 0px;
    border-radius: 20px;
    overflow: hidden;
    transition: width 0.3s ease-out;
    width: 100%;
  }

.navdiv   #search-form.show {
    width: 100%;
  }


.navdiv  #search-form input {
    border: none;
    outline: none;
    flex-grow: 1;
    margin-right: 10px;
    font-size: 16px;
    border-radius: 20px;
}

.navdiv   #search-form button {
    background-color: #333;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    cursor: pointer;
  }



@media only screen and (max-width: 600px) {

.navdiv {
    left: 44px;
    padding-top: 2px;

    }
.navdiv.show {
    width: calc(100% - 50px);

    }

.navdiv  #search-form input {
        font-size: 14px;
        height: 50px;
    }


}

@media only screen and (max-width: 992px) {

.navdiv {
    left: 44px;
    padding-top: 2px;

    }

.navdiv.show {
    width: calc(100% - 50px);

    }

.navdiv  #search-form input {
    font-size: 14px;
    height: 50px;
    }
}
