/* Colours

#252525 = Black
#eeeeee = Grey
#d5d5d5 = Grey when Grey background is used, Hover text
#FFFFFF = White

/* Global */


/* Grid Filters */
.product-grid-filters-cont {
  width: 100%;
  max-width: 1600px;
  margin: 25px auto 15px;
  padding: 0 20px;
  box-sizing: border-box;
}
.product-grid-filters {
  background: #e8edee;
  display: flex;
  flex-flow: row;
  width: 100%;
  padding: 5px 10px;
  margin-bottom: 10px;
  box-sizing: border-box;
  align-items: center;
}
.product-grid-filters h3 {
  display:none;
}
.product-filter-options {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  width: 100%;
}
.product-filter-name {
  box-sizing: border-box;
  text-transform: uppercase;
  display: flex;
  margin: 5px 0 5px 0px;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex: 1 0 auto;
}
.product-filter-name label {
  background: #768692;
  color: #ffffff;
  padding: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 0 auto;
}
.product-filter-name input:disabled + label {
  cursor: not-allowed;
}
.product-filter-name input:hover + label {
  background: #425563;
}
.product-filter-name input:checked + label,
.filters-view-all-selected {
  background: #425563 !important;
  font-weight: 700;
}
.product-grid-filters input {
  visibility: hidden;
  width: 0px;
}
.ekm-filter-count {
  display: none;
}
/* Grid Filters */


.homepage-header-new {
  width: 1366px;
  height: 768px;

  display: grid;
  grid:
    "hh-one hh-two" auto
    "hh-three hh-four" 10%
    / 30% 70%;
  gap: 0px 8px;
}

.hh-one { grid-area: hh-one; }
.hh-two { grid-area: hh-two; }
.hh-three { grid-area: hh-three; }
.hh-four { grid-area: hh-four; }

body {
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  letter-spacing: 2px;
  background-color: #ffffff;
  color: #252525;
}

h1 {
  text-transform: uppercase;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 6px;
}

h2 {
  text-transform: uppercase;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 3px;
  margin-right: -3px;
}

h3 {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 300;
  margin: 0;
}

h4 {
  text-transform: uppercase;
}

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

.anchor-point {
  top: -80px;
  position: relative;
  visibility: hidden;
}

p {
  line-height: 20px;
}

#page-container {
  position: relative;
  min-height: 100vh;
}

#page-content {
  margin-top: 10px;
  padding-bottom: 165px;
}

.product-tablet {
  display: none;
}

.breadcrumbs {
  padding: 5px 0;
  font-size: 12px;
}

.breadcrumbs a:hover {
  font-weight: 500;
}

/* Header */

header {
  width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  position: sticky;
  top: 0;
  background: #ffffff;
  z-index: 500;
}

.header-left,
.header-logo,
.header-right,
.header-search,
.header-menu {
  z-index: 20;
  background: #ffffff;
  transition: background 0.5s ease-in;
}
header:hover .header-left,
header:hover .header-logo,
header:hover .header-right,
header:hover .header-search,
header:hover .header-menu {
  background: #eeeeee;
  transition: background 0.5s ease-in;
}

.header-logo {
  width: 46%;
  padding: 5px 2% 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  order: 2;
}
.header-logo img {
  width: 100%;
  max-width: 400px;
  padding: 10px;
  box-sizing: border-box;
}
.header-contact {
  font-size: 14px;
  letter-spacing: 2px;
  margin-top: 5px;
  width: 100%;
  display: flex;
  flex-flow: row;
  align-items: center;
  justify-content: center;
}
.header-contact a {
  margin: 0 10px;
  display: block;
}
.header-contact a:first-of-type {
  margin-right: 1vw;
}
.header-contact a:hover {
  opacity: 0.8;
}
.header-contact i {
  font-size: 18px;
}

.header-left {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  width: 25%;
  order: 1;
  padding: 10px 0 5px 25px;
  box-sizing: border-box;
  z-index: 21;
}
.header-right {
  display: flex;
  flex-flow: column;
  align-items: flex-end;
  justify-content: flex-start;
  width: 25%;
  order: 3;
  padding: 10px 25px 5px 0;
  box-sizing: border-box;
}
.usercontrols,
.header-userinformation {
  display: flex;
  flex-flow: row;
  align-items: flex-start;
  margin: 0 0 5px 0;
  text-align: center;
}
.usercontrol-cont.search-header,
.usercontrol-cont a,
.usercontrol-cont.basket-selected {
  padding: 10px 10px 5px 10px;
  display: flex;
  flex-flow: column;
  align-items: center;
  font-size: 14px;
  transition: background ease 0.2s;
}
.usercontrol-cont a:hover,
.search-header:hover {
  background: #d5d5d5;
  transition: background ease 0.2s;
}
.search-header {
  cursor: pointer;
}
.usercontrol-cont i {
  font-size: 24px;
}
.usercontrol-text {
  display: flex;
  text-transform: uppercase;
  margin-top: 5px;
}
.basket-total {
  background: #252525;
  color: #ffffff;
  border-radius: 20px;
  padding: 3px 5px;
  font-size: 10px;
}
.usercontrol-disabled {
  color: #acacac;
}
.usercontrol-selected {
  color: #acacac;
}
.header-right-vat {
  display: flex;
  flex-flow: row;
  align-items: center;
  justify-content: flex-end;
}
.vat-toggle-desc {
  text-transform: uppercase;
  margin-right: 10px;
  text-align: right;
}
.vat-toggle-container select,
.vat-toggle-container option {
  border: 0px;
  font-family: "Roboto", sans-serif;
  letter-spacing: 2px;
  color: #252525;
  text-transform: uppercase;
  outline: none;
  transition: background 0.5s ease-in;
  Padding-right:15px;
}
header:hover .vat-toggle-container select,
header:hover .vat-toggle-container option {
  background: #eeeeee;
  transition: background 0.5s ease-in;
}

.header-search {
  width: 100%;
  order: 4;
  display: none;
  align-items: center;
  justify-content: center;
  padding-bottom: 15px;
}
.search {
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #252525;
  max-width: 600px;
  width: 80%;
  margin-top: 10px;
}
.search form {
  margin: 0;
  flex: 1;
  display: flex;
  flex-flow: row;
}
.search-button {
  background: #ffffff;
  border: none;
  cursor: pointer;
  font-size: 20px;
  transition: background 0.5s ease-in;
}
.search input {
  border: none;
  flex: 1;
  padding: 5px;
  font-size: 14px;
  width: 100%;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: background 0.5s ease-in;
}
header:hover .search input,
header:hover .search-button {
  background: #eeeeee;
  transition: background 0.5s ease-in;
}
.search input::placeholder {
  color: #252525;
  opacity: 1;
}
.search input:focus,
.search-button:focus {
  outline: none;
}

.header-menu {
  width: 100%;
  order: 5;
  display: flex;
  flex-flow: row;
  align-items: flex-start;
  justify-content: center;
  margin-bottom:-1px;
  background:#eeeeee;
}
.header-menu-button-primary {
  font-size: 16px;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-align: center;
}
.header-menu-button {
  border-right: 1px solid #eeeeee;
  position: relative;
}
header:hover .header-menu-button {
  border-right-color: #d5d5d5;
}
.header-menu-button:last-of-type {
  border-right: 0px;
}
.header-menu-button:hover .header-menu-button-primary {
  background: #d5d5d5;
  transition: all 0.2s ease-in;
  text-shadow: 0px 0px 1px #252525;
}
div.header-menu-button-primary,
a.header-menu-button-primary {
  padding: 8px 1vw;
  display: block;
  cursor: pointer;
}
.header-menu-sub {
  display: none;
  flex-flow: column;
  position: absolute;
  background: #d5d5d5;
  z-index: 20;
  width: 100%;
  min-width: 200px;
  max-height: 70vh;
  box-sizing: border-box;
  justify-content: flex-start;
  align-items: center;
  overflow-y: auto;
}
.header-menu-button:hover .header-menu-sub {
  display: flex;
}
.header-menu-button-sub {
  padding: 15px 10px;
  display: block;
  box-sizing: border-box;
  width: 100%;
  text-transform: uppercase;
  text-align: center;
}
.header-menu-button-sub:hover {
  text-shadow: 0px 0px 1px #252525;
  background: #bbbbbb;
}

.header-banner {
  width: 100%;
  padding: 0px 20px;
  box-sizing: border-box;
  text-align: center;
  font-weight: 300;
  font-size: 12px;
  letter-spacing: 1.5px;
}
.header-banner h3 {
  margin-bottom: 5px;
}

/* Footer */

.footer-hero {
  height: 30vw;
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 20px;
  margin-bottom: -25px;
}
.footer-hero img {
  width: auto;
  height: 50vw;
}

footer {
  position: absolute;
  margin-top: 20px;
  bottom: 0;
  width: 100%;
  background: #000000;
  font-weight: 100;
  letter-spacing: 3px;
  font-size: 11px;
}
footer a {
  color: #ffffff;
}

#footer-contact {
  background: #252525;
  padding: 20px;
  color: #ffffff;
  text-align: center;
  text-transform: uppercase;
}
#footer-contact img {
  max-width: 250px;
  width: 100%;
}
.footer-links {
  margin: 10px 80px 10px;
  line-height: 18px;
}
#footer-pages {
  margin-top: 15px;
  font-size: 13px;
  line-height: 18px;
}
.footer-social {
  position: absolute;
  padding: 0px 10px;
  top: 32%;
}
.footer-social i {
  color: #eeeeee;
  opacity: 0.7;
  font-size: 20px;
}
.footer-social a:hover i {
  opacity: 1;
}
.footer-social a {
  padding: 5px;
}
#footer-copyright {
  width: 100%;
  text-align: center;
  background: #000000;
  color: #ffffff;
  font-size: 10px;
  padding: 8px 0 10px;
}

/* Homepage */
.homepage-header {
  display: flex;
  flex-flow: row;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 2500px;
  margin: 0 auto 10px;
}
.homepage-header-content {
  height:100%;
  font-size: 16px;
  letter-spacing: 2px;
  padding: 0 6vw;
  box-sizing: border-box;
  text-align: center;
}
.homepage-header-image {
  flex: 1 0 55%;
  height: 400px;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.homepage-header-image a {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  height: 100%;
}
.homepage-header-image-text {
  display: block;
  text-align: center;
  width: 100%;
  padding: 10px 5px;
  background: #252525;
  color: #ffffff;
  font-size: 16px;
  letter-spacing: 2px;
}
.homepage-header-image:hover .homepage-header-image-text {
  color: #d5d5d5;
}
.homepage-header-content-split {
  display: flex;
  flex-flow: row;
  align-items: center;
  font-size: 18px;
}
.homepage-header-content-split-right {
  flex: 1;
}
.homepage-header-content-split-left img {
  width: 200px;
  padding: 10px 20px 10px;
}
.homepage-header-content .divider {
  margin-top: 20px;
}
.homepage-suite-button a {
  background: #252525;
  color: #ffffff;
  font-size: 14px;
  padding: 10px;
  text-transform: uppercase;
  display: block;
}
.homepage-suite-button a:hover {
  color: #d5d5d5;
}

.homepage-collections-cont {
  display: flex;
  flex-flow: row;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1800px;
  margin: 0 auto 0;
}
.homepage-collection,
.homepage-collection-full {
  width: 48%;
  padding: 0 20px 0 20px;
  display: flex;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  background: #ffffff;
  transition: background 0.5s ease-in;
}
.homepage-collection-full {
  width: 100%;
  margin-top: -10px;
}
.homepage-collection:hover,
.homepage-collection:hover .homepage-collection-header,
.homepage-urinalscat:hover,
.homepage-urinalscat:hover .homepage-urinalscat-header {
  background: #eeeeee;
  transition: background 0.5s ease-in;
}
.homepage-collection-header {
  display: flex;
  flex-flow: column;
  align-items: center;
  width: 100%;
  position: sticky;
  top: 130;
  background: #ffffff;
  transition: background 0.5s ease-in;
  z-index: 10;
}
.homepage-collection-header a {
  display: block;
  width: 100%;
  text-align: center;
  padding-top: 15px;
}
.homepage-collection-header img {
  max-width: 200px;
}
.homepage-collection-name {
  width: 100%;
}
.homepage-collection-name a,
.homepage-urinals-header a {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 15px 0 10px;
  display: block;
  width: 100%;
  text-align: center;
}
.homepage-collection-image img,
.homepage-collection-subcat-image img,
.homepage-producttype-image img,
.homepage-urinalscat img {
  width: 100%;
  height: auto;
  transition: opacity 0.2s ease;
}
.homepage-collection-image:hover img {
  opacity: 0.8;
  transition: opacity 0.2s ease;
}
.homepage-collection-subcat:hover .homepage-collection-subcat-image img,
.homepage-producttype:hover .homepage-producttype-image img,
.homepage-urinalscat:hover .homepage-urinalscat-image img {
  opacity: 0.7;
  transition: opacity 0.2s ease;
}
.homepage-collection-link {
  background: #252525;
  text-align: center;
  width: 100%;
  margin-bottom: 20px;
}
.homepage-collection-subcat-name,
.homepage-producttype-name,
.homepage-urinalscat-link {
  background: #252525;
  text-align: center;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.homepage-collection-link a,
.homepage-producttype-name a,
.homepage-urinalscat-link a {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  box-sizing: border-box;
  color: #ffffff;
  font-size: 16px;
  letter-spacing: 3px;
}
.homepage-collection-link a:hover,
.homepage-collection-image:hover + .homepage-collection-link a {
  opacity: 0.8;
}
.homepage-collection-subcat:hover .homepage-collection-subcat-name a,
.homepage-producttype:hover .homepage-producttype-name a,
.homepage-urinalscat:hover .homepage-urinalscat-link a {
  opacity: 0.8;
}
.homepage-collection-subcat-cont,
.homepage-urinalscat-cont {
  width: 100%;
  display: flex;
  flex-flow: row;
  justify-content: space-between;
}
.homepage-producttype-cont {
  width: 100%;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}
.homepage-producttype-cont,
.homepage-urinals-cont {
  width: 100%;
  max-width: 1760px;
  margin: 0 auto;
}
.homepage-collection-subcat,
.homepage-producttype {
  width: 23%;
  display: flex;
  flex-flow: column;
  margin-bottom:10px;
}
.homepage-urinalscat {
  width: 30%;
  display: flex;
  flex-flow: column;
}
.homepage-collection-subcat-name a {
  width: 100%;
  display: block;
  align-content:center;
  padding: 7px;
  min-height:50px;
  box-sizing: border-box;
  color: #ffffff;
  letter-spacing: 2px;
}
.homepage-producttype-full,
.homepage-productcollection-full {
  width: 100%;
  padding: 10px 20px 10px;
  background: #eeeeee;
  box-sizing: border-box;
  margin: 10px 0 10px;
}
.homepage-producttype-header,
.homepage-urinals-header {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 8px;
  text-transform: uppercase;
  display: block;
  width: 100%;
  text-align: center;
  position: sticky;
  top: 135;
}
.homepage-producttype-header {
  background: #eeeeee;
  padding: 20px 0;
  box-sizing: border-box;
  z-index: 10;
}
.homepage-producttype-header p {
  font-size: 12px;
  letter-spacing: 2px;
  max-width: 900px;
  font-weight: 400;
  line-height: 16px;
  margin: 5px auto 0;
}
.homepage-urinalscat {
  padding: 0 20px 20px;
  background: #ffffff;
  transition: background 0.5s ease-in;
}
.homepage-urinalscat-upper {
  flex: 1;
  display: flex;
  flex-flow: column;
}
.homepage-urinals-header {
  background: #ffffff;
  box-sizing: border-box;
  z-index: 11;
}
.homepage-urinals-header a {
  background: #ffffff;
  padding: 20px 0 10px;
}
.homepage-urinalscat-header {
  display: flex;
  flex-flow: column;
  align-items: center;
  flex: 1;
  width: 100%;
  position: sticky;
  top: 190;
  background: #ffffff;
  transition: background 0.5s ease-in;
  z-index: 10;
}
.homepage-urinalscat-header a {
  display: block;
  width: 100%;
  text-align: center;
  padding-top: 20px;
}
.homepage-urinalscat-header img {
  max-width: 175px;
}
.homepage-urinalscat-name {
  width: 100%;
}
.homepage-urinalscat-name a {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 6px;
  text-transform: uppercase;
  padding: 10px 0 15px;
  display: block;
  width: 100%;
  text-align: center;
}

/* Category */

.category-header {
  display: flex;
  flex-flow: row;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 2500px;
  margin: 0 auto 10px;
}
.category-header-content {
  font-size: 16px;
  letter-spacing: 2px;
  padding: 0 7vw;
  box-sizing: border-box;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
}
.category-header-content .breadcrumbs {
  margin-bottom: 5px;
  width: 100%;
  text-align: center;
  letter-spacing: 2px;
}
.category-header-content h1 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-weight: 700;
}
.category-header-content h2 {
  margin-top: 0px;
  margin-bottom: 10px;
  letter-spacing: 5px;
}
.category-header-description {
  width: 100%;
  box-sizing: border-box;
  margin-top:-1px
  margin-bottom:-1px;
}
.category-header-description p:first-of-type {
  margin-top: 2px;
}
.category-header-description img {
  margin: 15px auto;
  max-width: 200px;
}
.category-header-content img {
  max-width: 200px;
  width: 100%;
}
.design-inspiration-cont {
  display: flex;
  flex-flow: row;
  align-items: center;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  background: #eeeeee;
  padding: 5px 10px;
  box-sizing: border-box;
}
.design-inspiration-category-cont {
  max-width: 1680px;
  margin-bottom: 20px;
  position: relative;
}
.design-inspiration-intro {
  display: flex;
  flex-flow: column;
  align-items: center;
  margin: 3px 10px;
  text-align: center;
}
.design-inspiration-intro h4 {
  margin: 5px 0px;
}
.design-inspiration-intro p {
  font-size: 12px;
  margin: 0;
  line-height: 16px;
}
.design-inspiration-links {
  flex: 1;
  display: flex;
  flex-flow: row;
  margin-left: 20px;
}
.design-inspiration {
  width: 100%;
  margin: 0 10px;
}
.design-inspiration a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-align: center;
  background: #252525;
  color: #ffffff;
  font-size: 14px;
  box-sizing: border-box;
  padding: 8px;
}
.design-inspiration a:hover {
  color: #d5d5d5;
}
.category-header-image {
  flex: 1 0 55%;
  height: 400px;
  overflow: hidden;
  padding-bottom: 10px;
}
.category-header-image img {
  height: 100%;
  width: auto;
}
.category-scrolling-name {
  opacity: 0;
  margin-top: -65px;
  width: 100%;
  position: sticky;
  top: 135;
  z-index: 12;
  background: #ffffff;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 6px;
  text-transform: uppercase;
  padding: 10px 20px 15px;
  box-sizing: border-box;
  transition: opacity 0.2s ease;
}

.category-grid,
.product-grid {
  margin: 0 auto;
  max-width: 1760px;
  width: 100%;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  padding: 0 20px;
  box-sizing: border-box;
}
.category-item,
.product-item {
  width: 25%;
  display: flex;
  flex-flow: column;
  justify-content: center;
  padding: 0 20px 20px;
  margin-bottom: 20px;
  box-sizing: border-box;
  background: #ffffff;
  transition: background 0.5s ease-in;
}

.product-grid-variant-circles {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  margin: 5px 10px;
  border: 1px solid #212a31;
}
.product-grid-variant-circles + .vertical-divider-bk,
.product-grid-variant-circles + .vertical-divider {
  margin: 0px 10px;
  height: 50%;
}
.category-item:hover,
.category-item:hover .category-item-header,
.product-item:hover,
.product-item:hover .product-item-header {
  background: #eeeeee;
  transition: background 0.5s ease-in;
}
.category-item-header,
.product-item-header {
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  width: 100%;
  text-align: center;
  /* position: sticky; */
  top: 185;
  background: #ffffff;
  box-sizing: border-box;
  z-index: 10;
  transition: background 0.5s ease-in;
}
.category-item-header h2 {
  margin: 0 -5px 0 0;
  width: 100%;
  letter-spacing: 5px;
}
.product-item-header h2 {
  margin: 0 -3px 0 0;
  width: 100%;
  font-size: 18px;
}
.category-item-header a,
.product-item-header a {
  display: block;
  width: 100%;
  text-align: center;
  padding: 15px 0;
  box-sizing: border-box;
}
.category-item img,
.product-item img {
  width: 100%;
  height: auto;
  transition: opacity 0.2s ease;
}
.category-item-link {
  background: #252525;
  text-align: center;
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.category-item-link a {
  width: 100%;
  padding: 10px;
  display: block;
  box-sizing: border-box;
  color: #ffffff;
  font-size: 16px;
  letter-spacing: 3px;
}
.category-item:hover .category-item-link a {
  opacity: 0.8;
}
.category-item:hover .category-item-image img,
.product-item:hover .product-item-image img,
.product-item-link:hover{
  opacity: 0.7;
  transition: opacity 0.2s ease;
}
.product-item-price {
  background: #252525;
  text-align: center;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
}
.product-item:hover .product-item-price a {
  opacity: 0.8;
}
.exc-vat {
  display: none;
}
.inc-vat a,
.exc-vat a {
  width: 100%;
  display: block;
  padding: 10px;
  box-sizing: border-box;
  color: #ffffff;
  font-size: 20px;
  letter-spacing: 2px;
}
.inc-vat a .u-font-weight--regular,
.exc-vat a .u-font-weight--regular {
  font-size: 12px !important;
  font-weight: 300;
  line-height: 16px;
}
#vat-text {
  font-size: 12px;
  font-weight: 300;
}
.product-item-footer {
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  width: 100%;
  max-height: 115px;
}
#product-item-footer-double {
  height: 190px;
}
.product-finishes-list {
  background: #eeeeee;
  transition: background 0.5s ease;
  font-size: 10px;
  width: 100%;
  height: 84px;
  overflow-y: auto;
}
#product-item-footer-double .product-finishes-list {
  height: 90px;
}
.product-finishes-list a {
  width: 100%;
  height:100%;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-around;
  padding: 10px 10px 5px;
  box-sizing: border-box;
}
.product-item:hover .product-finishes-list {
  background: #d5d5d5;
  transition: background 0.5s ease;
}
.product-finishes-list .finish-image img {
  max-width: 50px;
  max-height: 35px;
  margin-bottom: 8px;
  width: auto;
}
.product-finishes-list .finish-name {
  font-weight: 500;
  text-transform: uppercase;
}
.product-item-link {
  background: #d5d5d5;
  width: 100%;
  transition: all 0.5s ease;
  height: 30px;
  line-height: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-item:hover .product-item-link {
  background: #bbbbbb;
  transition: all 0.5s ease;
}
.product-item-link a {
  padding: 8px 2px;
  box-sizing: border-box;
  font-size: 12px;
  letter-spacing: 3px;
  color: #252525;
  text-align: center;
  width: 100%;
  display: block;
  font-weight: 500;
  text-transform: uppercase;
  transition: all 0.5s ease;
}

.category-finishes-cont {
  width: 100%;
  padding: 10px 20px;
  background: #eeeeee;
  box-sizing: border-box;
  margin-top: 20px;
  margin-bottom: -30px;
}
.category-finishes-content {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
.category-finishes-content h2 {
  position: sticky;
  top: 135;
  margin: 0;
  padding: 20px 0;
  background-color: #eeeeee;
  width: 100%;
  text-align: center;
}
.category-finishes-content p {
  max-width: 600px;
  margin: 0 auto 20px;
  font-weight: 300;
  letter-spacing: 1px;
}
.category-finishes-content h4 {
  font-size: 16px;
  margin: 15px 0;
}

/* Product */

.product-container {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
}

.product-top {
  display: flex;
  flex-flow: row;
  justify-content: flex-start;
}

.product-image {
  width: 50%;
}

.product-image-slider {
  margin-top: 15px;
  width: 100%;
}

.product-image-slider img {
  height: 100px;
}

.product-content {
  width: 48%;
  margin-left: 5%;
}

.product-image-links {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  border-bottom: 1px solid #252525;
  width: 100%;
}
.image-options {
  display: flex;
  flex-flow: row wrap;
}
.downloads-link {
  display: flex;
  align-items: flex-end;
  background-color: #eeeeee;
}
.image-model-type {
  padding: 5px 15px;
  cursor: pointer;
  border-right: solid 1px #252525;
}

.image-model-type:hover {
  font-weight: 500;
}

.image-model-type:last-of-type {
  border-right: none;
}

.image-active {
  font-weight: 700;
  background: #252525;
  color: #ffffff;
}

.image-active:hover {
  font-weight: 700;
}

.main-image {
  text-align: center;
  pointer-events: none;
}
.ekm-extra-image-empty {
  display: flex !important;
}
#line-drawing {
  margin-top: 10px;
}

#line-drawing img {
  max-width: 98%;
  height: auto !important;
}

.main-image img {
  width: 100%;
  height: auto;
}

.small-images {
  display: flex;
  flex-flow: row;
  margin: 20px 0 0;
}

.small-images a {
  text-align: center;
  width: 30.6666%;
  box-sizing: border-box;
  margin: 0 2%;
}
.small-images a:first-of-type {
  margin-left: 0%;
}

.small-images a:nth-of-type(3n) {
  margin-right: 0%;
}
#_EKM_PRODUCTIMAGE_LINK_7_2,
#_EKM_PRODUCTIMAGE_LINK_8_2,
#_EKM_PRODUCTIMAGE_LINK_9_2,
#_EKM_PRODUCTIMAGE_LINK_10_2,
#_EKM_PRODUCTIMAGE_LINK_11_2,
#_EKM_PRODUCTIMAGE_LINK_12_2,
#_EKM_PRODUCTIMAGE_LINK_13_2,
#_EKM_PRODUCTIMAGE_LINK_14_2,
#_EKM_PRODUCTIMAGE_LINK_15_2,
#_EKM_PRODUCTIMAGE_LINK_16_2,
#_EKM_PRODUCTIMAGE_LINK_17_2,
#_EKM_PRODUCTIMAGE_LINK_18_2,
#_EKM_PRODUCTIMAGE_LINK_19_2,
#_EKM_PRODUCTIMAGE_LINK_20_2 {
  display: none;
}

.small-images img {
  width: 100%;
  height: auto !important;
  max-height: 220px;
}
.mousezoom-loading {
  background-color: transparent !important;
}

.mousezoom-viewport {
  border: 0px !important;
  z-index: 300 !important;
}
.product-mobile {
  display: none;
}

.product-top .breadcrumbs {
  text-align: center;
}
.product-top h1 {
  margin-top: 5px;
  margin-bottom: 10px;
  text-align: center;
}

.product-details {
  display: flex;
  flex-flow: row;
  justify-content: space-between;
  align-items: center;
  margin: 10px 0 10px;
}
.product-code {
  letter-spacing: 4px;
  word-break: break-word;
}
.product-price {
  font-weight: 700;
  text-align: right;
  font-size: 24px;
  letter-spacing: 4px;
}
#vat {
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 2px;
  font-weight: 300;
}

.product-options {
  display: flex;
  flex-flow: column;
  text-transform: uppercase;
}

.option-row,
.extravariant,
.quantity {
  display: flex;
  flex-flow: column;
  align-items: center;
  background: #ffffff;
  transition: background 0.5s ease-in;
}
.option-row:hover,
.extravariant:hover,
.quantity:hover {
  background: #eeeeee;
  transition: background 0.5s ease-in;
}
.extravariant p {
  text-align: center;
  font-size: 12px;
  line-height: 16px;
  padding: 0 20px;
  box-sizing: border-box;
}

#variant-label {
  font-weight: 500;
  letter-spacing: 3px;
  text-align: center;
  width: 100%;
  margin: 10px;
}

.ekm-productoptions-radio-option-wrapper.with-label {
  min-width: 75px !important;
  justify-content: flex-start !important;
  padding: 0px 5px !important;
}
.ekm-productoptions-radio-option-header {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
}
.ekm-productoptions-size-option-header {
  display: flex;
  flex-flow: row wrap;
}

.ekm-productoptions-radio-option-label {
  width: 60px !important;
  height: 60px !important;
  border-radius: 0px !important;
  border: 0px !important;
  margin: 0 0 5px 0 !important;
}

.ekm-productoptions-radio-option-label-span {
  font-weight: 300 !important;
  margin-top: 5px;
}

.ekm-productoptions-radio-option-label:hover,
.ekm-productoptions-size-option-header label:hover {
  box-shadow: 0 0 0 1px #252525 !important;
  font-weight: 500;
}

.ekm-productoptions-radio-option:checked + label {
  box-shadow: 0 0 0 2px #252525 !important;
}

.ekm-productoptions-radio-option:checked + label + span {
  font-weight: 700 !important;
}

.ekm-productoptions-radio-option-label-span {
  font-size: 10px !important;
}

.ekm-productoptions-size-option-header label {
  min-width: 50px !important;
  max-width: 125px;
  width: unset !important;
  height: 50px !important;
  background: #ffffff;
  margin: 0 10px 10px;
  padding: 5px !important;
  border: none;
  border-radius: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ekm-productoptions-size-option-label {
  white-space: normal !important;
  font-size: 12px !important;
  text-align: center;
}
.ekm-productoptions-size-option:checked + label {
  background-color: #ffffff !important;
  color: #252525 !important;
  font-weight: 700;
  border: none !important;
  box-shadow: 0 0 0 2px #252525 !important;
}

.quantity:hover .quantity-input {
  background: #eeeeee;
  transition: background 0.5s ease-in;
}
.quantity-cont {
  display: flex;
  flex-flow: row;
  align-items: center;
  margin-bottom: 10px;
}
.quantitycontrol {
  flex: 1;
  background: #ffffff;
  transition: background 0.5s ease-in;
  color: #252525;
  min-width: 15px;
  padding: 5px 10px;
  font-weight: 700;
  font-size: 20px;
  text-align: center;
  cursor: pointer;
  user-select: none;
  border: 2px solid #ffffff;
}
.quantitycontrol:hover {
  border: 2px solid #252525;
}
.quantity .quantity-label {
  text-transform: uppercase;
}
.quantity-cont .quantity-input {
  background: #ffffff;
  transition: background 0.5s ease-in;
  width: 15%;
  font-weight: 500;
  flex: 1 0 auto;
  text-align: center;
  border: none;
}
.quantity-cont .quantity-input:focus {
  outline: none;
}

.product-bundle-cont {
  margin-top: 20px;
  text-align: center;
}

.product-bundle-cont h2 {
  margin-bottom: 5px;
}
.product-bundle-cont p {
  font-size: 14px;
}
.product-bundle-details a {
  display: block;
  width: 100%;
  text-align: center;
  padding: 5px 0;
  margin-bottom: 5px;
  font-size: 12px;
  transition: background 0.5s ease-in;
}
.product-bundle-details a:hover {
  font-weight: 500;
  background: #eeeeee;
  transition: background 0.5s ease-in;
}

.product-controls {
  width: 100%;
  display: flex;
  flex-flow: row;
  align-items: flex-start;
  justify-content: space-between;
  margin: 10px 0;
  box-sizing: border-box;
}

.product-control-delivery {
  width: 48%;
}
.product-stock {
  margin-bottom: 10px;
  font-size: 14px;
  text-transform: uppercase;
  text-align: center;
}

.product-stock-cont {
  display: none;
  padding: 5px;
  border-radius: 15px;
}
.product-stock-cont i {
  margin-right: 2px;
}
#in-stock {
  color: #006400;
  background: #0064001a;
}
#stocked-item {
  color: #006400;
  background: #0064001a;
  border-radius:15px;
}

#temporarily-out-of-stock,
#extended-lead-time {
  color: #aa7f1f;
  background: #aa7f1f1a;
}
.product-stock-leadtime {
  margin-top: 5px;
  font-size: 12px;
  text-transform: none;
}
.product-delivery {
  display: flex;
  flex-flow: row;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 10px;
}
.product-delivery-icon {
  font-size: 20px;
  margin-right: 10px;
}
.product-delivery-method,
#international-product-link {
  text-transform: uppercase;
  text-align: center;
  font-size: 14px;
}
.product-delivery-method a {
  text-transform: none;
  margin-top: 5px;
  font-size: 12px;
}

.product-control-add {
  width: 48%;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: flex-start;
}
#_EKM_PRODUCTADDCART {
  display: flex;
  width: 100%;
  text-align: center;
}
.add-to-cart {
  margin-bottom: 15px;
  padding: 15px 25px;
  cursor: pointer;
  border: 0px;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 4px;
  color: #252525;
  text-transform: uppercase;
  outline: none;
  background: #d5d5d5;
  box-shadow: 2px 2px 2px #888888;
  width: 100%;
}
.add-to-cart:hover {
  font-weight: 900;
  box-shadow: inset 2px 2px 2px #888888;
}
#_EKM_PRODUCTADDCARTMESSAGE {
  display: none;
}

.wishlist {
  display: flex;
  flex-flow: column;
  justify-content: flex-end;
  font-size: 10px;
  letter-spacing: 2px;
  font-weight: 300;
  text-align: center;
  text-transform: uppercase;
  padding: 10px 0px;
}

.add-to-quote {
  text-align: center;
  padding: 10px;
  margin-bottom: 10px;
  box-sizing: border-box;
  cursor: pointer;
  border: 0px;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 3px;
  background: #eeeeee;
  box-shadow: 1px 1px 1px #888888;
  color: #252525;
  outline: none;
  text-transform: uppercase;
  width: 100%;
}

.add-to-quote:hover {
  font-weight: 900;
  box-shadow: inset 1px 1px 1px #888888;
}
.add-to-quote-text {
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 300;
  margin-top: 3px;
}

.ceramic {
  text-align: center;
  padding: 10px;
  margin-bottom: 10px;
  box-sizing: border-box;
  border: 0px;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 500;
  background: #eeeeee;
  box-shadow: 1px 1px 1px #888888;
  color: #252525;
  outline: none;
  width: 100%;
}

.add-to-wishlist {
  box-sizing: border-box;
  cursor: pointer;
  border: 0px;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 3px;
  color: #252525;
  outline: none;
  background: none;
  text-transform: uppercase;
  width: 100%;
}

.wishlist-disabled,
.wishlist-added {
  color: #c2c2c2;
}

.wishlist-disabled {
  padding: 2px 0px 3px;
}

.divider {
  background-image: linear-gradient(
    to left,
    rgba(37, 37, 37, 0) 20%,
    rgba(37, 37, 37, 1) 30%,
    rgba(37, 37, 37, 1) 70%,
    rgba(37, 37, 37, 0) 80%
  );
  width: 100%;
  height: 1px;
  margin: 10px auto;
}

.product-description {
  margin-top: 20px;
  letter-spacing: 2px;
  line-height: 18px;
  font-size: 12px;
  font-weight: 300;
}

.product-description ul li {
  line-height: 20px;
}

.product-description #joining-list {
  margin-bottom: -1em;
}
.product-bottom {
  margin-top: 30px;
  display: flex;
  flex-flow: row;
  justify-content: space-between;
}

.product-bottom h3 {
  margin-bottom: 15px;
  font-size: 16px;
}

.product-downloads {
  box-sizing: border-box;
  margin-right: 3%;
  margin-top: 25px;
  margin-left: 25px;
  font-size: 12px;
}
.product-downloads-cont {
  overflow-y: auto;
  max-height: 650px;
}

<!--.product-downloads-cont div:first-of-type h4 {
  margin-top: 2px;
}-->

.product-downloads-login-cont {
  display: flex;
  flex-flow: column;
  width: 100%;
}
.product-downloads-overflow {
  max-height: unset;
}
.product-downloads-login-header {
  display: flex;
  flex-flow: row;
  width: 100%;
}
.product-downloads-login-tab {
  width: 50%;
  cursor: pointer;
  padding: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.product-downloads-login {
  display: none;
  flex-flow: column;
  width: 100%;
  background: #eeeeee;
  padding: 0px 10px;
  box-sizing: border-box;
}
#download-login {
  display: flex;
}
#download-login-tab {
  font-weight: 700;
  background-color: #eeeeee;
}
.product-downloads-login-item {
  margin-top: 10px;
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  width: 100%;
}
.product-downloads-login-item .shopui-validation {
  width: 100%;
}
.product-downloads-login-item .shopui-validation input {
  width: 90%;
}
.product-downloads-login-controls {
  display: flex;
  flex-flow: row;
  justify-content: space-between;
  align-items: center;
}
.product-downloads-login-controls button {
  background: #eeeeee;
  padding: 10px;
  border: 0px;
  font-family: "Roboto", sans-serif !important;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500 !important;
  cursor: pointer;
}
.product-downloads-login-controls button:hover {
  font-weight: 700 !important;
}
.product-downloads-login-controls a {
  font-size: 10px;
}
.product-downloads-login-item .shopui-label-details {
  font-size: 10px !important;
  text-align: left;
  padding: 0px 10px;
}
#download-create .product-downloads-login-controls {
  justify-content: flex-end;
}
.product-downloads-login-item .login-label {
  text-transform: uppercase;
  padding: 5px;
}
.product-downloads-login-item .shopui-text-field {
  background: #eeeeee;
}

#related-products {
  width: 100%;
  box-sizing: border-box;
}
#related-products h3 {
  text-align: center;
  font-size: 16px;
}
.related-products-grid {
  width: 100%;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
}
.related-products-grid .product-item {
  width: 20%;
  padding: 0 10px 10px;
}
.related-products-grid .product-item-header {
  position: unset;
}
.related-products-grid h2 {
  font-size: 14px;
  font-weight: 500;
}
.related-products-grid .product-item-header a {
  letter-spacing: 2px;
  padding: 10px 0;
  font-size:0.75VW;
}
/*realated box fix*/
.related-products-grid .product-item-image{
	width:100%;
}
.related-products-grid .product-item-price{
	width:100%;
}


.related-products-grid .inc-vat a,
.related-products-grid .exc-vat a {
  font-size: 16px;
}

.product-download {
  margin-bottom: 10px;
}

.product-download img {
  width: 30px;
  height: auto;
  margin-right: 15px;
}

.product-download a {
  display: flex;
  width: 100%;
  align-items: center;
}

.product-download a:hover {
  font-weight: 500;
}

.product-page-quote-list {
  display: none;
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgb(146 146 146 / 50%);
  z-index: 9999999999;
}
.product-quote-list {
  margin-left: auto;
  overflow-y: auto;
  max-width: 500px;
  padding: 0 20px 20px 20px;
  box-sizing: border-box;
  width: 100%;
  height: 100vh;
  padding-bottom: 70px;
  background: #ffffff;
}

.product-quote-list-header {
  padding: 5px 0;
  display: flex;
  flex-flow: row;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  border-bottom: 1px solid #eeeeee;
  margin-bottom: 5px;
}
.product-quote-list-header h2 {
  flex: 1 0 auto;
  font-size: 16px;
}
.product-quote-list-close {
  font-size: 16px;
  cursor: pointer;
  padding-right: 10px;
}

#product-quote-list {
  overflow-y: auto;
}

#product-quote-list #quote {
  font-size: 12px;
}

.product-quote-list-options {
  display: flex;
  flex-flow: column-reverse;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 30px;
  border-top: 1px solid #eeeeee;
  padding-top: 10px;
}

.product-quote-list-options a {
  padding: 10px 20px;
  background-color: #252525;
  color: #ffffff;
  margin-bottom: 15px;
  width: 100%;
  text-align: center;
  box-sizing: border-box;
}
.product-quote-list-options a:hover {
  color: #d5d5d5;
}
.product-quote-continue {
  font-size: 12px;
  cursor: pointer;
}

/* Basket */
.ekmpscart-main-cart {
  max-width: 1000px;
  margin: 10px auto 0;
  padding: 0 10px;
  box-sizing: border-box;
}

.basket-payment {
  width: 80%;
  max-width: 500px;
  display: flex;
  flex-flow: row;
  align-items: flex-end;
  justify-content: space-around;
  margin: 0 auto 20px;
}

.basket-payment img {
  margin: 10px;
}
.ekmpscart-header {
  display: none;
}
.ekmpscart-empty-cart-message {
  margin-top: 20px;
  font-size: 14px !important;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.ekmpscart-checkout-button-continue,
.ekmpscart-checkout-button-continue:hover {
  background-color: #ffffff !important;
  font-size: 12px !important;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #252525 !important;
  text-align: left;
}
.ekmpscart-checkout-button.ekmpscart-checkout-button-continue i.ekmps-fa,
.ekmpscart-checkout-button a i.ekmps-fa-chevron-right {
  display: none;
}

.ekmpscart-title {
  font-size: 24px !important;
}
.ekmpscart-wrapper {
  margin-bottom: 10px !important;
}
.ekmpscart-wrapper a {
  color: #252525 !important;
}

.ekmpscart-wrapper a:hover {
  color: #252525 !important;
  text-decoration: none !important;
}

.ekmpscart-checkout-button:hover {
  opacity: 1 !important;
}
.ekmpscart-contents,
.ekmpscart-checkout-buttons,
.ekmpscart-cart-items .ekmpscart-cart-items-product {
  border: none !important;
}
.ekmpscart-checkout-buttons::before,
.ekmpscart-checkout-buttons::after {
  display: none !important;
}
.ekmpscart-checkout-buttons {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ekmpscart-cart-items .ekmpscart-cart-items-product {
  display: flex;
  align-items: center;
}
.ekmpscart-cart-items
  .ekmpscart-cart-items-product
  .ekmpscart-cart-items-product-qty
  .ekmpscart-cart-items-product-qty-box {
  box-shadow: none !important;
  border: 0px !important;
  font-weight: 500;
  font-size: 14px !important;
}
.ekmpscart-checkout-button.ekmpscart-checkout-button-checkout {
  background-color: #252525 !important;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 0px !important;
}

.ekmpscart-checkout-button.ekmpscart-checkout-button-checkout a {
  color: #ffffff !important;
  letter-spacing: 2px;
  font-size: 16px !important;
  padding: 10px 25px !important;
  font-weight: 500 !important;
}

.ekmpscart-checkout-button.ekmpscart-checkout-button-checkout a:hover {
  color: #d5d5d5 !important;
}

.ekmpscart-cart-items
  .ekmpscart-cart-items-product
  .ekmpscart-cart-items-product-image {
  width: 100px !important;
}

.ekmpscart-cart-items
  .ekmpscart-cart-items-product
  .ekmpscart-cart-items-product-information {
  margin-left: -50px !important;
  display: flex !important;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: baseline;
}

.ekmpscart-cart-items-product-name {
  font-size: 14px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500 !important;
  line-height: 20px;
  order: 1;
  width: 100%;
}

.ekmpscart-cart-items
  .ekmpscart-cart-items-product
  .ekmpscart-cart-items-product-actions {
  text-align: right;
  order: 3;
}

.ekmpscart-cart-items-product-options {
  display: block !important;
  background-color: #ffffff !important;
  border: none !important;
  padding: 5px 0 !important;
  order: 2;
}

.ekmpscart-order-discounts {
  border: none !important;
  padding: none !important;
  text-transform: uppercase;
}

.ekmpscart-order-discounts-header {
  border: none !important;
  padding-bottom: 0px !important;
  font-size: 14px;
  font-weight: 500 !important;
}

.ekmpscart-order-discounts-header-description {
  display: none;
}

.ekmpscart-order-discount-title {
  font-size: 12px !important;
  font-weight: 500 !important;
  line-height: 20px;
}

.ekmpscart-total-label {
  text-transform: uppercase;
}

.ekmpscart-vat-value {
  text-transform: none;
  font-size: 10px;
  line-height: 16px;
}
.ekm-softcart-wrapper {
  align-items: unset !important;
  justify-content: flex-end !important;
  max-height: 100vh !important;
  overflow-y: auto;
}
.ekm-softcart-links {
  display: flex;
  flex-flow: column-reverse;
}
.ekm-softcart-links a {
  color: #252525;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
}
.ekm-softcart-gotocheckout {
  background-color: #252525 !important;
  color: #ffffff !important;
  border-radius: 0px !important;
}
.ekm-softcart-links a {
  padding: 10px 25px !important;
  margin-bottom: 5px;
}
.ekm-softcart-links a:hover {
  opacity: 1 !important;
}
.ekm-softcart-gotocheckout:hover {
  color: #d5d5d5 !important;
}

.ekm-softcart-item-name,
.ekm-softcart-subtotal {
  text-transform: uppercase;
  padding-bottom: 5px;
  color: #252525 !important;
}

.ekm-softcart-item-name a,
.ekm-softcart-item-name a:hover {
  color: #252525 !important;
  text-decoration: none !important;
}

.ekm-softcart-item-remove {
  color: #252525 !important;
  text-transform: capitalize;
}

.ekm-softcart-item-cost {
  color: #252525 !important;
  font-size: 14px !important;
}
a.ekm-softcart-item-img img {
  max-height: 58px;
}
.ekmpscart-checkout-button.ekmpscart-checkout-button-checkout.top-button,
.ekmpscart-cart-items-column-header,
.ekmpscart-cart-items-product-actions .sep,
.ekmpscart-cart-items-product-action-toggle-options,
.ekmpscart-cart-items-product-option-label,
.ekmpscart-checkout-express-gateways {
  display: none;
}

/* Search */

#search-results {
  text-align: center;
  max-width: 1760px;
  margin: 0 auto;
}
#search-results h2 {
  margin-right: 0px;
}
.search-results {
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
}

.search-results .search-count {
  text-transform: uppercase;
  letter-spacing: 3px;
  width: 100%;
  margin-bottom: 20px;
}

.search-grid {
  padding: 0 20px;
  box-sizing: border-box;
}
.search-grid .product-item-header {
  position: unset;
}
.search-grid h2 {
  font-weight: 500;
  font-size: 16px;
  margin-bottom: 0px;
}
.search-grid .product-item-header a {
  padding: 10px;
}
.search-grid .product-item-code {
  width: 100%;
}
.search-grid .product-item-code a {
  width: 100%;
  padding: 0px 0px 10px;
  font-size: 16px;
  word-break: break-all;
}

/* Accounts */

.shopui {
  color: #252525 !important;
  max-width: 1000px !important;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif !important;
}

.shopui header {
  min-height: unset;
}

.shopui a {
  color: #252525 !important;
}

.shopui a:hover {
  font-weight: 500;
  text-decoration: none !important;
}

.shopui-message--success {
  background-color: #ffffff !important;
  border-color: #07592a !important;
}

.shopui-section {
  box-shadow: none !important;
}

.shopui-section__header {
  position: relative;
  flex-flow: column;
  align-items: center;
  z-index: 2 !important;
  padding: 0 20px !important;
}

.shopui-section--account .shopui-section__header {
  flex-flow: column;
}
.shopui-section--account .shopui-section__content {
  padding-top: 0px;
}
.shopui-card-section {
  margin-top: 20px !important;
}
.shopui-section--account .shopui-section__header .shopui-grid {
  display: flex;
  flex-flow: column;
  align-items: center;
}
.shopui-section--account
  .shopui-section__header
  .shopui-grid
  .u-text-align--right {
  text-align: center !important;
  margin-bottom: 0px !important;
}

.shopui-breadcrumb {
  color: #252525 !important;
  font-size: 12px !important;
  letter-spacing: 2px !important;
  justify-content: center !important;
}

.u-margin-bottom--small {
  width: 100%;
}

.ekm-account-login .shopui-grid--flex {
  flex-flow: column wrap;
}

.ekm-account-login__login {
  width: 75% !important;
  margin: 0 auto;
}

.ekm-account-login__login .shopui-section__header {
  padding-bottom: 20px;
}
.shopui-section__header .shopui-section__title {
  text-align: center;
  width: 100%;
}

.shopui-section__description {
  font-size: 14px !important;
  color: #252525 !important;
  text-align: center;
  width: 100%;
}
.ekm-account-login .shopui-section__description,
.shopui-password-field__button {
  display: none !important;
}
.shopui-form-row--stacked {
  flex-direction: row !important;
  justify-content: space-between;
}
.shopui-form-row--stacked .shopui-form-row__details {
  width: 25%;
}
.shopui-form-row__details {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-flow: row wrap;
}
.shopui-label-details {
  color: #252525 !important;
  text-align: right;
  font-size: 12px !important;
}
.shopui-form-row__details label {
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 2px;
}
.shopui-validation input {
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  margin-left: 5%;
  margin-bottom: 10px;
  height: 30px;
  border: 0px;
  border-radius: 0px !important;
  border-bottom: 1px solid #252525;
  padding: 0px !important;
  width: 80%;
}

.shopui-validation input:focus {
  outline: none;
  border-color: #252525 !important;
}

.ekm-account-login__create {
  width: 75% !important;
  margin: 0 auto;
}

.ekm-account-login__create .u-height--full {
  height: auto !important;
}

.ekm-account-login__create .shopui-section__title {
  font-size: 18px !important;
}

.ekm-account-login__create .shopui-section__content {
  display: flex;
  justify-content: center;
}

.shopui-section--account-details,
.shopui-section--add-address,
.shopui-section--change-password,
.shopui-section--create-account,
.shopui-section--login,
.shopui-section--payment {
  max-width: 800px !important;
}
.shopui-nav-section {
  flex-flow: row wrap !important;
  margin: 10px 0 !important;
  justify-content: space-between;
}

.shopui-account__logout {
  font-size: 14px !important;
  text-transform: uppercase;
  color: #252525 !important;
  border: 0px !important;
  letter-spacing: 3px;
  font-weight: 700;
}

.shopui-account__logout:hover {
  text-decoration: none !important;
  font-weight: 900 !important;
}

.shopui-nav-box {
  border: none !important;
  text-transform: uppercase;
  color: #252525;
  width: 30%;
  box-sizing: border-box;
  flex-basis: unset !important;
  max-width: 100% !important;
  justify-content: flex-start !important;
}

.shopui-nav-box:last-of-type {
  width: 100%;
}

.shopui-nav-box__title {
  font-weight: 500 !important;
  letter-spacing: 3px;
  padding: 5px;
}

.shopui-nav-box__description {
  color: #252525 !important;
  font-weight: 300;
  letter-spacing: 2px;
}

.shopui-nav-box:hover {
  background-color: #ffffff !important;
  border-color: none !important;
}

.shopui-nav-box:hover .shopui-nav-box__title {
  font-weight: 700 !important;
}

.shopui-nav-box__icon,
.shopui-empty-state__icon--wishlist {
  background-color: #ffffff !important;
}

.shopui-nav-box__icon svg,
.shopui-empty-state__icon--wishlist svg {
  stroke: #252525 !important;
}
.shopui-empty-state__details {
  letter-spacing: 2px;
  line-height: 20px;
  font-size: 14px;
}
.shopui-empty-state__title {
  font-size: 16px !important;
  text-transform: uppercase;
}

.shopui-section__inner {
  border: 0px !important;
}

.shopui-section__inner .shopui-form-row {
  display: flex;
  flex-flow: column;
}
.shopui-section__inner .shopui-form-row .shopui-form-row__details {
  display: flex;
  flex-flow: column;
  align-items: center;
  margin: 0 0 10px 0 !important;
}

.shopui-section__inner .shopui-form-row .shopui-form-row__field a {
  width: 300px !important;
}
.shopui-section__inner .shopui-form-row .shopui-form-row__details label {
  font-size: 20px;
  font-weight: 500;
}

.shopui-select-field > select {
  border: 0px !important;
  border-bottom: 1px solid black !important;
  border-radius: 0px !important;
  padding: 5px !important;
  margin-left: 30px;
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  height: auto !important;
}

.shopui-form-row--checkbox {
  flex-direction: row-reverse !important;
}

.shopui-form-row--checkbox .shopui-form-row__field {
  margin-left: 20px;
}
.shopui-card--empty,
.shopui-card__footer {
  text-transform: uppercase;
}
.shopui-card--empty:hover {
  border-color: #252525 !important;
}
.shopui-account__details,
.shopui-section__footer,
.shopui-product-item__availability,
.shopui-product-item__option-name,
.shopui-product-item__added-date,
.js-sort-action-menu,
.shopui-order-summary__status {
  display: none !important;
}
.shopui-product-item__image:before {
  border: 0px !important;
}
.shopui-product-item__image {
  max-width: 200px !important;
  width: 25%;
}
.shopui-section__title {
  font-size: 24px !important;
  letter-spacing: 6px;
  font-weight: 700;
  text-transform: uppercase;
}
.shopui-dialog__header {
  border-bottom: 0px !important;
}

.shopui-button {
  width: auto !important;
}

.shopui-button--link,
.shopui-button--primary,
a.shopui-button--primary,
.shopui-button--secondary,
a.shopui-button--secondary,
a.shopui-button,
.ekm-account-login__create .shopui-section__content a {
  border: none !important;
  border-radius: 0px !important;
  padding: 10px 25px !important;
  margin: 0 auto;
  min-width: 200px;
  color: #ffffff !important;
  background-color: #252525 !important;
  text-transform: uppercase;
  font-size: 16px !important;
  font-weight: 400 !important;
  font-family: "Roboto", sans-serif !important;
  letter-spacing: 2px;
}

.shopui-button--primary:hover,
a.shopui-button--primary:hover,
.shopui-button--secondary:hover,
a.shopui-button--secondary:hover,
.shopui-button--link:hover,
a.shopui-button:hover,
.ekm-account-login__create .shopui-section__content a:hover {
  color: #d5d5d5 !important;
}
.shopui-product-item__details a:hover {
  font-weight: 700 !important;
}

.shopui-section--wishlist .shopui-section__content {
  display: flex;
  flex-flow: column-reverse;
}
.shopui-product-list-toolbar,
.shopui-product-item {
  border: none !important;
}

.shopui-product-list-toolbar {
  flex-flow: column;
}

.shopui-product-list-toolbar__section {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.shopui-product-list-toolbar__section .shopui-button--small {
  margin: 0 !important;
}

.shopui-product-item__actions {
  width: 25%;
  min-width: 20% !important;
  max-width: unset !important;
  text-align: center !important;
  color: #252525 !important;
}
a.shopui-product-item__remove {
  font-size: 12px !important;
  margin-top: 5px;
}
.shopui-product-item__details {
  margin-left: 30px !important;
  width: 50%;
}

.shopui-product-item__details a,
.shopui-product-item__price {
  font-size: 14px !important;
  text-transform: uppercase;
  font-weight: 500 !important;
  letter-spacing: 2px;
  line-height: 20px;
}

.shopui-product-item__option-value {
  color: #252525 !important;
  letter-spacing: 2px;
  font-size: 12px;
}

.shopui-order-summary__header {
  position: relative !important;
  background-color: #ffffff;
}

.shopui-dialog__header {
  font-size: 18px !important;
  letter-spacing: 6px;
  font-weight: 700;
  text-transform: uppercase;
}
.shopui-dialog__window .shopui-form-row--stacked {
  flex-flow: row wrap;
}
.shopui-dialog__window .shopui-form-row--stacked .shopui-form-row__details {
  width: 100%;
  flex-flow: column;
}
.shopui-dialog__window
  .shopui-form-row--stacked
  .shopui-form-row__details
  label {
  display: none !important;
}
.shopui-dialog__window .shopui-text-field {
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  margin: 0 auto;
  height: 30px;
  border: 0px;
  border-radius: 0px !important;
  border-bottom: 1px solid #252525;
  padding: 0px !important;
  width: 95%;
}

.shopui-section--orders .shopui-grid__column--span-4,
.shopui-dialog__footer,
.js-contact-us-modal-open,
.shopui-order-section--details .shopui-order-details:last-of-type,
.shopui-order-item__review-link,
.shopui-order-section__header {
  display: none !important;
}
.shopui-order-summary {
  border: 0px !important;
  border-bottom: 1px solid #252525 !important;
}
.shopui-order-summary:last-of-type {
  border-bottom: 0px !important;
}
.shopui-order-summary__header {
  background-color: #ffffff !important;
}
.shopui-order-section {
  border: 0px !important;
}
.shopui-order-details__title,
.shopui-order-summary__header-label {
  text-transform: uppercase;
}
.shopui-order-item__name {
  text-transform: uppercase;
  font-size: uppercase;
  font-weight: 500;
  letter-spacing: 2px;
  line-height: 20px;
}
.shopui-order-item__option {
  color: #252525 !important;
}
.shopui-order-summary__actions {
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  border-left: 1px solid rgba(0, 0, 0, 0.2);
}

/* Static Pages */

#specifiers{
  width: 85%;
}
  
.page-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 10px;
  font-weight: 300;
  letter-spacing: 1px;
}

.page-header-container {
  display: flex;
  width: 100%;
}
.page-header {
  display: flex;
  flex-flow: row;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 2500px;
  margin: 0 auto 30px;
}
.page-header-image {
  flex: 1 0 55%;
  height: 400px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding-bottom: 10px;
}
.page-header-image img {
  width: auto;
  height: 100%;
}
.page-header-content {
  font-size: 16px;
  letter-spacing: 2px;
  padding: 0 7vw;
  box-sizing: border-box;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
}
.page-header-content h1 {
  margin-top: 10px;
}
.page-header-content .breadcrumbs {
  margin-bottom: 5px;
  width: 100%;
  text-align: center;
  letter-spacing: 2px;
}
.page-header-description {
  max-width: 800px;
  width: 100%;
  box-sizing: border-box;
}
.page-header-description p:first-of-type {
  margin-top: 2px;
}
.page-header-description img {
  margin: 15px auto;
  max-width: 200px;
}
#about {
  max-width: 1000px;
}

#about a:hover,
#delivery a:hover {
  font-weight: 500;
}

.project-list {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}
.project-image {
  position: relative;
  width: 48%;
  height: 200px;
  overflow: hidden;
  transition: all 1s;
  background-color: #252525;
  margin-bottom: 30px;
}

.project-name {
  display: flex;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 100;
  align-items: center;
  justify-content: center;
}

.project-name h3 {
  background: #ffffff;
  font-weight: 500;
  padding: 12px;
  opacity: 0.8;
  width: 100%;
  text-align: center;
}

.project-location {
  font-size: 12px;
}

.project-image-source {
  font-size: 10px;
  letter-spacing: 1px;
}

#contact {
  display: flex;
  flex-flow: row;
  justify-content: space-around;
}

.contact-form-cont {
  width: 40%;
}
.international-contact-form-cont {
  width: 50%;
}
.contact-details {
  width: 30%;
  text-align: center;
}

.contact-details h3,
.contact-details h3 a {
  padding: 10px 0;
  letter-spacing: 2px;
}

.contact-details h3 + p {
  margin-top: 0px;
}

.contact-details a:hover {
  font-weight: 500;
}

.contact-form-row {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.contact-form-row label {
  width: 25%;
  margin-right: 5%;
  margin-bottom: 5px;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 2px;
  text-align: right;
}

.contact-form-row input,
.contact-form-row textarea {
  width: 100%;
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
}

.contact-form-row input {
  margin-bottom: 10px;
  height: 30px;
  border: 0px;
  border-bottom: 1px solid #252525;
}

.contact-form-row input:focus,
#contact-form-button:focus {
  outline: none;
}

.contact-form-row textarea {
  height: 15vh;
  border: 1px solid #252525;
  margin: 5px 0;
}

#contact-form-submit {
  display: flex;
  flex-flow: column;
  align-items: flex-end;
}

#contact-form-button input {
  cursor: pointer;
  width: auto;
  min-width: 150px;
  height: auto;
  margin-top: 10px;
  padding: 10px 25px;
  color: #ffffff;
  font-weight: 400;
  background: #252525;
  border: none;
  text-transform: uppercase;
  font-size: 16px;
  letter-spacing: 2px;
}
#contact-form-button input:hover {
  color: #d5d5d5;
}

.delivery-container,
.finishes-container {
  display: flex;
  flex-flow: row;
  justify-content: space-between;
}
.delivery-block,
.finishes-block {
  width: 48%;
}
#finishes,
#contact,
#warranty,
#about h2,
.delivery-container h2,
.project-discuss h2,
.trade-account h2 {
  text-align: center;
}
.finishes-container h2 {
  padding: 15px 0;
  margin: 0;
  text-align: center;
  position: sticky;
  top: 135;
  background: #ffffff;
  width: 100%;
}
.finishes-block p {
  text-align: justify;
}
.finishes-block p:first-of-type {
  margin-top: 0px;
}
.finishes-block h3 {
  font-size: 16px;
  padding-top: 5px;
  text-align: center;
}
.finishes-list {
  width: 100%;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  margin-top: 5px;
  margin-bottom: 10px;
}
.finishes-list h4 {
  font-weight: 500;
}
.finish-cont-1 {
  width: 100%;
  text-align: center;
}
.finish-cont-2 {
  width: 45%;
  text-align: center;
}
.finish-cont-3 {
  width: 30%;
  text-align: center;
}
.finish-cont-4 {
  width: 20%;
  text-align: center;
}
.finish-cont-5 {
  width: 16%;
  text-align: center;
}
.finish-cont-overlap {
  display: flex;
  flex-flow: row;
  align-items: center;
  justify-content: center;
  margin-bottom: 5px;
}
.finish-image img {
  width: 100%;
}
.finish-image-overlap {
  margin-left: -10%;
}
.finish-image-overlap:first-of-type {
  margin-left: 0px;
}
#finish-swatch .finish-image img {
  max-width: 200px;
}

#finish-swatch .finish-name h4 {
  margin-bottom: 5px;
}
.finish-name h4 + p {
  margin-top: 0px;
}

#warranty .divider:first-of-type {
  margin-top: 20px;
}
.warranty-block {
  display: flex;
  flex-flow: row;
  justify-content: space-between;
  padding: 20px 0;
  text-align: left;
}
.warranty-image {
  width: 47%;
  min-height: 200px;
}
.warranty-text {
  width: 47%;
  display: flex;
  flex-flow: column;
  justify-content: center;
}

.before-list {
  margin-bottom: 0px;
}

#projects,
#trade {
  display: flex;
  flex-flow: row;
  justify-content: space-around;
}

.project-discuss,
.trade-account {
  width: 60%;
}

#projects .contact-details .sticky-contact-details,
#trade .trade-login-sticky {
  position: sticky;
  top: 175;
  margin-bottom: 60px;
}

#quotes {
  display: flex;
  flex-flow: row;
  justify-content: space-between;
}
.quote-form {
  width: 65%;
}
#company-details label {
  width: 33%;
}
.company-trade-select {
  width: 30%;
  float: right;
  text-align: center;
  display: flex;
  flex-flow: row;
  justify-content: space-between;
}

.company-trade-select label {
  margin: 0 0 5px 0px;
  width: 100% !important;
  text-align: center;
}

.company-trade-select input {
  height: 20px;
  width: 20px;
}

.ar-viewer-cont {
  display: flex;
  flex-flow: row;
  justify-content: space-between;
}
.ar-viewer-callout {
  text-align: center;
}
.ar-viewer-callout p:first-of-type {
  text-transform: uppercase;
}
.ar-viewer-access {
  width: 35%;
}
.ar-viewer-access ol li {
  line-height: 18px;
  padding-bottom: 5px;
}
.ar-viewer-using {
  width: 60%;
}
.ar-viewer-img {
  text-align: center;
}
.ar-viewer-img img {
  max-width: 100%;
}
#ar-viewer-divider {
  display: none;
}

#quote {
  margin-top: 10px;
  align-items: flex-start;
}

#quote label {
  visibility: hidden;
}

#quote table {
  font-size: 14px;
  text-transform: uppercase;
}

#quote td {
  padding: 5px;
}

#quote tr:first-of-type {
  font-weight: 700;
}

#quote tr td:nth-of-type(2),
#quote tr td:nth-of-type(3) {
  text-align: center;
  width: 15%;
}
#quote tr td:nth-of-type(4) {
  text-align: center;
  font-size: 10px;
  width: 15%;
  cursor: pointer;
}

#quote-header-row {
  border-bottom: 1px solid #252525;
}

.empty-quote {
  font-size: 14px;
  text-transform: uppercase;
  text-align: center;
  width: 100%;
  padding: 40px 20px;
}

.quote-submit {
  display: flex;
  flex-flow: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.empty-quote-continue-shopping {
  padding-top: 20px;
  text-align: center;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
}

.quote-continue-shopping {
  width: 25%;
  text-align: right;
  cursor: pointer;
}
.quote-continue-shopping:hover,
.empty-quote-continue-shopping:hover {
  font-weight: 700;
}

.trade-login {
  width: 30%;
  text-align: center;
}
.trade-login form {
  margin-top: 30px;
}
.trade-specifiers-link a {
  background: #252525;
  color: #ffffff;
  padding: 10px 15px;
  text-transform: uppercase;
  display: block;
  font-weight: 400;
  margin-top: 20px;
  letter-spacing: 2px;
}
.trade-specifiers-link a:hover {
  color: #d5d5d5;
}

.specifiers-cont {
  margin: 30px 0 10px;
  width: 100%;
}
.specifiers-loggedout {
  text-align: center;
}
.specifiers-loggedout a {
  font-weight: 700;
}
.specifiers-cont .divider {
  margin-top: 0px;
}
.specifiers-downloads-cont {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  row-gap: 0.5vw;
  column-gap: 0.5vw;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

.specifiers-downloads-product {
  width: 100%;
  display: flex;
  flex-flow: column;
  align-items: center;
}

.collection-header {
  width: 85%;
  text-align: center;
  margin: 20px auto;
  cursor: pointer;
}

.collection-header:after {
  content: "\002B";
  font-size: 30px;
  color: #252525;
  float: right;
}

.collection-header.active:after {
  content: "\2013";
}

.specifiers-downloads-product-title {
  text-align: center;
  font-weight: 300;
}

.specifiers-downloads-product-title:hover a {
  font-weight: 500;
}

.specifiers-downloads-product-title h3 {
  margin-top: 15px;
  margin-bottom: 5px;
  font-weight: 500;
}

.specifiers-downloads-product-title img {
  max-width: 200px;
  width: 100%;
  height: auto;
}
.specifiers-downloads-product .product-downloads-cont {
  width: 90%;
  margin: 15px auto 0;
  font-size: 8px;
}
.specifiers-downloads-product .product-downloads-cont .product-download img {
  max-width: 20px;
}
#specifiers .shopui-section__header p {
  font-size: 14px;
  letter-spacing: 2px;
  line-height: 20px;
}

.specifiers-create .shopui-section__content {
  padding: 20px !important;
}
.specifiers-create.ekm-account-login__create .shopui-section__content {
  font-weight: 400;
  margin: 0 auto;
}
.specifiers-create.ekm-account-login__create {
  width: 100% !important;
}
.specifiers-create .shopui-label-details {
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: none;
}

.washroom-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: row;
  grid-auto-rows: auto;
  row-gap: 1vw;
  column-gap: 1vw;
  margin-bottom: 20px;
}
.washroom-grid-item {
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  position: relative;
}
.washroom-grid-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column;
}
.washroom-grid-item img {
  width: 100%;
  overflow: hidden;
}
.washroom-grid-item:nth-of-type(1),
.washroom-grid-item:nth-of-type(8),
.washroom-grid-item:nth-of-type(11) {
  grid-column: span 2;
  grid-row: span 2;
}
.washroom-grid-item-label {
  position: absolute;
  bottom: 0;
  opacity: 0;
  background: #eeeeee;
  padding: 10px;
  box-sizing: border-box;
  text-align: center;
  width: 100%;
  transition: opacity 0.5s ease-in;
}
.washroom-grid-item-double-label {
  padding: 20px;
}
.washroom-grid-item:hover .washroom-grid-item-label {
  opacity: 1;
  transition: opacity 0.5s ease-out;
}
.washroom-grid-item h2 {
  margin-top: 10px;
  text-align: center;
}
.washroom-grid-item h4 {
  text-align: center;
}
.washroom-grid-item p {
  padding: 0 20px;
  text-align: center;
}
#washroom-collections-logo {
  max-width: 200px;
}

.product-specification {
  grid-column: 2;
  grid-row: 3;
  box-sizing: border-box;
  border-top: 1px solid #e8edee;
}

#terms,
#privacy {
  max-width: 1000px;
  text-align: justify;
}

#terms table {
  font-size: 14px;
  line-height: 18px;
  text-align: justify;
  border: 1px solid #252525;
  border-collapse: collapse;
}
#terms td {
  border: 1px solid #252525;
  padding: 5px;
}

#terms ol li,
#privacy ul li,
#finishes ul li,
#warranty ul li {
  line-height: 18px;
  text-align: justify;
}

.ekm-formmail {
  max-width: 1000px;
  padding: 20px 10px;
  margin: 0 auto;
  text-align: center;
  text-transform: uppercase;
}

@media screen and (max-width: 1400px) {
  .header-left {
    padding-left: 20px;
  }
  .header-right {
    padding-right: 20px;
  }
  .usercontrol-cont.search-header,
  .usercontrol-cont a,
  .usercontrol-cont.basket-selected {
    padding: 10px 5px 5px 5px;
  }
  .homepage-header-content {
    padding: 0 1vw;
  }
  .homepage-collection {
    width: 48%;
  }
  .homepage-collection-full {
    width: 100%;
  }
  .product-finishes-list .finish-cont-4 {
    width:25%;
  }
  .product-finishes-list .finish-cont-5 {
    width: 30%;
  }
  #product-item-footer-double {
    height: 90px;
  }
  #product-item-footer-double .product-finishes-list {
    height: 90px;
  }
}
@media screen and (max-width: 1200px) {
  .header-contact {
    margin-top: 0px;
    flex-flow: column;
  }
  .header-contact a {
    margin-top: 5px;
  }
  .header-logo img {
    max-width: 350px;
  }
  .header-menu-button-primary {
    font-size: 14px;
    letter-spacing: 3px;
  }
  .usercontrol-cont.search-header,
  .usercontrol-cont a,
  .usercontrol-cont.basket-selected,
  .vat-toggle-desc,
  .vat-toggle-container select,
  .vat-toggle-container option {
    font-size: 12px;
  }
  .usercontrol-cont i {
    font-size: 22px;
  }
  .homepage-header-content {
    padding: 0 3vw;
  }
  .homepage-header-content-split-left img {
    width: 175px;
    padding: 10px 15px 15px;
  }
  .homepage-header-content-split-right p {
    font-size: 12px;
    line-height: 16px;
  }
  .category-header-image,
  .page-header-image,
  .category-header-image img,
  .page-header-image img {
    height: 300px;
  }
  .homepage-header-content,
  .category-header-content,
  .page-header-content,
  .category-finishes-content p {
    font-size: 14px;
  }
  .homepage-header-image-text {
    font-size: 14px;
    letter-spacing: 2px;
  }
  .homepage-producttype-cont,
  .homepage-collection-subcat-full {
    flex-flow: row wrap;
  }
  .homepage-producttype-full .homepage-producttype,
  .homepage-collection-subcat-full .homepage-collection-subcat {
    width: 48%;
  }
  .homepage-collection-full {
    margin-top: -30px;
  }
  .homepage-collection-subcat-full .homepage-collection-subcat:first-of-type,
  .homepage-collection-subcat-full .homepage-collection-subcat:nth-of-type(2),
  .homepage-producttype-full .homepage-producttype:first-of-type,
  .homepage-producttype-full .homepage-producttype:nth-of-type(2) {
    margin-bottom: 20px;
  }
  .category-item,
  .product-item {
    width: 33.3333%;
  }
  .category-item-link a {
    font-size: 14px;
  }
  .product-content {
    margin-right: 20px;
  }
  .product-controls {
    flex-flow: column-reverse;
  }
  .product-control-delivery {
    width: 100%;
    margin-top: 10px;
  }
  .product-control-add {
    width: 100%;
    margin-left: 0;
  }
  .wishlist {
    padding-top: 5px;
  }
  .page-container,
  #terms table {
    font-size: 12px;
  }
  .specifiers-downloads-cont {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media only screen and (max-width: 1024px) and (min-width: 769px) {
  .product-tablet {
    display: block;
  }
  .product-tablet-hide {
    display: none;
  }
}

@media screen and (max-width: 1024px) {
    .desktop-only {
    display: none;
  }
  h1 {
    font-size: 20px;
    letter-spacing: 4px;
  }
  h2 {
    font-size: 18px;
    letter-spacing: 3px;
  }
  .header-left,
  .header-right {
    width: 28%;
  }
  .header-logo {
    width: 40%;
  }
  .header-logo img {
    max-width: 300px;
    width: 100%;
  }
  .header-contact {
    font-size: 12px;
  }
  .header-contact a {
    margin-top: 3px;
  }
  .header-contact i {
    font-size: 16px;
  }
  .header-menu-button-sub {
    font-size: 12px;
    letter-spacing: 2px;
    padding: 10px;
  }
  .usercontrol-cont.search-header,
  .usercontrol-cont a,
  .usercontrol-cont.basket-selected {
    padding: 5px;
  }

  #footer-pages {
    font-size: 11px;
  }
  .homepage-collection-header img {
    max-width: 150px;
  }
  .homepage-collection-name a,
  .homepage-producttype-header,
  .homepage-urinals-header a {
    letter-spacing: 5px;
    font-size: 20px;
    padding: 7px 0 12px;
  }
  .homepage-collection-link a,
  .homepage-producttype-name a,
  .homepage-urinalscat-link a {
    font-size: 14px;
    letter-spacing: 2px;
  }
  .homepage-header-image-text {
    font-size: 12px;
    letter-spacing: 1.5px;
  }
  .homepage-urinalscat-header {
    top: 175;
  }
  .homepage-urinalscat-name a {
    font-size: 18px;
    letter-spacing: 3px;
  }
  .homepage-collection-subcat-name a {
    font-size: 12px;
  }
  .homepage-collection-subcat-full .homepage-collection-subcat-name a {
    font-size: 14px;
  }
  .homepage-urinalscat {
    width: 32%;
  }

  .category-header-content .breadcrumbs {
    margin-bottom: 10px;
  }
  .category-header-content p:first-of-type,
  .page-header-content p:first-of-type {
    margin-top: 0px;
  }
  .category-header-content,
  .page-header-content {
    margin: 0 auto;
  }
  .homepage-header-content,
  .category-header-content p,
  .page-header-content p,
  .category-finishes-content p {
    font-size: 12px;
    line-height: 16px !important;
    letter-spacing: 1.5px;
  }
  .category-header-image,
  .page-header-image {
    height: 250px;
  }
  .category-header-image img,
  .page-header-image img {
    height: 100%;
    width: auto;
  }
  .category-scrolling-name {
    font-size: 20px;
    letter-spacing: 4px;
  }
  .category-header-content h2 {
    letter-spacing: 3px;
  }
  .category-item-header h2 {
    margin: 0 -3px 0 0;
    letter-spacing: 3px;
  }
  .category-item-header a,
  .product-item-header a {
    padding: 10px 0;
  }
  .category-item-link {
    height: 40px;
  }
  .category-item-link a {
    font-size: 12px;
    padding: 5px 10px;
  }
  .product-image-links {
    font-size: 12px;
  }
  .product-image {
    width: 40%;
    margin-left: 2.5%;
  }
  .product-content {
    width: 52.5%;
    margin-right: 2.5%;
    margin-left: 2.5%;
  }
  .image-options {
    width: 100%;
  }
  .image-model-type {
    flex: 1 0 auto;
    text-align: center;
  }
  .downloads-link {
    width: 100%;
    text-align: center;
  }
  .product-downloads {
    width: 80%;
    margin: 20px auto 0;
  }
  .product-downloads h3 {
    margin-bottom: 15px;
  }
  .ekm-productoptions-size-option-header {
    flex-flow: row wrap;
    justify-content: center;
  }
  .option-row {
    flex-flow: column;
    align-items: center;
  }
  #variant-label {
    width: auto;
    height: auto;
    margin: 10px;
  }

  #quotes {
    width: 100%;
    flex-flow: column;
    align-items: center;
    box-sizing: border-box;
  }

  #quotes .contact-details {
    width: 80%;
  }

  .quote-form {
    width: 100%;
  }
  .specifiers-downloads-cont {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .design-inspiration a {
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 1.5px;
    padding: 5px;
  }
  .design-inspiration-intro h4 {
    margin-bottom: 2px;
  }
  .washroom-grid-item h2 {
    margin-bottom: 10px;
  }
  .washroom-grid-item p {
    line-height: 16px;
    letter-spacing: 1.5px;
  }
  #washroom-collections-logo {
    max-width: 150px;
  }

  .washroom-grid-item:nth-of-type(9) {
    justify-content: flex-end;
  }
  .washroom-grid-item:nth-of-type(10) {
    justify-content: flex-start;
  }
}

@media screen and (max-width: 1000px) {
  .homepage-header {
    flex-flow: column-reverse;
    margin-bottom: 10px;
  }
  .homepage-header-image {
    flex: unset;
    width: 100%;
    height: 200px;
    margin-bottom: 8px;
  }
  .homepage-header-content .divider {
    margin: 10px 0;
  }
  .homepage-header-content p,
  .homepage-suite-button {
    margin: 5px 0;
  }
  .homepage-header-content {
    margin-top: 5px;
    padding: 0 30px;
  }
  .homepage-collection-subcat-cont {
    flex-flow: row wrap;
  }
  .homepage-collection-subcat {
    width: 48%;
  }
  .homepage-collection-subcat:first-of-type,
  .homepage-collection-subcat:nth-of-type(2) {
    margin-bottom: 20px;
  }
  .header-menu-button-primary {
    font-size: 12px;
  }
  .usercontrol-cont.search-header,
  .usercontrol-cont a,
  .usercontrol-cont.basket-selected {
    font-size: 10px;
    letter-spacing: 1px;
  }
}

@media screen and (max-width: 900px) {
  .washroom-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media screen and (max-width: 825px) {
  .header-menu-button-primary {
    letter-spacing: 1.5px;
  }
}

@media screen and (max-width: 768px) {
	
  .product-downloads h3{
  	display:none;
  }
  #page-content {
    padding-bottom: 200px;
  }
  .header-left {
    padding-left: 10px;
  }
  .header-right {
    padding-right: 10px;
  }
  .header-contact {
    letter-spacing: 2px;
  }
  .homepage-collection-name a,
  .homepage-producttype-header,
  .homepage-urinals-header a {
    letter-spacing: 3px;
  }
  .category-item,
  .product-item {
    width: 50%;
    margin-bottom: 5px;
  }
  .category-item-link {
    height: 50px;
  }
  .category-item-link a {
    font-size: 14px;
    letter-spacing: 2px;
  }

  .category-header,
  .page-header {
    flex-flow: column-reverse;
    margin-bottom: 10px;
  }
  .category-header-content,
  .page-header-content {
    padding: 10px 20px 5px;
    margin: 0 auto;
    max-width: 700px;
  }
  .page-header-content {
    padding-bottom: 10px;
  }
  .category-header-image,
  .page-header-image {
    width: 100%;
    flex: 1 0 auto;
    display: flex;
    justify-content: center;
  }
  .category-header-description img,
  .page-header-description img {
    margin-bottom: 0px;
  }
  .category-finishes-content h4 {
    font-size: 14px;
  }
  .inc-vat a,
  .exc-vat a {
    font-size: 16px;
  }

  .slick-list {
    margin: 0 30px;
  }

  .slick-next,
  .slick-prev,
  .slick-next:hover,
  .slick-prev:hover {
    background-image: none;
    background-color: #ffffff !important;
    width: 60px;
  }
  .slick-next:hover {
    right: 0;
  }
  .slick-prev:hover {
    left: 0;
  }
  .slick-next {
    right: 0;
  }
  .slick-prev {
    left: 0;
  }

  .product-desktop {
    display: none;
  }

  .product-mobile {
    display: block;
    text-align: left;
    padding: 10px 20px 10px 20px;
    box-sizing: border-box;
    width: 100%;
  }
  .product-mobile .product-code {
    text-align: center;
  }
  .product-mobile h1 {
    margin-bottom: 5px;
  }
  .image-model-type {
    flex: 1 0 auto;
    text-align: center;
  }

  .ar-viewer {
    display: flex;
    flex-flow: row;
    justify-content: center;
    align-items: center;
    margin: 0px 20px;
  }

  .ar-viewer:hover {
    font-weight: 500;
    cursor: pointer;
  }

  .ar-viewer img {
    width: 25px;
    height: auto;
  }
  .ar-viewer p {
    margin: 0px 0px 0px 20px;
    text-transform: uppercase;
    text-align: center;
  }

  .product-details {
    margin: 10px 0 20px;
    flex-flow: column;
    align-items: center;
  }
  .product-top {
    flex-flow: row wrap;
  }
  .product-bottom {
    margin-top: 20px;
  }

  .product-image,
  .product-content {
    width: 100%;
    margin: 10px 20px;
    max-width: 100%;
  }
  .image-gallery-cont {
    display: flex;
    flex-flow: row;
  }
  .main-image {
    width: 75%;
    margin: 0 auto;
  }

  .small-images {
    flex-flow: column;
    margin: 0 0 0 2%;
    width: 24%;
  }
  .small-images a {
    margin: 0 0 10px;
    width: 100%;
  }
  .small-images a:nth-of-type(3n) {
    margin-bottom: 10px;
  }
  .image-options {
    width: unset;
  }
  .product-controls {
    flex-flow: row;
  }
  .product-control-delivery {
    width: 45%;
    margin-top: 0px;
  }
  .product-control-add {
    width: 50%;
    margin-left: 5%;
  }
  .downloads-link {
    width: unset;
  }

  .product-downloads {
    width: 50%;
    margin: 10px 20px;
    max-width: 100%;
  }

  .product-page-quote-list {
    margin-top: 82px;
  }

  .product-bottom {
    flex-flow: row wrap;
  }
  .product-downloads {
    width: 100%;
    margin: 10px 20px;
  }
  #related-products {
    width: 100%;
    margin: 10px;
  }
  .related-products-grid .product-item {
    width: 33.333%;
  }
  .ekmpscart-cart-items
    .ekmpscart-cart-items-product
    .ekmpscart-cart-items-product-information {
    margin-left: -25px !important;
  }

  .shopui-form-row--stacked {
    flex-flow: row wrap;
    margin: 0 auto;
  }

  .shopui-form-row--stacked .shopui-form-row__details {
    width: 100%;
    flex-flow: column;
  }
  .shopui-validation input {
    width: 90%;
    flex-flow: column;
  }
  .shopui-form-row__details {
    justify-content: flex-start;
    align-items: flex-start;
  }
  .shopui-label-details {
    text-align: left;
  }
  .page-container {
    padding: 10px 20px;
    box-sizing: border-box;
  }

  #contact,
  #projects,
  #trade,
  .delivery-container,
  .finishes-container {
    width: 100%;
    flex-flow: column;
    align-items: center;
    box-sizing: border-box;
  }
  #contact,
  #trade {
    flex-flow: column-reverse;
  }
  .contact-form-cont,
  .international-contact-form-cont,
  .contact-details {
    width: 80%;
  }

  .project-discuss,
  .trade-account,
  .trade-login,
  .delivery-block,
  .finishes-block {
    width: 100%;
  }
  #projects .contact-details .sticky-contact-details,
  #trade .trade-login-sticky {
    margin-bottom: 0px;
  }
  #projects .contact-details .sticky-contact-details {
    margin-top: 20px;
  }
  .delivery-header,
  .delivery-block,
  .finishes-block,
  .finishes-block p,
  .warranty-block {
    text-align: center;
  }
  .before-list {
    text-align: justify !important;
  }
  .finishes-list {
    justify-content: space-around;
  }
  .finish-cont-4 {
    width: 45%;
  }
  .product-finishes-list .finish-cont-3 {
    width: 30%;
  }

  .ar-viewer-cont {
    flex-flow: row wrap;
    justify-content: center;
  }
  .ar-viewer-access,
  .ar-viewer-using {
    width: 90%;
    margin: 0 auto;
  }
  .ar-viewer-img {
    margin-bottom: 20px;
  }
  #ar-viewer-divider {
    display: block;
  }

  .warranty-block {
    flex-flow: row wrap;
  }
  .warranty-image {
    order: 1;
    width: 100%;
    min-height: 250px;
  }
  .warranty-text {
    order: 2;
    width: 100%;
  }
  #quote label {
    display: none;
  }
  .company-trade-select {
    flex-flow: row wrap;
    align-items: center;
    justify-content: center;
  }
  .design-inspiration-cont {
    flex-flow: column;
  }
  .design-inspiration-links {
    width: 100%;
    margin: 5px 20px 0;
  }
}

@media screen and (min-width: 701px) {
  .mobile-only {
    display: none;
  }
}

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

/*Nicks bits */
.category-scrolling-name, .breadcrumbs{
display:none;
}


.product-item{
Flex-flow:wrap;
width:100%;
padding: 0px;
margin-bottom: 10px;
border-style: solid;
border-color: #aaaaaa;
border-width: 1px;
}	
.product-item-header{
Position:unset;
}
.product-item-header h2{
Font-size:3vw;
}
.product-item-image{
Width:60%;
}
.product-item-price{
Width:40%;
Height:auto;
}
.product-item-link{
Display:none;
}
.product-finishes-list{
Font-size:1.5vw;
}
.product-item-footer{
	width:60%;
	max-height: 75px;
	}
/*END Nicks bits */
	.category-item{
    width:100%;
    height:100%;
    flex-flow:initial;
    padding-bottom:5px;
  }
	.category-item-link{
    height:auto;
  }

  .mobile-only {
    display: block;
  }
  .desktop-only {
    display: none;
  }
  #page-content {
    padding-bottom: 175px;
  }
  header {
    min-height: 95px;
  }
  .header-right {
    width: 25%;
  }
  .header-left {
    width: 20%;
  }
  .header-left br {
    display: none;
  }
  .header-logo {
    flex: 1;
    padding: 0 20px 0 10px;
  }
  .header-logo img {
    max-width: 250px;
  }
  .header-logo img {
    padding: 10px 1px 10px 5px;
  }
  .usercontrols,
  .header-userinformation {
    margin-bottom: 0px;
  }
  .usercontrol-cont.search-header,
  .usercontrol-cont a,
  .usercontrol-cont.basket-selected {
    font-size: 10px;
  }
  .usercontrol-cont i {
    font-size: 20px;
  }
  .search input {
    font-size: 12px;
  }
  .search-button {
    font-size: 16px;
  }
  #mobile-menu {
    background-color: #eeeeee;
    height: fit-content;
  }
  #mobile-menu .header-menu-button-primary i {
    margin-right: 20px;
    margin-left: -30px;
  }
  #mobile-menu .header-menu-button:hover .header-menu-button-primary {
    transition: none;
    text-shadow: unset;
  }
  #mobile-menu .header-menu-button:hover .header-menu-sub {
    display: none;
  }
  #mobile-menu .header-menu-button .header-menu-sub {
    max-height: calc(100vh - 125px);
    overflow-y: auto;
    padding-bottom: 60px;
    background: #d5d5d5;
  }
  #mobile-menu .header-menu-button .header-menu-sub a {
    max-width: 100%;
  }
  #mobile-menu .header-menu-button .header-menu-sub h3 {
    text-align: center;
  }
  .homepage-header {
    margin-bottom: 10px;
  }
  .homepage-header-image {
    display: none;
  }
  .homepage-header-content {
    width: 100%;
    padding: 0px 20px;
  }
  .homepage-header-content p {
    line-height: 16px;
    letter-spacing: 1.5px;
  }
  .homepage-collections-cont {
    flex-flow: column;
    justify-content: center;
    align-items: center;
  }
  .homepage-collection-header,
  .homepage-producttype-header,
  .homepage-urinals-header,
  .category-scrolling-name,
  .category-finishes-content h2,
  .finishes-container h2 {
    top: 95;
  }
  .homepage-urinalscat-headers {
    top: 135;
  }
  .category-item-header,
  .product-item-header {
    top: 140;
  }
  .homepage-collection,
  .homepage-collection-full,
  .homepage-urinalscat {
    width: 100%;
    box-sizing: border-box;
  }
  .homepage-productcollection-full .homepage-producttype {
    width: 48%;
  }
  .homepage-productcollection-full .homepage-producttype:first-of-type,
  .homepage-productcollection-full .homepage-producttype:nth-of-type(2) {
    padding-bottom: 20px;
  }
  .homepage-collection-subcat {
    width: 24%;
  }
  .homepage-collection-subcat-full .homepage-collection-subcat {
    width: 31%;
  }
  .homepage-collection-subcat-full .homepage-collection-subcat:first-of-type {
    width: 100%;
  }
  .homepage-collection-subcat-full
    .homepage-collection-subcat:first-of-type
    .homepage-collection-subcat-name
    a {
    font-size: 14px;
    letter-spacing: 2px;
    padding: 10px;
  }
  .homepage-collection-subcat-full .homepage-collection-subcat-name a {
    font-size: 12px;
  }
  .homepage-collection-subcat:first-of-type,
  .homepage-collection-subcat:nth-of-type(2),
  .homepage-collection-subcat-full .homepage-collection-subcat:nth-of-type(2) {
    margin-bottom: 0px;
  }
  .homepage-collection-subcat-full .homepage-collection-subcat:first-of-type {
    margin-bottom: 20px;
  }
  .category-header-image,
  .page-header-image {
    height: 200px;
  }
  .specifiers-downloads-cont {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .washroom-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .washroom-grid-item:nth-of-type(1),
  .washroom-grid-item:nth-of-type(8),
  .washroom-grid-item:nth-of-type(11) {
    grid-column: span 1;
    grid-row: span 1;
  }
  .washroom-grid-item:nth-of-type(12) {
    grid-column: span 2;
    order: 11;
  }
  .washroom-grid-item:nth-of-type(14),
  .washroom-grid-item:nth-of-type(15) {
    order: 12;
  }
  .washroom-grid-item-double-label {
    padding: 10px;
  }
  .washroom-grid-item:nth-of-type(9),
  .washroom-grid-item:nth-of-type(10) {
    justify-content: center;
  }
}

@media screen and (max-width: 600px) {
  #page-content {
    padding-bottom: 200px;
  }
  .ekmpscart-cart-items
    .ekmpscart-cart-items-product
    .ekmpscart-cart-items-product-information {
    margin-top: 10px !important;
    margin-bottom: 15px !important;
  }
  .ekmpscart-cart-items
    .ekmpscart-cart-items-product
    .ekmpscart-cart-items-product-qty
    .ekmpscart-cart-items-product-qty-down,
  .ekmpscart-cart-items
    .ekmpscart-cart-items-product
    .ekmpscart-cart-items-product-qty
    .ekmpscart-cart-items-product-qty-up {
    display: inline-block !important;
  }
  .ekmpscart-cart-items-product-qty {
    width: 110px !important;
  }
  .ekmpscart-checkout-buttons {
    display: flex;
    flex-flow: column-reverse;
  }
  .ekmpscart-checkout-button {
    margin-bottom: 10px;
    width: 100%;
  }

  .usercontrol-cont.search-header,
  .usercontrol-cont a,
  .usercontrol-cont.basket-selected {
    padding: 5px 2px;
  }
  .footer-hero {
    height: 300px;
    align-items: flex-end;
    justify-content: flex-start;
  }
  .footer-hero img {
    height: 100%;
  }

  .footer-links {
    margin: 5px 20px 0;
  }
  .footer-social {
    position: unset;
    padding: 15px;
  }
  .homepage-header-content-split {
    flex-flow: column;
  }
  .category-header-content {
    padding: 0 20px 5px;
  }
  .page-header-content {
    padding: 0 20px;
  }
  .category-header-image,
  .page-header-image {
    display: none;
  }
  .category-header-description img,
  .page-header-description img {
    max-width: 150px;
    margin: 15px auto 0px;
  }
  .category-scrolling-name {
    font-size: 18px;
    letter-spacing: 2px;
    margin-top: -52px;
    max-height: 50px;
    line-height: 16px;
  }
  .category-item-header h2 {
    font-size: 16px;
    letter-spacing: 2px;
  }
  .category-item,
  .product-item {
    width: 100%;
    padding-bottom:5px;
  }
  .category-item-link {
    height: auto;
  }
  .category-item-link a {
    font-size: 2vw;
    height:100%;
    align-content:center;
  }

  .page-header-image {
    height: 250px;
  }
  .image-gallery-cont {
    display: flex;
    flex-flow: column;
  }

  .main-image {
    width: 100%;
  }

  .small-images {
    display: none;
    flex-flow: row;
    margin: 20px 0 0;
    width: 100%;
  }

  .small-images a {
    width: 30.6666%;
    margin: 0 2%;
  }

  .ekm-productoptions-radio-option-wrapper.with-label {
    max-width: 70px !important;
  }

  .sayduck-3d-viewer-container {
    height: 500px !important;
  }

  .product-controls {
    flex-flow: column-reverse;
  }
  .product-user-controls {
    width: 100%;
    flex-flow: column-reverse;
    align-items: center;
  }
  .product-control-delivery {
    width: 100%;
    margin-top: 10px;
  }
  .product-control-add {
    width: 100%;
    margin-left: 0;
    align-items: center;
  }
  .product-delivery {
    margin-top: 10px;
  }

  .wishlist {
    align-items: center;
  }

  .delivery-type {
    padding: 5px 0;
  }

  .delivery-type-button {
    margin-left: 10px;
  }

  .related-products-grid .product-item {
    width: 50%;
  }

  h2.collection-header {
    font-size: 16px !important;
  }
  .specifiers-downloads-product-title img {
    display: none;
  }

  .warranty-image {
    min-height: 200px;
  }
  .basket-payment {
    width: 70%;
    flex-flow: row wrap;
  }

  .ekmpscart-cart-items .ekmpscart-cart-items-product {
    flex-flow: row wrap;
    justify-content: center;
  }
  .ekmpscart-cart-items
    .ekmpscart-cart-items-product
    .ekmpscart-cart-items-product-image {
    width: 100% !important;
    max-width: 150px;
  }

  .ekm-account-login__login {
    width: 95% !important;
  }

  .ekm-account-login__create .shopui-section__content {
    justify-content: center;
  }

  .shopui-product-item {
    flex-flow: column;
    align-items: center;
    margin-bottom: 20px !important;
  }
  .shopui-product-item__image {
    width: 75%;
    margin: 0 auto;
  }

  .shopui-product-item__details,
  .shopui-product-item__actions {
    width: 95%;
    margin: 10px auto 0 !important;
  }
  .shopui-product-item__details,
  .shopui-product-item__remove {
    text-align: center;
  }
  .shopui-product-list-toolbar__section,
  .shopui-order-summary__content {
    flex-flow: column-reverse;
  }
  .shopui-order-summary__actions {
    flex-flow: row;
    border-left: 0px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    margin-bottom: 10px;
  }
  .shopui-order-summary__actions a {
    padding-top: 0px;
  }
  .contact-form-cont,
  .international-contact-form-cont,
  .contact-details {
    width: 100%;
  }
  .finish-cont-5 {
    width: 30%;
  }
  .shopui-nav-box {
    width: 100%;
  }
}

@media screen and (max-width: 450px) {
	.image-model-type{
	display:none;
	}
  .usercontrol-cont.search-header,
  .usercontrol-cont a,
  .usercontrol-cont.basket-selected {
    padding: 5px 2px;
    font-size: 9px;
  }
  .header-contact a {
    font-size: 10px;
    letter-spacing: 1px !important;
    margin: 5px 0 0 0 !important;
  }
  .header-contact i {
    display: none;
  }
  .homepage-collection-subcat-cont,
  .homepage-collection-subcat-full .homepage-collection-subcat,
  .homepage-productcollection-full {
    display: none;
  }
  .homepage-collection-subcat-full,
  .homepage-collection-subcat-full .homepage-collection-subcat:first-of-type {
    display: flex;
  }
  .homepage-collection-subcat,
  .homepage-collection-subcat-full .homepage-collection-subcat:first-of-type,
  .homepage-collection-link {
    margin-bottom: 0px;
  }
  .homepage-producttype-cont,
  .homepage-urinalscat-cont {
    flex-flow: column;
    justify-content: center;
    align-items: center;
  }
  .homepage-producttype-full .homepage-producttype {
    width: 90%;
  }
  .homepage-collection-full:hover,
  .homepage-collection-full:hover .homepage-collection-header {
    background: #eeeeee;
    transition: background 0.5s ease-in;
  }
  .homepage-producttype-full {
    padding-bottom: 20px;
  }
  .homepage-producttype {
    margin-bottom: 20px;
  }
  .homepage-producttype:last-of-type {
    margin-bottom: 0px;
  }
  .category-header {
    margin-bottom: 10px;
  }
  .product-item-link a {
    font-size: 11px;
    letter-spacing: 1.5px;
  }
  .main-image {
    pointer-events: all;
  }

  .shopui-order-summary__actions {
    border-bottom: 0px;
    margin-bottom: 0px;
  }
  .downloads-link {
    width: 100%;
  }
  .specifiers-downloads-cont {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .design-inspiration-links {
    flex-flow: column;
    margin-top: 5px;
  }
  .design-inspiration {
    width: auto;
    margin: 0px 10px 5px;
  }
  .washroom-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    row-gap: 10px;
  }
  .washroom-grid-item:nth-of-type(12) {
    grid-column: span 1;
    grid-row: span 1;
  }
  .washroom-grid-item-label {
    opacity: 1 !important;
  }
}

/* IE11 Fixes */
@media all and (-ms-high-contrast: none) {
  .category-product-name a {
    display: block;
  }

  .category-product-img {
    height: 100%;
  }
}

/* Safari Fixes */
@media not all and (min-resolution: 0.001dpcm) {
  @supports (-webkit-appearance: none) {
    .category-header-content {
      max-height: 400px;
    }
    .homepage-collection-subcat-name,
    .homepage-producttype-name,
    .homepage-urinalscat-link,
    .category-header-content,
    .category-product-img,
    .page-header-content {
      height: auto;
    }
    .homepage-urinalscat,
    .homepage-urinalscat-header,
    .category-item-header,
    .product-item-header {
      display: block;
    }
    header {
      position: -webkit-sticky;
    }
    .category-scrolling-name {
      margin-top: -50px;
      position: -webkit-sticky;
    }
  }
}
