<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@font-face {
  font-family: 'Franklin Gothic Book';
  src: url("../fonts/FranklinGothic-Book.eot");
  src: url("../fonts/FranklinGothic-Book.eot?#iefix") format("embedded-opentype"), url("../fonts/FranklinGothic-Book.woff2") format("woff2"), url("../fonts/FranklinGothic-Book.woff") format("woff"), url("../fonts/FranklinGothic-Book.ttf") format("truetype"), url("../fonts/FranklinGothic-Book.svg#FranklinGothic-Book") format("svg");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'Franklin Gothic Demi';
  src: url("../fonts/FranklinGothic-Demi.eot");
  src: url("../fonts/FranklinGothic-Demi.eot?#iefix") format("embedded-opentype"), url("../fonts/FranklinGothic-Demi.woff2") format("woff2"), url("../fonts/FranklinGothic-Demi.woff") format("woff"), url("../fonts/FranklinGothic-Demi.ttf") format("truetype"), url("../fonts/FranklinGothic-Demi.svg#FranklinGothic-Demi") format("svg");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'Franklin Gothic';
  src: url("../fonts/FranklinGothic-Heavy.eot");
  src: url("../fonts/FranklinGothic-Heavy.eot?#iefix") format("embedded-opentype"), url("../fonts/FranklinGothic-Heavy.woff2") format("woff2"), url("../fonts/FranklinGothic-Heavy.woff") format("woff"), url("../fonts/FranklinGothic-Heavy.ttf") format("truetype"), url("../fonts/FranklinGothic-Heavy.svg#FranklinGothic-Heavy") format("svg");
  font-weight: 900;
  font-style: normal; }

@font-face {
  font-family: 'URW DIN Condensed';
  src: url("../fonts/urw-din-condensed-black.otf");
  font-weight: normal;
  font-style: normal; }

/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
/*
 *  Owl Carousel - Core
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
  direction: ltr; }

.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
  touch-action: manipulation;
  -moz-backface-visibility: hidden;
  /* fix firefox animation glitch */ }

.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0; }

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px); }

.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0); }

.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none; }

.owl-carousel .owl-item img {
  display: block;
  width: 100%; }

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

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
  cursor: pointer;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next,
.owl-carousel button.owl-dot {
  padding: 0 !important;
  border: none; }

.owl-carousel.owl-loaded {
  display: block; }

.owl-carousel.owl-loading {
  opacity: 0;
  display: block; }

.owl-carousel.owl-hidden {
  opacity: 0; }

.owl-carousel.owl-refresh .owl-item {
  visibility: hidden; }

.owl-carousel.owl-drag .owl-item {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.owl-carousel.owl-grab {
  cursor: move;
  cursor: grab; }

.owl-carousel.owl-rtl {
  direction: rtl; }

.owl-carousel.owl-rtl .owl-item {
  float: right; }

/* No Js */
.no-js .owl-carousel {
  display: block; }

/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  animation-duration: 1000ms;
  animation-fill-mode: both; }

.owl-carousel .owl-animated-in {
  z-index: 0; }

.owl-carousel .owl-animated-out {
  z-index: 1; }

.owl-carousel .fadeOut {
  animation-name: fadeOut; }

@keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  transition: height 500ms ease-in-out; }

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item {
  /**
              This is introduced due to a bug in IE11 where lazy loading combined with autoheight plugin causes a wrong
              calculation of the height of the owl-item that breaks page layouts
           */ }

.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity 400ms ease; }

.owl-carousel .owl-item .owl-lazy[src^=""], .owl-carousel .owl-item .owl-lazy:not([src]) {
  max-height: 0; }

.owl-carousel .owl-item img.owl-lazy {
  transform-style: preserve-3d; }

/*
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000; }

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform 100ms ease; }

.owl-carousel .owl-video-play-icon:hover {
  -ms-transform: scale(1.3, 1.3);
  transform: scale(1.3, 1.3); }

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none; }

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 400ms ease; }

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%; }

body {
  font-family: 'Franklin Gothic Book';
  padding-top: 20px;
  line-height: 1.8; }

h1, h2, h3, h4, h5, h6, a {
  font-family: 'Franklin Gothic Demi'; }

h1 {
  font-family: 'Franklin Gothic';
  font-size: 36px;
  font-weight: 900; }

h2 {
  font-family: 'Franklin Gothic';
  font-size: 24px;
  font-weight: 900; }

ul, li {
  padding: 0;
  margin: 0;
  list-style-position: inside; }

ul, li, p {
  font-size: 18px; }

img {
  margin: 0;
  padding: 0; }

.mw-80 {
  max-width: 80%;
  margin: 0 auto; }

.page-footer {
  padding: 0 !important; }

.nowrap {
  white-space: nowrap; }

input[type="text"]::-moz-placeholder,
input[type="password"]::-moz-placeholder,
input[type="url"]::-moz-placeholder,
input[type="tel"]::-moz-placeholder,
input[type="search"]::-moz-placeholder,
input[type="number"]::-moz-placeholder,
input[type*="date"]::-moz-placeholder,
input[type="email"]::-moz-placeholder {
  color: #cccccc;
  opacity: 1; }

input[type="text"]::-webkit-input-placeholder,
input[type="password"]::-webkit-input-placeholder,
input[type="url"]::-webkit-input-placeholder,
input[type="tel"]::-webkit-input-placeholder,
input[type="search"]::-webkit-input-placeholder,
input[type="number"]::-webkit-input-placeholder,
input[type*="date"]::-webkit-input-placeholder,
input[type="email"]::-webkit-input-placeholder {
  color: #cccccc;
  opacity: 1; }

input[type="text"]:-ms-input-placeholder,
input[type="password"]:-ms-input-placeholder,
input[type="url"]:-ms-input-placeholder,
input[type="tel"]:-ms-input-placeholder,
input[type="search"]:-ms-input-placeholder,
input[type="number"]:-ms-input-placeholder,
input[type*="date"]:-ms-input-placeholder,
input[type="email"]:-ms-input-placeholder {
  color: #cccccc;
  opacity: 1; }

.nav-sections,
.mobile-menu,
.main-menu-mobile,
.mm-close-btn,
.mm-text {
  display: none; }

.column.main &gt; .magezon-builder {
  z-index: unset !important; }

body.amform-active {
  overflow: hidden !important; }

.header-flex {
  display: flex;
  position: relative; }
  .header-flex .header-middle {
    display: flex;
    justify-content: right;
    flex-wrap: wrap;
    margin: 20px 0 30px 0; }
    .header-flex .header-middle .header-middle-br {
      display: flex;
      justify-content: right; }
    .header-flex .header-middle .header-social {
      display: inline-block;
      font-size: 22px; }
      .header-flex .header-middle .header-social a {
        margin: 0 20px 0 0;
        color: #272625;
        text-decoration: none; }
  .header-flex .magezon-builder {
    z-index: 1008; }
    .header-flex .magezon-builder .mgz-container {
      max-width: 100%;
      width: 100%; }

.header-container .logo {
  float: none;
  max-width: 100%;
  margin: 0;
  flex-shrink: 0; }
  .header-container .logo .logo {
    display: inline-block; }

.header-container div.logo {
  margin: 0 20px 0 0;
  z-index: 0; }

.header-container .top-menu {
  float: right;
  font-size: 16.677px;
  font-family: 'Franklin Gothic Book';
  margin-bottom: 15px; }
  .header-container .top-menu ul {
    list-style: none;
    float: right;
    text-transform: uppercase;
    margin-right: 15px;
    margin-bottom: 0; }
    .header-container .top-menu ul li {
      float: left;
      margin: 0 25px; }
      .header-container .top-menu ul li a {
        font-family: 'Franklin Gothic Book';
        font-weight: bold;
        color: #7f7f7f; }

.header-container .header-content {
  width: 99%; }

.header-container .header-middle .skip-booking {
  display: block;
  font-family: 'Franklin Gothic';
  background-color: #f07f0a;
  color: #fff;
  font-size: 18px;
  padding: 0 10px 0 17px;
  margin: 0 0 0 15px;
  height: 38px;
  line-height: 38px;
  white-space: nowrap;
  text-transform: uppercase;
  border-radius: 4px; }
  .header-container .header-middle .skip-booking a {
    display: block;
    min-width: 225px;
    padding: 0 45px 0 0;
    background: #f07f0a url("../images/skip_booking.png") right center no-repeat;
    color: #ffffff;
    text-decoration: none; }

.header-container .header-middle .trade-acc-top {
  float: right;
  font-family: 'Franklin Gothic Demi';
  font-size: 18px;
  height: 38px;
  line-height: 38px;
  padding: 0 12px;
  background-color: #000000;
  border-radius: 4px;
  color: #ffffff;
  text-transform: uppercase;
  text-decoration: none; }

.header-container .header-middle .tel-top {
  float: right;
  font-size: 22px;
  font-weight: bold;
  color: #f07f0a;
  text-decoration: none; }

.header-container .header-middle .header-search {
  display: none;
  max-width: 520px;
  width: 100%;
  margin: 0 12px; }
  .header-container .header-middle .header-search .amsearch-loupe {
    left: auto;
    right: 0;
    background: none !important; }
  .header-container .header-middle .header-search .amsearch-close {
    top: 75px; }
  .header-container .header-middle .header-search .amsearch-form-container.-opened .amsearch-wrapper-input {
    position: static; }
  .header-container .header-middle .header-search .amsearch-wrapper-input {
    width: auto !important; }
  .header-container .header-middle .header-search .form.minisearch {
    display: flex;
    border: 1px solid #f5f5f5;
    height: 37px;
    position: relative;
    width: 100%; }
    .header-container .header-middle .header-search .form.minisearch .field input {
      margin: 0;
      border: 0;
      background: #fff;
      width: 200px;
      max-width: 420px; }
    .header-container .header-middle .header-search .form.minisearch .field :focus {
      outline: none; }
    .header-container .header-middle .header-search .form.minisearch .action.advanced {
      display: none; }
    .header-container .header-middle .header-search .form.minisearch button.btn-search-header {
      position: relative;
      display: block;
      width: 23px;
      height: 37px;
      border: 0;
      background: #f7f7f7; }
      .header-container .header-middle .header-search .form.minisearch button.btn-search-header:before {
        display: block;
        position: absolute;
        left: 5px;
        top: 11px;
        width: 23px;
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        color: #f07f0a;
        content: "\f002"; }
    .header-container .header-middle .header-search .form.minisearch ::-webkit-input-placeholder {
      color: #9d9d9d; }
    .header-container .header-middle .header-search .form.minisearch :-ms-input-placeholder {
      color: #9d9d9d; }
    .header-container .header-middle .header-search .form.minisearch ::placeholder {
      color: #9d9d9d; }

.header-container .header-middle .cart-mini {
  margin: 0 0 0 15px; }

.header-container .header-middle .minicart-wrapper {
  background-color: #262423;
  margin: 0;
  height: 38px; }
  .header-container .header-middle .minicart-wrapper .block-minicart {
    z-index: 2000;
    padding: 25px 20px 0 20px; }
    .header-container .header-middle .minicart-wrapper .block-minicart .minicart-widgets {
      display: none; }
    .header-container .header-middle .minicart-wrapper .block-minicart .block-content &gt; .actions &gt; .primary .action.primary {
      background-color: #f07f0a;
      border: 1px solid #f07f0a; }
  .header-container .header-middle .minicart-wrapper .action.showcart {
    display: block;
    height: 38px;
    width: 37px;
    background: transparent url(../images/cart_icon.png) 50% 50% no-repeat; }
    .header-container .header-middle .minicart-wrapper .action.showcart span.text {
      display: none; }
    .header-container .header-middle .minicart-wrapper .action.showcart .counter.qty:not(.empty) {
      position: absolute;
      display: block;
      background: #ff0000;
      color: #ffffff;
      height: 20px;
      line-height: 20px;
      border-radius: 10px; }
    .header-container .header-middle .minicart-wrapper .action.showcart .counter.qty {
      margin: 0; }
  .header-container .header-middle .minicart-wrapper .action.showcart::before {
    display: none; }

@media (min-width: 1200px) {
  body .magezon-builder .mgz-container {
    max-width: 1140px; }
  body .magezon-builder .magezon-builder .mgz-container {
    width: auto; } }

@media (min-width: 1260px) {
  body .magezon-builder .mgz-container {
    max-width: 1140px; }
  body .magezon-builder .magezon-builder .mgz-container {
    width: auto; } }

@media (min-width: 1600px) {
  body .magezon-builder .mgz-container {
    max-width: 1500px;
    width: 1600px; }
  body .magezon-builder .magezon-builder .mgz-container {
    width: auto; } }

body .magezon-builder .mgz-element-row.contained .mgz-container,
body .post-full-text .magezon-builder .mgz-container,
body.news-index-index .magezon-builder .mgz-container,
body.news-category-index .magezon-builder .mgz-container {
  max-width: 100%; }

.news-view-index .page-main {
  max-width: 100%; }

body .post-full-text .mgz-element-column &gt; .mgz-element-inner {
  padding: 0; }

.magezon-builder iframe {
  display: block; }

.cms-page-view.page-layout-1column .page-main,
.cms-index-index .page-main {
  max-width: 100%;
  padding-left: 0;
  padding-right: 0; }
  .cms-page-view.page-layout-1column .page-main .block,
  .cms-index-index .page-main .block {
    margin: 0; }

.home-main-text {
  max-width: 1000px;
  margin: 0 auto; }

.home-slider .mgz-carousel-nav-position-center_split .owl-nav .owl-prev,
.home-slider .mgz-carousel-nav-position-center_split .owl-nav .owl-next {
  background-color: #D9D9D9;
  opacity: 1 !important;
  transform: scale(1, 2);
  color: #f07f0a; }
  .home-slider .mgz-carousel-nav-position-center_split .owl-nav .owl-prev:hover,
  .home-slider .mgz-carousel-nav-position-center_split .owl-nav .owl-next:hover {
    background-color: #D9D9D9;
    color: #f07f0a; }

.home-slider .mgz-carousel-nav-position-center_split .owl-dots {
  position: absolute;
  bottom: 10px; }
  .home-slider .mgz-carousel-nav-position-center_split .owl-dots .owl-dot span {
    background-color: #ffffff; }
  .home-slider .mgz-carousel-nav-position-center_split .owl-dots .owl-dot.active span {
    background-color: #f07f0a; }

.home-slider .item-content {
  text-align: center !important; }
  .home-slider .item-content .item-title {
    font-family: "URW DIN Condensed";
    text-shadow: #000000 2px 2px; }
  .home-slider .item-content .slide-heading h2 {
    font-size: 34px !important;
    line-height: 1.2 !important;
    color: #ffffff; }
  .home-slider .item-content .slide-buttons .mgz-btn {
    background-color: #f07f0a;
    border-radius: 12px;
    padding: 12px;
    font-size: 20px !important;
    color: #ffffff; }

@media (min-width: 768px) {
  .home-slider .item-content {
    max-width: 80%; }
  .home-slider .owl-prev {
    left: 70px !important; }
  .home-slider .owl-next {
    right: 70px !important; } }

@media (min-width: 1320px) {
  .home-slider .owl-nav .owl-prev {
    left: calc((100% - 1320px)/2 + 40px) !important; }
  .home-slider .owl-nav .owl-next {
    right: calc((100% - 1320px)/2 + 40px) !important; } }

@media (min-width: 1650px) {
  .home-slider .owl-nav .owl-prev {
    left: calc((100% - 1320px)/2 - 40px) !important; }
  .home-slider .owl-nav .owl-next {
    right: calc((100% - 1320px)/2 - 40px) !important; } }

.btn-inline {
  display: inline-block;
  margin: 0 24px 0 0; }

.btn-normal .mgz-btn {
  background-color: #f07f0a;
  border-radius: 12px !important;
  padding: 12px !important;
  font-size: 20px !important;
  color: #ffffff; }
  .btn-normal .mgz-btn:hover {
    background-color: #f07f0a;
    color: #ffffff; }

.home-products {
  max-width: 1320px;
  margin: 0 auto; }
  .home-products .mgz-element-column {
    position: relative; }
    .home-products .mgz-element-column .mgz-element-text {
      position: absolute;
      bottom: 0;
      padding: 0 0 17px 0;
      width: 100%;
      font-family: 'Franklin Gothic Book';
      text-align: center; }
      .home-products .mgz-element-column .mgz-element-text p {
        font-size: 20px; }
        .home-products .mgz-element-column .mgz-element-text p a {
          color: #ffffff;
          text-decoration: none; }
    .home-products .mgz-element-column:hover .mgz-element-text {
      border-bottom: 7px solid #f07f0a;
      padding: 0 0 10px 0; }
      .home-products .mgz-element-column:hover .mgz-element-text:after {
        position: absolute;
        display: block;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 0 10.5px 9px 10.5px;
        border-color: transparent transparent #f07f0a transparent; }

.quick-wins {
  background-color: #000000; }
  .quick-wins .mgz-element-column {
    border-left: 2px solid #ffffff;
    border-right: 2px solid #ffffff; }
    .quick-wins .mgz-element-column:first-of-type {
      border-left: none; }
    .quick-wins .mgz-element-column:last-of-type {
      border-right: none; }
    .quick-wins .mgz-element-column .mgz-element-single_image {
      text-align: center; }
    .quick-wins .mgz-element-column .mgz-element-text p {
      font-size: 12px;
      color: #ffffff; }
      .quick-wins .mgz-element-column .mgz-element-text p span {
        color: #f07f0a;
        font-weight: bold; }

.use-gravel-bg {
  background: transparent url(../images/gravel-bg.jpg) 0 0 repeat; }

.order-attributes {
  display: none; }

.modals-wrapper .fixed-header {
  position: static; }

.footer-container {
  width: 100%;
  padding-top: 70px;
  background-color: #262423; }
  .footer-container .footer-top .container {
    padding-bottom: 30px;
    border-bottom: 2px solid #fff; }
  .footer-container .footer-top .title-footer {
    font-family: 'Franklin Gothic', Georgia, serif;
    font-size: 24px;
    line-height: 1;
    padding-bottom: 10px;
    text-transform: uppercase;
    color: #fff; }
  .footer-container .footer-top .line {
    display: block;
    height: 4px;
    width: 44px;
    background: #f07f0a;
    margin-bottom: 16px; }
  .footer-container .footer-top .content-footer {
    clear: both; }
  .footer-container .footer-top ul {
    list-style: none;
    padding: 0;
    margin: 0; }
    .footer-container .footer-top ul li {
      padding: 0;
      margin: 0;
      list-style: none;
      width: 100%;
      clear: both; }
      .footer-container .footer-top ul li a {
        font-family: 'Franklin Gothic Book', Georgia, serif;
        color: #fff;
        font-size: 18px;
        line-height: 1.5; }
  .footer-container .footer-middle .container {
    padding-top: 30px;
    padding-bottom: 30px;
    border-bottom: 2px solid #fff; }
  .footer-container .footer-middle .social a {
    display: inline-block;
    margin: 0 10px 0 0;
    background-color: #7f7f7f;
    width: 48px;
    height: 48px;
    border-radius: 24px;
    font-size: 21px;
    line-height: 48px;
    text-align: center;
    color: #ffffff; }
    .footer-container .footer-middle .social a:last-of-type {
      margin: 0; }
  .footer-container .footer-middle .orange {
    font-family: 'Franklin Gothic', Georgia, serif;
    width: 100%;
    min-height: 72px;
    background-color: #f07f0a;
    font-size: 20px;
    padding-left: 76px;
    color: #fff;
    background-repeat: no-repeat;
    background-position: 30px center; }
    .footer-container .footer-middle .orange a {
      color: #fff; }
    .footer-container .footer-middle .orange a:hover {
      text-decoration: none; }
    .footer-container .footer-middle .orange p {
      font-size: 14px;
      margin-bottom: 0;
      padding-bottom: 0; }
  .footer-container .footer-middle .orange.location {
    line-height: 26px;
    min-height: 52px;
    padding-top: 10px;
    padding-bottom: 10px;
    background-image: url("../images/location.png"); }
  .footer-container .footer-middle .orange.mail,
  .footer-container .footer-middle .orange.tel {
    line-height: 72px; }
  .footer-container .footer-middle .orange.mail {
    background-image: url("../images/mail.png"); }
  .footer-container .footer-middle .orange.tel {
    background-image: url("../images/phone.png"); }
  .footer-container .footer-bottom {
    padding: 30px 0;
    color: #fff;
    font-size: 16px; }
    .footer-container .footer-bottom .copyright-footer {
      font-family: 'Franklin Gothic Book', Georgia, serif;
      float: left;
      text-align: left; }
    .footer-container .footer-bottom .design {
      float: right;
      text-align: right; }
      .footer-container .footer-bottom .design a {
        color: #f07f0a;
        font-weight: bold; }

#about-us-nav.sticky {
  position: fixed;
  left: 0;
  top: 153px;
  z-index: 90;
  width: 100%;
  background-color: #ffffff; }

#about-us-nav a {
  padding: 4px 12px;
  margin: 0 20px 0 0;
  font-family: 'Franklin Gothic Book', Georgia, serif;
  font-size: 16px;
  color: #262423;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: bold;
  white-space: nowrap; }
  #about-us-nav a.active {
    background-color: #f07f0a;
    border-radius: 4px;
    color: #ffffff; }
  #about-us-nav a:last-of-type {
    margin: 0; }

.blk-aboutus-accr .mgz-element-text {
  background-color: #f07f0a;
  padding: 8px 0;
  font-family: 'Franklin Gothic Demi';
  color: #ffffff; }

.history-slider .owl-carousel .owl-item {
  overflow-x: hidden; }

.history-slider .owl-carousel .owl-nav .owl-prev,
.history-slider .owl-carousel .owl-nav .owl-next {
  background-color: #D9D9D9;
  opacity: 1 !important;
  transform: scale(1, 2);
  color: #f07f0a; }
  .history-slider .owl-carousel .owl-nav .owl-prev:hover,
  .history-slider .owl-carousel .owl-nav .owl-next:hover {
    background-color: #D9D9D9;
    color: #f07f0a; }

@media (max-width: 1320px) {
  .history-slider .owl-prev {
    left: 0 !important; }
  .history-slider .owl-next {
    right: 0 !important; } }

@media (min-width: 1321px) {
  .history-slider .owl-nav .owl-prev {
    left: calc((100% - 1320px)/2 + 40px) !important; }
  .history-slider .owl-nav .owl-next {
    right: calc((100% - 1320px)/2 + 40px) !important; } }

@media (min-width: 1650px) {
  .history-slider .owl-nav .owl-prev {
    left: calc((100% - 1320px)/2 - 40px) !important; }
  .history-slider .owl-nav .owl-next {
    right: calc((100% - 1320px)/2 - 40px) !important; } }

.history-slide {
  display: table;
  max-width: 1200px;
  margin: 0 auto;
  color: #ffffff; }
  .history-slide .history-slide-r {
    display: table-row; }
    .history-slide .history-slide-r .history-slide-timeline,
    .history-slide .history-slide-r .history-slide-year {
      display: table-cell; }
    .history-slide .history-slide-r .history-slide-timeline {
      position: relative; }
      .history-slide .history-slide-r .history-slide-timeline:before {
        position: absolute;
        right: 10px;
        top: 50%;
        display: block;
        height: 1px;
        width: 1000px;
        background: transparent url(../images/history-timeline.png) 0 0 repeat-x;
        content: " "; }
      .history-slide .history-slide-r .history-slide-timeline:after {
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
        display: block;
        width: 14px;
        height: 14px;
        border-radius: 50%;
        background-color: #f07f0a;
        content: " "; }
    .history-slide .history-slide-r .history-slide-year h3 {
      margin: 0;
      color: #f07f0a; }
    .history-slide .history-slide-r .history-slide-image {
      display: table-cell;
      vertical-align: middle;
      width: 45%;
      padding: 20px 20px 0 0;
      text-align: center; }
    .history-slide .history-slide-r .history-slide-text {
      position: relative;
      display: table-cell;
      vertical-align: middle;
      padding: 20px 0 0 0; }
      .history-slide .history-slide-r .history-slide-text:after {
        position: absolute;
        left: 100%;
        bottom: 1px;
        display: block;
        height: 1px;
        width: 1000px;
        background: transparent url(../images/history-timeline.png) 0 0 repeat-x;
        content: " "; }
      .history-slide .history-slide-r .history-slide-text h4 {
        font-family: 'Franklin Gothic Book', Georgia, serif;
        font-size: 18px;
        margin: 0 0 15px 0; }
      .history-slide .history-slide-r .history-slide-text p {
        font-size: 16px; }

@media (max-width: 1320px) {
  .history-slide {
    max-width: calc(100% - 120px); } }

/* contact-form */
.contact-form-section {
  padding-top: 60px;
  margin: 0 0 40px 0 !important; }
  .contact-form-section .contact-header {
    margin: 60px 0 15px 0;
    font-family: 'Franklin Gothic Demi';
    font-size: 35px;
    font-weight: bold; }
  .contact-form-section .contact-header-border {
    width: 80px;
    border-bottom: 4px solid #f07f0a; }
  .contact-form-section .contact-header-text {
    width: 80%;
    font-family: 'Franklin Gothic Book';
    padding-top: 30px;
    font-size: 16px; }
  .contact-form-section p.friendly-header {
    display: inline-block;
    margin: 5px 0 5px 10px; }
  .contact-form-section label {
    float: left;
    margin-bottom: 5px;
    font-family: 'Franklin Gothic Demi';
    font-size: 16px; }
    .contact-form-section label span.asteriks {
      color: #f07f0a;
      margin-left: 5px; }
  .contact-form-section input {
    height: 40px; }
  .contact-form-section input, .contact-form-section textarea {
    border: none; }
    .contact-form-section input:focus, .contact-form-section textarea:focus {
      border: 2px solid #f07f0a;
      box-shadow: none; }
  .contact-form-section .button-section {
    display: flex;
    align-items: center;
    margin: 10px -15px 0 -15px;
    padding: 0 15px;
    border-top: 1px solid #e9e9e9;
    background-color: #e9e9e9;
    min-height: 60px; }
    .contact-form-section .button-section .contact-form-checkbox-text {
      margin: 0 15px;
      width: 90%;
      font-weight: bold;
      line-height: 1.2; }
  .contact-form-section button.bt-contact-form {
    height: 40px;
    text-transform: uppercase;
    background-color: #f07f0a;
    color: #ffffff;
    border-radius: 0px;
    box-shadow: none;
    font-family: 'Franklin Gothic Demi';
    font-size: 18px; }

.bg-black {
  background-color: #000000 !important;
  color: #ffffff;
  text-transform: uppercase;
  line-height: 36px;
  font-family: 'Franklin Gothic Demi';
  font-size: 20px; }

.bg-grey {
  height: 80%;
  background-color: #efefef !important; }

.top-buffer {
  margin-top: 20px; }

.contact-us-details {
  margin: 20px 0 0 0; }
  .contact-us-details .social a {
    display: inline-block;
    margin: 0 10px 0 0;
    background-color: #f07f0a;
    width: 42px;
    height: 42px;
    border-radius: 21px;
    font-size: 21px;
    line-height: 42px;
    text-align: center;
    color: #ffffff; }

#map .gm-style-iw-a h4 {
  margin: 0 0 1rem 0;
  font-size: 18px;
  font-weight: normal; }

#map .gm-style-iw-a p {
  font-size: 16px; }

/* end of contact-form */
/*news-offers-form */
.news-offers-form .top-buffer {
  max-width: 800px;
  margin: 0 auto; }

.news-offers-form .checkbox-text {
  color: #ffffff; }

.news-offers-form .header-text {
  margin: 20px 0;
  text-align: center;
  color: #ffffff; }

.news-offers-form input[type='text'], .news-offers-form select {
  margin-top: 15px;
  color: grey;
  height: 46px;
  border: none;
  background: #ffffff;
  font-weight: bolder; }

.news-offers-form select:required:invalid {
  color: #cccccc; }

.news-offers-form .checkbox-container {
  display: block;
  margin: 12px 0 0 0;
  color: #ffffff;
  user-select: none;
  text-align: left; }
  .news-offers-form .checkbox-container input[type='checkbox'] {
    margin: 0 10px 0 0; }
  .news-offers-form .checkbox-container a {
    color: #ffffff; }

option[value=""][disabled] {
  display: none; }

option {
  color: black; }

.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #ffffff; }

.news-offers-form .checkbox-container:hover input ~ .checkmark {
  background-color: #f07f0a; }

.news-offers-form .checkbox-container input:checked ~ .checkmark {
  background-color: #f07f0a; }

.checkmark:after {
  content: "";
  position: absolute;
  display: none; }

.news-offers-form .checkbox-container input:checked ~ .checkmark:after {
  display: block; }

.news-offers-form .checkbox-container .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid #ffffff;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg); }

.news-offers-form input:focus, .news-offers-form select:focus {
  border: 2px solid #f07f0a;
  box-shadow: none; }

.news-offers-form button.bt-news-offers {
  margin-top: 30px;
  margin-bottom: 20px;
  height: 46px;
  width: 120px;
  background: #f07f0a;
  color: #ffffff;
  text-align: center;
  text-transform: uppercase;
  border: none;
  border-radius: 0px;
  box-shadow: none; }

/* news-ofers-form end*/
/* materials-estimator-form */
.estimate-results {
  display: none; }

.materials-estimator-form {
  background: #eeeeee;
  padding-top: 10px;
  padding-right: 20px; }

.materials-estimator-form label {
  margin-top: 10px;
  margin-left: 10px;
  float: left;
  color: #000000;
  font-family: 'Franklin Gothic Demi';
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase; }

.materials-estimator-form label span.materials-estimator-unit {
  float: right; }

.materials-estimator-form input, .materials-estimator-form select {
  margin: 10px 10px 10px 10px;
  color: grey;
  height: 46px;
  border: none;
  background: #ffffff;
  font-weight: bolder; }

.materials-estimator-form input:focus, .materials-estimator-form select:focus {
  border: 2px solid #f07f0a;
  box-shadow: none; }

.materials-estimator-form button.bt-materials-estimator {
  margin-top: 30px;
  margin-bottom: 20px;
  height: 40px;
  width: 200px;
  background: #f07f0a;
  color: #ffffff;
  text-align: center;
  text-transform: uppercase;
  border: none;
  border-radius: 0px;
  box-shadow: none; }

/* end materials-estimator-form */
/* sticky header css */
.header-margin-top {
  margin-top: 15px; }

.logo-sticky-header {
  margin-top: 15px; }

.logo-text-sticky-header {
  margin-top: 5px;
  font-size: 15px !important;
  line-height: 1.4;
  text-transform: capitalize !important; }

.middle-help {
  width: 700px;
  float: left;
  font-size: 18px;
  font-weight: bold;
  color: #7f7f7f; }

.middle-help:hover {
  width: 700px;
  float: left;
  font-size: 18px;
  font-weight: bold;
  color: #7f7f7f; }

.middle-help span {
  color: #f07f0a;
  font-weight: blod; }

.not-visible {
  display: none; }

.logo-smaller {
  width: 50px;
  height: 110px; }

.fixed-header {
  background-color: #ffffff;
  animation-duration: .45s;
  animation-fill-mode: backwards;
  animation-name: fadeInDown;
  position: fixed;
  z-index: 100;
  width: 100%;
  top: 0;
  clear: both;
  border-bottom: 1px solid #ccccb3; }
  .fixed-header .middle-help {
    margin: 2px 0 0 0; }

/* end sticky header */
/* customer account */
.bg-customer-account {
  position: relative;
  width: 100%;
  min-height: 400px;
  background-color: #efefef;
  padding: 50px 10px 10px 10px; }

.customer-account-info-address a {
  color: #f1800a; }

.customer-account-info-address strong.box-title {
  font-weight: bolder; }

.customer-account-info-address a span.menage-addresses {
  margin-left: 30px;
  font-size: 15px;
  text-transform: capitalize;
  font-weight: normal; }

.customer-account-nav-menu {
  width: 450px;
  background-color: #efefef;
  float: left; }
  .customer-account-nav-menu ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    background-color: #ffffff; }
  .customer-account-nav-menu li a {
    display: block;
    height: 40px;
    color: #000000;
    font-family: 'Franklin Gothic Demi';
    font-size: 18px;
    text-transform: uppercase;
    text-decoration: none; }
    .customer-account-nav-menu li a:hover {
      background-color: #f1800a;
      color: white; }
    .customer-account-nav-menu li a.active {
      background-color: #f1800a;
      color: white; }

.block-collapsible-nav .content {
  background-color: #ffffff;
  padding: 0; }

@media (min-width: 768px) {
  body.amblog-index-category .page-main {
    max-width: 1500px;
    padding: 10px; }
  body.account.page-layout-2columns-left .sidebar-main {
    width: 450px; }
  body.account.page-layout-2columns-left .column.main {
    width: calc(100% - 450px); } }

.block-collapsible-nav .item {
  position: relative;
  margin: 0;
  padding: 0 0 0 32px; }
  .block-collapsible-nav .item a, .block-collapsible-nav .item &gt; strong {
    font-family: 'Franklin Gothic Demi';
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase; }
    .block-collapsible-nav .item a:hover, .block-collapsible-nav .item &gt; strong:hover {
      background: transparent; }
  .block-collapsible-nav .item:before {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    width: 23px;
    height: 26px;
    background-color: #f07f0a;
    content: " "; }
  .block-collapsible-nav .item.current {
    background-color: #f07f0a; }
    .block-collapsible-nav .item.current a, .block-collapsible-nav .item.current &gt; strong {
      border: none;
      color: #ffffff; }
    .block-collapsible-nav .item.current:before {
      background-color: #ffffff; }
  .block-collapsible-nav .item.myaccount:before {
    mask-image: url(../images/user-duotone.svg);
    -webkit-mask-image: url(../images/user-duotone.svg); }
  .block-collapsible-nav .item.myorders:before {
    mask-image: url(../images/basket-shopping-solid.svg);
    -webkit-mask-image: url(../images/basket-shopping-solid.svg); }
  .block-collapsible-nav .item.accountinformation:before {
    mask-image: url(../images/user-duotone.svg);
    -webkit-mask-image: url(../images/user-duotone.svg); }
  .block-collapsible-nav .item.addressbook:before {
    mask-image: url(../images/address-book-duotone.svg);
    -webkit-mask-image: url(../images/address-book-duotone.svg); }
  .block-collapsible-nav .item.storedpaymentmethods:before {
    height: 22px;
    mask-image: url(../images/credit-card-duotone.svg);
    -webkit-mask-image: url(../images/credit-card-duotone.svg); }
  .block-collapsible-nav .item.newslettersubscriptions:before {
    mask-image: url(../images/newspaper-duotone.svg);
    -webkit-mask-image: url(../images/newspaper-duotone.svg); }
  .block-collapsible-nav .item.logout:before {
    height: 21px;
    mask-image: url(../images/logout-icon.svg);
    -webkit-mask-image: url(../images/logout-icon.svg); }

.account .column.main {
  padding: 25px; }
  .account .column.main .block:not(.widget) .block-title {
    border: none;
    padding: 0; }
  .account .column.main a {
    color: #f07f0a; }
  .account .column.main .fieldset &gt; .legend {
    margin: 0;
    border: none;
    font-family: 'Franklin Gothic Demi';
    font-size: 26px;
    font-weight: bold;
    text-transform: uppercase; }
    .account .column.main .fieldset &gt; .legend:after {
      display: block;
      width: 80px;
      margin: 4px 0 15px 0;
      border-bottom: 4px solid #f07f0a;
      content: " "; }

.account .block-title {
  font-family: 'Franklin Gothic Demi';
  font-size: 26px;
  font-weight: bold;
  text-transform: uppercase; }
  .account .block-title:after {
    display: block;
    width: 80px;
    margin-bottom: 15px;
    border-bottom: 4px solid #f07f0a;
    content: " "; }
  .account .block-title a.action {
    margin-left: 30px;
    font-size: 15px;
    text-transform: capitalize;
    font-weight: normal;
    color: #f07f0a; }

.customer-account-info-address {
  margin-left: 60px;
  width: 600px;
  float: left; }

.customer-account-info-address label {
  font-family: 'Franklin Gothic Demi';
  font-size: 18px;
  font-weight: 900; }

.account-info-header {
  font-family: 'Franklin Gothic Demi';
  font-size: 30px;
  font-weight: bold;
  text-transform: uppercase; }

.account-info-header-border {
  width: 80px;
  margin-bottom: 15px;
  border-bottom: 4px solid #f07f0a; }

.account-info-title {
  margin-top: 25px;
  font-family: 'Franklin Gothic Demi';
  font-size: 26px;
  font-weight: bold;
  text-transform: uppercase; }

/* end */
/* customer account icon */
.customer-account-nav-menu li a i, .customer-account-info-address i {
  display: inline-block;
  margin: 10px 10px -5px 20px;
  width: 25px;
  height: 25px; }

.customer-account-info-address i {
  display: inline-block;
  margin: 10px 10px -5px 5px;
  width: 25px;
  height: 25px; }

/* end */
.blog-categories-selector {
  text-align: right;
  margin: 0 0 40px 0; }
  .blog-categories-selector .blog-categories {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 50%;
    border: 1px solid #efefef; }
    .blog-categories-selector .blog-categories:after {
      position: absolute;
      right: 0;
      top: 0;
      height: 40px;
      width: 40px;
      background: #f07f0a url(../images/bc-select.svg) 50% 50% no-repeat;
      pointer-events: none;
      content: " "; }
    .blog-categories-selector .blog-categories #bc-select {
      border: none;
      padding: 8px;
      height: 40px; }
      .blog-categories-selector .blog-categories #bc-select:focus {
        box-shadow: none; }

/* custom-amasty-blog-recentposts */
#custom-amasty-blog-recentposts .post-date,
#custom-amasty-blog-grid .post-date {
  padding: 12px 0 0 0;
  text-align: center;
  font-family: 'Franklin Gothic Demi';
  font-size: 16px;
  font-weight: bold; }

#custom-amasty-blog-recentposts .post-header-image a,
#custom-amasty-blog-grid .post-header-image a {
  padding: 0;
  margin: 0; }

#custom-amasty-blog-recentposts .post-header-image img,
#custom-amasty-blog-grid .post-header-image img {
  width: 100%;
  height: auto;
  vertical-align: top; }

#custom-amasty-blog-recentposts .post-content,
#custom-amasty-blog-grid .post-content {
  font-family: 'Franklin Gothic Book';
  padding: 0;
  background: #ffffff; }

#custom-amasty-blog-recentposts .post-title,
#custom-amasty-blog-grid .post-title {
  background-color: #f07f0a;
  margin: 0;
  padding: 10px 15px; }
  #custom-amasty-blog-recentposts .post-title a,
  #custom-amasty-blog-grid .post-title a {
    /*
            display: flex;
            align-items: center;
            justify-content: center;
            */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 48px;
    font-family: 'Franklin Gothic';
    font-size: 18px;
    line-height: 24px;
    font-weight: 900;
    color: #ffffff;
    text-align: center; }
    #custom-amasty-blog-recentposts .post-title a:hover,
    #custom-amasty-blog-grid .post-title a:hover {
      text-decoration: none; }

#custom-amasty-blog-recentposts .short-content,
#custom-amasty-blog-grid .short-content {
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 128px;
  margin: 10px 22px 0 22px;
  font-size: 16px;
  line-height: 1.6;
  text-align: center; }
  #custom-amasty-blog-recentposts .short-content p,
  #custom-amasty-blog-grid .short-content p {
    font-size: 16px; }

#custom-amasty-blog-recentposts .post-read-more,
#custom-amasty-blog-grid .post-read-more {
  text-align: center; }
  #custom-amasty-blog-recentposts .post-read-more a,
  #custom-amasty-blog-grid .post-read-more a {
    display: inline-block;
    padding: 4px 12px;
    margin: 20px 0;
    border-radius: 8px;
    background-color: #f07f0a;
    font-family: 'Franklin Gothic';
    font-size: 18px;
    color: #ffffff;
    text-transform: uppercase; }
    #custom-amasty-blog-recentposts .post-read-more a:hover,
    #custom-amasty-blog-grid .post-read-more a:hover {
      text-decoration: none; }

#custom-amasty-blog-recentposts {
  min-height: 500px;
  max-width: 1320px;
  margin: 0 auto; }

#custom-amasty-blog-grid .post,
.amblog-index-post #custom-amasty-blog-recentposts .post {
  border: 1px solid #e0e0e0;
  margin: 0 0 40px 0; }

.amblog-index-category .mgz-container {
  max-width: 100%; }

.blog-category-name {
  margin: 0;
  font-size: 36px;
  text-transform: uppercase; }
  .blog-category-name:after {
    display: block;
    background-color: #f07f0a;
    margin: 10px 0 0 0;
    height: 4px;
    width: 80px;
    content: " "; }

.amblog-links a {
  display: block;
  margin: 0;
  padding: 4px 10px;
  border-left: 1px solid #e0e0e0;
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
  font-family: 'Franklin Gothic Book';
  font-size: 16px;
  color: #f07f0a;
  text-decoration: none; }
  .amblog-links a.-disabled {
    pointer-events: none; }
  .amblog-links a.amblog-link-next {
    border-right: 1px solid #e0e0e0; }
  .amblog-links a.amblog-link-current {
    background-color: #f07f0a;
    color: #ffffff; }

.amblog-pager-container-wrap {
  margin: 40px 0 0 0;
  text-align: center; }
  .amblog-pager-container-wrap .amblog-pager-container {
    display: inline-block;
    width: auto !important;
    margin: 0; }
  .amblog-pager-container-wrap .amblog-pagination {
    display: block;
    text-align: right; }

/* end */
/* custom-amasty-related */
.custom-amasty-related {
  margin: 0 auto -40px auto;
  background: url(../images/our-history-background.jpg) top center no-repeat;
  background-size: cover; }
  .custom-amasty-related .header {
    margin-top: 60px;
    text-align: center;
    text-transform: uppercase;
    color: #ffffff; }
  .custom-amasty-related .separator {
    margin: 0 auto;
    width: 80px;
    text-align: center;
    border-bottom: 4px solid #f07f0a; }
  .custom-amasty-related .block-related-posts {
    margin-top: 40px; }
  .custom-amasty-related .bt-view-all {
    margin: 20px 0 50px 0;
    text-align: center; }
    .custom-amasty-related .bt-view-all button {
      height: 40px;
      width: 200px;
      background: #f07f0a;
      text-transform: uppercase;
      text-align: center;
      font-family: 'Franklin Gothic Demi';
      font-size: 16px;
      font-weight: bold;
      border: none;
      border-radius: 0px;
      box-shadow: none; }
      .custom-amasty-related .bt-view-all button a {
        color: #ffffff; }
        .custom-amasty-related .bt-view-all button a:hover {
          text-decoration: none; }

.amblog-index-post .page-main {
  max-width: 100%; }

.custom-amasty-blog-post {
  margin: 0 auto; }
  .custom-amasty-blog-post .blog-post-bc {
    background-color: #efefef;
    padding: 4px 0; }
    .custom-amasty-blog-post .blog-post-bc a {
      font-family: 'Franklin Gothic Book';
      color: #272625;
      text-decoration: none; }
  .custom-amasty-blog-post .image {
    width: 100%;
    height: auto; }
    .custom-amasty-blog-post .image img {
      width: 100%;
      height: auto; }
  .custom-amasty-blog-post .blog-post-date {
    margin: 0 0 40px 0;
    font-size: 20px;
    color: #f07f0a; }
  .custom-amasty-blog-post .news-post-header {
    text-transform: uppercase;
    color: #000000; }
    .custom-amasty-blog-post .news-post-header h1 {
      margin: 0;
      font-family: 'Franklin Gothic Demi'; }
  .custom-amasty-blog-post .separator {
    margin: 20px 0;
    width: 60px;
    border-bottom: 4px solid #f07f0a; }
  .custom-amasty-blog-post .post-content .post-full-text {
    clear: both;
    text-align: left;
    margin-top: 60px;
    margin-bottom: 20px;
    font-family: 'Franklin Gothic Book';
    font-size: 18px; }
  .custom-amasty-blog-post .post-content .back {
    text-align: left;
    text-transform: uppercase;
    margin-top: 40px;
    margin-bottom: 50px;
    font-family: 'Franklin Gothic Demi';
    font-size: 18px; }
    .custom-amasty-blog-post .post-content .back a {
      color: #000000; }
      .custom-amasty-blog-post .post-content .back a::hover {
        text-decoration: none; }
  .custom-amasty-blog-post .blog-post-sb {
    border-left: 1px solid #efefef; }
    .custom-amasty-blog-post .blog-post-sb h3 {
      margin: 0;
      text-transform: uppercase; }
    .custom-amasty-blog-post .blog-post-sb .sidebar-category {
      margin: 0 0 8px 0; }
      .custom-amasty-blog-post .blog-post-sb .sidebar-category a {
        position: relative;
        display: block;
        padding: 10px 18px;
        border: 2px solid #D35001;
        background-color: #f07f0a;
        font-size: 20px;
        color: #ffffff;
        text-decoration: none; }
        .custom-amasty-blog-post .blog-post-sb .sidebar-category a:after {
          position: absolute;
          right: 18px;
          font-family: "Font Awesome 5 Free";
          font-weight: 900;
          content: "\f054";
          color: #ffffff; }

/* end */
.doc-row {
  max-width: 700px;
  margin: 0 0 30px 0; }
  .doc-row .doc-title {
    background-color: #FFF1E9;
    padding: 3px 12px;
    border: 1px solid #f07f0a;
    color: #f07f0a; }
    .doc-row .doc-title h3 {
      font-family: 'Franklin Gothic Book'; }
  .doc-row .doc-dllink {
    margin: 0 0 0 12px; }
    .doc-row .doc-dllink a {
      position: relative;
      display: block;
      text-decoration: none;
      background-color: #f07f0a;
      padding: 4px 12px;
      font-family: 'Franklin Gothic Book';
      color: #ffffff; }
      .doc-row .doc-dllink a:after {
        position: absolute;
        display: block;
        top: 9px;
        right: 12px;
        width: 21px;
        height: 21px;
        background: transparent url(../images/icon-doc-download.svg) 0 0 no-repeat;
        content: " "; }

.acc-reg-block {
  border: 1px solid #a4a4a4;
  background-color: #d3d3d3;
  margin: 0 8px;
  padding: 30px 20px 80px 20px !important; }
  .acc-reg-block ul li {
    margin: 0; }
  .acc-reg-block .mgz-element-button {
    position: absolute;
    bottom: 30px; }

.acc-reg-form .acc-reg-section {
  margin: 0 0 20px 0; }

.acc-reg-form .acc-reg-tbl {
  display: table;
  border-collapse: collapse;
  width: 100%;
  font-size: 18px; }
  .acc-reg-form .acc-reg-tbl .acc-reg-tbl-row {
    display: table-row; }
    .acc-reg-form .acc-reg-tbl .acc-reg-tbl-row &gt; div {
      display: table-cell;
      vertical-align: top;
      padding: 6px 16px;
      border-top: 1px solid #f07f0a;
      border-left: 1px solid #f07f0a;
      border-right: 1px solid #f07f0a; }
    .acc-reg-form .acc-reg-tbl .acc-reg-tbl-row .acc-reg-label {
      width: 25%; }
    .acc-reg-form .acc-reg-tbl .acc-reg-tbl-row .acc-reg-input {
      position: relative;
      width: 75%;
      background-color: #F8F8F8; }
      .acc-reg-form .acc-reg-tbl .acc-reg-tbl-row .acc-reg-input.acc-reg-input-small {
        width: 25%; }
      .acc-reg-form .acc-reg-tbl .acc-reg-tbl-row .acc-reg-input input[type="text"],
      .acc-reg-form .acc-reg-tbl .acc-reg-tbl-row .acc-reg-input input[type="email"],
      .acc-reg-form .acc-reg-tbl .acc-reg-tbl-row .acc-reg-input select {
        width: 100%;
        background: transparent;
        border: none;
        padding: 0;
        font-size: 18px; }
        .acc-reg-form .acc-reg-tbl .acc-reg-tbl-row .acc-reg-input input[type="text"]:focus,
        .acc-reg-form .acc-reg-tbl .acc-reg-tbl-row .acc-reg-input input[type="email"]:focus,
        .acc-reg-form .acc-reg-tbl .acc-reg-tbl-row .acc-reg-input select:focus {
          box-shadow: none; }
      .acc-reg-form .acc-reg-tbl .acc-reg-tbl-row .acc-reg-input input[type="checkbox"] {
        position: static;
        margin: 0 6px 0 0;
        vertical-align: middle; }
      .acc-reg-form .acc-reg-tbl .acc-reg-tbl-row .acc-reg-input .acc-reg-select {
        position: relative; }
        .acc-reg-form .acc-reg-tbl .acc-reg-tbl-row .acc-reg-input .acc-reg-select select {
          appearance: none; }
        .acc-reg-form .acc-reg-tbl .acc-reg-tbl-row .acc-reg-input .acc-reg-select:after {
          display: block;
          position: absolute;
          right: -16px;
          top: -6px;
          height: 46px;
          width: 32px;
          background: #f07f0a url(../images/bc-select.svg) 50% 50% no-repeat;
          transform: rotate(180deg);
          pointer-events: none;
          content: " "; }
    .acc-reg-form .acc-reg-tbl .acc-reg-tbl-row .acc-reg-celltable {
      padding: 0 !important; }
      .acc-reg-form .acc-reg-tbl .acc-reg-tbl-row .acc-reg-celltable .acc-reg-celltable-inner {
        display: table;
        width: 100%; }
        .acc-reg-form .acc-reg-tbl .acc-reg-tbl-row .acc-reg-celltable .acc-reg-celltable-inner .acc-reg-tbl-row:first-of-type &gt; div {
          border-top: none; }
        .acc-reg-form .acc-reg-tbl .acc-reg-tbl-row .acc-reg-celltable .acc-reg-celltable-inner .acc-reg-tbl-row:last-of-type &gt; div {
          border-bottom: none; }
        .acc-reg-form .acc-reg-tbl .acc-reg-tbl-row .acc-reg-celltable .acc-reg-celltable-inner .acc-reg-tbl-row &gt; div:first-of-type {
          border-left: none; }
        .acc-reg-form .acc-reg-tbl .acc-reg-tbl-row .acc-reg-celltable .acc-reg-celltable-inner .acc-reg-tbl-row &gt; div:last-of-type {
          border-right: none; }
    .acc-reg-form .acc-reg-tbl .acc-reg-tbl-row .acc-reg-col-16 {
      width: 17%; }
    .acc-reg-form .acc-reg-tbl .acc-reg-tbl-row .acc-reg-col-13 {
      width: 33%; }
    .acc-reg-form .acc-reg-tbl .acc-reg-tbl-row .acc-reg-col-12 {
      width: 50%; }
    .acc-reg-form .acc-reg-tbl .acc-reg-tbl-row .acc-reg-col-23 {
      width: 67%; }
    .acc-reg-form .acc-reg-tbl .acc-reg-tbl-row .acc-reg-radio {
      /*
                input[type="radio"] {
                    display: none;
                }
                input[type="radio"]+label {
                    position: relative;
                    display: inline-block;
                    padding: 0 0 0 22px;

                    &amp;:before {
                        display: block;
                        position: absolute;
                        top: 8px;
                        left: 0;
                        width: 15px;
                        height: 15px;
                        border-radius: 15px;
                        background-color: #ffffff;
                        border: 1px solid $base-orange;
                        content: " ";
                    }
                }
                input[type="radio"]:checked+span {
                    &amp;:before {
                        background-color: $base-orange;
                    }
                }
                */ }
      .acc-reg-form .acc-reg-tbl .acc-reg-tbl-row .acc-reg-radio div.xmage-error {
        position: absolute; }
    .acc-reg-form .acc-reg-tbl .acc-reg-tbl-row .acc-reg-radio + .acc-reg-radio {
      margin: 0 0 0 30px; }
    .acc-reg-form .acc-reg-tbl .acc-reg-tbl-row .acc-reg-checkbox-row {
      display: flex;
      align-items: center; }
      .acc-reg-form .acc-reg-tbl .acc-reg-tbl-row .acc-reg-checkbox-row &gt; div:first-of-type {
        width: 99%;
        padding: 0 15px 0 0; }
    .acc-reg-form .acc-reg-tbl .acc-reg-tbl-row .acc-reg-checkbox input[type="checkbox"] {
      display: none; }
    .acc-reg-form .acc-reg-tbl .acc-reg-tbl-row .acc-reg-checkbox input[type="checkbox"] + span {
      display: block;
      position: relative;
      width: 46px;
      height: 46px;
      background-color: #e3e3e3; }
    .acc-reg-form .acc-reg-tbl .acc-reg-tbl-row .acc-reg-checkbox input[type="checkbox"]:checked + span:before {
      display: block;
      position: absolute;
      top: 8px;
      left: 8px;
      width: 30px;
      height: 30px;
      background-color: #272625;
      transform-origin: center;
      clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
      content: " "; }
    .acc-reg-form .acc-reg-tbl .acc-reg-tbl-row .acc-reg-singlecell input[type="checkbox"] {
      vertical-align: text-top; }
  .acc-reg-form .acc-reg-tbl:last-of-type .acc-reg-tbl-row &gt; div {
    border-bottom: 1px solid #f07f0a; }

/* book-your-skip-online */
#book-your-skip-online {
  position: relative;
  width: 65%;
  margin: 0 auto; }

#book-your-skip-online .slider-container {
  border: 2px solid #f07f0a;
  font-family: 'Franklin Gothic Demi';
  height: 300px;
  margin-bottom: 40px; }

#book-your-skip-online .slider-container .mySlides {
  width: 100%;
  height: auto;
  display: none; }

#book-your-skip-online .slider-container .mySlides h2 {
  text-transform: uppercase;
  font-size: 30px;
  font-weight: 900; }

#book-your-skip-online .slider-container .mySlides .slide-content {
  width: 100%;
  min-height: 250px;
  margin: 0 auto; }

#book-your-skip-online .slider-container .mySlides .slide-content div.img-skip {
  width: 400px;
  height: 250px;
  float: left;
  background: url(../images/skip_empty_yards.png) no-repeat top center; }

#book-your-skip-online .slider-container .mySlides .slide-content .skip-size-one {
  position: absolute;
  top: 155px;
  left: 305px;
  font-size: 27px;
  font-weight: bold; }

#book-your-skip-online .slider-container .mySlides .slide-content .skip-size-two {
  position: absolute;
  top: 155px;
  left: 296px;
  font-size: 27px;
  font-weight: bold; }

#book-your-skip-online .slider-container .mySlides .slide-content div.table {
  float: left;
  margin-left: 60px; }

#book-your-skip-online .slider-container .mySlides .slide-content div.table table {
  width: 400px; }

#book-your-skip-online .slider-container .mySlides .slide-content div.table table th {
  text-align: left;
  font-size: 21px;
  font-weight: bold; }

#book-your-skip-online .slider-container .mySlides .slide-content div.table table td.td-value {
  text-align: left;
  font-family: 'Franklin Gothic Book';
  font-size: 16px;
  font-weight: bold; }

#book-your-skip-online .slider-container .mySlides .slide-content div.table table td.bold {
  text-align: left;
  font-size: 21px;
  font-weight: bold; }

#book-your-skip-online .slider-container .mySlides .slide-content div.vertical-separator {
  width: 2px;
  height: 250px;
  float: left;
  margin-top: 20px;
  margin-bottom: 20px;
  background-color: #f07f0a; }

#book-your-skip-online .slider-container .mySlides .slide-content div.skip-size-fit {
  height: auto;
  float: left;
  margin-left: 20px;
  margin-top: 5px;
  margin-bottom: 20px;
  text-transform: uppercase; }

#book-your-skip-online .slider-container .mySlides .slide-content div.skip-size-fit h2 {
  font-size: 25px; }

#book-your-skip-online .slider-container .mySlides .slide-content div.skip-size-fit ul {
  margin-left: 15px;
  list-style: circle outside url(../images/orange-dot.png);
  font-family: 'Franklin Gothic Book'; }

#book-your-skip-online .slider-container .mySlides .slide-content div.skip-size-fit ul li {
  text-align: left;
  height: 16px; }

#book-your-skip-online .slider-container .mySlides .slide-content div.skip-size-fit button {
  margin-top: 0px;
  margin-left: 5px;
  height: 50px;
  width: 140px;
  background: #f07f0a;
  text-transform: uppercase;
  text-align: center;
  font-family: 'Franklin Gothic Demi';
  font-size: 16px;
  font-weight: 900;
  border: none;
  border-radius: 0px;
  box-shadow: none; }

#book-your-skip-online .slider-container .mySlides .slide-content div.skip-size-fit button a {
  color: #ffffff;
  text-decoration: none; }

#book-your-skip-online div.slider-nav {
  width: 80%;
  margin: 0 auto; }

#book-your-skip-online div.slider-nav a {
  text-decoration: none; }

#book-your-skip-online div.slider-nav a.prev {
  cursor: pointer;
  position: absolute;
  top: 25%;
  left: -50px;
  width: auto;
  padding: 10px;
  margin-top: 20px;
  background-color: #efefef;
  color: #f07f0a;
  font-weight: bold;
  font-size: 25px;
  border-radius: 0 0 0 0;
  user-select: none;
  -webkit-user-select: none; }

#book-your-skip-online div.slider-nav a.next {
  cursor: pointer;
  position: absolute;
  top: 25%;
  right: -50px;
  width: auto;
  padding: 10px;
  margin-top: 20px;
  background-color: #efefef;
  color: #f07f0a;
  font-weight: bold;
  font-size: 25px;
  border-radius: 0 0 0 0;
  user-select: none;
  -webkit-user-select: none; }

#book-your-skip-online div.bottom-nav {
  font-size: 18px;
  font-family: 'Franklin Gothic Demi';
  clear: both;
  width: 70%;
  margin: 0 auto;
  font-weight: bold; }

#book-your-skip-online div.bottom-nav a {
  color: #000000; }

#book-your-skip-online div.bottom-nav a.active,
#book-your-skip-online div.bottom-nav a.dot:hover {
  color: #f07f0a;
  text-decoration: none;
  padding-bottom: 10px;
  border-bottom-style: solid;
  border-bottom-width: 4px; }

.next {
  right: 0;
  border-radius: 0 0 0 0; }

.cursor {
  cursor: pointer; }

/* end */
.book-skip-online {
  position: relative;
  width: 80%;
  margin: 0 auto;
  color: #ffffff; }
  .book-skip-online .slider-container {
    border: 2px solid #ffffff;
    font-family: 'Franklin Gothic Demi';
    margin-bottom: 40px; }
    .book-skip-online .slider-container .mySlides {
      width: 100%;
      height: auto;
      display: none; }
      .book-skip-online .slider-container .mySlides h2 {
        margin: 0 0 32px 0;
        text-transform: uppercase;
        font-size: 30px;
        font-weight: 900; }
      .book-skip-online .slider-container .mySlides .slide-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin: 0 auto;
        padding: 20px; }
        .book-skip-online .slider-container .mySlides .slide-content .img-skip-sep {
          display: none; }
        .book-skip-online .slider-container .mySlides .slide-content .img-skip {
          flex-basis: 40%; }
        .book-skip-online .slider-container .mySlides .slide-content .table table {
          width: 400px; }
          .book-skip-online .slider-container .mySlides .slide-content .table table th, .book-skip-online .slider-container .mySlides .slide-content .table table td {
            padding: 6px 0;
            vertical-align: middle; }
          .book-skip-online .slider-container .mySlides .slide-content .table table th {
            text-align: left;
            font-size: 21px;
            font-weight: bold; }
          .book-skip-online .slider-container .mySlides .slide-content .table table td.td-value {
            text-align: left;
            font-family: 'Franklin Gothic Book';
            font-size: 16px;
            font-weight: bold; }
          .book-skip-online .slider-container .mySlides .slide-content .table table td.bold {
            text-align: left;
            font-size: 21px;
            font-weight: bold; }
        .book-skip-online .slider-container .mySlides .slide-content .vertical-separator {
          width: 2px;
          height: 200px;
          background-color: #ffffff; }
        .book-skip-online .slider-container .mySlides .slide-content .skip-size-fit {
          text-transform: uppercase; }
          .book-skip-online .slider-container .mySlides .slide-content .skip-size-fit h2 {
            font-size: 25px; }
          .book-skip-online .slider-container .mySlides .slide-content .skip-size-fit ul {
            list-style: none;
            padding: 0;
            margin: 0 0 20px 15px;
            font-family: 'Franklin Gothic Book'; }
            .book-skip-online .slider-container .mySlides .slide-content .skip-size-fit ul li {
              padding: 0;
              margin: 0 0 12px 0;
              text-align: left;
              height: 16px;
              white-space: nowrap; }
              .book-skip-online .slider-container .mySlides .slide-content .skip-size-fit ul li:before {
                display: inline-block;
                background-color: #f07f0a;
                margin: 0 10px 0 0;
                width: 8px;
                height: 8px;
                border-radius: 50%;
                content: " "; }
          .book-skip-online .slider-container .mySlides .slide-content .skip-size-fit button {
            height: 50px;
            width: 140px;
            background: #f07f0a;
            text-transform: uppercase;
            text-align: center;
            font-family: 'Franklin Gothic Demi';
            font-size: 16px;
            font-weight: 900;
            border: none;
            border-radius: 6px;
            box-shadow: none; }
            .book-skip-online .slider-container .mySlides .slide-content .skip-size-fit button a {
              color: #ffffff;
              text-decoration: none; }
  .book-skip-online .slider-nav {
    width: 80%;
    margin: 0 auto; }
    .book-skip-online .slider-nav a {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: auto;
      padding: 10px;
      background-color: #efefef;
      color: #f07f0a;
      font-weight: bold;
      font-size: 25px;
      user-select: none;
      -webkit-user-select: none;
      text-decoration: none;
      cursor: pointer; }
    .book-skip-online .slider-nav a.prev {
      left: -50px; }
    .book-skip-online .slider-nav a.next {
      right: -50px; }
  .book-skip-online .bottom-nav {
    font-size: 18px;
    font-family: 'Franklin Gothic Demi';
    clear: both;
    height: 40px;
    width: 70%;
    margin: 0 auto;
    font-weight: bold; }
    .book-skip-online .bottom-nav .bottom-nav-arrows {
      position: relative; }
      .book-skip-online .bottom-nav .bottom-nav-arrows a {
        position: absolute;
        width: auto;
        padding: 5px;
        background-color: #efefef;
        color: #f07f0a;
        font-weight: bold;
        font-size: 15px;
        user-select: none;
        -webkit-user-select: none;
        text-decoration: none;
        cursor: pointer; }
      .book-skip-online .bottom-nav .bottom-nav-arrows a.prev {
        left: 0; }
      .book-skip-online .bottom-nav .bottom-nav-arrows a.next {
        right: 0; }
    .book-skip-online .bottom-nav .bottom-nav-items {
      height: 40px;
      margin: 0 30px;
      overflow: hidden; }
      .book-skip-online .bottom-nav .bottom-nav-items .bottom-nav-items-inner {
        position: relative;
        width: 5000px;
        left: 0;
        transition: all 0.3s ease; }
        .book-skip-online .bottom-nav .bottom-nav-items .bottom-nav-items-inner .bottom-nav-item {
          float: left;
          margin: 0 8px; }
          .book-skip-online .bottom-nav .bottom-nav-items .bottom-nav-items-inner .bottom-nav-item a {
            white-space: nowrap;
            color: #ffffff; }
            .book-skip-online .bottom-nav .bottom-nav-items .bottom-nav-items-inner .bottom-nav-item a:after {
              display: block;
              width: 50px;
              height: 4px;
              margin: 4px auto 0 auto;
              content: " "; }
            .book-skip-online .bottom-nav .bottom-nav-items .bottom-nav-items-inner .bottom-nav-item a.active, .book-skip-online .bottom-nav .bottom-nav-items .bottom-nav-items-inner .bottom-nav-item a.dot:hover {
              color: #f07f0a;
              text-decoration: none; }
            .book-skip-online .bottom-nav .bottom-nav-items .bottom-nav-items-inner .bottom-nav-item a.active:after, .book-skip-online .bottom-nav .bottom-nav-items .bottom-nav-items-inner .bottom-nav-item a.dot:hover:after {
              background-color: #f07f0a; }

.book-skip-online-white .book-skip-online {
  color: #272625; }
  .book-skip-online-white .book-skip-online .slider-container {
    border: 2px solid #f07f0a; }
    .book-skip-online-white .book-skip-online .slider-container .mySlides .slide-content .vertical-separator {
      background-color: #f07f0a; }
  .book-skip-online-white .book-skip-online .bottom-nav .bottom-nav-items .bottom-nav-items-inner .bottom-nav-item a {
    color: #272625; }
    .book-skip-online-white .book-skip-online .bottom-nav .bottom-nav-items .bottom-nav-items-inner .bottom-nav-item a.active {
      color: #f07f0a; }

.mgz-element-accordion_section .full_width_row .mgz-container {
  max-width: 100%; }

.cursor {
  cursor: pointer; }

/* what-you-will-get */
#what-you-will-get {
  position: relative;
  width: 80%;
  margin: 0 auto;
  color: #ffffff; }
  #what-you-will-get .slider-container {
    border: 2px solid #ffffff;
    margin-bottom: 40px;
    padding: 20px; }
    #what-you-will-get .slider-container .mySlides {
      display: none; }
      #what-you-will-get .slider-container .mySlides .slide-content {
        display: flex;
        align-items: center;
        gap: 20px; }
        #what-you-will-get .slider-container .mySlides .slide-content .slide-img {
          flex-basis: 33%; }
          #what-you-will-get .slider-container .mySlides .slide-content .slide-img img {
            max-width: 100%; }
        #what-you-will-get .slider-container .mySlides .slide-content .slide-txt {
          flex-basis: 66%; }
          #what-you-will-get .slider-container .mySlides .slide-content .slide-txt h3 {
            margin: 0 0 8px 0;
            font-family: 'Franklin Gothic Demi';
            font-size: 20px;
            font-weight: 900;
            text-align: left;
            text-transform: uppercase; }
          #what-you-will-get .slider-container .mySlides .slide-content .slide-txt .description {
            text-align: left;
            font-size: 18px; }
  #what-you-will-get .slider-nav {
    width: 80%;
    margin: 0 auto; }
    #what-you-will-get .slider-nav a {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      text-decoration: none;
      width: auto;
      padding: 15px;
      background-color: #efefef;
      color: #f07f0a;
      font-weight: bold;
      font-size: 25px;
      border-radius: 0 0 0 0;
      user-select: none;
      -webkit-user-select: none;
      cursor: pointer; }
      #what-you-will-get .slider-nav a.prev {
        left: -50px; }
      #what-you-will-get .slider-nav a.next {
        right: -50px; }

/* end */
#customer-account-login {
  width: 80%; }
  #customer-account-login .new-customer,
  #customer-account-login .registered-customer {
    margin-top: 60px;
    margin-bottom: 15px;
    font-family: 'Franklin Gothic Demi';
    font-size: 35px;
    font-weight: bold;
    text-transform: uppercase; }
  #customer-account-login .header-border {
    width: 80px;
    border-bottom: 4px solid #f07f0a; }
  #customer-account-login p.new-customer-header-text {
    margin-top: 20px; }
  #customer-account-login .new-customer-button button {
    margin-top: 10px;
    width: 50%;
    height: 40px;
    text-transform: uppercase;
    background-color: #f07f0a;
    border-radius: 0px;
    box-shadow: none;
    font-family: 'Franklin Gothic Demi';
    font-size: 18px; }
    #customer-account-login .new-customer-button button a {
      color: #ffffff; }
  #customer-account-login .login-form {
    background-color: #efefef;
    margin-top: 20px; }
    #customer-account-login .login-form p.note {
      margin-top: 10px;
      margin-left: 10px; }
    #customer-account-login .login-form label {
      float: left;
      margin-left: 10px;
      margin-bottom: 5px;
      font-family: 'Franklin Gothic Demi';
      font-size: 16px; }
    #customer-account-login .login-form input {
      margin-left: 10px;
      margin-bottom: 10px;
      height: 40px;
      border: none; }
  #customer-account-login .bt-login button {
    margin-top: 10px;
    margin-left: 10px;
    margin-bottom: 10px;
    width: 80%;
    height: 40px;
    color: #ffffff;
    text-transform: uppercase;
    background-color: #f07f0a;
    border-radius: 0px;
    box-shadow: none;
    font-family: 'Franklin Gothic Demi';
    font-size: 18px; }
  #customer-account-login .login-link a {
    color: #f1800a; }

form.create.account .legend {
  border: none;
  font-family: 'Franklin Gothic Demi';
  font-size: 26px;
  font-weight: bold;
  text-transform: uppercase; }
  form.create.account .legend:after {
    margin: 8px 0 0 0;
    display: block;
    height: 4px;
    width: 80px;
    background-color: #f07f0a;
    content: " "; }

form.create.account .additional_info {
  display: none; }

/* checkout */
.page-wrapper header.page-header {
  display: none; }

.checkout-onepage-success .col.sku {
  display: none; }

.checkout-onepage-success .table-order-items .items-qty {
  line-height: 1; }

.checkout-index-index .page-main {
  max-width: 1400px; }

#checkout {
  margin: 0 auto;
  padding: 0;
  font-family: 'Franklin Gothic Book'; }
  #checkout br {
    display: none; }
  #checkout .opc-wrapper .form-login {
    border: none; }
  #checkout .amcheckout-form-login fieldset {
    margin: 0; }
  #checkout .opc-wrapper .form-login,
  #checkout .opc-wrapper .form-shipping-address {
    margin: 0;
    padding: 0;
    border: none;
    max-width: 100%; }
  #checkout .checkout-agreement input[type="checkbox"] {
    height: 1px; }
  #checkout .checkout-agreement .action-show {
    color: inherit;
    font-size: 12px;
    padding: 0 0 0 3px; }
  #checkout .checkout-header {
    width: 100%;
    padding: 0 15px; }
    #checkout .checkout-header .header-container .logo-text-right {
      float: left; }
    #checkout .checkout-header .header-container-checkout {
      display: flex;
      justify-content: space-between; }
      #checkout .checkout-header .header-container-checkout .header-checkout-logo {
        margin: 0 15px 0 0;
        flex-shrink: 0; }
      #checkout .checkout-header .header-container-checkout .logo,
      #checkout .checkout-header .header-container-checkout .logo-text {
        float: left; }
      #checkout .checkout-header .header-container-checkout .logo {
        max-width: 100%;
        margin-bottom: 0; }
      #checkout .checkout-header .header-container-checkout div.logo {
        margin: 0 20px 0 0; }
      #checkout .checkout-header .header-container-checkout .logo-text p span,
      #checkout .checkout-header .header-container-checkout .logo-text span {
        color: #f07f0a; }
      #checkout .checkout-header .header-container-checkout .logo-text,
      #checkout .checkout-header .header-container-checkout .logo-text-right {
        text-transform: uppercase;
        font-family: 'Franklin Gothic Demi';
        font-size: 18px; }
      #checkout .checkout-header .header-container-checkout .logo-text-right &gt; div {
        display: inline-block; }
      #checkout .checkout-header .header-container-checkout .logo-text-right a {
        margin: 0 0 0 55px;
        color: #000000; }
        #checkout .checkout-header .header-container-checkout .logo-text-right a:hover {
          color: #000000;
          text-decoration: none; }
      #checkout .checkout-header .header-container-checkout .logo-text-right span {
        color: #f07f0a; }
    #checkout .checkout-header .below-logo {
      margin: 25px 0 0 0; }
    #checkout .checkout-header .orange-separator {
      float: left;
      width: 80px;
      margin: 5px 0 30px 0;
      border-bottom: 4px solid #f07f0a; }
    #checkout .checkout-header div.text-fill-form {
      clear: both;
      font-size: 18px;
      font-weight: 700;
      text-align: left;
      padding-top: 5px; }
    #checkout .checkout-header .description {
      font-size: 14px;
      text-align: left; }
      #checkout .checkout-header .description span.account-icon {
        display: inline-block;
        width: 20px;
        height: 21px;
        margin-right: 6px;
        background-image: url(../images/account-checkout-icon.png);
        background-repeat: no-repeat;
        background-position: 0px 3px; }
      #checkout .checkout-header .description a {
        color: #f07f0a; }
        #checkout .checkout-header .description a:hover {
          color: #f07f0a;
          text-decoration: none; }
  #checkout .authentication-wrapper {
    display: none; }
  #checkout .step-content &gt; .amcheckout-wrapper {
    padding: 20px 25px; }
    #checkout .step-content &gt; .amcheckout-wrapper .block {
      margin: 0; }
  #checkout .opc-block-summary .step-content &gt; .amcheckout-wrapper {
    background-color: #efefef; }
  #checkout .checkout-block {
    background-color: #ffffff;
    margin: 0;
    padding: 0 12px;
    box-shadow: none; }
    #checkout .checkout-block .opc-block-summary {
      background-color: #ffffff; }
    #checkout .checkout-block li {
      background: #efefef;
      box-shadow: none; }
    #checkout .checkout-block .step-title {
      background-color: #000000;
      margin: 0;
      padding-left: 25px;
      height: 50px;
      color: #ffffff;
      font-family: 'Franklin Gothic Demi';
      font-size: 20px;
      line-height: 50px;
      text-align: left;
      text-transform: uppercase; }
      #checkout .checkout-block .step-title:before {
        display: inline-block;
        margin: 0 10px 0 0;
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        color: #f07f0a; }
    #checkout .checkout-block .amcheckout-shipping-address .step-title:before {
      content: "\f007"; }
    #checkout .checkout-block .checkout-shipping-method .step-title:before {
      content: "\f0d1"; }
    #checkout .checkout-block .amcheckout-payment-methods .step-title:before {
      content: "\f09d"; }
    #checkout .checkout-block .amcheckout-summary-container .step-title:before {
      content: "\f15c"; }
    #checkout .checkout-block .step-content form fieldset legend.label span,
    #checkout .checkout-block .step-content form fieldset label.label {
      font-family: 'Franklin Gothic Demi';
      font-size: 16px; }
    #checkout .checkout-block .step-content form label.label {
      margin: 0;
      font-family: 'Franklin Gothic Demi';
      font-size: 16px; }
    #checkout .checkout-block .step-content form .field input[type="text"],
    #checkout .checkout-block .step-content form .field input[type="email"],
    #checkout .checkout-block .step-content form .field input[type="password"],
    #checkout .checkout-block .step-content form .field input[type="tel"],
    #checkout .checkout-block .step-content form .field select {
      border: none;
      height: 40px; }
      #checkout .checkout-block .step-content form .field input[type="text"]:focus,
      #checkout .checkout-block .step-content form .field input[type="email"]:focus,
      #checkout .checkout-block .step-content form .field input[type="password"]:focus,
      #checkout .checkout-block .step-content form .field input[type="tel"]:focus,
      #checkout .checkout-block .step-content form .field select:focus {
        border: 2px solid #f07f0a;
        box-shadow: none; }
  #checkout .checkout-block + .checkout-block {
    margin: 20px 0 0 0; }
  #checkout #shipping-new-address-form div[name='shippingAddress.postcode'] {
    pointer-events: none; }
  #checkout #discount-form input {
    height: 40px; }
    #checkout #discount-form input:focus {
      border: 2px solid #f07f0a;
      box-shadow: none; }
  #checkout #discount-form button {
    height: 40px;
    background: #f07f0a;
    color: #ffffff;
    text-transform: uppercase;
    text-align: center;
    font-family: 'Franklin Gothic Demi';
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 0px;
    box-shadow: none; }
  #checkout input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    background-color: #f07f0a;
    box-shadow: none;
    padding: 9px;
    border-radius: 0px;
    display: inline-block;
    position: relative; }
    #checkout input[type="checkbox"]:checked:after {
      position: absolute;
      top: 0px;
      left: 3px;
      content: '\2713';
      font-size: 14px;
      font-weight: bold;
      color: #ffffff; }
  #checkout input[type="radio"] {
    width: 14px;
    height: 14px;
    appearance: none;
    -webkit-appearance: none;
    background-color: #f07f0a;
    border: 4px solid #f07f0a;
    box-shadow: none;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    margin: 0 5px 0 0; }
    #checkout input[type="radio"]:checked {
      background-color: #ffffff; }
  #checkout .amcheckout-delivery-date {
    background: #efefef; }
  #checkout .checkout-payment-method .payment-methods {
    margin: 0; }
  #checkout .checkout-payment-method .payment-method-title {
    padding: 0; }
  #checkout .checkout-payment-method .payment-method + .payment-method .payment-method-title {
    border: none; }
  #checkout .submit .actions-toolbar button {
    height: 50px;
    width: 100%;
    background: #f07f0a;
    text-transform: uppercase;
    text-align: center;
    font-family: 'Franklin Gothic Demi';
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 0px;
    box-shadow: none; }
    #checkout .submit .actions-toolbar button:hover {
      box-shadow: none; }
    #checkout .submit .actions-toolbar button span {
      display: none; }
    #checkout .submit .actions-toolbar button:after {
      content: 'Place booking now'; }
  #checkout #block-discount-heading span {
    color: #000000;
    font-size: 16px;
    font-family: 'Franklin Gothic Demi';
    text-transform: uppercase; }
  #checkout .table-checkout-shipping-method tbody td {
    padding-top: 0;
    padding-bottom: 0; }
    #checkout .table-checkout-shipping-method tbody td:first-child {
      padding-left: 15px; }
  #checkout .checkout-shipping-address fieldset label.label:after {
    content: '*';
    color: #f07f0a;
    font-size: 1.5rem;
    margin: 0 0 0 5px;
    box-sizing: inherit; }

.cart-summary .checkout-methods-items .action.primary.checkout {
  background-color: #f07f0a;
  border: 1px solid #f07f0a; }

.checkout-index-index .page-main {
  max-width: 1400px; }

.checkout-index-index .footer-top,
.checkout-index-index .footer-middle {
  display: none; }

.checkout-index-index .footer-container {
  padding-top: 0; }

.checkout-index-index .additional-options {
  margin: 0 0 20px 0; }

.checkout-index-index .opc-wrapper.am-opc-wrapper .discount-code .payment-option-title,
.checkout-index-index .opc-wrapper.am-opc-wrapper .payment-option-content {
  padding: 0; }

.checkout-index-index .opc-block-summary .minicart-items-wrapper {
  padding: 15px 0 0 0; }

.checkout-index-index .opc-block-summary .minicart-items .product-image-container {
  margin: 0; }

.checkout-index-index .opc-block-summary .minicart-items .product-item-details {
  padding-left: 100px; }
  .checkout-index-index .opc-block-summary .minicart-items .product-item-details .price-excluding-tax {
    margin: 0; }
    .checkout-index-index .opc-block-summary .minicart-items .product-item-details .price-excluding-tax .price {
      font-weight: bold; }

.checkout-index-index .opc-block-summary .minicart-items .product-item .product-item-name-block {
  display: flex;
  justify-content: space-between; }
  .checkout-index-index .opc-block-summary .minicart-items .product-item .product-item-name-block .product-item-name {
    margin: 0;
    font-size: 16px;
    font-weight: bold;
    color: #f07f0a; }

.checkout-index-index .opc-block-summary .minicart-items .product-item .skip-options {
  display: none; }

.checkout-index-index .opc-block-summary .minicart-items .product-item:first-of-type .skip-options {
  display: block; }

.checkout-index-index .opc-block-summary .minicart-items .product-item:first-of-type .skip-option {
  line-height: 1.5; }
  .checkout-index-index .opc-block-summary .minicart-items .product-item:first-of-type .skip-option:before {
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #f07f0a;
    border-radius: 50%;
    margin: 0 5px 0 0;
    content: " "; }

.checkout-index-index .opc-block-summary .table-totals {
  font-size: 15px;
  border-top: 1px solid #ffffff; }
  .checkout-index-index .opc-block-summary .table-totals th, .checkout-index-index .opc-block-summary .table-totals td {
    padding: 0;
    font-weight: bold; }
  .checkout-index-index .opc-block-summary .table-totals tr.totals.sub th, .checkout-index-index .opc-block-summary .table-totals tr.totals.sub td {
    padding: 15px 0 0 0; }
  .checkout-index-index .opc-block-summary .table-totals .grand th, .checkout-index-index .opc-block-summary .table-totals .grand td {
    border: none !important;
    padding-top: 0;
    padding-bottom: 0; }
  .checkout-index-index .opc-block-summary .table-totals .grand .amount {
    color: #f07f0a; }
  .checkout-index-index .opc-block-summary .table-totals .mark .value {
    display: none; }

.checkout-index-index .checkout-payment-method {
  margin: 0 0 20px 0; }

/* end */
body.cms-concrete-volume-calculator .columns .column.main {
  padding: 0; }

.cvc-form {
  display: flex;
  text-align: center; }
  .cvc-form .cvc-form-item {
    padding: 30px 0;
    flex-basis: 33.3333%;
    border-top: 1px solid #f2f2f2;
    border-bottom: 1px solid #f2f2f2;
    cursor: pointer; }
    .cvc-form .cvc-form-item:first-of-type, .cvc-form .cvc-form-item:last-of-type {
      border-left: 1px solid #f2f2f2;
      border-right: 1px solid #f2f2f2; }
    .cvc-form .cvc-form-item .cvc-form-svg {
      position: relative;
      height: 120px; }
      .cvc-form .cvc-form-item .cvc-form-svg svg {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translateX(-50%) translateY(-50%); }
        .cvc-form .cvc-form-item .cvc-form-svg svg path {
          fill: #FA7729; }
    .cvc-form .cvc-form-item.active {
      background-color: #FA7729; }
      .cvc-form .cvc-form-item.active h3 {
        color: #ffffff; }
      .cvc-form .cvc-form-item.active .cvc-form-svg svg path {
        fill: #ffffff; }

.cvc-measurements {
  display: none;
  font-size: 18px; }
  .cvc-measurements &gt; div {
    display: none; }

.cvc-m-units {
  display: flex;
  justify-content: space-between; }
  .cvc-m-units .cvc-m-unit {
    flex-basis: 30%; }
    .cvc-m-units .cvc-m-unit .cvc-m-unit-inputs {
      display: flex;
      justify-content: space-between; }
      .cvc-m-units .cvc-m-unit .cvc-m-unit-inputs input, .cvc-m-units .cvc-m-unit .cvc-m-unit-inputs select, .cvc-m-units .cvc-m-unit .cvc-m-unit-inputs div {
        height: 64px;
        width: 48%; }
      .cvc-m-units .cvc-m-unit .cvc-m-unit-inputs div {
        line-height: 64px; }
      .cvc-m-units .cvc-m-unit .cvc-m-unit-inputs input, .cvc-m-units .cvc-m-unit .cvc-m-unit-inputs select {
        border-radius: 6px;
        font-size: 20px; }
        .cvc-m-units .cvc-m-unit .cvc-m-unit-inputs input:focus, .cvc-m-units .cvc-m-unit .cvc-m-unit-inputs select:focus {
          box-shadow: none; }

button.btn-cvc-calc {
  margin: 30px 0 0 0;
  width: 30%;
  background-color: #f07f0a;
  color: #ffffff;
  text-transform: uppercase;
  font-size: 20px;
  font-weight: bold; }
  button.btn-cvc-calc:hover {
    background-color: #f07f0a;
    color: #ffffff; }

#cvc-form-w {
  display: none; }

#cvc-result {
  display: none;
  font-size: 24px; }

#skip-hire-step4 {
  display: none; }

.skip-hire {
  padding: 30px 0;
  text-align: center; }
  .skip-hire .skip-hire-step {
    margin: 0 auto;
    width: 60px;
    height: 36px;
    background: transparent url(../images/skip-hire-step.png) 0 0 no-repeat;
    font-family: 'Franklin Gothic';
    font-size: 18px;
    font-weight: 900;
    line-height: 36px;
    text-indent: 31px;
    text-align: left;
    color: #ffffff; }
  .skip-hire h3 {
    font-family: 'Franklin Gothic';
    font-size: 24px;
    font-weight: 900; }
  .skip-hire form {
    display: flex;
    max-width: 480px;
    margin: 0 auto; }
    .skip-hire form input {
      height: 48px;
      width: 90%;
      border: none;
      background-color: #ffffff;
      border: 2px solid #ffffff; }
      .skip-hire form input:focus {
        border: 2px solid #f07f0a;
        box-shadow: none; }
    .skip-hire form button {
      height: 48px;
      border: none;
      border-radius: 0;
      background-color: #f07f0a;
      font-family: 'Franklin Gothic';
      font-size: 18px;
      font-weight: 900;
      color: #ffffff; }
  .skip-hire .skip-hire-msg,
  .skip-hire .skip-hire-msg-call {
    display: none;
    text-align: center;
    margin: 10px 0 0 0; }
    .skip-hire .skip-hire-msg .fa,
    .skip-hire .skip-hire-msg-call .fa {
      color: #ff0000; }

.waste-types {
  display: flex;
  column-gap: 20px;
  justify-content: center;
  margin: 30px 0 20px 0; }
  .waste-types .waste-type input[type='radio'] {
    display: none; }
  .waste-types .waste-type label {
    cursor: pointer; }
    .waste-types .waste-type label img {
      vertical-align: top; }
    .waste-types .waste-type label span {
      display: block;
      height: 54px;
      line-height: 54px;
      background-color: #efefef;
      font-family: 'Franklin Gothic';
      font-weight: 900;
      text-transform: uppercase; }
    .waste-types .waste-type label.disabled {
      opacity: 0.7; }
  .waste-types .waste-type input[type='radio']:checked + label span {
    background-color: #f07f0a;
    color: #ffffff; }

.skip-select-nav {
  display: flex;
  justify-content: center;
  margin: 20px 0; }
  .skip-select-nav .skip-select-nav-item {
    display: none;
    margin: 0 30px 0 0; }
    .skip-select-nav .skip-select-nav-item a {
      font-family: 'Franklin Gothic';
      font-weight: 900;
      font-size: 18px;
      color: #272625;
      text-decoration: none; }
      .skip-select-nav .skip-select-nav-item a.active {
        color: #f07f0a; }
      .skip-select-nav .skip-select-nav-item a.active:after {
        display: block;
        width: 50px;
        height: 4px;
        margin: 2px auto 0 auto;
        background-color: #f07f0a;
        content: " "; }
  .skip-select-nav .skip-select-nav-item:visible:last-of-type {
    margin: 0; }

.skip-select-product {
  display: none;
  font-size: 16px;
  text-align: left; }
  .skip-select-product .skip-select-product-bg {
    background-color: #ffffff;
    max-width: 610px;
    padding: 22px;
    margin: 0 auto; }
    .skip-select-product .skip-select-product-bg .skip-info {
      display: flex;
      justify-content: space-between;
      margin: 0 0 22px 0; }
      .skip-select-product .skip-select-product-bg .skip-info h4 {
        margin: 0;
        font-size: 18px;
        color: #f07f0a;
        text-transform: uppercase; }
      .skip-select-product .skip-select-product-bg .skip-info .skip-info-price {
        background-color: #f07f0a;
        padding: 10px 15px;
        color: #ffffff; }
        .skip-select-product .skip-select-product-bg .skip-info .skip-info-price .skip-price-excl {
          display: inline-block;
          margin: 0 12px 0 0;
          font-family: 'Franklin Gothic Demi';
          font-size: 30px;
          line-height: 1; }
        .skip-select-product .skip-select-product-bg .skip-info .skip-info-price .skip-price-incl {
          display: inline-block;
          font-size: 14px; }
    .skip-select-product .skip-select-product-bg .skip-feature {
      display: flex;
      justify-content: space-between;
      align-items: center; }
      .skip-select-product .skip-select-product-bg .skip-feature .skip-feature-label {
        padding: 10px 0 10px 50px;
        width: 35%;
        font-family: 'Franklin Gothic Demi';
        font-size: 18px;
        font-weight: bold; }
      .skip-select-product .skip-select-product-bg .skip-feature .skip-feature-binbags {
        background: transparent url(../images/skip-hire-binbags.png) 0 50% no-repeat; }
      .skip-select-product .skip-select-product-bg .skip-feature .skip-feature-wheeile {
        background: transparent url(../images/skip-hire-wheel.png) 0 50% no-repeat; }
      .skip-select-product .skip-select-product-bg .skip-feature .skip-feature-sofas {
        background: transparent url(../images/skip-hire-sofa.png) 0 50% no-repeat; }
      .skip-select-product .skip-select-product-bg .skip-feature .skip-feature-values {
        position: relative;
        height: 8px;
        width: 63%;
        background-color: #efefef; }
        .skip-select-product .skip-select-product-bg .skip-feature .skip-feature-values .skip-feature-values-fill {
          display: block;
          position: absolute;
          left: 0;
          top: 0;
          height: 8px;
          background-color: #f07f0a; }
        .skip-select-product .skip-select-product-bg .skip-feature .skip-feature-values.binbags:before {
          width: var(--prop-binbags); }
          .skip-select-product .skip-select-product-bg .skip-feature .skip-feature-values.binbags:before span {
            left: calc(var(--prop-binbags) - 14px); }
        .skip-select-product .skip-select-product-bg .skip-feature .skip-feature-values.wheelie:before {
          width: var(--prop-wheelie); }
          .skip-select-product .skip-select-product-bg .skip-feature .skip-feature-values.wheelie:before span {
            left: calc(var(--prop-wheelie) - 14px); }
        .skip-select-product .skip-select-product-bg .skip-feature .skip-feature-values.sofas:before {
          width: var(--prop-sofas); }
          .skip-select-product .skip-select-product-bg .skip-feature .skip-feature-values.sofas:before span {
            left: calc(var(--prop-sofas) - 14px); }
        .skip-select-product .skip-select-product-bg .skip-feature .skip-feature-values span {
          display: block;
          position: absolute;
          left: calc(var(--prop-binbags) - 13px);
          top: -30px;
          width: 28px;
          background-color: #000000;
          color: #ffffff;
          border-radius: 4px;
          padding: 5px 0;
          font-size: 12px;
          line-height: 1;
          text-align: center; }
          .skip-select-product .skip-select-product-bg .skip-feature .skip-feature-values span:before {
            display: block;
            position: absolute;
            bottom: -4px;
            left: 9.5px;
            width: 0;
            height: 0;
            border-left: 5px solid transparent;
            border-right: 5px solid transparent;
            border-top: 5px solid #000000;
            content: " "; }
    .skip-select-product .skip-select-product-bg .skip-info-wrap {
      border-top: 1px solid #efefef;
      padding: 15px 0 0 0; }
    .skip-select-product .skip-select-product-bg .skip-duration {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin: 0 0 12px 0; }
      .skip-select-product .skip-select-product-bg .skip-duration .select-wrap {
        position: relative; }
        .skip-select-product .skip-select-product-bg .skip-duration .select-wrap select {
          height: 46px;
          appearance: none; }
        .skip-select-product .skip-select-product-bg .skip-duration .select-wrap:after {
          display: block;
          position: absolute;
          top: 0;
          right: 0;
          height: 46px;
          width: 32px;
          background: #f07f0a url(../images/bc-select.svg) 50% 50% no-repeat;
          transform: rotate(180deg);
          pointer-events: none;
          content: " "; }
    .skip-select-product .skip-select-product-bg .skip-info-order {
      display: flex; }
      .skip-select-product .skip-select-product-bg .skip-info-order .qty-selector {
        margin: 0 15px 0 0; }
      .skip-select-product .skip-select-product-bg .skip-info-order .skip-size {
        width: 65%; }
        .skip-select-product .skip-select-product-bg .skip-info-order .skip-size table tr th, .skip-select-product .skip-select-product-bg .skip-info-order .skip-size table tr td {
          padding: 0; }
        .skip-select-product .skip-select-product-bg .skip-info-order .skip-size table tr .bold {
          font-weight: bold; }
      .skip-select-product .skip-select-product-bg .skip-info-order .skip-order {
        width: 220px;
        padding: 0 0 0 30px;
        border-left: 1px solid #7f7f7f; }
        .skip-select-product .skip-select-product-bg .skip-info-order .skip-order label {
          position: relative;
          display: block;
          padding: 0 0 0 25px;
          margin: 0 0 10px 0; }
          .skip-select-product .skip-select-product-bg .skip-info-order .skip-order label input {
            position: absolute;
            top: 5px;
            left: 0; }
      .skip-select-product .skip-select-product-bg .skip-info-order .skip-select-btn,
      .skip-select-product .skip-select-product-bg .skip-info-order .fab-select-btn {
        padding: 12px 45px;
        background-color: #f07f0a;
        border: 0;
        border-radius: 0;
        font-family: 'Franklin Gothic Demi';
        font-size: 18px;
        font-weight: bold;
        color: #ffffff;
        text-transform: uppercase;
        white-space: nowrap; }
        .skip-select-product .skip-select-product-bg .skip-info-order .skip-select-btn:disabled,
        .skip-select-product .skip-select-product-bg .skip-info-order .fab-select-btn:disabled {
          background-color: #b7b7b7; }
      .skip-select-product .skip-select-product-bg .skip-info-order .skip-select-btn {
        margin: 30px 0 0 0; }
  .skip-select-product .skip-grouped {
    max-width: 620px;
    margin: 30px auto 0 auto;
    text-align: center; }
    .skip-select-product .skip-grouped .skip-grouped-tbl {
      background-color: #ffffff;
      padding: 10px 0;
      text-align: left; }
      .skip-select-product .skip-grouped .skip-grouped-tbl table {
        width: 100%; }
        .skip-select-product .skip-grouped .skip-grouped-tbl table tr.hidden {
          display: none; }
        .skip-select-product .skip-grouped .skip-grouped-tbl table td {
          padding: 6px 10px;
          border-bottom: 1px solid #efefef;
          text-align: left;
          vertical-align: middle; }
        .skip-select-product .skip-grouped .skip-grouped-tbl table tr:last-of-type td {
          border-bottom: none; }
    .skip-select-product .skip-grouped .skip-grouped-summary {
      background-color: #ffffff;
      padding: 20px 20px 10px 20px;
      margin: 15px 0 0 0;
      text-align: left; }
      .skip-select-product .skip-grouped .skip-grouped-summary .skip-grouped-items,
      .skip-select-product .skip-grouped .skip-grouped-summary .skip-grouped-total {
        display: flex;
        justify-content: space-between; }
      .skip-select-product .skip-grouped .skip-grouped-summary .skip-grouped-total {
        color: #f07f0a; }
        .skip-select-product .skip-grouped .skip-grouped-summary .skip-grouped-total .amount {
          font-size: 20px; }

.qty-selector {
  display: flex; }
  .qty-selector input {
    border-top: 1px solid #efefef;
    border-bottom: 1px solid #efefef;
    border-left: 0;
    border-right: 0;
    height: 42px;
    width: 48px;
    text-align: center; }
  .qty-selector .opt-minus,
  .qty-selector .opt-plus {
    background-color: #f07f0a;
    border: none;
    height: 42px;
    color: #ffffff;
    text-align: center; }
  .qty-selector .opt-minus {
    border-radius: 6px 0 0 6px; }
  .qty-selector .opt-plus {
    border-radius: 0 6px 6px 0; }

.opt-add {
  border: none;
  background: #f07f0a url(../images/skip-hire-opt.png) 50% 50% no-repeat;
  height: 42px;
  width: 50px;
  border-radius: 6px; }

.skip-delivery-opts {
  display: flex;
  justify-content: center;
  margin: 30px 0; }
  .skip-delivery-opts .skip-delivery-opt {
    margin: 0 45px 0 0;
    width: 300px;
    text-align: left;
    background-color: #efefef; }
    .skip-delivery-opts .skip-delivery-opt.only-fab {
      display: none; }
    .skip-delivery-opts .skip-delivery-opt .skip-delivery-opt-block {
      padding: 24px; }
      .skip-delivery-opts .skip-delivery-opt .skip-delivery-opt-block h4 {
        margin: 0 0 5px 0;
        font-size: 18px; }
      .skip-delivery-opts .skip-delivery-opt .skip-delivery-opt-block .skip-delivery-opt-tw {
        position: relative; }
        .skip-delivery-opts .skip-delivery-opt .skip-delivery-opt-block .skip-delivery-opt-tw .field-tooltip {
          top: -3px; }
          .skip-delivery-opts .skip-delivery-opt .skip-delivery-opt-block .skip-delivery-opt-tw .field-tooltip .field-tooltip-action::before {
            line-height: 1;
            font-family: "Font Awesome 5 Free";
            font-weight: 900;
            color: #f07f0a;
            content: "\f05a"; }
      .skip-delivery-opts .skip-delivery-opt .skip-delivery-opt-block.required h4 {
        color: #ff0000; }
    .skip-delivery-opts .skip-delivery-opt .skip-delivery-opt-block + .skip-delivery-opt-block {
      border-top: 5px solid #ffffff; }
    .skip-delivery-opts .skip-delivery-opt .skip-delivery-opt-text {
      border-top: 1px solid #ffffff;
      margin: 12px 0 0 0;
      padding: 12px 0 0 0; }
    .skip-delivery-opts .skip-delivery-opt:last-of-type {
      margin: 0; }
    .skip-delivery-opts .skip-delivery-opt textarea {
      height: 152px; }

.public-road-text {
  display: none;
  background-color: #fd9c9c;
  color: #000000;
  padding: 4px 12px;
  margin: 5px 0 20px 0;
  text-align: center; }

.radio-sw {
  padding: 10px 0;
  display: flex;
  align-items: center; }
  .radio-sw label {
    max-width: 60px;
    font-family: 'Franklin Gothic';
    font-size: 16px;
    font-weight: 900;
    line-height: 1; }
  .radio-sw .radio-sw-ctrl {
    position: relative;
    margin: 0 15px;
    width: 52px;
    height: 22px;
    background-color: #f07f0a;
    border-radius: 11px;
    cursor: pointer; }
    .radio-sw .radio-sw-ctrl input[type='radio'] {
      display: none; }
    .radio-sw .radio-sw-ctrl span {
      position: absolute;
      top: 4px;
      left: 19px;
      display: block;
      width: 14px;
      height: 14px;
      background-color: #ffffff;
      border-radius: 7px;
      transition: all 0.3s ease; }
    .radio-sw .radio-sw-ctrl input[type='radio']:checked + input[type='radio'] + span {
      left: 4px; }
    .radio-sw .radio-sw-ctrl input[type='radio'] + input[type='radio']:checked + span {
      left: 33px; }
    .radio-sw .radio-sw-ctrl.disabled {
      opacity: 0.5; }

#skip-hire-submit {
  padding: 12px 45px;
  background-color: #f07f0a;
  border: 0;
  border-radius: 0;
  font-family: 'Franklin Gothic Demi';
  font-size: 18px;
  font-weight: bold;
  color: #ffffff;
  text-transform: uppercase;
  white-space: nowrap; }

.accr-logos {
  display: flex;
  justify-content: space-between;
  align-items: center; }

.h-uppercase {
  text-transform: uppercase; }

.h-sep {
  max-width: 5rem; }

.readmore-link {
  position: absolute;
  bottom: 4px;
  right: 2px;
  padding: 2px 0;
  font-size: 18px;
  line-height: 1;
  text-decoration: underline;
  cursor: pointer;
  background-color: #ffffff;
  color: #f07f0a; }
  .readmore-link:before {
    display: block;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.5), white);
    position: absolute;
    left: -2em;
    top: 0;
    height: 1em;
    width: 2em;
    content: " "; }

.readmore-expanded .readmore-link {
  position: static;
  display: block;
  text-align: right; }

.read-more-text {
  position: relative;
  overflow: hidden;
  height: 97px !important;
  transition: height 0.2s ease;
  margin: 0 !important; }
  .read-more-text p:last-of-type {
    margin: 0 !important; }

.env-projects-description {
  padding: 0 15px; }
  .env-projects-description p {
    color: #ffffff; }
  .env-projects-description .readmore-link {
    background: #f07f0a;
    color: #ffffff; }
    .env-projects-description .readmore-link:before {
      background: linear-gradient(90deg, rgba(240, 127, 10, 0.5), #f07f0a); }

.wwa-accordion .mgz-panel {
  margin: 0 0 5px 0; }
  .wwa-accordion .mgz-panel .mgz-panel-heading {
    border: 1px solid #D35001 !important;
    background-color: #f07f0a !important;
    color: #ffffff !important; }

.wwa-cf-block {
  background-color: #f07f0a;
  color: #ffffff; }
  .wwa-cf-block h2 {
    font-family: 'Franklin Gothic Demi';
    font-weight: normal; }
  .wwa-cf-block h3 {
    text-transform: uppercase;
    color: #ffffff; }
  .wwa-cf-block .amform-form {
    margin: 10px;
    max-width: 100%; }
    .wwa-cf-block .amform-form .fieldset .fields .label.fb-text-label,
    .wwa-cf-block .amform-form .fieldset .fields .label.fb-select-label,
    .wwa-cf-block .amform-form .fieldset .fields .label.fb-textarea-label,
    .wwa-cf-block .amform-form .fieldset .fields .label.fb-checkbox-group-label {
      display: none; }
    .wwa-cf-block .amform-form .fieldset .fields .amform-layout-two {
      max-width: 49%; }
      .wwa-cf-block .amform-form .fieldset .fields .amform-layout-two:nth-child(2n) {
        margin-right: 0; }
    .wwa-cf-block .amform-form .fieldset .fields .amform-layout-three {
      max-width: 32%; }
      .wwa-cf-block .amform-form .fieldset .fields .amform-layout-three:nth-child(3n) {
        margin-right: 0; }
    .wwa-cf-block .amform-form .fieldset .fields .amcform-toolbar {
      text-align: left; }
      .wwa-cf-block .amform-form .fieldset .fields .amcform-toolbar .action.primary {
        background-color: #272625 !important;
        padding: 16px 22px;
        height: 62px;
        border-radius: 5px;
        text-transform: none;
        min-width: 200px;
        font-size: 20px;
        line-height: 1;
        text-align: left; }
    .wwa-cf-block .amform-form .fieldset .fields .checkbox-group a {
      color: #ffffff;
      text-decoration: underline; }
    .wwa-cf-block .amform-form .fieldset .fields textarea {
      padding: 16px 22px;
      height: 136px;
      font-size: 20px; }
    .wwa-cf-block .amform-form .fieldset .fields input[type=text],
    .wwa-cf-block .amform-form .fieldset .fields input[type=email],
    .wwa-cf-block .amform-form .fieldset .fields select {
      padding: 16px 22px;
      height: 62px;
      font-size: 20px; }
  .wwa-cf-block .form-control {
    border: none;
    border-radius: 5px; }
  .wwa-cf-block.cf-muck-away, .wwa-cf-block.cf-cvc {
    background-color: transparent;
    color: #272625; }
    .wwa-cf-block.cf-muck-away .checkbox-group a, .wwa-cf-block.cf-cvc .checkbox-group a {
      color: #272625 !important; }
  .wwa-cf-block.cf-cvc .rendered-form .fieldset .fields .field.form-group {
    margin-bottom: 26px; }
  .wwa-cf-block.cf-cvc .amform-form .fieldset .fields .amform-layout-two.field-cvc-message {
    max-width: 66%;
    margin-right: 0; }
  .wwa-cf-block.cf-cvc .amform-form .fieldset .fields .amcform-toolbar .action.primary {
    background-color: #f07f0a !important; }
  .wwa-cf-block.cf-flag {
    background-color: #006473; }
    .wwa-cf-block.cf-flag .amform-form .fieldset {
      margin: 0; }
      .wwa-cf-block.cf-flag .amform-form .fieldset .fields input[type=text],
      .wwa-cf-block.cf-flag .amform-form .fieldset .fields input[type=email],
      .wwa-cf-block.cf-flag .amform-form .fieldset .fields select {
        padding: 8px 16px;
        height: 36px;
        font-size: 16px; }
      .wwa-cf-block.cf-flag .amform-form .fieldset .amcform-toolbar {
        text-align: right; }
        .wwa-cf-block.cf-flag .amform-form .fieldset .amcform-toolbar .action.primary {
          padding: 8px 16px;
          height: 36px;
          background-color: #f07f0a !important; }
  .wwa-cf-block.cf-claim-prize {
    background-color: transparent; }
    .wwa-cf-block.cf-claim-prize .amform-form {
      margin: 0; }
      .wwa-cf-block.cf-claim-prize .amform-form .fieldset .fields .amcform-toolbar .action.primary {
        background-color: #f07f0a !important;
        width: 100%; }

.wfu-slider {
  margin: 0 auto;
  border: 2px solid #f07f0a;
  padding: 45px;
  max-width: calc(100% - 200px);
  color: #ffffff; }
  .wfu-slider .wfu-slide {
    display: flex;
    align-items: center;
    column-gap: 50px; }
    .wfu-slider .wfu-slide .wfu-slide-image {
      flex-shrink: 0; }
    .wfu-slider .wfu-slide .wfu-slide-text h3 {
      margin: 0 0 15px 0; }
  .wfu-slider .mgz-carousel-nav-position-center_split .owl-nav .owl-prev,
  .wfu-slider .mgz-carousel-nav-position-center_split .owl-nav .owl-next {
    background-color: #D9D9D9;
    opacity: 1 !important;
    transform: scale(1, 2);
    color: #f07f0a; }
    .wfu-slider .mgz-carousel-nav-position-center_split .owl-nav .owl-prev:hover,
    .wfu-slider .mgz-carousel-nav-position-center_split .owl-nav .owl-next:hover {
      background-color: #D9D9D9;
      color: #f07f0a; }
  .wfu-slider .mgz-carousel-nav-position-center_split .owl-nav .owl-prev {
    left: -100px; }
  .wfu-slider .mgz-carousel-nav-position-center_split .owl-nav .owl-next {
    right: -100px; }

@media (max-width: 960px) {
  .wfu-slider .wfu-slide {
    display: block; }
  .wfu-slider .wfu-slide-image {
    text-align: center;
    margin: 0 0 20px 0; }
  .wfu-slider .owl-carousel .owl-item img {
    display: inline-block; } }

@media (max-width: 640px) {
  .wfu-slider {
    max-width: 100%; }
    .wfu-slider .mgz-carousel-nav-position-center_split .owl-nav .owl-prev {
      left: -45px;
      width: 30px; }
    .wfu-slider .mgz-carousel-nav-position-center_split .owl-nav .owl-next {
      right: -45px;
      width: 30px; }
    .wfu-slider .wfu-slide-text p {
      font-size: 14px; }
  .acc-reg-form .acc-reg-tbl {
    display: block; }
    .acc-reg-form .acc-reg-tbl .acc-reg-tbl-row {
      display: block;
      /*
            .acc-reg-celltable .acc-reg-celltable-inner .acc-reg-tbl-row &gt;div {
                border-left: none !important;
                border-right: none !important;
                
                &amp;.acc-reg-input {
                    border-bottom: 1px solid $base-orange !important;
                }
            }
            */ }
      .acc-reg-form .acc-reg-tbl .acc-reg-tbl-row &gt; div {
        border: none !important;
        padding: 6px 0; }
      .acc-reg-form .acc-reg-tbl .acc-reg-tbl-row .acc-reg-label,
      .acc-reg-form .acc-reg-tbl .acc-reg-tbl-row .acc-reg-input {
        display: block;
        width: 100% !important; }
      .acc-reg-form .acc-reg-tbl .acc-reg-tbl-row .acc-reg-input input[type="text"],
      .acc-reg-form .acc-reg-tbl .acc-reg-tbl-row .acc-reg-input input[type="email"],
      .acc-reg-form .acc-reg-tbl .acc-reg-tbl-row .acc-reg-input select {
        padding: 0 12px; }
      .acc-reg-form .acc-reg-tbl .acc-reg-tbl-row .acc-reg-input .acc-reg-select:after {
        right: 0; }
  .doc-row .doc-dllink {
    margin: 0; } }

@media (min-width: 1320px) {
  .wfu-slider {
    max-width: 1140px; }
    .wfu-slider .owl-nav .owl-prev {
      left: calc((100% - 1320px)/2 + 40px) !important; }
    .wfu-slider .owl-nav .owl-next {
      right: calc((100% - 1320px)/2 + 40px) !important; } }

@media (min-width: 1650px) {
  .wfu-slider .owl-nav .owl-prev {
    left: calc((100% - 1320px)/2 - 40px) !important; }
  .wfu-slider .owl-nav .owl-next {
    right: calc((100% - 1320px)/2 - 40px) !important; } }

.wfu-roles .mgz-element-column:nth-child(1) .mgz-element-text p {
  padding: 5px 10px;
  background-color: #FFF1E9;
  border: 1px solid #f07f0a; }

.wfu-roles .mgz-element-column:nth-child(2) .mgz-element-text p {
  text-align: right; }
  .wfu-roles .mgz-element-column:nth-child(2) .mgz-element-text p a {
    display: block;
    padding: 5px 10px;
    background-color: #f07f0a;
    border: 1px solid #f07f0a;
    color: #ffffff;
    text-decoration: none;
    white-space: nowrap; }

#funding-stories {
  border: 2px solid #ffffff;
  margin: 60px auto 0 auto;
  padding: 42px;
  max-width: 1140px; }
  #funding-stories .owl-nav .owl-prev,
  #funding-stories .owl-nav .owl-next {
    position: absolute;
    top: 50%;
    border-radius: 0;
    padding: 0;
    width: 50px;
    height: 50px;
    line-height: 50px;
    background-color: #D9D9D9 !important;
    color: #f07f0a;
    transform: scale(1, 2) translateY(-50%); }
    #funding-stories .owl-nav .owl-prev.disabled,
    #funding-stories .owl-nav .owl-next.disabled {
      opacity: 1; }
  #funding-stories .owl-nav .owl-prev {
    left: -150px; }
  #funding-stories .owl-nav .owl-next {
    right: -150px; }

.funding-story {
  display: flex;
  align-items: center;
  column-gap: 50px;
  color: #ffffff; }
  .funding-story .funding-story-image {
    max-width: 320px; }
  .funding-story .funding-story-text h3 {
    margin: 0 0 15px 0;
    font-size: 26px; }
  .funding-story .funding-story-text .funding-amount {
    color: #f07f0a;
    font-weight: bold; }

.item-funding {
  margin: 0 0 15px 0; }
  .item-funding .item-funding-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 2px solid #D35001;
    background-color: #f07f0a; }
    .item-funding .item-funding-info .item-funding-name {
      padding: 0 0 0 15px;
      width: 99%;
      font-weight: bold;
      color: #ffffff; }
      .item-funding .item-funding-info .item-funding-name .mgz-element-inner {
        margin: 0 !important; }
    .item-funding .item-funding-info .item-funding-readmore .mgz-btn,
    .item-funding .item-funding-info .item-funding-amt {
      background-color: #ffffff;
      border-radius: 8px;
      font-family: Franklin Gothic Demi;
      white-space: nowrap; }
    .item-funding .item-funding-info .item-funding-amt {
      padding: 10px 30px; }
    .item-funding .item-funding-info .item-funding-readmore .mgz-element-inner {
      margin: 0 !important; }
    .item-funding .item-funding-info .item-funding-readmore .mgz-btn {
      padding: 15px 30px;
      margin: 0 15px 0 0;
      font-size: 18px; }

.faf-section {
  color: #ffffff; }
  .faf-section ul {
    line-height: 1.2; }
    .faf-section ul li:last-of-type {
      margin: 0; }

.faf-blocks .mgz-element-column {
  position: relative; }
  .faf-blocks .mgz-element-column .mgz-element-text {
    position: absolute;
    bottom: 40px;
    right: 0;
    color: #fff;
    background-color: #006473;
    padding: 0px 15px;
    transform: skew(0deg, -5deg); }
    .faf-blocks .mgz-element-column .mgz-element-text:hover {
      background-color: #f07f0a; }
    .faf-blocks .mgz-element-column .mgz-element-text a {
      text-decoration: none;
      color: #ffffff; }

.faf-btn .mgz-link {
  display: block;
  padding: 20px 0 !important;
  font-size: 24px !important; }

.faf-prizes .item {
  padding: 15px;
  border: 1px solid #f1f1f1; }

.sph-enqform .amform-form {
  margin: 10px;
  max-width: 100%; }
  .sph-enqform .amform-form .fieldset .fields .label.fb-text-label,
  .sph-enqform .amform-form .fieldset .fields .label.fb-select-label,
  .sph-enqform .amform-form .fieldset .fields .label.fb-textarea-label,
  .sph-enqform .amform-form .fieldset .fields .label.fb-checkbox-group-label {
    display: none; }
  .sph-enqform .amform-form .fieldset .fields .amform-layout-three {
    max-width: 32%; }
    .sph-enqform .amform-form .fieldset .fields .amform-layout-three:nth-child(3n) {
      margin-right: 0; }
  .sph-enqform .amform-form .fieldset .fields .amcform-toolbar {
    text-align: left; }
    .sph-enqform .amform-form .fieldset .fields .amcform-toolbar .action.primary {
      background-color: #f07f0a;
      padding: 16px 22px;
      height: 62px;
      border-radius: 5px;
      text-transform: none;
      min-width: 200px;
      text-align: left; }
  .sph-enqform .amform-form .fieldset .fields textarea {
    padding: 16px 22px;
    height: 136px;
    font-size: 20px; }
  .sph-enqform .amform-form .fieldset .fields input[type=text],
  .sph-enqform .amform-form .fieldset .fields input[type=email],
  .sph-enqform .amform-form .fieldset .fields select {
    padding: 16px 22px;
    height: 62px;
    font-size: 20px; }

.sph-enqform .form-control {
  border: none;
  border-radius: 5px; }

.btn-product-calc .mgz-btn-size-md .mgz-btn, .btn-product-quote .mgz-btn-size-md .mgz-btn {
  background-color: #272625;
  width: 100%;
  font-size: 20px;
  text-align: left;
  color: #ffffff; }
  .btn-product-calc .mgz-btn-size-md .mgz-btn:hover, .btn-product-quote .mgz-btn-size-md .mgz-btn:hover {
    background-color: #272625;
    color: #ffffff; }
  .btn-product-calc .mgz-btn-size-md .mgz-btn:after, .btn-product-quote .mgz-btn-size-md .mgz-btn:after {
    position: absolute;
    right: 15px;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f061"; }

.amform-form .fb-select select:invalid {
  color: #cccccc !important; }

.amform-form .amform-checkbox-tc + label {
  font-size: 18px; }

.amform-form .field-cf-ref,
.amform-form .field-cf-ip {
  display: none; }

.amcform-popup &gt; h2 {
  font-family: 'Franklin Gothic';
  font-size: 24px;
  font-weight: 900;
  text-transform: uppercase;
  margin: 0 0 10px 0;
  width: 100%;
  text-align: left; }
  .amcform-popup &gt; h2:after {
    display: block;
    margin: 8px 0 0 0;
    width: 80px;
    height: 4px;
    background-color: #f07f0a;
    content: " "; }

.amcform-popup .amform-hthree {
  margin: 12px 0 0 0;
  font-family: 'Franklin Gothic Book';
  font-size: 14px;
  font-weight: bold; }

.amcform-popup .fieldset &gt; .fields &gt; .field &gt; .label {
  display: none; }

.amcform-popup .fieldset &gt; .fields &gt; .field .checkbox-group input {
  margin: 0 5px 0 0; }

.amcform-popup .fieldset &gt; .fields &gt; .field .checkbox-group label {
  vertical-align: middle; }

.amcform-popup .fieldset &gt; .fields &gt; .field ._keyfocus :focus,
.amcform-popup .fieldset &gt; .fields &gt; .field input:not([disabled]):focus,
.amcform-popup .fieldset &gt; .fields &gt; .field textarea:not([disabled]):focus,
.amcform-popup .fieldset &gt; .fields &gt; .field select:not([disabled]):focus {
  box-shadow: none; }

.amcform-popup .fieldset &gt; .fields .amform-layout-two {
  max-width: 49%; }

.amcform-popup .fieldset &gt; .fields .field-address-county,
.amcform-popup .fieldset &gt; .fields .field-address-country,
.amcform-popup .fieldset &gt; .fields .field-pldirectno {
  margin-right: 0 !important; }

.amcform-popup .fieldset &gt; .fields .field-bankruptcies-w,
.amcform-popup .fieldset &gt; .fields .field-creditaccounts-w,
.amcform-popup .fieldset &gt; .fields .field-porequired-w {
  display: inline-block;
  width: 80%; }

.amcform-popup .fieldset &gt; .fields .field-bankruptcies,
.amcform-popup .fieldset &gt; .fields .field-creditaccounts,
.amcform-popup .fieldset &gt; .fields .field-porequired {
  display: inline-block;
  width: 20%;
  vertical-align: bottom; }
  .amcform-popup .fieldset &gt; .fields .field-bankruptcies br,
  .amcform-popup .fieldset &gt; .fields .field-creditaccounts br,
  .amcform-popup .fieldset &gt; .fields .field-porequired br {
    display: none; }

.amcform-popup .rendered-form input:not([type='checkbox']):not([type='radio']), .amcform-popup .rendered-form select, .amcform-popup .rendered-form textarea {
  background-color: #efefef;
  border: none;
  height: 40px;
  padding: 8px 12px;
  font-family: 'Franklin Gothic Book'; }

.amcform-popup .amcform-page-titles {
  justify-content: flex-start;
  margin: 25px 0; }

.amcform-popup .amcform-title-wrap {
  flex-grow: 1;
  text-align: left; }
  .amcform-popup .amcform-title-wrap:before, .amcform-popup .amcform-title-wrap:after {
    left: 0;
    right: auto;
    top: auto;
    bottom: -15px;
    content: " "; }
  .amcform-popup .amcform-title-wrap.-disabled .amcform-step {
    background-color: #d4d4d4;
    color: #ffffff; }
  .amcform-popup .amcform-title-wrap.-disabled .amcform-label {
    color: #d4d4d4; }
  .amcform-popup .amcform-title-wrap.ui-state-active:before, .amcform-popup .amcform-title-wrap.ui-state-active:after {
    background-color: #f07f0a !important; }

.amform-parent .amcform-popup-block[data-form-id="9"] .amcform-popup,
.amform-parent .amcform-popup-block[data-form-id="9"] .amform-form {
  max-width: 1000px; }

.amform-parent .amcform-popup-block[data-form-id="9"] .amcform-title-wrap {
  min-width: 1%;
  white-space: nowrap; }
  .amform-parent .amcform-popup-block[data-form-id="9"] .amcform-title-wrap .amcform-title {
    max-width: 500px; }

.amform-parent .amcform-popup-block[data-form-id="9"] .field-incdate {
  margin-right: 0 !important; }

.amform-parent .amcform-popup-block[data-form-id="13"],
.amform-parent .amcform-popup-block[data-form-id="14"],
.amform-parent .amcform-popup-block[data-form-id="15"] {
  z-index: 10000; }
  .amform-parent .amcform-popup-block[data-form-id="13"] .amcform-popup,
  .amform-parent .amcform-popup-block[data-form-id="14"] .amcform-popup,
  .amform-parent .amcform-popup-block[data-form-id="15"] .amcform-popup {
    max-width: 500px; }
    .amform-parent .amcform-popup-block[data-form-id="13"] .amcform-popup:before,
    .amform-parent .amcform-popup-block[data-form-id="14"] .amcform-popup:before,
    .amform-parent .amcform-popup-block[data-form-id="15"] .amcform-popup:before {
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 36px;
      background-color: #f07f0a;
      content: " "; }
    .amform-parent .amcform-popup-block[data-form-id="13"] .amcform-popup .amcform-button.-close-popup,
    .amform-parent .amcform-popup-block[data-form-id="14"] .amcform-popup .amcform-button.-close-popup,
    .amform-parent .amcform-popup-block[data-form-id="15"] .amcform-popup .amcform-button.-close-popup {
      top: 9px; }
      .amform-parent .amcform-popup-block[data-form-id="13"] .amcform-popup .amcform-button.-close-popup .amcform-icon,
      .amform-parent .amcform-popup-block[data-form-id="14"] .amcform-popup .amcform-button.-close-popup .amcform-icon,
      .amform-parent .amcform-popup-block[data-form-id="15"] .amcform-popup .amcform-button.-close-popup .amcform-icon {
        color: #ffffff; }
      .amform-parent .amcform-popup-block[data-form-id="13"] .amcform-popup .amcform-button.-close-popup:hover,
      .amform-parent .amcform-popup-block[data-form-id="14"] .amcform-popup .amcform-button.-close-popup:hover,
      .amform-parent .amcform-popup-block[data-form-id="15"] .amcform-popup .amcform-button.-close-popup:hover {
        background-color: transparent; }
        .amform-parent .amcform-popup-block[data-form-id="13"] .amcform-popup .amcform-button.-close-popup:hover .amcform-icon,
        .amform-parent .amcform-popup-block[data-form-id="14"] .amcform-popup .amcform-button.-close-popup:hover .amcform-icon,
        .amform-parent .amcform-popup-block[data-form-id="15"] .amcform-popup .amcform-button.-close-popup:hover .amcform-icon {
          color: #ffffff; }
  .amform-parent .amcform-popup-block[data-form-id="13"] .amcform-page-titles,
  .amform-parent .amcform-popup-block[data-form-id="14"] .amcform-page-titles,
  .amform-parent .amcform-popup-block[data-form-id="15"] .amcform-page-titles {
    display: none; }
  .amform-parent .amcform-popup-block[data-form-id="13"] .checkbox-group a,
  .amform-parent .amcform-popup-block[data-form-id="14"] .checkbox-group a,
  .amform-parent .amcform-popup-block[data-form-id="15"] .checkbox-group a {
    color: #f07f0a;
    text-decoration: underline; }
  .amform-parent .amcform-popup-block[data-form-id="13"] .fieldset &gt; .fields &gt; .field:not(.fb-checkbox):not(.amform-layout-three) &gt; .label,
  .amform-parent .amcform-popup-block[data-form-id="14"] .fieldset &gt; .fields &gt; .field:not(.fb-checkbox):not(.amform-layout-three) &gt; .label,
  .amform-parent .amcform-popup-block[data-form-id="15"] .fieldset &gt; .fields &gt; .field:not(.fb-checkbox):not(.amform-layout-three) &gt; .label {
    display: block; }
  .amform-parent .amcform-popup-block[data-form-id="13"] .btn-calculate-wrapper,
  .amform-parent .amcform-popup-block[data-form-id="14"] .btn-calculate-wrapper,
  .amform-parent .amcform-popup-block[data-form-id="15"] .btn-calculate-wrapper {
    margin: 20px 0 30px 0; }
  .amform-parent .amcform-popup-block[data-form-id="13"] .amcform-toolbar .action.primary,
  .amform-parent .amcform-popup-block[data-form-id="13"] .btn-calculate,
  .amform-parent .amcform-popup-block[data-form-id="14"] .amcform-toolbar .action.primary,
  .amform-parent .amcform-popup-block[data-form-id="14"] .btn-calculate,
  .amform-parent .amcform-popup-block[data-form-id="15"] .amcform-toolbar .action.primary,
  .amform-parent .amcform-popup-block[data-form-id="15"] .btn-calculate {
    padding: 8px 0;
    border-radius: 6px;
    border: none;
    background-color: #f07f0a;
    width: 100%;
    font-family: "Franklin Gothic";
    font-size: 20px;
    text-transform: none;
    font-weight: bold;
    color: #ffffff; }

.amform-parent .amcform-popup-block[data-form-id="15"] .field.amform-layout-two {
  margin: 0; }

.amform-parent .amcform-popup-block[data-form-id="15"] .field.amform-layout-three:nth-child(3n+2) {
  max-width: 34%;
  margin: 0; }

.amform-parent .amcform-button[data-amform-show="13"],
.amform-parent .amcform-button[data-amform-show="14"],
.amform-parent .amcform-button[data-amform-show="15"] {
  display: none; }

#amform-form-1 .items-qty,
#amform-form-25 .items-qty {
  display: inline-block;
  margin: 0 5px;
  padding: 16px 22px;
  height: 62px;
  width: 120px;
  font-size: 20px;
  -moz-appearance: auto; }

#amform-form-1 .btn-additem,
#amform-form-25 .btn-additem {
  border: none;
  background-color: #f07f0a;
  text-transform: none;
  font-weight: bold;
  color: #ffffff; }

.cms-builders-merchants-offers .ui-datepicker .ui-datepicker-calendar .ui-state-disabled span {
  height: 42px;
  width: 42px;
  line-height: 42px;
  padding: 0;
  text-align: center; }

#page-13-1 .amcform-toolbar,
#page-14-1 .amcform-toolbar {
  display: none; }

#page-15-1 .amcform-toolbar .amcform-prev {
  display: none; }

.quote-complete {
  padding: 100px 0 0 0;
  margin: 50px 0 0 0 !important;
  background: transparent url(../images/icon-quote-complete.png) 50% 0 no-repeat;
  font-size: 26px !important; }

.amcform-button.-default {
  background-color: #f07f0a !important;
  border-radius: 0;
  font-family: 'Franklin Gothic';
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase; }
  .amcform-button.-default:hover, .amcform-button.-default:focus, .amcform-button.-default:active {
    background-color: #272625; }

.calculation-results {
  display: none;
  margin: 40px -40px 0 -40px;
  padding: 30px 40px 0 40px;
  background-color: #f07f0a;
  color: #ffffff; }
  .calculation-results .calculation-volume {
    display: flex;
    justify-content: space-between;
    background-color: #ffffff;
    margin: 0 0 20px 0;
    border-radius: 3px;
    padding: 6px 12px;
    color: #272625; }
    .calculation-results .calculation-volume strong {
      color: #f07f0a; }
  .calculation-results p:last-of-type {
    margin: 0; }

#page-15-0 .amcform-toolbar {
  margin: -15px -40px -40px -40px;
  padding: 40px;
  width: 100%;
  background-color: #f07f0a;
  width: auto;
  box-sizing: content-box; }
  #page-15-0 .amcform-toolbar .action.primary {
    background-color: #272625 !important;
    color: #ffffff;
    text-transform: uppercase; }

.amcform-step {
  display: inline-block;
  margin: 0 8px 0 0;
  width: 24px;
  height: 24px;
  line-height: 24px;
  border: none;
  background-color: #d4d4d4; }

.amcform-popup-block .amcform-popup {
  border-radius: 0; }

.amcform-popup-block .amcform-toolbar {
  display: block;
  text-align: left; }

.amcform-popup-block .amcform-title {
  font-size: 16px;
  text-transform: uppercase; }

.action.primary.amcform-next, .action.primary.amcform-prev {
  margin: 0; }

.amform-form .action.primary,
.amform-parent .action.primary {
  background-color: #f07f0a !important;
  border: none;
  border-radius: 0;
  padding: 2px 15px;
  min-width: 1px;
  font-family: 'Franklin Gothic';
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase; }
  .amform-form .action.primary:hover,
  .amform-parent .action.primary:hover {
    background-color: #f07f0a; }

.amcform-title-wrap.ui-state-active .amcform-step {
  background-color: #f07f0a; }

.amcform-title-wrap.ui-state-active .amcform-label {
  color: #272625; }

.amform-htwo-complete {
  margin: 0;
  font-family: 'Franklin Gothic';
  font-size: 24px;
  font-weight: 900;
  text-transform: uppercase;
  text-align: center; }
  .amform-htwo-complete:before {
    display: block;
    background-color: #f8cc9d;
    margin: 0 auto 20px auto;
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    text-align: center;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 50px;
    color: #f07f0a;
    content: "\f00c"; }

.amform-versiontwo-label {
  word-break: normal; }

.amform-text {
  font-size: 18px; }

.field-f14 .amform-text {
  font-size: 14px; }

.field-p2name,
.field-ref2name {
  margin-top: 30px !important; }

.field-incdate .label,
.field-incdate .control {
  display: inline-block !important;
  margin: 0 10px 0 0 !important; }

.amcform-title-wrap.-error .amcform-step {
  vertical-align: middle; }

.amform-body .ui-datepicker .ui-datepicker-title .ui-datepicker-year {
  width: 90px; }

.mt-20 {
  margin-top: 25px !important; }

.mt-50 {
  margin-top: 50px !important; }

.product-enq-head {
  margin: 0;
  text-align: center; }

.form-control-dis {
  pointer-events: none; }

@media (max-width: 1600px) {
  .book-skip-online .slider-container .mySlides .slide-content .table table {
    width: 300px; }
  .book-skip-online div.bottom-nav {
    width: auto; }
  .footer-container .footer-middle .orange {
    background-position: 18px center;
    padding-left: 60px;
    font-size: 22px; }
    .footer-container .footer-middle .orange p {
      font-size: 22px; } }

@media (max-width: 1024px) {
  #about-us-nav.sticky {
    top: 138px; }
  .home-products {
    max-width: calc(100vw - 30px); }
  .header-container .logo-text {
    display: none; }
  .header-container .middle {
    width: 87%; }
  .header-container .bottom {
    float: none;
    clear: left; }
  #quick-wins .box {
    display: inline-table;
    width: 100%; }
    #quick-wins .box .box-inner {
      display: table-cell;
      height: 90px;
      vertical-align: middle; }
  .book-skip-online {
    width: 88%; }
    .book-skip-online .slider-container .mySlides h2 {
      font-size: 24px; }
    .book-skip-online .slider-container .mySlides .slide-content div.skip-size-fit h2 {
      font-size: 21px; }
  #custom-amasty-blog-grid .post-date button {
    margin: 0;
    top: -6px;
    left: 50%;
    transform: translateX(-50%); }
  .custom-amasty-related .block-related-posts {
    padding: 0 15px; }
  .footer-container .footer-middle .orange {
    font-size: 18px; }
    .footer-container .footer-middle .orange p {
      font-size: 18px; }
  .accr-logos .mgz-element-single_image img {
    max-width: 150px; } }

@media (min-width: 769px) {
  div.logo img {
    max-height: 114px; }
  .fixed-header .header-container .middle {
    width: 70%; }
  .header-container {
    position: relative; }
    .header-container .bottom:before {
      display: block;
      clear: both;
      content: " "; }
    .header-container .bottom .magezon-builder {
      z-index: auto; }
    .header-container .bottom ul {
      list-style: none;
      float: right;
      padding: 0;
      margin: 0 0 15px 0; }
      .header-container .bottom ul &gt; li {
        float: left;
        margin: 0 35px 0 0; }
        .header-container .bottom ul &gt; li:last-of-type {
          margin: 0; }
        .header-container .bottom ul &gt; li a {
          font-family: 'Franklin Gothic Demi';
          font-size: 18px;
          color: #2b2a29;
          text-transform: uppercase;
          text-decoration: none; }
        .header-container .bottom ul &gt; li .mm-submenu-trigger {
          display: none; }
        .header-container .bottom ul &gt; li .mm-sub {
          display: none;
          position: absolute;
          z-index: 95;
          background-color: #ffffff;
          padding: 10px;
          border-top: 3px solid #f07f0a;
          box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); }
        .header-container .bottom ul &gt; li ul {
          float: none;
          display: block;
          margin: 0;
          padding: 0; }
          .header-container .bottom ul &gt; li ul li {
            float: none;
            margin: 0;
            line-height: 1.4; }
            .header-container .bottom ul &gt; li ul li a {
              font-family: 'Franklin Gothic';
              font-size: 14px;
              white-space: nowrap; }
              .header-container .bottom ul &gt; li ul li a:after {
                display: none; }
          .header-container .bottom ul &gt; li ul:after {
            display: block;
            clear: both;
            content: " "; }
        .header-container .bottom ul &gt; li:hover .mm-sub {
          display: block; } }

@media (max-width: 1440px) {
  .header-container .bottom ul &gt; li {
    margin: 0 30px 0 0; } }

@media (min-width: 768px) and (max-width: 992px) {
  .tablet-col-rev &gt; .mgz-container {
    flex-direction: column-reverse; } }

@media (min-width: 769px) and (max-width: 1200px) {
  .header-container .bottom ul {
    float: none;
    display: block;
    text-align: right;
    margin: 0; }
    .header-container .bottom ul li {
      float: none;
      display: inline-block;
      margin: 0 9px 0 0; }
      .header-container .bottom ul li a {
        margin: 0;
        font-size: 16px; }
      .header-container .bottom ul li ul li a {
        margin: 0;
        width: auto; }
    .header-container .bottom ul.main-menu-mobile {
      display: none; } }

@media (min-width: 769px) and (max-width: 1024px) {
  .header-container div.logo {
    margin: 0 20px 0 0; }
  .fixed-header .header-container div.logo {
    margin: 0; }
  .footer-container .footer-middle .social a {
    width: 34px;
    height: 34px;
    font-size: 16px;
    line-height: 34px; } }

@media (max-width: 830px) {
  #checkout {
    line-height: 1.5; }
    #checkout .checkout-header .header-container-checkout .logo-text-right &gt; div {
      display: block; }
    #checkout .checkout-header .header-container-checkout .logo-text-right a {
      margin-left: 0; }
    #checkout .checkout-shipping-method {
      margin: 20px 0 0 0; }
    #checkout .checkout-payment-method .payment-option {
      margin: 0; } }

@media (max-width: 1024px) {
  .fixed-header .header-container .middle {
    margin: 0;
    width: calc(100% - 60px); }
    .fixed-header .header-container .middle .middle-help {
      display: none; }
  .home-products .mgz-single-image-wrapper {
    width: 100%; }
    .home-products .mgz-single-image-wrapper img {
      width: 100%; }
  .tbl-o1 {
    order: 1; }
  .tbl-o2 {
    order: 2; }
    .tbl-o2.tbl-img-row2 &gt; .mgz-element-inner {
      flex-direction: row !important;
      justify-content: space-between !important; } }

@media (max-width: 940px) {
  .waste-types {
    flex-wrap: wrap;
    column-gap: 2%; }
    .waste-types .waste-type {
      flex-basis: 32%;
      margin: 0 0 10px 0; }
      .waste-types .waste-type label img {
        width: 100%; } }

@media (max-width: 768px) {
  .m-use-padding {
    padding: 0 15px; }
  .fixed-header {
    padding: 0 0 15px 0; }
  .mobile-menu {
    display: block;
    margin: 0 0 0 15px; }
    .mobile-menu a {
      display: inline-block;
      background-color: #2b2a29;
      padding: 9px 8px; }
      .mobile-menu a span {
        display: block;
        background-color: #ffffff;
        height: 4px;
        width: 22px;
        margin: 0 0 4px 0; }
        .mobile-menu a span:last-of-type {
          margin: 0 0 1px 0; }
  .header-container .logo img {
    max-height: 105px; }
  .header-container .header-middle .header-social {
    order: 10; }
    .header-container .header-middle .header-social a:last-of-type {
      margin: 0; }
  .header-container .header-middle .header-search {
    width: 100%;
    margin: 0 12px 0 0; }
    .header-container .header-middle .header-search .search {
      width: 99%; }
    .header-container .header-middle .header-search .form.minisearch .field input {
      width: 100%; }
  .header-container .header-middle-br {
    flex-basis: 100%; }
  .header-container .bottom {
    clear: both; }
  .header-container .top-menu {
    display: none; }
  .mm-wrapper {
    background-color: #000000;
    position: fixed;
    z-index: 1010;
    top: 0;
    right: -275px;
    width: 275px;
    height: 100%;
    transition: all 0.3s ease;
    padding: 15px; }
    .mm-wrapper .main-menu-mobile {
      display: block; }
    .mm-wrapper .mm-text {
      display: block;
      color: #ffffff;
      line-height: 1.4; }
      .mm-wrapper .mm-text span {
        display: block;
        color: #f07f0a; }
    .mm-wrapper .mm-close-btn {
      display: block;
      position: absolute;
      top: 15px;
      right: 15px;
      width: 25px;
      height: 22px;
      background-color: #ffffff;
      color: #000000;
      border-radius: 3px;
      font-size: 18px;
      line-height: 24px;
      text-align: center; }
    .mm-wrapper ul {
      list-style: none;
      padding: 0;
      margin: 30px 0 0 0; }
      .mm-wrapper ul li {
        margin: 0 !important;
        font-size: 15px; }
        .mm-wrapper ul li a {
          color: #ffffff; }
          .mm-wrapper ul li a.active {
            color: #f07f0a; }
        .mm-wrapper ul li ul {
          margin: 0 0 0 20px; }
        .mm-wrapper ul li .mm-submenu-trigger {
          float: right;
          display: block; }
          .mm-wrapper ul li .mm-submenu-trigger:after {
            display: block;
            font-family: "Font Awesome 5 Free";
            font-weight: 900;
            padding: 0 5px;
            color: #ffffff;
            content: "\f0da"; }
          .mm-wrapper ul li .mm-submenu-trigger.mm-submenu-opened:after {
            content: "\f0d7"; }
        .mm-wrapper ul li .mm-sub {
          height: 0;
          overflow: hidden; }
        .mm-wrapper ul li .mm-submenu-opened + a + .mm-sub {
          height: auto; }
  body.mm-opened {
    overflow-y: hidden; }
    body.mm-opened .mm-overlay {
      display: block;
      position: fixed;
      z-index: 1005;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.8);
      pointer-events: none; }
    body.mm-opened .mm-wrapper {
      right: 0; }
  #about-us-nav.sticky {
    top: 166px; }
  .home-slider .item-content .slide-heading h2 {
    font-size: 28px !important; }
  .home-slider .item-content .slide-buttons .mgz-btn {
    font-size: 18px !important; }
  .home-slider .mgz-carousel-nav-position-center_split .owl-nav .owl-prev {
    left: 10px; }
  .home-slider .mgz-carousel-nav-position-center_split .owl-nav .owl-next {
    right: 15px; }
  .book-skip-online {
    width: 95%; }
    .book-skip-online .slider-container .mySlides .slide-content {
      display: block; }
      .book-skip-online .slider-container .mySlides .slide-content .vertical-separator {
        display: none; }
      .book-skip-online .slider-container .mySlides .slide-content .table {
        max-width: 300px;
        margin: 0 auto; }
        .book-skip-online .slider-container .mySlides .slide-content .table table th, .book-skip-online .slider-container .mySlides .slide-content .table table td {
          padding: 0; }
      .book-skip-online .slider-container .mySlides .slide-content .skip-size-fit {
        max-width: max-content;
        margin: 30px auto 0 auto; }
        .book-skip-online .slider-container .mySlides .slide-content .skip-size-fit h2 {
          margin: 0; }
    .book-skip-online .slider-nav a.prev {
      left: 0; }
    .book-skip-online .slider-nav a.next {
      right: 0; }
  .accr-logos {
    flex-wrap: wrap; }
    .accr-logos .mgz-element-single_image {
      flex-basis: 33%; }
      .accr-logos .mgz-element-single_image:nth-child(1), .accr-logos .mgz-element-single_image:nth-child(2), .accr-logos .mgz-element-single_image:nth-child(3) {
        margin: 0 0 20px 0; }
  #what-you-will-get .slider-container .mySlides .slide-content {
    display: block; }
  .contact-form-section {
    padding: 0; }
    .contact-form-section .contact-header {
      margin: 0 0 15px 0; }
    .contact-form-section .contact-us-details {
      margin: 20px 0 40px 0; }
    .contact-form-section .contact-header-text {
      width: auto; }
  #contact-form p.checkbox-text {
    margin-left: -20px; }
  .amblog-index-post .page-main {
    padding: 0; }
  .custom-amasty-blog-post {
    padding: 0 15px; }
  .opc-estimated-wrapper {
    display: none; }
  .footer-container .footer-top .block-footer {
    border-bottom: 2px solid #f07f0a; }
    .footer-container .footer-top .block-footer .title-footer {
      position: relative;
      padding: 22px 0; }
      .footer-container .footer-top .block-footer .title-footer:after {
        display: block;
        position: absolute;
        top: 25px;
        right: 0;
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        padding: 0 5px;
        color: #ffffff;
        content: "\f078"; }
    .footer-container .footer-top .block-footer .line {
      display: none; }
    .footer-container .footer-top .block-footer .content-footer {
      height: 0;
      overflow: hidden; }
    .footer-container .footer-top .block-footer.f-submenu-opened .title-footer:after {
      content: "\f077"; }
    .footer-container .footer-top .block-footer.f-submenu-opened .content-footer {
      height: auto; }
  .footer-container .footer-top ul {
    padding: 10px 0; }
    .footer-container .footer-top ul li:last-of-type {
      margin: 0; }
  .footer-container .footer-top .container {
    border-bottom: none; }
  .footer-container .footer-middle .social {
    float: none;
    text-align: center; }
    .footer-container .footer-middle .social a {
      float: none;
      display: inline-block;
      width: 57px;
      height: 57px;
      line-height: 57px;
      margin: 0 10px 20px 10px;
      border-radius: 30px; }
  .footer-container .footer-middle .orange {
    padding: 0;
    margin: 0 0 12px 0;
    text-align: center; }
  .footer-container .footer-middle .container {
    border-bottom: none;
    padding-top: 5px; }
  .footer-container .footer-bottom {
    padding: 0; }
    .footer-container .footer-bottom .copyright-footer {
      float: none;
      text-align: center; }
    .footer-container .footer-bottom .design {
      float: none;
      margin: 10px 0 0 0;
      text-align: center; } }

@media (min-width: 639px) and (max-width: 1024px) {
  #custom-amasty-blog-recentposts .row &gt; div:last-child {
    display: none; } }

@media (max-width: 639px) {
  .opc-wrapper .form-login,
  .opc-wrapper .form-shipping-address,
  .opc-wrapper .methods-shipping {
    background: transparent; }
  .opc-wrapper .methods-shipping {
    margin: 0;
    padding: 0;
    border: none; }
  .skip-delivery-opts {
    display: block; }
    .skip-delivery-opts .skip-delivery-opt {
      width: auto;
      margin: 0 0 20px 0; }
  .quick-wins .mgz-element-column {
    border-top: 2px solid #ffffff;
    border-bottom: none;
    border-left: none;
    border-right: none; }
  .cvc-m-units {
    display: block; }
  .cvc-form .cvc-form-item .cvc-form-svg svg {
    max-width: 75%; }
  button.btn-cvc-calc {
    width: auto; } }

@media (max-width: 540px) {
  .accr-logos {
    flex-wrap: wrap; }
    .accr-logos .mgz-element-single_image {
      flex-basis: 50%; }
      .accr-logos .mgz-element-single_image:nth-child(4) {
        margin: 0 0 20px 0; }
  .blog-categories-selector {
    margin: 15px 0 40px 0; }
    .blog-categories-selector .blog-categories {
      max-width: 100%; }
  .history-slider .history-slide {
    display: block;
    max-width: calc(100% - 40px); }
    .history-slider .history-slide .history-slide-r:first-of-type {
      display: flex; }
      .history-slider .history-slide .history-slide-r:first-of-type .history-slide-timeline,
      .history-slider .history-slide .history-slide-r:first-of-type .history-slide-year {
        display: block; }
      .history-slider .history-slide .history-slide-r:first-of-type .history-slide-timeline {
        width: 50%; }
      .history-slider .history-slide .history-slide-r:first-of-type .history-slide-year {
        position: relative; }
        .history-slider .history-slide .history-slide-r:first-of-type .history-slide-year:after {
          position: absolute;
          display: block;
          top: 50%;
          left: calc(100% + 10px);
          height: 1px;
          width: 1000px;
          background: transparent url(../images/history-timeline.png) 0 0 repeat-x;
          content: " "; }
    .history-slider .history-slide .history-slide-r:last-of-type {
      display: block; }
      .history-slider .history-slide .history-slide-r:last-of-type .history-slide-image,
      .history-slider .history-slide .history-slide-r:last-of-type .history-slide-text {
        display: block;
        width: auto; }
    .history-slider .history-slide .history-slide .history-slide-image {
      padding: 20px 0 0 0; }
    .history-slider .history-slide .history-slide .history-slide-text::after {
      display: none; }
  .history-slider .owl-carousel {
    padding: 0 0 30px 0; }
    .history-slider .owl-carousel .owl-nav {
      position: relative;
      bottom: -30px; }
      .history-slider .owl-carousel .owl-nav .owl-prev,
      .history-slider .owl-carousel .owl-nav .owl-next {
        position: static;
        margin: 0 10px; } }

@media (max-width: 425px) {
  .columns .column.main {
    padding-bottom: 0; }
  .header-container div.logo {
    margin: 0; }
  .header-container .header-flex {
    column-gap: 20px; }
  .header-container .header-content .header-middle {
    margin: 20px 0 0 0; }
    .header-container .header-content .header-middle .skip-booking {
      padding: 0 6px;
      font-size: 16px; }
      .header-container .header-content .header-middle .skip-booking a {
        min-width: 1px; }
    .header-container .header-content .header-middle .header-search {
      position: absolute;
      z-index: 1002;
      left: 0;
      margin: 45px 0 0 0; }
  .home-slider .item-content .slide-heading h2 {
    font-size: 20px !important; }
  .home-slider .item-content .slide-buttons .mgz-btn {
    font-size: 16px !important; }
  .home-slider .mgz-carousel-nav-position-center_split .owl-nav {
    display: none; }
  .home-products .mgz-image-hovers {
    text-align: center; }
  .home-products .mgz-element-column .mgz-element-text {
    left: 50%;
    bottom: 4px;
    transform: translateX(-50%); }
  .book-skip-online .slider-container .mySlides .slide-content .img-skip img {
    width: 50%; }
  .book-skip-online .slider-container .mySlides .slide-content .table {
    max-width: 250px; }
  .wwa-cf-block .amform-form .fieldset .fields .amform-layout-three {
    max-width: 100%; }
    .wwa-cf-block .amform-form .fieldset .fields .amform-layout-three:nth-child(3n) {
      margin-right: 0; }
  .wwa-cf-block .amform-form .fieldset .fields .amform-layout-two.field-cvc-message {
    max-width: 100% !important; }
  .waste-types {
    flex-wrap: wrap;
    column-gap: 2%; }
    .waste-types .waste-type {
      flex-basis: 48%;
      margin: 0 0 10px 0; }
      .waste-types .waste-type:last-of-type {
        flex-basis: 60%; }
        .waste-types .waste-type:last-of-type label img {
          width: 100%; }
  .skip-select-nav {
    flex-wrap: wrap; }
    .skip-select-nav .skip-select-nav-item {
      margin: 0 15px 0 0; }
  .skip-select-product .skip-select-product-bg .skip-info-order {
    display: block; }
    .skip-select-product .skip-select-product-bg .skip-info-order .skip-size,
    .skip-select-product .skip-select-product-bg .skip-info-order .skip-order {
      width: auto; }
    .skip-select-product .skip-select-product-bg .skip-info-order .skip-order {
      border: none;
      padding: 15px 0 0 0; }
  .skip-select-product .skip-select-product-bg .skip-duration {
    display: block; }
  .contact-form-section p.friendly-header {
    font-size: 16px; }
  .contact-form-section .button-section .contact-form-checkbox-text {
    margin: 15px; }
  #custom-amasty-blog-recentposts .post {
    margin: 0 0 45px 0; }
    #custom-amasty-blog-recentposts .post:last-of-type {
      margin: 0; }
  .custom-amasty-blog-post .post-title-social-icons .title-date {
    float: none; }
  .custom-amasty-blog-post .post-title-social-icons .social-icons {
    float: none; }
    .custom-amasty-blog-post .post-title-social-icons .social-icons .amblog-social-container {
      padding: 0; }
  #checkout .checkout-header .below-logo {
    margin-top: 25px; }
  .opc-estimated-wrapper,
  #quick-wins-checkout {
    display: none; }
  #about-us-nav.sticky {
    top: 190px; }
  #about-us-nav a {
    margin: 0;
    padding: 4px 6px;
    font-size: 15px; }
  #funding-stories {
    padding: 24px; }
  .funding-story {
    flex-wrap: wrap; }
    .funding-story .funding-story-image {
      margin: 20px 0 0 0;
      order: 2; }
  .item-funding .item-funding-info {
    flex-wrap: wrap; }
    .item-funding .item-funding-info .item-funding-name {
      padding: 0;
      width: 100%; }
    .item-funding .item-funding-info .item-funding-readmore {
      width: 44%; }
    .item-funding .item-funding-info .item-funding-amt {
      width: 55%;
      padding: 4px 10px; }
    .item-funding .item-funding-info .item-funding-readmore .mgz-btn {
      padding: 10px; } }
</pre></body></html>