
/* Search form */

.search-form {
    display: flex;
    width: 100%;
    flex-grow: 1;
}

.search-wrapper {
    margin: auto 0;
    display: flex;
    flex-grow: 1;
    flex-direction: column;
}

.input-wrapper {
    height: 50px;
    flex-wrap: nowrap;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    width: 100%;
    padding-right: 10px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 5px;
    box-sizing: border-box;
}

.input-wrapper:hover {
    background: rgba(0, 0, 0, 0.1);
}

.question {
    width: 100%;
    height: 100%;
    padding: 0 10px 0 20px;
    border: none;
    background-color: transparent;
    outline: none;

    font-size: 1.5vw;
    color: #333;
    font-family: 'Jura', sans-serif;
    
    z-index: 20;
    transition: padding-top 0.2s ease, margin-top 0.2s ease;

}


.questionbtn {
    background-color: transparent;
    border: none;
    cursor: pointer;
    z-index: 420;
}

.questionbtn>span {
    font-size: 1.75vw;
    color: #8F8F8F;
}

.questionbtn:hover > span {
    color: #333;
}

.search-div {
    display: flex;
    flex-grow: 1;
}

.search_type {
    /* display: flex; */
    padding: 0 10px;
    
    background: none;
    /* background-color: rgba(0, 0, 0, 0.05); */
    
    color: #333;

    border: none;
    border-right: 2px solid transparent;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    outline: none;
    
    font-size: 1.25em;
    font-family: 'Jura';
}

.search_type:hover {
    background-color: rgba(35, 144, 255, 1);
    color: white;
}
