/* inputwithbutton */

.inputwithbutton {
    -moz-display: flex;
    -webkit-display: flex;
    -ms-display: flex;
    display: flex;
    -moz-flex-direction: row;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -moz-justify-content: space-between;
    -webkit-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
    -moz-align-items: stretch;
    -webkit-align-items: stretch;
    -ms-align-items: stretch;
    align-items: stretch;
    -moz-flex-wrap: nowrap;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
}
.inputwithbutton > *:first-child{
    border-radius: 3px;
    height: 100%;
    width: 100%;
    box-shadow: none;
    border: solid 1px rgba(0, 0, 0, 0.15);
    background: rgba(0, 0, 0, 0.05);
    outline: none;
    padding: 0.5em;
    line-height: 1.2em;
}

.inputwithbutton > *:first-child:focus {
    border-color: #727272;
}

.inputwithbutton > *:first-child:empty{
    min-height: 2.2em;
}
.inputwithbutton  input[type=submit],
.inputwithbutton  input[type=button],
.inputwithbutton  .button,
.inputwithbutton  button{
    border-radius: 0 3px 3px 0;
    padding: 0 0.5em;
    line-height: 1em;
    height: inherit;
    display: none;
}

.inputwithbutton.fixed > *:first-child,
.inputwithbutton.changed > *:first-child {
    border-radius: 3px 0 0 3px;
    border-right: none;

}
.inputwithbutton.fixed input[type=submit],
.inputwithbutton.fixed input[type=button],
.inputwithbutton.fixed button,
.inputwithbutton.fixed .button,
.inputwithbutton.changed input[type=submit],
.inputwithbutton.changed input[type=button],
.inputwithbutton.changed button,
.inputwithbutton.changed .button{
    display: block;
}

.inputwithbutton .searchResponse {
    margin-top: 2.2em;

}