/* Product List Styles */

.product-locator #main-content {
    margin: 153px auto 0;
    max-width: 100%;
    padding: 0;
}

.product-locator footer {
    margin: 0 auto 130px auto;
    max-width: 980px;
}

.hidden {
    display: none;
}

#product-lists {
/*     max-width: 1200px; */
    margin: 0 auto;
    
    font-family: 'Montserrat', sans-serif;
}

.product-list {
    flex-wrap: wrap;
    list-style: none;
    display: none;
    max-width: 980px;
    margin: 0 auto;
}

.product-list.active {
    display: flex;
}

.product-list li {
    position: relative;
/*     flex-basis: calc(25% - 10px); */
    flex-basis: calc(33% - 15px);
    margin: 5px;
    box-sizing: border-box;
    text-align: center;
}

.product-list li::before {
    content: '';
    padding-top: 100%;
}

.product-list li a {
    position: relative;
    display: block;
}

.product-list li a:before {
    content: "\f067";
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    transform: translate(-50%, -50%);
    background: #333;
    border-radius: 50%;
    height: 80px;
    width: 80px;
    line-height: 80px;
    text-align: center;
    color: #FFF;
    opacity: 0;
    transition: opacity 0.5s;
    font-size: 50px;
}

.product-list li.selected a:before {
    content: "\f00c";
    background: #002f87;
}

.product-list li a:hover:before,
.product-list li.selected a:before {
    opacity: 1;
}

.product-list img {
    max-width: 100%;
    max-height: 70%;
    transition: 0.5s opacity;
    -webkit-transform: translateZ(0);
}

/*
.product-list li a:hover img,
.product-list li.selected a img {
    opacity: 0.6;
}
*/

.product-list p {
    margin: 15px 0;

    width: 100%;
    background: #FFF;
}
.product-list li {
	height: auto !important;
}

.product-list .button.shop,
.product-list .icon.info {
    display: none;
}

#store-details .button.shop {
    -moz-transform: scale(0.8);
    -webkit-transform: scale(0.8);
    -ms-transform: scale(0.8);
    -o-transform: scale(0.8);
    transform: scale(0.8);
    margin-left: 10px;
    vertical-align: bottom;
}
.results li {
	max-width: 300px;
}
.results li p {
	font: 20px/1.2 'Copperplate-Bold';
}
.results .icon.info,
.results .button.shop {
	/*     display: block; */
	text-transform: lowercase;
	font: 16px 'Copperplate-Bold' !important;
	line-height: 1;
	background-color: #002f87;
	color: #fff;
	padding: 10px;
	border-radius: 4px;
	transform:none !important;
	vertical-align: bottom;
}
.results .icon.info:hover,
.results .button.shop:hover {
	color: #91bfea;
}

/* Responsive Product List */

@media only screen and (max-width: 910px) {
    .product-list li {
        flex-basis: calc(33.333% - 10px);
    }
}

@media only screen and (max-width: 767px) {
    .product-list li {
        flex-basis: calc(50% - 10px);
    }
}

@media only screen and (max-width: 620px) {
    .product-list li {
        flex-basis: 100%;
    }
}

.product-list li.no-products {
    flex-basis: 100%;
}

/* Category Tabs */
.category-tabs {
    list-style: none;
    margin: 0.7em 0 65px;
    padding: 0 40px;
    padding: 0;
    display: table;
    table-layout: fixed;
    width: 100%;
    border-spacing: 10px;
    border-collapse: separate;
    text-align: center;
}
.category-tabs .btn {
	padding: 0;
	min-width: 260px;
	width: 300px;
	height: 130px;
}
.category-tabs .btn + .btn {
	margin-left: 10px;
}

/*
.category-tabs li {
    display: table-cell;
    border: 4px solid #6F6F6F;
    text-align: center;
    transition: all 0.5s;
}
*/
@media only screen and (max-width: 767px) {
    .category-tabs li {
        display: block;
    }
    
    .category-tabs li + li {
        margin-top: 10px;
    }
}

.category-tabs li a {
    color: #0F206C;
    padding: 37px 45px 45px 45px;
    display: block;
    font-family: LucidaGrande,Arial,Helvetica,sans-serif;
    font-size: 24px;
    text-transform: uppercase;
    width: 100%;
}

.category-tabs li.active,
.category-tabs li:hover {
    background: #002f87;
    border-color: #002f87;
}

.category-tabs li.active a,
.category-tabs li:hover a {
    color: #FFF;
}

/* Search Box */
#product-lists .search-box {
    background: #002f87;
    position: fixed;
    left: 0;
    bottom: 0;
    padding: 20px;
    max-width: 100% !important;
    width: 100% !important;
	z-index: 3;
	opacity: 1;
	visibility: visible;
	height: auto;
	text-align: initial;
}
#product-lists .search-box p:first-child,
#product-lists .search-box .button.modern {
	font-family: Helvetica,sans-serif;
	font-size: 16px;
}

#product-lists .search-box p {
    color: #FFF;
    margin: 0;
    padding-left: 22px;
}
#product-lists .search-box .small {
	font-family: Helvetica,sans-serif;
}

#product-lists .search-box h2 {
    color: #FFF;
    font: 40px/1.2 'Montserrat',Arial,Helvetica,sans-serif;
    font-weight: bold;
    display: inline-block;
}

#product-lists .search-box .cell,
#product-lists .search-box input,
#product-lists .search-box select,
#product-lists .search-box .button {
    vertical-align: middle;
}

#product-lists .search-box .text {
    width: 33%;
    padding-left: 20px;
}

.small {
    color: #FFF;
    font: 8.5pt/1.2 'Newberry-Regular',Arial,Helvetica,sans-serif;
    text-align: center;
}

.button.modern {
    color: #FFF !important;
    background: #002f87;
    border-radius: 8px;
    border: 2px solid #FFF;
    box-shadow: none;
    font: 16px/1 'Newberry-Regular',sans-serif;
    padding: 12px 55px;
    transition: 0.5s all;
    height: 45px;
    text-transform: none;
}

#product-lists .search-box .button:hover {
    color: #002f87 !important;
    background: #FFF !important;
}

#product-lists .search-box input,
#product-lists .search-box select {
    height: 45px;
/*     border: none; */
    border-radius: 0;
}
#product-lists .search-box input[type="text"] {
	padding: 4px 10px;
	width: 140px;
}

/* Loading Notification */

.loading-notification {
    position: absolute;
    background: #FFF;
    opacity: 0.7;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    z-index: 2;
}

.loading-notification > * {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.loading-notification h3 {
    text-align: center;
}

.loading-notification h3 {
    font-size: 40px;
}

body.loading .loading-notification {
    display: block;
}
/* Search Box */
#product-lists .search-box {
    background: #002f87;
    position: fixed;
    left: 0;
    bottom: 0;
    padding: 20px;
    width: 100%;
    z-index: 3;
}

#product-lists .search-box p {
    color: #FFF;
    margin: 0;
    padding-left: 22px;
}

#product-lists .search-box h2 {
    color: #FFF;
    font: 40px/1.2 'Newberry-Bold',Arial,Helvetica,sans-serif;
    display: inline-block;
    margin: 16px 0 8px;
}
input:read-only {
	background-color: inherit !important;
}

.search-box ::-webkit-input-placeholder {
/* WebKit browsers */
	color: #999;
  
}
.search-box :-moz-placeholder {
/* Mozilla Firefox 4 to 18 */
	color: #999;
}
.search-box ::-moz-placeholder {
/* Mozilla Firefox 19+ */
	color: #999;
}
.search-box :-ms-input-placeholder {
/* Internet Explorer 10+ */
	color: #999;
}

.search-box .cell,
.search-box input,
.search-box select,
.search-box .button {
    vertical-align: middle;
}

.search-box .text {
    width: 33%;
    padding-left: 20px;
}

.small {
    color: #FFF;
    font: 8.5pt/1.2 'Newberry-Bold',Arial,Helvetica,sans-serif;
    text-align: center;
}

.button.modern {
    color: #FFF !important;
    background: #002f87;
    border-radius: 0;
    border: 2px solid #FFF;
    box-shadow: none;
    font: 16px/1 'Newberry-Regular';
    padding: 12px 55px;
    transition: 0.5s all;
    height: 45px;
    text-transform: none;
}

.search-box .button:hover {
    color: #002f87 !important;
    background: #FFF;
}

.search-box input,
.search-box select {
    height: 45px;
    border: none;
    border-radius: 0;
}

/* Search Results */
#search-results {
    width: 100%;
    max-width: 1720px;
    margin: 0 auto;
    max-height: 650px;
}

#search-results:after {
	content: "";
	display: table;
	clear: both;
}

.results-header {
    width: 100%;
    background: #002f87; /* undo */
    padding: 15px 10px;
    min-height: 46px;
}

.results-header a,
.results-header {
/*     color: #FFF; */
/*     font: bold 16px/1 'Newberry-Regular',Arial,Helvetica,sans-serif; */
}

.results-header .right {
    float: right;
}

#search-results .stores {
    width: 380px;
    display: inline-block;
    vertical-align: top;
    float: left;
}

#search-results .stores .results {
    overflow: auto;
    max-height: 600px;
    vertical-align: top;
}

#search-results .stores .results > div {
    padding: 15px 5px 15px 15px;
    cursor: pointer;
    transition: background 0.5s;
}

#search-results .stores .results > div:hover,
#search-results .stores .results > div.active {
    background: #DDD;
}

#search-results .stores .results > div:before {
    display: table-cell;
    opacity: 0;
    content: "";
    background: url('/images/icons/map-pin.png') no-repeat center center;
    background-size: contain;
    width: 40px;
    height: 40px;
    transition: opacity 0.5s;
}

#search-results .stores .results > div:hover:before,
#search-results .stores .results > div.active:before {
    opacity: 1;
}

#search-results .stores .results > div ~ div {
    border-top: 1px solid #DDD;
}

#search-results .stores p {
    margin: 0;
}

#search-results .stores .fa-star {
    color: 	#FFD700;
}

#search-results .stores img {
    max-width: 120px;
    max-height: 120px;
}

#search-results .stores .image {
    width: 140px;
    padding: 5px 10px;
    vertical-align: middle;
    text-align: center;
}

#search-results .map {
    width: calc(100% - 390px);
    height: 600px;
    display: inline-block;
    float: left;
}

[data-sort].active {
    font-weight: bold;
    text-decoration: underline;
}

#product-lists {
    position: relative;
}

#product-lists p {
    font-family: 'Montserrat';
    margin: 15px;
}

#product-lists .product-list p {
	font:24px/1.2 'Montserrat';
	font-weight: bold;
    margin: 15px 0;
}

#search-results h3 {
    font-family: 'Montserrat';
    font-weight: bold;
    color: #002f87;
}

#search-results {
    width: 100%;
    max-height: 650px;
}

#search-results:after {
    content: "";
  display: table;
  clear: both;
}

.results-header {
    width: 100%;
/*     background: #002f87; */
    padding: 15px 10px;
    min-height: 46px;
}

.results-header a,
.results-header {
    color: #FFF; /* undo */
/*     font: bold 16px/1 'Newberry-Regular',Arial,Helvetica,sans-serif; */
}

.results-header .right {
    float: right;
}

#search-results .stores {
    width: 380px;
    display: inline-block;
    vertical-align: top;
    float: left;
}

#search-results .stores .results {
    overflow: auto;
    max-height: 600px;
    vertical-align: top;
}

#search-results .stores .results > div {
    padding: 15px 5px 15px 15px;
    cursor: pointer;
    transition: background 0.5s;
}

#search-results .stores .results > div:hover,
#search-results .stores .results > div.active {
    background: #DDD;
}

#search-results .stores .results > div:before {
    display: table-cell;
    opacity: 0;
    content: "";
    background: url('/images/icons/map-pin.png') no-repeat center center;
    background-size: contain;
    width: 40px;
    height: 40px;
    transition: opacity 0.5s;
}

#search-results .stores .results > div:hover:before,
#search-results .stores .results > div.active:before {
    opacity: 1;
}

#search-results .stores .results > div ~ div {
    border-top: 1px solid #DDD;
}

#search-results .stores p {
    margin: 0;
}

#search-results .stores .fa-star {
    color: 	#FFD700;
}

#search-results .stores img {
    max-width: 120px;
    max-height: 120px;
}

#search-results .stores .image {
    width: 140px;
    padding: 5px 10px;
    vertical-align: middle;
    text-align: center;
}

#search-results .map {
    width: calc(100% - 390px);
    height: 600px;
    display: inline-block;
    float: left;
}

[data-sort].active {
    font-weight: bold;
    text-decoration: underline;
}

#product-lists {
    position: relative;
/*     border-top: 90px solid #002F87; */
    padding: 65px 0;
}

#product-lists p {
    font-family: 'Montserrat';
}

#product-lists .product-list p {
	font:20px/1.2 'Montserrat';
	font-weight: bold;
	text-transform: uppercase;
    margin: 15px 0;
}
/*
#product-lists .product-list p::after {
	content: "";
	display: block;
	width: 64px;
	height: 2px;
	margin: 15px auto 0;
	background-color: #002f87;
}
*/

#search-results h3 {
    font-family: 'Montserrat';
    font-weight: bold;
    color: #002f87;
}

/* Map Styles */

.map.no-data {
    display: none !important;
}

.mapboxgl-popup-close-button {
    font-size: 30px;
    right: 10px !important;
    color: #FFF;
}

.mapboxgl-popup-content p {
    font: normal 16px/1 'Newberry-Regular',serif;
}

.mapboxgl-popup-content p:last-child {
    margin-bottom: 0;
}

.mapboxgl-popup-content {
    padding: 20px !important;
}

.mapboxgl-popup-content p {
    text-align: left;
}

#search-results .mapboxgl-popup-content h3 {
/*     color: #FFF; */
	font-size: 24px /* undo */
}

/*
.marker {
  background: url('/images/icons/map-pin.png');
  background-size: cover;
  width: 50px;
  height: 50px;
  cursor: pointer;
}
*/
.mapboxgl-popup {
  max-width: 350px;
}

.mapboxgl-popup h3 {
    display: block;
    color: #0F206C;

    padding: 10px 20px;
    margin: -20px 0 20px -20px;
    width: calc(100% + 40px);
    text-align: left;
}

.mapboxgl-popup-content {
  text-align: center;
  font-family: 'Montserrat', sans-serif;
}

#map-container {
    width: 100%;
    height: 100%;
}

.view-trigger {
    display: none;
}

@media only screen and (max-width: 767px) {
    
    #banner.full-width {
        padding: 75px 5% 45px 5%;
    }
    
    #banner.full-width h1 {
       font-size: 45px; 
    }
    
    .search-box h2 {
        font-size: 30px;
    }
    .search-box .table {
        display: block;
    }

    .search-box .cell {
        display: block;
        width: 100%;
        text-align: center;
    }
    
    .search-box input,
    .search-box select,
    .search-box .button {
        width: 49%;
        margin-bottom: 10px;
    }
    
    .button.modern {
        padding: 12px 12px;
    }
    
    #search-results .stores {
        display: block;
        width: 100%;
        height: 300px;
    }
    #search-results .map {
        display: none;
        width: 100%;
        height: 300px;
    }
    
    #search-results .view-trigger {
        display: inline-block;
        margin: 0;
        text-align: center;
        width: 49%;
        padding: 10px 5px;
    }
    
    .results-header {
        text-align: center;
    }
    
    .results-header .right {
        float: none;
        margin-top: 10px;
        display: inline-block;
    }
    
    #search-results .stores.hidden,
    #search-results .map.hidden {
        display: none;
    }
    
    #search-results .stores,
    #search-results .map {
        display: block;
    }
    
    #search-results {
        height: 100%;
    }
    
    #search-results .stores .results {
        max-height: 320px;
    }
}

/* Store Details */
.store-navigator {
    text-align: center;
    padding: 15px 30px;
    background: #E1E1E1;
}

.store-navigator .prev {
    float: left;
}

.store-navigator .next {
    float: right;
}

.store-details h2 {
    font: bold 25px/1.2 'Montserrat',sans-serif;
    color: #002f87;
}

.store-details p {
    font-family: 'Montserrat',sans-serif;
}


#store-details .map-container {
    height: 300px ;
}

#store-map {
    width: 100%;
    height: 100%;
}

#store-details .cell {
    padding: 20px;
}

.available-products h3 {
    font: 25px/1.2 'Montserrat',Arial,Helvetica,sans-serif;
    padding: 10px;
    background: #002f87;
    color: #FFF;
    text-align: center;
    
}

.available-products {
    text-align: center;
}

.available-products message {
    display: none;
}

.available-products .results {
    overflow-y: auto;
}

.available-products .results ul {
    list-style: none;
    display: table;
    margin: 0 auto;
}

.available-products .results li {
    display: table-cell;
    text-align: center;
    vertical-align: middle;
    padding: 20px;
}

.available-products .results img {
    height: 200px;
}

@media only screen and (max-width: 767px) {
    #store-details .cell {
        width: 100%;
        display: block;
    }
    .available-products message {
        display: inline-block;
    }
}

@media only screen and (max-width: 680px) {
    #connect > form > h2 > small {
	    padding: 0;
	    height: 50px;
	    width: 58px;
	    display: inline-block;
	    vertical-align: middle;
    }
    #connect > form > h2 {
	    margin: 0;
    }
    #connect > form > h2 > span:after {
	    content: 'Click here to search!';
	    font: 12pt 'Copperplate',Arial,Helvetica,sans-serif;
	    display: block;
    }
    #connect > form > h2 > span:last-child {
	    display: none;
    }
}


/* Loading Notification */

.loading-notification {
    position: absolute;
    background: #FFF;
    opacity: 0.7;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    z-index: 2;
}

.loading-notification > * {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.loading-notification h3 {
    text-align: center;
}

.loading-notification h3 {
    font-size: 40px;
}

body.loading .loading-notification {
    display: block;
}

/* Update Styles */

h2 {
	font-size: 62px;
	font-family: 'Montserrat';
	font-weight: bold;
	margin-bottom: 15px;
}

.ps-field {
	border: 1px solid #707070;
	padding: 30px 50px;
	height: 97px;
	background-color: #fff;
	border-radius: 10px;
	font: 24px/1.33 'Montserrat';
/* 	font-weight: 600; */
}

/* Default Placeholder styles */
.ps-field ::-webkit-input-placeholder {
/* WebKit browsers */
    color: #0F206C;
}
.ps-field :-moz-placeholder {
/* Mozilla Firefox 4 to 18 */
    color: #0F206C;
    opacity: 1;
}
.ps-field ::-moz-placeholder {
/* Mozilla Firefox 19+ */
    color: #0F206C;
    opacity: 1;
}
.ps-field :-ms-input-placeholder {
/* Internet Explorer 10+ */
    color: #0F206C;
    opacity: 1;
}

.search-2 {
	display: flex;
	max-width: 800px;
	margin: 25px auto 85px;
}
.search-2 > :first-child {
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
	width: 60%;
	min-width: 465px;
}
.search-2 > :last-child,
.search-2 .select2-container--default .select2-selection--single {
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
	border-left: none;
	height: 97px !important;
}
.search-2 .select2-container {
	min-width: 0;
}
.search-2 > :last-child {
	width: 40%;
}
.search-2 .select2-container--default .select2-selection--single .select2-selection__rendered {
	line-height: 97px;
	padding-right: 90px;
	font-weight: 400;
}
.search-2 .select2-container--default .select2-selection--single .select2-selection__arrow,
.prod-select .select2-container--default .select2-selection--single .select2-selection__arrow {
	border-left: none;
}

.search-1 .prod-select {
/* 	border: none; */
}
.prod-select {
	position: relative;
	display: block;
	padding: 0;
}
.prod-select::before {
	content: "\f002";
	font-family: "Font Awesome 5 Pro";
	font-size: 28px;
	font-weight: bold;
	color: #0F206C;
	position: absolute;
	top: 50%;
	left: 20px;
	transform: translateY(-50%);
	z-index: 1;
}

.prod-select select {
	padding: 33px 50px 34px;
	background-color: transparent;
	padding-left: 80px;
	width: 100%;
	box-sizing: border-box;
	z-index: 0;
	color: #0F206C;
	text-transform: uppercase;
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
}
.prod-select .select2-container {
	width: 100% !important;
}
.prod-select .select2-container--default .select2-selection--single .select2-selection__rendered {
	padding: 0 100px 0 70px;
}

.step {
	text-align: center;
}

.step.one .prodsearch-form {
	text-align: center;
}

.step.two {
	flex-wrap: nowrap;
	justify-content: center;
}
.step.two > div {
	flex-basis: 55%;
}
.step.two > div + div {
	border-left: 1px solid #707070;
}
.step.two .prodsearch-form {
	max-width: 650px;
}
.search-col {
	display: inline-flex;
	flex-flow: column nowrap;
	align-items: center;
}
.step.two .search-col {
	max-width: 45%;
	padding: 0 60px;
}
.prod-col {
	max-width: 55%;
}
.search-col p {
	font-size: 24px;
	color: #707070;
}

.prodsearch-form {
	flex-grow: 1;
	flex-direction: column;
	flex-wrap: nowrap;
	max-width: 750px;
	margin: 30px auto 0;
	text-align: left;
}
.prodsearch-form > * {
	width: 100%;
}
.prodsearch-form .buttons {
	margin-top: auto;
}

.filters {
	
}

.filter-list {
	margin: 40px 0;
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
	justify-content: flex-start;
	gap: 10px;
}
.filter-list li {
	position: relative;
	display: inline-block;
	padding: 6px 11px;
	background-color: #707070;
	border-radius: 5px;
	color: #fff;
	font-size: 16px;
	text-transform: uppercase;
	cursor: pointer;
	transition: background-color 0.3s ease 0s;
}
.filter-list li::before {
	content: "X";
	font-weight: bold;
	font-size: 11px;
	line-height: 23px;
	height: 23px;
	width: 23px;
	border-radius: 50%;
	text-align: center;
	color: #0F206C;
	background-color: #E2E2E2;
	position: absolute;
	top: -12px;
	right: -12px;
	z-index: 2;
	
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease 0s;
}
.filter-list li:hover {
	background-color: #0F206C;
}
.filter-list li:hover::before {
	opacity: 1;
	visibility: visible;
}
/*
.filter-list li + li {
	margin-left: 5px;
}
*/

.buttons {
	text-align: center;
}

.buttons .btn + .btn {
	margin-left: 30px;
}

.text-link {
	color: #707070;
	font-size: 18px;
	text-transform: uppercase;
	text-decoration: underline !important;
}
.stores h3 {
    font-size:24px;
}

.store-item {
	padding: 20px 30px;
	background-color: #F4F4F4;
	border-radius: 25px;
	font-size: 16px;
}
.store-item h3 {
	font-size: 30px;
	color: #0F206C;
}
.store-item .text-link {
	font-size: 14px;
}

.or-num {
	display: inline-block;
	height: 50px;
	width: 50px;
	line-height: 50px;
	font-family: 'Montserrat';
	font-weight: bold;
	font-size: 24px;
	text-align: center;
	border-radius: 50%;
	color: #fff;
	background-color: #F6921E;
	counter-increment: markerNum;
}
.marker.or-num::before {
	content: counter(markerNum);
	font-size: 24px;
	color: #fff;
}

.results-header > div {
	display: flex;
}

.results-header .search-1,
.results-header .search-2,
.results-header .btn {
	display: inline-block;
	vertical-align: middle;
}
.results-header .search-1 {
	flex-grow: 1;
}
.results-header .search-2 {
	display: inline-flex;
}
.results-header .search-2,
.results-header .btn {
	margin-left: 40px;
}

.reset-form {
	font-size: 20px;
	font-weight: 500;
	color: #707070;
	text-transform: uppercase;
}
.reset-form i {
/* 	font-size: 30px; */
}
.reset-form:hover,
.reset-form:active {
	color: #0F206C;
}
.btn.reset-form {
	color: #fff;
}
.buttons .reset-form {
	min-width: 150px;
}
.buttons .btn[type="submit"] {
	min-width: 240px;
}
#search-results .filter-list {
	margin: 10px 0 0 10px;
}

@media screen and (max-width: 1050px) {
	.buttons .btn + .btn {
		margin-left: 0;
		margin-top: 25px;
	}
}
@media screen and (max-width: 900px) {
}
@media screen and (max-width: 670px) {
	.search-2 > :first-child {
		min-width: 0;
	}
	.search-2:first-child {
		justify-content: center;
	}
	.step.two {
		flex-wrap: wrap;
	}
	.step.two > div {
		flex-basis: 100%;
	}
	.step.two .search-col,
	.prod-col {
		max-width: 100%;
	}
	.step.two .search-col {
		padding: 0 25px;
	}
	.search-col p {
		margin: 15px auto !important;
	}
	.prodsearch-form .buttons {
		margin-top: 40px;
	}
	.buttons .btn + .btn {
		margin-left: 0;
		margin-top: 0;
	}
	.category-tabs .btn + .btn {
		margin-left: 0;
	}
}
@media screen and (max-width: 540px) {
	
}