/*------------------------------------*\
	COLOURS
\*------------------------------------*

	Primary			#000000
	Secondard		#444444
	Link			#ff0000
	
*/
/*------------------------------------*\
	TYPOGRAPHY
\*------------------------------------*/
@import url('../fonts/fontawesome/fontawesome.css');

@font-face {
    font-family: 'HurmeGeometricSans3';
    src: url('../fonts/hurmegeometricsans3-regular-webfont.eot');
    src: url('../fonts/hurmegeometricsans3-regular-webfont.eot?#iefix') format('embedded-opentype'),
    url('../fonts/hurmegeometricsans3-regular-webfont.woff2') format('woff2'),
    url('../fonts/hurmegeometricsans3-regular-webfont.woff') format('woff'),
    url('../fonts/hurmegeometricsans3-regular-webfont.ttf') format('truetype'),
    url('../fonts/hurmegeometricsans3-regular-webfont.svg#HurmeGeometricSans3') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'HurmeGeometricSans3';
    src: url('../fonts/hurmegeometricsans3-semibold-webfont.eot');
    src: url('../fonts/hurmegeometricsans3-semibold-webfont.eot?#iefix') format('embedded-opentype'),
    url('../fonts/hurmegeometricsans3-semibold-webfont.woff2') format('woff2'),
    url('../fonts/hurmegeometricsans3-semibold-webfont.woff') format('woff'),
    url('../fonts/hurmegeometricsans3-semibold-webfont.ttf') format('truetype'),
    url('../fonts/hurmegeometricsans3-semibold-webfont.svg#HurmeGeometricSans3') format('svg');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'HurmeGeometricSans3';
    src: url('../fonts/hurmegeometricsans3-bold-webfont.eot');
    src: url('../fonts/hurmegeometricsans3-bold-webfont.eot?#iefix') format('embedded-opentype'),
    url('../fonts/hurmegeometricsans3-bold-webfont.woff2') format('woff2'),
    url('../fonts/hurmegeometricsans3-bold-webfont.woff') format('woff'),
    url('../fonts/hurmegeometricsans3-bold-webfont.ttf') format('truetype'),
    url('../fonts/hurmegeometricsans3-bold-webfont.svg#HurmeGeometricSans3') format('svg');
    font-weight: bold;
    font-style: normal;
}

/*------------------------------------*\
    STYLES
\*------------------------------------*/

html,
button,
input,
select,
textarea {
    font-size: 13px;
    font-family: 'HurmeGeometricSans3', Arial, sans-serif;
    color: #585956;
    color: #333333;
    font-weight: normal;
}

body {
    line-height: 1.2;
    margin: 0;
    color: #000;
}

em {
	font-style: italic;
}

a {
    color: #585956;
    color: #333333;
    text-decoration: underline;
    font-weight: normal;
    outline: none;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

a:hover {
    color: #000;
}

a:focus,
a:hover,
a:active {
    outline: 0;
}

p {
    margin: 0 0 15px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'HurmeGeometricSans3', Arial, sans-serif;
    font-weight: bold;
    line-height: 1.2;
    margin: 0 0 15px;
}

h1 {
    font-size: 30px;
    margin-bottom: 30px;
}

h2 {
    font-size: 30px;
    margin-bottom: 30px;
}

h3 {
    font-size: 16px;
    color: #c7c8ca;
}

h4 {
    font-size: 16px;
}

h5 {
    font-size: 15px;
}

h6 {
    font-size: 15px;
}

img {
    vertical-align: bottom;
}

ul {
    padding: 0 0 0 15px;
    margin: 0 0 15px;
    position: relative;
}

ol {
    padding: 0 0 0 18px;
    margin: 0 0 15px;
    position: relative;
}

blockquote {
    display: block;
    position: relative;
    margin: 0;
    background: #444;
    margin-bottom: 10px;
    padding: 10px 10px;
}

hr {
    width: 90%;
    height: 5px;
    background-color: #444;
    margin: 20px 0;
}

/*------------------------------------*\
    FORMS
\*------------------------------------*/

input,
select,
textarea {
    outline: 0;
    border: 1px solid #000;
    border-radius: 0;
    padding: 5px;
    height: 30px;
    color: #444;
    color: #333333;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

input:focus,
select:focus,
textarea:focus {
    outline: 0;
}

textarea {
    height: 90px;
}

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

input[type="button"],
input[type="submit"],
.button {
    display: inline-block;
    outline: 0;
    border: 1px solid #333333;
    border-radius: 0;
    padding: 9.5px 23px;
    height: 40px;
    color: #333333;
    text-align: center;
    text-transform: uppercase;
    background: none;
    letter-spacing: 2px;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

input[type="button"]:hover,
input[type="submit"]:hover,
.button:hover {
    opacity: 0.8;
}

input[type=number],
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    -moz-appearance: textfield;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}

select::-ms-expand {
    display: none;
}

select {
    background-color: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    -o-appearance: none;
    appearance: none;
    text-indent: 1px;
    text-overflow: '';
}

.chosen-container-single .chosen-single {
    outline: 0;
    border: 1px solid #000;
    border-radius: 0;
    padding: 0 5px;
    height: 30px;
    color: #444;
    color: #333333;
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 0;
    background: none;
    box-shadow: none;
    text-decoration: none;
    white-space: nowrap;
    line-height: 30px;
}

.chosen-container-active.chosen-with-drop .chosen-single {
    border: 1px solid #000;
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
    background-image: none;
    background: #fff;
    box-shadow: none;
}

.chosen-container-single .chosen-single div b {
    display: none;
}

.chosen-container .chosen-drop {
    position: absolute;
    top: 100%;
    left: -9999px;
    z-index: 1010;
    box-sizing: border-box;
    width: 100%;
    border-width: 0px 1px 1px;
    border-style: none solid solid;
    border-color: -moz-use-text-color #000 #000;
    -moz-border-top-colors: none;
    -moz-border-right-colors: none;
    -moz-border-bottom-colors: none;
    -moz-border-left-colors: none;
    border-image: none;
    background: #FFF none repeat scroll 0% 0%;
    box-shadow: none;
}

.chosen-container-single .chosen-drop {
    margin-top: -1px;
    border-radius: 0px 0px 0px 0px;
    background-clip: padding-box;
}

.chosen-container-single .chosen-search input[type="text"] {
    box-sizing: border-box;
    margin: 1px 0px;
    padding: 4px 20px 4px 5px;
    width: 100%;
    height: 28px;
    outline: 0px none;
    border: 1px solid #333;
    background: url("../images/chosen-sprite.png") no-repeat scroll 100% -20px, transparent linear-gradient(#EEE 1%, #FFF 15%) repeat scroll 0% 0%;
    font-size: 1em;
    font-family: sans-serif;
    line-height: normal;
    border-radius: 0px;
}

.woocommerce-invalid input {
    border: 1px solid red;
}

.woocommerce-invalid span:not(.required) {
    display: block !important;
}

form#eway_credit_card_form p.form-row span:not(.required) {
    display: none;
    color: red;
    font-size: 12px;
    padding-top: 5px;
}

::-webkit-input-placeholder {
    color: #BFBFBF;
    opacity: 1;
}

:-moz-placeholder {
    color: #BFBFBF;
    opacity: 1;
}

::-moz-placeholder {
    color: #BFBFBF;
    opacity: 1;
}

:-ms-input-#BFBFBF {
    color: #333333;
    opacity: 1;
}

/*------------------------------------*\
    BASE
\*------------------------------------*/

html { max-width: 100%; overflow-y: scroll; overflow-x: hidden; }

html,
body {
    width: 100%;
    height: 100%;
}

body {
    background-color: #fff;
}

body > div.page {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: calc(100% - 185px);
    height: auto !important;
    height: 100%;
    margin: 0 auto;
}

.container {
    position: relative;
    min-width: 320px;
    /* 	max-width: 1230px; */
    padding: 0px 30px;
    margin: 0 auto;
}

main {
    position: relative;
    float: left;
    width: 100%;
    margin-top: 70px;
}

iframe {
    display: none;
    position: absolute;
    top: -10000px;
    left: -10000px;
}

div#at3winemail iframe {
    display: block;
    position: inherit;
    top: inherit;
    left: inherit;
}

/*------------------------------------*\
    WELCOME
\*------------------------------------*/

section.welcome {
    position: relative;
    height: 100%;
    min-height: 100vh;
    width: 100%;
    padding: 40px;
    background-position: center center;
    background-size: cover;
	opacity:0;
}

section.welcome.active {
	opacity:1;
}

section.welcome video {
	position:absolute;
	top:0px;
	left:0px;
	width:100%;
	height:100%;
	object-fit:cover;
}

section.welcome a.logo {
    display: inline-block;
    position: absolute;
    top: 40px;
    left: 40px;
    z-index: 9999;
}

section.welcome a.down {
    display: inline-block;
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 32px;
    max-width: 32px;
    cursor: pointer;
}

/*------------------------------------*\
    HEADER
\*------------------------------------*/

div.page > header {
    position: fixed;
    float: left;
    width: 100%;
    padding: 26px 0px 0px;
    border-bottom: 1px solid #939598;
    height: 70px;
    top: 0;
    background-color: #fff;
    z-index: 1000;
}

body.welcome div.page > header {
    position: absolute;
    top: 0;
}

div.page > header .container {
    padding: 0px 15px;
}

div.page > header a.logo {
    float: left;
    margin-left: 15px;
    margin-top: -3px;
}

div.page > header .actions {
    float: right;
    margin-top: 6px;
    margin-right: 15px;
}

div.page > header .actions li {
    float: left;
    white-space: nowrap;
}

div.page > header .actions li a {
    text-decoration: none;
    font-size: 13px;
    font-family: 'HurmeGeometricSans3', Arial, sans-serif;
    font-weight: 500;
    color: #808080;
    white-space: nowrap;
}

div.page > header .actions li a:hover {
    text-decoration: underline;
}

div.page > header .actions li span.seperator {
    display: inline-block;
    text-decoration: none;
    font-size: 13px;
    font-family: 'HurmeGeometricSans3', Arial, sans-serif;
    font-weight: 500;
    color: #808080;
    white-space: nowrap;
    padding: 0 8px;
}

/*------------------------------------*\
    NAVIGATION
\*------------------------------------*/

nav.desktop {
    float: left;
    display: block;
    margin-top: 6px;
}

nav.desktop .sub-menu {
    display: none;
}

nav.desktop li {
    float: left;
    margin-left: 40px;
}

nav.desktop a {
    color: #808080;
    text-decoration: none;
    font-size: 13px;
    font-family: 'HurmeGeometricSans3', Arial, sans-serif;
    font-weight: 500;
}

nav.desktop a:hover,
nav.desktop li.current-menu-item a,
nav.desktop li.current-menu-ancestor a,
nav.desktop li.current-page-ancestor a {
    color: #333333;
    text-decoration: none;
    border-bottom: 1px solid #333;
}

/*------------------------------------*\
    NAVIGATION > MOBILE
\*------------------------------------*/

nav.mobile {
    position: fixed;
    top: 69px;
    left: 0;
    right: 0;
    clear: both;
    float: left;
    width: 100%;
    max-height: 0;
    visibility: hidden;
    opacity: 0;
    background-color: #fff;
    z-index: 9998;
    display: none;
    -webkit-transition: all 600ms ease;
    -moz-transition: all 600ms ease;
    -ms-transition: all 600ms ease;
    -o-transition: all 600ms ease;
    transition: all 600ms ease;
}

nav.mobile.show {
    max-height: 1000px;
    visibility: visible;
    opacity: 1;
}

nav.mobile ul {
    padding: 0px;
    margin: 0px;
    list-style: none;
    float: left;
    width: 100%;
    border-bottom: 1px solid #939598;
}

nav.mobile ul li {
    float: left;
    width: 100%;
    border-top: 1px solid #939598;
}

nav.mobile ul li a {
    float: left;
    width: 100%;
    padding: 13px 15px;
    font-family: 'HurmeGeometricSans3';
    font-weight: bold;
    font-size: 28px;
    color: #808080;
    text-decoration: none;
}

nav.mobile ul li a:hover,
nav.mobile ul li.current-menu-item a {
    color: #333;
}

body > div.overlay {
    position: fixed;
    top: 69px;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.6);
    visibility: hidden;
    opacity: 0;
    z-index: 9997;
    display: none;
    -webkit-transition: all 600ms ease;
    -moz-transition: all 600ms ease;
    -ms-transition: all 600ms ease;
    -o-transition: all 600ms ease;
    transition: all 600ms ease;
}

body > div.overlay.show {
    visibility: visible;
    opacity: 1;
}

/*------------------------------------*\
    NAVIGATION > BUTTON
\*------------------------------------*/

button.mobile-button {
    display: none;
    float: right;
    margin-top: 0px;
    height: 40px;
    width: 40px;
    border: 0px;
    background: none;
}

button.mobile-button {
    height: 40px;
    position: absolute;
    right: 15px;
    top: -10px;
}

button.mobile-button:focus {
    outline: none;
}

button.mobile-button img {
    height: 40px;
    width: 40px;
}

button.mobile-button span {
    display: block;
    position: absolute;
    top: 18px;
    left: 5px;
    right: 5px;
    height: 2px;
    background-color: #808080;
    pointer-events: none;
    text-indent: -9999px;
    cursor: pointer;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

button.mobile-button span:after,
button.mobile-button span:before {
    content: '';
    position: absolute;
    display: block;
    left: 0px;
    width: 100%;
    height: 2px;
    background-color: #808080;
    pointer-events: none;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

button.mobile-button span::before {
    top: -10px;
}

button.mobile-button span::after {
    bottom: -10px;
}

button.mobile-button:hover span,
button.mobile-button:hover span::after,
button.mobile-button:hover span::before {
    background-color: #777;
}

button.mobile-close {
    /*
        display: none !important;
        margin-right: 17px;
    */
}

button.mobile-close span {
    background: transparent;
}

button.mobile-close span::after,
button.mobile-close span::before {
    transform-origin: 50% 50%;
    top: 0;
    width: 30px;
}

button.mobile-close span::before {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    -moz-transform: rotate3d(0, 0, 1, 45deg);
    -ms-transform: rotate3d(0, 0, 1, 45deg);
    -o-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
}

button.mobile-close span::after {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    -moz-transform: rotate3d(0, 0, 1, -45deg);
    -ms-transform: rotate3d(0, 0, 1, -45deg);
    -o-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
}

button.mobile-close:hover span {
    background-color: #fff;
}

/*------------------------------------*\
    FOOTER 
\*------------------------------------*/

footer {
    position: relative;
    float: left;
    width: 100%;
    background: #939598;
}

footer .top {
    float: left;
    width: 100%;
    height: 125px;
    padding: 30px 0px 0px;
    background: #4a4c4c;
}

footer .base {
    float: left;
    width: 100%;
    padding: 19px 0 0;
    height: 60px;
    /* 	border-top:1px solid #fff; */
}

footer .base ul {
    margin: 0px;
}

footer a {
    color: #fff;
    text-decoration: none;
    line-height: 20px;
}

footer li {
    float: left;
    margin-right: 18px;
}

footer .social-links {
    float: right;
}

footer .social-links a {
    float: left;
    margin-left: 10px;
}

footer .columns {
    float: left;
    width: 100%;
}

footer .columns .column {
    float: left;
    width: 25%;
    text-align: center;
    padding: 0px 10px;
    color: #fff;
    margin-bottom: 30px;
}

footer .columns .column .btn {
    line-height: 28px;
    height: 28px;
    padding: 0px;
    width: 168px;
    border: 1px solid #ababab;
    text-transform: uppercase;
    font-size: 11px;
    color: #fff;
    display: inline-block;
    letter-spacing: 0px;
    font-family: 'HurmeGeometricSans3', Arial, sans-serif;
    font-weight: 500;
}

/*------------------------------------*\
    FOOTER > CHECKOUT
\*------------------------------------*/

footer.checkout {
    position: relative;
    width: 100%;
    text-align: center;
    display: none;
    background: none;
    padding: 20px 0 30px;
}

footer.checkout a {
    display: inline-block;
    margin: 0 25px;
    color: #333;
}

/*------------------------------------*\
    ELEMENT > SLIDERS
\*------------------------------------*/

.slider {
    opacity: 0;
    visibility: hidden;
    position: relative;
}

.slider.active {
    opacity: 1;
    visibility: visible;
}

.slider,
.slider .slides,
.slider .slides li {
    height: 100%;
}

.slider .slides li {
    position: relative;
    background-position: center center;
    background-size: cover;
}

.slider .slides li div.content {
    position: absolute;
    bottom: 20px;
    left: 20px;
    text-align: left;
}

.slider .slides li div.content p {
    margin-bottom: 15px;
}

.slider .flex-control-nav {
    position: absolute;
    bottom: 23px;
    z-index: 100;
    height: 8px;
}

.slider .flex-control-nav li {
    height: 8px;
    margin: 0 5px;
}

.slider .flex-control-nav li a {
    width: 8px;
    height: 8px;
    border: 1px solid #fff;
    background: none;
    box-shadow: none;
}

.slider .flex-control-nav li a.flex-active {
    background-color: #fff;
}

.dark .slider .flex-control-nav li a {
    border: 1px solid #333;
}

.dark .slider .flex-control-nav li a.flex-active {
    background-color: #333;
}

/*------------------------------------*\
    ELEMENT > BLOCK OVERLAY
\*------------------------------------*/

.block-overlay {
    position: relative;
    background-position: center center;
    background-size: cover;
}

.block-overlay > a:not(.image-download) {
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    cursor: pointer;
    z-index: 3;
}

.block-overlay div.overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    background-color: rgba(255, 255, 255, 0.6);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 600ms ease;
    -moz-transition: all 600ms ease;
    -ms-transition: all 600ms ease;
    -o-transition: all 600ms ease;
    transition: all 600ms ease;
}

.block-overlay > a:not(.image-download):hover + div.overlay,
.block-overlay.active div.overlay {
    opacity: 1;
    visibility: visible;
}

.block-overlay div.overlay * {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/*------------------------------------*\
    ELEMENT > TOGGLE
\*------------------------------------*/

a.toggle {
    display: inline-block;
    text-decoration: none;
    color: #BFBFBF;
    font-size: 50px;
    height: 50px;
    cursor: pointer;
    font-family: Arial;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

a.toggle.active {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

/*------------------------------------*\
    ELEMENT > BACK
\*------------------------------------*/

a.back {
    display: inline-block;
    text-decoration: none;
    color: #BFBFBF;
    font-size: 45px;
    cursor: pointer;
    margin-bottom: 50px;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

a.back:after {
    content: '\f104';
    font-family: 'FontAwesome';
}

a.back.active {
}

/*------------------------------------*\
    SECTION > CART
\*------------------------------------*/

section.cart {
    position: fixed;
    top: 70px;
    float: left;
    width: 100%;
    z-index: 999;
    background-color: #595959;
    color: #fff;
    overflow: hidden;
    max-height: 0;
    -webkit-transition: all 600ms ease;
    -moz-transition: all 600ms ease;
    -ms-transition: all 600ms ease;
    -o-transition: all 600ms ease;
    transition: all 600ms ease;
}

section.cart * {
    opacity: 0;
    -webkit-transition: all 400ms ease;
    -moz-transition: all 400ms ease;
    -ms-transition: all 400ms ease;
    -o-transition: all 400ms ease;
    transition: all 400ms ease;
}

section.cart.active {
    max-height: 1000px;
}

section.cart.active * {
    opacity: 1;
}

section.cart .shop_table {
    float: left;
    width: 100%;
    padding-right: 210px;
    margin-top: 14px;
}

section.cart .woocommerce-message,
section.cart .woocommerce-info,
body.woocommerce-checkout .woocommerce-info {
    display: none;
}

section.cart .cart-empty {
    margin-top: 30px;
    margin-bottom: 12px;
    text-align: right;
}

section.cart .return-to-shop {
    text-align: right;
}

section.cart p.return-to-shop a {
    height: 32px;
    border-color: #FFF;
    color: #FFF;
    font-size: 12px;
    padding: 8px 17px;
    margin-bottom: 7px;
}

section.cart .shop_table .cart_item {
    width: 25%;
    float: left;
    position: relative;
    height: 200px;
    margin-bottom: 15px;
}

section.cart .shop_table .cart_item .product-thumbnail {
    position: absolute;
    top: 1px;
    left: 0;
    width: 200px;
    height: 200px;
}

section.cart .shop_table .cart_item .product-thumbnail a {
    float: left;
    display: block;
}

section.cart .shop_table .cart_item .product-thumbnail a img {
    max-width: 200px;
    max-height: 200px;
}

section.cart .shop_table .cart_item .product-info {
    padding-left: 215px;
    font-weight: bold;
    font-size: 11px;
    line-height: 1.3;
}

section.cart .shop_table .cart_item .product-info .product-quantity,
#checkoutFormPsuedo .product-quantity {
    display: block;
    position: relative;
    width: 46px;
    height: 34px;
    margin: 5px 0;
    clear: both;
}

section.cart .shop_table .cart_item .product-info .product-quantity .input-text.qty,
#checkoutFormPsuedo .product-quantity .input-text.qty {
    position: absolute;
    top: 0;
    left: 0;
    width: 25px;
    height: 34px;
    text-align: center;
    font-weight: bold;
    background-color: #595959;
    border-color: #fff;
    color: #fff;
    font-size: 10px;
}

#checkoutFormPsuedo .product-quantity .input-text.qty {
    border-color: #000;
    color: #000;
    background: transparent;
}

section.cart .shop_table .cart_item .product-info .product-quantity .plus,
section.cart .shop_table .cart_item .product-info .product-quantity .minus,
#checkoutFormPsuedo .product-quantity .plus,
#checkoutFormPsuedo .product-quantity .minus {
    position: absolute;
    left: 24px;
    width: 23px;
    height: 15px;
    line-height: 17px;
    text-align: center;
    padding: 0;
    font-size: 14px;
    background-color: #595959;
    color: #fff;
    border-color: #fff;
    font-weight: normal;
}

#checkoutFormPsuedo .product-quantity .plus,
#checkoutFormPsuedo .product-quantity .minus {
    border-color: #000;
    color: #000;
    background: transparent;
}

section.cart .shop_table .cart_item .product-info .product-quantity .plus,
#checkoutFormPsuedo .product-quantity .plus {
    top: 0;
    border-bottom: none;
    height: 17px;
    padding-top: 2px;
}

section.cart .shop_table .cart_item .product-info .product-quantity .minus,
#checkoutFormPsuedo .product-quantity .minus {
    bottom: 0;
    border-top: none;
    line-height: 1;
    padding-bottom: 17px;
}

section.cart .shop_table .cart_item .product-info a.remove {
    display: inline-block;
    clear: both;
    font-weight: normal;
    font-size: 11px;
    padding-bottom: 2px;
    color: #fff;
    border-bottom: 1px solid #fff;
    text-decoration: none;
}

/* RIGHT */
section.cart .cart-collaterals {
    position: absolute;
    top: 15px;
    bottom: 0;
    right: 15px;
    width: 135px;
    text-align: right;
}

section.cart .cart-collaterals span.left {
    float: left;
    padding-right: 10px;
    width: auto;
    padding-bottom: 10px;
}

section.cart .cart-collaterals span.right {
    float: right;
    width: auto;
}

.shipping-calculator-form p {
    float: left;
    width: auto;
}

.shipping-calculator-form p button {
    border: 1px solid #fff;
    background: #fff;
    color: #000;
    padding: 0px;
    height: 20px;
    width: 20px;
}

.shipping-calculator-form #calc_shipping_postcode {
    border: 1px solid #fff;
    background: none;
    width: 100px;
    color: #fff;
    height: 20px;
    font-size: 12px;
    padding: 3px 5px 5px;
}

.shipping-calculator-form span.left {
    line-height: 20px;
}

.order-total td {
    width: 100%;
    text-align: right;
}

.cart_totals table {
    width: 100%;
}

tr.shipping td {
    display: block;
    width: 100%;
}

tr.order-total td {
    border-top: 1px solid #fff;
    padding-top: 5px;
}

section.cart .cart-collaterals .cart_totals {
    margin-bottom: 8px;
    float: right;
    width: 200px;
    line-height: 1;
}

.shipping-calculator-form {
    float: right;
    clear: both;
    width: 200px;
}

section.cart .cart-collaterals input.button {
    height: 28px;
    border-color: #fff;
    color: #fff;
    font-size: 10px;
    padding: 3px 9px;
    margin-bottom: 7px;
    width: 135px;
}

/*------------------------------------*\
    SECTION > DEFAULT
\*------------------------------------*/

section.default {
    padding: 10px 0px 50px;
    float: left;
    width: 100%;
}

section.default div.content {
    max-width: 360px;
}

section.default div.content.two {
    max-width: 750px;
    -webkit-columns: 2;
    -moz-columns: 2;
    columns: 2;
    -webkit-column-gap: 30px;
    -moz-column-gap: 30px;
    column-gap: 30px;
}

section.default div.content.three {
    max-width: 1140px;
    -webkit-columns: 3;
    -moz-columns: 3;
    columns: 3;
    -webkit-column-gap: 30px;
    -moz-column-gap: 30px;
    column-gap: 30px;
}

section.default div.content.four {
    max-width: 1530px;
    -webkit-columns: 4;
    -moz-columns: 4;
    columns: 4;
    -webkit-column-gap: 30px;
    -moz-column-gap: 30px;
    column-gap: 30px;
}

section.default.taxonomy h1 {
    margin: 0 !important;
}

section.default.taxonomy h2 {
    font-size: 16px;
    color: #C7C8CA;
    margin-bottom: 15px;
}

section.default.taxonomy div.content {
    max-width: 50% !important;
    margin: 0 !important;
}

section.default div.content h1 {
    margin-bottom: 40px;
}

section.default div.content h4 {
    text-transform: none !important;
}

.subscribeLink {
	position:fixed;
	bottom:0px;
	right:190px;
	width:140px;
	height:32px;
	z-index:1009;
	opacity:1;
	visibility:visible;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.subscribeLink.inactive {
	opacity:0;
	visibility:hidden;
}

.subscribeLink > span {
	width:150px;
	height:32px;
	line-height:32px;
	color:#fff;
	background:#4a4c4c;
	display:block;
	text-decoration:none;
	padding:0px 15px;
}

.subscribeLink > span .leftLink {
	position:absolute;
	left:0px;
	top:0px;
	height:32px;
	width:118px;
	cursor:pointer;
}

.subscribeLink > span .rightLink {
	position:absolute;
	right:0px;
	top:0px;
	height:32px;
	width:32px;
	cursor:pointer;
}

.subscribeLink > span img {
	position:absolute;
	top:6px;
	left:80px;
}

.subscribeLink > span span.close {
	width:20px;
	height:20px;
	position:absolute;
	right:10px;
	top:6px;
}

.subscribeLink > span span.close:before {
	width:2px;
	left:10px;
	height:20px;
	background:#fff;
	content:'';
	position:absolute;
	-webkit-transform: translateY(0px) rotateZ(-45deg);
	-moz-transform: translateY(0px) rotateZ(-45deg);
	-ms-transform: translateY(0px) rotateZ(-45deg);
	-o-transform: translateY(0px) rotateZ(-45deg);
	transform: translateY(0px) rotateZ(-45deg);
}

.subscribeLink > span span.close:after {
	width:2px;
	left:10px;
	height:20px;
	background:#fff;
	content:'';
	position:absolute;
	-webkit-transform: translateY(0px) rotateZ(45deg);
	-moz-transform: translateY(0px) rotateZ(45deg);
	-ms-transform: translateY(0px) rotateZ(45deg);
	-o-transform: translateY(0px) rotateZ(45deg);
	transform: translateY(0px) rotateZ(45deg);
}

/*------------------------------------*\
    SECTION > CONTACT
\*------------------------------------*/

section.contact {
    float: left;
    width: 100%;
    position: relative;
    padding: 120px 0px 30px;
    line-height: 1.3;
}

/* FORM */
section.contact .left {
    position: absolute;
    left: 30px;
    width: 215px;
    top: 0;
    z-index: 2;
}

section.contact .left label {
    float: left;
    width: 100%;
    margin-bottom: 3px;
}

section.contact .left ul {
    padding: 0px;
    margin: 0px;
    list-style: none;
}

section.contact .left ul li {
    float: left;
    width: 100%;
    margin-bottom: 5px;
}

section.contact .left ul li input,
section.contact .left ul li textarea {
    width: 100%;
    resize: none;
}

section.contact .left ul li textarea {
    height: 90px;
}

section.contact .left li.gform_validation_container {
    display: none;
}

section.contact .left .validation_error {
    padding-bottom: 30px;
}

section.contact .left .gform_footer {
    float: left;
    width: 100%;
    margin-top: 5px;
}

section.contact .left .gform_footer img {
    display: none;
}

/*

section.contact .left .gform_footer input {
	float:left;
	background:#fff;
	border-radius: 0px;
	border:1px solid #a6a6a5;
	color:#585956;
	font-size: 14px;
	padding:10px 25px;
	height:auto;
}
*/

/* SHOWROOMS */
section.contact .right {
    position: relative;
    float: left;
    padding-left: 245px;
    width: 100%;
}

section.contact .grid {
    float: left;
    width: 100%;
    margin-bottom: 30px;
}

section.contact .grid .column {
    float: left;
    width: 33.33%;
    padding-right: 40px;
    margin-bottom: 30px;
}

section.contact .grid .column h4 {
    margin-bottom: 10px;
}

section.contact .grid .column p {
    margin-bottom: 10px;
}

section.contact .map {
    width: 100%;
    height: 150px;
    margin-top: 40px;
}

section.contact .grid .column a.view-map {
    float: left;
    font-size: 10px;
    width: 100%;
    margin-top: 5px;
}

section.contact .grid .additional {
    clear: both;
    float: left;
    width: 75%;
}

section.contact .grid .additional .column {
    width: 100%;
}

/* MAPS */
section.contact .map a[href^="https://maps.google.com/maps"],
section.contact .map a[href^="http://maps.google.com/maps"] { display: none !important }

section.contact .map .gm-style-cc {
    display: none;
}

section.contact .map .gmnoprint a, .gmnoprint span {
    display: none;
}

section.contact .map .gmnoprint div {
    background: none !important;
}

/*------------------------------------*\
    SECTION > PRODUCTS
\*------------------------------------*/

.main.products section.loadmore {
    display: none;
}

.main.projects,
.main.page,
.main.blog,
.main.designers {
	margin-top:107px;
}

.main.products section.filter {
    border-bottom: 1px solid #808080;
}

.main.products section.filter.fixed,
.main.projects section.filter.fixed,
.main.page section.filter.fixed,
.main.blog section.filter.fixed,
.main.designers section.filter.fixed {
	position:fixed;
	left:0px;
	top:70px;
	background:#fff;
	z-index:99;
}

.woocommerce-breadcrumb,
.woocommerce-result-count,
.woocommerce-ordering {
    display: none;
}

ul.products {
    float: left;
    width: 100%;
    margin: 15px 0 0;
    padding: 0;
}

ul.products li {
    float: left;
    width: 24%;
    margin-left: 1.33%;
    margin-bottom: 15px;
}

ul.products li.fourth {
    margin-left: 0px;
    clear: both;
}

ul.products li a {
    position: relative;
    float: left;
    width: 100%;
}

ul.products li a .product-hover {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    text-align: center;
    opacity: 0;
    background-color: rgba(255, 255, 255, 0.6);
    -webkit-transition: all 600ms ease;
    -moz-transition: all 600ms ease;
    -ms-transition: all 600ms ease;
    -o-transition: all 600ms ease;
    transition: all 600ms ease;
}

ul.products li a:hover .product-hover {
    opacity: 1;
}

ul.products li a .product-hover .outer {
    display: table;
    width: 100%;
    height: 100%;
}

ul.products li a .product-hover .outer .inner {
    display: table-cell;
    width: 100%;
    height: 100%;
    vertical-align: middle;
    padding: 10px;
}

ul.products li a .product-hover .outer .inner h3 {
    color: #4a4c4c;
    font-size: 28px;
    line-height: 1;
    font-family: 'HurmeGeometricSans3';
    font-weight: bold;
    margin: 0px;
}

ul.products li a .product-hover .outer .inner h4 {
    color: #4a4c4c;
    font-size: 16px;
    line-height: 1;
    font-family: 'HurmeGeometricSans3';
    font-weight: bold;
    margin: 5px 0px 0px;
}

ul.products li img {
    width: 100%;
    max-width: 100%;
}

ul.products li a span.image {
	width:100%;
	padding-bottom:100%;
	background-size:cover;
	background-repeat:no-repeat;
	background-position:center;
	float:left;
}

ul.products li a.team p {
	margin:15px 0px 0px;
	font-size:11px;
}

ul.products li a.team .product-hover .outer .inner {
	display:block;
	padding-top:40px;
	padding-bottom:40px;
}

ul.products li a .price, ul.products li a .onsale {
    display: none;
}

ul.products li a.button {
    display: none;
}

body.single-product main.product div.content select {
    padding: 0px;
    border: medium none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-padding-start: 5px;
    -moz-padding-start: 0;
    padding-inline-start: 0px;
    outline: none !important;
    outline: 0;
    margin: -3px 0 -3px -6px;
    background: none;
    background-image: url('../img/icon-arrow-down.png');
    background-position: right center;
    background-repeat: no-repeat;
    background-size: 8px 8px;
    padding-right: 15px;
    height: 30px;
    line-height: 19px;
}

/*------------------------------------*\
    SECTION > WOO FORMS
\*------------------------------------*/

body.woocommerce-page .woocommerce div.col-1 {
    float: left;
    width: 50%;
    padding-right: 13px;
}

body.woocommerce-page .woocommerce div.col-2 {
    float: left;
    width: 50%;
    padding-left: 13px;
}

body.woocommerce-page .my-account {
    width: 100%;
    max-width: 730px;
}

body.woocommerce-page .main section.default div.content {
    max-width: 100%;
    margin: 0 auto;
}

body.woocommerce-page .woocommerce .form-row label {
    display: block;
    padding-bottom: 2px;
}

body.woocommerce-page .woocommerce .form-row.input-checkbox label {
    display: inline;
}

body.woocommerce-page .woocommerce .form-row input:not([type=checkbox]),
body.woocommerce-page .woocommerce .form-row select,
body.woocommerce-page .woocommerce .form-row textarea {
    width: 100%;
    max-width: 400px;
}

body.woocommerce-page abbr {
    border-bottom: none !important;
    cursor: default !important;
    text-decoration: none !important;
}

p#billing_address_2_field,
p#shipping_address_2_field {
    display: none !important;
}

/*------------------------------------*\
    SECTION > MY ACCOUNT
\*------------------------------------*/

body.my-account #customer_login h2 {
    margin-bottom: 50px;
}

body.my-account #customer_login > div,
body.my-account #customer_login > form > div {
    margin-top: 20px;
}

body.my-account #customer_login ul {
    padding: 0;
}

body.my-account #customer_login .woocommerce-error {
    margin-bottom: 30px;
}

/*
body.my-account a.back {
	visibility: hidden;
}
*/

body.woocommerce-page .woocommerce .my-account div.col-1 {
    float: left;
    width: 33.33%;
    padding-right: 13px;
}

body.woocommerce-page .woocommerce .my-account div.col-2 {
    float: left;
    width: 33.33%;
    padding-left: 13px;
    padding-right: 13px;
}

body.woocommerce-page .woocommerce .my-account div.col-3 {
    float: left;
    width: 33.33%;
    padding-left: 13px;
}

/*------------------------------------*\
    SECTION > LOGIN
\*------------------------------------*/

.woocommerce .login {
    padding-bottom: 20px;
}

.woocommerce .login p {
    line-height: 1.6;
}

.woocommerce .login p a {
    font-weight: 500;
}

.woocommerce .login p.form-row {
    margin-bottom: 5px;
}

/*
.woocommerce .login p.form-row:not(.form-row-wide) {
	margin-top: 15px;
}
*/

.woocommerce .login .woocommerce-info {
    margin-bottom: 15px;
}

.woocommerce .login .button:not(.paypal-express-checkout-button) {
    display: inline-block;
    width: auto !important;
    padding: 0 30px;
    height: 35px;
    font-size: 11px;
    /*float: left;*/
    margin-right: 20px;
    line-height: 35px;
}

/*
.woocommerce .login label {
	height: 15.6px;
}

.woocommerce .login label:not(.inline) {
	opacity: 0;
}

.woocommerce .login label[for=password],
.woocommerce .login label[for=reg_password] {
	display: none !important;
}
*/

.woocommerce .login label.inline {
    line-height: 33px;
}

.woocommerce .login p.lost_password {
    clear: both;
    padding-top: 10px;
}

/*------------------------------------*\
    SECTION > CHECKOUT
\*------------------------------------*/

body.checkout .woocommerce {
    position: relative;
    width: 100%;
    float: left;
    text-align: center;
}

body.checkout .woocommerce .checkout {
    /* 	margin-top: 106.5px; */
    clear: both;
    float: left;
    width: 100%;
    text-align: center;
}

body.checkout .woocommerce .checkout select,
.chosen-container-single .chosen-single {
    background-color: none;
}

.chosen-container-active.chosen-with-drop .chosen-single {
    background-color: none;
}

body.checkout a.back {
    visibility: hidden;
    display: none;
}

body.checkout ul.woocommerce-error,
body.checkout .woocommerce-message {
    margin: 0px;
    padding: 0px 0px 50px;
    text-align: center;
    font-weight: bold;
    font-size: 16px;
}

body.checkout ul.woocommerce-error li {
    line-height: 1.6;
}

body.checkout div.login {
    /*position: absolute;
    width: 50%;*/
    /*float: left;*/
    display: inline-block;
    text-align: left;
    width: 100%;
    max-width: 800px;
    /*padding-right: 15px;*/
    padding-top: 30px;
    padding-bottom: 30px;
    /*top: 100%;*/
    border-top: 1px solid #808080;
    border-bottom: 1px solid #808080;
}

.blockOverlay {
    background: none !important;
}

body.checkout div.or {
    position: relative;
    /*bottom: -7px;*/
    /*top:-35px;*/
    top: -9px;
    left: 0px;
    right: 0px;
    margin: 0px auto;
    border: none;
    font-size: 13px;
    text-transform: none;
    max-width: 50px;
    text-align: center;
    background-color: #F2F2F2;
    font-weight: bold;
    letter-spacing: 1px;
}

body.checkout .woocommerce div.left {
    /*width: 50%;*/
    width: 100%;
    max-width: 800px;
    /*float: left;*/
    /*display: inline-block;*/
    /*padding-right: 15px;*/
    border-top: 1px solid #808080;
    text-align: left;
    margin: 0 auto;
    padding-bottom: 20px;
}

body.checkout .woocommerce div.left.loggedin .col-1,
body.checkout .woocommerce div.left.loggedin .col-2 {
    border-top: none !important;
    padding-top: 0 !important;
}

body.checkout .woocommerce div.left:not(.loggedin) .col-1,
body.checkout .woocommerce div.left:not(.loggedin) .col-2 {
    border-top: none !important;
    /*padding-top: 290px !important;*/
}

body.checkout .woocommerce div.right {
    /*width: 50%;*/
    width: 100%;
    max-width: 800px;
    /*float: left;*/
    /*display: inline-block;*/
    margin: 0 auto;
    padding-left: 0px;
    border-top: 1px solid #808080;
    padding-top: 40px;
    text-align: left;
}

#order_review {
    margin-top: -40px;
}

#order_review .shop_summary {
    /*display: inline-block;*/
    width: 100%;
    max-width: 800px;
    clear: both;
    padding-right: 0px;
    display: table;
}

#order_review .shop_totals {
    display: inline-block;
    width: 100%;
    max-width: 800px;
    clear: both;
    padding-left: 0px;
}

body.checkout {
    background-color: #f2f2f2;
}

body.checkout nav.desktop {
    display: none;
}

body.checkout header {
    border-bottom: none;
    background-color: #f2f2f2;
}

body.checkout header .actions li.myaccount,
body.checkout header .actions li {
    display: none;
}

body.checkout footer {
    display: none;
}

body.checkout footer.checkout {
    display: block;
}

body.checkout .woocommerce .form-row input:not([type=checkbox]),
body.checkout .woocommerce .form-row select,
body.checkout .woocommerce .form-row textarea {
    background-color: #F2F2F2;
}

body.checkout .woocommerce .form-row textarea {
    resize: none;
}

body.checkout section.default {
    /*margin-top: 106.5px;*/
    margin-top: 80px;
}

body.checkout .number {
    background: #000;
    color: #FFF;
    border-radius: 50%;
    display: inline-block;
    width: 1.5em;
    text-align: center;
    height: 1.5em;
    line-height: 1.5em;
}

body.checkout .login .col-2 {
    border-left: 1px solid #808080;
}

body.checkout .login h4 {
    margin-bottom: 0;
}

body.checkout h5 {
    color: #AAA;
    display: block;
    margin: 2em 0 2em;
    font-size: 16px;
}

body.checkout h4 + h5 {
    margin-top: 0;
}

body.checkout .login div.col-2 {
    padding-left: 60px;
}

#customer_details .col-1 {
    width: 100%;
    float: none;
    padding-right: 0px;
}

#customer_details .col-2 {
    width: 100%;
    float: none;
    padding-left: 0px;
    border-top: 1px solid #808080 !important;
    margin-top: 0;
    padding-top: 0 !important;
}

.addressLayout > div {
    display: inline-block;
    width: 50%;
    vertical-align: top;
    padding: 0 0 0 20px;
}

.addressLayout > div:first-child {
    padding: 0 20px 0 0;
}

#customer_details #createaccount + label {
    display: inline;
}

.select2-container .select2-choice {
    border-color: #000;
    color: #000;
    border-radius: 0;
    padding-top: 5px;
    padding-bottom: 5px;
    height: 30px;
    background: transparent;
}

.validate-state {
    width: 49%;
    display: inline-block;
    margin-right: 2%;
    vertical-align: top;
}

.validate-state + p {
    display: inline-block;
    width: 49%;
}

/*------------------------------------*\
    SECTION > CHECKOUT > PAYPAL
\*------------------------------------*/

.paypal-express-checkout-button {
    /*position: absolute;*/
    /*top: -94px;*/
    /*top:-60px;
    left: -70px;
    right: 0px;
    margin: 0px auto;
    max-width: 238px;*/
    padding-right: 60px;
    padding-left: 0;
    border: none;
    font-size: 16px;
    text-transform: none;
    letter-spacing: 0;
    background-image: url('../img/paypal.svg');
    background-position: right 13px;
    background-repeat: no-repeat;
    background-size: 56px 16px;
    margin-top: 30px;
}

body.woocommerce-cart .paypal-express-checkout-button {
    display: none;
}

/*------------------------------------*\
    SECTION > CHECKOUT > FACEBOOK
\*------------------------------------*/

body.checkout .wc-social-login {
    display: none;
}

/*------------------------------------*\
    SECTION > CHECKOUT > BILLING
\*------------------------------------*/

#customer_details .col-1,
#customer_details .col-2 {
    border-top: 1px solid #808080;
    padding-top: 0px;
}

.woocommerce-billing-fields h4 {
    margin-bottom: 20px;
}

/*#billing_country_field {*/
/*display: none;*/
/*}*/

/*------------------------------------*\
    SECTION > CHECKOUT > SHIPPING
\*------------------------------------*/

.woocommerce-shipping-fields h4 {
    margin-bottom: 0;
}

#ship-to-different-address {
    margin-bottom: 19px;
}

#shipping_country_field {
    display: none;
}

#order_comments_field {
    width: calc(50% - 20px);
}

/*------------------------------------*\
    SECTION > CHECKOUT > SUMMARY
\*------------------------------------*/

.shop_summary h4 {
    margin-bottom: 25px;
    display: table;
}

.shop_summary .cart_item {
    position: relative;
    margin-bottom: 20px;
    line-height: 1.3;
    display: table-row;
}

.shop_summary .cart_item > * {
    display: inline-block;
    vertical-align: top;
    display: table-cell;
}

.shop_summary .cart_item .image {
    /*position: absolute;
    top: 0;
    left: 0;

    height: 95px;
    float: left;*/
    width: 95px;
    margin-right: 15px;
}

.shop_summary .cart_item .image img {
    width: 95px;
    height: 95px;
}

.shop_summary .product-name {
    padding-left: 20px;
    margin-bottom: 0;
    width: 29%;
    min-width: 230px;
}

.shop_summary .product-name strong {
    display: block;
    margin-bottom: -10px;
}

.shop_summary .variation {
    padding-left: 0;
}

.shop_summary .variation * {
    display: inline;
}

.shop_summary .variation dd:after {
    content: '';
    display: block;
}

.shop_summary .pricing {
    text-align: right;
}

/*------------------------------------*\
    SECTION > CHECKOUT > TOTALS
\*------------------------------------*/

.shop_totals .shipping {
    margin: 0;
    /*
        font-family: "HurmeGeometricSans3",Arial,sans-serif;
        font-weight: bold;
        line-height: 1.2;
        font-size: 16px;
    */
}

.shop_totals .shipping p {
    margin-top: 15px 0 0;
    font-weight: normal;
    font-size: 13px;
}

.shop_totals span.amount {
    font-weight: normal;
}

#subtotals {
    text-align: right;
}

#subtotals .left {
    width: 10em;
    display: inline-block;
    text-align: left;
}

#order_total {
    border-top: 1px solid #808080;
    padding: 20px 0 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

#order_total > * {
    display: inline-block;
    vertical-align: top;
    margin: 0 0 0 10px;
}

#order_total > *:first-child {
    margin: 0 10px 0 0;
}

#order_total .amount,
#order_total h4 {
    font-size: 1.2em;
    font-weight: 700;
}

body.checkout .amount {
    -webkit-transition: color 0.2s linear;
    transition: color 0.2s linear;
}

/*------------------------------------*\
    SECTION > CHECKOUT > COUPON
\*------------------------------------*/

.coupon-area,
#subtotals {
    display: inline-block;
    width: 50%;
    border-top: 1px solid #808080;
    padding: 20px 0;
    margin-top: 20px;
    vertical-align: top;
}

.coupon-area {
    padding-right: 20px;
}

.coupon-area .woocommerce-info {
    margin-bottom: 5px;
}

.coupon-area p {
    margin: 0;
}

.coupon-area .form-row {
    display: inline-block;
    width: calc(100% - 89px);
    vertical-align: top;
}

.coupon-area .form-row-last {
    width: auto;
}

.coupon-area input {
    height: 30px;
    line-height: 28px;
    padding-top: 0;
    padding-bottom: 0;
    width: 89px;
}

.coupon-area .button {
    border-left: medium none;
    font-size: 10px;
    height: 30px;
    line-height: 30px;
    padding: 0 20px;
}

/*------------------------------------*\
    SECTION > CHECKOUT > PAYMENT
\*------------------------------------*/
div#payment {
    border-color: #808080;
    border-width: 1px 0;
    border-style: solid;
    padding: 0 0 20px;
    margin-top: 20px;
}

div#payment ul {
    padding: 0;
    margin-bottom: 30px;
}

div#payment ul li {
    margin-bottom: 10px;
}

div#payment ul li p {
    display: none;
}

div#payment ul li label img {
    content: '';
    display: none;
}

div#payment .place-order {
    border-top: 1px solid #808080;
    padding: 20px 0 0;
}

div#payment .button {
    display: inline-block;
    /*float:right;*/
    width: auto;
    padding: 0 30px;
    height: 35px;
    font-size: 11px;
    vertical-align: middle;
}

div#payment #checkboxes {
    display: inline-block;
    width: calc(100% - 168px);
    vertical-align: middle;
}

#subscribe_to_newsletter_field {
    margin: 0;
}

div#payment p.terms {
    margin: 0;
}

div#payment p.terms br {
    display: none;
}

.accordion {
    position: relative;
    padding: 20px 0 0;
    margin-bottom: 0;
    cursor: pointer;
}

.accordion.active {
    margin-bottom: 1em;
}

.accordion::after,
.accordion::before {
    position: absolute;
    content: " ";
    background: #bfbfbf;
    height: 20px;
    width: 4px;
    right: 8px;
    top: 50%;
    top: calc(50% + 10px);
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.accordion::after {
    width: 20px;
    height: 4px;
    right: 0;
}

.accordion.active::after,
.accordion.active::before {
    -ms-transform: translateY(-50%) rotate(45deg);
    -webkit-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
}

/*------------------------------------*\
    SECTION > PAYMENT PAGE
\*------------------------------------*/

body.checkout ul.order_details {
    text-align: center;
    margin: 30px 0 45px;
    padding: 20px 0 20px;
    border-bottom: 1px solid #808080;
}

body.checkout ul.order_details li {
    display: inline-block;
    margin: 0 25px;
    font-size: 16px;
    font-weight: bold;
    color: #333333;
    text-align: left;
}

body.checkout ul.order_details li strong {
    display: block;
    color: #808080;
}

body.checkout #eway_credit_card_form {
    max-width: 345px;
    margin: 0 auto;
}

body.checkout #eway_credit_card_form .form-row-first {
    float: left;
    width: 50%;
    padding-right: 10px;
}

body.checkout #eway_credit_card_form .form-row-last {
    float: left;
    width: 50%;
    padding-left: 10px;
}

body.checkout #eway_credit_card_form div {
    clear: both;
}

body.checkout #eway_credit_card_form .buttons {
    width: 100%;
    clear: both;
}

body.checkout #eway_credit_card_form .buttons input {
    font-weight: bold;
    font-size: 10px;
    height: 30px;
    padding: 5px 10px;
    width: calc(50% - 10px);
    float: left;
}

body.checkout h1 {
    text-align: center;
    font-size: 112px;
    line-height: 85px;
}

/*------------------------------------*\
    SECTION > MY ACCOUNT
\*------------------------------------*/

body.my-account section.default div.content h1 {
    margin-bottom: 30px;
}

body.my-account section.default div.content div.top {
    max-width: 500px;
    margin-bottom: 40px;
}

body.my-account .woocommerce table.my_account_orders,
body.my-account .woocommerce table.wc-social-login-linked-profiles {
    width: 100%;
    max-width: 700px;
    margin-bottom: 40px;
}

body.my-account .woocommerce table.my_account_orders th,
.woocommerce table.shop_table.wc-social-login-linked-profiles th {
    text-align: left;
    font-weight: bold;
    padding: 0 0 5px !important;
}

.woocommerce table.shop_table.wc-social-login-linked-profiles td {
    text-align: left;
    padding: 0 10px 0 0 !important;
}

body.my-account .woocommerce table.my_account_orders tr td {
    padding: 0 0 5px;
}

body.my-account .woocommerce table.my_account_orders tr td.order-actions {
    text-align: right;
}

body.my-account .woocommerce table.my_account_orders tr td.order-status {
    font-weight: bold;
}

body.my-account .woocommerce table.my_account_orders a.button,
.woocommerce table.shop_table.wc-social-login-linked-profiles .profile-actions a.button {
    height: 30px;
    line-height: 28px;
    padding: 0 10px;
    font-size: 10px;
    width: 75px;
    margin-left: 5px;
}

body.my-account .woocommerce div.woocommerce-message,
body.my-account .woocommerce ul.woocommerce-error {
    padding: 0;
    font-weight: bold;
}

body.my-account .woocommerce div.woocommerce-message {
    margin-bottom: 20px;
}

/* Addresses */
body.my-account .woocommerce .addresses {
    width: 100%;
    max-width: 700px;
    margin-top: 30px;
}

body.my-account .woocommerce header,
body.my-account .woocommerce .addresses header {
    padding: 0;
    height: auto;
    border: none;
}

body.my-account .woocommerce .addresses .col-1 {
    width: 50%;
    float: left;
    padding-right: 13px;
    position: relative;
}

body.my-account .woocommerce .addresses .col-2 {
    width: 50%;
    float: left;
    padding-left: 13px;
    position: relative;
}

body.my-account .woocommerce .addresses a.button {
    height: 30px;
    line-height: 28px;
    padding: 0 10px;
    font-size: 10px;
    position: absolute;
    top: -5px;
    right: 0;
    width: 75px;
}

body.my-account .woocommerce .addresses address {
    line-height: 1.4;
    margin-bottom: 50px;
}

/* My Order */
body.my-account .woocommerce p.order-info {
    font-weight: bold;
}

body.my-account .woocommerce table.order_details {
    width: 100%;
    max-width: 600px;
    margin-bottom: 40px;
}

body.my-account .woocommerce table.order_details th {
    text-align: left;
    font-weight: bold;
    padding: 0 0 5px;
}

body.my-account .woocommerce table.order_details tr td {
    padding: 0 0 5px;
}

body.my-account .woocommerce table.order_details tr td.product-name a {
    font-weight: bold;
}

body.my-account .woocommerce table.order_details tr td dl {
    margin: 5px 0 10px;
}

body.my-account .woocommerce table.order_details tr td dl:after {
    content: '';
    display: block;
    clear: both;
}

body.my-account .woocommerce table.order_details tr td dt {
    float: left;
    margin-right: 5px;
    clear: both;
}

body.my-account .woocommerce table.order_details tr td dd {
    float: left;
}

body.my-account .woocommerce table.order_details tr td dd p {
    margin: 0;
}

/* Customer Details */
body.my-account .woocommerce .customer_details {
    line-height: 1.4;
}

body.my-account .woocommerce .customer_details:after {
    content: '';
    display: block;
    clear: both;
}

body.my-account .woocommerce .customer_details dt {
    font-weight: bold;
    float: left;
    margin-right: 5px;
    clear: both;
}

body.my-account .woocommerce .customer_details dd {
    float: left;
}

/* Edit Address */

body.my-account .woocommerce #customer_details {
    width: 50%;
    float: left;
    padding-right: 15px;
}

body.my-account .woocommerce #customer_details .col-1,
body.my-account .woocommerce #customer_details .col-2 {
    border-top: none;
    padding-top: 0;
}

body.my-account .woocommerce #customer_details p input.button {
    margin-top: 20px;
    margin-bottom: 40px;
}

/* Edit Account */
body.my-account .woocommerce fieldset {
    border: none;
    margin: 0;
    padding: 0;
}

body.my-account .woocommerce fieldset legend {
    font-weight: bold;
    font-size: 15px;
    margin-bottom: 10px;
    margin-top: 20px;
}

body.my-account .woocommerce fieldset label span {
    display: block;
    font-size: 12px;
    margin-bottom: 5px;
    color: #808080;
}

/*------------------------------------*\
    SECTION > MY ACCOUNT > PAY
\*------------------------------------*/

body.checkout .woocommerce table.pay-for-order {
    width: 100%;
    max-width: 600px;
    margin-bottom: 40px;
}

body.checkout .woocommerce table.pay-for-order th {
    text-align: left;
    font-weight: bold;
    padding: 0 0 5px;
}

body.checkout .woocommerce table.pay-for-order tr td {
    padding: 0 0 5px;
}

body.checkout .woocommerce table.pay-for-order tbody tr td {
    padding: 0 0 20px;
}

body.checkout .woocommerce table.pay-for-order tr td.product-name a {
    font-weight: bold;
}

body.checkout .woocommerce table.pay-for-order tr td dl {
    margin: 5px 0 10px;
}

body.checkout .woocommerce table.pay-for-order tr td dl:after {
    content: '';
    display: block;
    clear: both;
}

body.checkout .woocommerce table.pay-for-order tr td dt {
    float: left;
    margin-right: 5px;
    clear: both;
}

body.checkout .woocommerce table.pay-for-order tr td dd {
    float: left;
}

body.checkout .woocommerce table.pay-for-order tr td dd p {
}

/*------------------------------------*\
    SECTION > DOWNLAOD IMAGE
\*------------------------------------*/

a.image-download {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 900;
    cursor: pointer;
    border-radius: 50%;
    background-color: #fff;
    opacity: 0.4;
    text-align: center;
    width: 30px;
    height: 30px;
    display: inline-block;
    text-decoration: none;
    line-height: 30px;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
    display: none;
}

a.image-download:hover {
    opacity: 0.8;
}

a.image-download:after {
    content: '\f019';
    display: block;
    font-family: 'fontawesome';
}

/*------------------------------------*\
    SECTION > BLOCK > STANDARD
\*------------------------------------*/

section.block-standard {
    float: left;
    width: 100%;
    height: 445px;
    height: 40vw;
    position: relative;
}

section.block-standard.half {
    width: 50%;
    height: 30vw;
}

section.block-standard.full {
    height: 50vw;
}

section.block-standard.video.full {
    height: 95vmin;
}

section.block-standard.video.halfscreen iframe {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
}

section.block-standard.fullscreen {
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
    height: auto;
}

section.block-standard.video.fullscreen iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
}

section.block-standard.image {
    background-position: center center;
    background-size: cover;
}

section.block-standard.light p
section.block-standard.light a {
    color: #fff;
}

section.block-standard.light .button {
    color: #fff;
    border-color: #fff;
}

section.block-standard > a:not(.image-download) {
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    cursor: pointer;
    z-index: 3;
}

section.block-standard div.content {
    text-align: center;
}

section.block-standard.block-overlay div.content a {
    padding: 11px 23px;
}

section.block-standard div.content p.date {
    font-size: 14px;
    font-weight: 500;
}

section.block-standard div.content h4 {
    margin-bottom: 30px;
    margin-top: -10px;
}

/* QUOTE */
section.block-standard.quote {
    background-color: #f3f3f4;
    height: 30vw;
}

section.block-standard.quote div.content {
    padding: 30px 10vw !important;
}

section.block-standard.quote p {
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 0;
}

/*------------------------------------*\
    SECTION > BLOCK > SLIDER
\*------------------------------------*/

section.block-slider {
    float: left;
    width: 100%;
    height: 50vw;
}

section.block-slider.half {
    width: 50%;
    height: 30vw;
}

section.block-slider .slider .slides li div.content {
    background-position: center center;
    background-size: cover;
    position: absolute;
    left: 40px;
    bottom: 20px;
}

section.block-slider div.content.light p,
section.block-slider div.content.light a {
    color: #fff;
}

section.block-slider div.content.light .button {
    color: #fff;
    border-color: #fff;
}

section.block-slider div.content.dark p,
section.block-slider div.content.dark a {
    color: #333;
}

section.block-slider div.content.dark .button {
    color: #333;
    border-color: #333 !important;
}

/*------------------------------------*\
    SECTION > BLOCK > FEATURE
\*------------------------------------*/

section.block-feature {
    position: relative;
    float: left;
    width: 100%;
}

/* SIDE */
section.block-feature div.side {
    position: relative;
    float: left;
    width: 33.33%;
    min-height: 60vw;
}

section.block-feature div.side div.image {
    position: relative;
    float: left;
    width: 100%;
    height: 30vw;
    background-position: center center;
    background-size: cover;
}

section.block-feature div.side div.image p {
    position: absolute;
    bottom: 23px;
    left: 20px;
    color: #fff;
    font-size: 12px;
    margin: 0;
    font-weight: 500;
}

section.block-feature div.side div.content {
    position: relative;
    float: left;
    width: 100%;
    min-height: 30vw;
    padding: 50px 40px;
    padding: 2vw 1.8vw;
}

section.block-feature div.side div.content.full {
    height: 100%;
}

section.block-feature div.side div.content h2 {
    margin-bottom: 10px;
}

section.block-feature div.side div.content p a {
    font-weight: bold;
}

section.block-feature div.side div.content ul.list {
    margin: 15px 0;
    padding: 0;
}

section.block-feature div.side div.content ul.list li {
    margin: 0;
    padding: 7px 0 5px;
    border-bottom: 1px solid #808080;
}

section.block-feature div.side div.content div.more {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    -webkit-transition: all 600ms ease;
    -moz-transition: all 600ms ease;
    -ms-transition: all 600ms ease;
    -o-transition: all 600ms ease;
    transition: all 600ms ease;
}

section.block-feature div.side div.content div.more.active {
    max-height: 9999px;
    opacity: 1;
}

section.block-feature.right div.side {
    float: right;
}

section.block-feature div.side div.social {
    /*
        position: absolute;
        bottom: 33px;
        left: 30px;
    */
    padding-top: 20px;
    margin-bottom: 20px;
}

/* FEATURE */
section.block-feature div.feature {
    float: left;
    height: 60vw;
    width: 66.66%;
}

section.block-feature div.feature div.content {
    text-align: center;
}

section.block-feature div.feature div.image {
    position: relative;
    float: left;
    width: 100%;
    background-position: center center;
    background-size: cover;
}

section.block-feature div.feature div.image.main {
    height: 30vw;
}

.product section.block-feature div.feature div.image.main,
.project section.block-feature div.feature div.image.main,
.post.blog section.block-feature div.feature div.image.main {
    height: 60vw;
}

section.block-feature div.feature div.image.half {
    width: 50%;
    height: 355px;
    height: 30vw;
}

section.block-feature div.feature div.image.full {
    width: 100%;
    height: 355px;
    height: 40vw;
}

section.block-feature div.feature div.image p {
    position: absolute;
    bottom: 23px;
    left: 20px;
    color: #fff;
    margin-bottom: 0;
}

section.block-feature div.feature div.image.dark p {
    color: #333333;
}

/* SLIDER */
section.block-feature div.feature .slider .slides li div.content {
    bottom: 23px;
    left: 20px;
    right: 20px;
    text-align: left;
}

section.block-feature div.feature .slider .slides li div.content p {
    color: #333;
    font-size: 12px;
    text-align: left;
    font-weight: 500;
}

section.block-feature div.content.light p,
section.block-feature div.content.light a {
    color: #fff !important;
}

section.block-feature div.content.light .button {
    color: #fff !important;
    border-color: #fff !important;
}

section.block-feature div.content.dark p,
section.block-feature div.content.dark a {
    color: #333 !important;
}

section.block-feature div.content.dark .button {
    color: #333 !important;
    border-color: #333 !important;
}

/*------------------------------------*\
    SECTION > BLOCK > RECOMMENDATIONS
\*------------------------------------*/

section.block-recommendations {
    position: relative;
    float: left;
    width: 100%;
    padding: 20px 40px;
    border-top: 1px solid #ddd;
}

section.block-recommendations h2 {
    margin-bottom: 5px;
}

section.block-recommendations div.owl-carousel,
section.block-recommendations div.owl-carousel .item {
    height: 20vw;
}

section.block-recommendations div.owl-carousel .owl-nav {
    height: 30px !important;
    margin: 0px auto;
    position: absolute;
    left: -30px;
    right: -30px;
    top: 40%;
    text-align: center;
}

section.block-recommendations div.owl-carousel .owl-nav .owl-prev,
section.block-recommendations div.owl-carousel .owl-nav .owl-next {
    position: relative;
}

section.block-recommendations div.owl-carousel .owl-nav .owl-prev {
    float: left;
}

section.block-recommendations div.owl-carousel .owl-nav .owl-next {
    float: right;
    margin-right: 17px;
}

section.block-recommendations div.owl-carousel .owl-nav .owl-prev:after,
section.block-recommendations div.owl-carousel .owl-nav .owl-next:after {
    position: absolute;
    top: 0;
    content: '';
    font-family: 'fontawesome';
    color: #BFBFBF;
    font-size: 42px;
}

section.block-recommendations div.owl-carousel .owl-nav .owl-prev:after {
    content: '\f104';
}

section.block-recommendations div.owl-carousel .owl-nav .owl-next:after {
    content: '\f105';
}

/*------------------------------------*\
    SECTION > FILTER
\*------------------------------------*/

section.filter {
    position: relative;
    float: left;
    width: 100%;
    min-height: 30px;
    color: #808080;
    font-size: 12px;
    font-weight: 500;
    border-bottom: 1px solid #939598;
}

section.filter p.title {
    position: absolute;
    top: 0;
    left: 30px;
    padding-top: 11px;
    display: inline-block;
    float: left;
    margin-bottom: 0;
    font-size: 13px;
}

section.filter div.filters {
    margin-left: 137px;
    float: left;
}

section.filter .filter {
    display: inline-block;
    padding-top: 11px;
    float: left;
    position: relative;
    margin-right: 20px;
}

section.filter .filter > a {
    display: inline-block;
    position: relative;
    color: #808080;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    margin-bottom: 10px;
}

section.filter .filter > a:after {
    content: '';
    position: absolute;
    top: 3px;
    right: -17px;
    width: 7px;
    height: 7px;
    background-image: url('../img/icon-arrow-down.png');
    background-image: url('../img/icon-arrow-right.png');
    background-repeat: no-repeat;
    background-size: 7px 7px;
    background-position: center center;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

section.filter .filter.active > a:after {
    background-image: url('../img/icon-arrow-down.png');
}

section.filter .filter > a span {
    display: none;
}

section.filter .filter ul {
    display: block;
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    max-height: 0;
    margin: 0;
    padding: 0;
    -webkit-transition: all 600ms ease;
    -moz-transition: all 600ms ease;
    -ms-transition: all 600ms ease;
    -o-transition: all 600ms ease;
    transition: all 600ms ease;
}

section.filter .filter.active > a {
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid #333;
}

section.filter .filter.active ul {
    visibility: visible;
    opacity: 1;
    max-height: 1000px;
    padding: 0 0 20px;
}

section.filter .filter ul li {
    font-weight: 500;
    color: #808080;
    position: relative;
}

section.filter .filter ul li:before {
    content: '';
    position: absolute;
    top: 5px;
    left: 0;
    height: 1px;
    width: 8px;
    background-color: #808080;
}

section.filter .filter ul li a {
    text-decoration: none;
    font-weight: 500;
    color: #808080;
    font-size: 13px;
    padding-left: 13px;
}

section.filter .filter ul li a.active {
    text-decoration: underline;
}

section.filter ul.subMenu {
	padding:0px;
	float:left;
	width: 100%;
	margin: 0px;
}

section.filter ul.subMenu li {
	float:left;	
	margin-right: 65px;
	height:40px;
}

section.filter ul.subMenu li a {
	/*line-height: 30px;*/
	color: #808080;
    font-family: "HurmeGeometricSans3",Arial,sans-serif;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    float:left;
    padding-top:14px;	
}

section.filter ul.subMenu li.current_page_item a {
	color: #333333;
	text-decoration: none;
	border-bottom: 1px solid #333;
}

section.filter a.search {
    display: inline-block;
    position: relative;
    float: right;
    color: #808080;
    padding: 11px 0 1px;
    margin-right: 20px;
    text-decoration: none;
    font-weight: 500;
    cursor: pointer;
    font-size: 13px;
}

section.filter a.search.active {
    border-bottom: 1px solid #333;
    color: #333333;
}

section.filter a.search:after {
    content: '';
    position: absolute;
    top: 12px;
    right: -16px;
    width: 10px;
    height: 10px;
    background-image: url('../img/icon-search-small.png');
    background-image: url('../img/icon-search-small-light.png');
    background-repeat: no-repeat;
    background-size: 10px 10px;
    background-position: center center;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

section.filter a.search.active:after {
    background-image: url('../img/icon-search-small.png');
}

section.filter div.search {
    width: 100%;
    height: 60px;
    border-top: 1px solid #808080;
    max-height: 0;
    opacity: 0;
    -webkit-transition: all 600ms ease;
    -moz-transition: all 600ms ease;
    -ms-transition: all 600ms ease;
    -o-transition: all 600ms ease;
    transition: all 600ms ease;
}

section.filter div.search.active {
    max-height: 60px;
    opacity: 1;
}

section.filter div.search input {
    margin: 7px 0 13px 0;
    font-size: 30px;
    font-weight: bold;
    color: #BFBFBF;
    padding: 0 20px 0 35px;
    border: none;
    width: 100%;
    height: 40px;
    line-height: 40px;
    background-image: url('../img/icon-search.png');
    background-size: 22px 22px;
    background-position: left 11px;
    background-repeat: no-repeat;
}

/*------------------------------------*\
    SECTION > LOAD MORE
\*------------------------------------*/

section.loadmore {
    position: relative;
    float: left;
    width: 100%;
    height: 60px;
    background-color: #fff;
    text-align: center;
}

section.loadmore.loading {
    background-image: url("../img/loading.gif");
    background-position: center -35px;
    background-repeat: no-repeat;
}

main.blog:not(.projects) section.loadmore.loading {
    background-position: center -30px;
}

section.loadmore.loading a {
    display: none;
}

/*------------------------------------*\
    SECTION > INSTAGRAM
\*------------------------------------*/

section.instagram {
    position: relative;
    float: left;
    width: 100%;
    background-color: #F2F2F2;
    text-align: center;
    padding: 15px 0 20px;
}

section.instagram h2 {
    font-weight: bold;
    color: #BFBFBF;
    margin-bottom: 15px;
}

section.instagram div.block {
    position: relative;
    float: left;
    height: 23vw;
    width: calc(100% / 4 - 14px);
    margin-right: 18px;
    margin-bottom: 18px;
    background-position: center center;
    background-size: cover;
}

section.instagram div.block:nth-child(4n) {
    margin-right: 0;
}

section.instagram div.block > a {
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    cursor: pointer;
    z-index: 3;
}

section.instagram div.block div.overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    background-color: rgba(255, 255, 255, 0.3);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 600ms ease;
    -moz-transition: all 600ms ease;
    -ms-transition: all 600ms ease;
    -o-transition: all 600ms ease;
    transition: all 600ms ease;
}

section.instagram div.block > a:hover + div.overlay {
    opacity: 1;
    visibility: visible;
}

/*------------------------------------*\
    PAGE > HOME
\*------------------------------------*/

body.home section.block-slider.full {
    height: calc(100vh - 70px);
}

body.home section.block-slider.full p {
    font-weight: 500;
}

body.home section.block-slider.full .button {
    border: 2px solid #fff;
}

body.home section.block-slider.full.dark .button {
    border: 2px solid #333;
}

/*------------------------------------*\
    PAGE > DESIGNERS
\*------------------------------------*/

.main.designers section.loadmore {
    display: none;
    margin-top: 12px;
}

.main.designers section.block-feature div.side div.content {
    padding-bottom: 30px;
}

.main.designers section.block-feature div.side div.content h2,
.main.designers section.block-feature div.side div.content h2 a {
    margin-bottom: 0;
    text-decoration: none;
    font-weight: bold;
}

.main.designers section.block-feature div.side a.toggle {
    margin-bottom: 1vw;
    margin-top: -10px;
}

/*------------------------------------*\
    PAGE > DESIGNER
\*------------------------------------*/

.main.designer section.block-feature div.side div.content {
    padding-bottom: 100px;
}

/*------------------------------------*\
    PAGE > PROJECTS
\*------------------------------------*/

.main.projects section.loadmore {
    display: none;
    margin-top: 12px;
}

.main.project section.block-feature div.side div.content h2 {
    margin-bottom: 0;
}

/*------------------------------------*\
    PAGE > POST
\*------------------------------------*/

.main.post section.block-feature div.side div.content {
    min-height: 60vw;
    padding: 10px 30px 70px;
}

.main.post section.block-feature div.feature {
    height: auto;
    min-height: 60vw;
}

.main.post section.block-feature div.feature div.slider {
    height: 60vw;
}

.main.post section.block-feature div.feature div.slider p {
    margin-bottom: 0;
}

/*------------------------------------*\
    PAGE > PRODUCT
\*------------------------------------*/

body.single-product section.block-slider.full {
    height: 40vw;
}

body.single-product .main.product section.block-feature div.feature {
    background-image: url('../img/loading.gif');
    background-position: center center;
    background-repeat: no-repeat;
}

body.single-product main.product .woocommerce-message {
    display: none;
}

.main.product section.block-feature div.side div.content h3 {
    margin-top: -10px;
    margin-bottom: 30px;
}

.main.product section.block-feature div.side div.content p.downloads {
    clear: both;
    padding-top: 20px;
    line-height: 1.6;
}

.main.product section.block-feature div.side div.content p.downloads a {
    font-weight: 500;
}

.main.product .block-standard.video {
    height: 70vw;
}

.main.product .block-standard.video.half {
    height: 30vw;
}

/* VARIATIONS */
.variation_form_section .toggle {
    display: inline-block;
    float: left;
    font-size: 13px;
}

.variation_form_section .option {
    display: block;
    font-size: 13px;
    font-weight: bold;
}

.variation_form_section .option.Size {
    display: block;
    float: none;
}

.variation_form_section .seperator {
    display: none;
    font-weight: normal;
    padding: 0 5px;
}

.variation_form_section .option.pa_timber,
.variation_form_section .option.pa_tops,
.variation_form_section .option.pa_cushions,
.variation_form_section .option.Cushion,
.variation_form_section .option.pa_rope-colour,
.variation_form_section .option.pa_colour,
.variation_form_section .option.Colour,
.variation_form_section .option.Pattern {
    display: inline-block;
    float: none;
}

.variation_form_section .option.pa_timber:after,
.variation_form_section .option.pa_tops:after,
.variation_form_section .option.pa_cushions:after,
.variation_form_section .option.Cushion:after,
.variation_form_section .option.pa_rope-colour:after,
.variation_form_section .option.pa_colour:after,
.variation_form_section .option.Colour:after,
.variation_form_section .option.Pattern:after {
    display: block;
    content: '';
    clear: both;
}

.variation_form_section .option.pa_timber .seperator,
.variation_form_section .option.pa_tops .seperator,
.variation_form_section .option.pa_cushions .seperator,
.variation_form_section .option.Cushion .seperator,
.variation_form_section .option.pa_rope-colour .seperator,
.variation_form_section .option.pa_colour .seperator,
.variation_form_section .option.Colour .seperator,
.variation_form_section .option.Pattern .seperator {
    display: inline-block;
}

.variation_form_section .attribute_pa_timber_picker_label,
.variation_form_section .attribute_pa_tops_picker_label,
.variation_form_section .attribute_pa_cushions_picker_label,
.variation_form_section .attribute_cushion_picker_label,
.variation_form_section .attribute_pa_rope-colour_picker_label,
.variation_form_section .attribute_pa_colour_picker_label,
.variation_form_section .attribute_colour_picker_label,
.variation_form_section .attribute_pattern_picker_label {
    margin-bottom: 0;
}

.variation_form_section div#toggle {
    border-bottom: 1px solid #c7c8ca;
    padding: 7px 0px;
}

.variation_form_section select,
.variation_form_section .single-qty input[type=number] {
    margin: 5px 0;
    display: block;
    clear: both;
}

#variations_clear {
    display: none !important;
}

.variation_form_section div.swatch-wrapper {
    padding: 0;
    border-radius: 50%;
    width: 21px;
    height: 21px;
    overflow: hidden;
    border: 1px solid #fff;
}

.variation_form_section div.swatch-wrapper.disabled {
    display: none;
}

.variation_form_section div.swatch-wrapper[data-name="White"] {
    border: 1px solid #d1d1d0;
}

.variation_form_section div.swatch-wrapper.selected {
    /*     border: 1px solid #000; */
}

.variation_form_section div.swatch-wrapper a {
    display: inline-block !important;
    text-indent: -9999px;
    width: 21px !important;
    height: 21px !important;
}

.variation_form_section div.swatch-wrapper a img {
    width: 21px !important;
    height: 21px !important;
    display: block;
}

.variation_form_section .attribute_pa_colour_picker,
.variation_form_section .attribute_pa_tops_picker,
.variation_form_section .attribute_pa_timber_picker,
.variation_form_section .attribute_colour_picker,
.variation_form_section .attribute_rope-colour_picker,
.variation_form_section .attribute_cushion_picker,
.variation_form_section .select {
    display: block;
    clear: both;
    margin-top: 7px;
}

.variation_form_section .attribute_pa_colour_picker:after,
.variation_form_section .attribute_pa_tops_picker:after,
.variation_form_section .attribute_pa_timber_picker:after,
.variation_form_section .attribute_colour_picker:after,
.variation_form_section .attribute_rope-colour_picker:after,
.variation_form_section .attribute_cushion_picker:after,
.variation_form_section .select:after {
    content: '';
    clear: both;
    display: block;
}

.variation_form_section div.swatch-label {
    display: inline-block;
}

p.instoreText {
	margin-top: 30px;
	margin-bottom: 0px;
}

.baseIcons {
	float:left;
	width:100%;
	margin-top:20px;
}

.baseIcons span.icon {
	float:left;
	width:16%;
	margin-right:10px;
	text-align:center;
	margin-bottom:20px;
	max-width:60px;
}

.baseIcons span.icon:last-child {
	margin-right:0px;
}

.baseIcons span.icon a {
	text-decoration:none;
}

.baseIcons span.icon .image {
	float:left;
	width:100%;
}
.baseIcons span.icon .image img {
	max-width:80%;
	display:inline-block;
}

.baseIcons span.icon .text {
	float:left;
	width:100%;
	margin-top:10px;
	text-align:center;
	font-weight:700;
	font-size:11px;
}

.accordions.instore {
	float:left;
	width: 100%;
}

.accordions.instore .accordion-section {
	float:left;
	width: 100%;
}

.accordions.instore .select {
	clear: both;
    display: block;
    margin-bottom: 5px;
    margin-top: 0;
    float:left;
    width: 100%;
}

.accordions.instore .select div.swatch-wrapper {
	border-radius: 50%;
    height: 21px;
    overflow: hidden;
    padding: 0;
    width: 21px;
    border-color: #fff;
}

.accordions.instore .select div.swatch-wrapper span {
	display: inline-block;
	text-indent: -9999px;
	height:21px;
	width: 21px;
}

.accordions.instore .select div.swatch-wrapper span img {
	float:left;
}

.fabricOption {
	float:left;
	margin-right: 20px;
	text-decoration: none;
}

.fabricOption a {
	text-decoration: none;
	font-weight: 700;
	margin-bottom: 10px;
	float:left;
}

/* PRICE */

.single_variation .price .amount:before {
    content: 'Price';
    font-weight: bold;
    display: block;
    padding-bottom: 5px;
}

.single_variation p.stock.out-of-stock {
    margin-top: 30px;
    display: inline-block;
    outline: 0px none;
    border: 1px solid #333;
    border-radius: 0px;
    padding: 9.5px 23px;
    height: 40px;
    color: #333;
    text-align: center;
    text-transform: uppercase;
    background: transparent none repeat scroll 0% 0%;
    letter-spacing: 2px;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease-in-out 0s;
}

/* QUANITY */
.single_variation {
    padding: 8px 0;
}

.single_variation .price {
    border-bottom: 1px solid #C7C8CA;
    width: 100%;
    display: block;
    padding-bottom: 8px;
}

.single_variation_wrap .variations_button,
.single_variation_wrap .buttons {
    /* 	padding-top: 20px; */
    margin-top: 20px;
}

.single_variation_wrap .quantity {
    display: inline-block;
    float: left;
    position: relative;
    width: 48px;
    height: 34px;
}

.single_variation_wrap .quantity .input-text.qty {
    position: absolute;
    top: 0;
    left: 0;
    width: 25px;
    height: 34px;
    text-align: center;
    font-weight: bold;
}

.single_variation_wrap .quantity .plus,
.single_variation_wrap .quantity .minus {
    position: absolute;
    left: 24px;
    width: 25px;
    height: 15px;
    line-height: 17px;
    text-align: center;
    padding: 0;
    font-size: 14px;
    z-index: 10;
}

.single_variation_wrap .quantity .plus {
    top: 0;
    border-bottom: none;
    padding-top: 2px;
}

.single_variation_wrap .quantity .minus {
    bottom: 0;
    border-top: none;
    line-height: 1;
    padding-bottom: 16px;
}

.single_variation_wrap .single_add_to_cart_button {
    display: inline-block;
    float: left;
    position: relative;
    height: 34px;
    line-height: 30px;
    font-size: 10px;
    color: #585956;
    padding: 0 20px;
}

/*------------------------------------*\
    PAGE > DOWNLOADS
\*------------------------------------*/

.main.downloads section.default a.back {
    opacity: 0;
}

.main.downloads section.default div.content {
    max-width: 100%;
}

.main.downloads section.default div.content ul {
    width: 100%;
    padding: 0;
}

.main.downloads section.default div.content ul li {
    width: 100%;
    padding: 0;
    height: 48px;
    border-top: 1px solid #808080;
}

.main.downloads section.default div.content ul li h2 {
    margin: 0;
    line-height: 46px;
    font-size: 28px;
}

.main.downloads section.default div.content ul li p {
    display: inline-block;
    margin: 0;
    font-weight: bold;
    font-size: 16px;
    color: #333;
    line-height: 46px;
}

.main.downloads section.default div.content ul li a {
    display: inline-block;
    float: right;
    font-weight: 500;
    font-size: 15px;
    color: #333333;
    line-height: 48px;
}

/*------------------------------------*\
    LIGHTBOX
\*------------------------------------*/

body .mfp-bg {
    background: #fff;
}

body .mfp-content {
    text-align: center;
}

/* overlay at start */
.mfp-fade.mfp-bg {
    opacity: 0;
    -webkit-transition: all 400ms ease-out;
    -moz-transition: all 400ms ease-out;
    transition: all 400ms ease-out;
}

/* overlay animate in */
.mfp-fade.mfp-bg.mfp-ready {
    opacity: 0.8;
}

/* overlay animate out */
.mfp-fade.mfp-bg.mfp-removing {
    opacity: 0;
}

/* content at start */
.mfp-fade.mfp-wrap .mfp-content {
    opacity: 0;
    -webkit-transition: all 400ms ease-out;
    -moz-transition: all 400ms ease-out;
    transition: all 400ms ease-out;
}

/* content animate it */
.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
    opacity: 1;
}

/* content animate out */
.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
    opacity: 0;
}

.mfp-iframe-holder .mfp-close,
.mfp-close-btn-in .mfp-close {
    background-image: url("../img/icon-close.png");
    background-size: 26px 26px;
    background-repeat: no-repeat;
    background-position: center center;
    text-indent: 9999px;
    width: 26px;
    height: 26px;
    padding: 0;
    opacity: 1;
    -webkit-transition: all 400ms ease-out;
    -moz-transition: all 400ms ease-out;
    transition: all 400ms ease-out;
}

.mfp-close-btn-in .mfp-close {
    top: 45px;
    right: 40px;
}

.mfp-iframe-holder .mfp-close {
    top: -50px;
    right: -50px;
}

.mfp-iframe-holder .mfp-close:hover,
.mfp-close-btn-in .mfp-close:hover {
    opacity: 0.6;
}

/* Accordion Blocks */

section.default.accordionBlock.top {
    margin-top: 35px;
}

section.default.accordionBlock h2 {
    margin-bottom: 20px;
}

.accordionInner {
    float: left;
    width: 100%;
}

.accordionInner .left {
    float: left;
    width: 380px;
}

.accordionInner .left .pdf {
    float: left;
    width: 100%;
    margin-bottom: 25px;
}

.accordionInner .left .pdf a {
    text-decoration: none;
    color: #BFBFBF;
}

.accordionInner .right {
    float: right;
    width: calc(100% - 420px);
}

.accordionInner .right .blocks {
    float: left;
    width: 100%;
    border-top: 1px solid #000;
    margin-top: 10px;
}

.accordionInner .right .blocks .block {
    float: left;
    width: 100%;
    border-bottom: 1px solid #000;
}

.accordionInner .right .blocks .block h4 a {
    float: left;
    width: 100%;
    position: relative;
    padding-right: 80px;
    padding: 12px 40px 12px 0px;
    text-decoration: none;
    font-family: "HurmeGeometricSans3", Arial, sans-serif;
    font-weight: bold;
}

.accordionInner .right .blocks .block h4 a .icon {
    position: absolute;
    right: 0px;
    top: 10px;
}

.accordionInner .right .blocks .block h4 a .icon.close {
    opacity: 0;
}

.accordionInner .right .blocks .block h4 a.active .icon.close {
    opacity: 1;
}

.accordionInner .right .blocks .block h4 a.active .icon.open {
    opacity: 0;
}

.accordionInner .right .blocks .block .answerBlock {
    float: left;
    width: 100%;
    padding-bottom: 15px;
    display: none;
}

/*.accordionInner .right .blocks .block .answerBlock.active {
	display: block;
}*/
.accordionInner .right .blocks .block .answerBlock .leftBlock {
    float: left;
    width: 48%;
}

.accordionInner .right .blocks .block .answerBlock .rightBlock {
    float: right;
    width: 48%;
}

/* Downloads */

section.default.singleDownload {
    margin-top: 35px;
}

.downloadBlock {
    float: left;
    width: 100%;
}

.downloadBlock .left {
    float: left;
    width: 380px;
}

.downloadBlock .left img {
    max-width: 100%;
    width: 100%;
}

.downloadBlock .right {
    float: right;
    width: calc(100% - 420px);
}

.downloadBlock .left img {
    max-width: 100%;
}

.prodContent {
    float: left;
    width: 100%;
}

.prodContent .inner {
    max-width: 400px;
    width: 100%;
    float: left;
}

.allLink {
    float: left;
    width: 100%;
    margin-top: 40px;
}

.allLink a {
    border: 1px solid #000;
    color: #000;
    display: inline-block;
    font-family: "HurmeGeometricSans3", Arial, sans-serif;
    font-size: 11px;
    font-weight: 500;
    height: 28px;
    letter-spacing: 0;
    line-height: 28px;
    padding: 0 10px;
    text-transform: uppercase;
    text-decoration: none;
}

.catBlock {
    float: left;
    width: 100%;
    margin-top: 20px;
}

.catBlock h4 {
    border-bottom: 1px solid #000;
    padding-bottom: 20px;
    margin-bottom: 0px;
}

.catBlock .fileBlock {
    float: left;
    width: 100%;
    border-bottom: 1px solid #000;
    padding: 5px 0px;
    position: relative;
}

.catBlock .fileBlock .image {
    width: 120px;
    float: left;
}

.catBlock .fileBlock .title {
    float: right;
    width: calc(100% - 140px);
    position: absolute;
    height: calc(100%);
    right: 0px;
    top: 0px;
}

.catBlock .fileBlock .title .fileTitle {
    position: relative;
    padding-right: 100px;
    font-family: "HurmeGeometricSans3", Arial, sans-serif;
    font-weight: bold;
    float: right;
    width: 100%;
    text-align: left;
}

.catBlock .fileBlock .title .link {
    position: absolute;
    right: 0px;
}

.catBlock .fileBlock .image img {
    max-width: 100%;
    width: 100%;
}

.catBlock .fileBlock .title.full {
    position: relative;
    float: left;
    width: 100%;
    padding: 10px 0px;
}

/*------------------------------------*\
    LIGHTBOX > SUBSCRIBE
\*------------------------------------*/

.mfp-wrap {
    z-index: 99999;
}

#subscribe {
    background: #fff;
    max-width: 550px;
    width: 100%;
    /*padding:40px;*/
    padding: 30px;
    box-shadow: 0px 0px 5px #ccc;
    position: relative;
    display: inline-block;
    text-align: left;
}

#subscribe h3 {
    color: #4a4c4c;
    font-size: 30px;
    line-height: 1;
    margin-bottom: 20px;
}

#subscribe .leftBlock {
    float: left;
    width: 48%;
}

#subscribe .rightBlock {
    float: right;
    width: 48%;
    background: #939598;
}

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

#subscribe .rightBlock .image {
    float: left;
    width: 100%;
}

#subscribe .rightBlock .image img {
    max-width: 100%;
    width: 100%;
}

#subscribe .rightBlock .base {
    padding: 20px;
    float: left;
    width: 100%;
    text-align: center;
    color: #fff;
}

#subscribe .rightBlock .base .title {
    float: left;
    width: 100%;
    font-size: 30px;
    line-height: 1;
    margin-bottom: 20px;
    font-family: "HurmeGeometricSans3", Arial, sans-serif;
    font-weight: bold;
}

#subscribe .rightBlock .base .btn {
    float: left;
    width: 100%;
}

#subscribe .rightBlock .base .btn span {
    background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
    border: 1px solid #fff;
    border-radius: 0;
    color: #fff;
    display: inline-block;
    font-size: 14px;
    font-weight: bold;
    height: 40px;
    letter-spacing: 2px;
    outline: 0 none;
    padding: 9.5px 23px;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease-in-out 0s;
}

#subscribe .mfp-close {
    background-size: 15px 15px;
    height: 15px;
    width: 15px;
    top: 10px;
    right: 10px;
}

#subscribe li {
    float: left;
    width: 49%;
    clear: both;
    margin-bottom: 15px;
}

#subscribe li.formRight {
    clear: none;
    float: right;
    width: 49%;
}

#subscribe .leftBlock li {
    width: 100%;
    margin-bottom: 8px;
}

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

#subscribe label {
    float: left;
    width: 100%;
    margin-bottom: 5px;
}

#subscribe li.formFull {
    clear: none;
    float: none;
    width: 100%;
    clear: both;
}

#subscribe li.formFull li {
    width: 100%;
    white-space: nowrap;
    margin-bottom: 0;
}

#subscribe li.formFull li input,
#subscribe li.formFull li label {
    display: inline-block;
    width: auto;
    float: none;
}

#subscribe .validation_error {
    display: none;
}

#subscribe .gform_footer {
    width: 49%;
    float: left;
    clear: both;
    margin-top: 20px;
}

#subscribe .gform_ajax_spinner {
    display: none;
}

#subscribe .validation_message {
    font-size: 11px;
}

#subscribe .gform_footer input[type=text] {
    background: none;
    padding: 7px 15px 6px;
    color: #4A4C4C;
    font-family: "HurmeGeometricSans3", Arial, sans-serif;
    font-weight: 500;
    font-size: 12px;
    float: left;
    border-radius: 0px;
    height: auto;
}

#subscribe li input[type=text],
#subscribe li select {
    width: 100%;
    border: 1px solid #a6a6a5;
}

#subscribe li.gform_validation_container {
    display: none;
}

/*------------------------------------*\
    LIGHTBOX > COMPETITION
\*------------------------------------*/

#competition {
    background: #fff;
    max-width: 550px;
    width: 100%;
    padding: 40px;
    box-shadow: 0px 0px 5px #ccc;
    position: relative;
    display: inline-block;
    text-align: center;
}

#competition h3 {
    color: #000;
    margin-bottom: 30px;
}

#competition a.button {
    margin: 0 15px;
}

#competition p {
    margin-bottom: 0;
}

#competition .mfp-close {
    display: none;
}

/*------------------------------------*\
    HELPERS
\*------------------------------------*/

.clear:before,
.clear:after {
    content: ' ';
    display: table;
}

.clear:after {
    clear: both;
}

.clear {
    *zoom: 1;
}

.v-wrap {
    height: 100%;
    white-space: nowrap;
    text-align: center;
}

.v-wrap:before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    width: 0;
    margin-right: -.25em;
    height: 100%;
}

.v-box {
    display: inline-block;
    vertical-align: middle;
    white-space: normal;
}

.no-margin {
    margin: 0 !important;
}

.no-padding {
    padding: 0 !important;
}

.hidden {
    display: none !important;
    visibility: hidden;
}

.invisible {
    visibility: hidden;
}

/*------------------------------------*\
    MISC
\*------------------------------------*/

*,
*:after,
*:before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

html {
    -webkit-tap-highlight-color: transparent;
}

::selection {
    background: #000;
    color: #FFF;
    text-shadow: none;
}

::-webkit-selection {
    background: #000;
    color: #FFF;
    text-shadow: none;
}

::-moz-selection {
    background: #000;
    color: #FFF;
    text-shadow: none;
}

/*------------------------------------*\
    SECTION > MY ACCOUNT (PDS OVERRIDES)
\*------------------------------------*/
body.woocommerce-account .main .woocommerce {
    max-width: 800px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

body.woocommerce-account .main .woocommerce .my-account,
body.woocommerce-account .main .woocommerce .my-account form.register,
body.woocommerce-account .main .woocommerce .my-account div.col-1,
body.woocommerce-account .main .woocommerce .my-account div.col-2,
body.woocommerce-account .main .woocommerce .my-account div.col-3 {
    max-width: 100%;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
}

body.woocommerce-account .main .woocommerce .form-row {
    margin-bottom: 15px;
    width: 100%;
}

body.woocommerce-account .main .woocommerce .form-row--submit {
    /*margin-top: 1em;*/
}

body.woocommerce-page .main .woocommerce .form-row input:not([type=checkbox]),
body.woocommerce-page .main .woocommerce .form-row select,
body.woocommerce-page .main .woocommerce .form-row textarea {
    width: 100%;
    max-width: 100%;
}

body.woocommerce-page .main .woocommerce .form-row input[type=submit] {
    width: auto;
}

body.woocommerce-account .main .woocommerce input[type="checkbox"] {
    position: relative;
    top: 2px;
}

body.woocommerce-account .main .woocommerce #subscribe_to_newsletter_field label {
    line-height: 33px;
}

body.woocommerce-account { }

body.woocommerce-account .main .woocommerce .register { }

body.woocommerce-account .main .woocommerce .register.tait-user-type--consumer { }

body.woocommerce-account .main .woocommerce .register.tait-user-type--consumer #billing_company_field,
body.woocommerce-account .main .woocommerce .register.tait-user-type--consumer #billing_position_field,
body.woocommerce-account .main .woocommerce .register.tait-user-type--consumer #billing_phone_field { display: none !important; }

body.woocommerce-account .main .woocommerce .register.tait-user-type--press { }

body.woocommerce-account .main .woocommerce .register.tait-user-type--press #billing_position_field { display: none !important; }

body.woocommerce-account .main .woocommerce .register.tait-user-type--industry { }

body.woocommerce-account .main .woocommerce .register #tait_user_type_field {
    position: relative;
}

body.woocommerce-account .main .woocommerce .register #tait_user_type_field:after {
    content: '';
    border: solid 4px transparent;
    display: block;
    height: 0;
    width: 0;
    border-top-color: #666;
    position: absolute;
    top: 42%;
    right: 10px;
}

.tait-uts-dl-place{
    font-size:1.3em;
    width:660px;
    max-width:100%;
    border:solid 2px #EDEEEF;
    padding:2em 1.5em;
    margin:4em auto;
}

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

    body.woocommerce-account .main .woocommerce .login .form-row--username {
        width: 50%;
        float: left;
        padding-right: 20px;
    }

    body.woocommerce-account .main .woocommerce .login .form-row--password {
        width: 50%;
        float: right;
        padding-left: 20px;
    }

    body.woocommerce-account .main .woocommerce .login .form-row--submit {
        float: right;
        width: 50%;
        padding-left: 20px;
    }

    body.woocommerce-account .main .woocommerce .login .form-row--submit .inline {
        display: inline;
    }

    body.woocommerce-account .main .woocommerce .login .form-row--submit input[type="submit"] {
        margin-right: 0;
        float: right;
    }

    body.woocommerce-account .main .woocommerce .login .lost_password {
        width: 50%;
        float: left;
        padding-right: 20px;
        margin-top: -50px;
    }

    body.woocommerce-account .main .woocommerce .register #tait_user_type_field {
        width: 50%;
        padding-right: 20px;
    }

    body.woocommerce-account .main .woocommerce .register .tait-user-type-desc {
        width: 50%;
        padding-right: 20px;
    }

    body.woocommerce-account .main .woocommerce .register #tait_user_type_field:after {
        right: 30px;
    }

    body.woocommerce-account .main .woocommerce .register #billing_first_name_field {
        width: 50%;
        float: left;
        padding-right: 20px;
    }

    body.woocommerce-account .main .woocommerce .register #billing_last_name_field {
        width: 50%;
        float: right;
        padding-left: 20px;
    }

    body.woocommerce-account .main .woocommerce .register .form-row--password {
        width: 50%;
        float: left;
        padding-right: 20px;
    }

    body.woocommerce-account .main .woocommerce .register .form-row--conf-password {
        width: 50%;
        float: right;
        padding-left: 20px;
    }

    body.woocommerce-account .main .woocommerce .register .clear {
        display: none !important;
    }

    body.woocommerce-account .main .woocommerce .register #subscribe_to_newsletter_field {
        width: 50%;
        float: left;
        padding-right: 20px;
    }

    body.woocommerce-account .main .woocommerce .register .form-row--submit {
        width: 50%;
        float: right;
        padding-left: 20px;
        text-align: right;
    }

    body.woocommerce-account .main .woocommerce .register .form-row--submit input[type="submit"] {
        font-size:11px;
    }

    body.woocommerce-account .main .woocommerce .register.tait-user-type--consumer #billing_country_field {
        width: 50%;
        float: left;
        padding-right: 20px;
        margin-right: 0;
    }

    body.woocommerce-account .main .woocommerce .register.tait-user-type--consumer #billing_state_field {
        width: 50%;
        float: right;
        padding-left: 20px;
        margin-right: 0;
    }

    body.woocommerce-account .main .woocommerce .register.tait-user-type--consumer .form-row--email {
        width: 50%;
        float: left;
        padding-right: 20px;
    }

    body.woocommerce-account .main .woocommerce .register.tait-user-type--consumer .form-row--password {
        clear:left;
    }


    body.woocommerce-account .main .woocommerce .register.tait-user-type--press #billing_company_field {
        width: 50%;
        float: left;
        padding-right: 20px;
        margin-right: 0;
    }


    body.woocommerce-account .main .woocommerce .register.tait-user-type--press #billing_country_field {
        width: 50%;
        float: left;
        padding-right: 20px;
        margin-right: 0;
        clear: left;
    }

    body.woocommerce-account .main .woocommerce .register.tait-user-type--press #billing_state_field {
        width: 50%;
        float: right;
        padding-left: 20px;
        margin-right: 0;
    }

    body.woocommerce-account .main .woocommerce .register.tait-user-type--press #billing_phone_field {
        width: 50%;
        float: left;
        padding-right: 20px;
        margin-right: 0;
        clear: left;
    }

    body.woocommerce-account .main .woocommerce .register.tait-user-type--press .form-row--email {
        width: 50%;
        float: right;
        padding-left: 20px;
    }







    body.woocommerce-account .main .woocommerce .register.tait-user-type--industry #billing_company_field {
        width: 50%;
        float: left;
        padding-right: 20px;
        margin-right: 0;
    }

    body.woocommerce-account .main .woocommerce .register.tait-user-type--industry #billing_position_field {
        width: 50%;
        float: right;
        padding-left: 20px;
        margin-right: 0;
    }

    body.woocommerce-account .main .woocommerce .register.tait-user-type--industry #billing_country_field {
        width: 50%;
        float: left;
        padding-right: 20px;
        margin-right: 0;
        clear: left;
    }

    body.woocommerce-account .main .woocommerce .register.tait-user-type--industry #billing_state_field {
        width: 50%;
        float: right;
        padding-left: 20px;
        margin-right: 0;
    }

    body.woocommerce-account .main .woocommerce .register.tait-user-type--industry #billing_phone_field {
        width: 50%;
        float: left;
        padding-right: 20px;
        margin-right: 0;
        clear: left;
    }

    body.woocommerce-account .main .woocommerce .register.tait-user-type--industry .form-row--email {
        width: 50%;
        float: right;
        padding-left: 20px;
    }










    /*body.woocommerce-account .woocommerce .register.tait-user-type-- .form-row--password {*/
        /*clear:left;*/
    /*}*/







    /*body.woocommerce-account .woocommerce .register { }*/
    /*body.woocommerce-account .woocommerce .register .tait-user-type-desc {*/
    /*width: 50%;*/
    /*padding-right: 20px;*/
    /*}*/
    /*body.woocommerce-account .woocommerce .register #billing_company_field {*/
    /*width: 50%;*/
    /*float: left;*/
    /*padding-right: 20px;*/
    /*}*/
    /*body.woocommerce-account .woocommerce .register #billing_position_field {*/
    /*width: 50%;*/
    /*float: right;*/
    /*padding-left: 20px;*/
    /*}*/
    /*body.woocommerce-account .woocommerce .register #billing_country_field {*/
    /*width: 50%;*/
    /*float: left;*/
    /*padding-right: 20px;*/
    /*margin-right: 0;*/
    /*}*/

    /*body.woocommerce-account .woocommerce .register #billing_phone_field {*/
    /*width: 50%;*/
    /*float: left;*/
    /*padding-right: 20px;*/
    /*margin-right: 0;*/
    /*}*/

}

.added_to_cart.wc-forward{
    display: none !important;
}

/*------------------------------------*\
    PRINT
\*------------------------------------*/

@media print {
    * {
        background: transparent !important;
        color: #000 !important;
        box-shadow: none !important;
        text-shadow: none !important;
    }

    a,
    a:visited {
        text-decoration: underline;
    }

    a[href]:after {
        content: " (" attr(href) ")";
    }

    abbr[title]:after {
        content: " (" attr(title) ")";
    }

    .ir a:after,
    a[href^="javascript:"]:after,
    a[href^="#"]:after {
        content: "";
    }

    pre, blockquote {
        border: 1px solid #999;
        page-break-inside: avoid;
    }

    thead {
        display: table-header-group;
    }

    tr, img {
        page-break-inside: avoid;
    }

    img {
        max-width: 100% !important;
    }

    @page {
        margin: 0.5cm;
    }

    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }

    h2,
    h3 {
        page-break-after: avoid;
    }
}

/* ------------------------------------------------------------ *\
    Form Subscribe
\* ------------------------------------------------------------ */

.form-subscribe select {
	width:100%;
}

.form-subscribe {font-size: 13px; width: 48.529411765em; max-width: 48.529411765em; margin: 0 auto;background: #fff;padding: 2.5em;text-align: left;position: relative; box-shadow: 0 0 5px #ccc;}
.form-subscribe .mfp-close { position: absolute; top: 0.5em; right: 0.125em; background: url(../icons/ico-close.png) no-repeat 0 0; }
.form-subscribe .gform_wrapper { border: none; padding: 0; position: relative; }
.form-subscribe .gform_wrapper .gform_title { font-size: 1.764705882em; color: #000; line-height: 1.2; max-width: 11.470588235em; }
.form-subscribe .gform_wrapper .gform_description { font-size: 1em; display: inline-block; max-width: 74%; line-height: 1.2; }
.form-subscribe .gform_wrapper .gfield:after { content: ''; line-height: 0; display: table; clear: both; }
.form-subscribe .gform_wrapper .gfield-text,
.form-subscribe .gform_wrapper .gfield-email { width: 36%; }
.form-subscribe .gform_wrapper .gfield-text .medium,
.form-subscribe .gform_wrapper .gfield-email .medium { width: 100%; }
.form-subscribe .gform_wrapper .gfield_html.form-image { position: absolute; top: 0; right: 0; width: 14em; height: auto; }
.form-subscribe .gform_wrapper .gfield.gfield_html { margin-top: 0; }
.form-subscribe .gform_wrapper .gform_fields { padding: 0; }
.form-subscribe .gform_wrapper .gfield { margin-top: 1.176470588em; width: 36%; }
.form-subscribe .gform_wrapper .gfield input[type="text"]:focus { background: #fffadc; }
.form-subscribe .gform_wrapper .gfield-checkbox { position: absolute; left: 39%; width:25%; top: 0; margin-top: 0; }
.form-subscribe .gform_wrapper .gfield-checkbox .ginput_container { /*margin-top: 1.5em;*/ }
.form-subscribe .gform_wrapper .gfield_checkbox input { border-radius: 0; background-color: transparent; width: 1em; height: 1em; border: 1px solid #000; -webkit-appearance: none; margin-right: 0.25em; vertical-align: text-top; transition: none; }
.form-subscribe .gform_wrapper .gfield_checkbox input:checked { background: url(../icons/ico-close.png) no-repeat center center; background-size: 66%; }
.form-subscribe .gform_wrapper .gfield_checkbox { padding: 0; font-size: .882352941em; }
.form-subscribe .gform_wrapper .gfield_checkbox li { margin-bottom: .470588235em; }
.form-subscribe .gform_wrapper .gfield_label { font-size: 1em; }
.form-subscribe .gform_wrapper .ginput_container { margin-top: .529411765em; }
.form-subscribe .gform_wrapper .gform_footer {margin-top: 0;position: absolute;right: 0%; bottom: 0;}
.form-subscribe .gform_wrapper .gform_footer input[type="submit"], .gform_button.button { letter-spacing: 0; font-size: .941176471em; color: #000; position: relative; padding: .529411765em 1.352941176em .647058824em; height: 2.588235294em; border-width:1px; }
.form-subscribe .gform_wrapper .gform_footer .gform_button:before { content: ''; left: 0; bottom: 100%;  }
.form-subscribe .gform_wrapper .gform_footer .gform_button:hover { background: #000; color: #fff; }
.form-subscribe .gform_wrapper .gform_footer .text { font-size: .588235294em; margin: 0 0 .705882353em .117647059em; }
.form-subscribe .gform_wrapper .gfield_description.validation_message { color: red; max-width: 9.411764706em; }
.form-subscribe .gform_wrapper .gform_ajax_spinner { margin: -.117647059em 0 0 .882352941em; }
.form-subscribe > .gforms_confirmation_message { text-align: center; min-height: 11.764705882em; padding: 4.117647059em 3.529411765em 3.529411765em; font-size: 1.764705882em; }

@media all and (max-width: 1023px) {
    .form-subscribe { width: 90%; margin-top: 106px; }
    .form-subscribe .gform_wrapper .gfield-text,
    .form-subscribe .gform_wrapper .gfield-email { /*width: 30.9%;*/ }
}

@media all and (max-width: 767px) {
    .form-subscribe .gform_wrapper .gfield_html.form-image { display: none; width: 11.411764706em; height: 34%; }
    .form-subscribe .gform_wrapper .gfield-text, .form-subscribe .gform_wrapper .gfield-email { width: 53%; }
    .form-subscribe .gform_wrapper .gfield {
	    width: 53%;
    }
    .form-subscribe .gform_wrapper .gfield-checkbox { left: initial; width: 40%; right: 0; }
    .form-subscribe .gform_wrapper { padding: 1.176470588em 1.764705882em 1.764705882em; }
    .form-subscribe .gform_wrapper .gform_footer { position: static; margin-top: 1.176470588em; }
    .form-subscribe .gform_wrapper .gform_description { max-width: 100%; margin-bottom: .588235294em; font-size: .882352941em; }
    .form-subscribe .gform_wrapper .gform_title { max-width: none; }
    .form-subscribe .gform_wrapper .gfield { margin-top: .588235294em; }
    .form-subscribe .gform_wrapper .gfield_checkbox input { margin-right: 0; }
    
}

@media all and (max-width: 479px) {
    .form-subscribe .gform_wrapper .gfield-text, .form-subscribe .gform_wrapper .gfield-email { width: 100%; }
    .form-subscribe .gform_wrapper .gfield {
	    width: 100%;
    }
    .form-subscribe .gform_wrapper .gfield-checkbox { position: static; width: 100%; margin-top: .882352941em; }
    .form-subscribe .gform_wrapper .gform_footer { margin-top: 0; text-align: center; }
    .form-subscribe .gform_wrapper { padding: 1.176470588em .588235294em 1.764705882em; }
    .form-subscribe .mfp-close { top: 1em; right: 0.75em; }
}


/* ------------------------------------------------------------ *\
    Slider Products
\* ------------------------------------------------------------ */

.slider-products .slide { background-size: cover; background-position: center center; position: relative; }
.slider-products .slide-inner { height: 0; padding-bottom:60%; }
.slider-products .slide-link-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 5; transition: background .6s; }
.slider-products .slide-overlay{ position: absolute; top: 0; left: 0; bottom: 0; right: 0; }
.slider-products .slide .slide-title {}
.slider-products .lSAction .lSPrev { background: url(../img/icon-left.png) no-repeat 0 0; background-size: contain; width:20px; height:33px; margin-top:-16px; opacity:1 !important; }
.slider-products .lSAction .lSNext { background: url(../img/icon-right.png) no-repeat 0 0; background-size: contain; width:20px; height:33px; margin-top:-16px; opacity:1 !important; }

.slider-products .slide.slide-theme--white * { color: white !important; border-color: white !important; }

@media all and (max-width: 767px) {
    .slider-products .slide-inner { height: 0; padding-bottom:80%; }
    .slider-products .slide .slide-title { font-size: 24px; }
}

/* ------------------------------------------------------------ *\
    Product Accordion
\* ------------------------------------------------------------ */

.accordions { clear: both; }

.variation_form_section .meta_line { display: block; }

/* .accordion-expanded .accordion-head { background-size: 5%; } */

.accordion-head { padding: 7px 0px; font-weight: 700; cursor: pointer; }

.accordion-section { border-bottom: 1px solid #c7c8ca; }

.main.post section.block-feature div.side div.content { padding: 10px 30px 200px; }
.block-feature .content .content-bottom { position: absolute; bottom: 10px; left: 0; width: 100%; padding: 0 30px; }

.accordion-head { position: relative; padding: 12px 40px 12px 0px; }

.accordion-head:after,
.accordion-section.opened .accordion-head:after { content: ''; display: inline-block; position: absolute; right: 3px; top: 50%; background: url(../img/icon-close.png) no-repeat; width: 20px; height: 20px; background-size: cover;
    -webkit-transition: all .3s;
            transition: all .3s;
-webkit-transform: translateY(-50%) rotate(45deg);
        transform: translateY(-50%) rotate(45deg); }


.accordion-section.opened .accordion-head:after {
    -webkit-transform: translateY(-50%) rotate(0deg);
            transform: translateY(-50%) rotate(0deg); }

.accordion-head,
.accordion-section.opened .accordion-head {  }

.single_add_to_cart_button { height: auto; padding: 8px 23px; }

.main.post section.block-feature div.side div.content { min-height: 52vw; }

section.block-feature div.side div.social { clear: both; padding-top: 30px; }

.content-secondary { padding: 10px 30px 0; }
.content-secondary .single_variation .price { border: none; }
.content-secondary .single_variation_wrap .buttons { padding: 0; margin: 0; }

.accordion-section div#toggle { border: none; padding: 0; }
.accordion-section .choose { display: inline-block; }

.accordions .single_variation_wrap { display: none !important; }

form.variations_form .single_add_to_cart_button,
form.variations_form .quantity { display: none !important; }

.single_variation .price .amount:before { content: 'Price (RRP)'; }

.accordions .swatch-label { display: inline-block; margin-bottom: 0; font-weight: normal; }
.accordions .variation_form_section .option { display: inline-block; }

@media all and (max-width: 1023px) {
    .main.post section.block-feature div.side div.content { padding: 10px 30px 70px; }
    .block-feature .content .content-bottom { position: static; padding: 0; }

    .accordion-head,
    .accordion-expanded .accordion-head,
    .variation_form_section .meta_line.has-options,
    .variation_form_section .meta_line.has-options.accordion-expanded { background-size: 4%; }
}


a.back { margin-bottom: 4px; }

.accordion-body { display: none; }
.accordion-expanded .accordion-body { display: block; }


.gform_footer .text + .text{
    display: none !important;
}

li.offscreen {
	position:absolute !important;
	top:-10000px !important;
	left:-10000px !important;
}

section.products {
	clear:both;
}

section.products.fixed {
	padding-top:37px;
}


section.products .woocommerce-info {
	padding:20px 0px 10px;
}