.flex.example{
    width: 100%;
    height: 1100%;
    margin: 0px;
    padding: 0px;
    background-color: whitesmoke;
    display: flex;
}

header{
    width: 100%;
    padding: 10px;
    height: 60px;
    background-color: white;
    display: flex;
    justify-content: start;
    justify-items: center;
    align-content: center;
    align-items: center;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    box-shadow: 0px 1px 3px 1px rgb(58, 57, 58, 0.1);
    z-index: 9999;
}

header > .logo{
    width: 50px;
    height: 50px;
    margin: 5px;
    /* background-color: yellowgreen; */
    display: flex;
    justify-content: center;
    align-items: center;
}

header > .logo > .svg-icon{
    width: 2em;
    height: 2em;
}
header > .logo > .svg-icon path, polygon, rect {
    fill: var(--color-blue);
}

header > .content{
    width: 100%;
}

.airbnb-input-container{
    max-width: 600px;
}

.airbnb-input-container input{
    color: rgb(72, 72, 72);
    font-size: 17px;
    font-weight: 800;
}