.searchBox {
	width: auto;
	height: 100%;
	padding-left: 20px;
	display: flex;
	align-items: center
}

.searchBox input {
	width: 260px;
	height: 40px;
	border: 1px solid #fff;
	border-top-left-radius: 10px;
	border-bottom-left-radius: 10px;
	background-color: transparent;
	outline: none;
	border-right: none;
	padding: 0px 10px;
	color: #000;
	background-color: #fff;
	border: none;
}

.searchBox p {
	width: 60px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #2b2f2e;
	border-top-right-radius: 10px;
	border-bottom-right-radius: 10px;
	margin-block-start:0;
	margin-block-end:0
}

.searchBox p img {
	width: 24px;
	height: 24px;
	cursor: pointer
}

@media screen and (max-width:960px) {
	.right {
		display: flex
	}

	.searchBox {
		width: 100%;
		background-color: #f7f7d2;
		position: absolute;
		right: 0;
		top: 60px;
		z-index: 99999;
		align-content: flex-start;
		align-items: flex-start;
		padding-top: 50px;
		transition: all 0.5s;
		display: none
	}

	header {
		overflow-x: hidden
	}
}