/*
*
Search CSS
*/

.search-toggle, .site-search .button, header .site-search .button:not(.text){
    display: inline-block;
    width: 30px;
    height: 30px;
    background: url(search.svg) no-repeat center!important;
    background-size: 22px!important;
    margin: 0;
    border: 0!important;
    min-width: 10px;
    border-radius: 0!important;
    padding: 0!important;
    position: relative;
    top: -4px;
    z-index: 9999;
    font-size: 0!important;
}
.search-toggle{
  top: -2px;
}
.site-search .search-form .search-button{
  width: 100%!important;
}
.search-toggle:after, .site-search .button:after{
	content: none!important;
}
.search-toggle:hover, .site-search .button:hover, .untoggle-search:hover{
  cursor: pointer;
}
.site-search{
  position: absolute;
  right: 0;
  opacity: 0;
  top: 0;
  width: 25%;
  transition: all 0.5s ease-in-out;
}
.site-search.show{
  right: 0;
  opacity: 1;
  width: 100%;
}
.site-search label{
  display: none;
}

.site-search .search-field{
  width: calc(100% - 40px);
  background-color: transparent;
  border: 0;
  border-radius: 0!important;
  color: #FFF!important;
  padding: 4px 15px!important;
  font-size: 16px;
}
.site-search .search-field::-webkit-input-placeholder { /* Edge */
  color: #FFF;
}
.site-search .search-field:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #FFF;
}
.site-search .search-field::placeholder {
  color: #FFF;
}
header.white .site-search .search-field::-webkit-input-placeholder { /* Edge */
  color: var(--blue);
}
header.white .site-search .search-field:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: var(--blue);
}
header.white .site-search .search-field::placeholder {
  color: var(--blue);
}
.site-search .button{
	margin-left: 0;
	margin-top: 11px;
}
.site-search fieldset{
	border: 0!important;
	padding: 0!important;
	margin: 0!important;
}
.site-search fieldset:first-child{
  width: calc(100% - 30px);
  float: left;
}
.site-search fieldset:last-child{
  width: 30px;
  float: right;
}
.site-search form{
  width: calc(100% - 40px);
  float: left;
}
.untoggle-search {
  position: absolute;
  background-size: contain;
  /*background: url('close.svg') no-repeat center;*/
  right: 0;
  top: 0;
  width: 26px;
  height: 25px;
  float: right;
  z-index: 99999;
  background: var(--dark_blue);
}
header.blue .untoggle-search{
  background: var(--blue);
}
.untoggle-search:before, .untoggle-search:after{
  content: '';
  background: #fff;
  display: block;
  width: 25px;
  height: 3px;
  border-radius: 4px;
  margin: 0;
  position: absolute;
}
.untoggle-search:before{
  bottom: calc(50% - 3px);
  right: 0; 
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: bottom .2s,-webkit-transform .2s .2s;
  -o-transition: bottom .2s,-o-transform .2s .2s;
}
.untoggle-search:after{
  top: 50%;
  right: 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: top .2s,-webkit-transform .2s .2s;
  -o-transition: top .2s,-o-transform .2s .2s;
}
.search-results .post-item .button.txt{
  float: left;
  justify-content: flex-start;
}
.post-item.search-item, .post-item.search-item .inner{
  float: left;
  width: 100%;
}
