﻿/*
Theme Name: Down on the Farm
Theme URI: https://downonthefarm.net/
Description: WordPress theme built by <a href="http://www.hedleyenterprises.co.uk">hedley enterprises</a>. <strong>Web design</strong> starts with a coffee and a chat...
Version: 3 Build-0221
Author: <strong>hedley</strong> enterprises
Author URI: https://hedleyenterprises.co.uk

*/
:root {
	--main-color: #151515;
	--brown: #2c2417;
	--lightbrown: #836B4C;
	--green: #74832E;
	--red: #980007;
	--lgrey: #FAFAFA;
	--white: #FFFFFF;
  	--grey: #2D2D2D;
	--black: rgba(0, 0, 0, 0.2);
	--lightshadow: rgba(180, 180, 180, 0.1);
	--boxshadow: 0 0.5em 1em;
	--border: 0.9em;
}
html {
	scroll-behavior: smooth;
}
body {
	font-size: 16px;
    font-family: 'Lato', sans-serif;
	margin:0;
	padding:0;
  	color: var(--main-color);
	opacity: 0;
	animation: fade-in 0.3s forwards 0.3s linear;
}
p::selection, h1::selection, h2::selection, h3::selection { background-color: #320101; color: #fff;}
p::-moz-selection, h1::-moz-selection, h2::-moz-selection, h3::-moz-selection { background-color: #320101; color: #fff; }

/* -------------------- Animation -------------------- */

section {
	opacity: 0;
}
.inverse, .show-menu {
	animation: fade-in 0.3s forwards 0.3s linear;
}
@keyframes fade-in {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
.fh-button-true-flat-green.fh-fixed--bottom, .fh-button-flat-green.fh-fixed--bottom {
	display: none !important;
}
.farmtourspage .fh-button-true-flat-green.fh-fixed--bottom, .farmtourspage .fh-button-flat-green.fh-fixed--bottom {
	display: none !important;
}

/* -------------------- General Styles -------------------- */

.container, header, footer {
    width: 95%;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
}
.easy-reading {
	width: 80%;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}
a {
  text-decoration: none;
}
h1 {
   font-size: 3rem;
}
h1, h2, h3, h4 {
	font-family: Georgia, 'Times New Roman', Times, serif;
	font-weight: normal;
	line-height: 1.4;
}
p, li {
	line-height:1.6;
}
img {
	border-style: none;
}
.center {
	text-align:center;
}
.absol {
	position:relative;
}
hr {
	width: 200px;
	margin: 4em auto;
	border: dashed 1px var(--lightbrown);
}

/* -------------------- Colours -------------------- */
.brown-banner {
	color: var(--white);
	background-color: var(--brown);
}
.lightbrown-banner {
	color: var(--white);
	background-color: var(--lightbrown);
}
.brown {
	color: var(--lightbrown);
}
.links a {
	color: var(--green);
	font-weight: bold;
	border-bottom: 1px solid var(--lightbrown);
}
.links a:hover {
	color: var(--lightbrown);
}
/* -------------------- Padding and Margins -------------------- */
.down {
	margin-top:10em;
}
.drop {
	margin-top:4em;
}
.move-up {
	z-index: 1;
	margin-top: -200px;
}
.ptb {
	padding-top: 2em;
	padding-bottom: 2em;
}
.alignright {
	float:right;
	padding-left: 20px;
	padding-bottom: 20px;
}
.alignleft {
	float:left;
	padding-right: 20px;
	padding-bottom: 20px;
}
.aligncenter {
	display: block;
	margin-left: auto;
	margin-right: auto;
}
.size-full.is-resized {
	text-align: center;
}
/* -------------------- Header -------------------- */
.notice-bar {
	color: var(--white);
	background-color: var(--red);
	text-align: center;
	padding: 1em 0;
	display: none;
}
.notice-bar p {
	margin: 0;
	max-width: 60ch;
	margin: auto;
}
.top-bar {
	color: var(--white);
	background-color: var(--lightbrown);
}
header {
	display: grid;
	grid-template-columns: 1fr;
	text-align: center;
	padding: 1em 0;
}
.logo img {
	width: 100%;
	height: auto;
	max-width: 100px;
}

/* -------------------- Header Background -------------------- */
.home .feature-banner {
	height: 80vh;
}
.inner .feature-banner {
	height: 60vh;
}
.feature-banner-inner {
	height: 30vh;
}
.feature-banner, .feature-banner-inner {
	background-position: center;
	background-size: cover;
	display: flex;
	justify-content: center;
	align-items: center;
}
.slogan {
	font-family: Georgia, 'Times New Roman', Times, serif;
	color: var(--white);
	text-align: center;
	opacity: 0;
	animation: fade-in 0.3s forwards 1s linear;
}
.slogan p {
	line-height: 1;
	margin: 0;
	font-size: 2rem;
	width: 20ch;
	text-shadow: var(--boxshadow) var(--main-color);
}
/* -------------------- unordered list -------------------- */
.top-links ul, .shopping-basket-checkout ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}
.shopping-basket-checkout ul {
    display: flex;
	align-self: center;
}
.top-links ul {
    display: none;
	align-self: center;
}
.top-links li a, .shopping-basket-checkout li a {
    padding: 10px;
	color: var(--main-color);
}
.shopping-basket-checkout  {
    justify-content: center;
}

/* -------------------- Navigation -------------------- */
.navigation {
	display: none;
	justify-content: center;
}
/* -------------------- Navigation Mobile -------------------- */
.navigation-mobile {
	width: 0;
	height: 100vh;
	position: absolute;
	top: 0;
	left: 0;
}
#navoverlay {
	background-color: var(--brown);
	color: var(--white);
}
.mobile {
	display: none;
	opacity: 0;
}
.close-btn {
	display: block;
}
.menu-btn {
	cursor: pointer;
	width: 30px;
	position: absolute;
	color: var(--lightbrown);
}
.mobile {
	position: fixed;
	padding: 2em;
	width: calc(100vw - 4em);
	height: calc(100vh - 4em);
	z-index: 200;
}
.close-btn {
	width: 28px;
	cursor: pointer;
	position: absolute;
	left: 1em;
	top: 10px;
}
.show-menu {
	opacity: 0;
	display: block;
}
ul.sub-menu {
	display:none;
}
.nav .sub-menu {
	margin-top: 20px;
	margin-bottom: 20px;
}
.nav .sub-menu li a {
	font-size: 16px;
	margin: 0;
	padding: 0;
	opacity: 0.8;
}
.nav .sub-menu li {
	margin: 0;
}
.slideDown {
  display: block;
}
.menu-contents {
	display: flex;
	flex-wrap: wrap;
	height: 100vh;
}
.nav ul:nth-child(1) {
	font-size: 1.5rem;
}
.nav ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
.nav ul:nth-child(3) {
	margin: 3em 0 0 0;
}
.nav ul, .contact-nav ul, .social-nav ul {
	flex-wrap: wrap;
}
.nav li, .contact-nav li, .social-nav li {
	width: 100%;
	margin-left: 0;
	margin-bottom: 15px;
}
.nav, .contact-nav, .social-nav {
	align-self: center;
	width: 100%;
	text-align: center;
}
.nav, .contact-nav {
	margin-bottom: 20px;
}
.nav li a, .contact-nav li a {
	color: var(--white);
}

/* -------------------- Hamburger Icon -------------------- */
#Rectangle_27, #Rectangle_28, #Rectangle_29,
#Rectangle_30, #Rectangle_31, #Rectangle_32 {
	transition: all 0.5s ease-in-out;
}
#Rectangle_27 {
	transition: all 0.5s ease-in-out;
	transform: translate(334px, 30px);
}
#open-menu:hover #Rectangle_27 {
	transform: translate(332px, 30px);
}
#Rectangle_28 {
	transition: all 0.5s ease-in-out;
	transform: translate(334px, 36px);
}
#open-menu:hover #Rectangle_28 {
	transform: translate(326px, 36px);
}
#Rectangle_29 {
	transform: translate(334px, 42px);
}
#open-menu:hover #Rectangle_29 {
	transform: translate(316px, 42px);
}

/* -------------------- Page Title / CTA -------------------- */
.easy-reading h2, .newtours h2 {
	color: var(--lightbrown);
}
/* -------------------- Accommodation Grid -------------------- */
.accommodation-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
	grid-gap: 30px;
	padding-top: 2em;
	padding-bottom: 2em;
}
.accommodation-select .accommodation-grid {
	grid-template-columns: repeat(auto-fit, minmax(150px,1fr));
}
.accommodation-link {
	text-align: center;
	color: var(--white);
	padding: 1em;
	border-radius: 0.9em;
	transition: box-shadow 0.5s ease-in-out;
}
.accommodation-link a {
	color: var(--white);
}
.accommodation-link:hover {
	background-color: var(--lightbrown);
	color: var(--white);
	box-shadow: var(--boxshadow) var(--black);
}
.accommodation-link__image {
	height: 200px;
	display: flex;
	justify-content: center;
}
.accommodation-link__image svg {
	width: 100%;
	height: auto;
	max-width: 150px;
}
.accommodation-link:hover #Hut {
	fill: var(--grey);
}
/* -------------------- Welcome  -------------------- */
.welcome-text h2 {
    text-align: center;
}
.welcome-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: var(--border);
}
/* -------------------- Page Links -------------------- */
.page-links-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px,1fr));
	grid-gap: 30px;
}
.page-links a {
	color: var(--main-color);
}
.page-links a:hover {
	color: var(--lightbrown);
}
.page-links__image {
	height: 200px;
}
.page-links__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: var(--border);
}
/* -------------------- Availability -------------------- */
.left-right-grid {
	display: grid;
	grid-template-columns: 1fr;
	width: 95%;
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
}
.right-col {
	order: -1;
}
/* -------------------- Prices -------------------- */
.prices {
	border-radius: 10px;
	background-color: var(--green);
	color: var(--lgrey);
	padding: 1em;
	box-sizing: border-box;
}
.additional-information img {
	width: 100%;
	height: auto;
	border-radius: 10px;
}
/* -------------------- Gift Vouchers -------------------- */
.gift-voucher {
	margin-top: 3em;
	margin-bottom: 3em;
	text-align: center;
}
.gift-voucher__image img {
	width: 100%;
	height: auto;
	border-radius: 10px;
}
.gift-voucher:hover img {
	box-shadow: var(--boxshadow) var(--black);
}
/* -------------------- Farm Experiences Product Layout -------------------- */
.farm-experiences ul.painting-shop {
	grid-template-columns: 1fr;
}
.farm-experiences .painting-shop li a {
	display: grid;
	grid-template-columns: 100px 1fr;
	border-radius: 10px;
	grid-gap: 20px;
}
.farm-experiences .painting-shop-pic {
	width: 100px;
	margin-bottom: 0;
	text-align: left;
}
.farm-experiences .painting-shop-description {
	align-self: center;
	width: 100%;
	text-align: left;
}
/* .farm-experiences .painting-shop li {
	overflow: visible;
}
.farm-experiences ul.painting-shop {
	grid-template-rows: 1fr;
	grid-auto-flow: column;
	grid-auto-columns: 80%;
	overflow-x: scroll;
	scroll-snap-type: x mandatory;
} */
ul.tabs {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	justify-content: flex-start;
}
.tabs .current {
	border-bottom: dotted 1px var(--lightbrown);
}
ul.tabs {
	display: flex;
	flex-wrap: nowrap;
	overflow-x: auto;
	overflow-y: hidden;
	height: auto;
}
.tabs li {
	flex: 0 0 auto;
}
.tabs li a {
	margin-right: 2em;
	display: block;
}
.tabs h2 {
	font-size: 16px;
}
/* -------------------- Google Map -------------------- */
.googlemap iframe, .easy-reading iframe {
	width: 100%;
	border: none;
}
.easy-reading iframe {
	border-radius: 10px;
}
/* -------------------- Testimonials -------------------- */
.testimonials {
	padding: 3em 0;
}
.testimonial-review {
	width: 80%;
	margin: auto;
	max-width: 800px;
}
.testimonial-review__image	{
	border: solid thin var(--white);
	height: 100px;
	width: 100px;
	border-radius: 50%;
	margin: auto;
	overflow: hidden;
}
.testimonial-review__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.testimonial-review__text p::after {
	content: "\201d";
}
.testimonial-review__text p::before {
	content: "\201c";
}
/* -------------------- Newsletter -------------------- */
.newsletter-grid {
	display: grid;
	grid-template-columns: 1fr;
	grid-gap: 30px;
	padding: 1em 0;
}
.newsletter__title {
    width: 100%;
    max-width: 800px;
    margin: auto;
}
.newsletter__form form {
	display: grid;
	grid-template-columns: 1fr;
	grid-gap: 30px;
}
.newsletter__input {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	align-self: center;
}
.newsletter__input input {
	border: none;
	border: solid thin var(--white);
	background-color: white;
	color: var(--brown);
	padding: 10px;
	flex-grow: 1;
	width: 40%;
	margin: 10px;
	border-radius: var(--border);
}
.newsletter__input input:focus {
	background-color: var(--lgrey);
}
.newsletter__signup {
	align-self: flex-end;
	text-align: right;
}
.newsletter__signup input {
	border: solid thin var(--lightbrown);
	padding: 10px 15px;
	cursor: pointer;
	color: var(--white);
	background-color: var(--brown);
	border-radius: var(--border);
}
.newsletter__input input:focus {
	color: var(--brown);
	background-color: var(--lightbrown);
}
/* -------------------- Gallery / Banner -------------------- */
.gallery, .grid {
	display: flex;
	flex-wrap: wrap;
}
.space {
	justify-content: space-between;
}
.gallery-item {
	float: left;
	width: 40%;
	flex-grow: 1;
	margin: 5px;
}
.gallery-item img {
	width: 100%;
	height: auto;
	border-radius: 10px;
}
.gallery-item img:hover {
	opacity: 0.6;
}
.gallery-item a {
	border-bottom: none;
}

.blog:nth-child(1) {
	width: 100%;
	text-decoration: underline;
}
#abWrapper_1.abWrapper13 .abBox13 {
	margin: 1px !important;

}
.size-full {
	width: 100%;
	height: auto;
	border-radius: 10px;
}
/* -------------------- Button -------------------- */
.btn a {
	display: inline-block;
	min-width: 150px;
	text-align: center;
	border-radius: 50px;
	padding: 10px;
}
.btn-outline a {
	border: solid thin var(--lgrey);
	color: var(--lgrey);
}
.btn-brown a {
	color: var(--white);
	border: solid 1px var(--brown);
	background-color: var(--brown);
	box-shadow: var(--boxshadow) var(--lightshadow);
}
.btn a:hover {
	color: var(--white);
	border: solid 1px var(--white);
	background-color: var(--lightbrown);
}
/* -------------------- Footer -------------------- */
.footer-banner {
	height: 50vh;
}
.footer-banner img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
footer {
	display: grid;
	grid-template-columns: 1fr;
	grid-gap: 30px;
	padding: 3em 0;
	text-align: center;
}
footer ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
footer a, .copyright a {
	color: var(--white);
}
footer a:hover, .copyright a:hover {
	color: var(--lightbrown);
}

.badge-details ul {
	display: flex;
	justify-content: center;
}
.badge-details li {
	align-self: center;
	padding: 1em;
}
footer h4 {
	font-weight: bold;
	font-size: 1.1rem;
}
.copyright {
	border-top: solid thin var(--lightbrown);
	font-size: 0.625rem;
	padding: 1em 0;
	text-align: center;
}
.copyright p {
	margin: 0;
}

/* -------------------- Cookie Notice -------------------- */

.cookie-notice {
    width: min(80%, 470px);
    z-index: 50;
    box-sizing: border-box;
    position: fixed;
    bottom: 5%;
    left: 50%;
    max-width: 500px;
    background: var(--white);
	color: var(--main-color);
    border: solid thin var(--black);
    box-shadow: var(--boxshadow) var(--black);
    transform: translateX(-50%);
    border-radius: 10px;
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 1em;
    align-items: center;
    padding: 1em;
    opacity: 0;
    animation: fade-in .3s forwards 2s linear;
}
.cookie-notice p {
    margin: 0;
}
.cookie-notice a {
	color: var(--main-color);
}
.cookie-notice-header {
	font-weight: bold;
}
.cookie-notice button {
	display: inline-block;
	min-width: 150px;
	text-align: center;
	border-radius: 50px;
	padding: 10px;
	outline: solid thin var(--lightbrown);
	outline-offset: 5px;
	background-color: var(--lightbrown);
	border: none;
	font-weight: bold;
	color: var(--white);
	cursor: pointer;
}
.cookie-notice button:hover {
	outline: solid thin var(--brown);
	outline-offset: 5px;
	background-color: var(--brown);
}

/* ------------------------ Disabled ------------------------ */
.badge {
	display: none;
}

/* ------------------------ Woocommerce Cart ------------------------ */
.in-stock {
	display: none;
}

.cart-contents:hover {
    text-decoration: none;
}

.cart-contents-count {
	color: var(--white);
	position: absolute;
	top: -1px;
	right: 5px;
	background-color: var(--green);
	padding: 5px;
	border-radius: 50%;
	height: 10px;
	display: flex;
	justify-content: center;
	align-content: center;
}
.cart-contents-count p {
	align-self: center;
}

/* ------------------------ Woocommerce Override ------------------------ */
.paypal-button {
	display: none;
}
.check .paypal-button {
	display: block;
}
.check input {
	border: solid 1px var(--lgrey);
}
.check input:focus {
	border: solid 1px var(--lightbrown);
}
.shop-container {
	width: 90%;
	margin-left: auto;
	margin-right: auto;
	max-width: 800px;
}
.shop-container h1 {
	color: var(--lightbrown);
	font-size: 1.5em;
}
.shop-grid {
	display: grid;
	grid-template-columns: 1fr;
}
.shopping-grid {
	border-bottom: solid thin #e5e5e5;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
	grid-gap: 30px;
	padding-bottom: 10px;
}
.shopping-links a {
    color: var(--main-color);
}
.term-description {
	border-bottom: solid thin #e5e5e5;
	margin-bottom: 30px;
	text-align: center;
}
.term-description p {
	max-width: 60ch;
	margin: 3em auto 3em auto;
}
.breadcrumb nav {
	justify-content: flex-start;
	display: flex;
}
.woocommerce-variation-add-to-cart {
	display: grid;
	grid-template-columns: 1fr;
}
.sku_wrapper,
.gift-bag .woocommerce-Price-amount {
	display: none;
}
.gift-bag {
	max-width: 290px;
	margin: auto;
	text-align: center;
	justify-content: center;
	margin-bottom: 3em;
}
.gift-bag p {
	margin: 0;
}
.gift-bag a {
	color: var(--lightbrown);
}
.gift-bag a:hover {
	color: var(--main-color);
}
.gift-bag .woocommerce .add_to_cart_inline {
	border: none!important;
}
div.quantity {
	padding-bottom: 2em;
}
/* Products */
.home .products-col-layout ul.painting-shop,
.cake-layout .products-col-layout ul.painting-shop {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px,1fr));
}
.home .painting-shop-pic, .cake-layout .painting-shop-pic {
	height: 500px;
}
.painting-shop .button {
	display: none !important;
}
.woocommerce-pagination {
	margin-top: 5em;
}
ul.painting-shop button {
	display: none;
}
ul.painting-shop {
	margin: 0;
	list-style: none;
	padding: 0;
	text-align: center;
	width: 100%;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(250px,1fr));
	grid-gap: 30px;
}
.painting-shop li {
	transition: all 0.5s ease-in-out;
	position: relative;
	margin: 20px 10px 20px 0;
	border-radius: 10px;
	overflow: hidden;
	page-break-inside: avoid;
    will-change: transform;
}
.painting-shop li:hover {
	filter: grayscale(1);
	opacity: 0.8;
}
.painting-shop h2 {
	font-size: 1.1rem;
	margin: 0;
}
.painting-shop-pic {
	width: 100%;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	margin-bottom: 1em;
}
.painting-shop a {
	display: block;
	width: 100%;
	color: var(--main-color);
}
.painting-shop .button {
	opacity: 0;
}
.painting-shop ins {
	content: "Sale";
	background-color: var(--lightbrown);
	padding: 1em;
	border-radius: 100%;
	height: 50px;
	width: 50px;
	position: absolute;
	justify-content: center;
	bottom: 5vh;
	right: 0;
	display: flex;
	color: var(--white);
	text-decoration: none;
}
.painting-shop img {
	height: 100%!important;
	width: 100%;
	object-fit: cover;
	border-radius: 10px;
}
.shop-other .painting-shop-pic img {
	height: 200px;
}
.shop-other .painting-shop-pic {
	height: 200px;
}
ins .woocommerce-Price-amount {
	align-self: center;
}
li.amount:nth-child(2) {
	color: red;
}
.product_meta {
	font-size: 10pt;
}
.woocommerce-ordering select {
	padding: 10px;
}
/* Product Titles */
.woocommerce-loop-category__title .count {
	display: none;
}
.woocommerce-loop-product__title {
	font-size: 14pt;
	text-decoration: none;
}
.woocommerce-LoopProduct-link.woocommerce-loop-product__link {
	text-decoration: none;
}
.price {
	display: block;
	margin: 10px auto;
	font-weight: bold;
}
.your-price {
	padding-right: 10px;
}
.card-products h2 {
	width: 100%;
	display: block;
}
.card-products img {
	opacity: 0;
}
.woocommerce div.product form.cart .button {
	display: block;
	width: 200px;
	margin-top: 0;
}
.woocommerce div.product form.cart {
	display: inline-grid;
	width: 100%;
}
.woocommerce div.product p.price, .woocommerce div.product span.price {
	color: #C21E29!important;
}
.woocommerce-variation-pricing .price {
	align-self: center;
}
.woocommerce #respond input#submit.alt, .woocommerce a.button.alt, .woocommerce button.button.alt, .woocommerce input.button.alt {
	background-color: var(--lightbrown)!important;
}
.up-sells {
	width: 100%;
}
.woocommerce #respond input#submit, .woocommerce a.button, .woocommerce input.button {
	width: 100%;
	text-align: center;
	align-self: end;
}
.related .painting-shop li {
	background-color: #fff;
}
.related {
	padding: 60px 0;
}
.related h3 {
	text-align: center;
	width: 100%;
}
.coupon {
	display: flex;
}
.coupon .input-text {
	width: 100% !important;
}
.woocommerce #respond input#submit, .woocommerce a.button, .woocommerce button.button, .woocommerce input.button {
	box-sizing: border-box;
}

/* Single Product Styling */
.product {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.product-name a {
	color: #C21E29;
}
.posted_in {
	display: none;
}
.woocommerce-product-gallery {
	width: 46%;
}
.summary {
	width: 100% !important;
	align-self: center;
	display: grid;
	grid-template-columns: 1fr;
}
.summary b {
	grid-row: 2;
}
.entry-summary {
	order: 2;
}
.woocommerce-product-gallery {
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 100% !important;
	margin-left: auto;
	align-self: flex-start;
}
.variations select, #giftoption, #nameforgift {
	padding: 10px;
}
.white .quantity {
	float: none !important;
	margin: 0 4px 20px 0;
	height: 50px;
}
.input-text {
	padding: 10px;
}
.strat-options ul {
	margin: 0;
	list-style: none;
	padding: 0;
}
.wide {
	width: 100%;
}
.woocommerce-variation.single_variation {
	margin-bottom: 30px;
	font-weight: bold;
	border-bottom: solid 1px #e5e5e5;
}
.start-options {
	color: #001f5b
}
.reset_variations {
	color: var(--lightbrown);
	text-decoration: none;
}
.woocommerce-tabs {
    width: 100%;
}
.summary b {
	font-size: 20pt;
}
.woocommerce-product-gallery__image {
	border-radius: 10px;
}
.wc-tabs-wrapper {
	width: 95%;
	margin: auto;
	display: none;
}

/* My Account */
.acc .content {
	margin: auto auto 60px auto;
	border-radius: 10px;
}
.content {
	margin: auto;
}
.tab-nav {
	width: 100%;
	margin-bottom: 60px;
}
.woocommerce-Addresses {
	display: flex;
	flex-grow: 1;
}
.woocommerce-Address {
	width: 48%;
	border-radius: 10px;
	height: 300px;
	margin: 10px;
	box-sizing: border-box;
	padding: 20px;
	display: grid;
	transition: all 0.5s ease-in-out;
}
.woocommerce-Address header {
	height: auto;
	margin:0;
}
.woocommerce-MyAccount-content form {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
}
.address-fields p {
	width: 48%;
}
.card-type {
	width: 60%;
	margin: auto;
	text-align: center;
}
.address-fields p:nth-child(1n+3) {
	width: 100%;
}
.myaccount input, .myaccount textarea {
	border: solid thin #e5e5e5;
}
.myaccount .woocommerce form.login {
	border: none;
	padding: 0;
	margin: 0;
	text-align: left;
	border-radius: 0;
}
dl.variation p {
	display: initial;
	font-weight: bold;
	font-size: 12pt;
	line-height: 1.5em;
}
/*.woocommerce-error, .woocommerce-info, .woocommerce-message {
    width: 100%!important;
}*/
fieldset {
	width: 100%;
	margin-top: 40px;
	border: solid thin #e5e5e5;
}
.checkout.woocommerce-checkout {
	display: grid;
	flex-wrap: wrap;
	grid-template-columns: repeat(auto-fit, minmax(300px,1fr));
	grid-gap: 60px;
}
.col-1, .col-2 {
	width: 100%!important;
}
.woocommerce .col2-set .col-2, .woocommerce-page .col2-set .col-2 {
	float: left!important;
	width: 90%!important;
}
#order_review_heading {
	/* width: 100%; */
	display: none;
}
.woocommerce-notice.woocommerce-notice--success.woocommerce-thankyou-order-received {
	margin-bottom: 60px;
	font-weight: bold;
}
.woocommerce .woocommerce-customer-details, .woocommerce .woocommerce-order-details, .woocommerce .woocommerce-order-downloads {
	margin-bottom: 2em;
	margin-top: 60px;
}
#order_review {
	margin-top: 3em;
}
.variations .bold {
	font-size: 10pt;
	margin-bottom: -10px;
	font-weight: bold;
}
.woocommerce-cart-form__cart-item img {
	height: 150px;
	width: 100px;
}
.strat-options {
	width: 100%;
}
.woocommerce-remove-coupon {
	color: var(--brown);
}

.breadcrumb a {
	color: var(--main-color);
}
.breadcrumb-seperate {
	color: var(--lightbrown);
}
.thwepo-extra-options input {
	padding: 10px;
	margin-bottom: 30px;
	border-radius: 10px;
	border: solid thin var(--lightbrown);
	margin-top: 10px;
}
/* -------------------- Stripe -------------------- */
.form-row-wide {
	width: 100%;
}
.wc-credit-card-form {
	display: flex;
	flex-wrap: wrap;
}
.woocommerce form .form-row input.input-text, .woocommerce form .form-row textarea {
	border-radius: 10px;
	border: solid thin var(--black);
}
.woocommerce-shipping-destination {
	display: none;
}
/* -------------------- WooCommerce Checkout -------------------- */
#billing_country_field {
	margin-top: 3em;
	margin-bottom: 3em;
}
#billing_phone_field {
	margin-top: 3em;
}
#billing_email_field {
	margin-bottom: 3em;
}
.woocommerce-info a, .woocommerce-privacy-policy-link, .woocommerce-terms-and-conditions-link {
	color: var(--main-color);
}
/* -------------------- Thank you -------------------- */
.woocommerce-thankyou-order-received {
	text-align: center;
}
ul.woocommerce-thankyou-order-details {
	display: grid!important;
	grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
	grid-gap: 30px;
}
.woocommerce ul.order_details::before {
	display: none!important;
}
.woocommerce-order p {
	text-align: center;
}
.woocommerce-bacs-bank-details {
	margin-top: 5em;
	padding: 20px;
	background-color: var(--lightshadow);
	border-radius: 10px;
	margin-bottom: 5em;
}
.woocommerce-order-overview__email {
	word-wrap: break-word;
}
ul.wc-bacs-bank-details {
	margin: 0;
	padding: 0;
}
.bank_name {
	width: 100%;
	padding-bottom: 2em;
}
/* -------------------- WooCommerce Image Override -------------------- */

.woocommerce div.product .woocommerce-product-gallery--columns-4 .flex-control-thumbs li:nth-child(4n+1) {
	clear: none!important
}
.flex-control-thumbs li {
	width: auto!important;
}
.flex-control-thumbs img {
	max-width: 80px !important;
	width: 100%;
	height: auto;
	border-radius: 10px;
	border: solid 3px var(--white);
}
.product-thumbnail img {
    border-radius: 10px;
}

/*

	Author:				hedleyenterprises.co.uk - web design starts with a coffee and a chat...
	Description:	CSS Stylesheet for Desktop Devices


*/

/* -------------------- 800 -------------------- */

@media all and (min-width: 50em) {
/* -------------------- Navigation -------------------- */
.navigation {
	display: flex;
}
.menu-btn {
	display: none;
}
.navigation-mobile {
	display: none;
}
.mobile-option {
	display: none;
}
header {
	grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
}
.top-links ul {
    display: flex;
}
.shopping-basket-checkout  {
    justify-content: flex-end;
}
.logo img {
	max-width: 150px;
}
.slogan p {
	font-size: 4rem;
}
/* -------------------- Drop-Down -------------------- */
.sub-menu {
	margin-top: -5px;
}
nav ul ul {
	display: none;
}
nav ul li:hover > ul {
	display: block;
	z-index: 10;
	border-radius: 0 10px 10px 10px;
	overflow: hidden;
}
nav ul {
	padding: 0px 5px 0px 5px;
	list-style: none;
	position: relative;
}
nav ul:after {
	content: ""; clear: both; display: block;
}
nav ul li {
	float: left;
}
nav ul li:hover {
	background-color: var(--brown);
	border-radius: 5px;
}
nav ul li:hover a {
	color: #fff;
}
nav ul li a {
	display: block;
	padding: 10px;
	color: var(--white);
	text-decoration: none;
}
nav ul ul {
	background: var(--lightbrown); border-radius: 0px; padding: 0;
	position: absolute; top: 100%;
}
nav ul ul li {
	float: none;
	position: relative;
}
nav ul ul li a {
	padding: 10px;
	color: var(--lgrey);
	font-weight: normal!important;
}
nav ul ul li a:hover {
	background: var(--brown);
	color: var(--white);
}
nav ul ul ul {
	position: absolute; left: 100%; top:0;
}
.gallery-item {
	width: 20%;
}
}


/* -------------------- 1200 -------------------- */

@media all and (min-width: 75em) {
footer {
	grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
	text-align: left;
}
.badge-details ul {
	justify-content: flex-end;
}
.left-right-grid {
	grid-template-columns: 2fr 1fr;
}
.right-col {
	order: 1;
}
ul.tabs {
	justify-content: center;
}
}

/*

	Author:				hedleyenterprises.co.uk - web design starts with a coffee and a chat...
	Description:	CSS Stylesheet for Desktop Devices with bigger screens


*/


@media all and (min-width: 1900px) {

}
