.custom-search-wrapper {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 550px;
    border: 1px solid #000;
    border-radius: 30px;
    overflow: hidden;
    background: #f5f5f5;
}

/* Input */
#custom-search-input {
	font-size: 14px;
	background: transparent;
	outline: none;
	font-family: "Roboto", Sans-serif;
	font-size: 16px;
	font-weight: 500;
	border-radius: 15px 0px 0px 15px;
}

/* Right Button Section */
.custom-search-btn {
    width: 60px;
    height: 100%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

/* Divider Line */
.custom-search-btn {
    border-left: 1px solid #ccc;
}

/* Icon */
.custom-search-btn svg {
    width: 16px;
    height: 16px;
    fill: #000;
}

/* Dropdown Results */
#custom-search-results {
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    background: #fff;
    border-radius: 10px;
    /* border: 1px solid #ddd; */
    z-index: 999;
}

.custom-search-wrapper {
    position: relative;
}

@media (max-width:991px){
	.custom-search-wrapper {
		max-width: 400px;
		border-radius: 30px;
		font-size:14px;
		font-weight:400;
	}
	
	#custom-search-input[placeholder] {
		font-size: 14px;
	}
}
