@font-face {
	font-family: 'Euclid';
	src: url("/fonts/Euclid/Euclid-Circular-B-Light.ttf");
	font-weight: 100;
	font-style: normal;
}
@font-face {
	font-family: 'Euclid';
	src: url("/fonts/Euclid/Euclid-Circular-B-Regular.ttf");
	font-weight: 300;
	font-style: normal;
}
@font-face {
	font-family: 'Euclid';
	src: url("/fonts/Euclid/Euclid-Circular-B-Medium.ttf");
	font-weight: 400;
	font-style: normal;
}
@font-face {
	font-family: 'Euclid';
	src: url("/fonts/Euclid/Euclid-Circular-B-Bold.ttf");
	font-weight: 700;
	font-style: normal;
}

#fonts-euclid {
	font-weight: 100;
	font-weight: 300;
	font-weight: 400;
	font-weight: 700;
}



* {
	margin:0;
	padding:0;
	box-sizing: border-box;
	-ms-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-webkit-font-smoothing: antialiased;
	-webkit-appearance: none;
	text-rendering: optimizeLegibility;
	vertical-align: top;
}
h1, h2, h3, h4, p, a, div {
	backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
}
h1, h2, h3, h4, p, a, select, input[type="text"] {
	line-height: 1.3;
}
input[type=checkbox] {
  -webkit-appearance:checkbox;
}
input[type=radio] {
  -webkit-appearance:radio;
}



html, body {
	margin: 0;
	padding: 0;
	height: auto;
	overflow: auto;
	background-color: #FFFFFF;
}
body > .body {
	position: relative;
	display: inline-block;
	float: left;
	width: 100%;
	min-height: 100vh;
	text-align: center;
    background-color: #FFFFFF;
	z-index: 100;
}



body > .body .inline {
	position: relative;
	display: inline-block;
	width: 100%;
	max-width: 1200px;
	min-height: 100%;
	padding: 0px 20px;
	margin: 0;
	vertical-align: top;
}



body > .body > .header-large {
	position: fixed;
	display: inline-block;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 110;
	background-color: rgb(44 14 0 / 88%);
}
body > .body.on-scroll > .header-large {
    box-shadow: 0px 20px 50px rgba(30, 68, 81, 0.25);
}
body > .body > .header-large > .header-main {
	position: relative;
	display: inline-block;
	width: 100%;
	float: left;
	padding: 10px 0px;
	transition: padding 0.3s ease;
}
body > .body > .header-large > .header-main > .inline > .logo-container {
	position: relative;
	display: inline-block;
	width: 160px;
	float: left;
}
body > .body > .header-large > .header-main > .inline > .logo-container > .image {
	position: relative;
	display: inline-block;
	width: 100%;
	float: left;
}
body > .body > .header-large > .header-main > .inline > .navigation-container {
	position: relative;
	display: inline-block;
	float: right;
	margin-top: 12px;
}
body > .body > .header-large > .header-main > .inline > .navigation-container > .navigation {
	position: relative;
	display: inline-block;
	float: left;
	margin-top: 8px;
	margin-right: 14px;
	transition: all 0.3s ease;
}
body > .body > .header-large > .header-main > .inline > .navigation-container > .navigation > .button {
	position: relative;
	display: inline-block;
	float: left;
	padding: 0px 18px;
}
body > .body > .header-large > .header-main > .inline > .navigation-container > .navigation > .button > .title {
	position: relative;
	display: inline-block;
	float: left;
	padding: 2px 3px 4px 3px;
	color: #FFFFFF;
	font-family: 'Euclid', sans-serif;
	font-weight: 100;
	font-size: 18px;
	line-height: 26px;
	text-align: left;
	text-decoration: none;
	cursor: pointer;
	transition: all 0.3s ease;
}
body > .body > .header-large > .header-main > .inline > .navigation-container > .navigation > .button > .title.active {
	font-weight: 700;
}
body > .body > .header-large > .header-main > .inline > .navigation-container > .navigation > .button > .dropdown {
	position: absolute;
	display: inline-block;
	width: 140px;
	top: 40px;
	left: -18px;
	padding: 10px 0px;
	opacity: 0;
	border-radius: 10px;
	background-color: #FE5A02;
	pointer-events: none;
	transform: translateY(-10px);
	transition: all 0.2s ease;
}
body > .body > .header-large > .header-main > .inline > .navigation-container > .navigation > .button.active > .dropdown {
	opacity: 1;
	pointer-events: all;
	transform: translateY(0px);
}
body > .body > .header-large > .header-main > .inline > .navigation-container > .navigation > .button > .dropdown > .button {
	position: relative;
	display: inline-block;
	width: 100%;
	float: left;
}
body > .body > .header-large > .header-main > .inline > .navigation-container > .navigation > .button > .dropdown > .button > .title {
	position: relative;
	display: inline-block;
	width: 100%;
	float: left;
	margin: 5px 0px;
	color: #ffffff;
	font-family: 'Euclid', sans-serif;
	font-weight: 100;
	font-size: 12px;
	line-height: 16px;
	text-align: center;
	text-decoration: none;
}
body > .body > .header-large > .header-main > .inline > .navigation-container > .navigation > .button > .dropdown > .button > .title:hover {
	color: #000000;
}
body > .body > .header-large > .header-main > .inline > .navigation-container > .button-container {
	position: relative;
	display: inline-block;
	float: right;
}
body > .body > .header-large > .header-main > .inline > .navigation-container > .button-container > .button {
	position: relative;
	display: inline-block;
	float: left;
}
body > .body > .header-large > .header-main > .inline > .navigation-container > .button-container > .button[data-number="1"] {
	position: relative;
	display: inline-block;
	padding: 6px 26px;
	margin: 5px 0px;
	color: #FFFFFF;
	font-family: 'Euclid', sans-serif;
	font-weight: 700;
	font-size: 16px;
	line-height: 22px;
	text-align: center;
	text-decoration: none;
	cursor: pointer;
	border-radius: 10px;
	background-color: #FE5A02;
	border: 2px solid #FE5A02;
}
body > .body > .header-large > .header-main > .inline > .navigation-container > .button-container > .button[data-number="2"] {
	position: relative;
	display: inline-block;
	float: left;
	padding: 2px 3px 4px 30px;
	margin: 0px 20px;
	color: #FFFFFF;
	font-family: 'Euclid', sans-serif;
	font-weight: 400;
	font-size: 14px;
	line-height: 26px;
	text-align: left;
	text-decoration: none;
	border-bottom: 3px solid #4CCC09;
	background-image: url('https://www.acsselfstore.co.uk/images/-global-/logo-extras/acs-sustainability-icon.png');
	background-size: 23px;
	background-repeat: no-repeat;
	background-position: left center;
}



body > .body > .header-mobile {
	position: fixed;
	display: none;
	width: 100%;
	height: 70px;
	top: 0;
	left: 0;
	padding: 10px 0;
	z-index: 110;
	background-color: #ffffff;
}
body > .body.on-mobile-header-open > .header-mobile {
	border-bottom: 2px solid #f1f1f1;
}
body > .body > .header-mobile > .logo-container {
    position: absolute;
    display: inline-block;
    top: 0;
    left: 0;
    width: 142px;
    padding: 10px 20px;
    z-index: 10;
}
body > .body > .header-mobile > .logo-container > .image {
	position: relative;
	display: inline-block;
	width: 100%;
	float: left;
}
body > .body > .header-mobile > .menu-icon-container {
	position: absolute;
	display: inline-block;
	top: 0;
	right: 0;
	width: 70px;
	height: 70px;
	padding: 16px;
	z-index: 10;
}
body > .body > .header-mobile > .menu-icon-container > .line {
	position: relative;
	display: inline-block;
	float: left;
	width: 100%;
	height: 4px;
	border: none;
	outline: none;
	border-radius: 5px;
	background-color: #FE5A02;
	transition: opacity 0.3s ease, transform 0.3s ease;
}
body > .body > .header-mobile > .menu-icon-container > .line[data-number="1"] {
	margin: 6px 0 0 0;
}
body > .body > .header-mobile > .menu-icon-container > .line[data-number="2"] {
	margin: 8px 0 0 0;
}
body > .body > .header-mobile > .menu-icon-container > .line[data-number="3"] {
	margin: 8px 0 0 0;
}
body > .body.on-mobile-header-open > .header-mobile > .menu-icon-container > .line[data-number="1"] {
	transform: translateY(11px) rotateZ(45deg);
}
body > .body.on-mobile-header-open > .header-mobile > .menu-icon-container > .line[data-number="2"] {
	opacity: 0;
	transform: translateX(-25px);
}
body > .body.on-mobile-header-open > .header-mobile > .menu-icon-container > .line[data-number="3"] {
	transform: translateY(-13px) rotateZ(-45deg);
}
body > .body > .header-mobile > .navigation-container {
	position: fixed;
	display: none;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	padding-top: 70px;
	overflow-y: scroll;
}
body > .body.on-mobile-header-open > .header-mobile > .navigation-container {
	display: inline-block;
}
body > .body > .header-mobile > .navigation-container > .navigation-dropdown {
	position: relative;
	display: none;
	width: 100%;
	min-height: 100%;
	top: 0;
	left: 0;
	padding: 20px;
	background-color: #ffffff;
}
body > .body > .header-mobile > .navigation-container > .navigation-dropdown.active {
	display: inline-block;
}
body > .body > .header-mobile > .navigation-container > .navigation-dropdown > .navigation-arrow {
	position: relative;
	display: inline-block;
	width: 100%;
	float: left;
	padding: 0px 0px 20px 0px;
}
body > .body > .header-mobile > .navigation-container > .navigation-dropdown > .navigation-arrow > .image {
	position: relative;
	display: inline-block;
	width: 100%;
	max-width: 60px;
	float: left;
}
body > .body > .header-mobile > .navigation-container > .navigation-dropdown > .navigation {
	position: relative;
	display: inline-block;
	width: 100%;
	float: left;
}
body > .body > .header-mobile > .navigation-container > .navigation-dropdown > .navigation > .title {
	position: relative;
	display: inline-block;
	width: 100%;
	float: left;
	padding: 12px 0px;
	color: #7C7C7B;
	font-family: 'Euclid', sans-serif;
	font-weight: 400;
	font-size: 22px;
	line-height: 26px;
	text-align: left;
	text-decoration: none;
}
body > .body > .header-mobile > .navigation-container > .navigation-dropdown > .navigation > .title[data-number="7"] {
	padding: 10px 20px 10px 50px;
	border: 2px solid #4CCC09;
	border-radius: 10px;
	background-image: url('https://www.acsselfstore.co.uk/images/-global-/logo-extras/acs-sustainability-icon.png');
	background-size: 20px;
	background-repeat: no-repeat;
	background-position: left 20px center;
}
body > .body > .header-mobile > .navigation-container > .navigation-dropdown > .navigation > .title:after {
	content: '>';
	position: absolute;
	display: inline-block;
	top: 50%;
	right: 0;
	color: #FE5A02;
	transform: translateY(-50%);
}
body > .body > .header-mobile > .navigation-container > .navigation-dropdown > .navigation > .title[data-number="7"]:after {
	right: 20px;
}



body > .body > .container {
	position: relative;
	display: inline-block;
	width: 100%;
	min-height: 100vh;
	float: left;
	padding-bottom: 80px;
	text-align: center;
	z-index: 50;
	overflow: hidden;
	background-color: #FFFFFF;
}



body > .body > .footer {
	position: relative;
	display: inline-block;
	width: 100%;
	float: left;
	padding: 30px 40px;
	background-color: #d3d8e0;
}
body > .body > .footer > .section {
	position: relative;
	display: inline-block;
	width: 100%;
	float: left;
}
body > .body > .footer > .section > .logo-container {
	position: absolute;
	display: inline-block;
	top: 0;
	left: 0;
	text-align: center;
}
body > .body > .footer > .section > .logo-container > .image {
	position: relative;
	display: inline-block;
	height: 66px;
	float: left;
}
body > .body > .footer > .section > .inline > .contact-container {
	position: relative;
	display: inline-block;
	width: 100%;
	padding: 8px 0px;
}
body > .body > .footer > .section > .inline > .contact-container > .body-container {
	position: relative;
	display: inline-block;
}
body > .body > .footer > .section > .inline > .contact-container > .body-container > .links {
	position: relative;
	display: inline-block;
	float: left;
	padding: 5px 0px;
	list-style-type: none;
}
body > .body > .footer > .section > .inline > .contact-container > .body-container > .links > .link {
	position: relative;
	display: inline-block;
	float: left;
}
body > .body > .footer > .section > .inline > .contact-container > .body-container > .links > .link[data-number="1"] {
	border-right: 1px solid #000000;
}
body > .body > .footer > .section > .inline > .contact-container > .body-container > .links > .link > a,
body > .body > .footer > .section > .inline > .contact-container > .body-container > .links > .link > p {
	position: relative;
	display: inline-block;
	float: left;
	padding: 0px 10px;
	color: #17212D;
	font-family: 'Euclid', sans-serif;
	font-weight: 300;
	font-size: 14px;
	text-align: left;
	text-decoration: none;
	opacity: 1;
	transition: opacity 0.3s ease;
}
body > .body > .footer > .section > .inline > .contact-container > .body-container > .links > .link > a:hover {
	opacity: 0.5;
}
body > .body > .footer > .section > .inline > .contact-container > .body-container > .button-container {
	position: relative;
	display: inline-block;
	float: left;
	padding: 0px 5px;
}
body > .body > .footer > .section > .inline > .contact-container > .body-container > .button-container > .button {
	position: relative;
	display: inline-block;
	float: left;
	padding: 5px;
	opacity: 1;
	transition: opacity 0.3s ease;
}
body > .body > .footer > .section > .inline > .contact-container > .body-container > .button-container > .button:hover {
	opacity: 0.5;
}
body > .body > .footer > .section > .inline > .contact-container > .body-container > .button-container > .button > .image {
	position: relative;
	display: inline-block;
	width: 18px;
	height: 18px;
	float: left;
}
body > .body > .footer > .section > .inline > .bsi-container {
	position: relative;
	display: inline-block;
	padding: 20px 0;
	text-align: center;
}
body > .body > .footer > .section > .inline > .bsi-container > .image-container {
	position: relative;
	display: inline-block;
}
body > .body > .footer > .section > .inline > .bsi-container > .image-container > .image {
	position: relative;
	display: inline-block;
	width: 220px;
}
body > .body > .footer > .section > .inline > .policies-container {
	position: relative;
	display: inline-block;
	width: 100%;
	float: left;
	padding: 30px 10px 5px 10px;
	text-align: center;
}
body > .body > .footer > .section > .inline > .policies-container > .links {
	position: relative;
	display: inline-block;
}
body > .body > .footer > .section > .inline > .policies-container > .links > li {
	position: relative;
	display: inline-block;
	float: left;
}
body > .body > .footer > .section > .inline > .policies-container > .links > li > a,
body > .body > .footer > .section > .inline > .policies-container > .links > li > p {
	position: relative;
	display: inline-block;
	float: left;
	padding: 5px 15px;
	color: #17212D;
	font-family: 'Euclid', sans-serif;
	font-weight: 300;
	font-size: 12px;
	text-align: left;
	text-decoration: none;
}
body > .body > .footer > .section > .inline > .company-information-container {
	position: relative;
	display: inline-block;
	width: 100%;
	float: left;
	text-align: center;
}
body > .body > .footer > .section > .inline > .company-information-container > .links {
	position: relative;
	display: inline-block;
}
body > .body > .footer > .section > .inline > .company-information-container > .links > li {
	position: relative;
	display: inline-block;
	float: left;
}
body > .body > .footer > .section > .inline > .company-information-container > .links > li > a,
body > .body > .footer > .section > .inline > .company-information-container > .links > li > p {
	position: relative;
	display: inline-block;
	width: 100%;
	float: left;
	padding: 5px 8px;
	color: #17212D;
	font-family: 'Euclid', sans-serif;
	font-weight: 300;
	font-size: 12px;
	line-height: 18px;
	text-align: left;
	text-decoration: none;
}
body > .body > .footer > .section > .group-container {
	position: absolute;
	display: inline-block;
	width: 150px;
	bottom: 0px;
	right: 0px;
}
body > .body > .footer > .section > .group-container > .image-container {
	position: relative;
	display: inline-block;
	width: 100%;
	float: left;
}
body > .body > .footer > .section > .group-container > .image-container > .image {
	position: relative;
	display: inline-block;
	width: 100%;
	float: left;
}





/* ACS Office DEFAULTS (acso) */

body > .body .acsss-title {
	position: relative;
	display: inline-block;
	width: 100%;
	color: #17212D;
	font-family: 'Euclid', sans-serif;
	font-weight: 800;
	font-size: 42px;
	line-height: 50px;
	text-align: left;
	text-decoration: none;
}
body > .body .acsss-sub-title {
	position: relative;
	display: inline-block;
	width: 100%;
	color: #17212D;
	font-family: 'Euclid', sans-serif;
	font-weight: 400;
	font-size: 30px;
	line-height: 36px;
	text-align: left;
	text-decoration: none;
}
body > .body .acsss-sub-sub-title {
	position: relative;
	display: inline-block;
	width: 100%;
	color: #17212D;
	font-family: 'Euclid', sans-serif;
	font-weight: 100;
	font-size: 24px;
	line-height: 32px;
	text-align: left;
	text-decoration: none;
}
body > .body .acsss-sub-sub-sub-title {
	position: relative;
	display: inline-block;
	width: 100%;
	color: #17212D;
	font-family: 'Euclid', sans-serif;
	font-weight: 100;
	font-size: 24px;
	line-height: 34px;
	text-align: left;
	text-decoration: none;
}
body > .body .acsss-sub-sub-sub-sub-title {
	position: relative;
	display: inline-block;
	width: 100%;
	color: #17212D;
	font-family: 'Euclid', sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 20px;
	text-align: left;
	text-decoration: none;
}
body > .body .acsss-title > b,
body > .body .acsss-sub-title > b,
body > .body .acsss-sub-sub-title > b,
body > .body .acsss-sub-sub-sub-title > b,
body > .body .acsss-sub-sub-sub-sub-title > b{
	font-weight: 700;
}



body > .body .acsss-description {
	position: relative;
	display: inline-block;
	width: 100%;
	margin-top: 20px;
	color: #17212D;
	font-family: 'Euclid', sans-serif;
	font-weight: 100;
	font-size: 28px;
	line-height: 34px;
	text-align: left;
	text-decoration: none;
}
body > .body .acsss-sub-description {
	position: relative;
	display: inline-block;
	width: 100%;
	margin-top: 20px;
	color: #17212D;
	font-family: 'Euclid', sans-serif;
	font-weight: 100;
	font-size: 22px;
	line-height: 30px;
	text-align: left;
	text-decoration: none;
}
body > .body .acsss-sub-sub-description {
	position: relative;
	display: inline-block;
	width: 100%;
	margin-top: 20px;
	color: #17212D;
	font-family: 'Euclid', sans-serif;
	font-weight: 100;
	font-size: 16px;
	line-height: 24px;
	text-align: left;
	text-decoration: none;
}
body > .body .acsss-sub-sub-sub-description {
	position: relative;
	display: inline-block;
	width: 100%;
	margin-top: 20px;
	color: #17212D;
	font-family: 'Euclid', sans-serif;
	font-weight: 100;
	font-size: 14px;
	line-height: 20px;
	text-align: left;
	text-decoration: none;
}
body > .body .acsss-description a,
body > .body .acsss-sub-description a,
body > .body .acsss-sub-sub-description a,
body > .body .acsss-sub-sub-sub-description a {
	text-decoration: none;
	color: #E72176;
	font-weight: 300;
	line-height: inherit;
}
body > .body .acsss-description a:hover,
body > .body .acsss-sub-description a:hover,
body > .body .acsss-sub-sub-description a:hover,
body > .body .acsss-sub-sub-sub-description a:hover {
	text-decoration: underline;
}
body > .body .acsss-description > b,
body > .body .acsss-sub-description > b,
body > .body .acsss-sub-sub-description > b,
body > .body .acsss-sub-sub-sub-description > b {
	font-weight: 700;
}



body > .body .acsss-list {
	position: relative;
	display: inline-block;
	width: 100%;
	list-style: none;
}
body > .body .acsss-list > li > .description {
	width: 100%;
	float: left;
}
body > .body .acsss-list > li > .acsss-list {
	width: 100%;
	float: left;
	padding-left: 40px;
}
body > .body .acsss-list[data-list-type="1"] > li > .description {
	padding-left: 60px;
	margin-top: 46px;
}
body > .body .acsss-list[data-list-type="1"] > li > .description:before {
	content: '';
	position: absolute;
	display: inline-block;
	width: 38px;
	height: 36px;
	top: 2px;
	left: 0px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	background-image: url('https://www.acsselfstore.co.uk/images/-global-/acsss-list/list-box.png');
}
body > .body .acsss-list[data-list-type="2"] > li > .description {
	padding-left: 30px;
	margin-top: 20px;
	text-transform: uppercase;
}
body > .body .acsss-list[data-list-type="2"] > li > .description:before {
	content: '';
	position: absolute;
	display: inline-block;
	width: 12px;
	height: 1px;
	top: 12px;
	left: 0px;
	background-color: #4c4c4c;
}
body > .body .acsss-list[data-list-type="3"] > li > .description {
	padding-left: 20px;
	margin-top: 30px;
}
body > .body .acsss-list[data-list-type="3"] > li > .description:before {
	content: '';
	position: absolute;
	display: inline-block;
	width: 2px;
	height: 12px;
	top: 6px;
	left: 0px;
	background-color: #4c4c4c;
}
body > .body .acsss-list[data-list-type="4"] > li > .description {
	padding-left: 30px;
	margin-top: 20px;
}
body > .body .acsss-list[data-list-type="4"] > li > .description:before {
	content: '';
	position: absolute;
	display: inline-block;
	width: 12px;
	height: 1px;
	top: 12px;
	left: 0px;
	background-color: #4c4c4c;
}



body > .body .acsss-radius-big {
	border-radius: 48px;
}
body > .body .acsss-radius-med {
	border-radius: 30px;
}



body > .body .acsss-icon-mark:after {
	content: '';
	position: absolute;
	display: inline-block;
	width: 130px;
	height: 20px;
	top: -10px;
	left: 40px;
	background-image: url('https://www.acsselfstore.co.uk/images/-global-/acsss-icon-mark/image-four-circles.png');
	background-size: 100%;
	background-repeat: no-repeat;
	background-position: center;
}



body > .body .acsss-shadow[data-shadow-type="1"] {
	box-shadow: 0px 20px 50px rgba(30, 68, 81, 0.16);
}







body > .body .acsss-slider-container[data-type="1"] {
	position: relative;
	display: inline-block;
	width: 100%;
	float: left;
	padding: 80px 0px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center top;
}
body > .body .acsss-slider-container[data-type="1"] > .inline > .title-container {
	position: relative;
	display: inline-block;
	width: 100%;
	float: left;
}
body > .body .acsss-slider-container[data-type="1"] > .inline > .title-container > .title {
	width: 100%;
	float: left;
	color: #FFFFFF;
	text-align: center;
}
body > .body .acsss-slider-container[data-type="1"] > .inline > .features-container {
	position: relative;
	display: inline-block;
	width: 100%;
	float: left;
	margin-top: 40px;
	overflow: visible;
}
body > .body .acsss-slider-container[data-type="1"] > .inline > .features-container > .summary-container {
	position: relative;
	display: inline-block;
	min-width: 100%;
	float: left;
	white-space: nowrap;
}
body > .body .acsss-slider-container[data-type="1"] > .inline > .features-container > .summary-container > .item-container {
	position: relative;
	display: inline-block;
	width: 100%;
	max-width: 380px;
	float: none;
	margin-right: 20px;
	border-radius: 30px;
	white-space: normal;
	background: #F1F1F1;
}
body > .body .acsss-slider-container[data-type="1"] > .inline > .features-container > .summary-container > .item-container > .image-container {
	position: relative;
	display: inline-block;
	width: 100%;
	height: 200px;
}
body > .body .acsss-slider-container[data-type="1"] > .inline > .features-container > .summary-container > .item-container > .image-container > .image {
	position: relative;
	display: inline-block;
	width: 100%;
	height: 100%;
}
body > .body .acsss-slider-container[data-type="1"] > .inline > .features-container > .summary-container > .item-container > .image-container > .image:after {
	content: '';
	position: absolute;
	display: inline-block;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	border-radius: 50%;
	background-color: #000000;
	border: 3px solid #48C27C;
}
body > .body .acsss-slider-container[data-type="1"] > .inline > .features-container > .summary-container > .item-container > .title-container {
	position: relative;
	display: inline-block;
	width: 100%;
	float: left;
	padding: 0px 20px;
	margin-top: 20px;
	text-align: center;
}
body > .body .acsss-slider-container[data-type="1"] > .inline > .features-container > .summary-container > .item-container > .title-container > .title {
	width: 100%;
	float: left;
	margin: 0;
	text-align: left;
}
body > .body .acsss-slider-container[data-type="1"] > .inline > .features-container > .summary-container > .item-container > .text-container {
	position: relative;
	display: inline-block;
	width: 100%;
	min-height: 160px;
	float: left;
	padding: 10px 20px 20px 20px;
	text-align: center;
}
body > .body .acsss-slider-container[data-type="1"] > .inline > .features-container > .summary-container > .item-container > .text-container > .description {
	width: 100%;
	float: left;
	margin: 0;
	text-align: left;
}
body > .body .acsss-slider-container[data-type="1"] > .inline > .controller-container {
	position: relative;
	display: inline-block;
	width: 100%;
	height: 20px;
	float: right;
	margin-top: 20px;
	border-radius: 20px;
	background-color: #dce0e5;
}
body > .body .acsss-slider-container[data-type="1"] > .inline > .controller-container > .controller {
	position: relative;
	display: inline-block;
	width: 160px;
	height: 100%;
	float: left;
	border-radius: 20px;
	cursor: pointer;
	background-color: #8694a5;
}



body > .body .acsss-button[data-button-type="1"] {
	position: relative;
	display: inline-block;
	padding: 16px 36px;
	color: #FFFFFF;
	font-family: 'Euclid', sans-serif;
	font-weight: 700;
	font-size: 24px;
	line-height: 28px;
	text-align: center;
	text-decoration: none;
	cursor: pointer;
	background-color: #FE5A02;
	border: 2px solid #FE5A02;
	transition: padding 0.2s ease,
				border 0.2s ease,
				box-shadow 0.2s ease,
				background-color 0.2s ease;
}
body > .body .acsss-button[data-button-type="1"]:after {
	content: '';
	position: absolute;
	display: inline-block;
	width: 20px;
	height: 20px;
	top: 18px;
	right: 20px;
	opacity: 0;
	background-image: url('https://www.acsselfstore.co.uk/images/-global-/acsss-button/svg-arrow-white-right.svg');
	background-size: 100%;
	background-repeat: no-repeat;
	background-position: center;
	transform: translateX(20px);
	transition: opacity 0.2s ease, transform 0.2s ease;
}
body > .body .acsss-button[data-button-type="1"]:hover {
	padding: 16px 56px 16px 16px;
	background-color: #FE5A02;
	border: 2px solid #FFFFFF;
	box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.2);
}
body > .body .acsss-button[data-button-type="1"]:hover:after {
	opacity: 1;
	transform: translateX(0px);
}
body > .body .acsss-button[data-button-type="2"] {
	position: relative;
	display: inline-block;
	padding: 8px 26px;
	color: #FFFFFF;
	font-family: 'Euclid', sans-serif;
	font-weight: 700;
	font-size: 18px;
	line-height: 24px;
	text-align: center;
	text-decoration: none;
	cursor: pointer;
	border-radius: 34px;
	background-color: #FE5A02;
	border: 2px solid #FE5A02;
	transition: padding 0.2s ease,
				border 0.2s ease,
				box-shadow 0.2s ease,
				background-color 0.2s ease;
}
body > .body .acsss-button[data-button-type="2"]:after {
	content: '';
	position: absolute;
	display: inline-block;
	width: 14px;
	height: 14px;
	top: 12px;
	right: 14px;
	opacity: 0;
	background-image: url('https://www.acsselfstore.co.uk/images/-global-/acsss-button/svg-arrow-white-right.svg');
	background-size: 100%;
	background-repeat: no-repeat;
	background-position: center;
	transform: translateX(20px);
	transition: opacity 0.2s ease, transform 0.2s ease;
}
body > .body .acsss-button[data-button-type="2"]:hover {
	padding: 8px 36px 8px 16px;
	background-color: #FE5A02;
	border: 2px solid #FFFFFF;
	box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.2);
}
body > .body .acsss-button[data-button-type="2"]:hover:after {
	opacity: 1;
	transform: translateX(0px);
}
body > .body .acsss-button[data-button-type="3"] {
	position: relative;
	display: inline-block;
	padding: 10px 46px;
	color: #FFFFFF;
	font-family: 'Euclid', sans-serif;
	font-weight: 700;
	font-size: 18px;
	line-height: 24px;
	text-align: center;
	text-decoration: none;
	cursor: pointer;
	background-color: #FE5A02;
	border: 2px solid #FE5A02;
	transition: padding 0.2s ease,
				border 0.2s ease,
				box-shadow 0.2s ease,
				background-color 0.2s ease;
}
body > .body .acsss-button[data-button-type="3"]:after {
	content: '';
	position: absolute;
	display: inline-block;
	width: 14px;
	height: 14px;
	top: 12px;
	right: 14px;
	opacity: 0;
	background-image: url('https://www.acsselfstore.co.uk/images/-global-/acsss-button/svg-arrow-white-right.svg');
	background-size: 100%;
	background-repeat: no-repeat;
	background-position: center;
	transform: translateX(20px);
	transition: opacity 0.2s ease, transform 0.2s ease;
}
body > .body .acsss-button[data-button-type="3"]:hover {
	padding: 8px 36px 8px 16px;
	background-color: #FE5A02;
	border: 2px solid #FFFFFF;
	box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.2);
}
body > .body .acsss-button[data-button-type="3"]:hover:after {
	opacity: 1;
	transform: translateX(0px);
}



body > .body .acsss-form-container {
    position: relative;
    display: inline-block;
    width: 100%;
    float: left;
}
body > .body .acsss-form-container > .inline > .section-container {
    position: relative;
    display: inline-block;
    width: 100%;
    float: left;
    padding: 30px 50px 60px 50px;
    background-color: #ffffff;
    border-radius: 30px;
    box-shadow: 0px 20px 50px rgba(30, 68, 81, 0.25);
}
body > .body .acsss-form-container > .inline > .section-container > .title-container {
    position: relative;
    display: inline-block;
    width: 100%;
    float: left;
}
body > .body .acsss-form-container > .inline > .section-container > .title-container > .title {
    float: left;
}
body > .body .acsss-form-container > .inline > .section-container > .title-container > .description {
    float: left;
}
body > .body .acsss-form-container > .inline > .section-container > .title-container > .description[data-number="1"] {
    margin-top: 38px;
}
body > .body .acsss-form-container.no-title > .inline > .section-container > .title-container > .description[data-number="1"] {
    margin-top: 0px;
}
body > .body .acsss-form-container > .inline > .section-container > .text-container > .button {
    float: left;
    margin-top: 30px;
}
body > .body .acsss-form-container > .inline > .section-container > .form-container {
    position: relative;
    display: inline-block;
    width: 100%;
    float: left;
    margin-top: 40px;
}



body .acsss-modal {
	position: fixed;
	display: inline-block;
	width: 100%;
	bottom: 0;
	left: 0;
	padding: 15px 0;
	font-family: 'Euclid', sans-serif;
	font-size: 16px;
	font-weight: 400;
	text-align: center;
	z-index: 9999;
}
body .acsss-modal.success {
	color: #ffffff;
	background-color: #4667ff;
}
body .acsss-modal.error {
	color: #ffffff;
	background-color: #f44336;
}



/* Inputs */

body > .body .acsss-input-container {
	position: relative;
	display: inline-block;
	float: left;
	margin-top: 20px;
}
body > .body .acsss-input-container[data-number="1"] {
	margin-top: 0px;
}
body > .body .acsss-input-container.full {
	width: 100%;
}
body > .body .acsss-input-container.half-left {
	width: 50%;
	padding-right: 10px;
}
body > .body .acsss-input-container.half-right {
	width: 50%;
	padding-left: 10px;
}
body > .body .acsss-input-container[data-number="2"].half-right {
	margin-top: 0px;
}



body > .body .acsss-input-container > .acsss-input-label {
	position: relative;
	display: inline-block;
	float: left;
	padding: 5px 10px;
	color: #4D4D4F;
	font-family: 'Euclid', sans-serif;
	font-size: 18px;
	line-height: 24px;
	font-weight: 700;
	text-align: left;
}
body > .body .acsss-input-container.full > .acsss-input-label {
	width: 100%;
}
body > .body .acsss-input-container.error > .acsss-input-label {
	color: #f44336;
}



body > .body .acsss-input-container > .acsss-input-sub-label {
	position: relative;
	display: inline-block;
	float: left;
	margin-top: 4px;
	color: #4D4D4F;
	font-family: 'Euclid', sans-serif;
	font-size: 12px;
	font-weight: 200;
	text-align: left;
	line-height: 22px;
}
body > .body .acsss-input-container.full > .acsss-input-sub-label {
	width: 100%;
}
body > .body .acsss-input-container.error > .acsss-input-sub-label {
	color: #f44336;
}



body > .body .acsss-input-container > .acsss-input-input {
	position: relative;
	display: inline-block;
	width: 100%;
	float: left;
	padding: 14px 15px 14px 25px;
	color: #000000;
	font-family: 'Euclid', sans-serif;
	font-size: 13px;
	font-weight: 400;
	text-align: left;
	line-height: 22px;
	border-radius: 40px;
	background-color: #ffffff;
}
body > .body .acsss-input-container > .acsss-input-input,
body > .body .acsss-input-container > .acsss-input-input:focus,
body > .body .acsss-input-container > .acsss-input-input:valid {
	border: 1px solid #bfbfbf;
	outline: none;
	-webkit-box-shadow: 0px 1px 3px 0px rgba(62, 62, 62, 0.16);
	-moz-box-shadow: 0px 1px 3px 0px rgba(62, 62, 62, 0.16);
	box-shadow: 0px 1px 3px 0px rgba(62, 62, 62, 0.16);
}
body > .body .acsss-input-container > .acsss-input-input::placeholder {
	color: #bfbfbf;
}
body > .body .acsss-input-container.error > .acsss-input-input,
body > .body .acsss-input-container.error > .acsss-input-input:focus,
body > .body .acsss-input-container.error > .acsss-input-input:valid {
	border: 1px solid #f44336;
}
body > .body .acsss-input-container.error > .acsss-input-input::placeholder {
	color: #f44336;
}



body > .body .acsss-input-container > .acsss-input-textarea {
	position: relative;
	display: inline-block;
	width: 100%;
	height: 200px;
	float: left;
	padding: 15px 15px 15px 25px;
	color: #000000;
	resize: none;
	font-family: 'Euclid', sans-serif;
	font-size: 18px;
	line-height: 22px;
	font-weight: 400;
	text-align: left;
	border-radius: 30px;
	background-color: #ffffff;
}
body > .body .acsss-input-container > .acsss-input-textarea,
body > .body .acsss-input-container > .acsss-input-textarea:focus,
body > .body .acsss-input-container > .acsss-input-textarea:valid {
	border: 1px solid #959596;
	outline: none;
	-webkit-box-shadow: 0px 1px 3px 0px rgba(62, 62, 62, 0.16);
	-moz-box-shadow: 0px 1px 3px 0px rgba(62, 62, 62, 0.16);
	box-shadow: 0px 1px 3px 0px rgba(62, 62, 62, 0.16);
}
body > .body .acsss-input-container > .acsss-input-textarea::placeholder {
	color: #bfbfbf;
}
body > .body .acsss-input-container.error > .acsss-input-textarea,
body > .body .acsss-input-container.error > .acsss-input-textarea:focus,
body > .body .acsss-input-container.error > .acsss-input-textarea:valid {
	border: 1px solid #f44336;
}
body > .body .acsss-input-container.error > .acsss-input-textarea::placeholder {
	color: #f44336;
}



body > .body .acsss-input-container > .acsss-input-select {
	position: relative;
	display: inline-block;
	width: 100%;
	float: left;
	padding: 14px 15px 14px 25px;
	color: #FF5A0D;
	font-family: 'Euclid', sans-serif;
	font-size: 13px;
	font-weight: 700;
	text-align: left;
	line-height: 22px;
	border-radius: 40px;
	background-color: #ffffff;
	background-image: url('https://www.acsselfstore.co.uk/images/-global-/acsss-input-select/arrow-down-orange.png');
	background-size: 34px;
	background-repeat: no-repeat;
	background-position: top 50% right 11px;
}
body > .body .acsss-input-container > .acsss-input-select,
body > .body .acsss-input-container > .acsss-input-select:focus,
body > .body .acsss-input-container > .acsss-input-select:valid {
	border: 1px solid #959596;
	outline: none;
	-webkit-box-shadow: 0px 1px 3px 0px rgba(62, 62, 62, 0.16);
	-moz-box-shadow: 0px 1px 3px 0px rgba(62, 62, 62, 0.16);
	box-shadow: 0px 1px 3px 0px rgba(62, 62, 62, 0.16);
}
body > .body .acsss-input-container.error > .acsss-input-select,
body > .body .acsss-input-container.error > .acsss-input-select:focus,
body > .body .acsss-input-container.error > .acsss-input-select:valid {
	border: 1px solid #f44336;
}
body > .body .acsss-input-container.error > .acsss-input-select {
	color: #f44336;
}
body > .body .acsss-input-container > .acsss-input-select option[value=""][disabled],
body > .body .acsss-input-container > .acsss-input-select option:first-of-type,
body > .body .acsss-input-container > .acsss-input-select::placeholder {
	color: #bfbfbf;
}
body > .body .acsss-input-container > .acsss-input-select::placeholder {
	color: #bfbfbf;
}


body > .body .acsss-input-container > .acsss-input-checkbox {
	position: relative;
	display: inline-block;
	float: left;
	margin: 9px 25px 0px 8px;
}
body > .body .acsss-input-container.error > .acsss-input-checkbox,
body > .body .acsss-input-container.error > .acsss-input-checkbox:focus,
body > .body .acsss-input-container.error > .acsss-input-checkbox:valid {
	border: 1px solid #f44336;
}



body > .body .acsss-input-container > .acsss-input-radio {
	position: relative;
	display: inline-block;
	float: left;
	margin: 9px 25px 0px 8px;
}
body > .body .acsss-input-container.error > .acsss-input-radio,
body > .body .acsss-input-container.error > .acsss-input-radio:focus,
body > .body .acsss-input-container.error > .acsss-input-radio:valid {
	border: 1px solid #f44336;
}



body > .body .acsss-input-container > .acsss-input-upload {
	position: relative;
	display: inline-block;
	width: 100%;
	float: left;
	padding: 14px 15px;
	color: #000000;
	font-family: 'Euclid', sans-serif;
	font-size: 14px;
	font-weight: 400;
	text-align: left;
	background-color: #ffffff;
}
body > .body .acsss-input-container > .acsss-input-upload,
body > .body .acsss-input-container > .acsss-input-upload:focus,
body > .body .acsss-input-container > .acsss-input-upload:valid {
	border: 1px solid #959596;
	outline: none;
	box-shadow: none;
}
body > .body .acsss-input-container.error > .acsss-input-upload,
body > .body .acsss-input-container.error > .acsss-input-upload:focus,
body > .body .acsss-input-container.error > .acsss-input-upload:valid {
	color: #f44336;
	border: 1px solid #f44336;
}



body > .body .acsss-input-container > .acsss-input-submit {
	position: relative;
	display: inline-block;
	padding: 15px 40px;
	color: #ffffff;
	font-family: 'Euclid', sans-serif;
	font-weight: 800;
	font-size: 18px;
	line-height: 22px;
	text-align: center;
	text-decoration: none;
	cursor: pointer;
	background-color: #A8CB34;
}
body > .body .acsss-input-container > .acsss-input-submit.green {
	background-color: #A8CB34;
}
body > .body .acsss-input-container > .acsss-input-submit.orange {
	padding: 10px 40px;
	float: right;
	border-radius: 30px;
	background-color: #FF5A0D;
}
body > .body .acsss-input-container > .acsss-input-submit,
body > .body .acsss-input-container > .acsss-input-submit:focus,
body > .body .acsss-input-container > .acsss-input-submit:valid {
	border: none;
	outline: none;
	box-shadow: none;
}



body > .body .acsss-input-container > .g-recaptcha {
	position: relative;
	display: inline-block;
	float: left;
	border: 1px solid #959596;
	outline: none;
	-webkit-box-shadow: 0px 1px 3px 0px rgba(62, 62, 62, 0.16);
	-moz-box-shadow: 0px 1px 3px 0px rgba(62, 62, 62, 0.16);
	box-shadow: 0px 1px 3px 0px rgba(62, 62, 62, 0.16);
}
body > .body .acsss-input-container.error > .g-recaptcha {
	border: 1px solid #f44336;
}




/* ----------------------------------------------------*/
/* Small Screens */
/* ----------------------------------------------------*/

@media only screen and (max-width : 1300px) {

}



/* ----------------------------------------------------*/
/* Smaller Screens */
/* ----------------------------------------------------*/

@media only screen and (max-width : 1100px) {

	body > .body > .header-small {
		display: none;
	}
	body > .body > .header-large {
		display: none;
	}
	body > .body > .header-mobile {
		display: inline-block;
	}



	body > .body > .footer > .section {
		position: relative;
		display: inline-block;
		width: 100%;
		float: left;
		left: unset;
		top: unset;
		padding: 0px;
		transform: unset;
	}
	body > .body > .footer > .section > .inline > .contact-container {
		padding: 20px 0px;
	}
	body > .body > .footer > .section > .inline > .contact-container > .body-container {
		padding-right: 0px;
	}
	body > .body > .footer > .section > .inline > .contact-container > .body-container[data-number="1"] {
		width: 100%;
	}
	body > .body > .footer > .section > .inline > .contact-container > .body-container[data-number="2"],
	body > .body > .footer > .section > .inline > .contact-container > .body-container[data-number="3"],
	body > .body > .footer > .section > .inline > .contact-container > .body-container[data-number="4"] {
		width: 100%;
		margin-top: 20px;
	}
	body > .body > .footer > .section > .inline > .contact-container > .body-container > .links > li > a,
	body > .body > .footer > .section > .inline > .contact-container > .body-container > .links > li > p {
		text-align: center;
	}
	body > .body > .footer > .section > .inline > .contact-container > .body-container > .button-container > .button {
		float: none;
	}
	body > .body > .footer > .section > .inline > .contact-container > .body-container > .bsi-logo-container {
		max-width: 100%;
		text-align: center;
	}
	body > .body > .footer > .section > .inline > .contact-container > .body-container > .bsi-logo-container > .image {
		float: none;
		max-width: 100px;
	}
	body > .body > .footer > .section > .inline > .policies-container {
		padding: 10px 0px;
		border: 2px solid #848484;
	}
	body > .body > .footer > .section > .inline > .policies-container > .links {
		width: 100%;
	}
	body > .body > .footer > .section > .inline > .policies-container > .links > li {
		float: unset;
	}
	body > .body > .footer > .section > .inline > .policies-container > .links > li > a,
	body > .body > .footer > .section > .inline > .policies-container > .links > li > p {
	    padding: 10px 10px;
	}
	body > .body > .footer > .section > .inline > .company-information-container {
		padding: 0px;
	}
	body > .body > .footer > .section > .inline > .company-information-container > .links {
		width: 100%;
		padding: 20px 0px;
	}
	body > .body > .footer > .section > .inline > .company-information-container > .links > li {
		width: 100%;
		float: left;
	}
	body > .body > .footer > .section > .inline > .company-information-container > .links > li > p {
    	padding: 8px 0px;
	}
	body > .body > .footer > .section > .inline > .group-container {
		bottom: 60px;
		right: 20px;
	}



	body > .body > .container {
	    padding-bottom: 60px;
	}



	body > .body .acsss-title {
		font-size: 28px;
		line-height: 38px;
	}
	body > .body .acsss-sub-title {
	    font-size: 28px;
	    line-height: 38px;
	}
	body > .body .acsss-sub-sub-sub-title {
		font-size: 16px;
		line-height: 22px;
	}
	body > .body .acsss-sub-sub-sub-sub-title {
		font-size: 14px;
		line-height: 18px;
	}
	body > .body .acsss-description {
		font-size: 20px;
		line-height: 28px;
	}
	body > .body .acsss-sub-description {
		font-size: 16px;
		line-height: 24px;
	}
	body > .body .acsss-sub-sub-description {
		font-size: 14px;
		line-height: 20px;
	}


	body > .body .acsss-hero-container {
		padding: 70px 0px 0px;
	}
	body > .body .acsss-hero-container:before {
		border-radius: 0px 0px 30px 30px;
	}
	body > .body .acsss-hero-container > .inline > .text-container {
    	padding: 15px 0;
	}



	body > .body .acsss-article-container[data-article-type="1"] > .inline > .text-container {
		float: left;
	}
	body > .body .acsss-article-container[data-article-type="1"] > .inline > .image-container {
		float: right;
	}



	body > .body .acsss-article-container[data-article-type="2"] > .inline > .text-container {
		float: left;
	}
	body > .body .acsss-article-container[data-article-type="2"] > .inline > .image-container {
		float: right;
	}

}



/* ----------------------------------------------------*/
/* iPads and Tablets */
/* ----------------------------------------------------*/

@media only screen and (max-width : 750px) {

	body > .body > .footer > .section > .logo-container {
		position: relative;
		display: inline-block;
		width: 160px;
	}
	body > .body > .footer > .section > .inline > .group-container {
		position: relative;
		display: inline-block;
		width: 100%;
		float: left;
		bottom: unset;
		right: unset;
		padding: 20px 0px;
	}
	body > .body > .footer > .section > .inline > .group-container > .image-container {
		width: auto;
		height: 70px;
		float: unset;
	}
	body > .body > .footer > .section > .inline > .group-container > .image-container > .image {
		width: auto;
		height: 100%;
		float: unset;
	}



	body > .body .acsss-description {
		font-size: 16px;
		line-height: 22px;
	}
	body > .body .acsss-title {
		font-size: 24px;
		line-height: 32px;
	}
	body > .body .acsss-sub-title {
	    font-size: 24px;
	    line-height: 30px;
	}



	body > .body .acsss-hero-container > .inline > .text-container {
		max-width: 100%;
	}
	body > .body .acsss-hero-container > .inline > .image-container {
		display: none;
	}



	body > .body .acsss-article-container[data-article-type="1"] > .inline > .text-container {
		width: 100%;
	}
	body > .body .acsss-article-container[data-article-type="1"] > .inline > .text-container > .description[data-number="1"] {
	    margin-top: 20px;
	}
	body > .body .acsss-article-container[data-article-type="1"] > .inline > .image-container {
	    width: 100%;
	    margin-top: 30px;
	}



	body > .body .acsss-article-container[data-article-type="2"] > .inline > .text-container {
		width: 100%;
	}
	body > .body .acsss-article-container[data-article-type="2"] > .inline > .text-container > .description {
		text-align: left;
	}
	body > .body .acsss-article-container[data-article-type="2"] > .inline > .text-container > .description[data-number="1"] {
	    margin-top: 20px;
	}
	body > .body .acsss-article-container[data-article-type="2"] > .inline > .text-container > .button {
		float: left;
	}
	body > .body .acsss-article-container[data-article-type="2"] > .inline > .image-container {
	    width: 100%;
	    margin-top: 30px;
	}



	body > .body .acsss-item-box[data-box-type="3"] > .image-container {
	    width: 100%;
		height: 140px;
	}
	body > .body .acsss-item-box[data-box-type="3"] > .text-container {
	    width: 100%;
	    float: left;
	    padding: 20px 20px 20px 20px;
		margin-top: 120px;
	}
	body > .body .acsss-item-box[data-box-type="3"] > .text-container > .title {
		text-align: center;
	}
	body > .body .acsss-item-box[data-box-type="3"] > .text-container > .description {
		margin-top: 20px;
		text-align: center;
	}
	body > .body .acsss-item-box[data-box-type="3"] > .text-container > .button {
		float: none;
	}



	body > .body .acsss-button[data-button-type="1"] {
		padding: 6px 24px;
		font-size: 12px;
		line-height: 16px;
	}
	body > .body .acsss-button[data-button-type="1"] {
		font-size: 12px;
	}



	body > .body .acsss-input-container.half-left {
		width: 100%;
		padding-right: 0px;
	}
	body > .body .acsss-input-container.half-right {
		width: 100%;
		padding-left: 0px;
	}
	body > .body .acsss-input-container[data-number="2"].half-right {
		margin-top: 20px;
	}

}



/* ----------------------------------------------------*/
/* Phones - Large */
/* ----------------------------------------------------*/

@media only screen and (max-width : 460px) {

	body > .body > .container {
		padding-bottom: 40px;
	}


	body > .body > .footer > .section > .inline > .contact-container > .body-container {
		width: 100%;
	}
	body > .body > .footer > .section > .inline > .contact-container > .body-container > .links {
		width: 100%;
	}
	body > .body > .footer > .section > .inline > .contact-container > .body-container > .links > .link {
		width: 100%;
		text-align: center;
	}
	body > .body > .footer > .section > .inline > .contact-container > .body-container > .links > .link > a {
		width: 100%;
		text-align: center;
	}
	body > .body > .footer > .section > .inline > .contact-container > .body-container > .links > .link[data-number="1"] {
		border: none;
	}
	body > .body > .footer > .section > .inline > .contact-container > .body-container > .button-container {
		width: 100%;
	}
	body > .body > .footer > .section > .inline > .contact-container > .body-container > .button-container > .button {
		float: none;
	}
	body > .body > .footer > .section > .inline > .company-information-container > .links {
	    width: 100%;
	    padding: 20px;
	    margin-top: 20px;
    	border: 2px solid #848484;
	}
	body > .body > .footer > .section > .group-container {
		position: relative;
		display: inline-block;
		width: 100%;
		float: left;
		margin-top: 20px;
		text-align: center;
	}
	body > .body > .footer > .section > .group-container > .image-container {
		width: 100%;
		max-width: 130px;
		float: none;
	}



	body > .body .acsss-description {
		font-size: 16px;
		line-height: 22px;
	}
	body > .body .acsss-title {
		font-size: 20px;
		line-height: 26px;
	}
	body > .body .acsss-sub-title {
		font-size: 22px;
		line-height: 26px;
	}
	body > .body .acsss-sub-description {
		font-size: 14px;
		line-height: 20px;
	}



	body > .body .acsss-input-container > .acsss-input-input {
		padding: 12px 15px 12px 20px;
		font-size: 16px;
	}



	body > .body .acsss-input-container > .acsss-input-textarea {
		height: 150px;
		padding: 12px 15px 12px 20px;
		font-size: 16px;
		line-height: 18px;
	}

	body > .body .acsss-input-container > .acsss-input-submit {
		padding: 12px 40px;
		font-size: 16px;
	}



	body > .body .acsss-hero-container > .inline > .text-container > .description {
		margin-top: 20px;
	}
	body > .body .acsss-hero-container > .inline > .summary-container {
		padding: 30px 30px;
	}



	body > .body .acsss-form-container > .inline > .section-container {
		padding: 30px 30px 40px 30px;
	}



	body > .body .acsss-button[data-button-type="6"] {
		padding: 6px 20px;
		font-size: 14px;
		line-height: 14px;
	}

}



/* ----------------------------------------------------*/
/* Phones - Small */
/* ----------------------------------------------------*/

@media only screen and (max-width : 320px) {

	body > .body .acsss-form-container > .inline > .section-container {
		padding: 30px 20px 40px 20px;
	}

}

.d-none {
  display: none;
}
.modal-pop-up {
 position: fixed; /* Stay in place */
 z-index: 9999; /* Sit on top */
 left: 50%;
 top: 40%;
 width: 600px; /* Set width */
 overflow: auto; /* Enable scroll if needed */
 background-color: #A8CB34; /* Fallback color */
 border-radius: 20px;
 transform: translate(-50%, -50%); /* Center the modal */
font-family: 'Euclid', sans-serif;
user-select: none;
max-width: 100%;
}
.modal-pop-up > .cross-off{
 display: inline-flex;
 padding: 10px;
 font-size: 25px;
 background-color: #fff;
 float: right;
 margin: 10px;
 border-radius: 15px;
 color: #FE5A02;
 cursor: pointer;
}
.modal-pop-up > .cross-off > .material-symbols-outlined {
 font-size: 25px !important;
}
.modal-pop-up > .row{
 display: inline-flex;
 width: 100%;
 float: center;
 justify-content: center;
 align-items: center;
 color: #fff !important;
}
.modal-pop-up > .row > .col{
 display: inline-flex;
 width: auto;
 padding: 10px 10px;
}
.modal-pop-up > .row > .col > .main-icon {
  font-size: 100px !important;
  font-weight: lighter;
}
.modal-pop-up > .row > .col > .discount {
  font-size: 48px !important;
  font-weight: bold;
  line-height: 48px;
}
.modal-pop-up > .row > .col > .explainer {
  font-size: 28px !important;
  font-weight: bold;
  line-height: 38px;
  text-align: left;
  font-style: italic;
}
.modal-pop-up > .row > .col > .cta {
  font-size: 28px !important;
  font-weight: bold;
  padding: 10px 0px;
}
.modal-pop-up > .row > .col > .btn {
  background-color: #FE5A02;
  color: #fff;
  text-decoration: none;
  font-size: 20px;
  padding: 7px 0px;
  width: 200px
}
.modal-pop-up > .row > .col > .final {
  padding: 0px 0px 40px 0px;
}

.modal-bg {
  position: fixed; /* Stay in place */
 z-index: 9998; /* Sit on top */
 width: 100%; /* Set width */
 height: 100%;
 overflow: auto; /* Enable scroll if needed */
 background-color: #00000085; /* Fallback color */
}
@media screen and (max-width: 500px){
  .modal-pop-up > .row {
    display: inline-block
  }
  .d-mobile-none {
    display: none !important;
  }
}