.search a {
    width: 22px;
    height: 22px;
    display: block;
    background-image: url(/images/search.svg);
    background-size: cover;
    background-position: center;
}
.search-block {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    padding: 0 0 0 20px;
    display: none;
    background-color: #1C3E37;
    z-index: 9;
}
.search-block form {
    display: flex;
    align-items: center;
    height: 100%;
}
.search-block input[type=text] {
    padding-left: 10px;
    background: #fbfbfb;
    font-family: Yanone Kaffeesatz, sans-serif;
    color: #FF6B00;
    text-decoration: none;
    font-size: 18px;
    border: 1px solid #FF6B00;
    width: 355px;
    height: 44px;
    box-sizing: border-box;
    border-right: none;
}
input, textarea {
    outline: none;
}
.search-block input[type=submit] {
    width: 50px;
    height: 44px;
    border-radius: 0;
    border: none;
    background-color: #FF6B00;
    background-image: url(/images/search.svg);
    background-position: center;
    background-repeat: no-repeat;
}
.search-close {
    color: #ffffff;
    width: 50px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    font-style: normal;
    font-size: 20px;
    font-family: Arial, monospace;
    opacity: 1;
    cursor: pointer;
}
@media (max-width: 550px) {
	.search-block{
		width: 100%;
	}
	.search-block form {
		justify-content: flex-end;
	}
	.search-block input[type=text] {
		width: 70%;
	}
}
@media (max-width: 420px) {
	.search-block input[type=text] {
		width: 60%;
	}
}