.datepicker_container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.searchbar {
    width: 100%;
    max-width: 300px;
    display: inline-flex;
}

.searchbar--max-width {
    max-width: 100%;
}

.searchbar__input {
    flex-grow: 1;
    outline: none;
    border: 1px solid #009879;
    border-radius: 5px 0 0 5px;
    background: #F4FAF9;
    transition: background 0.25s, box-shadow 0.25s;
  	font-size:16px;
  	padding:12px;
  	text-indent: 10px;
 	width: 260px;
    text-align:left;
}

.searchbar__input:focus {
    background: white;
    box-shadow: 0 0 2px #8CC6BA;
}

.searchbar__input::placeholder {
    color: #008E05;
  	padding-left:12px;
}

.searchbar__button {
    width: 50px;
    background: #009879;
    color: #ffffff;
    outline: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    user-select: none;
  	font-size:16px;
  	padding:12px;
}

.searchbar__button:active {
    box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.25);
}