/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Aug 09 2023 | 08:55:47 */
.product__contact-info__form {
	position: relative;
	display: flex;
    width: 100%;
}

.product__contact-info__form input {
	flex: 1 0 auto;
    padding: 12px 20px;
    width: 50%;
    font-size: 14px;
    border: 2px solid var(--primary-yellow-color);
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
}

.product__contact-info__form button#submit_button {
	padding-left: 10px;
    padding-right: 15px;
    font-size: 14px;
    font-weight: 800;
    color: var(--primary-deep-blue-color);
    background-color: var(--primary-yellow-color);
    border: 2px solid var(--primary-yellow-color);
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
    cursor: pointer;
}

.product__contact-info__form button.btn {
	background-color: transparent;
    border: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 95px;
    display: flex;
    align-items: center;
	background-image: none;
    color: var(--primary-deep-blue-color);
    padding: 0;
    min-width: 0;
}

.product__contact-info__form button.btn:hover:before {
	background-image: none;
}

/* Search Results */
.search-results {
	position: relative;
}

#filteredResults {
	position: absolute;
	top: -250px;
}

.store-item__wrap {
/* 	border: 1px solid rgba(0,0,0,0.1); */
    background: #fff;
    border-radius: 5px;
}

.inner-wrap {
	padding: 40px 15px;
}

.inner-wrap .store-item-name {
	margin-bottom: 10px;
    font-size: 27px;
    font-weight: 500;
    color: var(--primary-blue-color);
}

.inner-wrap .btn--customize {
	border-radius: 5px;
    height: 41px;
    padding: 0 10px;
}

.inner-wrap .contact__number {
	font-size: 16px;
    line-height: 12px;
    color: var(--primary-deep-blue-color);
    background-color: var(--primary-yellow-color);
    height: 41px;
    padding: 0 10px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    margin-left: 15px;
    border-radius: 5px;
}