@import url('//fonts.googleapis.com/css?family=Lato:300,700|Merriweather:400,400i,700');

@font-face {
    font-family: 'Alternate Gothic No2 D Regular';
    src: url('../fonts/alternate_gothic_no2_d_regular-webfont.woff2') format('woff2'),
         url('../fonts/alternate_gothic_no2_d_regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

body {
	color: #1A1411;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

@media (min-width: 320px) {
	body,
	input {
		font-family: 'Lato';
	}
}

h1,h2,h3 {
	font-weight: 800;
}

h4,h5 {
	font-weight: 400;
}

a {
	outline: none;
	text-decoration: none;
	cursor: pointer;
	color: #ff9b88;
}

	a:hover,
	a:focus {
		color: #dd8270 !important;
		text-decoration: none;
		outline: none;
	}
	
	a.black {
		color: #777;
	}
	
		a.black:hover {
			color: #ff9b88;
		}

ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

img {
	width: 100%;
	height: auto;
}

input, select, textarea, button {
	font-family: 'Lato';
	outline: none !important;
	box-shadow: none !important;
}

textarea:hover, 
input:hover, 
textarea:active, 
input:active, 
textarea:focus, 
input:focus,
button:focus,
button:active,
button:hover
{
	border-color: initial !important;
    outline: 0px !important;
    -webkit-appearance: none;
}

iframe, embed {
	border: 0;
}

::selection {
	background: #ff9b88;
	color: #fff;
}

/* Globals */

.italic {
	font-style: italic;
}

.strong {
	font-weight: bold;
}

.blur {
    -webkit-filter: blur(12px);
    -moz-filter: blur(12px);
    -o-filter: blur(12px);
    -ms-filter: blur(12px);
    filter: blur(12px);
    transition: all .5s ease;
    cursor: pointer;
}

.underlay {
	position: fixed;
	display: none;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	-webkit-opacity: 0.6;
	-moz-opacity: 0.6;
	opacity: 0.6;
	background: #000;
	z-index: 1001;
}

.relative {
	position: relative;
}

.margin-top {
	margin-top: 30px !important;
}

.margin-bottom {
	margin-bottom: 30px !important;
}

/* Flex layout */
	
.flex-row {
	display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.flex-col {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}

@media (min-width: 768px) {
	.flexbox {
	    display: -ms-flexbox;
	    display: -webkit-flex;
	    display: flex;
	    -ms-flex-align: center;
	    -webkit-align-items: center;
	    -webkit-box-align: center;
	    align-items: center;
	}
}

/* Set fixed widths for flex rows for Safari */

	@media (min-width: 768px) and (max-width: 991px) {
		_::-webkit-:not(:root:root), .flex-col.col-sm-6 {
			width: 49.9% !important;
		}
		_::-webkit-:not(:root:root), .flex-col.col-md-6 {
			width: 100% !important;
		}
	}
	@media (min-width: 768px) {
		_::-webkit-:not(:root:root), .flex-col.col-md-6 {
			width: 49.9%;
		}
		_::-webkit-:not(:root:root), .flex-col.col-sm-6 {
			width: 24.9%;
		}
		_::-webkit-:not(:root:root), .flex-col.col-md-4 {
			width: 33.199%;
		}
		_::-webkit-:not(:root:root), .flex-col.col-md-3 {
			width: 24.9%;
		}
		_::-webkit-:not(:root:root), .flex-col.col-md-15 {
			width: 20%;
		}
	}
	@media (max-width: 991px) {
		_::-webkit-:not(:root:root), .flex-col.col-xs-6 {
			width: 49.8%;
		}
	}

/* Header */

header {
	position: relative;
	z-index: 10;
	background: #fff;
}

	#nav-wrapper,
	header .header-container.affix {
		position: fixed;
		top: 0;
		width: 100%;
		z-index: 11;
	}
	
	header .logo {
		margin: 90px 0 50px;
	}

	header .logo img {
		display: block;
		text-align: center;
		margin: 0 auto;
		max-width: 75%;
	}

/* Navigation */

.navbar {
	height: 40px;
	line-height: 40px;
	margin: 0 !important;
	padding: 0 !important;
	border: none;
	border-radius: 0;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	background: #fff;
}

	.navbar .container-fluid {
		border-bottom: 1px solid #ddd;
	}

.navbar-nav {
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: 600;
	font-size: 12px;
}

	.navbar-nav li {
		display: inline-table;
		margin-right: 2.5vw;
	}
	
		.navbar-nav li:last-child {
			margin: 0;
		}
		
		.navbar-default .navbar-nav > li > a {
			color: initial;
			font-weight: normal;
		}
		
			.navbar-default .navbar-nav > li:not(.current-menu-item) > a:hover,
			.navbar-default .navbar-nav li.current-menu-item {
				border-bottom: 3px solid #ff9b88;
			}
			
	.navbar-default .navbar-nav>.active>a, .navbar-default .navbar-nav>.active>a:hover, .navbar-default .navbar-nav>.active>a:focus {
		background: #fff;
		color: initial;
	}
	
	@media (min-width: 992px) and (max-width: 1199px) {
		.navbar-nav li {
			margin-right: 1.5vw;
		}	
	}
	
	@media (min-width: 768px) and (max-width: 991px) {
		.navbar-nav li {
			margin-right: 0;
		}
		
		.navbar-default .navbar-nav > li > a {
			padding-right: 4px;
		}
	}
		
	@media (min-width: 768px) {
		
		.navbar .container-fluid {
			height: 50px;
		}
		
		.navbar-nav,
		.navbar-nav li {
			float: none !important;
		}
	}

.navbar-default .navbar-toggle {
	z-index: 10;
	float: left;
	margin-left: 15px;
	background-color: #FF9B88 !important;
	border: none;
	width: 40px;
	padding: 3px;
	font-size: 20px;
}
	
	.navbar-default .navbar-toggle span:before {
		font-family: "fontawesome";
		content: "\f0c9";
		color: #fff;
	}
	
	.navbar-default .navbar-toggle.open {
		color: #1a1411;
		background-color: #fff !important;
	}
	
		.navbar-default .navbar-toggle.open span:before {
			color: #1a1411;
			content: "\f00d";
	}
	
	@media (max-width: 767px) {
		
		.navbar-collapse,
		.navbar-header {
			background: #fff;
		}
		
		.navbar {
			height: auto;
		}
		
		.navbar-nav li {
			display: block;
			margin: 0;
		}
		
		.navbar-header .search-icon {
			margin: 0 15px 0 0;
			line-height: 60px;
			font-size: 30px;
		}
	}

/* Search */

#search {
	display: none;
	background: #fff;
	box-shadow: 0 0 10px #ddd; 
}

	#search .form-group {
		position: relative;
		margin: 5px 0;
	}
	
	#search .form-group > input {
		border: none;
		padding: 0;
	}

	#search .form-group > button {
		position: absolute;
		right: 0;
		top: 5px;
		background: #eee;
		color: #666;
	}

/* Hero */

#hero {
	position: relative;
	min-height: 100px;
	margin-top: 50px;
	margin-bottom: 50px;
}

	#hero .responsive {
		height: 300px;
		background-position: 50% 50%;
		background-size: cover;
	}
	
		#hero .responsive:after {
			content: '';
			position: absolute;
			top: 0;
			left: 0;
			right: 0;
			bottom: 0;
			width: 100%;
			height: 100%;
			z-index: 1;
			background: hsla(360, 50%, 80%, .6);
		}
	
	#hero .title {
		text-align: center;
		position: absolute;
	    z-index: 1;
	    top: 50%;
	    left: 50%;
	    -webkit-transform: translate(-50%,-50%);
	    -ms-transform: translate(-50%,-50%);
	    transform: translate(-50%,-50%);
	}
	
		#hero .title h1 {
			font-family: 'Alternate Gothic No2 D Regular';
			font-size: 3em;
			letter-spacing: 1px;
			font-weight: normal;
			text-transform: uppercase;
			text-shadow: 0 0 70px #fff;
		}
		
	#hero .title .categories {
		margin: 20px 0 0;
	}
	
		#hero .title .categories > a {
			font-size: .9em;
			color: #fff;
			margin-right: 30px;
		}
		
			#hero .title .categories > a:last-child {
				margin: 0;
			}
			
	@media (max-width: 767px) { 
		#hero .title {
			width: 85%;
		}
	}

/* Content */

#maincontent {
	background: #fff;
	margin: 0 0 60px;
}

	#maincontent.nobg {
		background: transparent;
	}

	#maincontent.page {
		margin-top: 90px;
	}
	
	#maincontent article .text > p,
	#maincontent.page p, 
	#maincontent .text {
		font-family: 'Merriweather';
	}
	
	#maincontent.store {
		margin: 70px 0 0;
		background: none;
	}
	
	#maincontent h1 {
		font-size: 44px;
		font-weight: bold;
		line-height: 54px;
		margin: 0 0 25px 0;
	}
	
	#maincontent h2 {
		font-size: 1.5em;
		font-weight: normal;
		text-transform: uppercase;
		line-height: 1.5em;
		margin: 0;
	}
	
	#maincontent h4 {
		line-height: 1.5;
	}
		
	#maincontent p {
		font-size: 1.1em;
		line-height: 1.7em;
		margin: 0 0 20px 0;
	}
	
	#maincontent .preamble {
		font-size: 1.35em;
		font-weight: 600;
	}
	
	#maincontent .bigger {
		font-size: 1.5em;
	}
	
	#maincontent .text a {
		text-decoration: underline;
	}
	
	#maincontent .text > ul {
		list-style: disc;
	}
	
	#maincontent .text > ul,
	#maincontent .text > ol {
		margin: 0 0 30px;
		padding: 0 30px;
	}
	
		#maincontent .text > ul > li,
		#maincontent .text > ol > li {
			line-height: 1.7em;
			font-size: 1.1em;
			margin-bottom: 14px;
		}
	
	#maincontent .header {
		border-bottom: 1px solid #ddd;
		margin-bottom: 10px;
	}

		#maincontent .header .meta {
			font-size: 1em;
			color: #bfa5a5;
			margin: 0;
		}
		
		#maincontent .header .category {
			color: #ccc;
			font-weight: 600;
			text-transform: uppercase;
		}
		
		#maincontent .header h2 > a {
		    font-family: 'Alternate Gothic No2 D Regular';
		    font-size: 1.75em;
			color: #171717;
		}
		
	#maincontent article {
		margin: 0 0 80px 0;
		border-bottom: 1px solid #ddd;
	}
	
		#maincontent article:last-of-type {
			border: none;
		}
	
	#maincontent .bottom {
		margin-top: 40px;
	}
	
		#maincontent .bottom .comments {
			color: #bbb;
		}
	
/* Backgrounds */

.bg-bees {
	background-image: 	url('/wp-content/uploads/2017/06/flowers.jpg'),
						url('/wp-content/uploads/2017/06/bees.jpg'),
						url('/wp-content/uploads/2021/03/butterflies.jpg');
	background-position: left 10vh,
						 right 50vh,
						 0% 90%;
	background-repeat: no-repeat;
	background-size: 20vw;
	min-height: 120vh;
}

@media (max-width: 767px) {
	.bg-bees {
		background-image: 	url('/wp-content/uploads/2017/06/flowers.jpg'),
							url('/wp-content/uploads/2017/06/bees.jpg');
		background-position: center top,
							 center bottom; 
		background-size: 60%;
	}
	
	.bg-bees:before {
		content: '';
		z-index: 0;
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		width: 100%;
		height: 100%;
		background: rgba(255,255,255,.6);
	}
}
		
/* Tags */

.tags {
	margin: 20px 0;
	text-transform: uppercase;
}

/* Comments */

#comments {
	border: 1px solid #eee;
	padding: 30px;
}

/* Paging */

.paging {
	clear: both;	
}

	.paging .line {
		border-top: 1px solid #ddd;
		margin: 0 15px;
		padding-top: 20px;
	}

	.paging a {
		display: block;
		padding: 15px 30px;
		background: #313131;
		text-align: center;
		color: #fff;
		text-transform: uppercase;
		font-size: .9em;
		font-weight: bold;
		letter-spacing: 1px;
	}
	
		@media (min-width: 768px) {
			.paging a {
				min-width: 200px;
			}
			
			.paging .left > a {
				float: left;
			}
			
			.paging .right > a {
				float: right;
			}
		}
		
		@media (max-width: 767px) {
			.paging div {
				margin-bottom: 10px;
			}
			
			.paging div:last-child {
				margin: 0;
			}
		}

/* Sidebar */

sidebar .widget {
	text-align: center;
	padding-top: 40px;
	padding-bottom: 40px;
	border-bottom: 1px solid #ddd;
}

	sidebar.mobile {
		margin: -80px 0 0;
		background: url('../images/bg-leaf-pattern.png');
		padding: 30px 0 0;
	}

	sidebar .widget:first-child {
		padding-top: 0;
	}
	
	sidebar .widget > h3 {
		font-family: 'Alternate Gothic No2 D Regular';
		text-transform: uppercase;
		font-size: 1.6em;
		font-weight: normal;
		letter-spacing: 4px;
		margin-bottom: 20px;
	}
	
	sidebar p {
		margin: 0 !important;
	}
	
	sidebar .widget a {
		color: initial;
	}
	
		sidebar .widget a:hover {
			color: #fba58e;
			text-decoration: underline;
		}
	
	sidebar ul > li {
		margin-bottom: 7px;
	}
	
	/* Popular posts */
		
	sidebar .popular-posts ul.wpp-list li {
		position: relative;
		margin-bottom: 20px;
	}
	
		sidebar .popular-posts ul.wpp-list img {
			opacity: .4;
		}

		sidebar .popular-posts ul.wpp-list li:before {
			content: '';
			position: absolute;
			top: 0;
			bottom: 0;
			left: 0;
			right: 0;
			width: 100%;
			height: 100%;
		}
		
			sidebar .popular-posts ul.wpp-list li:nth-child(1) img {
				-webkit-filter: sepia(100%) hue-rotate(-10deg) saturate(300%);
			}
			
			sidebar .popular-posts ul.wpp-list li:nth-child(2) img {
				-webkit-filter: sepia(100%) hue-rotate(150deg) saturate(300%);
			}
			
			sidebar .popular-posts ul.wpp-list li:nth-child(3) img {
				-webkit-filter: sepia(100%) hue-rotate(35deg) saturate(300%);
			}
			
			sidebar .popular-posts ul.wpp-list li:hover {
				-webkit-filter: brightness(110%) saturate(200%);
				-o-transition:.3s;
				-ms-transition:.3s;
		  		-moz-transition:.3s;
		  		-webkit-transition:.3s;
		  		transition:.3s;
			}
			
		sidebar .popular-posts a.wpp-post-title {
		    position: absolute;
		    top: 50%;
			left: 50%;
    		-webkit-transform: translate(-50%,-50%);
    		-ms-transform: translate(-50%,-50%);
    		transform: translate(-50%,-50%);
		    font-weight: bold;
		    font-size: 1.3em;
		    color: #fff;
		    text-shadow: 0 0 10px #666;
		}
			
			sidebar .popular-posts a.wpp-post-title:hover {
				text-decoration: none;
				color: #fff !important;
			}
			
	/* Newsletter */
	
	sidebar .form-group {
		position: relative;
	}
		sidebar .form-group input {
			border-color: #FF9B88;
			border-radius: 0;
			-webkit-border-radius: 0;
			-moz-border-radius: 0;
		}
		
		sidebar .form-group > button {
			position: absolute;
			float: right;
			right: 0;
			top: 0;
			height: 40px;
		}
	
	sidebar .mc4wp-alert > p {
		font-weight: bold;
	}
	
	/* Tweets */
	
	sidebar #ctf {
		text-align: left;
		font-size: .9em;
	}
		
		sidebar #ctf a {
			color: #d87f6e;
		}
	
		sidebar #ctf.ctf-super-narrow .ctf-author-box {
			float: none;
		}
	
		sidebar #ctf .ctf-tweet-meta {
			float: right;
		}
		
	/* Instagram */
		
	sidebar .pllexislider {
		margin-bottom: 15px;
	}

/* Related posts */

#related-posts {
	text-align: center;
	padding: 40px 0;
}

	#related-posts h3 {
		text-transform: uppercase;
		font-weight: normal;
		letter-spacing: 2px;
		font-size: 1.4em;
		margin: 0 0 30px 0;
	}

	#related-posts .bg-hover {
	    position: absolute;
	    display: none;
	    top: 0;
	    left: 15px;
	    right: 15px;
	    background: rgba(255,255,255,.8);
	    height: 100%;
	}
	
		#related-posts .related:hover .bg-hover {
			display: block;
		}
		
	#related-posts .bg-fade {
		position: absolute;
	    top: 0;
	    left: 15px;
	    right: 15px;
	    background: rgba(255,255,255,.1);
	    height: 100%;
	}
	
		#related-posts .related:hover .bg-fade {
			background: rgba(255,255,255,.8);
		}

	#related-posts .text {
		position: absolute;
		text-transform: uppercase;
		width: 100%;
		top: 50%;
		text-align: center;
		-webkit-transform: translate(0,-50%);
		-ms-transform: translate(0,-50%);
		transform: translate(0,-50%);
	}
		
		#related-posts .text h4 {
			font-size: 15px;
			letter-spacing: 1px;
			margin: 0 0 5px 0;
		}
		
				#related-posts .text h4.alternate {
					font-family: 'Alternate Gothic No2 D Regular';
					font-size: 3em;
					letter-spacing: 1px;
					color: #fff;
					text-shadow: 0 0 3px #333;
				}
	
		#related-posts .text p {
			font-size: 12px;
			font-style: italic;
		}
		
	#related-posts a {
		color: initial !important;
	}
	
	#related-posts .crp_related {
		width: 100vw;
	}
	
	#related-posts .crp_title {
		position: absolute;
		left: 0;
		right: 0;
		text-transform: uppercase;
		top: 50%;
		text-align: center;
		-webkit-transform: translate(0,-50%);
		-ms-transform: translate(0,-50%);
		transform: translate(0,-50%);
		font-size: 15px;
		letter-spacing: 1px;
		padding: 30px 10px;
		background: rgba(255,255,255,.8);
	}
	
	@media (min-width: 768px) {
		#related-posts .crp_title {
			visibility: hidden;
		}
	
		#related-posts .related:hover .crp_title {
			visibility: visible;
		}
	}
	
	@media (max-width: 767px) {
		#related-posts .related {
			margin: 0 0 30px;
		}
	}
	
	

/* Social */

.share {
	display: flex;
	margin-bottom: 50px;
}

.addtoany_share_save_container {
	text-align: center;
}

ul.social-networks > li {
	display: inline-block;
	margin-right: 10px;
	
}
	ul.social-networks > li > a {
		display: inline-block;
		background: #FF9B88;
	    border-radius: 50%;
	    width: 35px;
	    line-height: 35px;
	    text-align: center;
    }

	 ul.social-networks > li:last-child {
		margin: 0;
	}

	ul.social-networks > li > a {
		color: #fff;
		font-size: 1.5em;
	}
	
	@media (min-width: 768px) and (max-width: 991px) {
		sidebar ul.social-networks > li {
			margin-right: 5px;
		}
	}

/* Embeds */

.embed-responsive {
	margin-bottom: 30px;
}

/* Author */

#authorinfo {
	margin: 60px 0 40px 0;
	color: #555;
	border: 3px solid;
}

	#authorinfo h4 {
		font-size: 44px;
		letter-spacing: 1px;
		margin-bottom: 12px;
	}
	
	#authorinfo img {
		max-width: 12.5%;
		margin: 0 auto 15px auto;
		display: block;
	}

	#authorinfo p {
		font-style: italic;
		font-size: 17px;
		line-height: 27px;
		margin-bottom: 8px;
	}
	
/* Maps */

.acf-map {
	width: 100%;
	height: 60vh;
}

	.acf-map.small {
		height: 280px;
	}

	.acf-map h5.headline,
	.acf-map p {
		margin: 0 !important;
		padding: 0 !important;
	}
	
	.acf-map h5.headline {
		text-transform: uppercase;
		font-weight: bold;
	}
	
	.acf-map a > p {
		color: #555;
	}
	
	.acf-map .pricerange {
		margin-top: 5px;
	}
	
/* Breadcrumbs */

p#breadcrumbs {
	font-size: 1em;
}

/* Stores */

#maincontent.store .header {
	margin: 0 0 30px;
	padding: 0 !important;
	border: none;
}

	#maincontent.store .header h1 {
		font-family: 'Alternate Gothic No2 D Regular';
		font-size: 3em;
		text-transform: uppercase;
		letter-spacing: 4px;
		font-weight: normal;
		margin: 0;
	}
	
	#maincontent.store .header h3 {
		font-size: 1.3em;
		font-weight: normal;
		line-height: 1.4;
		margin: 0 0 10px;
	}
	
		#maincontent.store .header h3.pink {
			color: #FA897E;
			line-height: 1.6;
			margin-top: 15px;
		}
	
	#maincontent.store .header p {
		margin: 0;
	}
	
	#maincontent.store h4 {
		font-weight: bold;
		text-transform: uppercase;
		letter-spacing: 4px;
		font-size: 1em;
		margin-bottom: 10px;
		padding-bottom: 10px;
		border-bottom: 1px solid #eee;
	}
	
	#maincontent.store .header .padding-bottom {
		padding-bottom: 15px;
	}
	
	#maincontent.store .bg-white.padding {
		padding: 30px;
	}
	
	#maincontent.store .gallery {
		overflow-x: auto;
		overflow-y: hidden;
		width: 100%;
	}
	
		#maincontent.store .gallery ul {
			width: 100vw;
		}
		
		#maincontent.store .gallery ul li {
			float: left;
			margin-right: 15px;
		}
			
			#maincontent.store .gallery ul li:last-child {
				margin: 0;
			}
		
		#maincontent.store .gallery ul li img {
			display: inline;
			width: 10vw;
		}
	
	@media (max-width: 767px) {
		#maincontent.store .bg-white.padding {
			margin: 0 -15px;
			padding: 15px;
		}
		
		#maincontent.store .gallery ul li img {
			width: 26vw;
		}
		
		.acf-map.small {
			margin: -30px -15px 0;
			width: 100vw;
		}
	}

/* Store search */

#maincontent.store .thriftsearch {
	background: #ebeff0;
	padding: 15px;
	border-bottom: 2px solid #ccc;
	margin: 30px 0 60px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px;
	-webkit-box-shadow: 0 50px 50px #f5f5f5;
	box-shadow: 0 50px 50px #f5f5f5;
}

	#maincontent.store .thriftsearch.noshadow {
		margin: 0;
		padding: 10px;
		-webkit-box-shadow: none;
		box-shadow: none;
	}

	#maincontent.store .bootstrap-select.btn-group .dropdown-toggle .filter-option {
		padding-left: 30px;
		line-height: 2;
		letter-spacing: 0;
		text-transform: none;
		color: #444;
	}
	
	.bootstrap-select.btn-group .dropdown-menu.inner {
		text-transform: uppercase;
	}
	
		.bootstrap-select.btn-group .dropdown-menu li a > span {
			font-family: 'Lato', sans-serif !important;
		}
	
	#maincontent.store .thriftsearch .form-control-feedback {
		left: 15px;
		right: auto;
		width: 40px;
		height: 40px;
		line-height: 40px;
		color: #ccc;
	}
	
	#maincontent.store .thriftsearch .btn-info {
	    height: 40px;
	    line-height: 35px;
	    margin: 0;
	    padding: 0;
		text-transform: none;
		letter-spacing: 0;
		font-weight: bold;
		-moz-border-radius: 4px;
		-webkit-border-radius: 4px;
		border-radius: 4px;
	}
	
	#maincontent.store .thriftsearch p.vertical-align {
		line-height: 40px;
		color: #777;
		margin: 0;
	}
	
/* Store shoplistings */
	
#maincontent.store .shoplisting {
	width: 100%;
	padding: 15px;
	background: #fff;
	margin-bottom: 15px;
}

	#maincontent.store .shoplisting h3 {
		font-size: 1.6em;
		margin: 0 0 10px;
	}
	
	#maincontent.store .shoplisting p {
		margin: 0;
		font-size: 1em;
		margin: 0 0 5px;
	}
	
		#maincontent.store .shoplisting p:last-child{
			margin: 0;
		}
	
	#maincontent.store .shoplisting img {
		padding: 5% 0;
	}
	
/* Select picker overrides */

.bootstrap-select .dropdown-toggle:focus {
	outline: none !important;
}

.bootstrap-select>.dropdown-toggle.bs-placeholder,
.bootstrap-select>.dropdown-toggle.bs-placeholder:active,
.bootstrap-select>.dropdown-toggle.bs-placeholder:focus,
.bootstrap-select>.dropdown-toggle.bs-placeholder:hover {
	background: #fff !important;
	border: 2px solid transparent !important;
}

.bs-searchbox input.form-control,
.bs-searchbox input.form-contro:active,
.bs-searchbox input.form-contro:hover {
	border-color: #FF9B88 !important;
}

.dropdown-menu>.active>a,
.dropdown-menu>.active>a:focus,
.dropdown-menu>.active>a:hover {
	background: #FF9B88;
}

/* Backgrounds and colors */

.bg-grey {
	background: #eee;
}

.bg-white {
	background: #fff;
}

.pink,
.pink > a {
	color: #FA897E !important;
}

.strong,
.strong > a {
	font-weight: bold !important;
}

/* Buttons */

.btn {
	font-family: 'Lato' !important;
	text-transform: uppercase;
	font-size: 15px;
	text-align: center;
	letter-spacing: 2px;
	border-radius: 0;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border: none;
	padding: 4px;
}

	.btn:hover,
	.btn:focus,
	.btn:active {
		color: #fff;
		-o-transition:.3s;
		-ms-transition:.3s;
  		-moz-transition:.3s;
  		-webkit-transition:.3s;
  		transition:.3s;
  		outline: none !important;
  	}
  	
.btn-default {
	border: 2px solid transparent;
}

.btn-info {
	background: #ff9b88;
	border: 2px solid transparent;
	padding-left: 10px;
	padding-right: 10px;
}

	.btn-info:hover,
	.btn-info:focus, 
	.btn-info:active {
		background: #fff !important;
		border: 2px solid #ff9b88 !important;
		color: #ff9b88 !important;
	}

.btn-wide {
	padding-left: 5% !important;
	padding-right: 5% !important;
}

/* Footer */

footer {
	background: url("../images/bg-leaf-pattern.png");
	padding: 40px 0;
	text-transform: uppercase;
	line-height: 35px;
}

	footer a:not(.fa) {
		color: initial;
		letter-spacing: 1px;
	}
	
		footer a:hover {
			color: initial;
		}
	
	footer p {
		margin: 0;
	}
	
	footer ul {
		display: inline-block;
	}
	
		footer ul.navigation li {
			margin-right: 20px;
			float: left;
		}
		
			footer ul.navigation li:last-child {
				margin: 0;
			}
			
			footer ul.navigation li a {
				font-size: .9em;
			}
			
	@media (min-width: 768px) and (max-width: 991px) {
		footer .nav {
			text-align: center;
		}
		
		footer .top {
			text-align: right;
		}
	}
	
	@media (max-width: 767px) {
		footer {
			text-align: center;
		}
		
		footer ul.navigation {
			margin: 0 0 30px;
		}
		
		footer ul.navigation li {
			float: none;
			margin: 0;
		}
	}

/* Modals */

.modal.in .modal-dialog {
    margin: 0 auto;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.modal-backdrop.in {
    -webkit-opacity: .5;
    -moz-opacity: .5;
    opacity: .5;
    background-color: #000;
    height: 100%;
    width: 100%;
    position: fixed;
    z-index: 1005;
}

.modal-dialog {
  	width: 100%;
  	height: 100%;
}

	.modal-dialog.modal-sm {
		width: 700px;
		height: auto;
	}
	
	@media (max-width: 767px) {
		.modal-dialog.modal-sm {
			width: 100%;
		}
	}
	
	@media (min-width: 768px) {
		.modal-dialog.modal-lg {
			width: 90vw;
			height: 90vh;
			position: absolute;
			top: 2.5% !important;
			left: 5% !important;
			bottom: 2.5% !important;
			-webkit-transform: none !important;
			transform: none !important;
		}
	}
	
.modal-body {
	padding: 0;
}

.modal-content {
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}
	
	.modal-dialog button.close {
		position: absolute;
		right: 0;
		z-index: 10;
		font-size: 50px;
		padding: 5px 15px;
	}
	
	.modal-content p {
		font-size: 1.75em;
		line-height: 1.4em;
	}
	
	.modal-content h2 {
		font-family: 'Alternate Gothic No2 D Regular';
		font-size: 7em;
		line-height: .9em;
		text-transform: uppercase;
		letter-spacing: 1px;
		font-weight: normal;
		margin: 0 0 10px;
	}
	
	.modal-content h3 {
		font-size: 30px;
		text-transform: uppercase;
		letter-spacing: 1px;
		font-weight: normal;
		margin: 0 0 20px;
	}

.modal-content .popup {
	padding: 30px;
}

	.modal-content .popup.bg {
		color: #fff;
		text-shadow: 0 0 10px #666;
		background: url('/wp-content/uploads/2016/08/IMG_2607.jpg');
		background-position: top left;
		background-size: cover;
	}
	
	@media (min-width: 768px) {
		.modal-content .popup.bg {
			padding: 15vh 100px;
		}
	}
	
	.modal-content .btn-info {
		margin-top: 5px;
		font-size: 1.5em;
	}

/* Forms */

.form-control {
	font-size: 16px;
	font-weight: normal;
	height: 40px;
}

.form-group.submit {
	margin-bottom: 0;
}

div.wpcf7-response-output {
    margin: 0;
    padding: 0.2em 1em
}

div.wpcf7 img.ajax-loader {
    border: none;
    vertical-align: middle;
    margin: 0;
    width: auto;
    height: auto;
}

/* TweetIt */

a#tweetit-btn {
	position: absolute;
	padding: 5px;
	font-size: 1.5em;
	width: 40px;
	background-color:#292f33;
	border-radius: 4px;
	text-align: center;
	transition: .2s ease-out;
	-webkit-transition: .2s ease-out;
	transform: translate(-10px, 0); 
}

/* Hide re-captcha badge */	
.grecaptcha-badge {
    display: none !important;
}