.header__search {
	display: flex;
	align-items: center;
  }
  .header__search_form {
	width: 30px;
	height: 30px;
	margin: 0 0 0 auto;
	position: relative;
  }
  .header__search_label {

  }
  .header__search_label svg{
	fill: var(--primary-1);
  }
  .header__search_input {
	width: 0;
	min-height: 0;
	padding: 10px 20px;
	outline: none;
	box-sizing: border-box;
	background-color: transparent;
	border: none;
	position: absolute;
	top: 40px;
	left: -200px;
  }
  .header__search_input.active {
	display: block;
	left: 0;
  }
  .header__search_input:focus {
	width: 280px;
	min-height: 20px;
	transition: width 1s ease;
	color: var(--text-color);
	background: linear-gradient(98.34deg, #ffffff 0%, #ffffff 100%);
  }

  .header__search_input:focus ~ .header__search_label > .header__search_svg {
	fill: var(--primary-color);
  }
  .header__search_btn {
	font-size: 0;
  }
  .title-search-result {
	display: none;
	position: absolute;
	top: 100px;
	right: 0;
	max-height: 100vh;
	overflow: auto;
	background-color: #fff;
	border-radius: 6px;
	z-index: 6;
	box-shadow: 0px 0px 0px 2px rgb(69 92 110 / 10%);
	width:100%;
  }
  .title-search-result__item {
	padding: 14px 20px;
  }
  .header__search_btn {
	font-size: 0;
  }
  .background__popap{
	z-index: 3;
	display: none;
	position: fixed;
	position: -webkit-sticky;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	height: 100vh;
	width: 100%;
	background-color: rgba(0, 0, 0, 0.6);
	overflow: hidden;
	touch-action: none;
	-ms-touch-action: none;
}
  @media (min-width: 768px) {
	.header__search {
		width: 80%;
	  }
	.header__search_form {
		display: flex;
		margin: 0;
		width: 100%;
		height: auto;
		border: 1px solid var(--primary-1);
		border-radius: 6px;
	  }
	  .header__search_input {
		position: static;
		width: 100%;
		height: auto;
		border: 0;
		display: block;
	  }
	  .header__search_label {
		display: none;
	  }
	  .header__search_input:focus {
		width: 100%;
		border: none;
	  }
	  .header__search_btn {
		background-image: url(images/loupe.svg);
		background-size: 50%;
		background-repeat: no-repeat;
		background-position: center;
		width: 60px;
		height: 40px;
		background-color: var(--primary-1);
	  }
	  .title-search-result {
		left: 19%;
		top: 100px;
		width: 1200px;
		position: fixed;
	  }
  }