.header-search {
	width: 100%;
	border-radius: var(--border-radius);
	display: flex;
	border: 2px solid;
	border-color: var(--color-black-5);
	height: 40px;
}

.header-search:focus-within {
	border-color: var(--color-black-10);
}

.header-search__menu {
	height: 100%;
	/* flex: 0 0 88px; */
	margin-left: 16px;
}
.header-search__menu .store-menu.none {
	display: none !important;
}

.header-search__line {
	width: 100%;
	height: 100%;
	flex: 1 1 100%;
}
.header-search__line input{
	height: 100%;
	width: 100%;
	padding: 0 12px;
}

.header-search__btn {
	flex: 0 0 40px;
}
.header-search__btn > * {
	color: var(--color-black-25);
}

.header-search__btn button{
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

@media (min-width: 768px) {
	.header-search {
		background: var(--color-black-5);
	}
	.only-mob {
		display: none !important;
	}
}
@media (max-width: 767px) {
	.header-search {
		background: #fff;
	}
}
@media (max-width: 482px) {
	.header-search__menu {
		flex: 0 0 52px;
	}
	.header-search__btn {
		flex: 0 0 32px;
	}
}


.header-search-box {
	width: 100%;
	position: relative;
}
.header-search-btn, .header-search-btn-close{
	display:none;
	color:var(--color-black-25);
}
.header-search-box__input {
	z-index: 2;
	position: relative;
	width: 100%;
}
.header-search-box__input.active {
	width: 100%;
}
.header-search-btn-close{
	z-index: 10;
}
@media (max-width: 1023px) {
	.header-search-box__input.active {
		width: 100%;
	}
}
@media (max-width: 767px) {
	.header-search-box.active {
		position: fixed;
		left: 0;
		top: 0;
		width: 100%;
		height: 100vh;
		background-color: rgba(0, 0, 0, 0.75);
		background-color: #fff;
		z-index: 100;
		padding: 20px;
		display: flex;
		flex-wrap: wrap;
		align-content: flex-start;
	}
	.header-search-box.active .header-search-box__input {
		background: #fff;
		border-radius: 16px 16px 0 0;
		width: calc(100% - 50px);
	}
	.header-search-box.active .header-search-btn-close {
		display:inline-flex;
		z-index: 21;
		margin-left: auto;
	}
}
@media (max-width: 428px) {
	.header-search-btn {
		display:inline-flex;
		z-index: 21;
	}
	.header-search-box:not(.active, ._active) {
		display: none;
	}
}

.header-search-box__dropdown {
	width: 100%;
	z-index: 1;
	border-radius: 0 0 16px 16px;
	/* overflow: hidden; */
	background: #ffffff;
	display: none;
}

@media (min-width: 1024px) {
	.header-search-box._active .header-search-box__dropdown{
		display: flex;
	}
	/*.header-search-box:focus-within .header-search-box__dropdown{
        display: flex;
    }*/
}
@media (min-width: 768px) {
	.header-search-box__dropdown {
		position: absolute;
		min-height: 300px;
		max-height: 500px;
		top: 38px;
		box-shadow: var(--box-shadow-card-2);
	}
}
@media (min-width: 768px) and (max-width: 849px) {
	.header-search-box__dropdown {
		width: 150%;
		width: calc(100vw - 144px);
		border-radius: 0 16px 16px 16px;
	}
}
@media (max-width: 767px) {
	.header-search-box.active .header-search-box__dropdown {
		display: flex !important;
		position: relative !important;
		height: calc(100vh - 60px);
	}
	.header-search-box.active .header-search-content {
		max-height: none;
		height: 100%;
	}
	.header-search-box.active .header-search-content__body {
		display: flex;
		align-content: stretch;
		flex-direction: column;
		height: 100%;
	}
	.header-search-box.active .header-search-content__products {
		/*max-height: calc(100vh - 155px - 60px);*/
		max-height: none;
		padding-bottom: 65px;
	}
}


.header-search-content {
	height: auto;
	padding: 20px 10px 30px 10px;
	overflow: hidden;
	display: flex;
	width: 100%;
	max-height: 500px;
}
.header-search-content__body {
	width: 100%;
	display: flex;
}
.header-search-content__body .grid,
.header-search-content__body .grid__item {
	height: 100%;
}
.header-search-content__products {
	padding-right: 10px;
	height: 100%;
	overflow-y: auto;
}
.header-search-content__words {
	padding-left: 10px;
}
.header-search-content__words a {
	color: var(--color-black-85);
}
.header-search-content__col {
	display: flex;
	flex-direction: column;
}
.header-search-content__col._left {
	width: 280px;
	min-width: 280px;
}
.header-search-content__col._right {
	width: 100%;
}
@media (max-width: 767px) {
	.header-search-content {
		padding: 20px 0 30px 0;
	}
	.header-search-content__col._right {
		overflow: hidden;
	}
}
@media (max-width: 750px) {
	.header-search-content__body {
		flex-direction: column;
	}
	.header-search-content__products {
		overflow-y: scroll;
		max-height: 280px;
	}
	.header-search-content__col._left {
		min-width: 220px;
	}
}
/* .header.hs .header-search-content__body {
    flex-wrap: wrap;
}
.header.hs .header-search-content__col {
    width: 100%;
}
.header.hs .header-search-content__col._right {
    display: none!important;
} */
.hs-product-card {
	display: flex;
}
.hs-product-card__icon {
	position: relative;
	height: 52px;
	width: 52px;
	overflow: hidden;
	flex: 0 0 auto;
}

.hs-product-card__icon img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.hs-product-card.is_excise:not(.is_adult) .hs-product-card__icon img {
	filter: blur(1.5px);
}
.hs-product-card__icon span {
	display: flex;
	position: absolute;
	z-index: 1;

	color: #FFF;
	font-family: "Open Sans", serif;
	font-style: normal;
	font-weight: 700;
	letter-spacing: -0.36px;
	border-radius: 1000px;
	border: 2px solid #FFF;
	background: #FA4545;
	box-shadow: 0px 3px 16px 0px rgba(0, 0, 0, 0.08);
	margin-top: -2px;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 8px;
	flex-shrink: 0;
}
.hs-product-card:not(.is_excise) .hs-product-card__icon span {
	display: none;
}
.hs-product-card.is_excise:not(.is_adult) .hs-product-card__icon span {
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 28px;
	height: 28px;
	line-height: 26px;
	font-size: 11px;
}
.hs-product-card.is_excise.is_adult .hs-product-card__icon span {
	top: 0;
	left: 0;
	transform: translate(0, 0);
	width: 20px;
	height: 20px;
	line-height: 16px;
	font-size: 9px;
}
.hs-product-card__body {
	width: 100%;
}
.hs-product-card__action {
	display: flex;
	align-items: center;
	flex:  0 0 auto;
}
.hs-product-card__price {
	font-weight: bold;
	font-size: var(--font-size-s3);
}
.hs-product-card__action .hs-product-card__btn.none {
	display: none;
}
.hs-product-card__action .product-card__controls-inner.none {
	display: none;
}
.hs-product-card__action .product-card__controls-inner input {
	max-width: 60px;
}

@media (max-width: 1366px) {
	.header-search-content__col {
		width: 100%;
	}
}