.searchBox {
	width: auto;
	height: 100%;
	padding-left: 20px;
	display: flex;
	align-items: center
}

main{
	min-height: 100vh;
	max-width: 1300px;
	margin: auto;
}

.searchBox input {
	width: 200px;
    height: 40px;
    border: none;
    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: #f1f1f2;
}

input::-webkit-input-placeholder {color:#7c7c7c;}

.searchBox p {
	width: 60px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #262626;
	border-top-right-radius: 10px;
	border-bottom-right-radius: 10px
}

.searchBox p img {
	width: 24px;
	height: 24px;
	cursor: pointer
}

@media screen and (max-width:960px) {
	.right {
		display: flex
	}

	.searchBox {
		width: 100%;
		height: 100vh;
		background-color: #fff;
		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
	}


	.searchBox input{
		width: 80%;
	}

	.searchBox p{
		background-color: #191919;
		position: relative;
        top: -16px;
	}
}