/*
Theme Name: Preaux Theme
Version: 1.0
Author: Fanatiek media
Author URI: https://fanatiekmedia.nl/
*/

/***************************
          FONTS
***************************/

@font-face {
	font-family: 'Sombra-font';
	src: url('./assets/fonts/Sombra-Light.woff2') format('woff2'),
		 url('./assets/fonts/Sombra-Light.woff') format('woff');
	font-weight: 300;
	font-style: normal;
	font-stretch: normal;
}

@font-face {
	font-family: 'Sombra-font';
	src: url('./assets/fonts/Sombra-Regular.woff2') format('woff2'),
		 url('./assets/fonts/Sombra-Regular.woff') format('woff');
	font-weight: normal;
	font-style: normal;
	font-stretch: normal;

}

@font-face {
	font-family: 'Sombra-font';
	src: url('./assets/fonts/Sombra-Bold.woff2') format('woff2'),
		 url('./assets/fonts/Sombra-Bold.woff') format('woff');
	font-weight: bold;
	font-style: normal;
	font-stretch: normal;

}

/***************************
          GENERAL
***************************/

body {
	width: 100%;
	font-family: 'Sombra-font', sans-serif;
	font-weight: 300;
	font-size: 18px;
	background-color: #fff;
	color: #000;
}

body.show-nav {
	overflow: hidden;
}

html {
	font-size: 100%;
	width: 100%;
}

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

b, strong {
	font-weight: bold;
}

a {
	color: #000;
	transition: all 0.3s ease;
	text-decoration: underline;
}

a:hover {
	color: #000;
	text-decoration: none;
}

p {
	margin: 0 0 20px;
	line-height: 150%;
}

ul, ol {
	line-height: 150%;
	margin: 0 0 20px;
}

.btn,
.button,
.inline-btn a {
	background-color: #000;
	color: #fff;
	display: inline-block;
	padding: 12px 25px;
	min-width: 175px;
	position: relative;
	border: 0px solid;
	cursor: pointer;
	line-height: 120%;
	font-size: 18px;
	margin: 0;
	text-align: center;
	font-family: 'Sombra-font', sans-serif;
	text-decoration: none;
	font-weight: bold;
	border-radius: 0;
	transition: all .3s ease;
	border-radius: 0px;
	width: auto;
}

.btn:hover,
.btn:focus,
.button:hover,
.button:focus,
.inline-btn a:hover,
.inline-btn a:focus {
	background-color: #333;
	transition: all .3s;
	color: #fff;
	border: 0px solid;
}

.inline-btn {
	margin: 30px 0 20px;
}

.btn.alt {
	background-color: #fff;
	color: #000;
}

.btn.alt:hover,
.btn.alt:focus {
	background-color: #f4f4f4;
	color: #000;
}

input, textarea {
    padding: 10px 20px;	
    width: 100%;
	font-family: 'Sombra-font', sans-serif;
	font-weight: 300;
	border: 1px solid #F4F4F4;
	background-color: #F4F4F4;
	color: #000;
	line-height: 100%;
	border-radius: 0px;
	font-size: 18px;
	outline: none;
	margin: 0 0 10px;
	box-shadow: none;
}

input:focus,
textarea:focus {
	border-color: #000000;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
    -webkit-appearance: none;
}

input[readonly],
input[readonly]:focus {
	border: 0px;
	padding: 5px 0;
	margin: 0;
	box-shadow: none;
	background-color: transparent;	
}

select {
    -webkit-appearance: none;
	background-color: #f4f4f4;
	width: 100%;
	padding: 10px 20px;
	border-radius: 0px;
	color: #525666;
	font-family: 'Sombra-font', sans-serif;
    font-weight: 300;
	line-height: 100%;
	font-size: 18px;
	height: 45px;
	margin: 0 0 10px;	
	box-shadow: none;
	border: 1px solid #f4f4f4;
	background-image: url('./assets/images/dropdown.svg');
	background-size: 18px 8px;
	background-position: right 15px center;
	background-repeat: no-repeat;
}

select:focus {
	border-color: #000000;
	outline: none;	
}

.select2-container .select2-selection--single {
	height: 45px;
	background-color: #f4f4f4;
	border: 1px solid #f4f4f4;
	border-radius: 0px;
	padding: 8px 10px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
	top: 12px;
}

.select2-container--default.select2-container--open.select2-container--below .select2-selection--single {
	border-color: #000;
}

.select2-container--default .select2-results__option--highlighted[aria-selected], .select2-container--default .select2-results__option--highlighted[data-selected] {
	background-color: #000;
}

.select2-dropdown {
	border-color: #000;
}

textarea {
	height: 150px;
}

input[type="checkbox"],
input[type="radio"] {
	width: auto;
}

input[type="radio"],
input[type="checkbox"] {
	-webkit-appearance: none;
	width: 20px;
	height: 20px;
	border: 1px solid #d4d4d4;
	background-color: #f4f4f4;
	border-radius: 0px;
	cursor: pointer;
	box-shadow: none;
}

input[type="checkbox"]:focus {
	border-color: #000;
}

input[type="radio"]:checked,
input[type="checkbox"]:checked {
	background-color: #f4f4f4;
    background-image: url('./assets/images/checkmark.svg');
    background-size: 12px 11px;
    background-repeat: no-repeat;
    background-position: center center;
    border: 1px solid #000;
}

input[type="radio"] {
	border-radius: 10px;
}
.container {
	max-width: 1300px;
	margin: 0 auto;
    padding: 0 20px;	
}

.container.small {
	max-width: 920px;
}

@media only screen and (min-width:768px) {
	
	body {
		font-size: 20px;
	}
	
	.btn,
	.button,
	.inline-btn a {
		font-size: 20px;
	}
	
	input, textarea {
		padding: 12px 20px;
		font-size: 20px;
	}
	
	select {
		padding: 12px 20px;
		font-size: 20px;
	}

	.container {
		padding: 0 30px;
	}

}

@media only screen and (min-width:1024px) {
	
	body {
		font-size: 22px;
	}
	
	.container {
		padding: 0 50px;
	}
	
}

/* stop stacking issues */
.clearfix::after {
  content: " ";
  display: table;
}
.clearfix::after {
  clear: both;
}

/* use box-sizing: border-box */
*, *:before, *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/***************************
		   COLUMNS
***************************/

.row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}

.row.align-center {
	align-items: center;
}

.small-padding.row {
	margin-left: -5px;
	margin-right: -5px;
}

.no-padding.row {
	margin-left: 0px;
	margin-right: 0px;
}

.column {
	display: block;
	width: 100%;
	float: left;
	padding-left: 15px;
	padding-right: 15px;
}

.small-padding.row .column {
	padding-left: 5px;
	padding-right: 5px;
}

.no-padding.row .column {
	padding-left: 0px;
	padding-right: 0px;
}

.small-1-2 {
	width: 50%;
}

.row.align-middle {
	align-items: center;
}

.row.align-bottom {
	align-items: flex-end;
}

.row.justify-center {
	justify-content: center;
}

.row.small-reverse {
	flex-direction: column-reverse;
}

@media only screen and (min-width:768px) { 
	
	.row.small-reverse {
		flex-direction: row-reverse;
	}
	
	.row.medium-reverse {
		flex-direction: row-reverse;
	}
	
	.row.medium-noreverse {
		flex-direction: row;
	}
	
	.row.medium-padding {
		margin-left: -20px;
		margin-right: -20px;
	}
		
	.row.medium-padding .column {
		padding-left: 20px;
		padding-right: 20px;
	}
	
	.row.large-padding {
		margin-left: -20px;
		margin-right: -20px;
	}
		
	.row.large-padding .column {
		padding-left: 20px;
		padding-right: 20px;
	}
	
	.row.xlarge-padding {
		margin-left: -30px;
		margin-right: -30px;
	}
		
	.row.xlarge-padding .column {
		padding-left: 30px;
		padding-right: 30px;
	}
	
	.medium-1-5 {
		width: 20%;
	}

	.medium-1-4 {
		width: 25%;
	}
	
	.medium-3-10 {
		width: 30%;
	}
	
	.medium-1-3 {
		width: 33.33334%;
	}
	
	.medium-2-5 {
		width: 40%;
	}
	
	.medium-1-2 {
		width: 50%;
	}
	
	.medium-3-5 {
		width: 60%;
	}
	
	.medium-2-3 {
		width: 66.66666%;
	}
	
	.medium-3-4 {
		width: 75%;
	}

}

@media only screen and (min-width:1024px) {
	
	.row.large-padding {
		margin-left: -30px;
		margin-right: -30px;
	}
		
	.row.large-padding .column {
		padding-left: 30px;
		padding-right: 30px;
	}
	
	.row.l-large-padding {
		margin-left: -30px;
		margin-right: -30px;
	}
		
	.row.l-large-padding .column {
		padding-left: 30px;
		padding-right: 30px;
	}
	
	
	.row.l-xlarge-padding {
		margin-left: -45px;
		margin-right: -45px;
	}
		
	.row.l-xlarge-padding .column {
		padding-left: 45px;
		padding-right: 45px;
	}
	
	.row.large-reverse {
		flex-direction: row-reverse;
	}
	
	.large-1-5 {
		width: 20%;
	}
	
	.large-1-4 {
		width: 25%;
	}
	
	.large-3-10 {
		width: 30%;
	}

	.large-1-3 {
		width: 33.33334%;
	}
	
	.large-35 {
		width: 35%;
	}
	
	.large-2-5 {
		width: 40%;
	}
	
	.large-45 {
		width: 45%;
	}
	
	.large-1-2 {
		width: 50%;
	}
	
	.large-55 {
		width: 55%;
	}
	
	.large-3-5 {
		width: 60%;
	}
	
	.large-2-3 {
		width: 66.66666%;
	}
	
	.large-3-4 {
		width: 75%;
	}
	
}

@media only screen and (min-width:1280px) {
	
	.row.xl-large-padding {
		margin-left: -30px;
		margin-right: -30px;
	}
		
	.row.xl-large-padding .column {
		padding-left: 30px;
		padding-right: 30px;
	}	
	
}

/***************************
		   HEADINGS
***************************/

h1, h2, h3, h4, h5 {
	margin: 0 0 20px 0;
	font-weight: bold;
	font-family: 'Sombra-font', sans-serif;
	padding: 0;
}

h1 {
	font-size: 34px;
}

h2 {
	font-size: 28px;
}

h3 {
	font-size: 20px;
}

h4 {
	font-size: 18px;
}

@media only screen and (min-width:768px) {
	
	
	h1 {
		font-size: 40px;
		margin: 0 0 30px;
	}
	
	h2 {
		font-size: 34px;
	}
	
	h3 {
		font-size: 22px;
	}

	h4 {
		font-size: 20px;
	}

}

@media only screen and (min-width:1024px) {
	
	h1 {
		font-size: 50px;
	}
	
	h2 {
		font-size: 40px;
	}
	
	h3 {
		font-size: 24px;
	}
	
	h4 {
		font-size: 22px;
	}

}

/***************************
    HEADER & NAVIGATION
***************************/

.header {
	position: relative;
	z-index: 99;
	height: 90px;
	background-color: #000; 
}

.header-main {
	position: fixed;
	top: 0;
	width: 100%;
	height: 90px;
	background-color: #000;
	box-shadow: 0 0 5px 0 rgba(0,0,0,0.25);
	transition: all 0.3s ease;
}

.scroll .header-main {
	height: 70px;
}

.header .container {
	padding: 0;
    background-repeat: repeat;
    background-position: center top;
}

.header-logo {
	width: 150px;
	margin: 30px auto 20px;
	padding: 5px 0 0;
	display: block;
	position: relative;
	z-index: 9;
	transition: all 0.3s ease;
}

.scroll .header-logo {
	margin: 20px auto 10px;
}

.header-logo img {
	transition: all 0.3s ease;
}

.header-main .cart {
	background-image: url('./assets/images/basket.svg');
	background-size: 100%;
	background-repeat: no-repeat;
	background-size: 36px;
	width: 40px;
	height: 40px;
	position: absolute;
	z-index: 1;
    top: 27px;
    right: 20px;
}

.scroll .header-main .cart {
	top: 17px;
}

.header-main .cart .total i {
    position: absolute;
    right: -6px;
    top: -4px;
    background: #fff;
	border: 1px solid #000;
    text-indent: 0px;
    color: #000;
	font-weight: bold;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: inline-block;
    text-align: center;
    font-style: normal;
    font-size: 12px;
    letter-spacing: -1px;
    padding: 5px 1px 4px 0;
	transition: all 0.3s ease;
}

.header-main .cart .amount {
	display: none;
}

.header-main .cart:hover .total i {
	transform: scale(1.2);
}

.toggle-nav {
	background-image: url('./assets/images/menuicon.svg');
	background-size: 32px 21px;
	background-position: center top 13px;
	background-repeat: no-repeat;
	background-color: transparent;
    width: 60px;
    height: 60px;
	border: 0px;
	font-size: 12px;
	font-weight: bold;
	text-align: center;
    padding: 32px 0 0;
    margin: 0;
	color: #fff; 
	text-transform: uppercase;
    position: absolute;
    top: 15px;
    left: 10px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.scroll .toggle-nav {
	top: 5px;
}

.toggle-nav:focus {
	outline: none;
}

.header-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    visibility: hidden;
    opacity: 0;
    z-index: 9;
    transition: all 0.3s ease;
}

.show-nav .header-nav {
	visibility: visible;
	opacity: 1;
	height: 100vh;
}

.header-nav .site-menu {
	width: 100%;
	height: 0px;
	overflow-y: auto;
	position: absolute;
	display: flex;
	align-items: center;
	top: 0;
	right: 0;
	background-color: #000000;
	padding: 40px 15px;
	box-sizing: border-box;
	z-index: 999;
	text-align: left;
	transition: all 0.3s ease;
}

.show-nav .header-nav .site-menu {
	height: 100%;
}

.header-nav .site-menu ul {
	list-style-type: none;
	padding: 0;
	margin: 0;
	width: 100%;
}

.header-nav .site-menu ul li {
	position: relative;
	display: block;
	width: 100%;
	padding: 2px 0;
	text-align: center;
}

.header-nav .site-menu ul li a {
	padding: 7px 30px;
	font-size: 26px;
	color: #fff;
	text-decoration: none;
	font-weight: 700;
	display: block;
}

.header-nav .site-menu .off-canvas-close {
	position: absolute;
	top: 30px;
	left: 30px;
	background-image: url('./assets/images/close.svg');
	background-size: 100% 100%;
	width: 32px;
	height: 32px;
	z-index: 999;
	cursor: pointer;
}

.header-nav .site-menu .sub-menu {
	margin: 0 0 5px;
}

.header-nav .site-menu .sub-menu li a {
	text-transform: none;
	font-size: 17px;
	padding: 0px 30px;
}

.header-nav .site-menu .sub-menu li a:before {
	content: '- ';
}

@media only screen and (min-width:600px) {

	.admin-bar .header-main {
		top: 46px;
	}

}

@media only screen and (min-width:768px) {
	
	.header-logo {
		margin: 25px auto;
		width: 200px;
	}
	
	.scroll .header-logo {
		margin: 15px auto;
	}
	
	.toggle-nav {
	    left: 30px;
		background-size: 36px 27px;
		background-position: center top 11px;
		padding: 36px 0 0;
	}

	.scroll .toggle-nav {
		top: 3px;
	}
	
	.header-main .cart {
		background-size: 40px;
		width: 44px;
		height: 44px;
    	top: 27px;
    	right: 35px;
	}
	
	.header-nav .site-menu ul li a {
		font-size: 30px;
		padding: 10px 30px;
	}
	
	.header-nav .site-menu .off-canvas-close {
		left: 40px;
		width: 36px;
		height: 36px;
	}

}

@media only screen and (min-width:783px) {

	.admin-bar .header-main {
		top: 32px;
	}

}

@media only screen and (min-width:1024px) {
	
	
	.header-nav .site-menu ul li a {
		font-size: 36px;
		padding: 12px 30px;
	}
	
	/* .toggle-nav {
	    left: 50px;
		background-size: 40px 26px;
		background-position: center top 9px;
		padding: 37px 0 0;
		font-size: 14px;
		top: 26px;
	}

	.scroll .toggle-nav {
		top: 15px;
	}
	
	.header-main .cart {
		background-size: 48px;
		width: 52px;
		height: 52px;
    	top: 35px;
    	right: 55px;
	}
	
	.scroll .header-main .cart {
		top: 23px;
	}
	
	.header-nav .site-menu .off-canvas-close {
		left: 60px;
		width: 40px;
		height: 40px;
	} */
	
}

/***************************
       PAGE CONTENT
***************************/

.main {
	min-height: calc(100vh - 250px);
}

.page-content {
	padding: 40px 0 20px;
}

@media only screen and (min-width:768px) {
	
	.page-content {
		padding: 60px 0 40px;
	}	
	
}

@media only screen and (min-width:1024px) {
	
	.page-content {
		padding: 80px 0 60px;
	}
	
}

/***************************
       HOME SLIDER
***************************/

.home-slider {
	padding: 0;
	list-style-type: none;
	margin: 0;
}

.home-slider .slick-slide {
	height: 300px;
}

.home-slider .image {
	width: 100%;
	height: 100%;
	display: block;
	margin: 0;
}

.home-slider .image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.home-content {
	text-align: center;
}

.home-content .woocommerce .products {
	margin-top: 30px;
}

@media only screen and (min-width:768px) {
	
	.home-slider .slick-slide {
		height: 400px;
	}
	
	.home-content .woocommerce .products {
		margin-top: 50px;
	}
	
}

@media only screen and (min-width:1024px) {
	
	.home-slider .slick-slide {
		height: 500px;
	}
	
	.home-content .woocommerce .products {
		margin-top: 70px;
	}
	
}

@media only screen and (min-width:1400px) {
	
	.home-slider .slick-slide {
		height: 600px;
	}
	
}

/***************************
      WOOCOMMERCE
***************************/

/* General */

.woocommerce form .form-row::after, 
.woocommerce form .form-row::before, 
.woocommerce-page form .form-row::after, 
.woocommerce-page form .form-row::before {
    content: " ";
    display: table;
}

.woocommerce form .form-row::after, 
.woocommerce-page form .form-row::after {
    clear: both;
}

.woocommerce form .password-input, 
.woocommerce-page form .password-input {
	position: relative;
	display: block;
}

.woocommerce form .show-password-input, 
.woocommerce-page form .show-password-input {
	background-image: url('./assets/images/password-check.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: 30px 25px;
	width: 32px;
	height: 32px;
	position: absolute;
	top: 5px;
	right: 20px;
	cursor: pointer;
}

.woocommerce form .show-password-input.display-password, 
.woocommerce-page form .show-password-input.display-password {
	opacity: 0.5;
}

.woocommerce .woocommerce-form-login .woocommerce-form-login__rememberme {
	position: relative;
	display: inline-block;
	padding: 10px 0 10px 25px;
}

.woocommerce .woocommerce-form-login .woocommerce-form-login__rememberme input[type="checkbox"] {
	position: absolute;
	left: 0;
	top: 11px;
}

.woocommerce .content-area {
	padding: 40px 0 20px;
}

.woocommerce .site-main {
	max-width: 1300px;
	margin: 0 auto;
    padding: 0 20px;		
}

.woocommerce .screen-reader-text {
    clip: rect(1px,1px,1px,1px);
    height: 1px;
    overflow: hidden;
    position: absolute!important;
    width: 1px;
    word-wrap: normal!important;
}

@media only screen and (min-width:768px) {
	
	.woocommerce .content-area {
		padding: 60px 0 40px;
	}
	
	.woocommerce .site-main {
		padding: 0 30px;
	}

}

@media only screen and (min-width:1024px) {
	
	.woocommerce .content-area {
		padding: 80px 0 60px;
	}
	
	.woocommerce .site-main {
		padding: 0 50px;
	}

}

/* Notifications */

.woocommerce-notices-wrapper {
	display: block;
	width: 100%;
}

.woocommerce-error, 
.woocommerce-info, 
.woocommerce-message {
	background-color: #f4f4f4;
	color: #000;
	padding: 12px 20px;
	border-radius: 0px;
	list-style-type: none;
	margin: 0 0 20px;
}

.woocommerce-error p, 
.woocommerce-info p, 
.woocommerce-message p {
	margin: 0;
}

.woocommerce-message .wc-forward {
	margin-right: 10px;
}

.woocommerce-error[role="alert"] {
	background-color: #cb1212;
	list-style-type: disc;
	padding-left: 40px;
}

.woocommerce-error[role="alert"] {
	
}

.woocommerce-info.cart-empty {
	background-image: url('./assets/images/basket-dark.svg');
	background-size: 24px 24px;
	background-position: left 20px center;
	background-repeat: no-repeat;
	padding-left: 55px;
}

/* Tables */

.woocommerce table.shop_table {
    margin: 0 0 20px;
	background-color: #fff;
    text-align: left;
    width: 100%;
    border-collapse: separate;
    border-radius: 0px;
	font-size: 18px;
	border-spacing: 0px;
    border: 1px solid #f4f4f4;
}

.woocommerce table.shop_table td {
	border-top: 1px solid #f4f4f4;
    padding: 15px 20px;
    vertical-align: middle;
    line-height: 120%;	
}

.woocommerce table.shop_table th {
    font-weight: 700;
    padding: 15px 20px;
    line-height: 120%;
}

.woocommerce table.shop_table tbody th, .woocommerce table.shop_table tfoot td, .woocommerce table.shop_table tfoot th {
    font-weight: 700;
	border-top: 1px solid #f4f4f4;
}

@media only screen and (max-width:640px) {
	
	.woocommerce table.shop_table td {
    	padding: 9px 15px;
	}
	
	.woocommerce table.shop_table th {
    	padding: 9px 15px;
	}

	
	.woocommerce table.shop_table_responsive thead,
	.woocommerce-page table.shop_table_responsive thead {
    	display: none;
	}
	
	.woocommerce table.shop_table_responsive tbody tr:first-child td:first-child,
	.woocommerce-page table.shop_table_responsive tbody tr:first-child td:first-child {
    	border-top: 0;
	}
	
	.woocommerce table.shop_table_responsive tbody th,
	.woocommerce-page table.shop_table_responsive tbody th {
    	display: none;
	}
	
	.woocommerce table.shop_table_responsive tr,
	.woocommerce-page table.shop_table_responsive tr {
    	display: block;
	}
	
	.woocommerce table.shop_table_responsive tr td,
	.woocommerce-page table.shop_table_responsive tr td {
    	display: block;
    	text-align: right !important;
	}
	
	.woocommerce table.shop_table_responsive tr td.order-actions,
	.woocommerce-page table.shop_table_responsive tr td.order-actions {
    	text-align: left !important;
	}
	
	.woocommerce table.shop_table_responsive tr td::before,
	.woocommerce-page table.shop_table_responsive tr td::before {
    	content: attr(data-title) ": ";
    	font-weight: 700;
    	float: left;
	}
	
	.woocommerce table.shop_table_responsive tr td.actions::before,
	.woocommerce table.shop_table_responsive tr td.product-remove::before,
	.woocommerce-page table.shop_table_responsive tr td.actions::before,
	.woocommerce-page table.shop_table_responsive tr td.product-remove::before {
    	display: none;
	}
	
	.woocommerce table.shop_table_responsive tr:nth-child(2n) td,
	.woocommerce-page table.shop_table_responsive tr:nth-child(2n) td {
    	background-color: rgba(0, 0, 0, 0.025);
	}
	
	.woocommerce table.my_account_orders tr td.order-actions,
	.woocommerce-page table.my_account_orders tr td.order-actions {
    	text-align: left;
	}
	
	.woocommerce table.my_account_orders tr td.order-actions::before,
	.woocommerce-page table.my_account_orders tr td.order-actions::before {
    	display: none;
	}
	
	.woocommerce table.my_account_orders tr td.order-actions .button,
	.woocommerce-page table.my_account_orders tr td.order-actions .button {
    	float: none;
    	margin: 0.125em 0.25em 0.125em 0;
	}
	
	.woocommerce .col2-set .col-1,
	.woocommerce .col2-set .col-2,
	.woocommerce-page .col2-set .col-1,
	.woocommerce-page .col2-set .col-2 {
    	float: none;
    	width: 100%;
	}
	
	.woocommerce ul.products[class*="columns-"] li.product,
	.woocommerce-page ul.products[class*="columns-"] li.product {
    	width: 48%;
    	float: left;
    	clear: both;
    	margin: 0;
	}
	
	.woocommerce ul.products[class*="columns-"] li.product:nth-child(2n),
	.woocommerce-page ul.products[class*="columns-"] li.product:nth-child(2n) {
    	float: right;
    	clear: none !important;
	}
	
	.woocommerce #content div.product div.images,
	.woocommerce #content div.product div.summary,
	.woocommerce div.product div.images,
	.woocommerce div.product div.summary,
	.woocommerce-page #content div.product div.images,
	.woocommerce-page #content div.product div.summary,
	.woocommerce-page div.product div.images,
	.woocommerce-page div.product div.summary {
    	float: none;
    	width: 100%;
	}
	
	.woocommerce #content table.cart .product-thumbnail,
	.woocommerce table.cart .product-thumbnail,
	.woocommerce-page #content table.cart .product-thumbnail,
	.woocommerce-page table.cart .product-thumbnail {
    	display: none;
	}
	
	.woocommerce #content table.cart td.actions,
	.woocommerce table.cart td.actions,
	.woocommerce-page #content table.cart td.actions,
	.woocommerce-page table.cart td.actions {
    	text-align: left;
	}
	
	.woocommerce #content table.cart td.actions .coupon,
	.woocommerce table.cart td.actions .coupon,
	.woocommerce-page #content table.cart td.actions .coupon,
	.woocommerce-page table.cart td.actions .coupon {
    	float: none;
    	padding-bottom: 0.5em;
	}
	
	.woocommerce #content table.cart td.actions .coupon::after,
	.woocommerce #content table.cart td.actions .coupon::before,
	.woocommerce table.cart td.actions .coupon::after,
	.woocommerce table.cart td.actions .coupon::before,
	.woocommerce-page #content table.cart td.actions .coupon::after,
	.woocommerce-page #content table.cart td.actions .coupon::before,
	.woocommerce-page table.cart td.actions .coupon::after,
	.woocommerce-page table.cart td.actions .coupon::before {
    	content: " ";
    	display: table;
	}
	
	.woocommerce #content table.cart td.actions .coupon::after,
	.woocommerce table.cart td.actions .coupon::after,
	.woocommerce-page #content table.cart td.actions .coupon::after,
	.woocommerce-page table.cart td.actions .coupon::after {
    	clear: both;
	}
	
	.woocommerce #content table.cart td.actions .coupon .button,
	.woocommerce #content table.cart td.actions .coupon .input-text,
	.woocommerce #content table.cart td.actions .coupon input,
	.woocommerce table.cart td.actions .coupon .button,
	.woocommerce table.cart td.actions .coupon .input-text,
	.woocommerce table.cart td.actions .coupon input,
	.woocommerce-page #content table.cart td.actions .coupon .button,
	.woocommerce-page #content table.cart td.actions .coupon .input-text,
	.woocommerce-page #content table.cart td.actions .coupon input,
	.woocommerce-page table.cart td.actions .coupon .button,
	.woocommerce-page table.cart td.actions .coupon .input-text,
	.woocommerce-page table.cart td.actions .coupon input {
    	width: 48%;
    	box-sizing: border-box;
	}
	
	.woocommerce #content table.cart td.actions .coupon .button.alt,
	.woocommerce #content table.cart td.actions .coupon .input-text + .button,
	.woocommerce table.cart td.actions .coupon .button.alt,
	.woocommerce table.cart td.actions .coupon .input-text + .button,
	.woocommerce-page #content table.cart td.actions .coupon .button.alt,
	.woocommerce-page #content table.cart td.actions .coupon .input-text + .button,
	.woocommerce-page table.cart td.actions .coupon .button.alt,
	.woocommerce-page table.cart td.actions .coupon .input-text + .button {
    	float: right;
	}
	
	.woocommerce #content table.cart td.actions .button,
	.woocommerce table.cart td.actions .button,
	.woocommerce-page #content table.cart td.actions .button,
	.woocommerce-page table.cart td.actions .button {
    	display: block;
    	width: 100%;
	}
	
}

/* Products */

.woocommerce .products {
	padding: 0;
	margin: 0 -15px;
	list-style-type: none;
	display: flex;
	flex-wrap: wrap;
}

.woocommerce .products li.product {
	padding-left: 15px;
	padding-right: 15px;
}

.woocommerce .products li.product a {
	text-decoration: none;
	display: block;
	margin: 0 0 30px;
	text-align: center;
}

.woocommerce .products li.product a .image {
	display: block;
	border-radius: 0px;
	overflow: hidden;
	margin: 0 0 20px;
}

.woocommerce .products li.product a .image img {
	width: 100%;
	display: block;
	transition: all 0.3s ease;
}

.woocommerce .products li.product a h2 {
	font-size: 18px;
	margin: 0;
}

.woocommerce .products li.product a .price {
	color: #9E9E9E;
}

.woocommerce .products li.product a:hover .image img {
	transform: scale(1.05);
}

.woocommerce .products li.product a small {
	font-size: 100%;
}

@media only screen and (min-width:768px) {
	
	.woocommerce .products.columns-3 li.product {
		width: 33.333334%;
	}
	
	.woocommerce .products.columns-4 li.product {
		width: 50%;
	}
	
	.woocommerce .products li.product a h2 {
		font-size: 20px;
	}
	
}

@media only screen and (min-width:1024px) {
	
	.woocommerce .products {
		margin: 0 -25px;
	}
	
	.woocommerce .products.columns-4 {
		margin: 0 -15px;
	}
	
	.woocommerce .products.columns-4 li.product {
		width: 25%;
		padding-left: 15px;
		padding-right: 15px;
	}
	
	.woocommerce .products li.product {
		padding-left: 25px;
		padding-right: 25px;
	}
	
	.woocommerce .products li.product a h2 {
		font-size: 22px;
	}
	
}

/* Product single */

.woocommerce div.product {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -15px;
}

.woocommerce div.product div.images {
	padding-left: 15px;
	padding-right: 15px;
	width: 100%;
	float: left;	
}

.woocommerce div.product div.images {
    margin-bottom: 2em;
}

.woocommerce div.product div.images img {
    display: block;
    width: 100%;
    height: auto;
    box-shadow: none;
}

.woocommerce div.product div.images div.thumbnails {
    padding-top: 1em;
}
.woocommerce div.product div.images.woocommerce-product-gallery {
    position: relative;
}

.woocommerce div.product div.images.woocommerce-product-gallery .flex-viewport {
	margin: 0 0 15px;
}

.woocommerce div.product div.images .woocommerce-product-gallery__wrapper {
    transition: all cubic-bezier(0.795, -0.035, 0, 1) 0.5s;
    margin: 0;
    padding: 0;
}
.woocommerce div.product div.images .woocommerce-product-gallery__wrapper .zoomImg {
    background-color: #fff;
    opacity: 0;
}
.woocommerce div.product div.images .woocommerce-product-gallery__image--placeholder {
    border: 1px solid #f2f2f2;
}
.woocommerce div.product div.images .woocommerce-product-gallery__image:nth-child(n + 2) {
    width: 25%;
    display: inline-block;
}
.woocommerce div.product div.images .woocommerce-product-gallery__trigger {
    position: absolute;
    top: 0.5em;
    right: 0.5em;
    font-size: 2em;
    z-index: 9;
    width: 36px;
    height: 36px;
    background: #fff;
    text-indent: -9999px;
    border-radius: 100%;
    box-sizing: content-box;
}
.woocommerce div.product div.images .woocommerce-product-gallery__trigger::before {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    border: 2px solid #000;
    border-radius: 100%;
    position: absolute;
    top: 9px;
    left: 9px;
    box-sizing: content-box;
}
.woocommerce div.product div.images .woocommerce-product-gallery__trigger::after {
    content: "";
    display: block;
    width: 2px;
    height: 8px;
    background: #000;
    border-radius: 6px;
    position: absolute;
    top: 19px;
    left: 22px;
    transform: rotate(-45deg);
    box-sizing: content-box;
}
.woocommerce div.product div.images .flex-control-thumbs {
    overflow: hidden;
    zoom: 1;
    margin: 0;
    padding: 0;
}
.woocommerce div.product div.images .flex-control-thumbs li {
    width: 25%;
    float: left;
    margin: 0;
    list-style: none;
}
.woocommerce div.product div.images .flex-control-thumbs li img {
    cursor: pointer;
    opacity: 0.5;
    margin: 0;
}
.woocommerce div.product div.images .flex-control-thumbs li img.flex-active,
.woocommerce div.product div.images .flex-control-thumbs li img:hover {
    opacity: 1;
}
.woocommerce div.product .woocommerce-product-gallery--columns-3 .flex-control-thumbs li:nth-child(3n + 1) {
    clear: left;
}
.woocommerce div.product .woocommerce-product-gallery--columns-4 .flex-control-thumbs li:nth-child(4n + 1) {
    clear: left;
}
.woocommerce div.product .woocommerce-product-gallery--columns-5 .flex-control-thumbs li:nth-child(5n + 1) {
    clear: left;
}

.woocommerce div.product div.summary {
	padding-left: 15px;
	padding-right: 15px;
	width: 100%;
	float: none;
}

.woocommerce div.product div.summary .product_title {
	margin: 0 0 5px;
}

.woocommerce div.product p.price {
	font-size: 18px;
	font-weight: 300;
	color: #9E9E9E;
}

.woocommerce div.product div.summary .variations {
	margin: 0 0 15px;
}

.woocommerce div.product div.summary .variations th.label {
	vertical-align: top;
    padding: 15px 10px 15px 0;
}

.woocommerce div.product div.summary .variations select {
	margin: 0 0 2px;
}

.woocommerce div.product div.summary .variations .reset_variations {
	font-size: 0.8em;
}

.woocommerce div.product div.summary .cart {
	margin: 0 0 30px;
}

.woocommerce div.product div.summary .cart [type="submit"] {
	padding: 13px 30px 11px;
	min-width: 150px;
}

.woocommerce .qty-label {
	display: inline-block;
}

.woocommerce .quantity .qty {
	width: 80px;
	text-align: center;
}

.woocommerce div.product form.cart div.quantity {
    margin: 0 10px 0 0;
	display: inline-block;
}

.woocommerce div.product form.cart div.quantity.hidden {
	display: none;
}

.woocommerce a.remove {
	color: #e91e1e;
	text-decoration: none;
	font-size: 22px;
	font-weight: bold;
}

.woocommerce div.product div.summary .time,
.woocommerce div.product div.summary .delivery {
	font-weight: bold;
	background-image: url('./assets/images/delivery.svg');
	background-repeat: no-repeat;
	background-position: left top 3px;
	background-size: 24px 18x;	
	padding: 0 0 0 35px;
	color: #222;
	margin: 0 0 30px;
}

.woocommerce div.product div.summary .time {
	background-image: url('./assets/images/time.svg');
	background-size: 23px 23px;
	background-position: left top 1px;
	margin: 0 0 5px;
}

.woocommerce .size-charts .size-chart-toggle {
	background-image: url('./assets/images/size.svg');
	background-size: 24px 24px;
	background-repeat: no-repeat;
	background-position: left 15px center;	
	border: 1px solid #f4f4f4;
	padding: 10px 20px 10px 50px;
	display: inline-block;
	cursor: pointer;
	margin: 0 0 15px;
}

.woocommerce .size-charts .size-chart-toggle:hover {
	background-color: #f4f4f4;
}

.woocommerce .size-charts .value {
	display: none;
}

.woocommerce .size-charts table {
	width: 100%;
	background-color: #000;
	color: #fff;
	border-spacing: 0px;
	margin: 0 0 15px;
	padding: 10px;
	border-radius: 0;
	text-align: left;
	line-height: 120%;
}

.woocommerce .size-charts table th,
.woocommerce .size-charts table td {
	padding: 3px 5px 3px;
}

.woocommerce .related.products {
	display: block;
	margin: 50px 0 0;
	padding: 0 15px;
	width: 100%;
}


@media only screen and (min-width:768px) {
	
	.woocommerce div.product {
		margin: 0 -20px;
	}
	
	.woocommerce div.product div.images,
    .woocommerce div.product div.summary {
		padding-left: 20px;
		padding-right: 20px;
		width: 50%;
	}

	.woocommerce div.product p.price {
		font-size: 20px;
	}
	
	.woocommerce .related.products {
		padding: 0 20px;
	}


}

@media only screen and (min-width:1024px) {
	
	.woocommerce div.product {
		margin: 0 -30px;
	}
	
	.woocommerce div.product p.price {
		font-size: 26px;
	}
	
	.woocommerce div.product div.images,
    .woocommerce div.product div.summary {
		padding-left: 30px;
		padding-right: 30px;
	}
	
	.woocommerce .size-charts table {
		padding: 20px;
	}
	
	.woocommerce .size-charts table th,
	.woocommerce .size-charts table td {
		padding: 4px 6px 4px;
	}
	
	.woocommerce .related.products {
		padding: 0 30px;
	}
	
}

/* Cart */

.woocommerce .shop_table.cart .button[name="update_cart"] {
	padding: 8px 20px;
}

.woocommerce .shop_table.cart .button.back-to-shop {
	padding: 8px 20px;
}

.woocommerce .shop_table.cart .button[name="update_cart"]:disabled[disabled] {
	opacity: 0.5;
}

.woocommerce #content table.cart td.actions, .woocommerce table.cart td.actions, .woocommerce-page #content table.cart td.actions, .woocommerce-page table.cart td.actions {
	text-align: right;
}

.woocommerce-cart table.cart img {
	width: 50px;
}

.woocommerce-shipping-destination {
	display: none;
}

.woocommerce table.cart td.actions .coupon .input-text {
	width: 100%;	
}

.woocommerce-page table.cart td.actions .coupon .input-text + .button {
	width: 100%;
	padding: 8px 20px;
	float: none;	
}

@media only screen and (min-width:768px) {

	.woocommerce table.cart td.actions .coupon {
		display: flex;
		justify-content: flex-end;
		margin: 0 0 10px;
	}

	.woocommerce table.cart td.actions .coupon .input-text {
		width: 200px;	
		margin: 0 10px 0 0;
	}
	
	.woocommerce-page table.cart td.actions .coupon .input-text + .button {
		width: auto;
		padding: 8px 20px;	
	}
	
}

/* Checkout */

.woocommerce-form-coupon-toggle {
	margin: 0 0 30px;
}

.woocommerce form .form-row .required {
	text-decoration: none;
}

.woocommerce-shipping-fields__field-wrapper,
.woocommerce-billing-fields__field-wrapper {
	display: flex;
	flex-wrap: wrap;
}

.woocommerce-billing-fields h3 {
	display: none;
}

.woocommerce-shipping-fields .form-row,
.woocommerce-billing-fields .form-row {
	display: flex;
	flex-wrap: wrap;
	margin: 0 0 10px;
	width: 100%;
}

.woocommerce-shipping-fields .form-row label,
.woocommerce-billing-fields .form-row label {
	display: block;
	width: 100%;
	line-height: 110%;
	padding: 5px 0;
	display: block;
}

.woocommerce-shipping-fields .form-row .woocommerce-input-wrapper,
.woocommerce-billing-fields .form-row .woocommerce-input-wrapper {
	display: block;
	width: 100%;
}

.woocommerce-shipping-fields .form-row .woocommerce-input-wrapper input,
.woocommerce-billing-fields .form-row .woocommerce-input-wrapper input {
	margin: 0;
}

.woocommerce #shipping_company_field,
.woocommerce #billing_company_field {
	display: none;
}

.woocommerce form .form-row.form-row-third {
	width: 100%;
	float: none;
	margin: 0 0 10px;
}

.woocommerce form .form-row.form-row-third.first {
	width: 100%;
}

.woocommerce #shipping_house_number_field input[type="text"],
.woocommerce #billing_house_number_field input[type="text"] {
	width: 100%;
	max-width: 160px;
}

.woocommerce-shipping-fields h3 {
    font-weight: 300;
    color: #000;
    font-size: 18px;
	text-transform: none;
}

.woocommerce-shipping-fields .checkbox {
	position: relative;
	width: 100%;
	padding: 0 0 0 25px;
}

.woocommerce-shipping-fields .checkbox input[type="checkbox"] {
	position: absolute;
	top: 1px;
	left: 0;
}

.woocommerce-additional-fields h3 {
	display: none;
}

.woocommerce-additional-fields .form-row label {
	padding: 5px 0px;
	display: block;
}

.woocommerce form .form-row {
	position: relative;
}

.woocommerce form .form-row label.checkbox, 
.woocommerce-page form .form-row label.checkbox,
.woocommerce form .woocommerce-form__label-for-checkbox {
	position: relative;
    display: block;
    width: 100%;
    line-height: 130%;
    padding: 0 0 0 27px;
}

.woocommerce form .mailchimp-newsletter .input-checkbox,
.woocommerce form .form-row label.checkbox .input-checkbox {
	position: absolute;
    left: 0;
    top: 2px;	
}

.woocommerce table.woocommerce-checkout-review-order-table {
	border: 1px solid #f4f4f4;
}

.woocommerce table.woocommerce-checkout-review-order-table  td {
	border-color: #f4f4f4;
}

.woocommerce table.woocommerce-checkout-review-order-table  tbody th, .woocommerce table.woocommerce-checkout-review-order-table  tfoot td, .woocommerce table.woocommerce-checkout-review-order-table  tfoot th {
	border-color: #f4f4f4;	
}

.woocommerce .woocommerce-shipping-methods {
	list-style-type: none;
	padding: 0;
	margin: 0;
}

.woocommerce .woocommerce-shipping-methods li {
	position: relative;
	padding: 3px 0 3px 0;
	font-weight: normal;
}

/* .woocommerce .woocommerce-shipping-methods li input[type="radio"] {
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border: 1px solid #fff;
    background-color: #fff;
    border-radius: 4px;
    cursor: pointer;
    position: absolute;
    top: 6px;
    left: 0;	
}

.woocommerce .woocommerce-shipping-methods li input[type="radio"]:checked {
    background-color: #fff;
    background-image: url(./assets/images/checkmark.svg);
    background-size: 12px 11px;
    background-repeat: no-repeat;
    background-position: center center;
    border: 1px solid #fff;
} */

.woocommerce .woocommerce-shipping-methods li select {
	font-size: 15px;
}

.woocommerce #order_review_heading {
	display: none;
}

.woocommerce-checkout-payment ul {
	list-style-type: none;
	padding: 0;
}

.woocommerce-checkout-payment ul li {
	position: relative;
	padding: 2px 0 0 27px;
}

.woocommerce-checkout-payment ul input[type="radio"] {
	-webkit-appearance: none;
	width: 20px;
	height: 20px;
	border: 1px solid #d4d4d4;
	background-color: #f4f4f4;
	border-radius: 0px;
	cursor: pointer;
	box-shadow: none;
	position: absolute;
	top: 6px;
	left: 0;
}

.woocommerce-checkout-payment ul input[type="radio"]:checked {
	background-color: #f4f4f4;
    background-image: url('./assets/images/checkmark.svg');
    background-size: 12px 11px;
    background-repeat: no-repeat;
    background-position: center center;
    border: 1px solid #000;
}

.woocommerce-checkout-payment ul li .payment_box {
	font-weight: normal;
}

.woocommerce-checkout-payment ul li .payment_box p {
	margin: 0 0 5px;
	padding: 0;
}

.woocommerce-checkout-payment ul li .payment_box select {
	width: 100%;
	max-width: 200px;
	padding: 4px 15px;
}

.woocommerce-invalid #terms {
	border: 1px solid #cb1212;
}

.woocommerce form .form-row.woocommerce-invalid .select2-container, .woocommerce form .form-row.woocommerce-invalid input.input-text, .woocommerce form .form-row.woocommerce-invalid select {
	border-color: #cb1212;
}

.woocommerce form .form-row.woocommerce-invalid label {
	color: #cb1212;	
}

@media only screen and (min-width:768px) {
	
	.woocommerce-form-coupon-toggle {
		margin: 0 0 30px;
	}
		
	.woocommerce-shipping-fields .form-row,
	.woocommerce-billing-fields .form-row {
		margin: 0 0 20px;
	}
	
	.woocommerce-shipping-fields .form-row label,
	.woocommerce-billing-fields .form-row label {
		width: 170px;
		align-self: center;
		padding: 0 10px 0 0;
	}
	
	.woocommerce-shipping-fields .form-row .woocommerce-input-wrapper,
	.woocommerce-billing-fields .form-row .woocommerce-input-wrapper {
		width: calc(100% - 170px);
	}	
	
	.woocommerce form .form-row.form-row-third {
		margin: 0 0 20px;
	}
	
	.woocommerce #shipping_house_number_suffix_field label,
	.woocommerce #billing_house_number_suffix_field label {
		width: 60px;
	}
	
	.woocommerce #shipping_house_number_suffix_field .woocommerce-input-wrapper,
	.woocommerce #billing_house_number_suffix_field .woocommerce-input-wrapper {
		width: calc(100% - 60px);
	}
	
	.woocommerce #shipping_house_number_field,
	.woocommerce #billing_house_number_field {
		width: 70%;
		padding: 0 5px 0 0;
	}
	
	.woocommerce #shipping_house_number_suffix_field,
	.woocommerce #billing_house_number_suffix_field {
		width: 30%;
		padding: 0 0 0 5px;
	}
	
}

/* Order received */

.woocommerce-order .woocommerce-order-overview {
	list-style-type: none;
	padding: 0;
}

.woocommerce-order-details__title {
	font-size: 1.2em;
}

.woocommerce-customer-details .woocommerce-column__title {
	font-size: 1.2em;
}

.woocommerce-order address {
	font-style: normal;
	margin: 0 0 20px;
	line-height: 150%;
}

.woocommerce-order address p {
	margin: 0;
}

.woocommerce-order .order_details .wc-item-meta {
	padding: 0;
	list-style-type: none;
	margin: 0;
}

.woocommerce-order .order_details .wc-item-meta p {
	display: inline;
	margin: 0;
}

@media only screen and (min-width:1024px) {

	.woocommerce-order .pickup-location {
		float: right;
		margin: 0 0 20px 20px;
	}

}

/***************************
		   FORMS
***************************/

.gform_wrapper {
	margin: 0 0 15px 0;
}

.gform_title {
	margin: 20px 0 0;
	font-size: 22px;
}

.gform_fields {
	list-style-type: none;
	margin: 0 0 10px;
	padding: 0;
}

.gfield {
	margin: 0 0 10px 0;
	display: block;
	width: 100%;
	padding: 0px;
	border: 0px;
}

.gfield_label {
	padding: 0 0 5px;
	line-height: 150%;
	display: block;
}

.hide-labels .gfield_label {
	display: none;
}

.gfield_checkbox, 
.gfield_radio {
	margin: 0;
	list-style-type: none;
	padding: 0;
	position: relative;
	padding: 0;
}

.gfield_checkbox .gchoice,
.gfield_radio .gchoice,
.ginput_container_consent{
	line-height: 120%;
	position: relative;
	padding: 0px 0 10px 28px;
}

.ginput_container_consent [type="checkbox"],
.gfield_checkbox [type="checkbox"],
.gfield_radio [type="radio"] {
	position: absolute;
	top: 1px;
	left: 0;
}

.gform_body .gfield:before, .gform_body .gfield_checkbox li:before {
	display: none;
}

.gfield_radio .gchoice label {
	display: flex;
}

.gfield_radio .places {
	display: inline-block;
	background-color: #CDA95B;
	color: #fff;
	padding: 1px 10px;
	font-size: 14px;
	border-radius: 20px;
	margin: 0 0 0 10px;
}

.validation_error,
.validation_message {
	font-size: 14px;
	font-weight: bold;
	color: #e03333;
	padding: 0;
	margin: 0 0 10px;
    display: block;
    width: 100%;
}

h2.gform_submission_error {
	font-size: 16px;
	font-weight: bold;
	color: #e03333;
}

h2.gform_submission_error:after {
	display: none;
}

.gform_confirmation_message {
    background: #38da0f;
    color: #fff;
    padding: 10px;
    margin: 0.5em 0 25px;
}

.gform_validation_container, .gform_wrapper .gform_validation_container, body .gform_wrapper .gform_body ul.gform_fields li.gfield.gform_validation_container, body .gform_wrapper li.gform_validation_container, body .gform_wrapper ul.gform_fields li.gfield.gform_validation_container {
    display: none!important;
    position: absolute!important;
    left: -9000px;
}

.gfield:after {
	content: " ";
	display: table;
	clear: both;	
}

.gfield .instruction {
	display: none;
}

.gform_required_legend {
	display: none;
}

.gsection_title {
	font-size: 18px;
	margin: 20px 0 0;
}

.gform_wrapper .gfield_visibility_hidden,
.gform_wrapper .gf_invisible {
    visibility: hidden;
    position: absolute;
    left: -9999px;
}

/***************************
          FOOTER
***************************/

.footer {
	background-color: #000;
	color: #fff;
	padding: 40px 0 20px;
}

.footer a {
	color: #fff;
	text-decoration: none;
}

.footer a:hover {
	text-decoration: underline;
}

.footer ul {
	list-style-type: none;
	padding: 0;
}

.footer .newsletter {
	width: 100%;
	max-width: 500px;
}

.footer .newsletter .gform_submission_error {
	display: none;
}

.footer .newsletter input[type="email"] {
	background-color: #3C3A3A;
	border-color: #3C3A3A;
	color: #fff;
}

.footer .newsletter input[type="email"]:focus {
	border-color: #fff;
}

.footer .newsletter input[type="email"]::placeholder {
	color: #919191;
}

.footer .newsletter .button {
	background-color: #fff;
	color: #000;
}

.footer .newsletter .button:hover,
.footer .newsletter .button:focus {
	background-color: #f4f4f4;
	color: #000;
}

.footer .bottom {
	text-align: center;
}

.footer .copy {
	font-weight: bold;
	font-size: 16px;
	margin: 20px 0 5px;
}

.footer .developer {
	font-size: 16px;	
}

@media only screen and (min-width:768px) {
	
	.footer {
		padding: 60px 0 40px;
	}
	
	.footer .copy {
		margin: 40px 0 5px;
	}

}

@media only screen and (min-width:1024px) {
	
	.footer {
		padding: 80px 0 60px;
	}
	
	.footer .newsletter #gform_1 {
		display: flex;
	}
	
	.footer .newsletter .gform_body {
		width: 100%;
	}
	
	.footer .newsletter .gform_footer {
		padding: 0 0 0 20px;
		max-width: 200px;
	    flex-shrink: 0;
	}

}