[data-searchwp-modal-trigger*="searchwp-modal-"] {
	cursor: pointer;
} 

.searchwp-modal-form-default .searchwp-modal-form__overlay {
	background: rgba(45, 45, 45 ,0.6);
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	justify-content: center;
	align-items: start;
	z-index: 9999990;
}

.searchwp-modal-form-default .searchwp-modal-form__container {
	max-height: 100vh;
	max-width: 720px;
	width: 100%;
	margin-top: 15vh;
	background-color: #fff;
	border-radius: 8px;			
}

.searchwp-modal-form-default .searchwp-modal-form__content {
	background-color: #fff;
	border-radius: 8px 8px 0 0;
	overflow-y: auto;
	box-sizing: border-box;
	position: relative;
	z-index: 9999998;
}

.searchwp-modal-form-default .searchwp-modal-form__content .searchsubmit {
	display: none;
}

.searchwp-modal-form-default .searchwp-modal-form__content .searchform {

}

.searchwp-modal-form-default .searchwp-modal-form__content .searchform label {
	float: none;
	margin: 0;
	width: auto;
	position: relative;
}

.searchwp-modal-form-default .searchwp-modal-form__content .searchform label:before {
    content: "\f002";
    font-family: FontAwesome;
    font-size: 24px;
    position: absolute;
    padding: 17px 0 0 15px;
}

.searchwp-modal-form-default .searchwp-modal-form__content .searchform label input {
	display: block;
	width: 100%;
	float: none;
	margin: 0;
	font-size: 1.5em;
	padding: 0.5em 0 0.5em 0;
	outline: 0;
    border: none;	
	height: 60px;
    font-size: 24px;
    padding: 0 16px 0 48px;	
}

.searchwp-modal-form-default .searchwp-modal-form__header {
    position: absolute;
	top: -40px;
	right: -8px;
}

.searchwp-modal-form-default .searchwp-modal-form__close {
	line-height: 1;
	display: block;
	margin: 0 auto;
	background: transparent;
	border: 0;	
    color: #f7fafc;
    font-size: 1.5em;
    line-height: 24px;
    text-transform: uppercase;
	cursor: pointer;
}

.searchwp-modal-form-default .searchwp-modal-form__close:before {
	content: "\00d7";
	font-size: 2em;
}

.searchwp-live-search-results {
    min-height: 200px;
    max-height: 500px;	
	border-radius: 0 0 8px 8px;
	margin-top: -5px;
}

.searchwp-live-search-results .searchwp-live-search-result {
	
}

.searchwp-live-search-results .searchwp-live-search-result:hover {
	background-color: #f2f2f2;
	cursor: pointer
}

.searchwp-live-search-results .searchwp-live-search-result p {
	padding: 1.2rem 1.5rem 1.2rem 1.5rem !important;
}

@keyframes searchwpModalFadeIn {
	from { opacity: 0; }
	to { opacity: 1; }
}

@keyframes searchwpModalFadeOut {
	from { opacity: 1; }
	to { opacity: 0; }
}

@keyframes searchwpModalSlideIn {
	from { transform: translateY(15%); }
	to { transform: translateY(0); }
}

@keyframes searchwpModalSlideOut {
	from { transform: translateY(0); }
	to { transform: translateY(-10%); }
}

.searchwp-modal-form {
	display: none;
}

.searchwp-modal-form.is-open {
	display: block;
}

.searchwp-modal-form[aria-hidden="false"] .searchwp-modal-form-default .searchwp-modal-form__overlay {
	animation: searchwpModalFadeIn .3s cubic-bezier(0.0, 0.0, 0.2, 1);
}

.searchwp-modal-form[aria-hidden="false"] .searchwp-modal-form-default .searchwp-modal-form__container {
	animation: searchwpModalSlideIn .3s cubic-bezier(0, 0, .2, 1);
}

.searchwp-modal-form[aria-hidden="true"] .searchwp-modal-form-default .searchwp-modal-form__overlay {
	animation: searchwpModalFadeOut .3s cubic-bezier(0.0, 0.0, 0.2, 1);
}

.searchwp-modal-form[aria-hidden="true"] .searchwp-modal-form-default .searchwp-modal-form__container {
	animation: searchwpModalSlideOut .3s cubic-bezier(0, 0, .2, 1);
}

.searchwp-modal-form-default .searchwp-modal-form__container,
.searchwp-modal-form-default .searchwp-modal-form__overlay {
	will-change: transform;
}