.search-outer-cont {
    position: absolute;
    width: 60%;
    left: 20%;
    box-shadow: 1px 1px 4px 0px #8f8f8f;
    background-color: #FFFFFF;
    z-index: 150;
    min-height: 300px;
    top: $search-top-offset;
    display: flex;
    justify-content: center;
}
.search-inner-cont {
    width: 100%;
}
.search-side-buttons {
    position: absolute;
    bottom: 5px;
	padding: 15px;
}
.search-side-buttons a {
	width: 100%;
}
.search-options {
    top: 0;
    width: 100%;
    position: relative;
    box-shadow: none;
}
.search-options a:hover {
    background-color:$search-tabs-background;
    color: $primary-color;
}
.search-options span:hover {
    background-color: #FFFFFF;
}
.search-input {
    display: flex;
    width: 100%;
}
.search-input i {
    margin-left: 10px;
    font-size: 32px;
    color: #AE282D;
    transition: color 0.2s ease;
}
.search-input i:hover {
    color: #000000;
}

.active-bg {
    background-color: $search-tabs-background !important;
}

.btn-search-cta {
    font-family: $btn-font;
	margin: 5px 0;
    color: $search-cta-text;
    background-color: $search-cta-bg;
}

.btn-search-cta:hover {
    color: $search-cta-text-hover;
    background-color: $search-cta-bg-hover;
}

#myresults {
	max-height: 50vh;
	overflow-y: auto;
}

#searchCategories {
	position: relative;
}


@media screen and (max-width: 1200px) {
    .search-outer-cont {
        width: 80%;
		left: 10%;
        top: 44px;
	}
}

@media screen and (max-width: 991px) {
    .search-outer-cont {
		width: 80%;
		left: 10%;
        top: 44px;
	}
}

@media screen and (max-width: 768px) {
	.search-outer-cont {
		width: 100%;
		left: 0%;
        top: 170px;
	}	
}