/* Overcomes LESS compile error with calc(). */
@font-face {
  font-family: 'gotham-light-webfont';
  src: url('../../fonts/gotham-light-webfont.eot');
  src: url('../../fonts/gotham-light-webfont.woff') format('woff'), url('../../fonts/gotham-light-webfont.ttf') format('truetype');
}
/* Was having problems with the iPhone font not always being what the css specified (e.g. in 'm-phone-popup-message-text' class landscape).
It was changing correctly in Chrome browser but not on the iPhone.
This mentions a fix but not really sure why: https://stackoverflow.com/questions/2545542/font-size-rendering-inconsistencies-on-an-iphone. */
body {
  -webkit-text-size-adjust: 100%;
}
*:not(p) {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}
*:not(i) {
  font-family: 'gotham-light-webfont';
  font-size: 12px;
  zline-height: 120%;
}
p {
  zzzmargin-top: 3px;
  zzzmargin-bottom: 3px;
}
html,
body {
  margin: 0px;
  padding: 0px;
  width: 100%;
  height: 100%;
  background-color: white;
}
body {
  overflow-x: auto;
  overflow-y: auto;
}
body.disable-horizontal-scrolling {
  overflow-x: hidden;
}
body.disable-vertical-scrolling {
  overflow-y: hidden;
}
.m-hide {
  display: none;
}
.m-hide-important {
  display: none !important;
}
body.m-phone .mm-tablet-only,
body.m-phone .mm-desktop-only,
body.m-tablet .mm-phone-only,
body.m-tablet .mm-desktop-only,
body.m-desktop .mm-phone-only,
body.m-desktop .mm-tablet-only,
body.m-desktop .mm-phone-or-tablet-only {
  display: none !important;
}
.m-page {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.m-fixed {
  /*position: absolute;
left: 0;
zzbackground-color: yellow;
overflow-x: hidden;
overflow-y: hidden;
width: 100%;
height: 100%;
*/
}
.m-main {
  position: relative;
  qqposition: fixed;
  left: 0;
  top: 50px;
  width: 100%;
  height: calc(100% - 50px);
  top: 0;
  padding-top: 50px;
  height: 100%;
}
.m-scene-render {
  position: relative;
  display: none;
  left: 0px;
  top: 50px;
  width: 100%;
  height: calc(100% - 50px);
  -webkit-overflow-scrolling: touch;
  /* momentum scrolling. */
  font-size: 0;
  top: 0;
  height: 100%;
}
.m-desktop .m-scene-render {
  text-align: center;
}
.visualizer-plugin-render-canvas.mm-fill-height {
  width: auto;
  height: 100%;
}
.visualizer-plugin-render-canvas.mm-fill-width {
  width: 100%;
  height: auto;
}
#panorama {
  position: absolute;
  left: 0;
  top: 50px;
  height: calc(100% - 50px);
  z-index: -1;
  /* Or appears behind but the pano gets the button taps. */
  z-index: 0;
  /* Or appears behind but the pano gets the button taps. */
}
/* Hide their loading box. */
.pnlm-load-box {
  display: none !important;
}
.m-instruction-popup {
  position: fixed;
  left: 50%;
  width: 300px;
  margin-left: -150px;
  top: 110px;
  border: 1px solid #444;
  border-radius: 3px;
  text-align: center;
  padding: 25px;
  background-color: rgba(84, 86, 81, 0.95);
  z-index: 5;
}
.m-instruction-popup.mm-put-at-bottom {
  top: auto;
  bottom: 75px;
}
.m-instruction-popup .mm-close-button {
  position: absolute;
  right: 4px;
  top: 0px;
  font-size: 30px;
  color: white;
  zzbackground-color: black;
}
.m-instruction-popup .mm-text {
  margin-top: 0px;
  margin-bottom: 0px;
  font-size: 16px;
  color: white;
}
.m-instruction-popup .mm-text .mm-icon {
  display: inline-block;
  text-align: center;
  vertical-align: top;
  margin-left: 1px;
  margin-right: 1px;
}
.m-instruction-popup .mm-text .mm-icon i {
  font-size: 14px;
  color: white;
  border-radius: 50%;
}
.m-instruction-popup .mm-text .mm-icon.mm-ok i {
  background-color: #444;
  border: 2px solid #444;
}
.m-instruction-popup .mm-text .mm-icon.mm-delete i {
  padding: 0 2.18px;
  background-color: #444;
  border: 2px solid #444;
}
.m-instruction-popup .mm-text .mm-icon.mm-ok2 i {
  background-color: #444;
  border: 2px solid #444;
}
.m-instruction-popup .mm-text .mm-icon.mm-plus-green i,
.m-instruction-popup .mm-text .mm-icon.mm-minus-green i {
  background-color: #444;
  border: 2px solid #444;
  color: #0f0;
}
.m-instruction-popup .mm-text .mm-icon.mm-plus-red i,
.m-instruction-popup .mm-text .mm-icon.mm-minus-red i {
  background-color: #444;
  border: 2px solid #444;
  color: #f00;
}
@media screen and (orientation: landscape) {
  .m-phone .m-instruction-popup {
    top: 90px;
  }
}
.m-message-popup {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 5;
}
.m-message {
  position: fixed;
  left: 50%;
  width: 200px;
  margin-left: -100px;
  top: 200px;
  border: 1px solid #444;
  border-radius: 3px;
  text-align: center;
  padding: 20px;
  background-color: rgba(84, 86, 81, 0.95);
}
.m-message-loading-icon {
  width: 41px;
  height: 41px;
  padding: 5px;
  border-radius: 20px;
  margin-bottom: 16px;
  background-color: white;
}
.m-message-text {
  margin-top: 0px;
  margin-bottom: 0px;
  font-size: 16px;
  color: white;
  zzbackground-color: yellow;
}
@media screen and (orientation: landscape) {
  .m-phone .m-message {
    top: 120px;
  }
}
.m-phone-popup-message-popup {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 5;
}
.m-phone-popup-message {
  position: fixed;
  left: 50%;
  width: 300px;
  margin-left: -150px;
  top: 90px;
  padding: 10px;
  text-align: center;
  border: 1px solid #444;
  background-color: white;
  font-size: 0px;
}
.m-phone-popup-message-text {
  width: 100%;
  padding: 0px;
  font-size: 16px;
  margin-top: 10px;
  margin-bottom: 5px;
  color: #444;
  zzbackground-color: yellow;
}
.m-phone-popup-message-text2 {
  text-align: left;
  width: 80%;
  padding: 0px;
  font-size: 16px;
  margin-left: 10%;
  margin-top: 7px;
  margin-bottom: 0px;
  color: #444;
  zzbackground-color: yellow;
}
.m-phone-popup-message-popup ul {
  text-align: left;
}
.m-phone-popup-message-text.mm-emphasise {
  color: red;
  font-weight: bold;
}
.m-phone-popup-message-area {
  display: inline-block;
  width: 100%;
  font-size: 0px;
  padding: 0 5px;
  zzbackground-color: blue;
}
.m-phone-popup-message-image {
  width: 45%;
}
.m-phone-popup-message-height-buttons {
  font-size: 0;
}
.m-phone-popup-message-height-button {
  display: inline-block;
  margin: 2px;
  width: 105px;
  height: 45px;
  border: 1px solid #444;
  border-radius: 8px;
  padding-top: 0px;
  text-align: center;
  vertical-align: top;
  background-color: #f2f2f2;
  zzbackground-color: yellow;
}
/*.m-phone-popup-message-height-button i
{
font-size: 20px;
font-weight: bold;
zzmargin-left: 3px;
zzmargin-top: 4px;
padding-top: 3px;
color: green;
background-color: cyan;
}*/
.m-phone-popup-message-height-button p {
  font-size: 13px;
  margin-top: 7px;
  margin-bottom: 5px;
  vertical-align: top;
  color: #444;
  zzbackground-color: red;
}
.m-phone-popup-message-height-button:nth-child(1) p {
  margin-top: 15px;
}
.m-phone-popup-message-take-photo-button {
  margin-top: 10px;
  width: 100%;
  height: 40px;
  padding: 5px;
  border: 1px solid #444;
  border-radius: 8px;
  color: #444;
  background-color: #f2f2f2;
}
.m-phone-popup-message-take-photo-button i {
  vertical-align: top;
  color: #444;
  padding: 2px 14px 8px 8px;
  font-size: 24px;
  zzbackground-color: cyan;
}
.m-phone-popup-message-take-photo-button span {
  display: inline-block;
  vertical-align: top;
  padding-top: 6px;
  font-size: 16px;
  zzbackground-color: yellow;
}
.m-phone-popup-message-close-button {
  text-align: center;
}
.m-phone-popup-message-close-button i {
  margin-top: 15px;
  width: 48px;
  height: 43px;
  color: #444;
  padding: 8px 8px 8px 8px;
  padding-top: 8px;
  zzbackground-color: cyan;
}
.m-phone-popup-message-take-photo-button.m-phone-not-close-to-vertical i,
.m-phone-popup-message-take-photo-button.m-phone-not-close-to-vertical span {
  color: red;
}
.m-tablet .m-phone-popup-message {
  width: 600px;
  margin-left: -300px;
  top: 100px;
  padding: 20px;
}
@media screen and (orientation: landscape) {
  .m-phone .m-phone-popup-message {
    top: 60px;
    width: 550px;
    margin-left: -275px;
  }
  .m-phone .m-phone-popup-message-image {
    width: 90px;
  }
  .m-phone .m-phone-popup-message-height-button {
    width: 95px;
    height: 45px;
  }
  .m-phone .m-phone-popup-message-height-button p {
    font-size: 11px;
    margin-top: 10px;
  }
  .m-phone .m-phone-popup-message-height-button:nth-child(1) p {
    margin-top: 16px;
  }
}
.m-product-details-popup {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 5;
  zfont-size: 0;
}
.m-product-details {
  position: fixed;
  left: 2%;
  width: 96%;
  top: 90px;
  padding: 5px;
  border: 1px solid #444;
  background-color: white;
  zfont-size: 0;
}
.m-product-details-popup .mm-col-1 {
  float: left;
  width: 35%;
  padding: 2px;
  zzbackground-color: yellow;
}
.m-product-details-image {
  width: 100%;
}
.m-product-details-image:after {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.m-product-details-popup .mm-col-1 .mm-product-range {
  font-size: 13px;
  font-weight: bold;
  margin-top: 10px;
  zzbackground-color: cyan;
}
.m-product-details-popup .mm-col-1 .mm-product-colour {
  font-size: 12px;
  margin-top: 10px;
  zzbackground-color: cyan;
}
.m-product-details-popup .mm-col-2 {
  float: left;
  width: 65%;
  padding: 2px;
  zzbackground-color: cyan;
}
.m-product-details-popup .mm-col-2 .mm-row {
  width: 100%;
  text-align: left;
  margin-bottom: 5px;
}
.m-product-details-popup .mm-heading {
  zwidth: 50%;
  ztext-align: right;
  zpadding-right: 5px;
  font-size: 14px;
  margin-top: 0;
  margin-bottom: 10px;
  text-align: center;
  zzbackground-color: red;
}
.m-product-details-popup .mm-title,
.mm-text,
.mm-bottom-text {
  zztext-align: center;
  font-size: 11px;
}
.m-product-details-popup .mm-col-2 .mm-row .mm-title {
  display: inline-block;
  width: 50%;
  text-align: right;
  padding-right: 5px;
  font-weight: bold;
  vertical-align: top;
  zzbackground-color: green;
}
.m-product-details-popup .mm-col-2 .mm-row .mm-text {
  display: inline-block;
  width: 50%;
  text-align: left;
  padding-left: 5px;
  vertical-align: top;
  zzbackground-color: cyan;
}
.m-product-details-popup .mm-col-2 .mm-row .mm-bottom-text {
  display: inline-block;
  width: 100%;
  vertical-align: top;
  margin-top: 5px;
  padding-left: 10px;
  padding-right: 5px;
  zzbackground-color: red;
}
.m-product-details-popup .mm-close-button {
  clear: both;
  text-align: center;
  zzbackground-color: blue;
}
.m-product-details-popup .mm-close-button i {
  margin-top: 10px;
  width: 48px;
  height: 48px;
  color: #444;
  padding: 8px;
  cursor: pointer;
  zzbackground-color: cyan;
}
@media screen and (orientation: landscape) {
  .m-product-details {
    zzleft: 10%;
    zzwidth: 80%;
    left: 50%;
    width: 530px;
    margin-left: -265px;
    top: 60px;
  }
  .m-product-details-popup .mm-col-1 {
    width: 20%;
  }
  .m-product-details-popup .mm-col-2 {
    width: 80%;
  }
  .m-product-details-popup .mm-col-2 .mm-row .mm-title {
    width: 22%;
  }
  .m-product-details-popup .mm-col-2 .mm-row .mm-text {
    width: 78%;
  }
  .m-product-details-popup .mm-col-2 .mm-row {
    margin-bottom: 1px;
  }
  .m-product-details-popup .mm-heading {
    font-size: 13px;
  }
  .m-product-details-popup .mm-title,
  .mm-text,
  .mm-bottom-text {
    font-size: 9px;
  }
}
.m-tablet .m-product-details {
  zzleft: 10%;
  zzwidth: 80%;
  left: 50%;
  width: 600px;
  margin-left: -300px;
  top: 100px;
  padding: 15px;
}
.m-tablet .m-product-details-popup .mm-col-1 {
  width: 35%;
}
.m-tablet .m-product-details-popup .mm-col-2 {
  width: 65%;
}
.m-tablet .m-product-details-popup .mm-col-1 .mm-product-range {
  font-size: 15px;
}
.m-tablet .m-product-details-popup .mm-col-1 .mm-product-colour {
  font-size: 14px;
}
.m-tablet .m-product-details-popup .mm-col-2 .mm-row .mm-title {
  width: 35%;
}
.m-tablet .m-product-details-popup .mm-col-2 .mm-row .mm-text {
  width: 65%;
}
.m-tablet .m-product-details-popup .mm-col-2 .mm-row {
  margin-bottom: 5px;
}
.m-tablet .m-product-details-popup .mm-heading {
  font-size: 18px;
}
.m-tablet .m-product-details-popup .mm-title,
.m-tablet .mm-text,
.m-tablet .mm-bottom-text {
  font-size: 13px;
}
@media screen and (orientation: landscape) {
  .m-tablet {
    /*.m-product-details
{
left: 20%;
width: 60%;
}*/
  }
}
.m-desktop .m-product-details {
  left: 50%;
  width: 600px;
  margin-left: -300px;
  top: 150px;
  padding: 15px;
}
.m-desktop .m-product-details-popup .mm-col-1 {
  width: 30%;
}
.m-desktop .m-product-details-popup .mm-col-2 {
  width: 70%;
}
.m-desktop .m-product-details-popup .mm-col-1 .mm-product-range {
  font-size: 15px;
}
.m-desktop .m-product-details-popup .mm-col-1 .mm-product-colour {
  font-size: 14px;
}
.m-desktop .m-product-details-popup .mm-col-2 .mm-row {
  margin-bottom: 5px;
}
.m-desktop .m-product-details-popup .mm-col-2 .mm-row .mm-title {
  width: 30%;
}
.m-desktop .m-product-details-popup .mm-col-2 .mm-row .mm-text {
  width: 70%;
}
.m-desktop .m-product-details-popup .mm-heading {
  font-size: 18px;
}
.m-desktop .m-product-details-popup .mm-title,
.m-desktop .mm-text,
.m-desktop .mm-bottom-text {
  font-size: 13px;
}
.m-label-popup {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 5;
}
.m-label-popup-container {
  position: fixed;
  left: 50%;
  width: 300px;
  margin-left: -150px;
  top: 60px;
  padding: 10px;
  text-align: center;
  border: 1px solid #444;
  background-color: white;
  font-size: 0px;
}
.m-label-popup.mm-label-read-failed .m-label-popup-container {
  width: 300px;
  margin-left: -150px;
  top: 90px;
  zzbackground-color: yellow;
}
.m-label-popup .mm-area {
  display: inline-block;
  width: 100%;
  vertical-align: top;
  zzbackground-color: yellow;
}
.m-label-popup .mm-section {
  zzbackground-color: green;
}
.m-label-popup-image {
  height: 80px;
  margin-bottom: 5px;
}
.m-label-popup button {
  font-size: 16px;
  zzmargin-top: 10px;
  width: 100%;
  height: 40px;
  padding: 5px;
  border: 1px solid #444;
  border-radius: 8px;
  background-color: #f2f2f2;
}
.m-label-popup-take-photo-button {
  margin-bottom: 10px;
}
.m-label-popup-take-photo-button i {
  vertical-align: top;
  color: #444;
  padding: 2px 14px 8px 8px;
  font-size: 24px;
  zzbackground-color: cyan;
}
.m-label-popup-take-photo-button span {
  display: inline-block;
  vertical-align: top;
  padding-top: 6px;
  font-size: 16px;
  zzbackground-color: yellow;
}
.m-label-popup-text {
  top: 280px;
  width: 100%;
  padding: 0px;
  font-size: 16px;
  margin-top: 5px;
  margin-bottom: 5px;
  color: #444;
  zzbackground-color: yellow;
}
.m-label-popup-search-container {
  margin-top: 5px;
  position: relative;
  width: 100%;
  vertical-align: top;
  zzbackground-color: cyan;
}
.m-label-popup-product-search {
  margin-top: 5px;
  font-size: 16px;
  width: 100%;
  height: 40px;
  text-align: center;
  padding-left: 40px;
  padding-right: 40px;
  color: #444;
  border: 1px solid #444;
  zzbackground-color: white;
  background-color: #f2f2f2;
  zzbackground-color: yellow;
}
.m-label-popup-magnifying-glass {
  position: absolute;
  left: 7px;
  top: 13px;
  font-size: 24px;
  zzbackground-color: cyan;
}
.m-label-popup-clear {
  position: absolute;
  right: 6px;
  top: 13px;
  font-size: 24px;
  zzbackground-color: cyan;
}
.m-label-popup.mm-recognised-sku-container {
  zwidth: 100%;
  margin-top: 10px;
  font-size: 0;
  zzbackground-color: yellow;
}
.m-label-popup .mm-typed-sku-image {
  height: 35px;
  margin-right: 10px;
  border: 1px solid #444;
}
.m-label-popup .mm-typed-sku-background-image {
  display: inline-block;
  width: 35px;
  height: 35px;
  margin-right: 10px;
  border: 1px solid #444;
  qqwidth: 100%;
  qqheight: 0;
  qqpadding-bottom: 100%;
  background-size: 3200% 3200%;
  background-repeat: no-repeat;
  clip-path: inset(1px 1px 1px 1px);
}
/*.m-product-thumbnail-recently-used-container .m-recently-used-product-image
{
float: left;
width: 100%;
}

.m-product-thumbnail-recently-used-container .m-recently-used-product-background-image
{
width: 100%;
// These two lines make the height the same as the width (padding % related to width??).
height: 0;
padding-bottom: 100%;
zzzbackground-size: 3232% 3232%;
background-size: 3200% 3200%;
background-repeat: no-repeat;

// Slight inaccuracies in the thumbnails extracted for display (and jpg compression) can leave dark/light edges so hide outer.
clip-path: inset(1px 1px 1px 1px);
}
*/
.m-label-popup .mm-typed-sku-status {
  display: inline-block;
  vertical-align: top;
  margin-top: 8px;
  margin-bottom: 5px;
  font-size: 14px;
  color: #444;
  zzbackground-color: yellow;
}
.m-label-popup .mm-unrecognised-sku {
  color: red;
}
.m-label-popup-select-label-button {
  margin-top: 10px;
}
.m-label-popup-close-button {
  text-align: center;
}
.m-label-popup-close-button i {
  margin-top: 5px;
  width: 48px;
  height: 43px;
  color: #444;
  padding: 8px 8px 8px 8px;
  padding-top: 8px;
  zzbackground-color: cyan;
}
.m-tablet .m-ocr-popup-message {
  width: 700px;
  margin-left: -350px;
  top: 100px;
  padding: 20px;
}
.m-tablet .m-ocr-popup-message-take-photo-button p {
  font-size: 20px;
}
.m-tablet .m-ocr-popup-message-close-button {
  margin-top: 8px;
}
@media screen and (orientation: landscape) {
  .m-phone .m-label-popup .mm-section {
    height: 130px;
  }
  .m-phone .m-label-popup-text {
    margin-top: 0px;
    font-size: 14px;
  }
  .m-phone .m-label-popup-take-photo-button {
    margin-top: 5px;
    margin-bottom: 0px;
  }
  .m-phone .m-label-popup-take-photo-button i {
    padding: 2px 14px 8px 8px;
    font-size: 20px;
  }
  .m-phone .m-label-popup-take-photo-button span {
    padding-top: 6px;
    font-size: 14px;
  }
  .m-phone .m-label-popup-select-label-button {
    margin-top: 5px;
  }
  .m-phone .m-label-popup:not(.mm-label-read-failed) .m-label-popup-container {
    width: 540px;
    margin-left: -270px;
  }
  .m-phone .m-label-popup.mm-label-read-failed .m-label-popup-container {
    top: 60px;
    zzbackground-color: yellow;
  }
  .m-phone .m-label-popup.mm-label-read-failed .mm-section {
    height: auto;
  }
  .m-phone .m-label-popup:not(.mm-label-read-failed) .mm-area {
    width: 50%;
    padding: 0 5px;
    zzbackground-color: cyan;
  }
  .m-phone .m-label-popup:not(.mm-label-read-failed) .m-label-popup-image {
    height: 60px;
  }
  .m-phone .m-label-popup:not(.mm-label-read-failed) .mm-typed-sku-image {
    height: 45px;
    margin-right: 10px;
    border: 1px solid #444;
  }
  .m-phone .m-label-popup:not(.mm-label-read-failed) .mm-recognised-sku {
    margin-top: 18px;
  }
}
.m-ocr-popup-message-popup {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 5;
}
.m-ocr-popup-message {
  position: fixed;
  left: 50%;
  width: 300px;
  margin-left: -150px;
  top: 70px;
  padding: 10px;
  text-align: center;
  border: 1px solid #444;
  background-color: white;
  font-size: 0px;
}
.m-ocr-popup-message-image {
  height: 150px;
}
.m-ocr-popup-message-take-photo-button {
  margin-top: 10px;
  width: 100%;
  padding: 5px;
  border: 1px solid #444;
  border-radius: 8px;
  color: #444;
  background-color: #f2f2f2;
}
.m-ocr-popup-message-take-photo-button p {
  margin-top: 5px;
  margin-bottom: 5px;
  font-size: 16px;
}
.m-ocr-popup-message-close-button {
  text-align: center;
}
.m-ocr-popup-message-close-button i {
  margin-top: 5px;
  width: 48px;
  height: 43px;
  color: #444;
  padding: 8px 8px 8px 8px;
  padding-top: 8px;
  zzbackground-color: cyan;
}
.m-ocr-not-close-to-vertical {
  color: red;
  font-weight: bold;
}
.m-tablet .m-ocr-popup-message {
  width: 600px;
  margin-left: -300px;
  top: 100px;
  padding: 20px;
}
.m-tablet .m-ocr-popup-message-take-photo-button p {
  font-size: 20px;
}
.m-tablet .m-ocr-popup-message-close-button {
  margin-top: 8px;
}
@media screen and (orientation: landscape) {
  .m-phone .m-ocr-popup-message {
    width: 500px;
    margin-left: -250px;
  }
  .m-phone .m-ocr-popup-message-image {
    height: 100px;
  }
}
.m-phone-motion-orientation-message-popup {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 5;
}
.m-phone-motion-orientation-message {
  position: fixed;
  left: 50%;
  width: 300px;
  margin-left: -150px;
  top: 90px;
  padding: 20px;
  text-align: center;
  border: 1px solid #444;
  background-color: white;
  font-size: 0px;
}
.m-phone-motion-orientation-message p {
  top: 280px;
  width: 100%;
  padding: 0px;
  font-size: 14px;
  margin-top: 0;
  margin-bottom: 10px;
  color: #444;
  zzbackground-color: yellow;
}
.m-phone-motion-orientation-message button {
  font-size: 16px;
  margin-top: 10px;
  width: 100%;
  height: 40px;
  padding: 5px;
  border: 1px solid #444;
  border-radius: 8px;
  background-color: #f2f2f2;
}
body.m-desktop .m-phone-motion-orientation-message-popup .mm-non-desktop-text {
  display: none;
}
body:not(.m-desktop) .m-phone-motion-orientation-message-popup .mm-desktop-text {
  display: none;
}
.m-tablet .m-phone-motion-orientation-message {
  width: 400px;
  margin-left: -200px;
  top: 150px;
  padding: 20px;
}
.m-tablet .m-phone-motion-orientation-message p {
  font-size: 16px;
}
@media screen and (orientation: landscape) {
  .m-phone .m-phone-motion-orientation-message {
    width: 500px;
    margin-left: -250px;
  }
}
.m-add-to-favourites-popup {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 5;
}
.m-add-to-favourites-popup-container {
  position: fixed;
  zzposition: absolute;
  left: 50%;
  width: 300px;
  margin-left: -150px;
  top: 100px;
  padding: 15px;
  text-align: center;
  border: 1px solid #444;
  background-color: white;
}
.m-add-to-favourites-popup-title {
  top: 280px;
  width: 100%;
  padding: 0px;
  font-size: 14px;
  font-weight: bold;
  margin-top: 0;
  margin-bottom: 15px;
  color: #444;
  zzbackground-color: cyan;
}
.m-add-to-favourites-popup-product-details {
  top: 280px;
  width: 100%;
  padding: 0px;
  margin-top: 0;
  margin-bottom: 15px;
  color: #444;
  font-size: 0;
  zzbackground-color: cyan;
}
.m-add-to-favourites-popup-product-details div {
  margin-bottom: 8px;
}
.m-add-to-favourites-popup-product-details p {
  margin-top: 0px;
  margin-bottom: 4px;
  font-size: 13px;
  line-height: 13px;
  color: #444;
  zzbackground-color: yellow;
}
.m-add-to-favourites-popup-text {
  top: 280px;
  width: 100%;
  padding: 0px;
  font-size: 12px;
  margin-top: 0;
  margin-bottom: 15px;
  color: #444;
  zzbackground-color: yellow;
}
.m-add-to-favourites-popup-email-address {
  text-align: center;
  font-size: 16px;
  /* Must be 16px or larger to stop Safari zooming in when typing and leaving the display zoomed. */
  padding: 5px;
  margin-bottom: 3px;
  width: 100%;
  border: 1px solid #444;
  zzbackground-color: cyan;
}
.m-add-to-favourites-popup-invalid-email {
  margin-top: 3px;
  font-size: 9px;
  color: red;
}
.m-add-to-favourites-button {
  margin-top: 15px;
  width: 100%;
  height: 40px;
  padding: 5px;
  border: 1px solid #444;
  background-color: #f2f2f2;
}
.m-add-to-favourites-button p {
  margin-top: 5px;
  font-size: 16px;
}
.m-add-to-favourites-popup-close-button {
  text-align: center;
}
.m-add-to-favourites-popup-close-button i {
  margin-top: 5px;
  width: 48px;
  height: 43px;
  color: #444;
  padding: 8px 8px 8px 8px;
  padding-top: 8px;
  zzbackground-color: cyan;
}
@media screen and (orientation: landscape) {
  .m-phone .m-add-to-favourites-popup {
    top: 60px;
    width: 500px;
    margin-left: -250px;
    padding: 10px;
  }
  .m-phone .m-add-to-favourites-popup-title,
  .m-phone .m-add-to-favourites-popup-product-details,
  .m-phone .m-add-to-favourites-popup-text {
    margin-bottom: 10px;
  }
  .m-phone .m-add-to-favourites-popup-product-details div {
    display: inline-block;
    width: 50%;
    vertical-align: top;
  }
}
.m-help-container {
  position: fixed;
  z-index: 2;
}
.m-help-item {
  position: fixed;
}
.m-help-item i {
  width: 100%;
  font-size: 40px;
  color: rgba(84, 86, 81, 0.95);
  -text-stroke: 1px #444;
  -webkit-text-stroke: 1px #444;
  zzbackground-color: yellow;
}
.m-help-item p {
  position: absolute;
  padding: 6px 3px 6px 3px;
  border: 1px solid #444;
  border-radius: 10px;
  font-size: 14px;
  margin: 0;
  text-align: center;
  zzcolor: #444;
  color: white;
  width: 84px;
  zfont-weight: bold;
  zzbackground-color: white;
  background-color: #545651;
}
.m-help-item.m-help-top-left i {
  text-align: left;
}
.m-help-item.m-help-top-right i {
  text-align: right;
}
.m-help-item.m-help-top-centre i {
  text-align: center;
}
.m-help-item.m-help-top-left p {
  zleft: -10px;
}
.m-help-item.m-help-top-right p {
  zright: -10px;
}
.m-help-item-1 {
  left: 14px;
  top: 44px;
  width: 30%;
}
.m-help-item-2 {
  left: 50%;
  top: 82px;
  width: 90px;
  margin-left: -45px;
  cursor: pointer;
}
.m-help-item-3 {
  right: 39px;
  zztop: 245px;
  top: 198px;
  width: 40%;
}
.m-help-item-slider {
  left: 50%;
  top: 82px;
  width: 90px;
  margin-left: -45px;
  cursor: pointer;
}
.m-tablet .m-help-item-3 {
  right: 65px;
  top: 285px;
}
.m-header {
  position: fixed;
  z-index: 1;
  left: 0px;
  top: 0;
  width: 100%;
  height: 50px;
  background-color: white;
  border-bottom: 1px solid #666;
  text-align: center;
}
.m-header img {
  margin-top: 5px;
  height: 42px;
}
.m-header .mm-menu-button {
  position: fixed;
  left: 0;
  top: 0;
  width: 48px;
  height: 48px;
  text-align: center;
  color: #444;
  padding-top: 7px;
  font-size: 36px;
  cursor: pointer;
  zzbackground-color: cyan;
}
.m-header .mm-tools-button {
  position: fixed;
  right: 0;
  top: 0;
  width: 48px;
  height: 48px;
  text-align: center;
  color: #444;
  padding-left: 11px;
  padding-top: 15px;
  font-size: 20px;
  cursor: pointer;
  zzbackground-color: cyan;
}
.m-menu-container {
  position: fixed;
  zleft: -330px;
  left: -100%;
  top: 50px;
  width: 100%;
  height: calc(100% - 50px);
  zwidth: 330px;
  zheight: calc(100% - 50px);
  zpadding: 10px;
  color: #444;
  zbackground-color: red;
  background-color: rgba(0, 0, 0, 0.001);
}
.m-menu-container .mm-container {
  position: relative;
  ztop: 50px;
  width: 330px;
  height: 100%;
  padding: 10px;
  background-color: rgba(238, 238, 238, 0.95);
}
.m-menu-container .m-item {
  width: 100%;
}
.m-menu-container .m-divider {
  width: 100%;
  margin-top: 0px;
  margin-bottom: 0px;
  height: 0px;
  border-top: 1px solid #888;
}
.m-item.m-menu-close {
  text-align: center;
}
.m-menu-close i {
  margin-top: 10px;
  width: 48px;
  height: 48px;
  color: #444;
  padding: 8px;
  cursor: pointer;
  zzbackground-color: cyan;
}
.mm-run-visualizer-on-phone {
  margin: 10px 15px 0px 15px;
  zzpadding: 10px;
  width: 90%;
  zzborder: 1px solid #aaa;
  zzbackground-color: yellow;
}
.mm-run-visualizer-on-phone .mm-text {
  zztext-align: center;
  margin-top: 0px;
  margin-bottom: 5px;
  font-size: 15px;
}
.mm-run-visualizer-on-phone .mm-qr-code-container img {
  margin-left: 30%;
  width: 40%;
}
.m-visualizeit-logo a {
  position: absolute;
  width: 126px;
  height: 20px;
  height: 30px;
  left: 50%;
  margin-left: -63px;
  bottom: 10px;
  text-align: center;
  border: 1px solid #444;
  border-radius: 5px;
  padding-top: 4px;
  text-decoration: none;
  cursor: pointer;
  background-color: #444;
}
.zzzzm-visualizeit-logo a {
  zfont-family: Arial, Segoe UI, Sans-Serif;
  zfont-size: 11px;
  zfont-weight: normal;
  zline-height: 20px;
  zvertical-align: top;
  zcolor: white;
  ztext-decoration: none;
  zbackground-color: blue;
}
.m-visualizeit-logo span {
  font-family: Arial, Segoe UI, Sans-Serif;
  font-size: 11px;
  font-weight: normal;
  line-height: 20px;
  vertical-align: top;
  color: white;
  text-decoration: none;
  zzbackground-color: blue;
}
.m-visualizeit-logo img {
  vertical-align: top;
  zzbackground-color: red;
}
.m-desktop .m-menu-container .mm-take-room-photo {
  display: none;
}
.m-desktop .m-menu-container .mm-browse-photo-library {
  display: none;
}
.m-phone .m-menu-container .mm-browse-for-my-photo,
.m-tablet .m-menu-container .mm-browse-for-my-photo {
  display: none;
}
.m-desktop .m-menu-container .mm-save-photo {
  display: none;
}
.m-phone .m-menu-container .mm-export,
.m-tablet .m-menu-container .mm-export {
  display: none;
}
.m-phone .m-menu-container .mm-print-pdf,
.m-tablet .m-menu-container .mm-print-pdf {
  display: none;
}
.m-desktop .m-menu-container .mm-read-label {
  display: none;
}
body.m-phone .m-menu-container .mm-tablet-only {
  display: none;
}
body.m-tablet .m-menu-container .mm-phone-only {
  display: none;
}
@media screen and (orientation: portrait) {
  .m-small-phone .m-menu-container .mm-container {
    width: 100%;
  }
}
@media screen and (orientation: landscape) {
  .m-phone .m-menu-container {
    zzmargin-top: -1px;
    padding-top: 0px;
  }
  .m-phone .m-visualizeit-logo {
    display: none;
  }
}
.mm-config-hughmackay .m-hughmackay-menu-items {
  margin: 0 5% 0 5%;
  margin-top: 10px;
  width: 90%;
  padding-left: 1%;
  border: 1px solid #aaa;
  text-align: center;
  background-color: white;
  font-size: 0;
}
.mm-config-hughmackay .mm-menu-client-logo {
  display: block;
  width: 80px;
  margin: auto;
  padding-top: 3px;
  padding-bottom: 3px;
}
.mm-config-hughmackay .mm-link-button {
  display: inline-block;
  width: 49%;
  zheight: 45px;
  padding: 3px;
  text-align: center;
  margin-right: 1%;
  margin-bottom: 1%;
  zborder: 1px solid #aaa;
  background-color: #f8f8f8;
  background-color: #ddd;
  cursor: pointer;
}
.mm-config-hughmackay .mm-link-button p {
  font-size: 14px;
  line-height: 14px;
  margin: 0;
  color: #444;
}
@media screen and (orientation: landscape) {
  .m-phone .m-menu-close i {
    margin-top: 5px;
    padding-top: 0px;
  }
  .m-phone .mm-config-hughmackay .m-hughmackay-menu-items {
    margin-top: 5px;
    padding-top: 3px;
  }
  .m-phone .mm-config-hughmackay .mm-menu-client-logo {
    display: none;
  }
  .m-phone .mm-config-hughmackay .mm-link-button p {
    font-size: 9px;
    line-height: 9px;
    font-weight: bold;
  }
  .m-phone .mm-config-hughmackay .mm-link-button p br {
    content: ' ';
  }
  .m-phone .mm-config-hughmackay .mm-link-button p br:after {
    content: ' ';
  }
}
.m-menu-selector {
  color: #444;
  height: 40px;
  width: 100%;
  padding-top: 10px;
  padding-left: 2%;
  zzbackground-color: gray;
}
.m-menu-selector:not(.mm-disabled) {
  cursor: pointer;
}
.m-menu-selector i {
  font-size: 20px;
  margin-right: 10px;
  min-width: 22.5px;
  zzbackground-color: yellow;
}
.m-menu-selector span {
  zzfont-size: 20px;
  font-size: 18px;
  zzbackground-color: cyan;
}
.m-menu-selector.mm-smaller-text span {
  zzzfont-size: 18px;
}
.m-menu-selector.mm-disabled {
  opacity: 0.6;
}
@media screen and (orientation: landscape) {
  .m-phone .m-menu-selector {
    height: 25px;
    padding-top: 5px;
  }
  .m-phone .m-menu-selector i {
    font-size: 14px;
    min-width: 18px;
    zzbackground-color: cyan;
  }
  .m-phone .m-menu-selector span {
    font-size: 13px;
    zzbackground-color: cyan;
  }
}
@media screen and (orientation: portrait) {
  .m-phone .m-menu-selector.mm-shorter {
    height: 37px;
    padding-top: 9px;
    zzbackground-color: yellow;
  }
}
.m-room-selector-container {
  zzposition: absolute;
  position: fixed;
  margin-top: 50px;
  top: -100%;
  width: 100%;
  height: calc(100% - 50px);
  color: #444;
  background-color: rgba(84, 86, 81, 0.95);
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  /* Smooth scroll. */
  padding: 5px 15px 50px 15px;
  font-size: 0;
  /* Removes small gaps between divs. */
}
.m-room-selector-heading {
  font-size: 16px;
  margin: 10px 0 5px 0;
  color: white;
}
.m-room-thumbnails-inject {
  font-size: 0;
  /* Removes small gaps between divs. */
}
.m-room-thumbnail-container {
  position: relative;
  display: inline-block;
  width: 49%;
  margin-left: 0.5%;
  margin-right: 0.5%;
  vertical-align: top;
  border: 1px solid #444;
  background-color: white;
  margin-bottom: 1%;
  cursor: pointer;
  font-size: 0;
  zzbackground-color: cyan;
}
.m-room-thumbnail-container img {
  width: 100%;
}
.mm-delete-button {
  position: absolute;
  right: 0px;
  top: 0px;
  font-size: 26px;
  padding: 2px 5px;
  color: red;
  zzbackground-color: black;
}
.m-room-selector-close-container {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
}
.m-room-selector-close-background {
  zzdisplay: none;
  position: fixed;
  bottom: 0;
  width: 100%;
  zzzopacity: 0.55;
  background-color: rgba(84, 86, 81, 0.95);
  zzbackground-color: red;
  height: 48px;
  background: linear-gradient(to bottom, rgba(84, 86, 81, 0.2), #545651);
  pointer-events: none;
}
.m-room-selector-close-container i {
  position: fixed;
  bottom: 0px;
  width: 48px;
  height: 48px;
  left: 50%;
  margin-left: -24px;
  color: #444;
  padding: 8px;
  zzbackground-color: cyan;
}
.m-tablet .m-room-thumbnail-container {
  width: 24%;
  margin-left: 0.5%;
  margin-right: 0.5%;
}
@media screen and (orientation: landscape) {
  .m-room-thumbnail-container {
    width: 24%;
    margin-left: 0.5%;
    margin-right: 0.5%;
  }
  .m-tablet .m-room-thumbnail-container {
    width: 19%;
    margin-left: 0.5%;
    margin-right: 0.5%;
  }
}
.m-open-products-button {
  position: fixed;
  top: 50px;
  border: 1px solid #444;
  border-top: 0px solid #444;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  left: 50%;
  margin-left: -32px;
  width: 64px;
  height: 30px;
  padding-top: 2px;
  text-align: center;
  font-size: 24px;
  zzcolor: #444;
  color: white;
  zzbackground-color: white;
  background-color: rgba(84, 86, 81, 0.95);
  cursor: pointer;
}
.m-product-selector-container {
  position: fixed;
  margin-top: 50px;
  top: -100%;
  width: 100%;
  height: calc(100% - 50px);
  color: #444;
  background-color: rgba(84, 86, 81, 0.95);
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  /* Smooth scroll. */
  padding: 5px 15px 50px 15px;
  font-size: 0;
  /* Removes small gaps between divs. */
}
.m-product-selector-heading {
  font-size: 16px;
  margin: 10px 0 5px 0;
  color: white;
}
.m-select-paint-button {
  font-size: 20px;
  width: 100%;
  height: 40px;
  text-align: center;
  margin-top: 5px;
  margin-bottom: 5px;
  padding: 5px;
  border: 1px solid #444;
  background-color: white;
  cursor: pointer;
}
.m-select-paint-button i {
  zfloat: left;
  font-size: 24px;
  margin-top: 2px;
  zzbackground-color: yellow;
}
.m-select-paint-button span {
  display: inline-block;
  margin-left: 5px;
  margin-top: 4px;
  font-size: 20px;
  zzbackground-color: cyan;
}
.m-product-search-container {
  margin-top: 5px;
  position: relative;
  vertical-align: top;
}
.m-product-search-container input {
  margin-top: 5px;
  font-size: 16px;
  width: 100%;
  height: 40px;
  zztext-align: center;
  padding-left: 40px;
  padding-right: 40px;
  border: 1px solid #444;
  background-color: white;
  zzbackground-color: yellow;
}
.m-product-search-container .mm-magnifying-glass {
  position: absolute;
  left: 7px;
  top: 13px;
  font-size: 24px;
  zzbackground-color: cyan;
}
.m-product-search-container .mm-clear {
  position: absolute;
  right: 6px;
  top: 13px;
  font-size: 24px;
  zzbackground-color: cyan;
}
.m-toggle-recently-used-or-favourites {
  position: absolute;
  right: 5px;
  margin-top: 8px;
}
.m-toggle-recently-used-or-favourites i {
  display: block;
  font-size: 24px;
  color: white;
  zzbackground-color: yellow;
}
.m-toggle-recently-used-or-favourites i.mm-selected {
  color: #C55B21;
}
.m-product-recently-used-container {
  zzbackground-color: green;
}
.m-product-recently-used-inject {
  text-align: center;
  font-size: 0;
  /* Removes small gaps between divs. */
  width: 90%;
  zzbackground-color: red;
}
.m-product-thumbnail-recently-used-container {
  display: inline-block;
  zzwidth: 12.0%;
  width: 13.7%;
  zzborder: 1px solid #444;
  zzbackground-color: white;
  background-color: #444;
  margin-left: 0.25%;
  margin-right: 0.25%;
  cursor: pointer;
  zzbackground-color: yellow;
}
.m-product-thumbnail-recently-used-container.mm-selected {
  border: 3px solid #C55B21;
}
.m-product-thumbnail-recently-used-container .m-recently-used-product-image {
  float: left;
  width: 100%;
}
.m-product-thumbnail-recently-used-container .m-recently-used-product-background-image {
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  zzzbackground-size: 3232% 3232%;
  background-size: 3200% 3200%;
  background-repeat: no-repeat;
  clip-path: inset(1px 1px 1px 1px);
}
.m-product-favourites-container {
  zzbackground-color: blue;
}
.m-product-favourites-inject {
  text-align: center;
  font-size: 0;
  /* Removes small gaps between divs. */
  width: 90%;
  zzbackground-color: red;
}
.m-product-thumbnail-favourite-container {
  display: inline-block;
  zzwidth: 12.0%;
  width: 13.7%;
  zzborder: 1px solid #444;
  zzbackground-color: white;
  background-color: #444;
  margin-left: 0.25%;
  margin-right: 0.25%;
  cursor: pointer;
  zzbackground-color: yellow;
}
.m-product-thumbnail-favourite-container.mm-selected {
  border: 3px solid #C55B21;
}
.m-product-thumbnail-favourite-container .m-favourite-product-image {
  float: left;
  width: 100%;
}
.m-product-thumbnail-favourite-container .m-favourite-product-background-image {
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  zzzbackground-size: 3232% 3232%;
  background-size: 3200% 3200%;
  background-repeat: no-repeat;
  clip-path: inset(1px 1px 1px 1px);
}
.m-product-type-selector {
  font-size: 20px;
  width: 100%;
  height: 40px;
  padding: 5px;
  border: 1px solid #444;
  background-color: white;
  cursor: pointer;
}
.m-product-type-selector span {
  display: inline-block;
  margin-top: 2px;
  font-size: 20px;
  zzbackground-color: cyan;
}
.m-product-type-selector span b {
  font-size: 20px;
}
.m-product-type-selector i {
  float: right;
  font-size: 32px;
  margin-top: -2px;
  zzbackground-color: yellow;
}
.m-product-type {
  margin-top: -1px;
  font-size: 20px;
  width: 100%;
  height: 40px;
  padding: 5px;
  border: 1px solid #444;
  zzbackground-color: white;
  background-color: #f2f2f2;
}
.m-product-type span {
  display: inline-block;
  margin-top: 2px;
  font-size: 20px;
}
.m-product-type span {
  font-size: 20px;
}
.m-product-type span b {
  font-size: 20px;
}
.m-filters-open-close-selector {
  font-size: 20px;
  width: 100%;
  height: 40px;
  padding: 5px;
  text-align: center;
  border: 1px solid #444;
  background-color: white;
  cursor: pointer;
}
.m-filters-open-close-selector span {
  display: inline-block;
  margin-top: 2px;
  font-size: 20px;
  zzbackground-color: cyan;
}
.m-filters-open-close-selector span b {
  font-size: 20px;
}
.m-filters-open-close-selector i {
  float: right;
  font-size: 32px;
  margin-top: -2px;
  zzbackground-color: yellow;
}
.m-product-filter-selector {
  margin-top: 3px;
  font-size: 20px;
  margin-left: 2%;
  width: 96%;
  height: 40px;
  padding: 5px;
  text-align: center;
  border: 1px solid #444;
  background-color: white;
  cursor: pointer;
}
.aaaam-product-filter-title {
  margin-bottom: 0;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  width: 100%;
  height: 40px;
  padding-top: 7px;
  border: 1px solid #444;
  background-color: white;
}
.m-product-filter-selector span {
  display: inline-block;
  margin-top: 2px;
  font-size: 20px;
  zzbackground-color: cyan;
}
.m-product-filter-selector i {
  float: right;
  font-size: 32px;
  margin-top: -2px;
  zzbackground-color: yellow;
}
.m-product-filter-items {
  margin-bottom: 5px;
}
.m-product-filter-item {
  margin-top: -1px;
  margin-left: 2%;
  width: 96%;
  height: 40px;
  padding: 5px;
  border: 1px solid #444;
  background-color: #f2f2f2;
  cursor: pointer;
}
.m-product-filter-item-toggle {
  display: inline-block;
  width: 30px;
  height: 30px;
  border: 1px solid #444;
  padding-top: 3px;
  zzbackground-color: cyan;
}
.m-product-filter-item-on {
  font-size: 23px;
  margin-left: 3px;
  zzbackground-color: green;
}
.m-product-filter-item-text {
  font-size: 18px;
  line-height: 30px;
  margin-left: 10px;
  vertical-align: top;
  zzbackground-color: red;
}
.m-no-products-text {
  text-align: center;
  font-size: 16px;
  margin: 50px 0 5px 0;
  color: white;
}
.m-product-thumbnails-inject {
  font-size: 0;
  /* Removes small gaps between divs. */
}
.m-product-thumbnail-container {
  display: inline-block;
  width: 49%;
  vertical-align: top;
  border: 1px solid #444;
  background-color: white;
  margin-left: 0.5%;
  margin-right: 0.5%;
  margin-bottom: 1%;
  zzmin-height: 150px;
  cursor: pointer;
  zzbackground-color: cyan;
}
.m-4-thumbnails-in-row .m-product-thumbnail-container {
  width: 24%;
}
.m-more-thumbs .m-product-thumbnail-container {
  width: 32%;
}
.m-more-thumbs4 .m-product-thumbnail-container {
  width: 24%;
}
.m-product-thumbnail-container.mm-selected {
  border: 3px solid #C55B21;
}
.m-product-thumbnail-container .m-product-image {
  margin: 4% 4% 0 4%;
  width: 92%;
}
.m-product-thumbnail-container .m-product-background-image {
  margin: 4% 4% 0 4%;
  width: 92%;
  height: 0;
  padding-bottom: 92%;
  zzzbackground-size: 3232% 3232%;
  background-size: 3200% 3200%;
  background-repeat: no-repeat;
  clip-path: inset(1px 1px 1px 1px);
}
.m-more-thumbs-no-text .m-product-thumbnail-container .m-product-background-image {
  margin: 0;
  width: 100%;
  padding-bottom: 100%;
}
.m-product-thumbnail-container .m-product-text {
  margin-left: 4%;
  width: 92%;
  text-align: center;
  display: table;
  height: auto;
}
.m-more-thumbs-no-text .m-product-thumbnail-container .m-product-text {
  display: none;
}
.m-product-thumbnail-container .m-product-text p {
  padding-top: 3px;
  padding-bottom: 3px;
  display: table-cell;
  vertical-align: middle;
  zzfont-size: 12px;
  font-size: 10px;
  zzbackground-color: yellow;
}
.m-more-thumbs .m-product-thumbnail-container .m-product-text p {
  font-size: 10px;
}
.m-product-selector-close-container {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
}
.m-product-selector-close-background {
  zzdisplay: none;
  position: fixed;
  bottom: 0;
  width: 100%;
  zzzopacity: 0.55;
  background-color: rgba(84, 86, 81, 0.95);
  zzbackground-color: red;
  height: 48px;
  background: linear-gradient(to bottom, rgba(84, 86, 81, 0.2), #545651);
  pointer-events: none;
}
.m-product-selector-close-container i {
  position: fixed;
  bottom: 0px;
  width: 48px;
  height: 48px;
  left: 50%;
  margin-left: -24px;
  color: #444;
  padding: 8px;
  cursor: pointer;
  zzbackground-color: cyan;
}
@media screen and (orientation: landscape) {
  .m-product-thumbnail-container {
    width: 24%;
  }
  .m-product-thumbnail-container {
    zzzzzzzzwidth: 16.166%;
  }
  .m-toggle-recently-used-or-favourites i {
    font-size: 42px;
  }
}
.m-tablet .m-product-thumbnail-container {
  width: 19.5%;
  margin-left: 0.25%;
  margin-right: 0.25%;
  margin-bottom: 0.5%;
}
.m-tablet .m-toggle-recently-used-or-favourites {
  margin-top: 22px;
}
.m-tablet .m-toggle-recently-used-or-favourites i {
  font-size: 36px;
}
.m-desktop .m-product-selector-container {
  left: 15%;
  width: 70%;
}
.m-desktop .m-product-thumbnail-container {
  width: 16.166666%;
  margin-left: 0.25%;
  margin-right: 0.25%;
  margin-bottom: 0.5%;
}
.m-desktop .m-toggle-recently-used-or-favourites {
  margin-top: 25px;
}
.m-desktop .m-toggle-recently-used-or-favourites i {
  font-size: 36px;
}
.m-paint-selector-container {
  zzposition: absolute;
  top: -100%;
  position: fixed;
  margin-top: 50px;
  width: 100%;
  height: calc(100% - 50px);
  color: #444;
  background-color: rgba(84, 86, 81, 0.95);
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  /* Smooth scroll. */
  padding: 5px 15px 50px 15px;
  font-size: 0;
  /* Removes small gaps between divs. */
}
.m-paint-selector-heading {
  font-size: 16px;
  margin: 10px 0 5px 0;
  color: white;
}
.m-paint-thumbnails-inject {
  font-size: 0;
  /* Removes small gaps between divs. */
}
.m-paint-thumbnail {
  display: inline-block;
  width: 24%;
  height: 50px;
  border: 1px solid #444;
  margin-left: 0.5%;
  margin-right: 0.5%;
  margin-bottom: 1%;
  cursor: pointer;
}
.m-paint-selector-close-container {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
}
.m-paint-selector-close-background {
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: rgba(84, 86, 81, 0.95);
  height: 48px;
  background: linear-gradient(to bottom, rgba(84, 86, 81, 0.2), #545651);
  pointer-events: none;
}
.m-paint-selector-close-container i {
  position: fixed;
  bottom: 0px;
  width: 48px;
  height: 48px;
  left: 50%;
  margin-left: -24px;
  color: #444;
  padding: 8px;
  cursor: pointer;
  zzbackground-color: cyan;
}
.m-tablet .m-paint-thumbnail {
  width: 19.5%;
  margin-left: 0.25%;
  margin-right: 0.25%;
  margin-bottom: 0.5%;
}
@media screen and (orientation: landscape) {
  .m-paint-thumbnail {
    width: 24%;
  }
  .m-tablet .m-paint-thumbnail {
    width: 16.166%;
  }
}
.m-type-label-popup {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 5;
}
.m-type-label-popup-container {
  position: fixed;
  left: 50%;
  width: 300px;
  margin-left: -150px;
  top: 70px;
  padding: 10px;
  text-align: center;
  border: 1px solid #444;
  background-color: white;
  font-size: 0px;
}
.m-type-label-popup .mm-text {
  top: 280px;
  width: 100%;
  padding: 0px;
  font-size: 18px;
  margin-top: 0;
  margin-bottom: 10px;
  color: #444;
  zzbackground-color: yellow;
}
.m-label-search-container {
  margin-top: 5px;
  position: relative;
  width: 100%;
  vertical-align: top;
  zzbackground-color: cyan;
}
.m-label-search-container input {
  margin-top: 5px;
  font-size: 16px;
  width: 100%;
  height: 40px;
  text-align: center;
  padding-left: 40px;
  padding-right: 40px;
  border: 1px solid #444;
  background-color: white;
  zzbackground-color: yellow;
}
.m-label-search-container .mm-magnifying-glass {
  position: absolute;
  left: 7px;
  top: 13px;
  font-size: 24px;
  zzbackground-color: cyan;
}
.m-label-search-container .mm-clear {
  position: absolute;
  right: 6px;
  top: 13px;
  font-size: 24px;
  zzbackground-color: cyan;
}
.mm-recognised-sku-container {
  zwidth: 100%;
  margin-top: 10px;
  font-size: 0;
  zzbackground-color: yellow;
}
.m-type-label-popup .mm-typed-sku-image {
  width: 35px;
  margin-right: 10px;
  border: 1px solid #444;
}
.m-type-label-popup .mm-typed-sku-status {
  display: inline-block;
  vertical-align: top;
  margin-top: 8px;
  margin-bottom: 5px;
  font-size: 14px;
  color: #444;
  zzbackground-color: yellow;
}
.m-type-label-popup .mm-unrecognised-sku {
  color: red;
}
.m-type-label-popup button {
  font-size: 16px;
  margin-top: 10px;
  left: 10%;
  width: 80%;
  height: 40px;
  padding: 5px;
  border: 1px solid #444;
  background-color: #f2f2f2;
}
.m-type-label-popup .mm-close-button {
  text-align: center;
}
.m-type-label-popup .mm-close-button i {
  margin-top: 5px;
  width: 48px;
  height: 43px;
  color: #444;
  padding: 8px 8px 8px 8px;
  padding-top: 8px;
  zzbackground-color: cyan;
}
.m-tablet .m-product-thumbnail-container {
  width: 19.5%;
  margin-left: 0.25%;
  margin-right: 0.25%;
  margin-bottom: 0.5%;
}
@media screen and (orientation: landscape) {
  .m-type-label-popup-container {
    width: 500px;
    margin-left: -250px;
    top: 70px;
  }
}
.m-tools-container {
  position: fixed;
  margin-top: 50px;
  top: 0px;
  right: 0px;
  width: 99px;
  zzwidth: 51px;
  padding-bottom: 3px;
  text-align: right;
  background-color: rgba(0, 0, 0, 0.5);
}
.m-tool-button {
  float: left;
  right: 5px;
  width: 45px;
  height: 45px;
  text-align: center;
  margin-left: 3px;
  margin-top: 3px;
  background-color: #fff;
}
.m-tool-button:not(.mm-disabled) {
  cursor: pointer;
}
.m-tool-button.mm-wide {
  width: 93px;
  padding-top: 8px;
}
.m-tool-button.mm-disabled {
  opacity: 0.6;
}
.m-tool-button-icon {
  margin-top: 0px;
  padding: 6px 5px 4px 5px;
  font-size: 13px;
  color: #000;
}
.m-tool-button-text {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 8px;
  line-height: 9px;
  margin: 0;
  color: #000;
}
.m-tool-button.mm-wide .m-tool-button-icon {
  display: block;
  margin-top: 3px;
  padding: 0 5px 0 0;
}
.m-tool-button.mm-wide .m-tool-button-text {
  margin-top: 6px;
  zzbackground-color: red;
}
.m-uyo-tools {
  position: fixed;
  left: 50%;
  bottom: 10px;
  margin-left: -175px;
  width: 350px;
  text-align: center;
  font-size: 0;
  zzbackground-color: yellow;
}
.m-uyo-tool-button {
  display: inline-block;
  width: 50px;
  height: 50px;
  margin: 0 3px;
  text-align: left;
  border-radius: 25px;
  vertical-align: top;
  background-color: #444;
}
.m-uyo-tool-button-icon {
  margin-top: 3px;
  margin-left: 6px;
  font-size: 45px;
  color: #fff;
}
.m-uyo-tool-button.mm-finished-outlining .m-uyo-tool-button-icon {
  margin-top: 6px;
  margin-left: 5px;
  font-size: 40px;
}
.m-uyo-tool-button.mm-finished-adjusting-perspective .m-uyo-tool-button-icon {
  margin-top: 6px;
  margin-left: 5px;
  font-size: 40px;
}
.m-uyo-tool-button.mm-delete-outline .m-uyo-tool-button-icon {
  margin-top: 6px;
  margin-left: 10px;
  font-size: 36px;
}
.m-uyo-tool-button.mm-aborted-adjusting .m-uyo-tool-button-icon {
  margin-top: 6px;
  margin-left: 5px;
  font-size: 40px;
}
.m-uyo-tool-button.mm-adjusting-dimensions-a .m-uyo-tool-button-icon {
  margin-top: 8px;
  margin-left: 10px;
  font-size: 36px;
  color: #f00;
}
.m-uyo-tool-button.mm-adjusting-dimensions-b .m-uyo-tool-button-icon {
  margin-top: 8px;
  margin-left: 10px;
  font-size: 36px;
  color: #0f0;
}
.m-uyo-tool-button.mm-finished-adjusting-dimensions .m-uyo-tool-button-icon {
  margin-top: 6px;
  margin-left: 5px;
  font-size: 40px;
}
.m-tablet .m-tools-container {
  width: 149px;
}
.m-tablet .m-tool-button {
  width: 70px;
  height: 70px;
}
.m-tablet .m-tool-button.mm-wide {
  width: 143px;
  padding-top: 15px;
}
.m-tablet .m-tool-button-icon {
  margin-top: 0px;
  padding-top: 10px;
  padding-bottom: 8px;
  font-size: 20px;
}
.m-tablet .m-tool-button-text {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 12px;
  line-height: 13px;
  margin: 0;
}
.m-tablet .m-tool-button.mm-wide .m-tool-button-text {
  margin-top: 7px;
}
@media screen and (orientation: portrait) {
  .m-small-phone .m-uyo-tool-button {
    margin: 0 1px;
  }
}
.m-desktop .m-tools-container {
  width: 109px;
}
.m-desktop .m-tool-button {
  width: 50px;
  height: 50px;
}
.m-desktop .m-tool-button.mm-wide {
  width: 103px;
  padding-top: 15px;
}
.m-desktop .m-tool-button-icon {
  margin-top: 0px;
  padding-top: 7px;
  padding-bottom: 3px;
  font-size: 15px;
}
.m-desktop .m-tool-button-text {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 9px;
  line-height: 9px;
  margin: 0;
}
.m-desktop .m-tool-button.mm-wide {
  padding-top: 8px;
}
.m-desktop .m-tool-button.mm-wide .m-tool-button-icon {
  zzmargin-top: 0px;
  zzpadding-top: 0px;
}
.m-desktop .m-tool-button.mm-wide .m-tool-button-text {
  margin-top: 6px;
}
.mm-config-hughmackay.m-find-closest-retailer {
  position: fixed;
  right: 5px;
  bottom: 5px;
  text-align: center;
  font-size: 10px;
  color: white;
  padding: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  cursor: pointer;
}
.m-tablet .mm-config-hughmackay.m-find-closest-retailer {
  font-size: 14px;
}
.m-desktop .mm-config-hughmackay.m-find-closest-retailer {
  font-size: 16px;
}
.m-current-product-details {
  position: fixed;
  margin-top: 50px;
  left: 0px;
  top: 5px;
  border-radius: 0 7px 7px 0;
  width: 115px;
  text-align: center;
  padding: 5px;
  padding-bottom: 0;
  background-color: rgba(32, 32, 32, 0.7);
}
.m-current-product-details.mm-pano-room {
  margin-left: 35px;
}
.m-current-product-details p {
  margin-top: 0;
  margin-bottom: 3px;
  font-size: 10px;
  color: #fff;
}
.m-current-product-details p:nth-child(even) {
  margin-bottom: 5px;
}
.m-last-selected-product {
  position: fixed;
  left: 5px;
  top: 80px;
  width: 99px;
  height: 99px;
}
.m-last-selected-product img {
  position: absolute;
  clip: rect(0px, 99px, 99px, 0px);
}
.m-tablet .m-current-product-details {
  top: 40px;
  padding-left: 11px;
  width: 206px;
}
.m-tablet .m-current-product-details.mm-pano-room {
  top: 5px;
}
.m-tablet .m-current-product-details p {
  font-size: 12px;
}
.m-tablet .m-last-selected-product {
  top: 120px;
}
.m-tablet .m-last-selected-product img {
  clip: rect(0px, 150px, 150px, 0px);
}
.m-desktop .m-current-product-details {
  top: 40px;
  padding-left: 11px;
  width: 206px;
}
.m-desktop .m-current-product-details.mm-pano-room {
  top: 5px;
}
.m-desktop .m-current-product-details p {
  font-size: 12px;
}
.m-desktop .m-last-selected-product {
  top: 120px;
}
.m-desktop .m-last-selected-product img {
  zzclip: rect(0px, 150px, 150px, 0px);
  clip: rect(0px, 225px, 225px, 0px);
}
.m-landing-container {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: white;
  text-align: center;
  font-size: 0;
  /* Stop small inline gaps. */
}
.m-landing-content {
  padding-top: 80px;
}
.m-landing-title {
  font-size: 20px;
  color: #444;
  margin-top: 0;
}
.m-landing-button {
  display: inline-block;
  margin: 5px 5px 5px 5px;
  width: 45%;
  height: 105px;
  border: 1px solid #444;
  padding: 5px;
  text-align: center;
  vertical-align: top;
  background-color: #545651;
  cursor: pointer;
}
.m-landing-button-right {
  float: left;
  margin: 2% 5% 2% 5%;
}
.m-landing-button-icon {
  margin-top: 10px;
  padding: 6px 5px 4px 5px;
  font-size: 30px;
  color: #444;
  color: white;
  zzbackground-color: cyan;
}
.m-landing-button-text-container {
  position: relative;
  height: 36px;
  text-align: center;
  margin-top: 5px;
  zzbackground-color: cyan;
}
.m-landing-button-text {
  margin: 0;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  width: 100%;
  font-size: 16px;
  color: #444;
  color: white;
  zzbackground-color: yellow;
}
.m-landing-button-text.mm-smaller-text {
  font-size: 14px;
}
.m-desktop .m-landing-container .mm-take-room-photo {
  display: none;
}
.m-desktop .m-landing-container .mm-browse-photo-library {
  display: none;
}
.m-phone .m-landing-container .mm-browse-for-my-photo,
.m-tablet .m-landing-container .mm-browse-for-my-photo {
  display: none;
}
.m-tablet .m-landing-content {
  padding-top: 100px;
}
.m-tablet .m-landing-title {
  font-size: 30px;
}
.m-tablet .m-landing-button {
  height: 200px;
}
.m-tablet .m-landing-button-icon {
  margin-top: 30px;
  font-size: 60px;
}
.m-tablet .m-landing-button-text-container {
  margin-top: 30px;
}
.m-tablet .m-landing-button-text {
  font-size: 24px;
}
.m-tablet .m-landing-button-text.mm-smaller-text {
  font-size: 20px;
}
@media screen and (orientation: landscape) {
  .m-landing-button {
    width: 30%;
  }
  .m-phone .m-landing-content {
    padding-top: 60px;
  }
  .m-phone .m-landing-title {
    margin-bottom: 5px;
  }
}
.m-desktop .m-landing-content {
  padding-top: 150px;
}
.m-desktop .m-landing-button {
  width: 170px;
}
.v-print-pdf {
  text-align: center;
  margin: 20px;
}
.m-export-pdf-header {
  width: 100%;
  margin-bottom: 10px;
}
.m-export-pdf-header img {
  width: 30%;
}
.m-export-pdf-room-image {
  max-width: 100%;
  max-height: 65%;
  zzmax-height: 75%;
  margin-bottom: 10px;
}
.m-export-pdf-product-details {
  width: 100%;
  color: #444;
  text-align: center;
  font-size: 0;
  zzbackground-color: cyan;
}
.m-export-pdf-product-details .mm-column {
  zzwidth: 100%;
  display: inline-block;
  text-align: center;
  zzpadding-left: 10px;
  zzpadding-right: 10px;
  vertical-align: top;
  zzbackground-color: yellow;
}
.m-export-pdf-product-details .mm-column:nth-of-type(1) {
  left: 25%;
  width: 24%;
  padding-right: 1%;
}
.m-export-pdf-product-details .mm-column:nth-of-type(2) {
  padding-left: 1%;
  width: 49%;
}
.m-export-pdf-product-thumbnail {
  height: 140px;
}
.m-export-pdf-product-details .mm-text {
  margin-bottom: 12px;
  zzbackground-color: cyan;
}
.m-export-pdf-product-details p {
  margin-top: 0px;
  margin-bottom: 4px;
  font-size: 20px;
  line-height: 21px;
  color: #444;
  zzbackground-color: yellow;
}
.m-save-photo-popup {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 5;
}
.m-save-photo-popup-container {
  position: fixed;
  left: 50%;
  width: 300px;
  margin-left: -150px;
  top: 90px;
  padding: 0px;
  text-align: center;
  border: 1px solid #444;
  background-color: white;
}
.m-save-photo-container {
  position: relative;
  margin-top: 10px;
  margin-left: 75px;
  margin-left: auto;
  margin-right: auto;
  width: 150px;
  height: 150px;
}
.m-save-photo-popup-container img {
  position: absolute;
  margin: auto;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  max-width: 100%;
  max-height: 100%;
  border: 1px solid #444;
  zzzpointer-events: none;
}
.m-save-photo-popup-container p {
  margin: 0;
  padding: 10px;
  font-size: 16px;
  color: #444;
  zzbackground-color: yellow;
}
.m-save-photo-popup-container p b {
  font-size: 16px;
}
.m-save-photo-popup-container button {
  font-size: 16px;
  margin-top: 10px;
  margin-bottom: 10px;
  left: 10%;
  width: 80%;
  height: 40px;
  padding: 5px;
  border: 1px solid #444;
  border-radius: 8px;
  background-color: #f2f2f2;
}
@media screen and (orientation: landscape) {
  .m-phone .m-save-photo-popup-container {
    width: 500px;
    margin-left: -250px;
    top: 60px;
  }
  .m-phone .m-save-photo-container {
    width: 100px;
    height: 100px;
  }
  .m-phone .m-save-photo-popup-container p {
    font-size: 12px;
  }
  .m-phone .m-save-photo-popup-container p b {
    font-size: 12px;
  }
}
.m-editing-tools-popup {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 5;
}
.m-editing-tools-popup-container {
  position: fixed;
  left: 50%;
  width: 350px;
  margin-left: -175px;
  top: 90px;
  padding: 10px;
  text-align: center;
  border: 1px solid #444;
  background-color: white;
}
.m-editing-tools-popup .aaaaamm-container {
  padding: 30px 10px 0px 10px;
}
.m-editing-tools-popup .mm-title {
  margin-top: 0px;
  margin-bottom: 0px;
  font-size: 16px;
  font-weight: bold;
  color: #444;
  zzbackground-color: yellow;
}
.m-editing-tools-popup .mm-heading {
  text-align: left;
  font-size: 14px;
  margin-top: 10px;
  margin-bottom: 5px;
  font-weight: bold;
  color: #444;
  zzbackground-color: yellow;
}
.m-editing-tools-popup .mm-text {
  margin-top: 0px;
  margin-bottom: 5px;
  text-align: left;
  font-size: 12px;
  color: #444;
  zzbackground-color: yellow;
}
.m-editing-tools-popup .mm-editing-tools-buttons {
  font-size: 0;
  margin-top: 10px;
  margin-bottom: 10px;
}
.m-editing-tools-popup .mm-editing-tools-button {
  display: inline-block;
  width: 120px;
  margin: 5px 8px;
  text-align: center;
  height: 50px;
  zzbackground-color: rgba(84, 86, 81, 0.95);
  background-color: #f4f4f4;
  border: 2px solid rgba(84, 86, 81, 0.95);
  border-radius: 8px;
  cursor: pointer;
}
.m-editing-tools-popup .mm-button-icon {
  margin-top: 6px;
  zmargin-left: 6px;
  font-size: 20px;
  zzbackground-color: yellow;
}
.m-editing-tools-popup .mm-button-text {
  margin-top: 5px;
  font-size: 10px;
  font-weight: bold;
  color: black;
  zzbackground-color: cyan;
}
.m-editing-tools-popup .mm-close-button {
  clear: both;
  text-align: center;
  zzbackground-color: blue;
}
.m-editing-tools-popup .mm-close-button i {
  margin-top: 0px;
  width: 48px;
  height: 48px;
  color: #444;
  padding: 8px;
  cursor: pointer;
  zzbackground-color: cyan;
}
@media screen and (orientation: portrait) {
  .m-small-phone .m-editing-tools-popup .m-editing-tools-popup-container {
    width: 300px;
    margin-left: -150px;
    top: 60px;
    padding: 5px;
  }
  .m-small-phone .m-editing-tools-popup .mm-title {
    font-size: 15px;
  }
  .m-small-phone .m-editing-tools-popup .mm-heading {
    font-size: 13px;
  }
  .m-small-phone .m-editing-tools-popup .mm-text {
    font-size: 11px;
  }
}
@media screen and (orientation: landscape) {
  .m-phone .m-editing-tools-popup .m-editing-tools-popup-container {
    width: 98%;
    margin-left: -49%;
    top: 60px;
    padding: 5px;
  }
  .m-phone .m-editing-tools-popup .mm-title {
    font-size: 13px;
  }
  .m-phone .m-editing-tools-popup .mm-heading {
    font-size: 11px;
    margin-top: 5px;
    margin-bottom: 2px;
  }
  .m-phone .m-editing-tools-popup .mm-text {
    font-size: 9px;
  }
  .m-phone .m-editing-tools-popup .mm-editing-tools-buttons {
    margin-top: 5px;
    margin-bottom: 0px;
  }
}
.m-before-take-photo-popup {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 5;
}
.m-before-take-photo-popup-container {
  position: fixed;
  left: 50%;
  width: 300px;
  margin-left: -150px;
  top: 90px;
  padding: 10px;
  text-align: center;
  border: 1px solid #444;
  background-color: white;
}
.m-before-take-photo-popup-container .mm-title {
  margin: 0;
  padding: 10px;
  font-size: 16px;
  color: #444;
  zzbackground-color: yellow;
}
.m-before-take-photo-popup-container ul {
  text-align: left;
}
.m-before-take-photo-popup-container .mm-text {
  margin-left: 30px;
  font-size: 15px;
  color: #444;
  zbackground-color: yellow;
}
.m-before-take-photo-popup-container button {
  font-size: 16px;
  margin-top: 15px;
  margin-bottom: 10px;
  zzleft: 10%;
  width: 150px;
  height: 40px;
  padding: 5px;
  border: 1px solid #444;
  border-radius: 8px;
  background-color: #f2f2f2;
}
.m-before-take-photo-popup-container .mm-close-button {
  text-align: center;
  zpadding-bottom: 15px;
  zbackground-color: cyan;
}
.m-before-take-photo-popup-container .mm-close-button i {
  margin-top: 0px;
  zwidth: 48px;
  zheight: 43px;
  color: #444;
  padding: 8px 8px 8px 8px;
  zbackground-color: yellow;
}
@media screen and (orientation: landscape) {
  .m-phone .m-before-take-photo-popup-container {
    width: 500px;
    margin-left: -250px;
    top: 60px;
  }
  .m-phone .m-before-take-photo-container {
    width: 100px;
    height: 100px;
  }
  .m-phone .m-before-take-photo-popup-container p {
    font-size: 12px;
  }
  .m-phone .m-before-take-photo-popup-container p b {
    font-size: 12px;
  }
}
.m-export-popup {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 5;
}
.m-export-popup-container {
  position: fixed;
  left: 50%;
  width: 300px;
  margin-left: -150px;
  top: 90px;
  padding: 15px;
  text-align: center;
  border: 1px solid #444;
  background-color: white;
}
.m-export-popup-container .mm-title {
  margin-top: 0;
  zzpadding: 10px;
  font-size: 16px;
  color: #444;
  zzbackground-color: yellow;
}
.m-export-popup-container ul {
  text-align: left;
}
.m-export-popup-container .mm-text {
  margin-top: 0;
  font-size: 15px;
  color: #444;
  zbackground-color: yellow;
}
.m-export-popup-container button {
  font-size: 16px;
  zmargin-top: 15px;
  margin-bottom: 10px;
  width: 200px;
  height: 40px;
  padding: 5px;
  border: 1px solid #444;
  border-radius: 8px;
  background-color: #f2f2f2;
}
.m-export-popup-container .mm-close-button {
  text-align: center;
  zpadding-bottom: 15px;
  zbackground-color: cyan;
}
.m-export-popup-container .mm-close-button i {
  margin-top: 0px;
  zwidth: 48px;
  zheight: 43px;
  color: #444;
  padding: 8px 8px 8px 8px;
  zbackground-color: yellow;
}
@media screen and (orientation: landscape) {
  .m-phone .m-export-popup-container {
    width: 500px;
    margin-left: -250px;
    top: 60px;
  }
  .m-phone .m-export-container {
    width: 100px;
    height: 100px;
  }
  .m-phone .m-export-popup-container p {
    font-size: 12px;
  }
  .m-phone .m-export-popup-container p b {
    font-size: 12px;
  }
}
.m-scan-qr-code-popup {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 5;
}
.m-scan-qr-code-popup .mm-container {
  position: fixed;
  left: 50%;
  width: 700px;
  margin-left: -350px;
  top: 90px;
  padding: 10px 20px;
  text-align: center;
  border: 1px solid #444;
  background-color: white;
}
.m-scan-qr-code-popup .mm-title {
  padding: 0px;
  font-size: 18px;
  font-weight: bold;
  color: #444;
  zzbackground-color: yellow;
}
.m-scan-qr-code-popup .mm-text,
.m-scan-qr-code-popup .mm-text b {
  line-height: 17px;
  font-size: 16px;
  color: #444;
  zzbackground-color: yellow;
}
.m-scan-qr-code-popup .mm-left {
  text-align: left;
}
.m-scan-qr-code-popup .mm-text,
.m-scan-qr-code-popup .mm-text span {
  font-size: 16px;
}
.m-scan-qr-code-popup .mm-waiting,
.m-scan-qr-code-popup .mm-found {
  margin-top: 10px;
}
.m-scan-qr-code-popup .mm-waiting {
  color: red;
}
.m-scan-qr-code-popup .mm-found i {
  color: green;
}
.m-scan-qr-code-popup .mm-qr-code-container img {
  margin-left: 35%;
  width: 30%;
}
.m-scan-qr-code-popup .mm-button {
  font-size: 16px;
  zmargin-top: 15px;
  margin-bottom: 10px;
  zzleft: 10%;
  width: 150px;
  height: 40px;
  padding: 5px;
  border: 1px solid #444;
  border-radius: 8px;
  background-color: #f2f2f2;
}
.m-scan-qr-code-popup .mm-close-button {
  text-align: center;
  zpadding-bottom: 15px;
  zbackground-color: cyan;
}
.m-scan-qr-code-popup .mm-close-button i {
  margin-top: 0px;
  zwidth: 48px;
  zheight: 43px;
  color: #444;
  padding: 8px 8px 8px 8px;
  zbackground-color: yellow;
}
.m-before-after-viewer {
  position: absolute;
  left: 0;
  top: 50px;
  width: 0px;
  height: calc(100% - 50px);
  text-align: center;
  zzbackground-color: green;
}
.m-before-after-viewer .mm-divider {
  position: absolute;
  left: 38px;
  top: 0px;
  zztop: 50px;
  display: inline-block;
  font-size: 15px;
  border: 0 solid #444;
  border-width: 0 2px 0 2px;
  width: 6px;
  zzheight: 100%;
  background-color: white;
}
.m-before-after-viewer .mm-slider {
  position: absolute;
  top: 0;
  left: 100px;
  display: inline-block;
  width: 50px;
  height: 50px;
  border-radius: 48px;
  border: 2px solid #444;
  cursor: pointer;
  text-align: center;
  background-color: white;
}
.m-before-after-viewer .mm-slider i {
  font-size: 28px;
  color: #444;
  margin-top: 10px;
  zzbackground-color: yellow;
}
.m-before-after-viewer .mm-slider.mm-locked-so-nearly-hide {
  opacity: 0.001;
  zzopacity: 0.5;
}
.m-before-after-viewer .mm-divider.mm-locked-so-nearly-hide {
  opacity: 0.001;
  zzopacity: 0.5;
}
.m-before-after-viewer .mm-locked .mm-slider {
  position: fixed;
  margin-top: 50px;
  left: 0px;
  top: 400px;
  width: 28px;
  border-radius: 0 48px  48px 0;
  border-left: 0px solid #444;
  text-align: left;
  zzbackground-color: red;
}
.m-before-after-viewer .mm-locked .mm-slider i {
  margin-left: 5px;
}
.m-before-after-viewer .mm-locked .mm-divider {
  position: fixed;
  left: 0px;
  top: 0px;
  height: 9999px;
  zzbackground-color: red;
}
.m-before-after-viewer .mm-before-after-product-details {
  position: absolute;
  margin-left: 4px;
  top: 40px;
  border-radius: 0 7px 7px 0;
  width: 200px;
  text-align: center;
  padding: 5px;
  padding-bottom: 0;
  background-color: rgba(32, 32, 32, 0.7);
}
.m-before-after-viewer .mm-before-after-product-details.mm-before {
  margin-left: -202px;
  border-radius: 7px 0 0 7px;
}
.m-before-after-viewer .mm-before-after-product-details p {
  margin-top: 0;
  margin-bottom: 3px;
  font-size: 10px;
  color: #fff;
}
.m-before-after-viewer .mm-before-after-product-details p:nth-child(even) {
  margin-bottom: 5px;
}
.m-before-after-viewer .mm-slider-help {
  position: absolute;
  top: -5px;
  left: 26px;
  zzbackground-color: red;
}
.m-before-after-viewer .mm-slider-help i {
  width: 100%;
  font-size: 40px;
  color: rgba(84, 86, 81, 0.95);
  -text-stroke: 1px #444;
  -webkit-text-stroke: 1px #444;
  zzbackground-color: yellow;
}
.m-before-after-viewer .mm-slider-help p {
  position: absolute;
  padding: 6px 3px 6px 3px;
  border: 1px solid #444;
  border-radius: 10px;
  font-size: 14px;
  margin-left: 43px;
  margin-top: -42px;
  text-align: center;
  color: white;
  width: 84px;
  background-color: #545651;
}
.m-tablet .m-before-after-viewer .mm-before-after-product-details {
  width: 200px;
}
.m-tablet .m-before-after-viewer .mm-before-after-product-details p {
  font-size: 12px;
}
.m-desktop .m-before-after-viewer .mm-before-after-product-details {
  width: 200px;
}
.m-desktop .m-before-after-viewer .mm-before-after-product-details p {
  font-size: 12px;
}
.m-floor-not-found-popup {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 5;
}
.m-floor-not-found-popup .mm-container {
  position: fixed;
  left: 50%;
  width: 320px;
  margin-left: -160px;
  top: 100px;
  padding: 10px;
  padding-bottom: 5px;
  text-align: center;
  border: 1px solid #444;
  background-color: white;
}
.m-floor-not-found-popup .mm-canvas {
  margin-top: 5px;
  height: 100px;
}
.m-floor-not-found-popup .mm-text {
  margin-left: 30px;
  font-size: 15px;
  color: #444;
  zbackground-color: yellow;
}
.m-floor-not-found-popup button {
  font-size: 16px;
  margin-top: 0px;
  margin-bottom: 0px;
  width: 200px;
  height: 40px;
  padding: 5px;
  border: 1px solid #444;
  border-radius: 8px;
  background-color: #f2f2f2;
}
.m-floor-not-found-popup .mm-close-button {
  margin-top: 5px;
  text-align: center;
  zpadding-bottom: 15px;
  zbackground-color: cyan;
}
.m-floor-not-found-popup .mm-close-button i {
  margin-top: 0px;
  color: #444;
  padding: 8px 8px 8px 8px;
  zbackground-color: yellow;
}
.m-quick-selector {
  position: fixed;
  margin-top: 50px;
  left: 0;
  top: 0;
  width: 100%;
  color: #444;
  -webkit-overflow-scrolling: touch;
  /* Smooth scroll. */
  font-size: 0;
  background-color: rgba(84, 86, 81, 0.95);
  border-bottom: 1px solid #444;
}
.m-quick-selector .mm-container {
  text-align: center;
  zzbackground-color: yellow;
}
.m-quick-selector .mm-close-button {
  position: absolute;
  right: 0px;
  top: 0px;
  padding: 7px 10px;
  zzfont-size: 22px;
  font-size: 25px;
  color: white;
  cursor: pointer;
  zzbackground-color: grey;
}
.m-quick-selector .mm-go-to-product-text {
  position: absolute;
  right: 40px;
  top: 45px;
  font-size: 13px;
  margin-top: 10px;
  color: white;
  cursor: pointer;
  zzbackground-color: grey;
}
.m-quick-selector .mm-go-to-product-button {
  position: absolute;
  right: 0px;
  top: 43px;
  padding: 7px 8px;
  zzfont-size: 22px;
  font-size: 25px;
  color: white;
  cursor: pointer;
  zzbackground-color: grey;
}
.m-quick-selector .mm-heading {
  font-size: 13px;
  margin-top: 5px;
  margin-bottom: 0;
  color: white;
}
.m-quick-selector .mm-room-thumbnails-container {
  padding-top: 5px;
  height: 50px;
  margin-left: 40px;
  margin-right: 40px;
  font-size: 0;
  overflow-y: hidden;
  zzbackground-color: magenta;
}
.m-quick-selector .mm-room-thumbnail-container {
  position: relative;
  display: inline-block;
  height: 100%;
  margin: 0 3px;
  vertical-align: top;
  border: 1px solid #444;
  zzbackground-color: white;
  cursor: pointer;
  font-size: 0;
  zzbackground-color: cyan;
}
.m-quick-selector .mm-room-thumbnail-container img {
  height: 100%;
}
.m-quick-selector .mm-room-thumbnail-container.mm-uyo img {
  background-color: #ddd;
}
.m-quick-selector .mm-product-thumbnails-container {
  margin-top: 5px;
  margin-bottom: 5px;
  height: 50px;
  font-size: 0;
  overflow-y: hidden;
  zzbackground-color: green;
}
.m-quick-selector .mm-product-thumbnail-container {
  display: inline-block;
  width: 50px;
  height: 50px;
  vertical-align: top;
  margin: 0 3px;
  border: 1px solid #444;
  cursor: pointer;
  font-size: 0;
}
.m-quick-selector .mm-product-thumbnail-background-image {
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  background-size: 3200% 3200%;
  background-repeat: no-repeat;
  zzclip-path: inset(1px 1px 1px 1px);
  zzborder: 2px solid #444;
}
.m-phone .m-quick-selector .mm-go-to-product-text {
  display: none;
}
/*
.mm-close-container
{
position: fixed;
left: 0;
right: 0;
bottom: 0;
text-align: center;
}

.mm-close-background
{
position: fixed;
bottom: 0;
width: 100%;
zzzopacity: 0.55;
background-color: @product-selector-bg-colour;
zzbackground-color: red;
height: 48px;
background: linear-gradient(to bottom, fade(@branding-bg-colour, 20%),fade(@branding-bg-colour, 100%));
pointer-events: none;
}

.mm-close-container i
{
position: fixed;
bottom: 0px;
width: 48px;
height: 48px;
left: 50%;
margin-left: -24px;
color: @product-selector-text-colour;
padding: 8px;
zzbackground-color: cyan;
}
*/
/*
.m-tablet
{

.m-room-thumbnail-container
{
width: 24%;
margin-left: 0.5%;
margin-right: 0.5%;
}

}

@media screen and (orientation:landscape)
{

.m-room-thumbnail-container
{
width: 24%;
margin-left: 0.5%;
margin-right: 0.5%;
}

.m-tablet
{

.m-room-thumbnail-container
{
width: 19%;
margin-left: 0.5%;
margin-right: 0.5%;
}

}

}
*/
.m-uyo-options-popup {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 5;
}
.m-uyo-options-popup .mm-container {
  position: fixed;
  left: 50%;
  width: 300px;
  margin-left: -150px;
  top: 90px;
  padding: 10px 20px;
  text-align: center;
  border: 1px solid #444;
  background-color: white;
}
.m-uyo-options-popup .mm-button {
  font-size: 16px;
  margin-top: 0px;
  margin-bottom: 10px;
  zzmargin-bottom: 10px;
  width: 200px;
  height: 40px;
  padding: 5px;
  border: 1px solid #444;
  border-radius: 8px;
  background-color: #f2f2f2;
}
.m-uyo-options-popup .mm-title {
  margin-top: 10px;
  margin-bottom: 10px;
  padding: 0px;
  font-size: 17px;
  font-weight: bold;
  color: #444;
  zzbackground-color: yellow;
}
.m-uyo-options-popup .mm-text,
.m-uyo-options-popup .mm-text b {
  line-height: 17px;
  font-size: 15px;
  color: #444;
  zzbackground-color: yellow;
}
.m-uyo-options-popup .mm-close-button {
  text-align: center;
  zpadding-bottom: 15px;
  zbackground-color: cyan;
}
.m-uyo-options-popup .mm-close-button i {
  margin-top: 0px;
  zwidth: 48px;
  zheight: 43px;
  font-size: 30px;
  color: #444;
  padding: 8px 8px 8px 8px;
  zbackground-color: yellow;
}
.m-desktop .m-uyo-options-popup .mm-take-room-photo {
  display: none;
}
.m-desktop .m-uyo-options-popup .mm-browse-photo-library {
  display: none;
}
.m-phone .m-uyo-options-popup .mm-browse-for-my-photo,
.m-tablet .m-uyo-options-popup .mm-browse-for-my-photo {
  display: none;
}
.m-phone .m-uyo-options-popup .mm-qr-transfer-from-phone,
.m-tablet .m-uyo-options-popup .mm-qr-transfer-from-phone {
  display: none;
}
.m-header {
  border-bottom: 1px solid #435363;
  background-color: #545651;
}
.m-header .mm-menu-button,
.m-header .mm-tools-button {
  color: white;
}
