
/*-------------------------------------------------------------
THE GRID
---------------------------------------------------------------*/
.grid_container {
	width: 100%;
	padding: 0 20px;
	position: relative;
	margin: auto;
}

.grid_container:after {
  content: "";
  display: table;
  clear: both;
}

.col {
    border:0px solid rgba(0,0,0,0);
    -webkit-box-sizing:border-box;
    -moz-box-sizing:border-box;
    box-sizing:border-box;
    -moz-background-clip:padding-box !important;
    -webkit-background-clip:padding-box !important;
    background-clip:padding-box !important;
    width: 100%;
}



/*-------------------------------------------------------------
GENERAL
---------------------------------------------------------------*/

* {
    box-sizing: border-box;
}

html, body {
	margin: 0;
	padding: 0;
	background-color: #53383f;
	text-align: center;
}

body {
	padding: 47px 0 0;
	font-family: 'Droid Sans', sans-serif;
	color: #736149;
	line-height: 1.5;
	position: relative;
}



.wrapper {
	position: relative;
}


section {
	padding: 60px 0;
	background-color: #f8eee4;
}

section.dark_section {
	background-color: #f3e2d2;
}

h2 {
	color: #736149;
	font-size: 2rem;
	text-transform: uppercase;
	font-weight: normal;
	margin: 0 0 1.5rem;
	padding: 0;
	line-height: 1;
	font-family: 'Oswald', sans-serif;
}

h3 {
	margin: 0;
	padding: 0;
	color: #736149;
	font-weight: normal;
	font-size: 1rem;
	line-height: 1;
	margin: 0 0 1rem;
	font-family: 'Oswald', sans-serif;
}

div.centred {
	float: none;
	margin: auto;
	text-align: center;
	max-width: 700px;
}

section a, a:active, a:visited {
	color: #868c66;
	font-weight: bold;
	text-decoration: none;
}

section a:hover {
	color: #b6baa3;
	font-weight: bold;
	text-decoration: none;
}

a.calltoaction {
	display: inline-block;
	position: relative;
	text-align: center;
	background-color: #868c66;
	padding: 0.875rem 60px;
	font-size: 0.875rem;
	font-weight: lighter;
	transition: 0.5s;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-o-transition: 0.5s;
	text-transform: lowercase;color: #e7e8e0;
	text-decoration: none;
}

.calltoaction:hover {
	background-color: #798092;
	color: #eaeefa;
	font-weight: lighter;
}

p {
	margin-bottom: 1rem;
}

/*-------------------------------------------------------------
HEADER
---------------------------------------------------------------*/
nav#main_nav {
	position: fixed;
	z-index: 1;
	top: 0;
	left: 0;
	height: 48px;
	display: block;
	font-size: 16px;
	background-color: #53383f;
	width: 100%;
	text-transform: capitalize;
	line-height: 1;
	font-family: 'Oswald', sans-serif;
	z-index: 20;
}

nav#main_nav .grid_container {
	padding: 0;
	border: none;
	height: 100%;
	overflow: visible;
}

nav#main_nav .grid_container > * {
	vertical-align: middle;
}

nav#main_nav a {
	display: inline-block;
}

nav#main_nav .header_logo {
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	height: 48px;;
	width: 48px;
	background-color: #736149;
	cursor: pointer;
	transition: 1s;
	-webkit-transition: 1s;
	-moz-transition: 1s;
	-o-transition: 1s;
}

nav#main_nav .header_logo:hover {
	background-color: #798092;
}

.header_logo img {
	position: absolute;
	height:60%;
	width: auto;
	left: 15%;
	top: 20%;
}


ul#main_nav_links {
	display: none;
}


/*-------------------MOBILE NAV----------------*/

ul#mobile_nav_links {
	display: block;
	position: fixed;
	list-style: none;
	margin: 0;
	padding: 20px;
	top: 48px;
	right: -400px;
	background-color: #736149;
	height: 130%;
	transition: 1s ease;
	-webkit-transition: 1s;
	-moz-transition: 1s;
	-o-transition: 1s;
}

ul#mobile_nav_links.active_panel {
	right: 0;
}


ul#mobile_nav_links li {
	font-size: 1.5rem;
	display: block;
	text-align: left;
	padding: 0.875rem;
	font-family: 'Droid Sans', sans-serif;
	border-bottom: 1px solid #aaa192;
}

ul#mobile_nav_links ul {
	display: none;
}

ul#mobile_nav_links li:last-child {
	border-bottom: none;
}

ul#mobile_nav_links li a, ul#mobile_nav_links li a:active, ul#mobile_nav_links li a:visited {
	color: #e3e0db;
	text-decoration: none;
	font-weight: normal;
}

ul#mobile_nav_links li a:active {
	color: #fff;
}

nav i.fa {
	display: block;
	position: absolute;
	padding: 10px 20px;
	top: 0;
	right: 0;
	cursor: pointer;
	font-size: 28px;
	color: #cfbfc2;
	transition: 1s ease;
	-webkit-transition: 1s ease;
	-moz-transition: 1s ease;
	-o-transition: 1s ease;
	transform: rotate(0deg);
	-webkit-transform: rotate(0deg);
	-ms-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-o-transform: rotate(0deg);

}

nav i.fa-times.hidden {
	margin-right: -60px;
	opacity: 0;
	-webkit-transform: rotate(180deg);
	-webkit-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	-moz-transform: rotate(180deg);
	-o-transform: rotate(180deg);
}

nav i.fa-bars.hidden {
	margin-right: 60px;
	opacity: 0;
	-webkit-transform: rotate(-180deg);
	-webkit-transform: rotate(-180deg);
	-ms-transform: rotate(-180deg);
	-moz-transform: rotate(-180deg);
	-o-transform: rotate(-180deg);
}

/*-------------------------------------------------------------
HOMEPAGE
---------------------------------------------------------------*/

section.hero_section {
	position: relative;
	background-size: cover;
	background-position: center top;
	color: #fff;
	text-align: center;
	margin-top: 0;
	padding: 50px 0;
}

img.hero_logo {
	display: inline-block;
	position: relative;
	height: 175px;
}

span.headline {
	position: relative;
	display: inline-block;
	width: 100%;
	font-size: 30px;
	line-height: 1.5;
	margin-top: 15px;
	text-transform: uppercase;
	font-family: 'Oswald', sans-serif;
}

span.subheading {
	position: relative;
	display: block;
	font-size: 14px;
	font-weight: 300;
	margin-top: 0px;
	text-transform: lowercase;
	font-family: 'Oswald', sans-serif;
}

img#scroller {
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 60px;
	margin-left: -30px;
	cursor: pointer;
}



/*----Store menu---*/

section.prod_cats h3 {
	margin-top: -0.5rem;
	margin-bottom: 2rem;
	font-weight: 300;
}

ul#store_menu {
	position: relative;
	list-style: none;
	padding: 0;
	margin: 0;
}

ul#store_menu li {
	position: relative;
	display: inline-block;
	float: left;
	width: 100%;
	margin-bottom: 0.5rem;
	font-size: 1rem;
	cursor: pointer;
	background-color: #736149;
}



ul#store_menu li a {
	display: block;
	padding: 0.5rem 20px;
	color: #fff;
	font-weight: normal;
	
}

ul#store_menu>li:hover {
	background-color: #798092;
}


ul#store_menu li ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: none;
	position: relative;
	width: 100%;
	left: 0;
	top: 100%;
	z-index: 1;
}

ul#store_menu li ul li{
	display: block;
	width: 100%;
	float: none;
	background-color: transparent;
	color: #515561;
	margin: 0;
	padding: 0;
	background-color: #f4f7fe;
}

ul#store_menu li ul li a, ul#store_menu li ul li a:active, ul#store_menu li ul li a:visited{
	color: #515561;
	
}


ul#store_menu li ul li:hover{
	background-color: #eaeefa;
}











ul.products li.product.product-category img, section.prod_cats ul.products li.product.product-category img:hover {
	box-shadow: none;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
}


ul.products li.product.product-category a h3 {
	display: none;
}


.featured_cards {
	position: relative;
	padding-top: 2rem;
	overflow: auto;
}

.featured_product {
	position: relative;
	display: block;
	line-height: 1;
	padding-top: 20px;
	width: 75%;
	margin: 0 auto 60px;	
}

.featured_product:nth-child(1n+3) {
	display: none;
}

.price {
	display: block;
	color: #aaa192;
	font-weight: lighter;
	margin-bottom:  1.5rem;
	text-decoration: none;
}

.price ins {
	text-decoration: none !important;
}


.featured_product .featured_image_container {
	position: relative;
	display: block;
	width: 100%;
	padding: 50% 0;
	overflow: hidden;
}


.featured_image {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	transition: 0.5s;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-o-transition: 0.5s;

}

.featured_product .featured_image:hover {
	opacity: 0.6;
}


.featured_image.tall {
	width: 100%;
	height: auto;
}

.featured_image.wide {
	height: 100%;
	width: auto;
}


a.featured_buy_button {
	position: relative;
	text-align: center;
	background-color: #868c66;
	width: 100%;
	display: block;
	padding: 1rem;
	color: #e7e8e0;
	font-size: 1rem;
	font-weight: lighter;
	transition: 0.5s;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-o-transition: 0.5s;
	font-family: 'Oswald', sans-serif;
	text-decoration: none;
}

a.featured_buy_button:hover {
	background-color: #798092;
	color: #eaeefa;
	font-weight: lighter;
}

a.view_store {
	display: block;
	float: left;
	clear: both;
	font-weight: normal;
	color: #d0c6bc;
	margin-top: 1rem;
}

a.view_store:hover {
	font-weight: normal;
}

a.view_store i {
	transition: 0.3s;
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
}

a.view_store:hover i {
	transform: translate(7px,0);
}

.col.spotlight {
	position: relative;
	background-color: white;
	padding: 1%;
	float: right;
	max-width: 450px;
	margin-top: 3rem;
}

.spotlight img {
	display: block;
	width: 100%;
}

span.spotlight_description {
	display: block;
	color: #cfbfc2;
	text-align: center;
	padding: 10px 0 5px 0;
	font-weight: lighter;
	font-size: 0.875rem;
}

a.testimonials_link {
	margin-top: 2.5rem;
}


/*-------------------------------------------------------------
ABOUT PAGE
---------------------------------------------------------------*/

img.size-medium {
	width: 100%;
	height: auto;
}


img.size-large {
	width: 100%;
	height: auto;
}


.col.testimonials_column {
	margin-top: 60px;
	position: relative;
	background-color: #f3e2d2;
	padding: 3rem 25px;
	float: right;
}

div.single_quote:last-child .separator {
	display: none;
}

span.quote {
	font-family: 'Droid Sans', sans-serif;
	color: #736149;
	line-height: 1.5;
	font-style: italic;
}

span.quoter {
	display: block;
	font-family: 'Droid Sans', sans-serif;
	color: #736149;
	line-height: 1.5;
	font-weight: bold;
	margin: 20px 0 0;
}

a.website, a.website:hover {
	font-size: 0.75rem;
	font-weight: normal;
}

.separator {
	display: block;
	text-align: center;
	font-size: 10px;
	color: #ded0c2;
	font-family: 'Droid Sans', sans-serif;
	margin: 40px 0;
}

.fa-circle {
	margin: 0 5px;
}




/*-------------------------------------------------------------
CONTACT PAGE
---------------------------------------------------------------*/

a.contact_link {
	display: block;
	font-weight: normal;
	font-size: 0.875rem;
	margin: 10px 0;
}

a.contact_link:hover {
	font-weight: normal;
}

i.contacticon {
	margin-right: 20px;
}

div.wpcf7 {
	padding-top: 2rem !important;
}

/*-------------------------------------------------------------
WOOCOMMERCE ACCOUNT
---------------------------------------------------------------*/

p.myaccount_user {
	margin: 0 0 3rem 0;
	width: 100%;
}

.woocommerce h2 {
	font-size: 1.5rem;
}

p.myaccount_address {
	margin-bottom: 2rem;
}


/*-------------------------------------------------------------
WOOCOMMERCE SHOP
---------------------------------------------------------------*/

select.orderby {
	margin-bottom: 3rem;
}

p.woocommerce-result-count {
	margin: 2rem 0 1rem 0;
}

h1.page-title, h1.product_title  {
	color: #736149;
	font-size: 2rem;
	text-transform: uppercase;
	font-weight: normal;
	margin: 0 0 1.5rem;
	padding: 0;
	line-height: 1.25;
	font-family: 'Oswald', sans-serif;
}

ul.products {
	list-style: none;
	padding: 0;
	margin-top: 0;
	overflow: auto;
}

li.product, section ul.products li.product.product-category {
	position: relative;
	float: left;
	width: 100%;
	height: auto;
	overflow: hidden;
	margin-bottom: 1.5rem;
	
}

li.product a {
	display: block;
	position: relative;
	top: 0;
	width: 100%;
}


section ul.products li.product.product-category {
	padding-top: 0;
	margin-bottom: 1rem;
}





li.product a img {
	/*transition: 0.5s !important;
	-webkit-transition: 0.5s !important;
	-moz-transition: 0.5s !important;
	-o-transition: 0.5s !important;*/
	opacity: 1;
	-webkit-backface-visibility: hidden;
}

li.product a img.tall {
	width: 100%;
	height: auto;
}

li.product a img.wide {
	height: 100%;
	width: auto;
}


.woocommerce ul.products li.product a img {
	box-shadow: none !important;
	-webkit-box-shadow: none !important;
}

li.product a img:hover {
	opacity: 0.6;
}

li.product a {
	text-decoration: none;
}

li.product a h3 {
	position: absolute;
	top: -6rem;
	line-height: 1.5rem;
}


li.product a ins {
	text-decoration: none;
	display: block;
}

span.onsale {
	display: block;
	position: absolute;
	top: 0;
	background-color: white;
	width: auto;
	padding: 0.5rem 20px;
	margin: 5px;
	font-weight: bold;
	z-index: 10;
}

.count {
	display: none;
}

nav.woocommerce-pagination {
	display: block;
	width: 100%;
}

nav.woocommerce-pagination ul {
	list-style: none;
	padding: 0;
	margin: 0;
}


nav.woocommerce-pagination ul li {
	display: inline-block;
	margin-right: 10px;
	background-color: white;
	width: 2rem;
	height: 2rem;
	font-size: 1rem;
	line-height: 1;
}

nav.woocommerce-pagination ul li a, nav.woocommerce-pagination ul li span {
	display: block;
	margin-right: 2%;
	padding: 0.5rem 0;
	text-align: center;
}

nav.woocommerce-pagination ul li span {
	font-weight: bold;
	color: #cfbfc2;
}

h2.woocommerce-loop-product__title {
	font-size: 1.25rem;
	margin-bottom: 0.25em;
	line-height: 1.5;
}


/*----Categories-----*/
section ul.products li.product.product-category a {
	width: 100%;
	display: block;
	padding: 0;
}

section ul.products li.product.product-category a img{
	width: 100%;
	height: auto;
	position: relative;
	display: block;
}



/*-------------------------------------------------------------
WOOCOMMERCE FORMS
---------------------------------------------------------------*/

.woocommerce form input#rememberme {
    width: auto !important;
    margin-top: 2rem;
}

.woocommerce form {
	display: block;
}

.woocommerce form .form-row-first, .woocommerce form .form-row-last, .woocommerce-page form .form-row-first, .woocommerce-page form .form-row-last {
	display: block !important;
	width: 100% !important; 
}

input#coupon_code, .woocommerce form select, .woocommerce form input, .woocommerce form textarea, .woocommerce-ordering select, .wpcf7-form input, .wpcf7-form textarea {
	width: 100% !important;
	background-color: white;
	font-size: 0.875rem;
	border: none;
	padding: 0.875rem 20px;
	color: #362629;
	text-align: left;
}

.woocommerce form input.input-checkbox, .woocommerce form input.input-radio  {
	width: auto !important;
}

.woocommerce form input#ship-to-different-address-checkbox {
	margin-left: 20px;
}


.chosen-container, .chosen-container-single, .chosen-with-drop, .chosen-container-active {
	width: 100% !important;
}

.product .button {
	/*margin-top: -0.5rem !important;*/
}

.button, .woocommerce input.button, input.wpcf7-submit, form#commentform input#submit {
	display: block !important;
	position: relative !important;
	text-align: center !important;
	background: #868c66 !important;
	padding: 0.875rem !important;
	font-size: 0.875rem !important;
	font-weight: lighter !important;
	transition: 0.5s !important;
	-webkit-transition: 0.5s !important;
	-moz-transition: 0.5s !important;
	-o-transition: 0.5s !important;
	text-transform: lowercase !important;
	color: #e7e8e0 !important;
	text-decoration: none !important;
	border: none  !important; 
	font-family: 'Oswald', sans-serif !important;
	text-shadow: none !important;
	float: none !important;
	cursor: pointer !important;
}

div.coupon {
	width: 100% !important;
	display: block !important;
	margin-bottom: 20px;
}

td.actions {
	padding: 1rem 20px !important;
}

td.actions input.button {
	background-color: #b6baa3 !important;
	color: white !important;
}

td.actions input.button.checkout-button {
	background-color: #868c66  !important;
	color: #e7e8e0 !important;
	margin-top: 1rem;
}

.button:hover, .woocommerce input.button:hover, td.actions input.button.checkout-button:hover, input.wpcf7-submit:hover {
	background-color: #798092  !important;
	color: #eaeefa  !important;
}

div#pay_with_amazon {
	display: block !important;
	float: none !important;
	margin-top: 1rem !important;
}


td.product-name p:first-child {
	margin-top: 0;
}


a.shipping-calculator-button {
	text-decoration: none;
	font-size: 1rem;
	font-weight: normal;
}

table thead tr {
	background-color: #fdf9f6;
}

.woocommerce .quantity {
	margin: 0 !important;
}



td.product-remove, th.product-remove {
	display: none !important;
}

div.quantity {
	position: relative !important;
	margin: 2rem 0 !important;
	width: 60px !important;
	height: 40px !important;
}

.quantity input.minus {
	display: block !important;
	position: absolute !important;
	bottom:0 !important;
	right: 0 !important;
	height: 20px !important;
	width: 20px !important;
	border: none !important;
	padding: 0 !important;
	text-align: center !important;
	cursor: pointer !important;
	line-height: 1 !important;
	background: #f3e2d2 !important;
	border: none !important;
	text-shadow: none !important;
	box-shadow: none !important;
}

.quantity input.plus {
	display: block !important;
	position: absolute !important;
	top:0 !important;
	right: 0 !important;
	height: 20px !important;
	width: 20px !important;
	border: none !important;
	padding: 0 !important;
	text-align: center !important;
	cursor: pointer !important;
	line-height: 1 !important;
	background: #f3e2d2 !important;
	border: none !important;
	text-shadow: none !important;
	box-shadow: none !important;
}

.quantity input.qty  {
	height: 40px !important;
	width: 60px !important;
	background: #fdf9f6;
	border: none !important;
	padding: 10px 0 10px 10px !important;
}

.product_meta {
	display: none;
}


/*-------------------------------------------------------------
WOOCOMMERCE SINGLE
---------------------------------------------------------------*/


div.sale span.onsale {
	left:18%;
}


ul.tabs {
	display: block;
	width: 100%;
	list-style: none;
	padding: 0;
	margin: 0;
}

ul.tabs li {
	display: block;
	background-color: #f3e2d2;
}

ul.tabs li a {
	display: block;
	padding: 0.5rem 20px;
}

ul.tabs li.active {
	background-color: #faf3ed;
}

div.panel {
	background-color: white;
	padding: 20px;
}

div.panel h2 {
	font-size: 1.5rem;
}

td.label {
	display: none;
}

a.reset_variations {
	display: none;
}

span.price {
	margin: 0.5rem 0;
}
p.stock {
	margin: 0.5rem 0;
}

table.variations {
	/*margin-top: 4rem;*/
}

table.variations {
	width: 100%;
}

table.variations tr:nth-child(1n+2) select {
	margin-top: 15px;
}

table.variations select {
	font-size: 0.875rem;
	padding: 0.875rem;
	border: none;
	width: 100%;
}

.single_add_to_cart_button {
	width: 100%;
}

table.shop_attributes {
	text-align: left;
}

table.shop_attributes th{
	padding-right: 20px;
}

div#respond {
	margin-top: 3rem;
}

form#commentform {
	margin-top: 2rem;
}

form#commentform label{
	display: block;
}

section.related {
	display: block;
	width: 100%;
	float: left;
	clear: both;
	padding: 3rem 0;
	border-top: 2px solid #f3e2d2;
	margin-top: 3rem;
}

/*-------------------------------------------------------------
FOOTER
---------------------------------------------------------------*/

.footer {
	background: #53383f;
	color: #e8dfe2;
	padding: 3rem 0;
	margin-bottom: 0px;
	color: white;
	font-family: 'Droid Sans', sans-serif;
	text-align: center;
	overflow: auto;
	font-size: 0.875rem;
}

.footer .col {
	padding: 0 2%;
}

.footer .col:first-child{
	padding-left: 0;
	margin-bottom: 3rem;
}

.footer .col:last-child{
	padding-right: 0;
}

.footer h3 {
	color: #e8dfe2;
	font-size: 1.5rem;
	font-family: 'Oswald', sans-serif;
}

.footer a, .footer a:active, .footer a:visited {
	color: #e8dfe2;
	text-decoration: none;
}

.footer p {
	color: #e8dfe2;
	line-height: 2;
	margin-top: 0;
}

footer ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

footer li {
	margin: 0;
	padding: 0;
	line-height: 2;
}

.social {
	width: 48px;
	display: inline;
	margin-right: 10px;
	margin-bottom: 20px;
}

.footer ul.footer_links {
	display: block;
	color: #b99ea5;
	font-size: 0.875rem;
}

.footer ul.footer_links a, .footer ul.footer_links a:active, .footer ul.footer_links a:visited{
	color: #b99ea5;
}

/*-------------------------------------------------------------
IE8 Fixes
---------------------------------------------------------------*/
.svg .fallback_image {
    display: none;
}

.no-svg .svg_image {
    display: none;
}

.no-svg .fallback_image {
    display: inline-block;
}

.no-backgroundsize div.image_container {

}

.no-svg .grid_container {
    min-width: 960px;
}


.summary.entry-summary:after {
	content: url(../img/amazon_payments.png);
	display: block;
	margin-top: 1rem;
}

/*-------------------------------------------------------------
WOOCOMMERCE GALLERY
---------------------------------------------------------------*/

.product .summary.entry-summary {
	float: left;
}

.woocommerce-tabs {
	float: right;
	width: 100%;
}

.woocommerce-product-gallery.woocommerce-product-gallery--with-images {
    float: left;
    width: 100%;
}

 
.woocommerce-product-gallery {
position: relative;
margin-bottom: 3em
}
 
.woocommerce-product-gallery figure {
margin: 0
}
 
.woocommerce-product-gallery .woocommerce-product-gallery__image:nth-child(n+2) {
width: 25%;
display: inline-block
}

.flex-control-nav {
	padding: 0;
}

.woocommerce-product-gallery .flex-control-thumbs li {
list-style: none;
float: left;
cursor: pointer
}
 
.woocommerce-product-gallery .flex-control-thumbs img {
opacity: .5;
width: 100%;
}
 
.woocommerce-product-gallery .flex-control-thumbs img.flex-active,.woocommerce-product-gallery .flex-control-thumbs img:hover {
opacity: 1
}
 
.woocommerce-product-gallery img {
display: block;
width: 100%;
height: auto;
}
 
.woocommerce-product-gallery--columns-3 .flex-control-thumbs li {
width: 33.3333%
}
 
.woocommerce-product-gallery--columns-4 .flex-control-thumbs li {
width: 25%
}
 
.woocommerce-product-gallery--columns-5 .flex-control-thumbs li {
width: 20%
}
 
.woocommerce-product-gallery__trigger {
position: absolute;
top: 1em;
right: 1em;
z-index: 99;
}
 
a.woocommerce-product-gallery__trigger {
text-decoration: none;
}
 
.single-product div.product .woocommerce-product-gallery .woocommerce-product-gallery__trigger {
position: absolute;
top: .875em;
right: .875em;
display: block;
height: 2em;
width: 2em;
border-radius: 3px;
z-index: 99;
text-align: center;
text-indent: -999px;
overflow: hidden;
}
 
.single-product div.product .woocommerce-product-gallery .woocommerce-product-gallery__trigger {
background-color: #169fda;
color: #ffffff;
}
 
.single-product div.product .woocommerce-product-gallery .woocommerce-product-gallery__trigger:hover {
background-color: #1781ae;
border-color: #1781ae;
color: #ffffff;
}
 
.single-product div.product .woocommerce-product-gallery .woocommerce-product-gallery__trigger:before {
font: normal normal normal 1em/1 FontAwesome;
font-size: inherit;
text-rendering: auto;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
display: block;
content: "\f00e";
line-height: 2;
text-indent: 0;
}

.woocommerce-product-gallery--columns-4 .flex-control-thumbs li:nth-child(4n+1) {
    clear: left;
}


/*-------------------------------------------------------------
Testimonials
---------------------------------------------------------------*/

blockquote.testimonials-text {
	margin: 0;
	padding: 0;

}

cite.author {
	font-weight: bold;
	font-style: normal;
}

.url {
	display: block;
	font-size: 0.75em;
}

.widget_woothemes_testimonials {
	white-space: normal;
	padding: 1rem;
	background-color: rgba(0,0,0,0.05)
}

blockquote.testimonials-text p:first-child {
	margin-top: 0;
}

pre, pre code {
	font-family: 'Droid Sans', sans-serif !important;
}

.testimonials-list .quote {
	margin-bottom: 1rem;
}