.searchBar {
	position: fixed;
  overflow: hidden;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0;
  height: 0;
  z-index: 10;
  transition: all 0.6s ease;
  box-shadow: 0 -5px 10px 0 rgba(0,0,0,0.15);
}

.searchBar.is__open {
  height: 102px;
  transition: all 0.6s ease;  
}



.siteSearch {
	background: #fff;
  padding: 30px 0;
}

.siteSearch-form {
  display: flex;
}

.siteSearch-form  form {width:100%;}

.siteSearch-input {
	background: #eee;
  height: 42px;
  box-sizing: border-box;
  width: 100%;
  border: 0;
  padding-left: 8px;
}

.siteSearch-submit {
	color: rgba(0,0,0,0);
  background-color: #4a4a4a;
  background-image: url(images/search_icon.svg);
  background-position: center;
  background-repeat: no-repeat;
  border: 0;
  width: 42px;
}

.searchContent {padding-top: 100px;}
.search-results-item {display:flex; margin-bottom:30px;}
.search-results-item .leftPart {width:20%; margin-right:5%;}
.search-results-item .leftPart img {width:100%; height:auto;}
.search-results-item .rightPart {width:75%;}
.search-results-item .title {font-size:24px; margin-bottom:20px;}
.search-results-item .link {font-size:16px;}

@media (max-width: 839px) {
  .siteSearch {
  	padding: 30px !important;
		max-width: 100%;
    overflow: hidden;
  }
}

@media(max-width: 640px) {
	.search-results-item  {flex-wrap:wrap;}
	.search-results-item .leftPart, .search-results-item .rightPart {width:100%;}
	.search-results-item .leftPart {margin-bottom:15px;}
}