.search-form {
	position: absolute;
    right: 10px;
    top: 8px;
}

.search-field {
	background-color: transparent;
	background-image: url("../i/search.png");
	background-position: 5px center;
	background-repeat: no-repeat;
	background-size: 24px 24px;
	border: none;
	cursor: pointer;
	height: 34px;
	margin: 6px 0;
	padding: 0 0 0 34px;
	position: relative;
	-webkit-transition: width 400ms ease, background 400ms ease;
	transition: width 400ms ease, background 400ms ease;
	width: 0;
	font-weight: 400;
}

.search-field:focus {
	background-color: #fff;
	border: 1px solid #c3c0ab;
	cursor: text;
	outline: 0;
	width: 230px;
}

.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
}

.search-form .search-submit {
  display: none;
}

@media (min-width:1200px) {
	.search-form {
        top: 11px;
    }
}
@media (max-width:1199px) {
	.search-form {
        top: 4px;
    }
}