:root {
	--ev-color--brand-one: #3CAA28;
	--ev-color--brand-two: hwb(112 92% 2%);
	--ev-color--brand-three: #3DBED9;
	--ev-color--brand-four: #fdea52;
	--ev-color--brand-five: #20134A;;
	--ev-color--table-border: #ccc;
	--ev-color--light-grey: #f6f6f6;
	--ev-color--white: #ffffff;
	--ev-color--black: #000000;
	--ev-font-color: #555;
	--ev-width--content: 1500px;
	--ev-padding--block-vertical: 60px 0;
	--ev-padding--block-horizontal: 0 20px;
	--ev-padding--block-header: 10px 20px;
	--ev-padding--block: 60px 20px;
	--ev-padding--block-xl: 80px 20px;
	--ev-spacing--large: 60px;
	--ev-spacing--small: 20px;
	--ev-font-size--h2: 65px;
	--ev-font-size--introduction-description: 24px;
	
}

/* $white: #fff;
$black: #000000;
$grey: #555555;
$blue: #3DBED9;
$green: #3CAA28;
$yellow: #fdea52;
$light-grey: #F6F6F6;
$dark-blue: #20134A; */
@font-face {
	font-family: 'MyWebFontRegular';
	src: url("../fonts/BebasNeueRegular.woff2") format("woff2"), url("../fonts/BebasNeueRegular.woff") format("woff");
	font-weight: 500;
	font-style: normal;
}

@font-face {
	font-family: 'MyWebFontRegular';
	src: url("../fonts/BebasNeue-Thin.woff2") format("woff2"), url("../fonts/BebasNeue-Thin.woff") format("woff");
	font-weight: 100;
	font-style: normal;
}

@font-face {
	font-family: 'MyWebFontRegular';
	src: url("../fonts/BebasNeueBook.woff2") format("woff2"), url("../fonts/BebasNeueBook.woff") format("woff");
	font-weight: 400;
	font-style: normal;
}

@font-face {
	font-family: 'MyWebFontRegular';
	src: url("../fonts/BebasNeueLight.woff2") format("woff2"), url("../fonts/BebasNeueLight.woff") format("woff");
	font-weight: 300;
	font-style: normal;
}

@font-face {
	font-family: 'MyWebFontRegular';
	src: url("../fonts/BebasNeueBold.woff2") format("woff2"), url("../fonts/BebasNeueBold.woff") format("woff");
	font-weight: 700;
	font-style: normal;
}

@font-face {
	font-family: 'MyTextFont';
	src: url("../fonts/proximanova-light-webfont.woff2") format("woff2"), url("../fonts/proximanova-light-webfont.woff") format("woff");
	font-weight: 200;
	font-style: normal;
}

@font-face {
	font-family: 'MyTextFont';
	src: url("../fonts/proximanova-regular-webfont.woff2") format("woff2"), url("../fonts/proximanova-regular-webfont.woff") format("woff");
	font-style: normal;
}

html {
	margin: 0px;
	width: 100%;
	height: 100%;
	scroll-behavior: smooth;
}

body {
	margin: 0px;
	width: 100%;
	height: auto;
	overflow-x: hidden;
	font-weight: 400;
	color: #555;
	font-size: 18px;
	font-family: MyTextFont;
	visibility: hidden;
	animation: 0.5s fadein ease-in 1s forwards;
	-moz-animation: 0.5s fadein ease-in 1s forwards;
	/* Firefox */
	-webkit-animation: 0.5s fadein ease-in 1s forwards;
	/* Safari and Chrome */
	-o-animation: 0.5s fadein ease-in 1s forwards;
	/* Opera */
}

* {
	line-height: 1.3;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-font-smoothing: antialiased;
}

*:focus {
	outline: none;
}

b,
strong {
	font-weight: 700;
}

i {
	font-style: italic;
}

b i {
	font-style: italic;
	font-weight: 700;
}

a {
	text-decoration: none;
	color: #555;
}

a:hover {
	text-decoration: none;
	color: var(--ev-color--brand-one);
}

.hide {
	display: none;
}

h1 {
	font-family: MyWebFontRegular;
	font-weight: 700;
	font-size: 60px
}

h2 {
	font-family: MyWebFontRegular;
	font-weight: 700;
	font-size: 45px
}

h3 {
	font-family: MyWebFontRegular;
	font-weight: 500;
	font-size: 40px
}

h4 {
	font-family: MyWebFontRegular;
	font-weight: 500;
	font-size: 35px
}

h5 {
	font-family: MyWebFontRegular;
	font-weight: 500;
	font-size: 30px
}

h6 {
	font-family: MyWebFontRegular;
	font-weight: 500;
	font-size: 25px
}

.animate {
	visibility: hidden;
}

.animated {
	-webkit-animation-duration: 0.8s;
	animation-duration: 0.8s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}

.noscroll {
	overflow: hidden;
}

section {
	position: relative;
	height: auto;
}

.section-content {
	max-width: 1500px;
	margin: auto;
	padding: 20px;
}
.section-content-wrap{
	padding: var(--ev-padding--block-horizontal);
}
.black {
	color: #000000;
}

.grey {
	color: #555555;
}

.white {
	color: #fff;
}

.green {
	color: var(--ev-color--brand-one);
}

.blue {
	color: #3DBED9;
}

.yellow {
	color: #fdea52;
}

.darkblue {
	color: #20134A;
}

.black-bg {
	background-color: #000000 !important;
}

.grey-bg {
	background-color: #555555 !important;
}

.white-bg {
	background-color: #fff !important;
}

.green-bg {
	background-color: var(--ev-color--brand-one) !important;
}

.blue-bg {
	background-color: #3DBED9 !important;
}

.yellow-bg {
	background-color: #fdea52 !important;
}

.lightgrey-bg {
	background-color: #F6F6F6 !important;
}

.darkblue-bg {
	background-color: #20134A !important;
}

.border-yellow {
	border-color: #fdea52 !important;
}

.border-blue {
	border-color: #3DBED9 !important;
}

.border-green {
	border-color: var(--ev-color--brand-one) !important;
}

.border-black {
	border-color: #000000 !important;
}

.border-darkblue {
	border-color: #20134A !important;
}
/* Margin Top Classes */
.margin-top-default {
    margin-top: 120px; /* Default value, adjust as needed */
}

.margin-top-none {
    margin-top: 0 !important;
}

.margin-top-small {
    margin-top: 60px !important;
}

.margin-top-large {
    margin-top: 120px !important;
}

/* Margin Bottom Classes */
.margin-bottom-default {
    margin-bottom: 120px !important; /* Default value, adjust as needed */
}


.margin-bottom-none {
    margin-bottom: 0 !important;
}

.margin-bottom-small {
    margin-bottom: 60px !important;
}

.margin-bottom-large {
    margin-bottom: 120px !important;
}

@media (max-width: 781px){
	.margin-top-large {
		margin-top: 60px !important;
	}
	.margin-bottom-large {
		margin-bottom: 60px !important;
	}
	.wp-block-columns > .wp-block-column:nth-of-type(2) > :first-child.margin-top-large {
		margin-top: 0 !important; /* or whatever you want */
	}
	
}
/* underline styling */
.underline {
    position: relative;
    bottom: 0;
    width: 150px;
    height: 10px;
    background-color: #ccc; /* Defaults to text color */
}

.underline.brand-one {
    background-color: var(--ev-color--brand-one);
}

.underline.brand-two {
    background-color: var(--ev-color--brand-two);
}

.underline.brand-three {
    background-color: var(--ev-color--brand-three);
}

.underline.brand-four {
    background-color: var(--ev-color--brand-four);
}

.underline.brand-five {
    background-color: var(--ev-color--brand-five);
}

.underline.table-border {
    background-color: var(--ev-color--table-border);
}

.underline.light-grey {
    background-color: var(--ev-color--light-grey);
}

.underline.white {
    background-color: var(--ev-color--white);
}

.underline.black {
    background-color: var(--ev-color--black);
}

.underline.font-color {
    background-color: var(--ev-font-color);
}
.wpcf7-form-control.wpcf7-submit, .single_add_to_cart_, .button, .button-green, .button-blue, .button-white, .button-dark-blue {
    border-radius: 0px !important;
	border: 0 !important;
	padding: 12px 40px 12px !important;
	font-size: 24px !important;
	line-height: 24px !important;
	text-transform: uppercase;
	transition: all 0.2s;
    letter-spacing: 1px;
	transition: all 0.2s;
    letter-spacing: 1px;
	font-family: MyWebFontRegular !important;
    font-weight: 500 !important;
    text-align: center;
	max-width: -webkit-fit-content !important;
	max-width: -moz-fit-content !important;
	max-width: fit-content !important;
	min-width: 180px;
	-webkit-transition: all 0.2s;
	border: none;
	display: block;
	position: relative;
	color: var(--ev-color--white);
}
a.edit,
.button-green {
	background: var(--ev-color--brand-one);
	color: #fff;
}


a.edit:hover,
.button-green:hover {
	background: #3DBED9;
	cursor: pointer;
	color: #fff;
}

.button-blue{
	padding: 10px 20px 10px !important;
	background: #3DBED9;
	font-size: 16px !important;
	line-height: 20px !important;
}
.button-white{
	border: 2px solid var(--ev-color--white);
    background-color: transparent;
}
.button-dark-blue{
	border: 0;
	background-color: var(--ev-color--brand-five);
	color: var(--ev-color--brand-four);
}
.button-blue:hover {
	background: var(--ev-color--brand-one);
	cursor: pointer;
	color: var(--ev-color--white);
}
.button-white:hover{
	border-color: var(--ev-color--brand-three);
	cursor: pointer;
	color: var(--ev-color--brand-three);
}
.button-dark-blue:hover{
	cursor: pointer;
	color: var(--ev-color--white);
	background-color: var(--ev-color--brand-three);
}
.mobile-contact-btn .button-dark-blue{
	margin: 50px auto;
}
.evblocks-form-panel__right-column input.wpcf7-submit{
	margin-left: 0 !important;
}
.wpcf7-form .wpcf7-form-control-wrap input, .wpcf7-form .wpcf7-form-control-wrap textarea{
	border: 0;
}
/* ---------------------------------------------- /*
   * Pagination
  /* ---------------------------------------------- */
.pagination {
	clear: both;
	padding: 20px 0;
	position: relative;
	font-size: 12px;
	line-height: 12px;
	text-align: center;
}

.pagination div,
.page-numbers {
	position: relative;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	margin: 3px;
	text-decoration: none;
	width: auto;
	color: #fff;
	background: #3DBED9;
	border-radius: 50%;
	width: 30px;
	height: 30px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.pagination .number,
.page-numbers .number {
	position: absolute;
}

.page-numbers.dots {
	top: -20px;
}

.pagination div:hover,
.page-numbers:hover {
	color: #fff;
	background: #3DBED9;
}

.pagination .current,
.page-numbers.current {
	background: #3DBED9;
	color: #fff;
}

.pagination-arrows {
	margin: 3px;
	text-decoration: none;
	width: auto;
	color: #555 !important;
	background: transparent !important;
	border-radius: 50%;
	width: 30px;
	height: 30px;
	font-size: 30px;
}

.pagination-arrows:hover {
	color: var(--ev-color--brand-one) !important;
}

.animsition-overlay-slide {
	position: fixed;
	z-index: 110 !important;
	background-color: #ddd;
}

/* ---------------------------------------------- /*
   * Owl Carousel
  /* ---------------------------------------------- */
.carousel-wrap {
	width: 100%;
	margin: 0 auto 0;
	position: relative;
}

.owl-carousel {
	position: relative;
	margin: auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.owl-carousel .owl-item {
	position: relative;
	display: block;
	float: left;
	height: 100%;
}

.owl-carousel .owl-item .item {
	position: relative;
	display: block;
	height: 100%;
	width: 100%;
}

.owl-nav {
	position: absolute;
	width: 100%;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
}

.owl-nav.disabled,
.owl-dots.disabled {
	display: none;
}

.owl-nav button {
	position: absolute;
	background: none;
	border: 0;
	color: #aaa;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
}

.owl-prev {
	left: 0px;
}

.owl-next {
	right: 0px;
}

.owl-dots {
	width: 100%;
	text-align: center;
}

.owl-dot {
	width: 10px;
	height: 10px;
	border: 0;
	margin: 5px;
	border-radius: 50%;
	padding: 0;
}

/* ---------------------------------------------- /*
   * Header
  /* ---------------------------------------------- */
header {
	position: -webkit-sticky;
	position: sticky;
	top: 0;
	z-index: 100;
	width: 100%;
	background-color: #fff;
}

#logo {
	position: relative;
	margin: 44px 0 0px;
    height: 66px;
	width: -webkit-fit-content;
	width: fit-content;
	width: -moz-fit-content;
	top: 0px;
}

#logo img {
	height: 100%;
	width: 100%;
	max-width: 188px;
}
/* @media(max-width: 500px) {
	width: 100px;
} */
.header-container {
	position: relative;
	max-width: 1500px;
	margin: 0px auto;
	padding: 8px 15px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.country-selector {
	display: none;
}

.quick-nav {
	padding-left: 20px;
	border-left: 1px solid var(--ev-color--brand-one);
	top: 0;
	position: relative;
}

.account-icon {
	position: relative;
	top: 0px;
	font-size: 20px;
	margin: 0 20px 0 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.account-icon a {
	color: #3DBED9;
}

.account-icon a:hover {
	color: var(--ev-color--brand-one);
}

.cart-icon {
	position: relative;
	top: 0px;
	font-size: 20px;
	color: #3DBED9;
	margin: 0 20px 0 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.cart-icon a {
	color: #3DBED9;
}

.cart-icon a:hover {
	color: var(--ev-color--brand-one);
}

.cart-icon a:hover .header-cart-count {
	background-color: var(--ev-color--brand-one);
}

.cart-icon .header-cart-count {
	position: absolute;
	padding: 3px 7px;
	font-size: 11px;
	top: -10px;
	right: -12px;
	background-color: #3DBED9;
	border-radius: 50%;
	color: #fff;
}

.contact-btn {
	top: -2px;
	position: relative;
}

.contact-btn a {
	font-size: 16px;
	line-height: 20px;
	min-width: 120px;
	color: #fff;
}

/* ---------------------------------------------- /*
   * Menu
  /* ---------------------------------------------- */
.nav-wrap {
	position: absolute;
	top: 50%;
	right: 0;
	padding: 0;
	margin: 0;
	list-style: none;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
	z-index: 102;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	margin: 0 20px;
}

.nav-wrap ul {
	padding: 0;
	margin: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.nav-wrap ul li {
	list-style: none;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
}

.main-menu {
	padding: 0;
}

.main-menu li {
	list-style: none;
	display: inline;
	margin: 0 20px 0 0;
}

.main-menu > li a {
	color: #555;
	font-size: 22px;
	font-weight: 500;
	letter-spacing: 1px;
	-webkit-transition: all 0.1s;
	transition: all 0.1s;
	font-family: MyWebFontRegular;
	border-bottom: 1px solid transparent;
	padding: 5px 0 0 0;
}

.main-menu li a:hover {
	color: #3DBED9;
	border-bottom: 1px solid #3DBED9;
}

.main-menu .current-menu-item > a,
.main-menu .current-page-ancestor a,
.main-menu .current-post-ancestor a {
	color: #3DBED9 !important;
	border-bottom: 1px solid #3DBED9 !important;
}

/* --------------------------------
   1) Hide Submenus by Default
-------------------------------- */
.main-menu li ul{
	display: none;
	position: absolute;
	left: 0;
	top: 100%;
	background: #fff;
	padding: 0.5rem 1rem;
	min-width: 220px;
	z-index: 9999;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  }
  .mobile-menu li ul{
	display: none;
  }
  
  /* Ensures nested submenus are also positioned correctly */
  .main-menu li ul li ul, .mobile-menu li ul li ul  {
	left: 100%;
	top: 0;
  }
  
  /* --------------------------------
	 2) Menu Parent Positioning
  -------------------------------- */
  .main-menu li, .mobile-menu li {
	position: relative; /* needed for absolutely positioned submenus */
  }
  
  /* --------------------------------
	 3) Visual Indicator for Items With Submenus
  -------------------------------- */
  .menu-item-has-children > a::after {
	content: "\f107"; /* down arrow from Font Awesome (if you’re using FA) */
	font-family: 'Font Awesome 5 Free';
	font-weight: 600;
	font-size: 12px;
	display: inline-block;
	margin-left: 4px;
	transition: transform 0.2s ease;
  }
  
  /* When submenu is open, rotate the arrow (optional) */
  .menu-item-has-children.open > a::after {
	transform: rotate(180deg);
  }
  
  /* --------------------------------
	 4) Basic Styling Example
  -------------------------------- */
  .main-menu,  .mobile-menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex; /* Or whatever layout you need */
  }
  
  .main-menu li,  .mobile-menu li {
	margin: 0 1rem;
  }
  
  .main-menu li a, .mobile-menu li a{
	text-decoration: none;
	color: #333;
	display: block;
	padding: 0.5rem;
  }
  
  /* You might also want to handle basic hover for desktop
  @media (hover: hover) {
	.main-menu li:hover > ul, .mobile-menu li:hover > ul {
	  display: block;
	}
  }
   */

#menu-wrap {
	position: fixed;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	z-index: 100;
	background: var(--ev-color--brand-one);
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
	overflow: auto;
}

#menu-wrap h3 {
	color: #fff;
	font-weight: 300;
	font-size: 25px;
}

.menu-slide {
	left: 0 !important;
}

.inner-menu-wrap {
	text-align: center;
	display: none;
}

.mobile-menu {
	padding: 0;
	display: none;
}

.mobile-menu li {
	position: relative;
	list-style: none;
	margin: 0;
	padding: 10px;
	text-align: center;
	left: 100px;
	opacity: 0;
}

.mobile-menu li a {
	position: relative;
	font-weight: 500;
	color: var(--ev-color--white);
	list-style: none;
	font-size: 45px;
	padding: 10px;
	letter-spacing: 1px;
	-webkit-transition: all 0.2s;
	transition: all 0.2s;
	font-family: MyWebFontRegular;
}
.mobile-menu li .sub-menu li a {
    font-size: 30px;
}
.mobile-menu li a:hover {
	color: #20134A;
	/* border-bottom: 1px solid #20134A; */
}

.mobile-menu li .sub-menu {
	padding: 0;
}

.mobile-menu li .sub-menu li {
	padding: 0;
}

.mobile-menu .current-menu-item a,
.mobile-menu .current-page-ancestor a,
.mobile-menu .current-post-ancestor a {
	color: #20134A !important;
	/* border-bottom: 1px solid #20134A !important; */
}

#nav-icon {
	width: 53px;
	height: 53px;
	position: relative;
	z-index: 10;
	padding: 0;
	margin: 0;
	border-radius: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
	/* border: 2px solid var(--ev-color--brand-one); */
	display: none;
}

.nav-icon {
	width: 50%;
	height: 25px;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: rotate(0deg) translate(-50%, -50%);
	transform: rotate(0deg) translate(-50%, -50%);
	-webkit-transition: .5s ease-in-out;
	transition: .5s ease-in-out;
	cursor: pointer;
	z-index: 10;
}

#nav-icon span {
	display: block;
	position: absolute;
	height: 2px;
	width: 100%;
	background-color: var(--ev-color--brand-one);
	border-radius: 9px;
	opacity: 1;
	left: 0;
	-webkit-transform: rotate(0deg) translate(0, -50%);
	transform: rotate(0deg) translate(0, -50%);
	-webkit-transition: .25s ease-in-out;
	transition: .25s ease-in-out;
}

#nav-icon span:nth-child(1) {
	top: 4px;
}

#nav-icon span:nth-child(2),
#nav-icon span:nth-child(3) {
	top: 12px;
}

#nav-icon span:nth-child(4) {
	top: 20px;
}

/* #nav-icon.open {
	border: 2px solid #fff;
} */

#nav-icon.open span {
	background-color: #fff !important;
}

#nav-icon.open span:nth-child(1) {
	top: 10px;
	width: 0%;
	left: 50%;
}

#nav-icon.open span:nth-child(2) {
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

#nav-icon.open span:nth-child(3) {
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

#nav-icon.open span:nth-child(4) {
	top: 10px;
	width: 0%;
	left: 50%;
}

.page-banner {
	position: relative;
	height: 200px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: left;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: start;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}
.page-banner .evblocks__container {
    position: relative;
    z-index: 1;
}
.page-banner h1 {
	font-size: 60px;
	color: #fff;
	z-index: 1;
	padding: 20px 0px;
}
.page-template-template-store .page-banner h1,
.page-template-template-news .page-banner h1
{
	padding: var(--ev-padding--block-horizontal);
}
.page-banner::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
}

/* ---------------------------------------------- /*
   * Products
  /* ---------------------------------------------- */
.product-wrap {
	position: relative;
	max-width: 100% !important;
	margin: auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	padding: 50px;
}

.product-wrap ul {
	padding: 0 0 0 15px;
	margin: 0;
}

.product-wrap h3 {
	margin-bottom: 0;
}

.product-banner-grid {
	position: relative;
	-ms-grid-columns: 50% 50%;
	grid-template-columns: 50% 50%;
	grid-gap: 0;
	padding: 0;
	max-width: 100%;
}

.product-banner-grid h1 {
	font-size: 2.5em;
	margin-top: 0;
	margin-bottom: 0;
}

.product-banner-grid img {
	width: 100%;
	height: auto;
}

.product-banner-grid .single-product-content {
	padding: 0 0 0 60px;
}

.product-banner-grid .single-product-content .information {
	margin: 20px 0;
}

.product-banner-grid .single-product-content .information h2 {
	margin-bottom: 5px;
}

.product-banner-grid .single-product-content h2 {
	margin-bottom: 0;
}

.product-size-grid {
	-ms-grid-columns: (1fr)[2];
	grid-template-columns: repeat(2, 1fr);
	padding: 0;
	margin-bottom: 40px;
	grid-gap: 10px 0;
}

.product-size-grid .grid-item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.product-size-grid .grid-item img {
	width: 40px;
	padding-right: 10px;
}

.product-image {
	position: relative;
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: (1fr)[2];
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 30px 4%;
}

.product-image .image-gallery-item {
	position: relative;
	font-size: 0;
	padding-top: 100%;
}

.product-image .image-gallery-item img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.product-image .image-gallery-item:first-child {
	padding-top: 70%;
	-ms-grid-column: 1;
	grid-column-start: 1;
	grid-column-end: 3;
}

.product-image .image-gallery-item:first-child img {
	-o-object-fit: contain;
	object-fit: contain;
}

.product-grid {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: (1fr)[3];
	grid-template-columns: repeat(3, 1fr);
	padding: 10px 5%;
	max-width: 1500px;
	margin: 50px auto;
}

.product-grid img {
	width: 100%;
	height: auto;
}

.product-grid h3 {
	font-size: 30px;
}

.product-grid .catalogue-image {
	position: relative;
	width: 100%;
	padding-top: 100%;
}

.product-grid .catalogue-image img {
	position: absolute;
	top: 0;
	left: 0;
	-o-object-fit: contain;
	object-fit: contain;
	width: 100%;
	height: 100%;
}

.product-info,
.supplier-form {
	will-change: min-height;
	margin: 0;
}

.product-info-wrap,
.supllier-form-wrap {
	-webkit-transform: translate(0, 0);
	transform: translate(0, 0);
	/* For browsers don't support translate3d. */
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	will-change: position, transform;
}

.imageview {
	z-index: 108 !important;
}

#map {
	min-height: 900px;
	width: 100%;
}

#map h3, #map h4 {
	margin: 0;
}

.company-info-grid {
	position: relative;
	-ms-grid-columns: 56% 40%;
	grid-template-columns: 56% 40%;
	grid-gap: 50px 4%;
	padding: 0;
	max-width: 100%;
}

.company-info-grid h1 {
	margin: 0;
}

.company-info-grid .grid-item {
	height: auto;
}

.company-info-grid .grid-item h4 {
	margin: 20px 0 0;
}

.company-info-grid .grid-item .comp-logo {
	margin: 30px 0;
}

.company-info-grid .grid-item .comp-logo img {
	width: 100%;
	height: auto;
}

/* ---------------------------------------------- /*
   * Blog + Locations
  /* ---------------------------------------------- */
.post-grid {
	max-width: 1500px;
	padding: 50px;
	margin: auto;
	-ms-grid-columns: 30% 64%;
	grid-template-columns: 30% 64%;
	border-bottom: 2px solid #F6F6F6;
}

.post-grid:last-child {
	border-bottom: 0;
}

.post-grid .post-img img {
	width: 100%;
	height: auto;
}

.post-grid .post-wrap h3 {
	margin-top: 0;
	margin-bottom: 0;
}

.section-blog-wrap {
	padding: 10px;
}

.post-tiles:hover a.button-green {
	background: #3DBED9;
}

.location-grid {
	margin: 0;
	padding: 0;
}

.location-grid .store-info {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	font-size: 18px;
	height: 100%;
	-webkit-box-shadow: 0px 5px 20px #ccc;
	box-shadow: 0px 5px 20px #ccc;
}

.location-grid .store-info ul {
	padding: 20px;
	background-color: #F6F6F6;
	margin: 0;
	height: 100%;
}

.location-grid .store-info ul li {
	list-style: none;
	margin-bottom: 5px;
}

.location-grid .store-info h3 {
	font-size: 25px;
	margin: 0;
	background-color: #20134A;
	color: #fff;
	padding: 20px 20px 15px;
}

.location-grid .store-info a {
	color: #20134A;
	font-weight: bold;
}

.location-grid .store-info a:hover {
	color: var(--ev-color--brand-one);
}

.supplier-contact h3 {
	margin: 0;
}
#map .gm-style-iw-chr button{
	position: absolute !important;
	right: 0;
}
#map .store-info{
	text-align:center;
}
/* ---------------------------------------------- /*
   * Footer
  /* ---------------------------------------------- */
.mib-wrap {
	text-align: center;
}

.mib-wrap .mib {
	position: relative;
	margin: auto;
	width: 140px;
	height: 140px;
	padding: 20px;
}

.get-in-touch {
	background: #20134A;
	padding: 6em 0px;
	position: relative;
}

.get-in-touch h4 {
	font-size: 30px;
	color: var(--ev-color--brand-one);
	text-align: center;
}

.get-in-touch p {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 1fr 1fr;
	grid-template-columns: 1fr 1fr;
	grid-row-gap: 10px;
	grid-column-gap: 10px;
}

.get-in-touch .scroll-top {
	position: absolute;
	left: 0px;
	right: 0px;
	top: 5%;
	color: #ffffff;
	text-align: center;
	font-size: 2em;
}

.get-in-touch .container {
	max-width: 800px;
	margin: auto;
}

.get-in-touch .form p span:nth-child(1) {
	-ms-grid-column: 1;
	-ms-grid-column-span: 1;
	grid-column: 1/2;
}

.get-in-touch .form p span:nth-child(2) {
	-ms-grid-column: 2;
	grid-column: 2/2;
}

.get-in-touch .form p span:nth-child(3),
.get-in-touch .form p span:nth-child(4) {
	-ms-grid-column: 2;
	-ms-grid-column-span: 2;
	grid-column: span 2;
}

.get-in-touch .form p span input,
.get-in-touch .form p span textarea {
	width: 100%;
	background: rgba(255, 255, 255, 0.2);
	padding: 18px 15px;
	border: none 0px;
	letter-spacing: 1px;
	color: #ffffff;
	font-family: MyTextFont;
	font-size: 18px;
	line-height: 18px;
	border-radius: 3px;
}

.get-in-touch .form textarea {
	height: 6em;
	overflow: auto;
	resize: unset;
}

.get-in-touch .form p input[type="submit"] {
	-ms-grid-column: 1;
	-ms-grid-column-span: 2;
	grid-column: 1/3;
	background: var(--ev-color--brand-one);
	border: 0px none;
	color: #ffffff;
	padding: 18px 0;
	font-size: 20px;
	line-height: 20px;
	font-family: MyWebFontRegular;
	letter-spacing: 1px;
	-webkit-transition: all 0.2s;
	transition: all 0.2s;
	border-radius: 3px;
	font-weight: 500;
}

.get-in-touch .form p input[type="submit"]:hover {
	cursor: pointer;
	background: #3DBED9;
}

.get-in-touch ::-webkit-input-placeholder {
	color: #fff;
	font-weight: 500;
	font-family: MyWebFontRegular;
}

.get-in-touch :-ms-input-placeholder {
	color: #fff;
	font-weight: 500;
	font-family: MyWebFontRegular;
}

.get-in-touch ::-ms-input-placeholder {
	color: #fff;
	font-weight: 500;
	font-family: MyWebFontRegular;
}

.get-in-touch ::placeholder {
	color: #fff;
	font-weight: 500;
	font-family: MyWebFontRegular;
}

footer {
	position: relative;
	background-color: #fff;
	color: #fff;
	padding: 1em 0px;
}

footer .grid-2 {
	-ms-grid-columns: auto auto;
	grid-template-columns: auto auto;
}

footer .grid-2 .grid-item:nth-child(2) {
	text-align: right;
}

footer .grid-2 .grid-item:nth-child(2) li {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

footer ul {
	padding: 0;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
}

footer li {
	list-style: none;
	display: inline-block;
}

footer .footer-inner {
	margin: 0 auto;
	max-width: 1500px;
	width: 100%;
}

footer .footer-inner li {
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
}

footer .footer-menu {
	padding: 0;
}

footer .footer-menu li {
	display: inline-block;
	margin: 10px;
}

footer .footer-menu li:last-child {
	margin-right: 0;
}

footer .footer-menu a {
	font-family: MyWebFontRegular;
	font-size: 16px;
	line-height: 20px;
	font-weight: 500;
	-webkit-transition: all 0.2s;
	transition: all 0.2s;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
}

footer .footer-menu a:hover {
	color: var(--ev-color--brand-one);
}

footer .footer-logo {
	height: 48px;
	padding: 0 10px;
}

footer .footer-logo img {
	height: 100%;
	width: auto;
}

footer .social-wrap {
	margin-left: 30px;
	padding-left: 20px;
	color: #555;
	border-left: 1px solid var(--ev-color--brand-one);
}

footer .social-wrap li {
	padding: 10px;
}

footer .social-wrap a {
	font-size: 22px;
}

footer .social-wrap a:hover {
	color: var(--ev-color--brand-one);
}

#country {
	position: relative;
	padding-left: 0px;
	background-color: #fff;
	width: 100%;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

#country li {
	list-style: none;
	padding-top: 5px;
	padding-bottom: 5px;
	width: 100%;
}

#country li img {
	margin: 6px 5px;
}

#country li:hover {
	background-color: #F4F3F3;
}

#country img,
.btn-select img {
	position: absolute;
	width: 20px;
	height: auto;
}

.btn-select img {
	top: 11px;
}

#country li span,
.btn-select li span {
	margin-left: 30px;
	font-size: 16px;
}

.country-select-wrap {
	display: none;
	position: absolute;
	top: 100%;
	width: 100%;
	max-width: 350px;
	-webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
	border: none;
	background-color: #fff;
}

.country-select-wrap:hover {
	cursor: pointer;
}

.open {
	display: show !important;
}

.btn-select {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 100%;
	max-width: 350px;
	height: 34px;
	background-color: transparent;
	border: none;
}

.btn-select li {
	list-style: none;
	padding-bottom: 0px;
}

.btn-select:hover li {
	margin-left: 0px;
}

.btn-select:hover {
	cursor: pointer;
}

.lang-select {
	position: relative;
	margin-bottom: 15px;
	z-index: 1;
}

.down-arrow {
	margin-left: 5px;
	font-size: 18px;
}

.social-icon-ss a {
	margin: 0 5px;
}

.social-icon-ss a:first-child {
	margin-left: 0;
}

/* ---------------------------------------------- /*
   * CONTACT PAGE ===== Contact Form
  /* ---------------------------------------------- */
.wpcf7-form textarea.wpcf7-form-control,
.wpcf7-form input.wpcf7-form-control,
#request-price-form input {
	font-family: MyTextFont;
	font-size: 1em;
	padding: 15px 15px 10px;
	width: 100%;
	margin-bottom: 10px;
}
span.wpcf7-list-item.first {
    margin-left: 0;
}
.wpcf7-form textarea.wpcf7-form-control::-webkit-input-placeholder,
.wpcf7-form input.wpcf7-form-control::-webkit-input-placeholder,
.wpcf7-form textarea.wpcf7-form-control:-ms-input-placeholder,
.wpcf7-form input.wpcf7-form-control:-ms-input-placeholder,
.wpcf7-form textarea.wpcf7-form-control::-ms-input-placeholder,
.wpcf7-form input.wpcf7-form-control::-ms-input-placeholder,
.wpcf7-form textarea.wpcf7-form-control::placeholder,
.wpcf7-form input.wpcf7-form-control::placeholder {
	font-size: 20px;
}

.wpcf7-acceptance .wpcf7-list-item {
	margin: 0;
}

::-webkit-input-placeholder {
	/* Chrome, Firefox, Opera, Safari 10.1+ */
	color: #aaa;
	opacity: 1;
	/* Firefox */
}

:-ms-input-placeholder {
	/* Chrome, Firefox, Opera, Safari 10.1+ */
	color: #aaa;
	opacity: 1;
	/* Firefox */
}

::-ms-input-placeholder {
	/* Chrome, Firefox, Opera, Safari 10.1+ */
	color: #aaa;
	opacity: 1;
	/* Firefox */
}

::placeholder {
	/* Chrome, Firefox, Opera, Safari 10.1+ */
	color: #aaa;
	opacity: 1;
	/* Firefox */
}

:-ms-input-placeholder {
	/* Internet Explorer 10-11 */
	color: #aaa;
}

::-ms-input-placeholder {
	/* Microsoft Edge */
	color: #aaa;
}

/* ---------------------------------------------- /*
   * animation
  /* ---------------------------------------------- */
._form_hide {
	display: none;
	visibility: hidden;
}

._form_show {
	display: block;
	visibility: visible;
}

#_form_3_._form-top {
	top: 0;
}

#_form_3_._form-bottom {
	bottom: 0;
}

#_form_3_._form-left {
	left: 0;
}

#_form_3_._form-right {
	right: 0;
}

#_form_3_ input[type="text"],
#_form_3_ input[type="tel"],
#_form_3_ input[type="date"],
#_form_3_ textarea {
	width: 100%;
	padding: 18px 15px;
	border: 1px solid #aaa;
	letter-spacing: 1px;
	color: #111;
	font-family: MyTextFont;
	font-size: 18px;
	line-height: 18px;
	border-radius: 3px;
}

#_form_3_ textarea {
	resize: none;
}

/* #_form_3_ ._submit { -webkit-appearance:none; cursor:pointer; font-family:arial, sans-serif; font-size:14px; text-align:center; background:#1d1737 !important; border:0 !important; -moz-border-radius:4px !important; -webkit-border-radius:4px !important; border-radius:4px !important; color:#fff !important; padding:18px !important; } */
#_form_3_ ._close-icon {
	cursor: pointer;
	background-image: url("https://d226aj4ao1t61q.cloudfront.net/esfkyjh1u_forms-close-dark.png");
	background-repeat: no-repeat;
	background-size: 14.2px 14.2px;
	position: absolute;
	display: block;
	top: 11px;
	right: 9px;
	overflow: hidden;
	width: 16.2px;
	height: 16.2px;
}

#_form_3_ ._close-icon:before {
	position: relative;
}

#_form_3_ ._form-body {
	margin-bottom: 30px;
}

#_form_3_ ._form-image-left {
	width: 150px;
	float: left;
}

#_form_3_ ._form-content-right {
	margin-left: 164px;
}

#_form_3_ ._form-branding {
	color: #fff;
	font-size: 10px;
	clear: both;
	text-align: left;
	margin-top: 30px;
	font-weight: 100;
}

#_form_3_ ._form-branding ._logo {
	display: block;
	width: 130px;
	height: 14px;
	margin-top: 6px;
	background-image: url("https://d226aj4ao1t61q.cloudfront.net/hh9ujqgv5_aclogo_li.png");
	background-size: 130px auto;
	background-repeat: no-repeat;
}

#_form_3_ .form-sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}

#_form_3_ ._form-label,
#_form_3_ ._form_element ._form-label {
	font-weight: bold;
	margin-bottom: 5px;
	display: block;
}

#_form_3_._dark ._form-branding {
	color: #333;
}

#_form_3_._dark ._form-branding ._logo {
	background-image: url("https://d226aj4ao1t61q.cloudfront.net/jftq2c8s_aclogo_dk.png");
}

#_form_3_ ._form_element {
	position: relative;
	margin-bottom: 10px;
	font-size: 0;
	max-width: 100%;
}

#_form_3_ ._form_element * {
	font-size: 14px;
}

#_form_3_ ._form_element._clear {
	clear: both;
	width: 100%;
	float: none;
}

#_form_3_ ._form_element._clear:after {
	clear: left;
}

#_form_3_ ._form_element input[type="text"],
#_form_3_ ._form_element input[type="date"],
#_form_3_ ._form_element select,
#_form_3_ ._form_element textarea:not(.g-recaptcha-response) {
	display: block;
	width: 100%;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	font-family: inherit;
}

#_form_3_ ._field-wrapper {
	position: relative;
}

#_form_3_ ._inline-style {
	float: left;
}

#_form_3_ ._inline-style input[type="text"] {
	width: 150px;
}

#_form_3_ ._inline-style:not(._clear)+._inline-style:not(._clear) {
	margin-left: 20px;
}

#_form_3_ ._form_element img._form-image {
	max-width: 100%;
}

#_form_3_ ._form_element ._form-fieldset {
	border: 0;
	padding: 0.01em 0 0 0;
	margin: 0;
	min-width: 0;
}

#_form_3_ ._clear-element {
	clear: left;
}

#_form_3_ ._full_width {
	width: 100%;
}

#_form_3_ ._form_full_field {
	display: block;
	width: 100%;
	margin-bottom: 10px;
}

#_form_3_ input[type="text"]._has_error,
#_form_3_ textarea._has_error {
	border: #f37c7b 1px solid;
}

#_form_3_ input[type="checkbox"]._has_error {
	outline: #f37c7b 1px solid;
}

#_form_3_ ._error {
	display: block;
	position: absolute;
	font-size: 14px;
	z-index: 10000001;
}

#_form_3_ ._error._above {
	padding-bottom: 4px;
	bottom: 39px;
	right: 0;
}

#_form_3_ ._error._below {
	padding-top: 4px;
	top: 100%;
	right: 0;
}

#_form_3_ ._error._above ._error-arrow {
	bottom: 0;
	right: 15px;
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-top: 5px solid #f37c7b;
}

#_form_3_ ._error._below ._error-arrow {
	top: 0;
	right: 15px;
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-bottom: 5px solid #f37c7b;
}

#_form_3_ ._error-inner {
	padding: 8px 12px;
	background-color: #f37c7b;
	font-size: 14px;
	font-family: arial, sans-serif;
	color: #fff;
	text-align: center;
	text-decoration: none;
	border-radius: 4px;
}

#_form_3_ ._error-inner._form_error {
	margin-bottom: 5px;
	text-align: left;
}

#_form_3_ ._button-wrapper ._error-inner._form_error {
	position: static;
}

#_form_3_ ._error-inner._no_arrow {
	margin-bottom: 10px;
}

#_form_3_ ._error-arrow {
	position: absolute;
	width: 0;
	height: 0;
}

#_form_3_ ._error-html {
	margin-bottom: 10px;
}

.pika-single {
	z-index: 10000001 !important;
}

#_form_3_ input[type="text"].datetime_date {
	width: 69%;
	display: inline;
}

#_form_3_ select.datetime_time {
	width: 29%;
	display: inline;
	height: 32px;
}

#_form_3_ input[type="date"].datetime_date {
	width: 69%;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
}

#_form_3_ input[type="time"].datetime_time {
	width: 29%;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
}

@media all and (min-width: 320px) and (max-width: 667px) {
	::-webkit-scrollbar {
		display: none;
	}

	#_form_3_ {
		margin: 0;
		width: 100%;
		min-width: 100%;
		max-width: 100%;
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
	}

	#_form_3_ * {
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
		font-size: 1em;
	}

	#_form_3_ ._form-content {
		margin: 0;
		width: 100%;
	}

	#_form_3_ ._form-inner {
		display: block;
		min-width: 100%;
	}

	#_form_3_ ._form-title,
	#_form_3_ ._inline-style {
		margin-top: 0;
		margin-right: 0;
		margin-left: 0;
	}

	#_form_3_ ._form-title {
		font-size: 1.2em;
	}

	#_form_3_ ._form_element {
		margin: 0 0 20px;
		padding: 0;
		width: 100%;
	}

	#_form_3_ ._form-element,
	#_form_3_ ._inline-style,
	#_form_3_ input[type="text"],
	#_form_3_ label,
	#_form_3_ p,
	#_form_3_ textarea:not(.g-recaptcha-response) {
		float: none;
		display: block;
		width: 100%;
	}

	#_form_3_ ._row._checkbox-radio label {
		display: inline;
	}

	#_form_3_ ._row,
	#_form_3_ p,
	#_form_3_ label {
		margin-bottom: 0.7em;
		width: 100%;
	}

	#_form_3_ ._row input[type="checkbox"],
	#_form_3_ ._row input[type="radio"] {
		margin: 0 !important;
		vertical-align: middle !important;
	}

	#_form_3_ ._row input[type="checkbox"]+span label {
		display: inline;
	}

	#_form_3_ ._row span label {
		margin: 0 !important;
		width: initial !important;
		vertical-align: middle !important;
	}

	#_form_3_ ._form-image {
		max-width: 100%;
		height: auto !important;
	}

	#_form_3_ input[type="text"] {
		padding-left: 10px;
		padding-right: 10px;
		font-size: 16px;
		line-height: 1.3em;
		-webkit-appearance: none;
	}

	#_form_3_ input[type="radio"],
	#_form_3_ input[type="checkbox"] {
		display: inline-block;
		width: 1.3em;
		height: 1.3em;
		font-size: 1em;
		margin: 0 0.3em 0 0;
		vertical-align: baseline;
	}

	#_form_3_ button[type="submit"] {
		padding: 20px;
		font-size: 1.5em;
	}

	#_form_3_ ._inline-style {
		margin: 20px 0 0 !important;
	}
}

#_form_3_ ._form-title {
	font-size: 22px;
	line-height: 22px;
	font-weight: 600;
	margin-bottom: 0;
}

#_form_3_:before,
#_form_3_:after {
	content: " ";
	display: table;
}

#_form_3_:after {
	clear: both;
}

#_form_3_._inline-style {
	width: auto;
	display: inline-block;
}

#_form_3_._inline-style input[type="text"],
#_form_3_._inline-style input[type="date"] {
	padding: 10px 12px;
}

#_form_3_._inline-style button._inline-style {
	position: relative;
	top: 27px;
}

#_form_3_._inline-style p {
	margin: 0;
}

#_form_3_._inline-style ._button-wrapper {
	position: relative;
	margin: 27px 12.5px 0 20px;
}

#_form_3_ ._form-thank-you {
	position: relative;
	left: 0;
	right: 0;
	text-align: center;
	font-size: 18px;
}

@media all and (min-width: 320px) and (max-width: 667px) {
	#_form_3_._inline-form._inline-style ._inline-style._button-wrapper {
		margin-top: 20px !important;
		margin-left: 0 !important;
	}
}

#_form_3_ .iti.iti--allow-dropdown.iti--separate-dial-code {
	width: 100%;
}

#_form_3_ .iti input {
	width: 100%;
	height: 32px;
	border: #979797 1px solid;
	border-radius: 4px;
}

#_form_3_ .iti--separate-dial-code .iti__selected-flag {
	background-color: #fff;
	border-radius: 4px;
}

#_form_3_ .iti--separate-dial-code .iti__selected-flag:hover {
	background-color: rgba(0, 0, 0, 0.05);
}

#_form_3_ .iti__country-list {
	border-radius: 4px;
	margin-top: 4px;
	min-width: 460px;
}

#_form_3_ .iti__country-list--dropup {
	margin-bottom: 4px;
}

#_form_3_ .phone-error-hidden {
	display: none;
}

#_form_3_ .phone-error {
	color: #e40e49;
}

#_form_3_ .phone-input-error {
	border: 1px solid #e40e49 !important;
}

/* ANCHOR latest */
.section-content-wrap {
	max-width: 1500px;
	margin: auto;
}

.text-image-box .grid-text {
	padding: 0 30px 0 0;
}

.wpcf7-form input,
.wpcf7-form textarea {
	border: 1px solid #999;
}

.wpcf7-form .grid-2 {
	grid-gap: 0 4%;
}

.wpcf7-form p {
	margin: 6px 0;
}
.woocommerce-shipping-totals td{
	display: table-cell;
}
.woocommerce ul#shipping_method {
	margin-top: 30px;
}
.woocommerce ul#shipping_method li{
	justify-content: flex-end;
}
li.product .woocommerce-loop-product__title {
	min-height: 5em;
}
.evb-downloads{
    margin-top: 4rem;
}
.evb-downloads a{
	margin-right: 2rem;
}
@media (max-width:1100px){
	.evb-downloads a{
		margin-top: 1rem;
		display: block;
		width: 100%;
	}
}
.single-locations .company-info-grid .grid-item .comp-logo {
	margin: 0 0 30px 0;
}

.gm-style .store-info img {
	max-width: 200px;
}

.email-table td {
	vertical-align: top;
}
.video-container {       
	position: relative;      
	width: 100%;  

	padding-bottom: 56.25%; /* 16:9 aspect ratio */      
	height: 0;   
}   

@media only screen and (max-width: 768px) {
	.video-container{
		max-width: 95%;
		margin: 0 auto;
	}
}
.video-container iframe {       
	position: absolute;        
	top: 0;        
	left: 0;       
	width: 100%;        
	height: 100%;   
}
iframe{
	max-width: 100%;
    height: auto;
    aspect-ratio: 1.75;
}
@media only screen and (min-width: 768px) {
	.video-container iframe{
		max-width: calc(100% - 20px);
	}
}
/* ---------------------------------------------- /*
   * animation
  /* ---------------------------------------------- */
.UpandDown {
	-webkit-animation: MoveUpDown 1s infinite alternate;
	animation: MoveUpDown 1s infinite alternate;
}

@-webkit-keyframes MoveUpDown {
	from {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}

	to {
		-webkit-transform: translateY(-15px);
		transform: translateY(-15px);
	}
}

@keyframes MoveUpDown {
	from {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}

	to {
		-webkit-transform: translateY(-15px);
		transform: translateY(-15px);
	}
}

@keyframes fadein {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
		visibility: visible;
	}
}

/* Firefox < 16 */

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
		visibility: visible;
	}
}

/* Internet Explorer */

/* ---------------------------------------------- /*
   * Responsive
  /* ---------------------------------------------- */
@media only screen and (min-width: 0px) and (max-width: 768px) {
	#logo {
		margin-bottom: 0;
	}

	.account-icon {
		font-size: 25px;
		border: none;
	}

	.cart-icon {
		font-size: 25px;
	}

	.cart-icon .header-cart-count {
		top: 0;
	}

	.get-in-touch .form {
		padding: 0 10px;
	}

	.product-wrap {
		padding: 20px 15px;
	}

	.product-wrap .product-title {
		margin-top: 0;
		font-size: 40px;
	}

	.product-wrap .product-banner-grid {
		-ms-grid-columns: 100%;
		grid-template-columns: 100%;
	}

	.product-wrap .product-banner-grid .single-product-content {
		padding: 0;
	}

	.product-wrap .product-banner-grid .product-image {
		margin-bottom: 30px;
	}

	.product-wrap .product-info-wrap {
		position: relative !important;
		top: 0 !important;
		left: 0 !important;
		width: 100% !important;
		-webkit-transform: translate3d(0, 0, 0) !important;
		transform: translate3d(0, 0, 0) !important;
	}

	.product-grid,
	.company-info-grid,
	.post-grid {
		-ms-grid-columns: 100%;
		grid-template-columns: 100%;
	}

	.post-grid {
		padding: 30px 10px;
		grid-gap: 30px;
	}

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

	footer .grid-2 {
		-ms-grid-columns: 100%;
		grid-template-columns: 100%;
		grid-gap: 0;
	}

	footer .grid-2 ul {
		display: block;
	}

	footer .grid-2 ul li {
		margin: auto;
	}

	footer .grid-2 ul .social-wrap {
		margin-left: 0;
		padding-left: 0;
		border: none;
		margin: auto;
	}

	footer .grid-2 ul .social-wrap ul li {
		display: inline-block !important;
	}

	footer .footer-menu li {
		padding: 0.3em 0 !important;
	}

	footer .footer-menu li:last-child {
		margin: auto;
	}
}

@media only screen and (min-width: 0px) and (max-width: 1300px) {
	.nav-wrap ul {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		position: relative;
		z-index: 1;
	}

	#country {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}

	.lang-select {
		position: relative;
		z-index: 2;
		margin-bottom: 10px;
	}

	#nav-icon {
		display: block;
	}

	#main-menu,
	.contact-btn {
		display: none !important;
	}
	.quick-nav{
		border: none;
	}
}

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

	.contact-btn {
		display: none;
	}
}

/* ----------- tablets ----------- */
/* Portrait and Landscape */
/*# sourceMappingURL=styles.css.map */

/* ANCHOR Defaults */
.evblocks__block {
	padding: var(--ev-padding--block-xl);
}
.wp-block-group .evblocks__block{
	/* padding-top: var(--ev-spacing--small); */
}
.content-width,
.evblocks__container,
.woocommerce-notices-wrapper .woocommerce-message
 {
	max-width: var(--ev-width--content);
	margin: 0 auto;
	width: 100%;
}
.evblocks__container:not(.section-content-wrap){
	padding: var(--ev-padding--block);
}
header .evblocks__container{
	padding: var(--ev-padding--block-header) !important;
}
.page-template-template-store .evblocks__container:not(.section-content-wrap),
.page-template-template-news .evblocks__container:not(.section-content-wrap)
{
	padding: 0;
}
.evblocks__container.evblocks__container--no-vertical-space, 
.evblocks__container.evblocks__block,
.evblocks__block .evblocks__container:not(.evblocks-hero__container){
	padding: var(--ev-padding--block-horizontal);
}
.evblocks__container.evblocks__block .aligncenter{
	margin: var(--ev-spacing--large) auto;
}
.section-wrap{
	padding: var(--ev-padding--block-xl);
}
.section-wrap .section-content-wrap{
	/* padding: 0; */
}
.wp-block-group .section-wrap{
	/* padding: var(--ev-padding--block-vertical); */
}
.evblocks__container.evblocks__container--no-vertical-space .wp-block-heading{
	padding: var(--ev-spacing--large) 0 var(--ev-spacing--small);
	margin: 0;
}
/* ANCHOR Welcome page */
.footer-welcome,
.header-welcome {
	background-color: #20134A;
	color: #fff;
}

.header-welcome__logo-anchor {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 250px;
}

.header-welcome__site-title {
	font-size: 32px;
	color: #fff;
}

.header-welcome__page-title {
	font-size: 24px;
	text-align: center;
}


#map.welcome-map {
	display: none;
	max-height: 1200px;
}

.welcome-globe {
	display: block;
}

.welcome-globe__image {
	object-fit: cover;
	height: auto;
	max-width: 100%;
}

@media (min-width: 768px) {
	#map.welcome-map {
		display: block;
		height: 100vh;
		height: auto;
	}

	.welcome-globe {
		display: none;
	}
}

.footer-welcome a {
	color: #fff;
}

.footer-welcome__footer-wrapper {
	display: flex;
}

.footer-welcome__item {
	flex: 1;
	display: flex;
	justify-content: center;
	flex-direction: column;
}

.footer-welcome__social-links {
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

.footer-welcome__social-link {
	margin: 0 10px;
}

.footer-welcome ul.footer-menu__list {
	display: block;
	padding-left: 20px;
}

.footer-welcome .footer-menu__list li {
	display: list-item;
	list-style: disc;
}

.footer-welcome .footer-logo.footer-welcome__logo {
	display: flex;
	justify-content: center;
	align-self: center;
	height: auto;
}

.footer-welcome img.footer-welcome__logo-image {
	height: 100px;
	box-sizing: border-box;
}

.footer-welcome__social-links a .footer-welcome__icon {
	font-size: 1.1em;
	color: #feef00;
}

/* ANCHOR product information */

.product-information__table {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	background-color: var(--ev-color--table-border);
	gap: 1px;
}

.product-information__header {
	background: var(--ev-color--brand-one);
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
}
@media ( max-width: 600px ) {
	.product-information__header-inner{
		flex-flow: column;
		transform: scale(0.75);
	}
}

.product-information__header-inner {
	display: flex;
	justify-content: space-between;
	width: 100%;
	align-items: center;
}

@media ( min-width: 600px ) {
.product-information__inner {
	padding: 14px 30px;
}
}

.product-information__icon {
	width: 70px;
	height: auto;
	filter: invert(1);
	padding-left: 12px;
	align-self: center;
}

.product-information__table-column {
	width: calc(50% - 0.5px);
	/* border-bottom: solid 1px var(--ev-color--table-border); */
}

@media ( max-width: 600px ) {
	/* .product-information__table-column {
		border: solid 1px var(--ev-color--table-border);
	} */
}
.product-information__table-column:last-child {
	border-right: none;
}

.product-information__data {
	background: #fafafa;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 120px;
}
.product-information__header-inner h4 {
	margin: 0;
}
.product-information__data-inner {
	font-size: 24px;
	text-transform: lowercase;
}


@media (min-width: 768px) {
	.product-information__table,
	 {
			display: grid;
			grid-template-columns: repeat(2, 1fr);
			grid-template-rows: repeat(3, 1fr);
			grid-column-gap: 0px;
			grid-row-gap: 0px;
			} 

			.product-information__table-column {
				display: grid;
				grid-template-columns: repeat(2, 1fr);
				grid-template-rows: 1fr;
				grid-column-gap: 0px;
				grid-row-gap: 0px;
				}
				
				
}


/* ANCHOR Micromodal */

/**************************\
  Basic Modal Styles
\**************************/
.micromodal {
	display: none;
}

.micromodal.is-open {
	display: block;
}

.micromodal__overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	background: rgba(0, 0, 0, 0.65);
}

.micromodal__container {
	box-sizing: border-box;
	overflow-y: auto;
	max-width: 500px;
	max-height: 100vh;
	padding: 30px;
	background-color: #fff;
	border-radius: 4px;
}

.micromodal[aria-hidden="false"] .micromodal__overlay {
	animation: microModalFadeIn .2s cubic-bezier(0.0, 0.0, 0.2, 1);
}

.micromodal[aria-hidden="false"] .micromodal__container {
	animation: microModalSlideIn .2s cubic-bezier(0, 0, .2, 1);
}

.micromodal .micromodal__container,
.micromodal .micromodal__overlay {
	will-change: transform;
}

@keyframes microModalFadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@keyframes microModalSlideIn {
	from {
		transform: translateY(15%);
	}

	to {
		transform: translateY(0);
	}
}

.modal__container .wpcf7-form textarea.wpcf7-form-control, 
.modal__container .wpcf7-form input.wpcf7-form-control{
    border: 1px solid var(--ev-color--light-grey)
}
.modal__container .wpcf7-form input.wpcf7-form-control.wpcf7-submit{
    background-color: var(--ev-color--brand-one);
}

.welcome-map__container {
	position: relative;
}

.welcome-map__map {
	object-fit: cover;
	width: 100%;
	height: auto;
}

.welcome-map__marker {
	position: absolute;
	text-align: center;
	transform: translate(-50%, -50%);
}

.welcome-map__pin {
	height: 6vw;
	min-width: 35px;
	max-width: 68px;
}

.welcome-map__location-name {
	color: var(--ev-color--black);
    font-family: MyWebFontRegular;
    font-weight: 700;
    font-size: 22px;
    position: absolute;
    white-space: nowrap;
    left: -300px;
    /* transform: translateX(-50%); */
    top: 44%;
    text-align: right;
    min-width: 300px;
    display: block;
	/* bottom: -10px; */
}

.europe .welcome-map__location-name {
    left: -180px;
}

@media (min-width: 900px) {
	/* .welcome-map__location-name {
		font-size: 28px;
	} */
}

@media (min-width: 650px) {
	.welcome-map__location-name {
		display: block;
	}
}
@media (max-width: 649.98px) {
	.welcome-map__location-name {
		display: none;
	}
}

.uk-and-ireland {
	top: 25.6%;
	left: 46%;
}

.north-america {
	top: 30%;
	left: 22%;
}

.europe {
	top: 31%;
	left: 50%;
}
.france {
	top: 31%;
	left: 47%;
}
.australia {
	top: 75%;
	left: 88%;
}


@media (max-width: 767px) {
	.welcome-header__container {
		flex-wrap: wrap;
		justify-content: center;
	}
}

.welcome-header__title {
	display: flex;
	text-align: center;
	align-items: center;
	font-family: MyWebFontRegular;
	font-weight: 700;
	font-size: 36px;
	color: #fff;
	padding: 20px 0;
}

@media (min-width: 768px) {
	.welcome-header__title {
		margin-left: 80px;
	}
}

header.evblocks-banner__header {
	display: flex;
	background: transparent;
	align-items: center;
}
.evblocks-banner__subtitle {
	flex: 2;
	line-height: 0.4em;
}
@media (max-width: 768px) {
	header.evblocks-banner__header {
		flex-direction: column;
		text-align: center;
	}
	.evblocks-banner__subtitle {
		flex: 2;
		line-height: 1em;
		margin-top: 0;
	}
	.evblocks-banner__title {
		margin-bottom: 0;
	}
}
.evblocks-banner__image {
	width: 100%;
	object-fit: cover;
}
.single-product .product-hero-image {
    width: 100%;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    position: relative;
}
@media (max-width: 1600px) {
	.single-product .product-hero-image {
		min-height: 400px;
	}
	footer .footer-inner{
		margin-bottom: 4rem;
	}
}
@media (max-width: 800px) {
	.single-product .product-hero-image {
		min-height: 250px;
	}
}
@media (max-width: 450px) {
	.single-product .product-hero-image {
		min-height: 150px;
	}
}
.single-product .product-hero-image img {
    width: 100%;
    height: auto;
    display: none;
}
form.variations_form.cart{
	display: grid;
}
.request-quote-enabled .price,
.request-quote-enabled .login-for-prices-btn{
	display: none !important;
}
.
form.variations_form.cart .quantity .qty{
	max-width: 100px;
}
.request-price-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}
.close-request-price {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 1.5em;
    cursor: pointer;
}
.request-quote-enabled .single_add_to_cart_button {
    display: none !important;
}
#request-price-form{
	position: relative;
    background-color: white;
    padding: 3rem;
    border: 1px solid var(--ev-color--brand-three);
    border-radius: 5px;
	max-width: 500px; /* Optional: restrict max width */
    width: 100%; /* Ensure form takes the full width of its container */
}
#request-price-form h3{
	margin: 0;
}
#request-price-form input{
	border: 1px solid var(--ev-color--brand-three);
}
.request-quote-message{
	margin: 0;
}

button#request-price-button {
    clear: both;
}
.single-product .evblocks-fifty-fifty {
	padding: var(--ev-padding--block);
}
/* Apply grid layout to the table */
.variations {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    width: 100%;
	margin-bottom: 0 !important;
}

.variations .label, 
.variations .value, 
.variations tr {
    display: block;
    width: 100%;
}

.variations .label {
    font-weight: bold;
}

.variations .value select {
    width: 100%;
    box-sizing: border-box; /* Ensure padding and borders are included in the element's total width and height */
	font-weight: 400;
    color: #555;
    font-size: 18px;
    font-family: MyTextFont;
	border-color: #aaa;
}

.variations .reset_variations {
    display: block;
    margin-top: 5px;
    width: 100%;
    text-align: left; /* Ensure the reset link aligns properly */
}

/* Ensure the table cells span the full width */
.variations td {
    width: 100%;
    display: block;
    box-sizing: border-box; /* Ensure padding and borders are included in the element's total width and height */
}

.single-product .evblocks-fifty-fifty__container {
	display: flex;
	justify-content: space-between;
	flex-direction: column;
}

.single-product .evblocks-fifty-fifty__column {
	text-align: center;
	flex: 1 1 55%;
}

.single-product .evblocks-fifty-fifty__image-wrapper {
	text-align: center;
	flex: 1 1 45%;
}

.single-product .evblocks-fifty-fifty__image {
	max-width: 100%;
	height: auto;
	width: 100%;
}

.single-product .evblocks-fifty-fifty__button {
	margin: 0 auto;
}
.single-product .evblocks-fifty-fifty__subtitle {
	color: var(--ev-color--brand-three);
	margin-top: -30px;
	padding-top: 0;
}

@media (min-width: 769px) {

	.single-product .evblocks-fifty-fifty__image-right .evblocks-fifty-fifty__container {
		flex-direction: row-reverse;
	}

	.single-product .evblocks-fifty-fifty__column {
		text-align: left;
	}

	.single-product .evblocks-fifty-fifty__container {
		flex-direction: row;
		gap: 80px;
		align-items: center;
	}

	.single-product .evblocks-fifty-fifty__button-wrapper {
		margin: var(--ev-padding--block);
		margin-bottom: 30px;
		margin-left: 0;
		margin-right: 0;
	}

	.single-product .evblocks-fifty-fifty__button {
		margin: 0;
	}
}
.evblocks-banner__title {
	margin-right: 0.2em;
}