@import url(https://fonts.googleapis.com/css?family=Montserrat:200,300,300i,400,400i,500,600,700);
/* Fonts first*/
body, p, h1, h2, h3, h4, h5, span, button {
  font-family: "Montserrat";
}

/*css vars ALWAYS next*/
:root {
  /** Configurable colors */
  --mxt-corner-roundness: 6px;
  /* must be rgb, not hex, but without the parentheses so we can apply an opacity within it
     for example, 255,255,255 NOT rgb(255,255,255)*/
  --mxt-client-primary-rgb:0,0,0;
  /* must be rgb, not hex, but without the parentheses so we can apply an opacity within it
     for example, 255,255,255 NOT rgb(255,255,255)*/
  --mxt-client-secondary-rgb:0,0,0;
  /* must be rgb, not hex, but without the parentheses so we can apply an opacity within it
     for example, 255,255,255 NOT rgb(255,255,255)*/
  --mxt-client-drop-shadow-rgb:0,0,0;
  --mxt-cta-button-drop-shadow:0 1px 0 0 var(--mxt-client-drop-shadow), 0 0 2px 1px rgba(0, 0, 0, 0.05);
  --mxt-cta-button-border-thickness:0px;
  --mxt-cta-button-border-color:#C1C1C1;
  --mxt-cta-button-font-color:#FFFFFF;
  --mxt-non-cta-button-drop-shadow:var(--mxt-dark-drop-shadow);
  --mxt-non-cta-button-border-thickness:0px;
  --mxt-non-cta-button-border-color:#C1C1C1;
  --mxt-non-cta-button-background-color:#FFFFFF;
  --mxt-non-cta-button-font-color:#666666;
  --mxt-toolbelt-btn-drop-shadow:var(--mxt-dark-drop-shadow);
  --mxt-toolbelt-btn-border-thickness:0px;
  --mxt-toolbelt-btn-border-color:#C1C1C1;
  --mxt-toolbelt-btn-background-color:#FFFFFF;
  --mxt-toolbelt-btn-font-color:#666666;
  --mxt-nav-control-drop-shadow:var(--mxt-dark-drop-shadow);
  --mxt-nav-control-border-thickness:0px;
  --mxt-nav-control-border-color:#C1C1C1;
  --mxt-nav-control-background-color:#FFFFFF;
  --mxt-nav-control-font-color:#666666;
  --mxt-nav-control-primary-background-color:var(--primary-right-gradient);
  --mxt-nav-control-primary-font-color:var(--mxt-cta-button-font-color);
  --mxt-action-menu-drop-shadow:var(--mxt-dark-drop-shadow);
  --mxt-action-menu-border-thickness:0px;
  --mxt-action-menu-border-color:#C1C1C1;
  --mxt-action-menu-background-color:#FFFFFF;
  --mxt-action-menu-font-color:#666666;
  --mxt-tooltip-drop-shadow:var(--mxt-dark-drop-shadow);
  --mxt-tooltip-border-thickness:0px;
  --mxt-tooltip-border-color:#C1C1C1;
  --mxt-tooltip-font-color:#666666;
  --mxt-toolbar-background-color:#FFFFFF;
  --mxt-toolbar-button-color: #F5F5F5;
  --mxt-toolbar-font-color:#666666;
  --mxt-toolbar-divider-color:#D8D8D8;
  --mxt-toolbar-cta-button-color:#5C5C5C;
  --mxt-toolbar-cta-font-color:#FFFFFF;
  --mxt-toolbar-cta-divider-color:#4C4C4C;
  --mxt-tooltip-drop-shadow:0 1px 0 0 var(--mxt-client-drop-shadow), 0 0 2px 1px rgba(0, 0, 0, 0.05);
  --mxt-tooltip-border-thickness:0px;
  --mxt-tooltip-border-color:#C1C1C1;
  --mxt-tooltip-font-color:#FFFFFF;
  --mxt-login-register-hero: 'url("")';
  --style-grid-image-size-sm: 50px;
  --style-grid-image-size-md: 60px;
  --style-grid-image-size-lg: 70px;
  /** Non configurable colors**/
  --mxt-dark-drop-shadow:0 1px 1px 0 rgba(0, 0, 0, 0.2), 0 0 2px 1px rgba(0, 0, 0, 0.05);
  --mxt-client-primary:rgb(var(--mxt-client-primary-rgb));
  --mxt-client-drop-shadow:rgb(var(--mxt-client-drop-shadow-rgb));
  --mxt-client-secondary:rgb(var(--mxt-client-secondary-rgb));
  --primary-right-gradient: linear-gradient(to right, var(--mxt-client-primary), var(--mxt-client-secondary));
  --primary-top-gradient: linear-gradient(to top, var(--mxt-client-primary), var(--mxt-client-secondary));
  --fancy-rotate-overlay-color: #2aace2;
  /*in edge, cannot use space evenly, must use space around; https://developer.microsoft.com/en-us/microsoft-edge/platform/issues/15947692/ */
  --space-evenly: space-evenly;
  --mxt-action-menu-item-width:70px;
  --mxt-toolbar-width: 135px;
  --toggle-blue-rgb: 79,193,223;
  /*#4fc1df*/
  --toggle-blue: rgb(var(--toggle-blue-rgb));
  --mxt-primary-logo-width: 300px;
}

/* Edge only */
@supports (-ms-accelerator: true) {
  :root {
    --space-evenly: space-around;
  }
}
/* then the rest of the modules*/
html {
  -ms-overflow-style: -ms-autohiding-scrollbar;
}

::selection {
  background: var(--mxt-client-primary);
  /* WebKit/Blink Browsers */
  color: #FFFFFF;
  /* WebKit/Blink Browsers */
}

::-moz-selection {
  background: var(--mxt-client-primary);
  /* Gecko Browsers */
  color: #FFFFFF;
  /* Gecko Browsers */
}

.tip {
  margin: 15px 0px;
}

select {
  width: 100%;
  text-align: center;
  height: 50px;
  margin-bottom: 25px;
  text-align-last: center;
}

/* BELOW ARE FOR THE SOCIAL PLUGINS*/

.client-logo {
  width: 100%;
  padding: 50px 50px;
  background-color: white;
  border-bottom: 1px solid rgba(89, 90, 92, 0.25);
  position: relative;
}

#mainMenuUsername {
  bottom: 10px;
  color: #666666;
  opacity: 0.5;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.controls-menu-logo {
  min-width: 200px;
  background-size: contain;
}

.help-block {
  font-size: 11px;
  display: block;
  margin-top: 5px;
  margin-bottom: 10px;
  color: #737373;
}

#main-menu-logo {
  min-width: 200px;
  background-size: contain;
  height: 70px;
}

/* Added for exiting out of Fancy Rotate and other modes */
.mxt-btn.toolbelt-close-mode {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  height: 30px;
  line-height: 30px;
}

#toolbelt-close-mode-x.mxt-btn.toolbelt-close-mode {
  width: 30px;
  min-width: inherit;
  border-radius: 50%;
  font-weight: bold;
}

#css-overrides .close:focus,
.close:hover {
  color: #fff;
  filter: alpha(opacity=100);
  opacity: 1;
}

.drawer-footer {
  position: relative;
  width: 100%;
  left: 0px;
  margin-top: 10px;
}

#about-button {
  display: block;
  margin: auto;
  color: rgba(89, 90, 92, 0.5);
  font-weight: bold;
}

.drawer-menu-icon {
  width: 40px;
  height: 40px;
  position: absolute;
  left: 25px;
}

.drawer-menu-label {
  position: absolute;
  left: 70px;
}

#about-header {
  padding-top: 50px;
  position: absolute;
  top: 0%;
  left: 50%;
  transform: translate(-50%, 0%);
  width: 395px;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}

.about-build-info {
  font-size: 12px;
  display: flex;
  justify-content: center;
}

#about-marxent-disclaimer {
  margin-top: 50px;
  color: #666666;
}

#about-marxent-disclaimer.marxent-disclaimer a:visited {
  color: #666666;
}

#about-marxent-disclaimer.marxent-disclaimer a {
  color: #666666;
}

.marxent-disclaimer a {
  color: white;
  text-decoration: none;
}

.marxent-disclaimer a:visited {
  color: white;
}

.sidePanel.sidePanelCollapsed {
  width: 0px !important;
  visibility: hidden;
  position: absolute;
}

.sidePanel {
  visibility: visible;
  background: #f7f7f7;
  position: relative;
  height: 100%;
  overflow: auto;
  display: flex;
  flex-flow: column;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.sidePanelTopBar {
  display: flex;
  top: 0px;
  right: 0px;
  position: relative;
  margin-top: 20px;
  margin-left: 20px;
  margin-right: 20px;
  z-index: 10;
}

.navRightButtons {
  margin-left: auto;
  display: flex;
  justify-content: var(--space-evenly);
}

.sidePanelPane {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 0px 20px;
}

.sidePanelHeaderRow {
  padding: 15px 0px 0px;
}

.sidePanelContent {
  height: 100%;
  display: flex;
  flex-flow: column;
}

.sidePanelHeader {
  text-align: center;
  padding: 10px;
  border-bottom: 2px solid lightgray;
  width: 50%;
  font-weight: bold;
  color: #666666;
  margin-top: 5px;
  margin-bottom: 20px;
  font-size: 18px;
}

p.sidePanelSubheader {
  font-weight: bold;
  color: #666666;
}

#navigationPanels {
  z-index: 1000;
  /*places in front of views (unless we have > 1000 views...)*/
  transition: none;
  position: relative;
}

.navigationPanelUnanimated {
  transition: none;
}

#mainMenu ul li {
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  cursor: pointer;
  color: #595a5c;
  font-weight: 600;
  border-bottom: 1px solid rgba(216, 216, 216, 0.1);
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  height: 60px;
  border-bottom: 1px solid rgba(89, 90, 92, 0.25);
  display: flex;
  align-items: center;
}

#mainMenu ul li:hover {
  background-color: white;
}

.guidancePrompt {
  position: absolute;
  z-index: 1001;
  text-align: center;
  color: white;
  opacity: 0.9;
  min-width: 350px;
  min-height: 150px;
  border-radius: var(--mxt-corner-roundness);
  background-image: var(--primary-right-gradient) !important;
  padding: 5px;
}

.guidancePromptBottom {
  -moz-animation: bounceVertical 2s infinite;
  -webkit-animation: bounceVertical 2s infinite;
  animation: bounceVertical 2s infinite;
}

.guidancePromptBottom::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  margin-left: -10px;
  border-width: 10px;
  border-style: solid;
  transform: translateY(100%);
  border-color: var(--mxt-client-primary) transparent transparent transparent;
}

@keyframes bounceVertical {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}
@keyframes bounceHorizontal {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-15px);
  }
}
#wallModeGuidancePrompt {
  bottom: 50px;
  left: -122px;
}
@keyframes pulse {
  0% {
    -moz-box-shadow: 0 0 0 0 rgba(253, 155, 39, 0.4);
    box-shadow: 0 0 0 0 rgba(253, 155, 39, 0.4);
  }
  70% {
    -moz-box-shadow: 0 0 0 20px rgba(253, 155, 39, 0);
    box-shadow: 0 0 0 20px rgba(253, 155, 39, 0);
  }
  100% {
    -moz-box-shadow: 0 0 0 0 rgba(253, 155, 39, 0);
    box-shadow: 0 0 0 0 rgba(253, 155, 39, 0);
  }
}
textarea {
  resize: none;
}

/* basic landing page css */
#landingPage {
  z-index: 100001;
  overflow: auto;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
  display: flex;
  flex-flow: column;
}

#home-main-content {
  z-index: 1;
  display: block;
  max-width: 1000px;
  margin: auto;
  padding: 0px 20px;
  padding-bottom: 3px;
}

#home-main-content #errors {
  visibility: visible;
  color: white;
  pointer-events: all;
  text-align: center;
}

.callToAction {
  color: white;
  font-weight: 600;
  margin-bottom: 25px;
  text-shadow: 0px 0px 15px black;
}

.landing-footer {
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translate(-50%, 0%);
}

.copyrightHr {
  margin-top: 25px;
  border-color: rgba(249, 249, 249, 0.25);
  border-width: 3px;
  border-radius: 2px;
}

.poweredByMarxent {
  color: white;
  opacity: 0.75;
  margin: 40px 0px;
  text-shadow: 0px 0px 15px black;
}

div.landing-header {
  /* margin-bottom: 50px; */
  text-align: center;
  padding-top: 50px;
  overflow: hidden;
  width: auto;
}

.incompatibleUserAgent {
  display: none;
  color: white;
}

.browserIcon {
  float: left;
  width: 100px;
  display: none;
  padding: 15px;
  background: none;
  border: none;
}

.browserIcon img {
  margin-bottom: 10px;
}

#browserIconParent {
  display: inline-block;
}

#landing-start-button {
  width: 300px;
  display: block;
  margin: auto;
  height: 44px;
}

div#landing-start-catalog-not-loaded {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

#landing-welcome-text {
  text-align: center;
}

#landing-page-header {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex: 0 0 200px;
  height: 200px;
  z-index: 1;
  top: 0px;
  width: 100%;
}

#landing-page-header-right {
  flex-direction: row-reverse;
}

#landing-page-header.white-background {
  height: 90px;
  flex: 0 0 90px;
  background: white;
}

.mxt-btn.landing-page-header-button img {
  position: relative;
  width: 25px;
  margin-right: 10px;
  margin-left: 15px;
}

.landing-page-header-sidediv {
  display: flex;
  z-index: 1;
  align-items: center;
}

.main-primary-logo-container {
  display: flex;
  flex: 1;
  max-height: 160px;
  justify-content: center;
}

#landing-page-header.white-background .main-primary-logo-container {
  max-height: 72px;
}

#main-primary-logo {
  display: flex;
  margin-bottom: 0px;
  width: var(--mxt-primary-logo-width);
}

#userProfileButton {
  margin-left: 25px;
}

#lookupProjectByEmailButton {
  right: 25px;
}

.img-center {
  margin: 0px auto !important;
  display: block !important;
}

#copyright {
  color: rgba(249, 249, 249, 0.5);
  margin-bottom: 25px;
}

.mxtFloorInstructions {
  font-size: 11px;
  font-weight: 500;
  color: #9e9e9e;
  margin-left: 15px;
}

#navigationPanelResize {
  position: absolute;
  right: -20px;
  bottom: 20px;
  z-index: 1000;
  cursor: pointer;
}

#navigationPanelResize img {
  transition: all 0.3s ease;
  transform: rotate(0deg);
}

#navigationPanelResize.navigationPanelResizeRotate img {
  transform: rotate(180deg);
}

@media (max-width: 900px) {
  .landing-page-header-sidediv {
    width: 85px;
  }

  /*hide the user profile text on mobile and just show button*/
  .mxt-btn.landing-page-header-button span {
    display: none;
  }

  .mxt-btn.landing-page-header-button {
    min-width: 40px;
  }

  .mxt-btn.landing-page-header-button img {
    margin: 0px;
  }
}
@media (min-width: 900px) {
  .landing-page-header-sidediv {
    width: 350px;
  }
}
#landing-page-logout {
  color: var(--toggle-blue);
  cursor: pointer;
  margin-left: 10px;
}

html,
body {
  height: 100%;
  margin: 0px;
  padding: 0px;
  overflow: hidden;
}

#designer-container {
  position: relative;
  overflow: hidden;
  padding: 0px !important;
  height: 100%;
  width: 100%;
  display: flex;
}

#designer {
  width: 100%;
  position: relative;
  /* background-color: grey; */
  height: 100%;
  flex: 1 1 auto;
  user-select: none;
  /* cannot select anything by default in renderer container*/
  box-shadow: 0 0 200px rgba(0, 0, 0, 0.5) inset;
}

@media screen and (max-width: 1200px) {
  #designer {
    box-shadow: 0 0 150px rgba(0, 0, 0, 0.5) inset;
  }
}
@media screen and (max-width: 600px) {
  #designer {
    box-shadow: 0 0 75px rgba(0, 0, 0, 0.5) inset;
  }
}
/* renderer WebGL Canvas */
#mxt-canvas {
  width: 100%;
  height: 100%;
  cursor: inherit;
}

/* renderer WebGL GameContainer Div */
#gameContainer {
  overflow: hidden;
  height: 100%;
  visibility: hidden;
  background: #646464 !important;
  position: absolute;
  left: 0px;
  width: 100%;
}

.view-loading-dimmed {
  background: rgba(0, 0, 0, 0.2);
  z-index: 3000 !important;
}

.view-loading-component {
  background: white;
  border-radius: var(--mxt-corner-roundness);
  color: #666666;
  padding: 10px;
  z-index: 3001 !important;
}

.view-loading-spinner {
  position: absolute;
  height: 40px;
  top: 50%;
  transform: translateY(-50%);
  left: 0px;
}

.view-loading-text {
  margin: 0px;
  position: relative;
  margin-left: 30px;
}

.help-component {
  background: var(--primary-right-gradient);
  border-radius: var(--mxt-corner-roundness);
  color: white;
  padding: 3px;
  max-width: 300px;
}

.help-component-border {
  border: 1px dashed #dddddd;
  border-radius: var(--mxt-corner-roundness);
  display: flex;
  position: relative;
}

.help-component-div {
  position: relative;
  padding: 5px;
}

.help-component-div > * {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

.help-component-text {
  margin: 0px;
}

.help-component-close {
  position: absolute;
  right: -8px;
  top: -8px;
  background: rgba(200, 200, 200, 0.9);
  width: 24px;
  padding: 6px;
  border-radius: 12px;
  cursor: pointer;
}

#renderer-toolbelt {
  position: absolute;
  right: 30px;
  bottom: 30px;
}

.renderer-toolbelt-container {
  z-index: 4;
  position: absolute;
  bottom: 0px;
  right: 0px;
  outline: none;
}

.renderer-toolbelt-options-container.renderer-toolbelt-options-container-labels-on {
  right: 130px;
}

.renderer-toolbelt-options-container {
  bottom: 12px;
  position: absolute;
  right: 100px;
  width: 300px;
  background: white;
  border-radius: var(--mxt-corner-roundness);
  padding: 20px 40px;
  border: 1px solid #dedede;
  z-index: 4;
}

.renderer-toolbelt-options-container.left {
  right: inherit;
  left: 15px;
}

.renderer-toolbelt-options-container.center-text {
  text-align: center;
}

.renderer-toolbelt-options-container.renderer-toolbelt-options-container-labels-on:after, .renderer-toolbelt-options-container.renderer-toolbelt-options-container-labels-on:before {
  top: calc(100% - 175px);
}

.renderer-toolbelt-options-container:after, .renderer-toolbelt-options-container:before {
  left: 100%;
  top: calc(100% - 125px);
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}

.renderer-toolbelt-options-container.left:after, .renderer-toolbelt-options-container.left:before {
  left: -28px;
}

.renderer-toolbelt-options-container > hr {
  margin-top: 10px;
  margin-bottom: 10px;
}

.renderer-toolbelt-options-container:after {
  border-color: rgba(136, 183, 213, 0);
  border-left-color: white;
  border-width: 15px;
  margin-top: -15px;
}

.renderer-toolbelt-options-container.left:after {
  border-right-color: white;
  border-left-color: transparent;
  border-width: 15px;
  margin-top: inherit;
  margin-bottom: -15px;
}

.renderer-toolbelt-options-container:before {
  border-color: rgba(222, 222, 222, 0);
  border-left-color: #dedede;
  border-width: 16px;
  margin-top: -16px;
}

.renderer-toolbelt-options-container.left:before {
  border-right-color: #dedede;
  border-left-color: transparent;
  border-width: 14px;
  margin-top: 1px;
  margin-bottom: -14px;
}

p.renderer-toolbelt-options-header {
  font-size: 11px;
  font-weight: 500;
  color: #666666;
}

.renderer-toolbelt-options-group {
  display: inline-flex;
  margin-bottom: 30px;
  height: 44px;
  line-height: 44px;
  border-radius: 6px;
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.2), 0 0 2px 1px rgba(0, 0, 0, 0.05);
  position: relative;
  width: auto;
  align-items: center;
}

.renderer-toolbelt-options-color-group {
  display: flex;
  margin-bottom: 10px;
  height: 44px;
  line-height: 44px;
  position: relative;
  width: auto;
  align-items: center;
  justify-content: space-around;
}

.renderer-toolbelt-options-opt.renderer-toolbelt-options-active {
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.2), 0 0 2px 1px rgba(0, 0, 0, 0.05);
  background-color: #4fc1df;
  color: white;
}

.renderer-toolbelt-options-opt {
  min-width: 55px;
  height: 40px;
  border-radius: 6px;
  text-align: center;
  font-size: 11px;
  font-weight: bold;
  color: #666666;
  padding: 0px 8px;
  cursor: pointer;
}

.renderer-toolbelt-options-color-opt.renderer-toolbelt-options-active {
  border: solid 2px #4ccfff;
}

.renderer-toolbelt-options-color-opt {
  width: 38px;
  height: 38px;
  border: solid 1px #adadad;
  border-radius: 19px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.renderer-toolbelt-options-color-opt:hover {
  width: 40px;
  height: 40px;
  border-radius: 20px;
}

.renderer-toolbelt-options-opt:hover {
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.2), 0 0 2px 1px rgba(0, 0, 0, 0.05);
}

/*
Fancy rotate styles
*/
.fancy-rotator {
  position: absolute;
  z-index: 1000;
}

.fancy-rotator circle {
  stroke: white;
  fill: none;
}

.fancy-rotator circle.drag-circle {
  stroke-opacity: 0.5;
}

.fancy-rotator circle.drag-circle.outer {
  stroke-opacity: 0.7;
}

.fancy-rotator circle.drag-handle {
  fill: white;
  fill-opacity: 1;
}

.fancy-rotator .drag-progress {
  stroke: var(--fancy-rotate-overlay-color);
}

.fancy-rotator line {
  stroke: white;
}

.mxt-btn.fancy-rotate-close {
  position: absolute;
  top: -20px;
  right: -20px;
  min-width: inherit;
  border-radius: 50%;
}

.toolbelt-mode-overlay {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: 2000;
}

.toolbelt-mode-overlay button {
  margin-left: 30px;
}

.toolbelt-mode-overlay .mode-label {
  width: 100%;
  line-height: 46px;
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.2), 0 0 2px 1px rgba(0, 0, 0, 0.05);
  background-color: rgba(255, 255, 255, 0.8);
  text-align: center;
  font-weight: bold;
  color: var(--mxt-toolbar-font-color);
}

.toolbelt-mode-overlay .mode-label .closeButton {
  top: 8px;
  right: 10px;
}

.mxtPricingRunningTotal {
  position: absolute;
  bottom: 20px;
  left: 20px;
  padding: 5px 25px;
  background: white;
  color: var(--mxt-toolbar-font-color);
  border-radius: var(--mxt-corner-roundness);
  box-shadow: var(--mxt-dark-drop-shadow);
  font-size: 11px;
  text-align: center;
}

.mxtPricingRunningTotal .mxtPricingRunningTotalValue {
  font-weight: bold;
}

.mxtPricingRunningTotal.side-panel-open {
  left: 30px;
}

.dimension-line-pip {
  position: absolute;
  bottom: -100px;
  padding: 3px 8px;
  z-index: 2;
  background: white;
  color: var(--mxt-toolbar-font-color);
  border-radius: var(--mxt-corner-roundness);
  box-shadow: var(--mxt-dark-drop-shadow);
  font-weight: bold;
}

.dimension-line-pip.dimension-line-pip-clickable {
  cursor: pointer;
}

.dimension-line-pip.no-text {
  padding: 7px;
  border-radius: 50%;
  pointer-events: all;
}

.dimension-line-pip.no-text .pip-text {
  display: none;
}

.dimension-line-pip.no-text:hover {
  padding: 3px 8px;
  border-radius: var(--mxt-corner-roundness);
}

.dimension-line-pip.no-text:hover .pip-text {
  display: block;
}

.mxt-popover.mxt-compose-input-measurement-popover {
  max-width: none;
  padding: 20px;
}

.mxt-compose-input-measurement-carousel-div {
  display: flex;
  align-items: center;
  width: 155px;
  margin-bottom: 15px;
  justify-content: center;
}

.mxt-compose-input-measurement-apply-div {
  display: flex;
  justify-content: center;
}

/*animations*/
@keyframes pop {
  0% {
    transform: scale(0);
  }
  80% {
    transform: scale(1.25);
  }
  100% {
    transform: scale(1);
  }
}
.flex-vertical-center {
  display: flex;
  flex-flow: column;
  justify-content: center;
}

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

.no-padding {
  padding: 0px !important;
}

.header {
  height: 200px;
  color: var(--white);
}

.content {
  background-color: #333;
  color: #666;
}

.container, .container-fluid {
  overflow-x: hidden;
}

.container .row {
  margin-left: 0px;
  margin-right: 0px;
}

.container-fluid .row {
  margin-left: 0px;
  margin-right: 0px;
}

/** TODO deprecate these centered guys and move to using flexbox */
.both-absolute-centered {
  left: 50% !important;
  top: 50% !important;
  position: absolute !important;
  transform: translate(-50%, -50%) !important;
}

.horizontal-absolute-centered {
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
}

.both-relative-centered {
  left: 50%;
  top: 50%;
  position: relative;
  transform: translate(-50%, -50%);
}

.horizontal-relative-centered {
  left: 50%;
  position: relative;
  transform: translateX(-50%);
}

.vertical-relative-centered {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

/** END deprecate these centered guys and move to using flexbox */
.hoverBox:hover {
  opacity: 0.9;
}

.hoverBox {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
  background: var(--toggle-blue);
  top: 0%;
  color: white;
  text-align: center;
}

.hoverBox h5, .hoverBox h4, .hoverBox h3, .hoverBox h2, .hoverBox h1, .hoverBox p {
  margin: 0px;
  width: 100%;
  font-size: 0.8vw;
  padding: 3px;
}

#hidden-menu {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 99999999;
  background: white;
  padding: 50px;
  box-shadow: 2px 0px 4px 4px #c8c8c8;
}

.adminPanelButton {
  background: var(--mxt-client-primary);
  color: #FFFFFF;
  padding: 10px;
  display: block;
  margin: auto;
  margin-bottom: 10px;
}

.adminPanelButton.inactive {
  opacity: 0.5;
}

p {
  margin-bottom: 0.3em;
}

.designProcessCategoryOptions {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.designProcessProductCurrentContainer {
  background: #FFFFFF;
  width: 100%;
  display: flex;
  margin-top: 10px;
  margin-bottom: 10px;
  height: 128px;
}

.designProcessProductCurrentContainer.designProcessProductCurrentContainerSmall {
  height: 60px;
}

.designProcessProductCurrentContainer .designProcessProductCurrent {
  flex: 0 0 128px;
  width: 128px;
}

.designProcessProductCurrentContainer.designProcessProductCurrentContainerSmall .designProcessProductCurrent {
  flex: 0 0 60px;
  width: 60px;
}

.designProcessProductCurrentHeader {
  flex: 1;
  text-align: left;
  position: relative;
  padding: 12px;
  color: #666666;
}

.currentProductTitle {
  font-size: 13px;
  font-weight: bold;
}

.currentProductSubtitle {
  font-size: 11px;
  font-weight: 500;
}

.designProcessGridItem {
  background: white;
}

.designProcessGridItemCable {
  background: white;
  border: solid 1px #ebebeb;
}

.designProcessGridTitleDiv {
  flex: 0;
  margin-top: 10px;
  /*use margin, not top, as flex doesnt handle top offsets well w/ sizing*/
  position: relative;
  padding: 0 5px;
}

.designProcessGridItemCable .designProcessGridTitle {
  font-size: 11px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: left;
}

.designProcessGridTitle {
  color: var(--mxt-action-menu-font-color);
  font-weight: 500;
  margin: 0px;
}

.designProcessGridSubtitle {
  color: var(--mxt-action-menu-font-color);
  font-size: 11px;
  margin: 0px;
}

.designProcessGridFooterDiv {
  height: 30px;
  line-height: 30px;
  text-align: left;
  padding: 0 5px;
}

.designProcessGridFooterDiv .designProcessGridPrice {
  font-weight: bold;
  font-size: 12px;
  color: var(--mxt-action-menu-font-color);
}

.designProcessGrid .designProcessGridItemCable .mxt-grid-item-content .mxt-grid-item-bg-img,
.designProcessGridRecent .designProcessGridItemCable .mxt-grid-item-content .mxt-grid-item-bg-img {
  min-height: 148px;
}

.designProcessGrid .mxt-grid-item-content .mxt-grid-item-bg-img,
.designProcessGridRecent .mxt-grid-item-content .mxt-grid-item-bg-img {
  padding: 0 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mxt-grid-item-content .mxt-grid-item-actions {
  position: absolute;
  top: 0;
  right: 0;
}

.mxt-grid-item-content .mxt-grid-item-actions img {
  height: 30px;
  width: 30px;
  cursor: pointer;
}

.designProcessGrid .mxt-grid-item-content,
.designProcessGridRecent .mxt-grid-item-content {
  padding: 5px;
}

.designProcessGrid .mxt-grid-item-content.designProcessCurrentItem,
.designProcessGridRecent .mxt-grid-item-content.designProcessCurrentItem {
  padding: 0px;
}

.designProcessCurrentItem {
  border-color: var(--toggle-blue);
  border-style: solid;
  border-width: 5px !important;
  border-image-slice: 1;
}

.skuResolutionOptionsData {
  width: 225px;
  padding-bottom: 10px;
  text-align: center;
  cursor: default;
}

.skuResolutionOptionsData .skuResolutionOptionsDataList {
  max-height: 215px;
  overflow: auto;
}

.skuResolutionOptionsData .skuResolutionOptionsDataHeader {
  padding: 20px 0;
  font-weight: bold;
  border-bottom: 1px solid var(--mxt-toolbar-divider-color);
}

.skuResolutionOptionsContainer {
  position: relative;
  flex: 0 0 45px;
  bottom: 0px;
  margin: 10px -5px -5px -5px;
  border-top: 1px solid var(--mxt-toolbar-button-color);
}

.skuResolutionOptionsContainer:hover {
  background-color: var(--mxt-toolbar-button-color);
}

.skuResolutionOptionsContainer.no-options:hover {
  background-color: inherit;
}

.skuResolutionOptions {
  width: 100%;
}

.skuResolutionOptions:hover {
  color: #666666;
}

.skuResolutionOption {
  font-weight: bold;
  padding: 10px 40px;
  border-bottom: 1px solid var(--mxt-toolbar-divider-color);
  cursor: pointer;
  user-select: none;
  bottom: 0px;
  text-align: left;
}

.skuResolutionOption:hover {
  background-color: var(--mxt-toolbar-button-color);
}

.skuResolutionOption:last-child {
  border-bottom: none;
}

.skuResolutionOptionsHeader {
  display: flex;
  width: 100%;
  padding: 0 30px;
  font-weight: bold;
  background-color: transparent;
  color: var(--toggle-blue);
  cursor: pointer;
}

.skuResolutionOptionsHeader.open {
  background-color: var(--toggle-blue);
  color: white;
}

.skuResolutionOptionsContainer.no-options .skuResolutionOptionsHeader {
  cursor: inherit;
}

p.skuResolutionOptionsText {
  font-size: 12px;
  user-select: none;
  line-height: 45px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  flex: 1;
  margin-bottom: 0;
}

.skuResolutionOptionsMore {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 1s ease;
}

.skuResolutionOptionsMore.skuResolutionOptionsMoreRotated {
  transform: rotate(180deg) translateY(50%);
}

.designProcessSubcategory {
  cursor: pointer;
  margin-right: 5px;
  background: #FFFFFF;
  position: relative;
}

.styleProductGrid {
  gap: 5px 5px;
}

.sku-resolution-modal {
  z-index: 1000 !important;
}

.sku-resolution-modal ~ .mxt-product-panel-content .mxt-grid-item-hover {
  box-shadow: none;
  z-index: inherit;
}

@media screen and (max-width: 800px) {
  .designProcessImageScaled {
    width: var(--style-grid-image-size-sm);
    height: var(--style-grid-image-size-sm);
  }

  .designProcessImageScaled .hoverBox h5, .hoverBox h4, .hoverBox h3, .hoverBox h2, .hoverBox h1, .hoverBox p {
    font-size: 1vw;
  }

  .styleProductGrid {
    grid-template-columns: repeat(auto-fit, var(--style-grid-image-size-sm));
  }
}
@media screen and (min-width: 800px) and (max-width: 1200px) {
  .designProcessImageScaled {
    width: var(--style-grid-image-size-md);
    height: var(--style-grid-image-size-md);
  }

  .designProcessImageScaled .hoverBox h5, .hoverBox h4, .hoverBox h3, .hoverBox h2, .hoverBox h1, .hoverBox p {
    font-size: 0.9vw;
  }

  .styleProductGrid {
    grid-template-columns: repeat(auto-fit, var(--style-grid-image-size-md));
  }
}
@media screen and (min-width: 1200px) {
  .designProcessImageScaled {
    width: var(--style-grid-image-size-lg);
    height: var(--style-grid-image-size-lg);
  }

  .designProcessImageScaled .hoverBox h5, .hoverBox h4, .hoverBox h3, .hoverBox h2, .hoverBox h1, .hoverBox p {
    font-size: 0.8vw;
  }

  .styleProductGrid {
    grid-template-columns: repeat(auto-fit, var(--style-grid-image-size-lg));
  }
}
@media screen and (min-width: 1500px) {
  .designProcessImageScaled .hoverBox h5, .hoverBox h4, .hoverBox h3, .hoverBox h2, .hoverBox h1, .hoverBox p {
    font-size: 0.7vw;
  }
}
@media screen and (min-width: 1700px) {
  .designProcessImageScaled .hoverBox h5, .hoverBox h4, .hoverBox h3, .hoverBox h2, .hoverBox h1, .hoverBox p {
    font-size: 0.6vw;
  }
}
@media screen and (min-width: 2000px) {
  .designProcessImageScaled .hoverBox h5, .hoverBox h4, .hoverBox h3, .hoverBox h2, .hoverBox h1, .hoverBox p {
    font-size: 0.5vw;
  }
}
@media screen and (min-width: 2400px) {
  .designProcessImageScaled .hoverBox h5, .hoverBox h4, .hoverBox h3, .hoverBox h2, .hoverBox h1, .hoverBox p {
    font-size: 0.4vw;
  }
}
.designProcessImage {
  background: #FFFFFF;
}

.designProcessSearchDiv {
  position: relative;
  flex: 1;
  padding: 0px 10px;
}

.designProcessSearchIcon {
  position: absolute;
  left: 15px;
  top: 5px;
}

.designProcessSearch {
  width: 100%;
  height: 40px;
  border: none;
  box-shadow: 0px 1px 2px 0 rgba(0, 0, 0, 0.2);
  padding-left: 40px;
  min-width: 120px;
}

.designProcessSearch:focus {
  outline: none;
}

.sidePanelPane > .designProcessGrid.mxt-grid-container {
  width: calc(100% - 40px);
}

.designProcessGrid.mxt-grid-container {
  height: 100%;
}

.mxt-product-panel-content {
  position: relative;
  flex: 1;
  overflow-y: auto;
}

.mxt-product-panel-content .sidePanelPane {
  height: auto;
}

.mxt-product-panel-content .designProcessGrid:last-child {
  padding-bottom: 20px;
}

.mxt-product-panel-content .mxt-grid {
  padding-bottom: 20px;
}

.mxt-product-panel-content.mxt-product-panel-content-selected {
  display: flex;
  flex-flow: column;
  overflow-y: hidden;
}

.mxt-product-panel-content.mxt-product-panel-content-selected .mxt-product-panel-product-sections {
  flex: 1;
  overflow-y: auto;
}

.designProcessGridContainer {
  position: relative;
  overflow: hidden;
}

.designProcessFilters {
  margin: 0px 20px 15px;
  display: flex;
  justify-content: start;
  flex-wrap: wrap;
}

span.searchQueryText {
  font-style: italic;
}

.designProcessFilterList {
  margin: 13px 20px 10px;
  display: flex;
}

.designProcessUsedFilters {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
}

.designProcessClearAllFilters {
  color: var(--toggle-blue);
  cursor: pointer;
  margin-top: 3px;
}

.product-filter-option-selected {
  font-size: 12px;
  color: white;
  height: 26px;
  border-radius: 13px;
  background-color: #cfcfcf;
  padding: 5px 5px;
  margin: 0px 5px 5px;
}

span.product-filter-option-selected-x {
  cursor: pointer;
  padding: 0px 5px;
}

span.product-filter-option-selected-val {
  padding: 0px 15px 0px 5px;
}

.designProcessBack * {
  pointer-events: none;
}

.mxt-product-panel-header-text-row {
  display: flex;
  height: 32px;
  margin: 30px 25px;
  align-items: center;
  border-bottom: 2px solid lightgray;
  padding-bottom: 10px;
  justify-content: center;
}

.mxt-product-panel-header-text {
  font-size: 22px;
  font-weight: bold;
  color: #666666;
  margin-left: 5px;
}

.mxt-product-panel-header {
  flex: 0;
  position: relative;
}

.mxt-accordian.mxt-recents-section-header {
  font-weight: 600;
  font-size: 13px;
}

.mxt-category-browse-grid-item .mxt-grid-item-text {
  font-size: 11px;
  font-weight: 500;
}

#sharing-screen {
  background: rgba(0, 0, 0, 0.3);
  z-index: 10000;
}

#sharing-image-modal {
  width: 60%;
  background: rgba(242, 242, 242, 0.95);
  height: 85%;
}

#sharing-image-modal-content {
  display: flex;
  flex-flow: column;
  height: 100%;
  overflow: auto;
}

div#sharing-close {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.8);
  top: -20px;
  right: -20px;
  position: absolute;
  border-radius: 50%;
  cursor: pointer;
  z-index: 1;
}

.sharing-modal-text {
  font-weight: 500;
  text-align: center;
  color: #666666;
}

.sharing-back-button {
  position: absolute !important;
  top: 15px;
  left: 15px;
}

p#sharing-modal-header {
  font-size: 22px;
  font-weight: 600;
  margin-top: 30px;
}

div#sharing-modal-copy-link {
  width: 140px;
}

.sharing-copy-link-modal input {
  font-weight: normal;
}

.gallery-container {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  margin-top: 20px;
  height: 100%;
  overflow: hidden;
}

.gallery-container .tab-controller {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.gallery-container .tab-headers {
  display: flex;
  padding: 0 20px;
  margin-bottom: -1px;
  text-align: center;
}

.gallery-container .tab-headers .tab-header {
  flex-grow: 1;
  height: 50px;
  line-height: 50px;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  cursor: pointer;
  color: var(--mxt-toolbar-font-color);
  background-color: #EAEAEA;
  font-weight: bold;
  transition: all 0.3s ease;
}

.gallery-container .tab-headers .tab-header:hover {
  background-color: #FFF;
}

.gallery-container .tab-headers .tab-header.active {
  background-color: #FFF;
  box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.21);
}

.gallery-container .tab-content {
  flex-grow: 1;
  height: 100%;
  overflow-y: auto;
  padding: 10px 20px 20px 20px;
  background-color: #FFF;
}

.gallery-container .tab-content .status-message {
  padding: 20px 0;
  text-align: center;
}

.gallery-container .mxt-grid-container {
  position: relative;
}

.gallery-container .tab-content .mxt-grid-item {
  height: 125px;
  margin: 4px 8px;
  border: solid 1px #c1c1c1;
}

.gallery-container .tab-content .mxt-grid-item:only-child {
  position: absolute;
  height: 100%;
  width: 100%;
  margin: 0;
}

.gallery-container .tab-content .mxt-grid-item:first-child:nth-last-child(2),
.gallery-container .tab-content .mxt-grid-item:first-child:nth-last-child(2) ~ .mxt-grid-item {
  height: 200px;
}

.gallery-container .tab-content .mxt-grid-item .mxt-hover-over-image {
  display: flex;
  opacity: 0;
  transition: all 0.25s ease-in-out;
}

.gallery-container .tab-content .mxt-grid-item:hover .mxt-hover-over-image {
  opacity: 1;
  flex-direction: column;
  color: white;
}

.gallery-container .tab-content .mxt-grid-item:hover .mxt-hover-over-image.linkable {
  cursor: pointer;
}

.gallery-container .tab-content .mxt-grid-item .mxt-hover-over-image h4 {
  font-size: 14px;
  margin: 8px 0;
}

.gallery-container .tab-content-section {
  height: 100%;
}

.gallery-container .tab-content-section .tab-content-body {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.gallery-container .tab-content-section .mxt-grid-container {
  margin-bottom: 30px;
  flex-grow: 1;
}

.gallery-container .tab-content-section .mxt-grid-container .mxt-grid {
  height: 100%;
  grid-template-rows: min-content 1fr;
}

.gallery-container .tab-content-section .tab-content-actions {
  margin-top: auto;
}

.gallery-container .tab-content-section .tab-content-actions .mxt-btn {
  min-width: 215px;
}

.gallery-container .tab-content-section .status-message {
  flex-grow: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 25px 35px;
  color: var(--mxt-non-cta-button-font-color);
  border: solid 1px #C1C1C1;
  background: rgba(242, 242, 242, 0.95);
}

.gallery-container .tab-content-section .status-message:not(.hidden) ~ .mxt-grid-container {
  flex-grow: inherit;
}

.gallery-container .screenshot-detail {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.gallery-container .screenshot-detail .screenshot-image-container {
  overflow: auto;
  text-align: center;
}

.gallery-container .screenshot-detail .screenshot-image-container img {
  display: inline-block;
}

.gallery-container .screenshot-detail .screenshot-detail-footer {
  flex-grow: 1;
  padding-bottom: 10px;
  background: white;
  text-align: center;
  color: var(--mxt-non-cta-button-font-color);
}

.gallery-container .screenshot-detail .project-metadata {
  display: flex;
  flex-direction: row;
  padding: 10px 10px 20px 10px;
  font-size: 11px;
}

.gallery-container .screenshot-detail .project-metadata .project-date {
  margin-left: auto;
}

.gallery-container .screenshot-detail .sharing-options {
  display: flex;
  justify-content: var(--space-evenly);
  margin-top: 15px;
  padding: 0 50px;
  margin-bottom: 20px;
}

.gallery-container .sharing-options .mxt-btn {
  flex-grow: 1;
  height: 35px;
  margin: 0 5px;
}

/* Top camera controls */
#cameraManagerParent {
  position: absolute;
  top: 25px;
  z-index: 1;
  right: 20px;
  display: flex;
}

.toolbelt-mode-overlay:not(.hidden) ~ #cameraManagerParent {
  top: 65px;
}

#cameraControlsContainer.camera-submode #walkCameraButton {
  border-top-right-radius: var(--mxt-corner-roundness);
  border-bottom-right-radius: var(--mxt-corner-roundness);
}

#wallModeButtonsContainer {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translate(-50%, 0%);
  width: 100%;
}

.toolbelt-mode-overlay:not(.hidden) ~ #wallModeButtonsContainer {
  bottom: 80px;
}

/* Wall Mode Left / Right Camera Controls */
#wallModeButtons {
  position: absolute;
  background: rgba(255, 255, 255, 0.8);
  height: 35px;
  width: 105px;
  z-index: 1000;
  border-radius: var(--mxt-corner-roundness);
  padding: 3px 8px;
  display: block;
  margin: auto;
  position: relative;
  background: white;
}

.wallModeButtonIcon {
  width: 20px;
}

.wallModeButton {
  padding: 5px 0px;
  float: left;
}

#wallModeLeftButton {
  margin-left: 8px;
}

#walkCameraExitButton {
  position: absolute;
  top: 25px;
  right: 25px;
  width: 40px;
  height: 40px;
  border-radius: 20px;
  overflow: hidden;
  z-index: 3;
  background-color: white;
  font-weight: bold;
}

.toolbelt-mode-overlay:not(.hidden) ~ #walkCameraExitButton {
  top: 55px;
}

button#mxtRefineSpaceButton {
  width: 175px;
  text-align: left;
  padding-left: 23px;
  font-size: 11px;
  font-weight: bold;
}

#mxtRefineSpaceImage {
  padding-right: 5px;
}

.bom-line-item {
  display: flex;
}

.bom-line-container {
  margin-top: 5px;
}

.bom-line-container:first-child {
  margin-top: 0px;
}

#bom-header-row {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.bom-category-div {
  background: #d3d3d3;
  position: relative;
  border-top: 1px solid white;
  border-bottom: 1px solid white;
}

.bom-category {
  margin: 0px;
  padding: 14px 20px;
  font-size: 20px;
  font-weight: bold;
  color: #4d4d4d;
}

.bom-category-products {
  margin: 20px 0px;
}

.bom-category-collapse {
  width: 10px;
  position: absolute;
  cursor: pointer;
  right: 40px;
  top: 50%;
  transform: rotate(0deg);
  transition: transform 0.5s ease;
}

.bom-row-collapsed .bom-category-collapse {
  transform: rotate(180deg);
}

.bom-line-item-product-container {
  display: flex;
  flex: 0 1 var(--product-width);
  align-items: center;
}

.cart-line-item-product-container.bom-line-item-product-container {
  flex: 0 1 var(--cart-product-width);
  font-size: 12px;
}

.bom-line-item-icon-div {
  margin: 0px 10px 0px 20px;
  flex: 0 0 70px;
  border: 1px solid #666666;
  align-self: start;
}

.cart-line-item-icon-div.bom-line-item-icon-div {
  flex: 0 0 40px;
  height: 40px;
}

.bom-text-div {
  display: flex;
  flex-flow: column;
  justify-content: center;
  flex: 1;
}

.bom-text-div.bom-text-div-padding-left {
  padding-left: 10px;
}

.cart-text-div.bom-text-div {
  flex-flow: row;
  justify-content: left;
  align-items: center;
}

.cart-text-div .bom-line-item-subtext {
  margin-left: 5px;
}

.bom-line-item-qty-div {
  width: var(--qty-width);
  text-align: center;
}

.bom-line-item-price-div {
  width: var(--unit-price-width);
  text-align: center;
}

.cart-line-item-price-div.bom-line-item-price-div {
  width: var(--cart-unit-price-width);
  font-size: 12px;
  font-weight: normal;
}

.bom-line-item-total-price-div {
  width: var(--total-price-width);
  text-align: center;
}

.cart-line-item-total-price-div.bom-line-item-total-price-div {
  width: var(--cart-total-price-width);
  font-size: 12px;
}

.cart-line-item-price-div.bom-line-item-price-div .bom-line-item-value {
  font-weight: normal;
}

.bom-line-item-subtext {
  opacity: 0.75;
}

.bom-row-collapsed .bom-category-products {
  display: none;
}

.bom-subproduct-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 5px 20px 10px 20px;
  font-size: 12px;
}

.bom-subproduct {
  display: flex;
  height: 70px;
}

.bom-subproduct .bom-line-item-icon-div {
  width: 80px;
}

#bom-products {
  background: white;
}

#bomModal {
  height: calc(100% - 100px);
  overflow: visible;
  --product-width: 50%;
  --qty-width: 10%;
  --unit-price-width: 20%;
  --total-price-width: 20%;
  --cart-product-width: 55%;
  --cart-qty-width: 20%;
  --cart-unit-price-width: 10%;
  --cart-total-price-width: 15%;
}

#bomModal p.bom-zip-link {
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  color: #2aadc5;
  margin-bottom: 24px;
  cursor: pointer;
}

#bomModal p.bom-zip-link:hover {
  color: #1f8293;
}

.bom-table-headers {
  display: flex;
  height: 50px;
  align-items: center;
  font-size: 16px;
  font-weight: bold;
  color: #4d4d4d;
  background: white;
}

.bom-table-header {
  text-align: center;
  user-select: none;
}

.bom-footer {
  height: 80px;
  display: flex;
}

.bom-footer-text {
  flex: 1;
  padding: 8px 20px;
  color: #666666;
}

.bom-footer-price-container {
  width: 150px;
}

.bom-footer-total {
  font-size: 16px;
  font-weight: bold;
}

.bom-footer-total-sub {
  font-size: 11px;
}

.bom-footer-price {
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.4px;
  color: #2aadc5;
}

#cart-back-btn {
  padding: 0px 20px;
  margin-left: 20px;
}

#cart-header {
  padding: 0px 20px;
  text-align: center;
  color: #666666;
  margin-bottom: 10px;
}

#cart-modal-content .bom-modal-body {
  background: white;
}

.cart-checkbox {
  display: none;
}

.cart-checkbox-label {
  background-image: url(./images/node_modules/@mxt/mxt-room-planner/assets/img/icons/bom/checkmarkSprite.5496c672716be1e054ab84eee6143826.svg);
  background-position: right center;
  background-size: auto 100%;
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  cursor: pointer;
  margin-left: 20px;
  margin-bottom: 0px;
  border-radius: var(--mxt-corner-roundness);
  border: solid 3px #9e9e9e;
}

.cart-checkbox:checked + .cart-checkbox-label {
  background-position: left center;
  background-color: #90d425;
  border: none;
}

.cart-line-item.bom-line-item {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding: 5px 0px;
}

.cart-line-item-qty-div.bom-line-item-qty-div {
  display: flex;
  justify-content: center;
  align-items: center;
  width: var(--cart-qty-width);
}

.cart-qty-change {
  background: #e6e6e6;
  font-weight: bold;
  color: #666666;
  height: 20px;
  width: 20px;
  border-radius: 10px;
  font-size: 19px;
  line-height: 20px;
  cursor: pointer;
  user-select: none;
}

.cart-qty {
  width: 40px;
}

.cart-qty-inner {
  width: 30px;
  height: 30px;
  background-color: #f7f7f7;
  border: solid 1px rgba(102, 102, 102, 0.43);
  user-select: none;
  line-height: 30px;
  font-size: 14px;
  font-weight: bold;
  color: #666666;
  margin-left: 5px;
}

.cart-line-item.cart-disabled {
  opacity: 0.3;
}

.cart-qty-change.cart-disabled {
  opacity: 0.3;
  cursor: default;
}

.cart-table-headers.bom-table-headers {
  font-size: 12px;
}

#bom-send-order {
  display: flex;
  width: 260px;
  height: 50px;
  justify-content: center;
  color: white;
  line-height: 30px;
}

#bom-send-order-img {
  width: 22px;
  height: 22px;
  opacity: 0.5;
  top: 3px;
  position: relative;
  margin-right: 5px;
}

.bom-zip-entry-error {
  color: #666666;
  font-size: 14px;
  font-weight: 500;
  font-style: italic;
  line-height: 2.57;
  letter-spacing: -0.1px;
}

.bom-zip-entry-error.errortext {
  color: darkred;
}

.zip-modal {
  background: #f5f5f5;
  padding: 55px 120px;
  color: #666666;
  text-align: center;
  margin-top: 20px;
}

.zip-label-text {
  font-size: 15.5px;
  font-weight: bold;
  line-height: 2.13;
  letter-spacing: -0.2px;
  text-align: left;
  margin-bottom: 6px;
}

.zip-label-input {
  width: 300px;
  height: 50px;
  border-radius: var(--mxt-corner-roundness);
  padding: 10px;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}

.bom-btn:not(:last-child) {
  margin-right: 20px;
}

.bom-btn img {
  margin-left: 5px;
}

#bomModal .bom-modal-content {
  height: 100%;
  display: flex;
  flex-flow: column;
}

#bomModal .bom-modal-body {
  overflow: auto;
  flex: 1;
  padding: 0px;
  color: #666666;
  border-radius: var(--mxt-corner-roundness);
}

@media (min-width: 768px) {
  #css-overrides .zip-modal {
    width: 600px;
  }

  #css-overrides #bomModal {
    width: 700px;
  }
}
button#mxtComposeChecklistNoFixButton {
  padding: 0px 10px;
}

.mxt-blueprint-intro-modal-secondary-header {
  font-size: 18px;
  font-weight: bold;
  color: #666666;
}

.mxt-blueprint-intro-modal-secondary-text {
  color: #666666;
}
img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  user-select: none;
}

hr {
  margin: 0px;
  border: 0;
  border-top: 1px solid rgba(89, 90, 92, 0.2);
}

input, textarea {
  border-radius: var(--mxt-corner-roundness);
  border: none;
  box-shadow: var(--mxt-dark-drop-shadow);
  padding: 6px 12px;
}

input[type=range] {
  box-shadow: none;
}

textarea {
  color: #666666;
}

input::placeholder {
  color: #999;
  opacity: 1;
}

label {
  font-weight: normal;
  display: inline-block;
  max-width: 100%;
  margin-bottom: 5px;
}

/** carry-over from bootstrap */
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

.form-control {
  display: block;
  width: 100%;
  line-height: 1.42857143;
  color: #555;
  border: 1px solid #ccc;
  border-radius: var(--mxt-corner-roundness);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  height: 50px;
  font-size: 18px;
  background-color: #f7f7f7;
}

.form-group {
  margin-bottom: 15px;
}

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

h1 {
  font-size: 36px;
}

h2 {
  font-size: 30px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 18px;
}

h5 {
  font-size: 14px;
}

h1, h2, h3, h4, h5 {
  font-weight: 500;
}

h1, h2, h3 {
  margin-top: 20px;
  margin-bottom: 10px;
}

p {
  margin-bottom: 0.3em;
}

button {
  cursor: pointer;
}

.form-horizontal .form-group {
  margin-right: 0px;
  margin-left: 0px;
  position: relative;
}

.form-horizontal .control-label {
  font-size: 20px;
  text-align: left;
}

.center-block {
  display: block;
  margin-right: auto;
  margin-left: auto;
}

.tooltip.top .tooltip-arrow {
  bottom: 0;
  left: 50%;
}

.tooltip-inner {
  color: var(--mxt-tooltip-font-color);
  padding: 10px;
  background-image: var(--primary-right-gradient) !important;
  font-size: 14px;
  font-weight: bold;
  padding: 10px 15px;
  border: var(--mxt-action-menu-border-thickness) solid var(--mxt-action-menu-border-color);
  box-shadow: var(--mxt-tooltip-drop-shadow);
}

.tooltip.bottom .tooltip-arrow {
  border-bottom-color: var(--mxt-client-primary);
  margin-left: -10px;
  margin-top: -10px;
  border-width: 0 10px 10px;
  top: 0;
  left: 50%;
}

.tooltip.top .tooltip-arrow {
  border-top-color: var(--mxt-client-primary);
  margin-left: -10px;
  margin-bottom: -15px;
  border-width: 10px;
}

.tooltip.left .tooltip-arrow {
  border-left-color: var(--mxt-client-primary);
}

.tooltip.right .tooltip-arrow {
  border-right-color: var(--mxt-client-primary);
}

.tooltip.bottom {
  margin-top: 10px;
}

.tooltip.top {
  margin-top: -10px;
}

.tooltip-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}

.tooltip {
  position: absolute;
}

:after, :before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/** end carry over from bootstrap */
#css-overrides *:focus {
  outline-width: 0;
}

#css-overrides.document-tabbing *:focus {
  outline-width: 5px;
}

.full-modal-screen {
  left: 0px;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  margin: 0px auto;
  overflow: auto;
  z-index: 1;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    visibility: hidden;
  }
  100% {
    opacity: 1;
    visibility: visible;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
    visibility: visible;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}
.animated {
  animation-duration: 0.25s;
  animation-fill-mode: both;
}

.fadeOut {
  animation-name: fadeOut;
  pointer-events: none;
}

.fadeIn {
  animation-name: fadeIn;
}

/**
 * Mxt switch should be in format
 * <div class="mxt-switch-container">
        <p class='mxt-switch-label'>Off</p>
        <label class="mxt-switch">
            <input type="checkbox" checked>
            <span class="mxt-slider"></span>
        </label>
        <p class='mxt-switch-label'>On</p>
    </div>
 */
.mxt-switch-container {
  display: flex;
}

.mxt-switch-container.mxt-switch-disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.mxt-switch-label {
  line-height: 34px;
  padding: 0px 5px;
  font-size: 11px;
  font-weight: bold;
  user-select: none;
  color: #666666;
}

.mxt-switch {
  position: relative;
  display: inline-block;
  width: 70px;
  height: 34px;
}

.mxt-switch input {
  display: none;
}

.mxt-switch input:checked + .mxt-slider {
  background: #4cd964;
}

.mxt-switch-container.mxt-switch-disabled .mxt-switch {
  pointer-events: none;
}

.mxt-switch .mxt-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #e2e2e2;
  border-radius: 34px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.mxt-switch .mxt-slider:before {
  position: absolute;
  content: "";
  height: 30px;
  width: 30px;
  right: 38px;
  bottom: 2px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border-radius: 50%;
  box-shadow: 0px 1px 2px 0 rgba(0, 0, 0, 0.2);
}

.mxt-switch input:checked + .mxt-slider:before {
  -webkit-transform: translateX(36px);
  -ms-transform: translateX(36px);
  transform: translateX(36px);
}

/* Browser Clearfix */
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  font-size: 14px;
  color: #333;
}

.mxt-hover-over-image {
  position: absolute;
  z-index: 99;
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  display: none;
  justify-content: center;
  align-items: center;
}

.mxt-bounce:hover {
  top: -2px;
}

.mxt-bounce {
  transition: 0.2s top ease;
  top: 0px;
}

.fraction {
  display: inline-block;
  font-size: 7px;
  padding: 0 0.2em;
  text-align: center;
  vertical-align: middle;
}

.fraction:before {
  border-bottom: 1px solid #000;
  content: attr(top);
  display: block;
  line-height: 1.6em;
  padding: 0 0.2em;
}

.fraction:after {
  content: attr(bottom);
  display: block;
  line-height: 1.6em;
  padding: 0 0.2em;
}

.hidden {
  display: none !important;
}
#update-loading {
  display: none;
  position: fixed;
  z-index: 100100;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.6) 50% 50% no-repeat;
}

#update-loading-container {
  width: 20%;
  height: 20%;
  min-width: 200px;
  min-height: 150px;
  background: rgba(255, 255, 255, 0.9) 50% 50% no-repeat;
  border-radius: var(--mxt-corner-roundness);
  top: 50%;
  left: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
  overflow-y: hidden;
}

#update-loading-container {
  width: 20%;
  top: 40%;
}

#update-loading-message {
  position: absolute;
  top: 70%;
  text-align: center;
  width: 100%;
  left: 50%;
  padding: 0px 30px 0px 30px;
  /* bring your own prefixes */
  transform: translate(-50%, -50%);
  font-size: 14px;
  line-height: 18px;
}

#update-loading-progress {
  position: absolute;
  top: 85%;
  width: 80%;
  left: 50%;
  transform: translateX(-50%);
  border: 1px solid #464646;
}

#update-loading-progress-bar {
  background-color: #464646;
}

/* When the body has the loading class, we turn
   the scrollbar off with overflow:hidden */
#update-loading.loading {
  overflow: hidden;
  display: block;
}
@keyframes uil-default-anim {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.uil-default-css {
  position: absolute;
  background: none;
  top: 20%;
  transform: scale(0.25) translateX(-50%);
  left: calc(50% - 25px);
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.uil-default-css > div:nth-of-type(1) {
  -webkit-animation: uil-default-anim 1s linear infinite;
  animation: uil-default-anim 1s linear infinite;
  -webkit-animation-delay: -0.5s;
  animation-delay: -0.5s;
}

.uil-default-css > div:nth-of-type(2) {
  -webkit-animation: uil-default-anim 1s linear infinite;
  animation: uil-default-anim 1s linear infinite;
  -webkit-animation-delay: -0.4166666667s;
  animation-delay: -0.4166666667s;
}

.uil-default-css > div:nth-of-type(3) {
  -webkit-animation: uil-default-anim 1s linear infinite;
  animation: uil-default-anim 1s linear infinite;
  -webkit-animation-delay: -0.3333333333s;
  animation-delay: -0.3333333333s;
}

.uil-default-css > div:nth-of-type(4) {
  -webkit-animation: uil-default-anim 1s linear infinite;
  animation: uil-default-anim 1s linear infinite;
  -webkit-animation-delay: -0.25s;
  animation-delay: -0.25s;
}

.uil-default-css > div:nth-of-type(5) {
  -webkit-animation: uil-default-anim 1s linear infinite;
  animation: uil-default-anim 1s linear infinite;
  -webkit-animation-delay: -0.1666666667s;
  animation-delay: -0.1666666667s;
}

.uil-default-css > div:nth-of-type(6) {
  -webkit-animation: uil-default-anim 1s linear infinite;
  animation: uil-default-anim 1s linear infinite;
  -webkit-animation-delay: -0.0833333333s;
  animation-delay: -0.0833333333s;
}

.uil-default-css > div:nth-of-type(7) {
  -webkit-animation: uil-default-anim 1s linear infinite;
  animation: uil-default-anim 1s linear infinite;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

.uil-default-css > div:nth-of-type(8) {
  -webkit-animation: uil-default-anim 1s linear infinite;
  animation: uil-default-anim 1s linear infinite;
  -webkit-animation-delay: 0.0833333333s;
  animation-delay: 0.0833333333s;
}

.uil-default-css > div:nth-of-type(9) {
  -webkit-animation: uil-default-anim 1s linear infinite;
  animation: uil-default-anim 1s linear infinite;
  -webkit-animation-delay: 0.1666666667s;
  animation-delay: 0.1666666667s;
}

.uil-default-css > div:nth-of-type(10) {
  -webkit-animation: uil-default-anim 1s linear infinite;
  animation: uil-default-anim 1s linear infinite;
  -webkit-animation-delay: 0.25s;
  animation-delay: 0.25s;
}

.uil-default-css > div:nth-of-type(11) {
  -webkit-animation: uil-default-anim 1s linear infinite;
  animation: uil-default-anim 1s linear infinite;
  -webkit-animation-delay: 0.3333333333s;
  animation-delay: 0.3333333333s;
}

.uil-default-css > div:nth-of-type(12) {
  -webkit-animation: uil-default-anim 1s linear infinite;
  animation: uil-default-anim 1s linear infinite;
  -webkit-animation-delay: 0.4166666667s;
  animation-delay: 0.4166666667s;
}
.mxt-alert-info-modal.success {
  color: white;
  background: var(--toggle-blue);
}

.mxt-alert-info-modal.success .mxt-alert-content {
  max-width: 275px;
  font-weight: bold;
  padding: 10px 15px;
  flex-flow: row;
  justify-content: center;
}

.mxt-alert-info-modal.success img {
  margin-right: 20px;
}

.mxt-alert-content {
  padding: 0px 25px 40px;
  display: flex;
  flex-flow: column;
  align-items: center;
}

.mxt-alert-text.mxt-alert-info {
  color: #31708f;
}

.mxt-alert-input-clear {
  position: absolute;
  top: 10px;
  right: 25px;
  cursor: pointer;
  opacity: 0.5;
  transition: all 0.3s ease;
}

.mxt-alert-input-clear:hover {
  opacity: 1;
}

.mxt-alert-text {
  color: #4e4e4e;
  text-align: center;
  margin-bottom: 20px;
  line-height: 24px;
  font-size: 14px;
  font-weight: 500;
}

.mxt-alert-danger {
  color: #a94442;
  background-color: #f2dede;
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid #ebccd1;
  border-radius: var(--mxt-corner-roundness);
}

.mxt-alert-text.mxt-alert-danger {
  background: none;
  border: none;
}

.mxt-alert-input-div {
  position: relative;
  width: 100%;
}

input.mxt-alert-input {
  height: 50px;
  padding: 6px 12px;
  font-size: 18px;
  width: 100%;
  box-shadow: 0px 1px 2px 0 rgba(0, 0, 0, 0.2);
  margin-bottom: 20px;
}

.mxt-alert-prompt-yes {
  margin-bottom: 10px;
}

@media (min-width: 768px) {
  .mxt-alert-content {
    width: 600px;
  }
}
.mxt-modal-background.full-modal-screen {
  background: rgba(0, 0, 0, 0.5);
  z-index: 10005;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 1s all ease;
}

.mxt-modal-div {
  background: #f7f7f7;
  border-radius: var(--mxt-corner-roundness);
  box-shadow: 0px 0px 5px 1px #646464;
  position: relative;
  max-width: 80%;
  max-height: calc(100% - 40px);
  overflow: visible;
  /** so x button shows*/
}

.mxt-default-modal-header-container {
  display: flex;
  justify-content: center;
}

.mxt-default-modal-header {
  font-size: 18px;
  font-weight: bold;
  color: #666666;
  padding: 13px;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 10px;
}

.closeButton {
  opacity: 0.8;
  position: absolute;
  top: -20px;
  right: -20px;
  background-color: white;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  z-index: 3;
  box-shadow: 0px 0px 10px black;
  user-select: none;
}

.closeIcon {
  font-weight: 300;
  font-size: 32px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.mxt-popover {
  position: absolute;
  z-index: 1060;
  max-width: 230px;
  background: white;
  color: var(--mxt-toolbar-font-color);
  border-radius: var(--mxt-corner-roundness);
  box-shadow: var(--mxt-dark-drop-shadow);
}

/* To allow for getBoundingClientRect before display */
.mxt-popover.hidden {
  display: inherit !important;
  opacity: 0;
}

.mxt-popover.left.bottom .mxt-modal-arrow-outer,
.mxt-popover.right.bottom .mxt-modal-arrow-outer {
  top: calc(100% - 55px);
}

.mxt-popover.left.top .mxt-modal-arrow-outer,
.mxt-popover.right.top .mxt-modal-arrow-outer {
  top: 10px;
}

.mxt-popover.mxt-tip {
  color: #ffffff;
  background: var(--primary-right-gradient);
  font-weight: bold;
  font-size: 11px;
  padding: 10px 16px;
  user-select: none;
  pointer-events: none;
}

.mxt-popover.mxt-tip.left,
.mxt-popover.mxt-tip.right {
  padding: 15px 16px;
}

.mxt-popover.mxt-tip .mxt-modal-arrow-inner {
  background: var(--primary-right-gradient);
}

.mxt-popover.mxt-tip .mxt-menu-left-arrow {
  width: 15px;
  left: -15px;
}

.mxt-popover.mxt-tip .mxt-menu-right-arrow {
  width: 15px;
}

.mxt-popover.mxt-tip .mxt-menu-top-arrow {
  top: -15px;
  height: 15px;
}

.mxt-popover.mxt-tip .mxt-menu-right-arrow .mxt-modal-arrow-inner {
  left: -110px;
}
#forgotPasswordBtn {
  position: absolute;
  margin-top: 10px;
  color: grey;
  cursor: pointer;
  font-size: 11px;
  line-height: 18px;
  right: 0px;
  top: -10px;
}

#termsCheckbox {
  box-shadow: none;
}

.freeRegistration {
  padding: 15px;
  text-align: center;
  width: 250px;
}

#switchToLoginBtn {
  width: 233px;
  margin-bottom: 20px;
  cursor: pointer;
}

#loginBtn {
  width: 233px;
}

#switchToRegisterBtn {
  margin-bottom: 50px;
  width: 233px;
}

#registerBtn {
  width: 233px;
}

#save-success-continue {
  position: relative;
  margin: 40px 0px;
}

#save-success-subheader {
  color: #4fc1df;
  display: flex;
  justify-content: center;
  margin-top: 30px;
  margin-bottom: 50px;
  line-height: 35px;
}

#save-success-subheader-image {
  position: relative;
  top: 3px;
  margin: 0px 5px;
}

#save-success-modal {
  text-align: center;
  width: 600px;
}

.registration-form {
  padding: 15px;
}

.flex-form-parent {
  display: flex;
  flex-wrap: wrap;
}

.flex-form-group {
  flex: 1;
  min-width: 165px;
  margin: 5px;
}

.form-input-label {
  display: inline;
}

.loginRegisterModal {
  width: 900px;
  display: flex;
  max-width: 100%;
}

#register-modal .loginRegisterModal {
  height: 100%;
  max-height: 100%;
}

#register-modal #registerForm {
  height: 100%;
}

#register-modal #registerForm .register-form-scroll {
  height: 100%;
  overflow: auto;
}

.mxt-login-register-modal-equal-flex {
  flex: 1;
  position: relative;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
}

.customModalHeaderBackgroundOne {
  background: var(--mxt-login-register-hero);
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
  margin: 10px;
}

#css-overrides #loginForm.form-horizontal .control-label {
  font-size: 16px;
}

@media all and (max-width: 400px) {
  #login-modal {
    height: 90%;
  }

  #login-modal .loginRegisterModal {
    height: 100%;
  }
}
@media all and (max-width: 1000px) {
  .loginRegisterImage.mxt-login-register-modal-equal-flex {
    display: none;
  }
}
.pano-mode-actions {
  position: absolute;
  bottom: 25px;
  left: 0;
  right: 0;
  text-align: center;
}

.pano-mode-actions .mxt-btn {
  margin: 0 auto 10px auto;
  min-width: 200px;
}

.pano-mode-actions .mxt-btn img {
  display: inline-block;
}

.pano-location-cursor {
  position: absolute;
  pointer-events: none;
}

.pano-location-cursor.fadeIn {
  animation-name: fadeIn !important;
  animation-duration: 0.5s !important;
}

.pano-location-cursor.fadeOut {
  animation-name: fadeOut !important;
}

.pano-location-cursor > svg {
  fill: rgba(255, 255, 255, 0.43);
}

.pano-location-cursor .cursor-border {
  stroke: white;
}

.pano-location-cursor.dragging {
  transform: scale(0.6);
  opacity: 0.6;
  transition: transform 0.5s;
}

.pano-location-cursor.animate-drop {
  animation: pano-cursor-drop 0.5s ease-in-out;
}

.pano-location-cursor.animate-drop .pano-location-cursor-tooltip {
  animation: pano-tooltip-drop 0.5s ease-in-out;
}

.pano-location-cursor.dragging .pano-location-cursor-tooltip {
  transform: translateY(-22px);
}

.pano-location-cursor-tooltip {
  top: -100%;
  margin-top: 0 !important;
  pointer-events: none;
  animation: none;
  transition: opacity 0.5s;
}

.pano-location-cursor-tooltip.animate {
  animation: pano-tooltip-bounce 1.5s infinite alternate !important;
}

.pano-location-cursor-tooltip.tooltip.top .tooltip-arrow {
  margin-bottom: -40px;
  margin-left: -20px;
  border-width: 20px;
  border-top-width: 38px;
  border-top-color: var(--mxt-client-primary);
}

.pano-location-cursor-tooltip .tooltip-inner {
  position: relative;
  height: 44px;
  width: 44px;
  padding: 3px;
  border-radius: 50%;
  box-shadow: none;
  background-image: var(--primary-top-gradient) !important;
}

.pano-location-cursor-tooltip .tooltip-inner img {
  border: solid 1px rgba(255, 255, 255, 0.7);
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 22px;
}

.pano-location-cursor-help-tooltip {
  left: calc(-50% - 50px);
  margin-left: -5px;
  text-align: center;
}

.pano-location-cursor-help-tooltip .tooltip-inner {
  width: 200px;
}

.pano-request-header {
  position: absolute;
  top: 25px;
  right: 25px;
  text-align: center;
  font-weight: bold;
}

.pano-request-header .close-button {
  min-width: inherit;
  border-radius: 50%;
}

.pano-generation-container,
.pano-generation-error-container {
  max-width: inherit;
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.25);
}

.pano-generation-container .mxt-popover-content,
.pano-generation-error-container .mxt-popover-content {
  width: 330px;
  padding: 30px 40px 20px 40px;
  text-align: center;
  color: var(--mxt-toolbar-font-color);
}

.pano-generation-container .pano-popover-header,
.pano-generation-error-container .pano-popover-header {
  font-weight: 600;
}

.pano-generation-container hr,
.pano-generation-error-container hr {
  margin: 10px !important;
  opacity: 0.25;
  border-top: 1px solid var(--mxt-toolbar-font-color);
}

.pano-generation-container .pano-popover-section p {
  margin-bottom: 1em;
}

.pano-generation-container .generation-date {
  font-weight: 500;
}

.pano-generation-container .generation-date,
.pano-generation-error-container .pano-generation-error-desc {
  margin: 15px 0;
  font-size: 0.8em;
}

.pano-generation-container .btn-white,
.pano-generation-error-container .btn-white {
  color: var(--toggle-blue);
  font-weight: bold;
}

.pano-generation-error-container .close-button {
  top: -20px;
  right: -20px;
  position: absolute;
  width: 40px;
  min-width: inherit;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.8);
  box-shadow: var(--mxt-dark-drop-shadow);
}

.pano-viewer-container {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 10000;
}

.pano-viewer-container .pano-viewer-actions {
  position: absolute;
  top: 30px;
  right: 30px;
  z-index: 10000;
}

.pano-viewer-container .pano-viewer-actions .pano-viewer-action {
  display: block;
  margin-bottom: 10px;
  padding: 0;
  width: 50px;
  height: 50px;
  line-height: 50px;
  min-width: inherit;
  border-radius: 50%;
  font-weight: bold;
}

.pano-viewer-container .pano-viewer-actions .pano-viewer-action.selected {
  background-color: var(--toggle-blue);
  color: white;
}

.pano-viewer-container .pano-viewer-actions .pano-viewer-action img,
.pano-generation-error-container .pano-error-icon {
  display: inline-block;
}

.pano-share-popover {
  bottom: unset;
  top: 15px;
  padding: 25px 0 10px 0;
  color: var(--mxt-action-menu-font-color);
}

.pano-share-popover:after, .pano-share-popover:before {
  top: 100px;
}

.pano-share-popover h4 {
  margin-bottom: 15px;
}

.pano-share-popover .pano-share-header {
  margin-bottom: 15px;
}

.pano-share-popover .pano-share-header .project-date {
  font-size: 11px;
}

.pano-share-popover .pano-social-list {
  border-top: 1px solid rgba(89, 90, 92, 0.25);
}

.pano-share-popover ul li {
  width: 100%;
  white-space: nowrap;
  cursor: pointer;
  font-weight: bold;
  height: 60px;
  border-bottom: 1px solid rgba(89, 90, 92, 0.25);
  display: flex;
  align-items: center;
  padding: 0 40px;
}

.pano-share-popover ul li:hover {
  background-color: #f4f4f4;
}

.pano-share-popover ul li img {
  height: 20px;
  width: 20px;
  margin-right: 10px;
}

@keyframes pano-tooltip-bounce {
  from {
    transform: translateY(0px);
  }
  to {
    transform: translateY(-10px);
  }
}
@keyframes pano-cursor-drop {
  0% {
    transform: scale(0.6);
  }
  45% {
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.85);
  }
  85% {
    transform: scale(1);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes pano-tooltip-drop {
  0% {
    transform: scale(0.6);
  }
  50% {
    transform: scale(1.05);
  }
  65% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}
.product-detail-page-content {
  font-weight: normal;
  color: var(--mxt-action-menu-font-color);
}

.product-detail-page-content .product-detail-header {
  margin-bottom: 10px;
  font-weight: bold;
}

.product-detail-page-content .product-detail-body {
  display: flex;
  flex-direction: row;
}

.product-detail-page-content .product-detail-body > * {
  padding: 10px;
}

.product-detail-page-content .product-detail-body .product-metadata {
  flex-grow: 1;
}

.product-detail-page-content .product-detail-body .product-thumbnail {
  display: flex;
  flex-flow: column;
  justify-content: center;
}

.product-detail-page-content .product-detail-body .product-thumbnail img {
  width: 120px;
}

.product-detail-page-content .product-detail-body .product-detail-section {
  padding: 10px 0;
  border-top: solid 1px var(--mxt-action-menu-border-color);
  text-align: left;
}

.product-detail-page-content .product-detail-body .product-detail-section hr {
  margin: 10px 0;
  border-top-color: var(--mxt-action-menu-border-color);
}

.product-detail-page-content .product-detail-body .product-metadata .price {
  font-size: 16px;
  font-weight: bold;
}

.product-detail-page-content .product-detail-item {
  margin: 2px 0;
}

.product-detail-page-content .product-configurable-section {
  margin-bottom: 10px;
  text-align: left;
}

.product-detail-page-content .product-configurable-section h4 {
  font-size: 12px;
  font-weight: bold;
}

.product-detail-page-content ul.product-detail-configurable-list {
  margin: 5px 0;
  padding: 0 25px;
  max-height: 150px;
  overflow: auto;
  border: solid 1px var(--mxt-toolbar-button-color);
}

.product-detail-page-content .product-detail-footer .product-url a {
  font-weight: bold;
  color: var(--mxt-action-menu-font-color);
}

@media (min-width: 768px) {
  #css-overrides .product-detail-page .mxt-alert-content {
    width: 500px;
  }
}
.screenshot-mode-actions {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  text-align: center;
}

.screenshot-mode-actions .mxt-btn {
  margin: 0px auto;
  min-width: 200px;
}

.screenshot-mode-actions .mxt-btn img {
  display: inline-block;
}
.mxt-carousel {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid gray;
  height: 40px;
  flex: 0 0 158px;
  border-radius: var(--mxt-corner-roundness);
}

.mxt-carousel-side {
  height: 100%;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  flex: 1;
  cursor: pointer;
}

img.mxt-carousel-side.mxt-carousel-arrow-disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.mxt-carousel-value {
  border-radius: 0px;
  background: #f0f0f0;
  height: 100%;
  line-height: 40px;
  width: 70px;
  text-align: center;
  font-weight: bold;
  font-size: 11px;
  border-width: 0px;
}

input.mxt-carousel-value[type=number]::-webkit-inner-spin-button,
input.mxt-carousel-value[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

span.mxt-carousel-value {
  user-select: none;
}
/* Pannellum 2.5.6, https://github.com/mpetroff/pannellum */
.pnlm-container{margin:0;padding:0;overflow:hidden;position:relative;cursor:default;width:100%;height:100%;font-family:Helvetica,"Nimbus Sans L","Liberation Sans",Arial,sans-serif;background:#f4f4f4 url('data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2267%22%20height%3D%22100%22%20viewBox%3D%220%200%2067%20100%22%3E%0A%3Cpath%20stroke%3D%22%23ccc%22%20fill%3D%22none%22%20d%3D%22M33.5%2C50%2C0%2C63%2C33.5%2C75%2C67%2C63%2C33.5%2C50m-33.5-50%2C67%2C25m-0.5%2C0%2C0%2C75m-66.5-75%2C67-25m-33.5%2C75%2C0%2C25m0-100%2C0%2C50%22%2F%3E%0A%3C%2Fsvg%3E%0A') repeat;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-o-user-select:none;-ms-user-select:none;user-select:none;outline:0;line-height:1.4;contain:content}.pnlm-container *{box-sizing:content-box}.pnlm-ui{position:absolute;width:100%;height:100%;z-index:1}.pnlm-grab{cursor:grab;cursor:url('data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20height%3D%2226%22%20width%3D%2226%22%3E%0A%3Cpath%20stroke%3D%22%23000%22%20stroke-width%3D%221px%22%20fill%3D%22%23fff%22%20d%3D%22m15.3%2020.5s6.38-6.73%204.64-8.24-3.47%201.01-3.47%201.01%203.61-5.72%201.41-6.49c-2.2-0.769-3.33%204.36-3.33%204.36s0.873-5.76-1.06-5.76-1.58%205.39-1.58%205.39-0.574-4.59-2.18-4.12c-1.61%200.468-0.572%205.51-0.572%205.51s-1.58-4.89-2.93-3.79c-1.35%201.11%200.258%205.25%200.572%206.62%200.836%202.43%202.03%202.94%202.17%205.55%22%2F%3E%0A%3C%2Fsvg%3E%0A') 12 8,default}.pnlm-grabbing{cursor:grabbing;cursor:url('data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20height%3D%2226%22%20width%3D%2226%22%3E%0A%3Cpath%20stroke%3D%22%23000%22%20stroke-width%3D%221px%22%20fill%3D%22%23fff%22%20d%3D%22m15.3%2020.5s5.07-5.29%203.77-6.74c-1.31-1.45-2.53%200.14-2.53%200.14s2.74-3.29%200.535-4.06c-2.2-0.769-2.52%201.3-2.52%201.3s0.81-2.13-1.12-2.13-1.52%201.77-1.52%201.77-0.261-1.59-1.87-1.12c-1.61%200.468-0.874%202.17-0.874%202.17s-0.651-1.55-2-0.445c-1.35%201.11-0.68%202.25-0.365%203.62%200.836%202.43%202.03%202.94%202.17%205.55%22%2F%3E%0A%3C%2Fsvg%3E%0A') 12 8,default}.pnlm-sprite{background-image:url('data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2226%22%20height%3D%22208%22%3E%0A%3Ccircle%20fill-opacity%3D%22.78%22%20cy%3D%22117%22%20cx%3D%2213%22%20r%3D%2211%22%20fill%3D%22%23fff%22%2F%3E%0A%3Ccircle%20fill-opacity%3D%22.78%22%20cy%3D%22143%22%20cx%3D%2213%22%20r%3D%2211%22%20fill%3D%22%23fff%22%2F%3E%0A%3Ccircle%20cy%3D%22169%22%20cx%3D%2213%22%20r%3D%227%22%20fill%3D%22none%22%20stroke%3D%22%23000%22%20stroke-width%3D%222%22%2F%3E%0A%3Ccircle%20cy%3D%22195%22%20cx%3D%2213%22%20r%3D%227%22%20fill%3D%22none%22%20stroke%3D%22%23000%22%20stroke-width%3D%222%22%2F%3E%0A%3Ccircle%20cx%3D%2213%22%20cy%3D%22195%22%20r%3D%222.5%22%2F%3E%0A%3Cpath%20d%3D%22m5%2083v6h2v-4h4v-2zm10%200v2h4v4h2v-6zm-5%205v6h6v-6zm-5%205v6h6v-2h-4v-4zm14%200v4h-4v2h6v-6z%22%2F%3E%0A%3Cpath%20d%3D%22m13%20110a7%207%200%200%200%20-7%207%207%207%200%200%200%207%207%207%207%200%200%200%207%20-7%207%207%200%200%200%20-7%20-7zm-1%203h2v2h-2zm0%203h2v5h-2z%22%2F%3E%0A%3Cpath%20d%3D%22m5%2057v6h2v-4h4v-2zm10%200v2h4v4h2v-6zm-10%2010v6h6v-2h-4v-4zm14%200v4h-4v2h6v-6z%22%2F%3E%0A%3Cpath%20d%3D%22m17%2038v2h-8v-2z%22%2F%3E%0A%3Cpath%20d%3D%22m12%209v3h-3v2h3v3h2v-3h3v-2h-3v-3z%22%2F%3E%0A%3Cpath%20d%3D%22m13%20136-6.125%206.125h4.375v7.875h3.5v-7.875h4.375z%22%2F%3E%0A%3Cpath%20d%3D%22m10.428%20173.33v-5.77l5-2.89v5.77zm1-1.73%203-1.73-3.001-1.74z%22%2F%3E%0A%3C%2Fsvg%3E%0A')}.pnlm-container:-moz-full-screen{height:100%!important;width:100%!important;position:static!important}.pnlm-container:-webkit-full-screen{height:100%!important;width:100%!important;position:static!important}.pnlm-container:-ms-fullscreen{height:100%!important;width:100%!important;position:static!important}.pnlm-container:fullscreen{height:100%!important;width:100%!important;position:static!important}.pnlm-render-container{cursor:inherit;position:absolute;height:100%;width:100%}.pnlm-controls{margin-top:4px;background-color:#fff;border:1px solid #999;border-color:rgba(0,0,0,0.4);border-radius:3px;cursor:pointer;z-index:2;-webkit-transform:translateZ(9999px);transform:translateZ(9999px)}.pnlm-control:hover{background-color:#f8f8f8}.pnlm-controls-container{position:absolute;top:0;left:4px;z-index:1}.pnlm-zoom-controls{width:26px;height:52px}.pnlm-zoom-in{width:100%;height:50%;position:absolute;top:0;border-radius:3px 3px 0 0}.pnlm-zoom-out{width:100%;height:50%;position:absolute;bottom:0;background-position:0 -26px;border-top:1px solid #ddd;border-top-color:rgba(0,0,0,0.10);border-radius:0 0 3px 3px}.pnlm-fullscreen-toggle-button,.pnlm-orientation-button,.pnlm-hot-spot-debug-indicator{width:26px;height:26px}.pnlm-hot-spot-debug-indicator{position:absolute;top:50%;left:50%;width:26px;height:26px;margin:-13px 0 0 -13px;background-color:rgba(255,255,255,0.5);border-radius:13px;display:none}.pnlm-orientation-button-inactive{background-position:0 -156px}.pnlm-orientation-button-active{background-position:0 -182px}.pnlm-fullscreen-toggle-button-inactive{background-position:0 -52px}.pnlm-fullscreen-toggle-button-active{background-position:0 -78px}.pnlm-panorama-info{position:absolute;bottom:4px;background-color:rgba(0,0,0,0.7);border-radius:0 3px 3px 0;padding-right:10px;color:#fff;text-align:left;display:none;z-index:2;-webkit-transform:translateZ(9999px);transform:translateZ(9999px)}.pnlm-title-box{position:relative;font-size:20px;display:table;padding-left:5px;margin-bottom:3px}.pnlm-author-box{position:relative;font-size:12px;display:table;padding-left:5px}.pnlm-load-box{position:absolute;top:50%;left:50%;width:200px;height:150px;margin:-75px 0 0 -100px;background-color:rgba(0,0,0,0.7);border-radius:3px;text-align:center;font-size:20px;display:none;color:#fff}.pnlm-load-box p{margin:20px 0}.pnlm-lbox{position:absolute;top:50%;left:50%;width:20px;height:20px;margin:-10px 0 0 -10px;display:none}.pnlm-loading{animation-duration:1.5s;-webkit-animation-duration:1.5s;animation-name:pnlm-mv;-webkit-animation-name:pnlm-mv;animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite;animation-timing-function:linear;-webkit-animation-timing-function:linear;height:10px;width:10px;background-color:#fff;position:relative}@keyframes pnlm-mv{from{left:0;top:0}25%{left:10px;top:0}50%{left:10px;top:10px}75%{left:0;top:10px}to{left:0;top:0}}@-webkit-keyframes pnlm-mv{from{left:0;top:0}to{left:0;top:0}}.pnlm-load-button{position:absolute;top:50%;left:50%;width:200px;height:100px;margin:-50px 0 0 -100px;background-color:rgba(0,0,0,.7);border-radius:3px;text-align:center;font-size:20px;display:table;color:#fff;cursor:pointer}.pnlm-load-button:hover{background-color:rgba(0,0,0,.8)}.pnlm-load-button p{display:table-cell;vertical-align:middle}.pnlm-info-box{font-size:15px;position:absolute;top:50%;left:50%;width:200px;height:150px;margin:-75px 0 0 -100px;background-color:#000;border-radius:3px;display:table;text-align:center;color:#fff;table-layout:fixed}.pnlm-info-box a,.pnlm-author-box a{color:#fff;word-wrap:break-word;overflow-wrap:break-word}.pnlm-info-box p{display:table-cell;vertical-align:middle;padding:0 5px 0 5px}.pnlm-error-msg{display:none}.pnlm-about-msg{font-size:11px;line-height:11px;color:#fff;padding:5px 8px 5px 8px;background:rgba(0,0,0,0.7);border-radius:3px;position:absolute;top:50px;left:50px;display:none;opacity:0;-moz-transition:opacity .3s ease-in-out;-webkit-transition:opacity .3s ease-in-out;-o-transition:opacity .3s ease-in-out;-ms-transition:opacity .3s ease-in-out;transition:opacity .3s ease-in-out;z-index:1}.pnlm-about-msg a:link,.pnlm-about-msg a:visited{color:#fff}.pnlm-about-msg a:hover,.pnlm-about-msg a:active{color:#eee}.pnlm-hotspot-base{position:absolute;visibility:hidden;cursor:default;vertical-align:middle;top:0;z-index:1}.pnlm-hotspot{height:26px;width:26px;border-radius:13px}.pnlm-hotspot:hover{background-color:rgba(255,255,255,0.2)}div.pnlm-tooltip span{visibility:hidden;position:absolute;border-radius:3px;background-color:rgba(0,0,0,0.7);color:#fff;text-align:center;max-width:200px;padding:5px 10px;margin-left:-220px;cursor:default}div.pnlm-tooltip:hover span{visibility:visible}div.pnlm-tooltip:hover span:after{content:'';position:absolute;width:0;height:0;border-width:10px;border-style:solid;border-color:rgba(0,0,0,0.7) transparent transparent transparent;bottom:-20px;left:-10px;margin:0 50%}.pnlm-compass{position:absolute;width:50px;height:50px;right:4px;bottom:4px;border-radius:25px;background-image:url('data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20height%3D%2250%22%20width%3D%2250%22%3E%0A%3Cpath%20d%3D%22m24.5078%206-3.2578%2018h7.5l-3.25781-18h-0.984376zm-3.2578%2020%203.2578%2018h0.9844l3.2578-18h-7.5zm1.19531%200.9941h5.10938l-2.5547%2014.1075-2.5547-14.1075z%22%2F%3E%0A%3C%2Fsvg%3E%0A');cursor:default;display:none}.pnlm-world{position:absolute;left:50%;top:50%}.pnlm-face{position:absolute;-webkit-transform-origin:0 0;transform-origin:0 0}.pnlm-dragfix,.pnlm-preview-img{position:absolute;height:100%;width:100%}.pnlm-preview-img{background-size:cover;background-position:center}.pnlm-lbar{width:150px;margin:0 auto;border:#fff 1px solid;height:6px}.pnlm-lbar-fill{background:#fff;height:100%;width:0}.pnlm-lmsg{font-size:12px}.pnlm-fade-img{position:absolute;top:0;left:0}.pnlm-pointer{cursor:pointer}
.mxt-grid-container {
  position: absolute;
  width: 100%;
  display: flex;
  flex-flow: column;
}

.mxt-grid-container-paging {
  /*    height: 100%;*/
  overflow: auto;
  display: initial;
}

.mxt-grid-container-rigid.mxt-grid-container-paging {
  display: flex;
  overflow: hidden;
}

.mxt-grid-container-paging .mxt-grid {
  overflow-y: auto;
  overflow-x: hidden;
}

.mxt-grid {
  display: grid;
  justify-content: center;
}

.mxt-grid-pagination {
  flex: 0 0 36px;
  height: 36px;
  /*somewhat duplicative of flex height, but needed for stuff inside */
  text-align: center;
  width: 250px;
  margin-top: -5px;
  margin-bottom: 5px;
  display: flex;
  justify-content: center;
}

p.mxt-grid-pagination-text.mxt-grid-pagination-page-count {
  flex-grow: 1;
}

p.mxt-grid-pagination-text {
  line-height: 36px;
  user-select: none;
  margin-bottom: 0px;
  font-weight: bold;
  font-size: 12px;
}

img.mxt-grid-pagination-arrow.mxt-grid-pagination-arrow-disabled {
  opacity: 0.3;
}

.mxt-grid-pagination-arrow:hover {
  opacity: 1;
}

.mxt-grid-pagination-arrow {
  position: relative;
  opacity: 0.6;
  transition: opacity 0.75s ease;
  cursor: pointer;
  border: 2px solid grey;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  background: white;
  transform: translateY(25%);
  margin: 0px 5px;
}

.mxt-grid-item {
  position: relative;
  text-align: center;
}

.mxt-grid-item-text-div {
  background: white;
  padding: 5px 0px;
}

.mxt-grid-item-content {
  display: flex;
  flex-flow: column;
  width: 100%;
  height: 100%;
}

.mxt-grid-item-bg-img {
  width: 100%;
  flex: 1;
  /* allows shrinking if necessary*/
  min-width: 0px;
  min-height: 0px;
}

.mxt-grid-item-bg-img-no-text {
  height: 100%;
}

/* this class is shared between content as background and the actual image item;
 used mostly so that other classes can find the item that represents the "image" in the grid, so keep a minimum of CSS in here*/
.mxt-grid-item-img {
  max-height: 100%;
  max-width: 100%;
}

/* separate class for hover, b/c only certain items hover; others have a hoverBox on them*/
.mxt-grid-item-hover {
  transition: all 0.2s ease-in-out;
}

.mxt-grid-item-hover:hover {
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

/**
 * Puts interior borders based on there being 2 columns
 * First put borders every other to form the middle border
 */
.mxt-grid .mxt-grid-interior-borders-2:nth-child(2n) {
  border-left: 2px solid #d1d1d1;
}

/**
 * Then put bottom borders on everything but the last
 */
.mxt-grid .mxt-grid-interior-borders-2:nth-last-child(n+3) {
  border-bottom: 2px solid #d1d1d1;
}

.mxt-grid-item-disabled-background {
  position: absolute;
  z-index: 10;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background: rgba(216, 216, 216, 0.5);
  display: none;
  cursor: not-allowed;
}

.mxt-grid-item-disabled .mxt-grid-item-disabled-background {
  display: block;
}

.mxt-grid-item-disabled.mxt-grid-item-hover:hover {
  box-shadow: none;
}
.mxtChecklistRow .mxtChecklistRowImg {
  width: 30px;
}

.mxtChecklistRow .mxtChecklistRowImg.mxtChecklistCheckImg {
  width: 20px;
}

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

.mxtChecklistDiv.mxtChecklistRowClickable {
  cursor: pointer;
}

.mxtChecklistDiv.mxtChecklistRowClickable .mxtChecklistRow {
  color: #0f7e90;
}

.mxtChecklistRowText {
  flex: 1;
  margin-left: 5px;
  user-select: none;
  text-align: left;
  font-size: 11px;
  font-weight: bold;
}

.mxtChecklistRow.mxtChecklistRowChecked .mxtChecklistRowText {
  opacity: 0.5;
}

.mxtChecklistTipDiv {
  text-align: left;
  display: flex;
  margin-left: 35px;
  font-size: 9px;
  font-weight: 500;
  line-height: 1.56;
}

button.mxtChecklistToggle.mxt-btn-icon-only span {
  display: none;
}

.mxtChecklistToggle {
  top: 25px;
  left: 25px;
  width: 120px;
}

.toolbelt-mode-overlay:not(.hidden) ~ .mxtChecklistToggle {
  top: 65px;
}

.toolbelt-mode-overlay:not(.hidden) ~ .mxtChecklist {
  top: 125px;
}

.mxtChecklistToggle.mxt-btn-icon-only {
  width: 44px;
}

button.mxtChecklistToggle img {
  top: 20px;
  width: 25px;
}

.mxt-arrow-modal {
  position: absolute;
  background: rgba(254, 254, 254, 0.95);
  border: 1px solid rgba(0, 0, 0, 0.2);
  z-index: 10;
  border-radius: var(--mxt-corner-roundness);
  font-size: 12px;
}

.mxt-arrow-modal:after, .mxt-arrow-modal:before {
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}

.mxt-arrow-modal:after {
  border-color: rgba(213, 213, 213, 0);
  border-width: 10px;
}

.mxt-arrow-modal:before {
  border-color: rgba(0, 0, 0, 0);
  border-width: 11px;
}

div.mxtChecklist {
  top: 75px;
  left: 25px;
  background: #f3f3f3;
}

.mxtChecklist.mxt-arrow-modal:after, .mxtChecklist.mxt-arrow-modal:before {
  left: 60px;
}

.mxtChecklist.mxt-checklist-icon-only.mxt-arrow-modal:after, .mxtChecklist.mxt-checklist-icon-only.mxt-arrow-modal:before {
  left: 18px;
}

.mxtChecklistModal {
  width: 230px;
  height: 363px;
  /*two pixels lost to borders*/
  background: #f3f3f3;
}

.mxtChecklistModal.mxt-arrow-modal:after, .mxtChecklistModal.mxt-arrow-modal:before {
  bottom: 100%;
}

.mxtChecklistModal:after {
  border-color: rgba(213, 213, 213, 0);
  border-bottom-color: white;
  border-width: 10px;
  margin-left: -10px;
  transition: 1s all ease;
}

.mxtChecklistModal:before {
  border-color: rgba(0, 0, 0, 0);
  border-bottom-color: rgba(0, 0, 0, 0.2);
  border-width: 11px;
  margin-left: -11px;
}

.mxtChecklistScroll {
  padding: 10px;
  height: 314px;
  overflow: auto;
}

.mxtChecklistDiv {
  padding: 5px 10px 10px 5px;
  border-radius: var(--mxt-corner-roundness);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
  background-color: #ffffff;
  margin-bottom: 5px;
  transition: all 0.2s ease;
}

.mxtChecklistDiv.mxtChecklistDivNoTip {
  padding: 14px 10px;
}

.mxtChecklistDiv:hover {
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}

.mxtChecklistDiv.mxtChecklistCheckDiv .mxtChecklistTipDiv {
  margin-left: 25px;
}

.mxtChecklistHeader {
  display: flex;
  position: relative;
  background: white;
  border-top-left-radius: var(--mxt-corner-roundness);
  border-top-right-radius: var(--mxt-corner-roundness);
}

.mxtChecklistTab {
  cursor: pointer;
  padding: 15px 0px;
  flex: 1;
  text-align: center;
  font-size: 12px;
  font-weight: bold;
  color: #717171;
}

.mxtChecklistTab.mxtChecklistTabActive {
  color: #0f7e90;
}

.mxtChecklistUnderline {
  position: absolute;
  bottom: 0px;
  background: linear-gradient(to left, #167586, #144969);
  width: 50%;
  transition: all 0.2s ease;
  left: 0px;
  height: 4px;
  box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.05);
}

.mxtChecklistUnderline.mxtChecklistUnderlineFixes {
  left: 50%;
}

.mxtChecklistNoFixes {
  background: #f3f3f3;
  height: 100%;
  display: flex;
  flex-flow: column;
  justify-content: center;
  text-align: center;
  font-size: 14px;
}

.mxtChecklistFixNumber {
  right: 20px;
  top: 10px;
  color: white;
  text-align: center;
  font-size: 9px;
  line-height: 18px;
  font-weight: 700;
}

.mxtChecklistFixDot {
  position: absolute;
  background: #dd3938;
  height: 18px;
  width: 18px;
  border-radius: 9px;
  transition: all 0.3s ease;
  transform: scale(1);
}

.mxtChecklistFixDot.animatePop {
  animation-duration: 0.3s;
  animation-name: pop;
  animation-iteration-count: 1;
}

.mxtChecklistFixDot.animateShrink {
  transform: scale(0);
}

.mxtChecklistFixesNeeded {
  right: 0px;
  top: 0px;
}

img.mxtChecklistRowLinkImg:hover {
  opacity: 1;
}

img.mxtChecklistRowLinkImg {
  margin-right: -5px;
  margin-top: -5px;
  width: 20px;
  opacity: 0.5;
  transition: all 0.3s ease;
}

.mxtChecklistMoreHelp.animated {
  text-align: center;
  display: flex;
  flex-flow: column;
  align-items: center;
  padding: 20px 10px;
}
#mxtBlueprintContainer {
  touch-action: none;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: 0;
  background: white;
}

#mxtBlueprintCanvases {
  width: 100%;
  height: 100%;
  position: relative;
  background: no-repeat center center;
  background-size: cover;
}

.mxtBlueprintCanvas {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0px;
  top: 0px;
  background: rgba(1, 1, 1, 0);
}

.mxtBlueprintEditElevationHeightLabel {
  width: 100%;
  font-weight: normal;
  text-align: center;
  margin-bottom: 10px;
}

/* The snackbar - position it at the bottom and in the middle of the screen */
#mxtBlueprintToast {
  visibility: hidden;
  /* Hidden by default. Visible on click */
  min-width: 450px;
  /* Set a default minimum width */
  margin-left: -225px;
  /* Divide value of min-width by 2 */
  background-color: #ffffff22;
  color: #fff;
  /* White text color */
  text-align: center;
  /* Centered text */
  padding: 16px;
  /* Padding */
  position: absolute;
  /* Sit on top of the screen */
  left: 50%;
  /* Center the snackbar */
  display: flex;
  align-items: center;
  font-size: 12px;
  font-weight: normal;
  z-index: 2;
  padding: 10px;
  max-width: calc(100% - 700px);
  top: 25px;
  height: 44px;
  border-radius: var(--mxt-corner-roundness);
}

.mxtBlueprintToastImg {
  display: inline;
  margin-right: 5px;
}

/* Show the snackbar when clicking on a button (class added with JavaScript) */
#mxtBlueprintToast.mxtBlueprintToastShow {
  visibility: visible;
  /* Show the snackbar */
  /* Add animation: Take 0.5 seconds to fade in and out the taost.
  However, delay the fade out process for 2.5 seconds */
  -webkit-animation: mxtBlueprintToastFadein 0.5s;
  /*,mxtBlueprintToastFadeout 0.5s 2.5s;*/
  animation: mxtBlueprintToastFadein 0.5s;
  /*, mxtBlueprintToastFadeout 0.5s 2.5s;*/
}

/* Animations to fade the snackbar in and out */
@-webkit-keyframes mxtBlueprintToastFadein {
  from {
    top: 0;
    opacity: 0;
  }
  to {
    top: 30px;
    opacity: 1;
  }
}
@keyframes mxtBlueprintToastFadein {
  from {
    top: 0;
    opacity: 0;
  }
  to {
    top: 30px;
    opacity: 1;
  }
}
@-webkit-keyframes mxtBlueprintToastFadeout {
  from {
    top: 30px;
    opacity: 1;
  }
  to {
    top: 0;
    opacity: 0;
  }
}
@keyframes mxtBlueprintToastFadeout {
  from {
    top: 30px;
    opacity: 1;
  }
  to {
    top: 0;
    opacity: 0;
  }
}
#mxtBlueprintDrawingHeight {
  font-size: 9px;
  font-style: italic;
  font-weight: normal;
  width: 200px;
  height: 40px;
  position: absolute;
  bottom: 20px;
  background-color: #ffffff22;
  z-index: 2;
  left: 50%;
  transform: translate(-50%, 0);
  padding: 10px;
  color: white;
}

.mxtBlueprintDrawingHeightImg {
  margin-right: 5px;
}

#mxtBlueprintEditMeasurementError {
  font-size: 11px;
  color: red;
  text-align: center;
}

#mxtBlueprintInset {
  width: 100%;
  height: 100%;
  position: relative;
}

.mxtBlueprintFlex {
  display: flex;
  align-items: center;
}

#mxtBlueprintControls {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.mxtBlueprintButtonGroup {
  position: absolute;
  height: 65px;
  box-sizing: border-box;
  z-index: 2;
}

#mxtBlueprintTopLeftButtonGroup {
  top: 0px;
  left: 0px;
}

#mxtBlueprintTopRightButtonGroup {
  top: 0px;
  right: 0px;
  padding-right: 25px;
  padding-top: 25px;
}

#mxtBlueprintTopRightButtonGroup > button, #mxtBlueprintTopRightButtonGroup > div {
  float: right;
}

#mxtBlueprintBottomLeftButtonGroup {
  bottom: 0px;
  left: 0px;
  padding-left: 25px;
  padding-bottom: 25px;
}

#mxtBlueprintBottomLeftButtonGroup > button, #mxtBlueprintBottomLeftButtonGroup > div {
  float: left;
}

#mxtBlueprintBottomRightButtonGroup {
  bottom: 0px;
  right: 0px;
  margin-right: 25px;
  margin-bottom: 25px;
}

#mxtBlueprintBottomRightButtonGroup > button, #mxtBlueprintBottomRightButtonGroup > div {
  float: right;
}

#mxtBlueprintSpaceModal {
  left: 35px;
  width: 284px;
  bottom: 72px;
}

.mxtBlueprintModalImageContainer {
  margin-bottom: 10px;
  margin-right: 10px;
}

.mxtBlueprintModalImageContainer:nth-child(3) {
  margin-right: 0px;
}

.mxtBlueprintModalImageContainer p {
  user-select: none;
  font-weight: 500;
  width: 68px;
}

.mxtBlueprintModalImage {
  margin-bottom: 5px;
  cursor: pointer;
  width: 68px;
}

.mxtBlueprintModalImageBorder {
  border: 1px solid gray;
}

.mxtBlueprintImageSelected {
  border: 4px solid var(--toggle-blue);
}

#mxt-blueprint-altimeter {
  z-index: 2;
  position: absolute;
  bottom: 25px;
  left: 25px;
}

div#mxtBlueprintStairsModal {
  width: 250px;
}

.mxt-blueprint-intro-modal-split {
  display: flex;
  height: calc(100% - 92px);
  position: relative;
  padding: 40px;
}

.mxt-blueprint-intro-modal-left {
  display: flex;
  flex-flow: column;
  justify-content: center;
  flex: 1;
}

.mxt-blueprint-intro-modal-right {
  display: grid;
  flex: 1;
  justify-content: center;
  height: 100%;
  overflow: hidden;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr 1fr 1fr;
  position: relative;
  min-width: 400px;
  padding-left: 10px;
}

.mxt-blueprint-intro-modal-secondary-relative-container {
  position: relative;
  height: 100%;
  width: 100%;
}

.mxt-blueprint-intro-modal-secondary-container {
  display: flex;
  align-items: center;
  position: absolute;
  height: 100%;
  width: 100%;
}

.mxt-blueprint-intro-modal-secondary-image-container {
  flex: 1;
  height: 100%;
  max-width: 150px;
  margin-right: 15px;
}

.mxt-blueprint-intro-modal-secondary-text-container {
  flex: 1;
}

.mxt-blueprint-intro-modal-secondary-header {
  font-size: 18px;
  font-weight: bold;
}

@media screen and (min-width: 1280px) and (min-height: 806px) {
  .mxt-modal-div.mxt-blueprint-intro-modal {
    width: 1024px;
    height: 768px;
  }
}
@media screen and (max-width: 1000px), (max-height: 640px) {
  .mxt-blueprint-intro-modal-split {
    flex-flow: column;
    overflow: auto;
  }

  .mxt-blueprint-intro-modal-right {
    overflow: unset;
    grid-template-rows: 150px 150px 150px;
  }

  .mxt-blueprint-intro-modal-left {
    display: block;
  }

  .mxt-modal-div.mxt-blueprint-intro-modal {
    max-width: 80%;
    height: calc(100% - 40px);
  }

  #mxt-blueprint-intro-start-creating {
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 1000px) and (max-width: 1280px), (min-height: 640px) and (max-height: 806px) {
  .mxt-modal-div.mxt-blueprint-intro-modal {
    width: 800px;
    height: 600px;
  }
}
.mxtBlueprintFlooringImages.mxtBlueprintFlex {
  justify-content: flex-start;
  padding: 0px;
  align-items: flex-start;
}

.mxt-blueprint-action-menu.mxt-action-menu {
  z-index: 10;
  padding: 10px;
  font-size: 11px;
  font-weight: bold;
  width: 198px;
}

div#mxtBlueprintMetricToggleModal {
  z-index: 6;
  background: #f7f7f7;
  border-radius: var(--mxt-corner-roundness);
  display: flex;
  flex-flow: column;
  align-items: center;
  padding: 40px 44px;
  color: #666666;
}

.mxtBlueprintMetricToggleModalHeader {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
}

.mxtBlueprintMetricToggleModalText {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 20px;
}

#mxtBlueprintMetricToggleModalBackground {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.5);
}

.mxtBlueprintMetricToggleModalLabel {
  text-align: left;
  width: 100%;
  font-size: 11px;
  font-weight: bold;
  margin-bottom: 10px;
  user-select: none;
}

#mxtBlueprintMetricToggleContents {
  width: 300px;
  position: relative;
  display: flex;
  flex-flow: column;
  padding: 40px 0px;
}

div#mxtBlueprintMetricToggle {
  margin-bottom: 25px;
}

.mxt-blueprint-modal-button:first-of-type {
  margin-top: 20px;
}

.mxt-blueprint-modal-button {
  margin-top: 10px;
  width: 100%;
}

.mxt-carousel-container {
  padding-bottom: 10px;
}

#mxtBlueprintCreateRoomImage {
  padding-right: 5px;
}

.mxtBlueprintModalContent {
  padding: 10px;
}

.mxtBlueprintModalHeader {
  font-size: 11px;
  font-weight: bold;
  color: var(--dark-grey);
  margin-bottom: 10px;
}

.mxtBlueprintUnderCarouselLabel {
  font-size: 10px;
  font-weight: 500;
  text-align: center;
  margin-top: -5px;
  /* caruosels have padding bottom of 10px, didnt wnt to change that app wide*/
  margin-bottom: 10px;
}

.mxtBlueprintModalMoreOptionsCollapsed.mxtBlueprintModalMoreOptions img {
  transform: rotate(0deg);
}

.mxtBlueprintModalMoreOptions img {
  transition: all 0.3s ease;
  transform: rotate(90deg);
}

.mxtBlueprintModalMoreOptions {
  font-weight: bold;
  display: flex;
  margin: 20px 0px;
  font-size: 11px;
  height: 30px;
  line-height: 30px;
  /* width: 100%; */
  justify-content: space-between;
  cursor: pointer;
}

.mxtBlueprintModalMoreOptionsContainer {
  height: auto;
}

.mxtBlueprintModalMoreOptionsContainer.mxtBlueprintModalMoreOptionsContainerCollapsed {
  height: 0px;
  overflow: hidden;
}

.mxt-rightclick-guidance-content-right {
  flex-flow: column;
  align-items: start;
}

#mxtBlueprintRightClickGuidanceModal {
  width: 260px;
}

.mxt-nowalls-guidance-content-right {
  flex-flow: column;
  align-items: start;
}

#mxtBlueprintNoWallsGuidanceModal {
  width: 350px;
}

.mxt-blueprint-pulse-container {
  z-index: 100;
  position: absolute;
  pointer-events: none;
}

.mxt-blueprint-height-pulse-container {
  z-index: 100;
  position: absolute;
  pointer-events: none;
}

.mxt-blueprint-pulse-dot {
  width: 10px;
  height: 10px;
  border: 5px solid white;
  border-radius: 600px;
  background-color: white;
  z-index: 10;
  position: absolute;
}

.mxt-blueprint-base-pulse {
  background: transparent;
  border-radius: 600px;
  height: 50px;
  width: 50px;
  position: absolute;
  top: -20px;
  left: -20px;
  z-index: 1;
  opacity: 0;
  border: 5px solid #4CCFFF;
}

.mxt-blueprint-pulse1 {
  animation: mxt-blueprint-pulse1 2s ease-out infinite;
}

.mxt-blueprint-pulse2 {
  /*  animation: pulse1 2s ease-out infinite;
  animation-delay: 500ms;*/
}

.mxt-blueprint-pulse3 {
  animation: mxt-blueprint-pulse1 2s ease-out infinite;
  animation-delay: 1000ms;
}

.mxt-blueprint-pulse4 {
  /*  animation: pulse1 2s ease-out infinite;
  animation-delay: 1500ms;*/
}

@keyframes mxt-blueprint-pulse1 {
  0% {
    transform: scale(0.1, 0.1);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: scale(1.2, 1.2);
    opacity: 0;
  }
}
.mxtBlueprintCeilingPopover {
  padding: 15px;
}

.mxtBlueprintCeilingPopover .renderer-toolbelt-options-opt {
  display: flex;
  justify-content: center;
}

.mxtBlueprintToolbarPopover.mxt-popover {
  max-width: none;
}

.mxtBlueprintStairsText {
  margin-left: 27px;
}

div#mxtBlueprintStairsValuesGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.mxtBlueprintStairsPopover {
  display: flex;
  flex-flow: column;
  align-items: center;
  padding: 20px;
}

.mxtBlueprintStairsPopoverTabRow {
  display: flex;
}

.mxtBlueprintStairsPopoverTabContentContainer {
  max-height: 300px;
  overflow: auto;
  margin-bottom: 20px;
  background-color: #f4f4f4;
  border-bottom-left-radius: var(--mxt-corner-roundness);
  border-bottom-right-radius: var(--mxt-corner-roundness);
  width: 500px;
}

button.mxt-btn.mxtBlueprintStairTabHeader {
  background-color: white;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
  flex: 1 1 100%;
  font-size: 14px;
  font-weight: bold;
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.2), 0 0 2px 1px rgba(0, 0, 0, 0.05);
}

button.mxt-btn.mxtBlueprintStairTabHeader.mxtBlueprintStairTabHeaderActive {
  background-color: #f4f4f4;
  box-shadow: none;
}

.mxtBlueprintStairsPopoverTabContent {
  padding: 20px;
}

.mxtBlueprintStairsTemplateGrid.mxtBlueprintStairsPopoverTabContent {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.mxtBlueprintStairsTemplateGridElement {
  box-shadow: none;
  display: flex;
  flex-flow: column;
  align-items: center;
  text-align: center;
  font-size: 11px;
  font-weight: 500;
}

.mxtBlueprintStairsTemplateGridElement img:hover {
  box-shadow: var(--mxt-dark-drop-shadow);
  cursor: pointer;
}

.mxtBlueprintStairsTemplateGridElement.mxtBlueprintStairsTemplateGridElementCurrent img {
  border: 3px solid var(--toggle-blue);
}

.mxtBlueprintStairsTemplateGridElement img {
  width: 110px;
  height: 110px;
}

.mxtBlueprintStairsBetweenDecksGuidance {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.mxtBlueprintStairsTemplateGridElement span {
  padding-top: 10px;
  padding-bottom: 7px;
}

.mxtBlueprintStairsPopoverTabContent.mxtBlueprintStairsBetweenDecks {
  display: flex;
  flex-flow: column;
  align-items: center;
}

.mxtBlueprintStairsBetweenDecksElement {
  width: 130px;
  display: flex;
  flex-flow: column;
  align-items: center;
  font-size: 12px;
  font-weight: bold;
  text-align: center;
}

.mxtBlueprintStairsBetweenDecksElement span {
  line-height: 1.5;
}

.mxtBlueprintStairsBetweenDecksHelp {
  font-size: 11px;
  font-weight: 500;
  font-style: italic;
  line-height: 1.45;
  width: 240px;
  text-align: center;
  margin-top: 30px;
  margin-bottom: 20px;
}
.mxtBlueprintToolbarPopoverContent {
  width: 250px;
  padding: 10px;
}

.mxtBlueprintToolbarPopoverHeader {
  font-size: 11px;
  font-weight: bold;
  margin-bottom: 10px;
}

.mxtBlueprintToolbarPopoverGrid {
  padding: 0px 10px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  font-size: 11px;
  font-weight: 500;
  text-align: center;
}

.mxtBlueprintToolbarPopoverGridElement {
  display: flex;
  flex-flow: column;
}

.mxtBlueprintToolbarPopoverGridElement img:hover {
  box-shadow: var(--mxt-dark-drop-shadow);
}

.mxtBlueprintToolbarPopoverGridElement img {
  width: 100px;
  height: 100px;
  box-shadow: none;
  cursor: pointer;
}

.mxtBlueprintToolbarPopoverGridElement span {
  margin-top: 10px;
  line-height: 1.45;
}
.fancy-full-screen-load {
  background: rgba(0, 0, 0, 0.75);
  color: #ffffff;
  text-align: center;
  display: flex;
  justify-content: center;
}

.fancy-full-screen-load-content {
  display: flex;
  flex-flow: column;
  justify-content: center;
  height: 100%;
  max-width: 840px;
}

.fancy-full-screen-load-header {
  font-size: 20px;
  font-weight: bold;
  line-height: 2.7;
}

.fancy-full-screen-load-description {
  font-size: 13.8px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.3px;
  color: rgba(255, 255, 255, 0.8);
}

.fancy-full-screen-load-images {
  display: flex;
  justify-content: center;
  padding: 0px 20px;
  position: relative;
}

.fancy-full-screen-load-image {
  width: 100%;
}

.fancy-full-screen-load-progress-contain {
  display: flex;
  justify-content: center;
  padding: 20px 20px 10px 20px;
}

.fancy-full-screen-load-progress {
  max-width: 400px;
  width: 100%;
  height: 8px;
  border-radius: var(--mxt-corner-roundness);
  background-color: rgba(239, 239, 244, 0.5);
}

.fancy-full-screen-load-progress-bar {
  height: 100%;
  width: 0%;
  border-radius: var(--mxt-corner-roundness);
  background-image: linear-gradient(to right, #144969, #167586);
  transition: width 0.5s ease;
}

.fancy-full-screen-load-progress-text {
  padding-top: 10px;
  font-size: 10px;
  font-weight: bold;
  letter-spacing: 0.4px;
}

.fancy-full-screen-load-progress-percent {
  color: rgba(239, 239, 244, 0.75);
}

/* Styles for Gap Philler menu screen */
.mxt-pane-top {
  background: #fff;
  padding: 10px;
}

.mxt-pane-top p, .mxt-pane-top span, .mxt-pane-top h5,
.mxt-pane-bottom p, .mxt-pane-bottom span, .mxt-pane-bottom h5 {
  color: #666666;
}

.mxt-pane-top > * {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  padding: 15px 10px;
}

.gap-philler-auto-section-headline {
  border-bottom: 2px solid rgba(102, 102, 102, 0.15);
  margin: 10px 10px;
  font-weight: bold;
}

.gap-philler-list {
  padding: 15px 10px;
}

.gap-philler-list.no-gaps {
  display: flex;
  align-items: center;
  height: 300px;
  padding: 0 50px;
  font-style: italic;
  text-align: center;
}

.gap-philler-list-item {
  display: flex;
  align-items: center;
  height: 60px;
  margin-bottom: 5px;
  background: #fff;
  border: 3px solid transparent;
  border-radius: 5px;
  box-shadow: 0px 1px 2px 0 rgba(0, 0, 0, 0.2);
}

.gap-philler-list-item.selected {
  border: 3px solid var(--toggle-blue);
}

.gap-philler-list-item-image-container {
  flex: 1;
}

.gap-philler-list-item-image-container img {
  max-height: 55px;
}

.gap-philler-list-item img {
  display: inline-block;
}

.gap-philler-list-item button {
  flex: 1;
  height: 35px;
  width: 35px;
}

.gap-philler-list-item-text-container {
  flex: 6;
}

.gap-philler-list-item-text-container > * {
  color: #666666;
  height: 13px;
  font-size: 10px;
}

.gap-philler-list-item-text-container p:first-child {
  font-weight: bold;
  margin-top: 5px;
}

.gap-philler-list-item-text-container span {
  font-weight: 300;
  font-style: italic;
}

.mxt-molding-toggle-container {
  padding: 10px 0;
}
#account-page {
  background: #f0f0f0;
  z-index: 99;
  /*modals are 100000*/
}

.account-page-inner {
  position: relative;
  max-width: 980px;
  margin: auto;
  padding: 0px 20px;
}

#openFromProjectDetail {
  position: absolute;
  right: 20px;
  bottom: -20px;
}

#account-page-header-buttons {
  position: relative;
  width: 100%;
  height: 200px;
  padding: 20px 0px;
  background: white;
}

.primary-logo {
  cursor: pointer;
  margin-bottom: 50px;
}

.projectBigImage {
  margin-top: 50px;
  margin-bottom: 50px;
  float: none;
  -webkit-box-shadow: 0px 0px 25px #c8c8c8;
  -moz-box-shadow: 0px 0px 25px #c8c8c8;
  box-shadow: 0px 0px 25px #c8c8c8;
}

/* Create First Project Div - displayed when user has no saved projects */
.createFirstProjectDiv {
  height: 300px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px dashed #a5a5a5;
  background: rgba(255, 255, 255, 0.5);
  transition: all 0.5s ease;
  cursor: pointer;
}

.createFirstProjectDiv:hover {
  background: white;
}

.createFirstProjectDivInner {
  display: flex;
  flex-flow: column;
  align-items: center;
}

.createFirstProjectImage {
  width: 37px;
  margin-bottom: 8px;
  opacity: 0.25;
  transition: all 0.5s ease;
}

.createFirstProjectDiv:hover .createFirstProjectImage {
  opacity: 0.5;
}

.createFirstProjectHeader {
  color: #bfbfbf;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  opacity: 0.75;
  transition: all 0.5s ease;
}

.createFirstProjectDiv:hover .createFirstProjectHeader {
  opacity: 1;
}

.account-page-title {
  margin: 0px;
  line-height: 80px;
  font-weight: 500;
  flex-grow: 1;
  color: #666666;
}

.mxt-account-page-project-image .mxt-hover-over-image {
  display: flex;
  opacity: 0;
  flex-flow: column;
  transition: all 0.25s ease-in-out;
}

.mxt-account-page-project-image:hover .mxt-hover-over-image {
  opacity: 1;
}

.mxt-account-page-project-image:hover .mxt-hover-over-image.linkable {
  cursor: pointer;
}

.mxt-account-page-project-image:hover .mxt-hover-over-image.text-only {
  flex-direction: column;
  color: white;
}

.mxt-account-page-project-image .mxt-hover-over-image.text-only h4 {
  margin: 8px 0;
}

.mxt-account-page-project-image .mxt-hover-over-image h4.pano-link {
  margin: 0;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 6px;
  font-size: 12px;
  color: var(--mxt-non-cta-button-font-color);
  background-color: #FFF;
  box-shadow: var(--mxt-dark-drop-shadow);
}

#mxt-account-page-projects, #mxt-account-page-projects-table {
  position: relative;
}

.mxt-grid-item-content.mxt-account-page-project-image {
  height: 225px;
  position: relative;
}

.mxt-grid-item-content.mxt-account-page-project-image {
  /** used for fallback image */
}
.mxt-grid-item-content.mxt-account-page-project-image .mxt-grid-item-bg-img {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f2f2f2;
}
.mxt-grid-item-content.mxt-account-page-project-image .mxt-grid-item-bg-img .mxt-grid-item-img {
  width: 50px;
  height: 50px;
  opacity: 0.35;
}

.mxt-account-page-project {
  margin: 10px;
  box-shadow: -0.1px 2px 2px 0 rgba(0, 1, 1, 0.1);
  background-color: #ffffff;
}

.mxt-account-page-project.mxt-account-page-project-sm {
  height: 286px;
}

.mxt-grid-item.mxt-account-page-project:hover {
  box-shadow: -0.1px 2px 12px 0 rgba(0, 1, 1, 0.3);
}

.mxt-account-page-project-detail-area {
  padding: 20px;
  color: #808080;
  text-align: left;
  font-weight: 500;
}

.mxt-account-page-project-detail-area.mxt-account-page-project-detail-area-sm {
  height: 61px;
}

.mxt-account-page-project-detail-name {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 14px;
}

.mxt-account-page-project-detail-time {
  font-size: 10px;
}

.mxt-account-page-project-detail-bottom {
  position: relative;
  bottom: -10px;
  text-align: right;
  display: flex;
  justify-content: space-between;
}

.mxt-account-page-project-top-right, .mxt-account-page-project-top-right-duplicate {
  position: absolute;
  right: 10px;
  top: 10px;
  width: 30px;
  cursor: pointer;
}

.mxt-account-page-project-top-right-duplicate {
  right: 40px;
}

.mxt-account-page-project-detail-social-row {
  display: flex;
}

.mxt-account-page-project-detail-social {
  width: 25px;
  height: 25px;
  opacity: 0.75;
  transition: 0.5s opacity ease;
  cursor: pointer;
}

.mxt-account-page-project-detail-social:hover {
  opacity: 1;
}

.mxt-btn.mxt-account-page-open-project, .mxt-btn.mxt-account-page-open-blueprint {
  color: var(--toggle-blue);
}

.mxt-btn.mxt-account-page-open-blueprint {
  margin-top: 10px;
}

#mxt-account-page-logo {
  width: auto;
  max-width: 400px;
}

#mxt-account-page-right-header {
  text-align: right;
  position: absolute;
  width: 100%;
  right: 20px;
}

#mxt-account-page-logout {
  color: var(--toggle-blue);
  cursor: pointer;
}

#mxt-account-page-logo-container {
  height: 100px;
  display: flex;
  flex-flow: column;
  justify-content: center;
}

.mxt-account-page-project-detail-view {
  color: var(--toggle-blue);
  cursor: pointer;
  font-weight: 600;
}

.account-page-marxent-disclaimer {
  color: gray;
  opacity: 0.5;
  margin: 40px 0px;
}

.account-page-marxent-disclaimer.marxent-disclaimer a {
  color: gray;
}

.account-page-marxent-disclaimer.marxent-disclaimer a:visited {
  color: gray;
}

#project-detail-back-btn {
  position: absolute;
  bottom: 25px;
  color: var(--toggle-blue);
  font-weight: bold;
  cursor: pointer;
  user-select: none;
}

div#project-detail-page {
  text-align: center;
  color: #666666;
  margin-top: 80px;
}

#project-detail-page-project-date {
  color: rgba(102, 102, 102, 0.5);
  margin-top: 20px;
}

div#project-detail-screenshot-grid-container,
div#project-detail-hd-pano-grid-container {
  position: relative;
}

.project-detail-box-header {
  background: #f8f8f8;
  padding: 50px 0px;
  margin: 40px 0px 0px;
  color: #808080;
  border-bottom: 2px solid #ebebeb;
  position: relative;
}

.project-detail-bom-buttons {
  display: flex;
  position: absolute;
  justify-content: center;
  width: 100%;
  bottom: -28px;
  z-index: 1;
}

div#project-bom {
  margin: auto;
  height: 620px;
  background: white;
  overflow: auto;
  padding-top: 30px;
  display: flex;
  justify-content: center;
}

div#project-bom a {
  color: #337ab7;
  text-decoration: underline;
}

#project-detail-panorama {
  height: 400px;
}

div#project-detail-panorama-container {
  background: white;
  -webkit-box-shadow: 0px 0px 5px 1px #bababa;
  -moz-box-shadow: 0px 0px 5px 1px #bababa;
  box-shadow: 0px 0px 5px 1px #bababa;
}

#project-detail-panorama-placeholder {
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  height: 400px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  color: #bfbfbf;
  background: #f7f7f7;
  line-height: 2.14;
}

#project-detail-panorama-placeholder img {
  width: 44px;
  opacity: 0.25;
  margin-bottom: 10px;
}

#mxt-account-page-open-error {
  box-shadow: 0px 1px 2px 0 rgba(0, 0, 0, 0.2);
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  text-align: center;
  padding: 40px;
  top: 230px;
  width: 270px;
  right: 20px;
  border-radius: var(--mxt-corner-roundness);
}

#mxt-account-page-open-error-done {
  color: var(--toggle-blue);
  font-weight: bold;
  cursor: pointer;
  user-select: none;
}

p#mxt-account-page-open-error-text {
  margin-top: 20px;
  margin-bottom: 30px;
  font-size: 14px;
  font-weight: 500;
  color: #808080;
}

#mxt-account-page-open-error-header {
  font-size: 20px;
  font-weight: 500;
  color: #666666;
}

#mxt-account-no-render-banner {
  background: var(--primary-right-gradient);
  padding: 23px;
  text-align: center;
  color: white;
}

#noProjectsYetNoRenderer {
  height: auto;
}

#noProjectsYetNoRendererText {
  padding: 0px 50px 0px 70px;
  text-align: left;
  color: #808080;
}

#noProjectsYetNoRendererTextHeader {
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 20px;
}

.noProjectsYetNoRendererHalf {
  flex: 1 1 50%;
}

#noProjectsYetNoRendererTextHeader {
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 20px;
}

#noProjectsYetNoRendererMobileImg {
  display: none;
}

button.project-detail-bom-btn {
  margin: 0px 10px;
}

@media all and (max-width: 670px) {
  #noProjectsYetNoRendererMobileImg {
    display: block;
  }

  #noProjectsYetNoRendererDesktopImg {
    display: none;
  }

  #noProjectsYetNoRenderer {
    flex-wrap: wrap;
  }

  .noProjectsYetNoRendererHalf {
    flex: 1 1 100%;
  }

  #noProjectsYetNoRendererText {
    padding: 30px 40px 40px 30px;
  }
}
@media all and (max-width: 500px) {
  #mxt-account-page-open-error {
    right: 0;
    left: 0;
    margin-left: auto;
    margin-right: auto;
    min-width: 270px;
    max-width: 75%;
    top: 270px;
  }

  #mxt-account-page-username {
    display: none;
  }

  #project-detail-back-btn {
    bottom: auto;
    top: 0px;
  }

  #mxt-account-page-logo {
    max-width: 200px;
    margin-top: 35px;
  }

  #account-page-header-buttons {
    height: 245px;
  }

  #openFromProjectDetail {
    bottom: -65px;
    right: 50%;
    transform: translateX(50%);
  }

  .project-detail-bom-buttons {
    flex-wrap: wrap;
    bottom: 15px;
  }

  .project-detail-box-header {
    height: 250px;
  }

  button.project-detail-bom-btn {
    margin: 10px;
  }
}
.mxt-tip-bottom:before {
  border-color: rgba(0, 0, 0, 0);
  border-bottom-color: rgba(0, 0, 0, 0.2);
  border-width: 11px;
  margin-left: -11px;
}

.mxt-tip-bottom:after, .mxt-tip-bottom:before {
  left: 50%;
  bottom: 100%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}

.mxt-tip-bottom:after {
  border-color: rgba(213, 213, 213, 0);
  border-bottom-color: white;
  border-width: 10px;
  margin-left: -10px;
}

#projects-page-header {
  margin: 15px 0px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

#mxt-account-page-search-container .mxt-dropdown {
  z-index: 100;
  /*just above hover of project*/
}

div#mxt-account-page-search-container {
  display: flex;
  flex: 1;
  align-items: start;
  flex-wrap: wrap;
}

.mxt-account-page-search {
  max-width: 430px;
}

div.mxt-account-page-search-dates {
  padding: 0px 10px;
  font-size: 11px;
  color: #343434;
  height: 40px;
}

div.mxt-account-page-search-dates label {
  font-weight: bold;
  user-select: none;
  margin: 0px 10px;
}

input.mxt-account-page-search-date {
  height: 40px;
  width: 125px;
}

#projects-page-view-type {
  margin-right: 5px;
  display: flex;
  box-shadow: var(--mxt-non-cta-button-drop-shadow);
  height: 40px;
}

#mxt-account-page-projects-table {
  font-weight: bold;
  font-size: 13px;
}

#mxt-account-page-projects-table-headers {
  background: #aaaaaa;
  color: white;
  text-align: center;
}

.mxt-account-page-projects-table-row {
  height: 35px;
  display: flex;
  align-items: center;
  background: white;
}

.mxt-account-page-projects-table-row:nth-child(odd) {
  background: #f9f9f9;
}

.mxt-account-page-projects-table-row .mxt-account-page-table-value.mxt-account-page-table-project-name {
  cursor: pointer;
}

.mxt-account-page-table-value.mxt-account-page-table-project-name {
  flex: 1;
  text-align: left;
}

.mxt-account-page-table-value {
  flex: 0 0 100px;
  text-align: center;
  line-height: 35px;
}

.mxt-account-page-table-value:first-child {
  margin-left: 20px;
}

.mxt-account-page-table-value:last-child {
  margin-right: 20px;
}

.mxt-account-page-table-divider {
  flex: 0 1 50px;
}

#mxt-account-page-projects-table-pagination {
  margin-top: 20px;
}

img.mxt-account-page-table-action {
  width: 30px;
  opacity: 0.6;
  transition: 0.3s all ease;
  cursor: pointer;
}

img.mxt-account-page-table-action:hover {
  opacity: 1;
}

.mxt-account-page-table-actions {
  display: flex;
  justify-content: center;
}

.mxt-account-page-projects-table-row:hover {
  background: #f3f3f3;
}

.mxt-account-page-thumbnail-help {
  display: flex;
  align-items: center;
  color: white;
  cursor: pointer;
  position: absolute;
  bottom: 30px;
  font-size: 11px;
  font-weight: bold;
}

div#noProjectsFromSearch {
  text-align: center;
  color: #666666;
}

#noProjectsFromSearchHeader {
  font-size: 18px;
  font-weight: bold;
  margin-top: 80px;
  margin-bottom: 40px;
}

.noProjectsFromSearchSuggestions {
  font-size: 14px;
  font-weight: bold;
}
@charset "UTF-8";

/*!
 * Pikaday
 * Copyright © 2014 David Bushell | BSD & MIT license | https://dbushell.com/
 */

.pika-single {
    z-index: 9999;
    display: block;
    position: relative;
    color: #333;
    background: #fff;
    border: 1px solid #ccc;
    border-bottom-color: #bbb;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/*
clear child float (pika-lendar), using the famous micro clearfix hack
http://nicolasgallagher.com/micro-clearfix-hack/
*/
.pika-single:before,
.pika-single:after {
    content: " ";
    display: table;
}
.pika-single:after { clear: both }
.pika-single { *zoom: 1 }

.pika-single.is-hidden {
    display: none;
}

.pika-single.is-bound {
    position: absolute;
    box-shadow: 0 5px 15px -5px rgba(0,0,0,.5);
}

.pika-lendar {
    float: left;
    width: 240px;
    margin: 8px;
}

.pika-title {
    position: relative;
    text-align: center;
}

.pika-label {
    display: inline-block;
    *display: inline;
    position: relative;
    z-index: 9999;
    overflow: hidden;
    margin: 0;
    padding: 5px 3px;
    font-size: 14px;
    line-height: 20px;
    font-weight: bold;
    background-color: #fff;
}
.pika-title select {
    cursor: pointer;
    position: absolute;
    z-index: 9998;
    margin: 0;
    left: 0;
    top: 5px;
    filter: alpha(opacity=0);
    opacity: 0;
}

.pika-prev,
.pika-next {
    display: block;
    cursor: pointer;
    position: relative;
    outline: none;
    border: 0;
    padding: 0;
    width: 20px;
    height: 30px;
    /* hide text using text-indent trick, using width value (it's enough) */
    text-indent: 20px;
    white-space: nowrap;
    overflow: hidden;
    background-color: transparent;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 75% 75%;
    opacity: .5;
    *position: absolute;
    *top: 0;
}

.pika-prev:hover,
.pika-next:hover {
    opacity: 1;
}

.pika-prev,
.is-rtl .pika-next {
    float: left;
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAeCAYAAAAsEj5rAAAAUklEQVR42u3VMQoAIBADQf8Pgj+OD9hG2CtONJB2ymQkKe0HbwAP0xucDiQWARITIDEBEnMgMQ8S8+AqBIl6kKgHiXqQqAeJepBo/z38J/U0uAHlaBkBl9I4GwAAAABJRU5ErkJggg==');
    *left: 0;
}

.pika-next,
.is-rtl .pika-prev {
    float: right;
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAeCAYAAAAsEj5rAAAAU0lEQVR42u3VOwoAMAgE0dwfAnNjU26bYkBCFGwfiL9VVWoO+BJ4Gf3gtsEKKoFBNTCoCAYVwaAiGNQGMUHMkjGbgjk2mIONuXo0nC8XnCf1JXgArVIZAQh5TKYAAAAASUVORK5CYII=');
    *right: 0;
}

.pika-prev.is-disabled,
.pika-next.is-disabled {
    cursor: default;
    opacity: .2;
}

.pika-select {
    display: inline-block;
    *display: inline;
}

.pika-table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    border: 0;
}

.pika-table th,
.pika-table td {
    width: 14.285714285714286%;
    padding: 0;
}

.pika-table th {
    color: #999;
    font-size: 12px;
    line-height: 25px;
    font-weight: bold;
    text-align: center;
}

.pika-button {
    cursor: pointer;
    display: block;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    outline: none;
    border: 0;
    margin: 0;
    width: 100%;
    padding: 5px;
    color: #666;
    font-size: 12px;
    line-height: 15px;
    text-align: right;
    background: #f5f5f5;
}

.pika-week {
    font-size: 11px;
    color: #999;
}

.is-today .pika-button {
    color: #33aaff;
    font-weight: bold;
}

.is-selected .pika-button,
.has-event .pika-button {
    color: #fff;
    font-weight: bold;
    background: #33aaff;
    box-shadow: inset 0 1px 3px #178fe5;
    border-radius: 3px;
}

.has-event .pika-button {
    background: #005da9;
    box-shadow: inset 0 1px 3px #0076c9;
}

.is-disabled .pika-button,
.is-inrange .pika-button {
    background: #D5E9F7;
}

.is-startrange .pika-button {
    color: #fff;
    background: #6CB31D;
    box-shadow: none;
    border-radius: 3px;
}

.is-endrange .pika-button {
    color: #fff;
    background: #33aaff;
    box-shadow: none;
    border-radius: 3px;
}

.is-disabled .pika-button {
    pointer-events: none;
    cursor: default;
    color: #999;
    opacity: .3;
}

.is-outside-current-month .pika-button {
    color: #999;
    opacity: .3;
}

.is-selection-disabled {
    pointer-events: none;
    cursor: default;
}

.pika-button:hover,
.pika-row.pick-whole-week:hover .pika-button {
    color: #fff;
    background: #ff8000;
    box-shadow: none;
    border-radius: 3px;
}

/* styling for abbr */
.pika-table abbr {
    border-bottom: none;
    cursor: help;
}


.mxt-dropdown-option-img {
  width: 18px;
  height: 18px;
  margin-left: 25px;
  margin-right: 15px;
}

.mxt-dropdown-container {
  position: relative;
  margin: 5px 5px;
}

.mxt-dropdown {
  position: absolute;
  border-radius: var(--mxt-corner-roundness);
  box-shadow: 0px 1px 2px 0 rgba(0, 0, 0, 0.2);
  padding: 0px 15px;
  background: white;
  min-height: 40px;
  min-width: 170px;
  opacity: 1;
  transition: all 0.5s ease;
}

.mxt-dropdown-no-checkbox {
  min-width: 100px;
}

.mxt-dropdown-options {
  padding-bottom: 10px;
}

.mxt-dropdown:hover {
  opacity: 1;
  box-shadow: 0px 2px 2px 0 rgba(0, 0, 0, 0.4);
}

.mxt-dropdown-option {
  margin-right: 10px;
}

.mxt-dropdown-option-no-checkbox p:hover {
  color: var(--selected);
}

.mxt-dropdown-option-no-checkbox p {
  cursor: pointer;
}

.mxt-dropdown-header {
  display: flex;
  cursor: pointer;
  min-height: 40px;
  align-items: center;
}

.mxt-dropdown-header h5 {
  font-weight: 600;
  font-size: 11px;
  color: #666666;
  margin: 0px;
}

.mxt-dropdown-header-current {
  margin: 0px;
  font-size: 9px;
}

.mxt-dropdown-header-image {
  width: 40px;
  height: 40px;
}

.mxt-dropdown-header .mxt-dropdown-chevron.mxt-dropdown-rotate-chevron {
  transform: rotate(0deg);
}

.mxt-dropdown-header .mxt-dropdown-chevron {
  width: 25px;
  height: 25px;
  position: relative;
  margin-left: 10px;
  transform: rotate(-90deg);
  transition: 0.5s all ease;
}

/* Create the checkmark/indicator (hidden when not checked) */
.mxt-custom-checkbox-container .mxt-custom-checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.mxt-custom-checkbox-container input:checked ~ .mxt-custom-checkmark:after {
  display: block;
}

.mxt-custom-checkbox-container {
  display: block;
  position: relative;
  cursor: pointer;
  display: flex;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Style the checkmark/indicator */
.mxt-custom-checkbox-container .mxt-custom-checkmark:after {
  left: 4px;
  top: 0px;
  width: 5px;
  height: 10px;
  border: solid #3aa8bc;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

/* hide default checkbox*/
.mxt-custom-checkbox {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.mxt-custom-checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 18px;
  width: 18px;
  background-color: #fff;
  border: 3px solid #d7d7d7;
}

input:checked ~ .mxt-custom-checkmark {
  border: solid 3px #3aa8bc;
}

.mxt-dropdown-option-quantity {
  margin-left: 3px;
  font-weight: bold;
}

.mxt-dropdown-option.mxt-dropdown-option-disabled {
  color: #cecece;
}

.mxt-dropdown-option.mxt-dropdown-option-disabled .mxt-custom-checkbox-container {
  cursor: not-allowed;
}
.settings-group {
  padding: 10px 0px 30px;
}

p.settings-header {
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 10px;
}

.settings-options {
  display: flex;
  width: 100%;
  height: 44px;
  border-radius: var(--mxt-corner-roundness);
  align-content: center;
  box-shadow: var(--mxt-dark-drop-shadow);
  background: #ffffff;
}

.mxt-btn.settings-option {
  line-height: 36px;
  font-size: 14px;
  width: 100%;
  height: 36px;
  text-align: center;
  cursor: pointer;
  margin: 4px;
  min-width: 0px;
}

#mxt-frames-per-second {
  position: absolute;
  right: 20px;
  top: 80px;
  color: white;
  font-size: 14px;
  font-weight: bold;
  text-shadow: 0 2px 2px rgba(0, 0, 0, 0.5);
}
#inspiration-style-options {
  margin: 0 auto;
  left: 50%;
  transform: translateX(-50%);
}

#test-shoppable-image-container {
  position: relative;
  margin: 20px 0px;
  padding: 10px;
}

#inspirationSidePanelProducts {
  display: flex;
  flex-flow: column;
  padding: 15px;
}

.shoppable-flexbox {
  flex: 0 1;
}

div#inspirationSidePanelProductHeader {
  font-size: 24px;
  margin-top: 50px;
}

#inspirationSidePanelProductHeader .sidePanelHeader {
  margin-bottom: 20px;
  border-bottom: none;
}

#inspirationFilterDiv {
  position: relative;
  margin: 15px 0px;
}

#inspirationFilterDiv .dropdown {
  width: 50%;
  top: 60px;
}

.buttonRightImg {
  transform: rotate(0deg);
  transition: transform 0.75s ease;
}

.buttonRightImgFlipped {
  transform: rotate(180deg);
}

.shoppable-other-tabs {
  position: absolute;
  top: 0px;
  left: 0px;
  height: 100%;
  width: calc(100% - 18px);
  /*18 b/c of column gap in shoppable grid*/
}

.shoppable-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  height: 100%;
  grid-column-gap: 18px;
  grid-row-gap: 8px;
}

.shoppable-grid-image {
  cursor: pointer;
  width: 100%;
  height: 100%;
}

.shoppable-grid-image:hover {
  border: 2px solid rgba(var(--mxt-client-primary-rgb), 0.5);
}

.shoppable-grid-image.current-grid-image {
  border: 4px solid var(--mxt-client-primary);
}

#shoppable-areas {
  position: relative;
}

#shoppable-background-polaroid {
  position: absolute;
  width: 100%;
  height: 100%;
  transform: rotate(4deg);
}

.shoppable-image-polaroid {
  padding: 8px;
  background: rgba(255, 255, 255, 0.8);
}

#shoppable-background-image {
  width: 100%;
}

.shoppable-svg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

#shoppable-zoom-background {
  z-index: 10000;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}

#shoppable-zoom-background .shoppable-svg {
  overflow: hidden;
  max-height: 100%;
  max-width: 100%;
}

#shoppable-image {
  display: block;
  margin: 0px auto;
  width: 100%;
}

#shoppable-zoom-background #shoppable-image {
  /* must be outline otherwise svg size is off*/
  outline: 8px solid rgba(255, 255, 255, 0.8);
}

.shoppable-image-container {
  position: relative;
}

#shoppable-zoom-background .shoppable-image-container {
  /* max-width: 1200px; */
  flex: 0 0 75%;
}

#shoppable-main-svg:hover .inspiration-wireframe {
  stroke: gainsboro;
}

.inspiration-custom-cursor .inspiration-wireframe {
  cursor: inherit;
}

.inspiration-wireframe {
  fill: rgba(255, 255, 255, 0);
  stroke: rgba(220, 220, 220, 0.5);
  stroke-width: 2;
  cursor: pointer;
  transition: all 0.5s ease;
}

.inspiration-wireframe:hover {
  fill: rgba(255, 255, 255, 0.3);
}

.inspiration-wireframe.selected {
  fill: rgba(79, 193, 223, 0.3);
}

.inspiration-wireframe.highlighted {
  animation-duration: 0.5s;
  animation-name: keystonePulse;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}

div#numToPlaceElement {
  position: absolute;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  z-index: 10000;
  background: var(--primary-right-gradient);
  text-align: center;
  color: white;
  line-height: 30px;
  border: 2px solid white;
}

div.shoppable-image-icon {
  position: absolute;
  top: 10px;
  width: 40px;
  height: 40px;
  border-radius: 20px;
  box-shadow: none;
  cursor: pointer;
}

div#shoppable-layers {
  right: 60px;
}

div#shoppable-zoom {
  right: 10px;
}

#shoppable-layers-tag {
  right: 7px;
  bottom: 7px;
  position: absolute;
  font-size: 8px;
  user-select: none;
}

.shoppable-button-container {
  display: flex;
  justify-content: var(--space-evenly);
  flex-wrap: wrap;
}

.shoppable-button {
  margin: 10px 0px;
}

.shoppable-image-pdp {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: -25px;
  height: 50px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  color: #666666;
  background: white;
  padding: 7px;
  border-radius: var(--mxt-corner-roundness);
  box-shadow: var(--mxt-dark-drop-shadow);
}

#shoppable-zoom-background .shoppable-image-pdp {
  bottom: 0px;
}

.shoppable-image-pdp-detail-col {
  flex: 1;
  min-width: 0;
  /* To prevent weird overflow issues */
}

.shoppable-image-pdp-pricing-col {
  margin-left: 20px;
}

.shoppable-image-pdp-title {
  font-weight: bold;
}

.shoppable-image-pdp-price {
  font-weight: bold;
}

.shoppable-image-pdp-text {
  font-size: 12px;
  margin: 0px;
  width: 100%;
  text-align: left;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

@keyframes keystonePulse {
  from {
    fill: rgba(var(--toggle-blue-rgb), 0.3);
  }
  to {
    fill: rgba(var(--toggle-blue-rgb), 0.15);
  }
}
.mxt-inspiration-grid-container {
  display: flex;
  flex-wrap: wrap;
  padding: 10px 40px;
  max-width: 1240px;
  margin: auto;
  overflow: auto;
}

.mxt-inspiration-grid-column {
  flex: 50%;
  max-width: 50%;
  padding: 0px 5px;
}

.mxt-inspiration-grid-item {
  position: relative;
  cursor: pointer;
  margin-bottom: 10px;
  box-shadow: 0 0 8px 1px rgba(89, 72, 72, 0.2);
}

p.mxt-inspiration-grid-text {
  position: absolute;
  bottom: 0px;
  text-align: right;
  font-size: 18px;
  color: white;
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
  margin-bottom: 0px;
  padding: 10px;
}

.mxt-inspiration-grid-text.mxt-inspiration-grid-text-view3dOnly {
  position: relative;
  background: white;
  color: #666666;
  text-align: left;
  flex: 1 0;
  padding: 0px;
}

.mxt-inspiration-grid-headerRow {
  display: flex;
  padding: 20px 40px;
  width: 100%;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: white;
}

.mxt-inspiration-grid-header-container {
  flex: 1;
}

.mxt-inspiration-grid-header {
  margin: auto;
  flex: 1;
  color: #666666;
}

.mxt-inspiration-grid-header-image {
  margin: auto;
  width: 35px;
  padding-bottom: 6px;
}

p.mxt-inspiration-grid-instructions {
  text-align: center;
  position: relative;
  line-height: 24px;
  font-size: 18px;
  padding: 24px;
  margin-bottom: 0px;
}

.mxt-inspiration-grid-img {
  width: 100%;
}

.mxt-inspiration-grid-root {
  width: 100%;
  height: 100%;
  display: flex;
  flex-flow: column;
}

#mxt-inspiration-grid {
  display: flex;
  justify-content: center;
  background: #f7f7f7;
}

.mxt-inspiration-grid-img-container:hover .mxt-hover-over-image {
  display: flex;
}

.mxt-inspiration-grid-img-container {
  position: relative;
}

.mxt-inspiration-grid-open-3d-text {
  text-align: center;
  color: #2aace2;
  z-index: 1;
  font-size: 13px;
  cursor: pointer;
  margin-bottom: 0px;
  user-select: none;
  flex: 0 0 80px;
  font-weight: bold;
}

.mxt-inspiration-grid-open-3d-text-container {
  display: flex;
  background: white;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  padding: 10px;
}

.mxt-inspiration-dropdown {
  position: absolute;
  background: rgba(255, 255, 255, 0.8);
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 9999;
  border: 1px solid gray;
}

.mxt-inspiration-dropdownOption {
  cursor: pointer;
  padding: 5px;
  border-top: 1px solid lightgray;
}

.mxt-inspiration-dropdownOption:first-child {
  border-top: none;
}

.mxt-inspiration-dropdownOption:hover {
  background: rgba(200, 200, 200, 0.9);
}

.mxt-inspiration-dropdownOption.mxt-inspiration-dropdownOptionCurrent {
  background: rgba(160, 160, 160, 0.9);
}

#inspiration-back {
  position: absolute;
  top: -35px;
  z-index: 100;
  left: 20px;
}

#inspirationSidePanelIntroScreen {
  position: relative;
  display: flex;
  flex-flow: column wrap;
  flex: 1 1 auto;
  text-align: center;
}

#inspirationSidePanelIntroBackground {
  position: absolute;
  top: -60px;
  left: 0;
  width: 100%;
  height: calc(100% + 60px);
}

#inspirationSidePanelIntroBackground img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

#inspirationSidePanelIntroHeader {
  z-index: 5;
  color: #ffffff;
}

#inspirationSidePanelIntroHeader h1 {
  font-weight: 300;
  font-size: 40px;
  margin-bottom: 20px;
}

#inspirationSidePanelIntroHeader h2 {
  font-weight: 900;
  letter-spacing: 1px;
  color: #efefef;
  font-size: 20px;
  margin-top: 40px;
}

#inspirationSidePanelIntroHeader p {
  font-weight: 300;
  font-style: italic;
  line-height: 1.39;
  color: #ffffff;
  font-size: 23px;
}

#inspirationSidePanelIntroFooter {
  position: absolute;
  text-align: center;
  padding: 4rem;
  z-index: 5;
  bottom: 0;
  left: 50%;
}

.inspiration-grid-item-outline {
  padding: 12px;
  background: white;
}

.inspiration-grid-item-text-div-header {
  font-weight: bold;
  color: #666666;
}

.shoppable-area-popover-animation {
  animation: popover-bounce 1s 2 alternate;
}

.shoppable-area-popover {
  text-align: center;
  width: 200px;
  height: 69px;
}

.shoppable-area-popover > .mxt-popover-content {
  font-size: 10px;
  font-weight: bold;
  margin-top: 10px;
  padding: 10px;
}

.keystone-product {
  animation: product-pulse 1s infinite alternate;
}

.inspiration-cursor-hand-icon {
  z-index: 1000;
  position: absolute;
  pointer-events: none;
}

@keyframes popover-bounce {
  from {
    transform: translateY(0px);
  }
  to {
    transform: translateY(-10px);
  }
}
@keyframes product-pulse {
  from {
    fill: rgba(255, 255, 255, 0);
  }
  to {
    fill: rgba(255, 255, 255, 0.3);
  }
}
div#mxt-refine-space-prompt {
  z-index: 10000;
  background: rgba(0, 0, 0, 0.4);
}

div#mxt-refine-space-prompt-bottom-bar {
  bottom: 0px;
  position: absolute;
  background: #4fc1df;
  width: 100%;
  display: flex;
  color: white;
  align-items: center;
  text-align: center;
}

img#mxt-refine-space-prompt-icon {
  flex: 0 0 30px;
  margin: 25px;
}

span#mxt-refine-space-prompt-text {
  font-size: 14px;
  font-weight: bold;
  margin-right: 15px;
  flex: 1;
}

button.mxt-refine-space-prompt-btn.mxt-btn {
  margin: 0px 10px;
  padding: 0px 15px;
  width: 140px;
}
.mxt-accordian {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  border-bottom: 2px solid rgba(102, 102, 102, 0.15);
  margin: 10px 0px;
  flex: 0 0 30px;
}

.mxt-accordian-img {
  height: 25px;
  margin-right: 10px;
  transition: transform 0.5s;
  transform: rotate(270deg);
}
.paint-floor-tile-toggle.mxt-btn.mxt-non-cta-button {
  flex: 1;
  height: 55px;
  margin-right: 5px;
}

.paint-floor-tile-toggle.mxt-btn.mxt-non-cta-button:last-of-type {
  margin-right: 0px;
}

.paint-floor-tile-toggle-container {
  display: flex;
  width: 100%;
  position: relative;
}

.paint-floor-tile-toggle-container.paint-floor-tile-toggle-container-grid {
  display: grid;
  gap: 5px;
  grid-template-columns: 1fr 1fr;
}

.paint-floor-tile-toggle-header {
  font-size: 11px;
  margin: 10px 0px;
  user-select: none;
  font-weight: 500;
}

.paint-floor-tile-toggle-container.paint-floor-tile-toggle-container-grid .paint-floor-tile-toggle.mxt-btn.mxt-non-cta-button {
  margin-right: 0px;
}
.mxt-product-resize-row {
  display: flex;
  align-items: center;
  padding: 10px 0px;
}

.mxt-product-resize-span {
  flex: 0 0 100px;
  text-align: left;
  font-weight: bold;
  font-size: 11px;
}
.MeetWithADesignerDescription {
  text-align: center;
  font-size: 14px;
  line-height: 1.55;
  letter-spacing: 0.3px;
  color: #595a5c;
  width: 200px;
  display: block;
  margin: auto;
  font-weight: 600;
  margin-top: 25px;
  margin-bottom: 25px;
}

#sendDesign {
  margin: auto;
  width: 200px;
  min-width: unset;
  display: block;
}

.meetWithADesignerButton {
  width: 300px;
  margin: 0px auto;
  display: block;
}
.mxt-style-configurator-section {
  border-radius: var(--mxt-corner-roundness);
  margin-bottom: 10px;
  box-shadow: var(--mxt-dark-drop-shadow);
  transition: all 0.3s ease;
  max-height: 600px;
  position: relative;
  overflow: auto;
}

.mxt-style-configurator-section.mxt-style-configurator-section-collapsed {
  overflow: hidden;
  min-height: 120px;
  max-height: 120px;
}

.mxt-style-configurator-section-header {
  height: 120px;
  overflow: hidden;
}

.mxt-style-configurator-section-img-div {
  flex: 0 0 100px;
  margin: 10px;
}

.mxt-style-configurator-section-arrow {
  transition: all 0.3s ease;
  transform: rotate(0deg);
}

.mxt-style-configurator-section.mxt-style-configurator-section-collapsed .mxt-style-configurator-section-arrow {
  transform: rotate(0deg);
}

.mxt-style-configurator-section .mxt-style-configurator-section-arrow {
  transform: rotate(90deg);
}

.mxt-style-configurator-section .designProcessSearchDiv {
  margin-bottom: 10px;
  padding: 0px;
}

.mxt-style-configurator-section .designProcessSearchIcon {
  left: 5px;
}

.mxt-style-configurator-section .mxt-product-panel-content .mxt-grid {
  padding-bottom: 10px;
}

.mxt-style-configurator-section-text-div {
  flex: 1;
  display: flex;
  flex-flow: column;
  justify-content: center;
  padding-left: 10px;
  color: var(--dark-grey);
}

.mxt-style-configurator-section-text-name {
  font-size: 13px;
  font-weight: bold;
  margin-bottom: 5px;
}

.mxt-style-configurator-section-text-current {
  font-size: 11px;
  font-weight: 500;
}

.mxt-style-configurator-section-arrow-div {
  display: flex;
  margin-right: 10px;
}

.mxt-style-configurator-section-header {
  display: flex;
  background: white;
}

.mxt-style-configurator-section.mxt-style-configurator-section-expandable .mxt-style-configurator-section-header:hover {
  filter: brightness(90%);
}

.mxt-style-configurator-section.mxt-style-configurator-section-expandable .mxt-style-configurator-section-header {
  cursor: pointer;
}

.mxt-style-configurator-section-content-outer {
  padding: 10px;
  background: white;
}

.mxt-style-configurator-section-content {
  background: #f7f7f7;
  padding: 10px;
  border-radius: var(--mxt-corner-roundness);
}

hr.mxt-product-panel-product-section-divider {
  margin-bottom: 10px;
}

.mxt-style-configurator-grid-subheader {
  font-weight: bold;
  font-size: 11px;
  color: #666666;
  margin-bottom: 5px;
}

.mxt-style-configurator-section.mxt-style-configurator-section-collapsed.mxt-style-configurator-section-root {
  box-shadow: none;
  flex: 0;
}

.mxt-style-configurator-section.mxt-style-configurator-section-collapsed.mxt-style-configurator-section-root .mxt-style-configurator-section-header {
  background: none;
}

.mxt-style-configurator-section.mxt-style-configurator-section-collapsed.mxt-style-configurator-section-root .mxt-style-configurator-section-img-div {
  box-shadow: var(--mxt-dark-drop-shadow);
}
.mxt-card-stack {
  position: relative;
  width: 100%;
  height: 100%;
  left: 5%;
  top: 5%;
}

.mxt-card-stack img {
  position: absolute;
  width: 80%;
  height: 80%;
  box-shadow: var(--mxt-dark-drop-shadow);
}
.mxt-send-feedback-container {
  display: grid;
  padding: 0px 50px 18px;
  grid-template-columns: 260px 260px;
  gap: 13px;
  margin-top: 10px;
}

.mxt-send-feedback-dropdown {
  width: 260px;
  height: 40px;
}

.mxt-send-feedback-dropdown .mxt-dropdown-container {
  margin: 0px;
}

.mxt-send-feedback-label {
  font-size: 11px;
  font-weight: bold;
  line-height: 26px;
  color: #666666;
}

.mxt-send-feedback-textarea {
  height: 111px;
  width: 100%;
}

.mxt-send-feedback-buttons {
  display: flex;
  flex-flow: column;
  align-items: center;
  margin-bottom: 35px;
}
.mxt-form-input-error .help-block, .mxt-form-input-error label {
  color: #a94442;
}

.mxt-form-input-error input, .mxt-form-input-error textarea {
  border: 1px solid #a94442;
}

.help-block {
  font-size: 11px;
  display: block;
  margin-top: 5px;
  margin-bottom: 10px;
  color: #737373;
}
/** Toolbar */
.navigationButtons {
  flex: 0 0 var(--mxt-toolbar-width);
  display: flex;
  flex-flow: column;
  z-index: 1001;
  /*1 more than navigation panel*/
  background: var(--mxt-toolbar-background-color);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
  overflow-x: hidden;
}

.navigationPanelButtons {
  flex: 1;
}

.mxt-btn.navigationBaseButton.navigationPanelLabelToggle {
  color: var(--mxt-toolbar-font-color);
  font-weight: 500;
}

.mxt-btn.navigationBaseButton.navigationPanelLabelToggle img {
  width: 50px;
  height: 50px;
}

.navigationQuickLinkPrimary {
  background-image: var(--primary-right-gradient) !important;
}

.navigationBaseButtonImg {
  width: 50px;
  flex: 0 0 50px;
}

.navigationBaseButtonLabel {
  text-align: left;
}

.navigationButtonWrapper {
  position: relative;
}

.navigationButtonFlag {
  position: absolute;
  left: 0px;
  top: 0px;
  height: 100%;
  width: 5px;
  display: none;
}

.navigationButtonFlag.navigationButtonFlagCurrent {
  background: var(--mxt-client-primary);
  display: block;
}

.mxt-btn.navigationBaseButton {
  border-radius: 0px;
  width: var(--mxt-toolbar-width);
  height: 44px;
  justify-content: flex-start;
}

.mxt-btn.navigationBaseButton.mxt-btn-disabled {
  cursor: not-allowed;
}

.mxt-btn.navigationBaseButton.mxt-btn-disabled * {
  opacity: 0.5;
}

.navigationButtons.navigationPanelNoLabels .mxt-btn.navigationBaseButton.mxt-btn-icon-only .navigationBaseButtonLabel {
  display: none;
}

.mxt-btn .navigationBaseButtonLabel.mxt-btn-label {
  padding-right: 5px;
  font-weight: 500;
}

.mxt-btn.navigationButton {
  background: var(--mxt-toolbar-button-color);
  color: var(--mxt-toolbar-font-color);
}

.mxt-btn.navigationButton.navigationButtonMain {
  background: var(--mxt-toolbar-background-color);
}

.mxt-btn.navigationQuickLink {
  background: var(--mxt-toolbar-cta-button-color);
  color: var(--mxt-toolbar-cta-font-color);
}

.navigationButtonBreak {
  border-top: 1px solid var(--mxt-toolbar-divider-color);
}

.navigationQuickLinkBreak {
  border-top: 1px solid var(--mxt-toolbar-cta-divider-color);
}

.navigationQuickLinkBreak:last-child {
  display: none;
}

.navigationBaseButtonBreak {
  width: 100%;
  left: 0px;
  position: relative;
}

/** Action Menu */
.mxt-action-menu {
  background: var(--mxt-action-menu-background-color);
  border-radius: var(--mxt-corner-roundness);
  box-shadow: var(--mxt-action-menu-drop-shadow);
  color: var(--mxt-action-menu-font-color);
  border: var(--mxt-action-menu-border-thickness) solid var(--mxt-action-menu-border-color);
  width: fit-content;
  position: absolute;
  z-index: 3;
}

.mxt-action-menu-button-div {
  display: flex;
  flex-wrap: wrap;
  max-width: calc(var(--mxt-action-menu-item-width) * 4);
  margin: 5px;
}

.mxt-action-menu-button-div.mxt-action-menu-3-cols {
  max-width: calc(var(--mxt-action-menu-item-width) * 3);
}

.mxt-action-menu .mxt-btn.mxt-action-menu-item {
  background: var(--mxt-action-menu-background-color);
  width: var(--mxt-action-menu-item-width);
  padding-bottom: 5px;
}

.mxt-action-menu .mxt-btn.mxt-action-menu-item:first-of-type {
  border-top-left-radius: var(--mxt-corner-roundness);
  border-bottom-left-radius: var(--mxt-corner-roundness);
}

.mxt-action-menu .mxt-btn.mxt-action-menu-item:last-of-type {
  border-top-right-radius: var(--mxt-corner-roundness);
  border-bottom-right-radius: var(--mxt-corner-roundness);
}

.action-menu-top-arrow {
  padding-top: 5px;
}

.action-menu-left-arrow {
  padding-left: 5px;
}

.action-menu-right-arrow {
  padding-right: 5px;
}

.action-menu-bottom-arrow {
  padding-bottom: 5px;
}

.action-menu-no-arrow .action-menu-drag {
  display: none;
}

.action-menu-top-arrow .action-menu-drag {
  top: -5px;
  left: calc(50% - 10px);
}

.action-menu-left-arrow .action-menu-drag {
  left: -5px;
  top: calc(50% - 5px);
  transform: rotate(90deg);
  transform-origin: 10px 5px;
}

.action-menu-right-arrow .action-menu-drag {
  right: -5px;
  top: calc(50% - 5px);
  transform: rotate(90deg);
  transform-origin: 10px 5px;
}

.action-menu-bottom-arrow .action-menu-drag {
  bottom: -5px;
  left: calc(50% - 10px);
}

.action-menu-drag {
  position: absolute;
  width: 20px;
  height: 10px;
  z-index: 1;
}

/** defaults to bottom arrow */
.mxt-modal-arrow-outer {
  position: absolute;
  top: 100%;
  left: calc(50% - 25px);
  width: 50px;
  height: 25px;
  overflow: hidden;
}

.mxt-modal-arrow-inner {
  transform: rotate(45deg);
  background-color: var(--mxt-action-menu-background-color);
  box-shadow: var(--mxt-action-menu-drop-shadow);
  width: 100px;
  height: 100px;
  top: -100px;
  left: -25px;
  position: relative;
  border-radius: var(--mxt-corner-roundness);
}

/** top */
.mxt-modal-arrow-outer.mxt-menu-top-arrow {
  top: -25px;
}

.mxt-modal-arrow-outer.mxt-menu-top-arrow .mxt-modal-arrow-inner {
  top: 20px;
}

/** left */
.mxt-modal-arrow-outer.mxt-menu-left-arrow {
  width: 25px;
  height: 50px;
  top: calc(50% - 25px);
  left: -25px;
}

.mxt-modal-arrow-outer.mxt-menu-left-arrow .mxt-modal-arrow-inner {
  top: -25px;
  left: 25px;
}

/** right */
.mxt-modal-arrow-outer.mxt-menu-right-arrow {
  width: 25px;
  height: 50px;
  top: calc(50% - 25px);
  left: 100%;
}

.mxt-modal-arrow-outer.mxt-menu-right-arrow .mxt-modal-arrow-inner {
  top: -25px;
  left: -100px;
}

/** Shared toolbelt and action menu */
.mxt-toolbelt .mxt-btn.mxt-toolbelt-item, .mxt-action-menu .mxt-btn.mxt-action-menu-item {
  display: flex;
  flex-flow: column;
  min-width: 0px;
  align-items: center;
  height: auto;
  overflow: hidden;
  justify-content: flex-start;
  transition: all 0.3s ease;
}

.mxt-toolbelt .mxt-btn.mxt-toolbelt-item .mxt-btn-label, .mxt-action-menu .mxt-btn.mxt-action-menu-item .mxt-btn-label {
  font-weight: 500;
}

.mxt-toolbelt .mxt-btn.mxt-toolbelt-item.mxt-collapsed-label, .mxt-action-menu .mxt-btn.mxt-action-menu-item.mxt-collapsed-label {
  max-height: 44px;
  width: 44px;
}

.mxt-toolbelt .mxt-btn.mxt-toolbelt-item.mxt-collapsed-label img, .mxt-action-menu .mxt-btn.mxt-action-menu-item.mxt-collapsed-label img {
  width: 100%;
  height: 100%;
}

.mxt-toolbelt .mxt-btn.mxt-toolbelt-item.mxt-collapsed-label .mxt-btn-label, .mxt-action-menu .mxt-btn.mxt-action-menu-item.mxt-collapsed-label .mxt-btn-label {
  display: none;
}

/** Toolbelt*/
.mxt-toolbelt {
  background: var(--mxt-toolbelt-btn-background-color);
  border-radius: var(--mxt-corner-roundness);
  box-shadow: var(--mxt-toolbelt-btn-drop-shadow);
  color: var(--mxt-toolbelt-btn-font-color);
  border: var(--mxt-toolbelt-btn-border-thickness) solid var(--mxt-toolbelt-btn-border-color);
}

.mxt-toolbelt .mxt-btn.mxt-toolbelt-item {
  background: var(--mxt-toolbelt-btn-background-color);
  border-radius: 0px;
  width: 80px;
}

.mxt-toolbelt .mxt-btn.mxt-toolbelt-item .mxt-btn-label {
  padding-bottom: 2px;
}

.mxt-toolbelt .mxt-btn.mxt-toolbelt-item:first-of-type {
  border-top-left-radius: var(--mxt-corner-roundness);
  border-top-right-radius: var(--mxt-corner-roundness);
}

.mxt-toolbelt .mxt-btn.mxt-toolbelt-item:last-of-type {
  border-bottom-left-radius: var(--mxt-corner-roundness);
  border-bottom-right-radius: var(--mxt-corner-roundness);
}

/** Nav Control*/
.mxt-nav-control-button-group .mxt-btn.mxt-nav-control-button {
  border-radius: 0px;
  box-shadow: none;
}

.mxt-nav-control-button-group .mxt-btn.mxt-nav-control-button:first-of-type {
  border-top-left-radius: var(--mxt-corner-roundness);
  border-bottom-left-radius: var(--mxt-corner-roundness);
}

.mxt-nav-control-button-group .mxt-btn.mxt-nav-control-button:last-of-type {
  border-top-right-radius: var(--mxt-corner-roundness);
  border-bottom-right-radius: var(--mxt-corner-roundness);
}

.mxt-nav-control-button-group {
  display: flex;
  margin-left: 10px;
  box-shadow: var(--mxt-nav-control-drop-shadow);
  border-radius: var(--mxt-corner-roundness);
}

.mxt-nav-control-button {
  box-shadow: var(--mxt-nav-control-drop-shadow);
  color: var(--mxt-nav-control-font-color);
  background: var(--mxt-nav-control-background-color);
  border: var(--mxt-nav-control-border-thickness) solid var(--mxt-nav-control-border-color);
}

.mxt-nav-control-button.mxt-nav-control-button-primary {
  color: var(--mxt-nav-control-primary-font-color);
  background: var(--mxt-nav-control-primary-background-color);
  justify-content: space-between;
  width: 175px;
  padding-left: 20px;
}

.mxt-btn.mxt-nav-control-button {
  height: 44px;
}

.mxt-btn.mxt-btn-icon-only.mxt-nav-control-button {
  width: 44px;
}

/** Standard buttons */
.mxt-btn.mxt-toolbelt-item.mxt-btn-disabled, .mxt-btn.mxt-nav-control-button.mxt-btn-disabled, .mxt-btn.mxt-action-menu-item.mxt-btn-disabled {
  box-shadow: none;
  opacity: 0.5;
  cursor: not-allowed;
}

.mxt-btn.mxt-toolbelt-item.mxt-btn-disabled:hover, .mxt-btn.mxt-nav-control-button.mxt-btn-disabled:hover {
  filter: unset;
}

.mxt-cta-button {
  box-shadow: var(--mxt-cta-button-drop-shadow);
  color: var(--mxt-cta-button-font-color);
  background: var(--primary-right-gradient);
  border: var(--mxt-cta-button-border-thickness) solid var(--mxt-cta-button-border-color);
}

.mxt-non-cta-button {
  box-shadow: var(--mxt-non-cta-button-drop-shadow);
  color: var(--mxt-non-cta-button-font-color);
  background: var(--mxt-non-cta-button-background-color);
  border: var(--mxt-non-cta-button-border-thickness) solid var(--mxt-non-cta-button-border-color);
}

.mxt-split-button:last-child {
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
  padding-right: 5px;
}

.mxt-btn.mxt-split-button {
  min-width: 0px;
  display: inline-block;
  box-shadow: none;
}

.mxt-split-button:first-child {
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
  padding-left: 5px;
}

.mxt-btn:disabled, .mxt-btn.mxt-non-cta-button.mxt-btn-disabled, .mxt-btn.mxt-cta-button.mxt-btn-disabled {
  box-shadow: none;
  background: #e5e5e5;
  color: #a5a5a5;
  pointer-events: none;
}

.mxt-btn.mxt-btn-toggled {
  box-shadow: none;
  background: var(--toggle-blue);
  color: #ffffff;
}

.mxt-btn:hover {
  filter: brightness(90%);
}

.mxt-btn-lg {
  width: 240px;
}

.mxt-btn-md {
  width: 140px;
}

.mxt-btn {
  transition: all 0.3s ease;
  height: 40px;
  border-radius: var(--mxt-corner-roundness);
  position: relative;
  font-size: 11px;
  font-weight: bold;
  text-align: center;
  user-select: none;
  cursor: pointer;
  min-width: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mxt-btn *:not(:first-child) {
  margin-left: 5px;
  padding-right: 10px;
}

.mxt-btn .mxt-btn-label {
  font-size: 11px;
  margin: 0px;
  padding: 0px;
}

.mxt-btn-icon-only {
  width: 40px;
  min-width: 0px;
  padding: 0px;
}

img.mxt-btn-icon-absolute-left {
  position: absolute;
  left: 25px;
  width: 25px;
}

/* get rid of default button outline */
button {
  border: none;
  background: none;
}

.navigationButtonWrapper.navigationButtonToolbarHeader {
  font-size: 10px;
  font-weight: bold;
  height: 30px;
  color: #666666;
}

.navigationButtonWrapper.navigationButtonToolbarHeader span {
  line-height: 29px;
  padding-left: 8px;
}

.navigationPanelNoLabels .navigationButtonWrapper.navigationButtonToolbarHeader {
  text-align: center;
}

.navigationPanelNoLabels .navigationButtonWrapper.navigationButtonToolbarHeader span {
  padding-left: 0px;
}

.mxt-journey-type-modal .mxt-modal-div {
  width: 870px;
  max-width: 80%;
}

@media (max-width: 768px) {
  .mxt-journey-type-modal .mxt-modal-div #mxt-journey-container {
    flex-flow: column;
  }
}
#mxt-journey-container {
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 0px 35px 10px;
}

.mxt-journey:last-of-type {
  margin-right: 0px;
}

.mxt-journey {
  margin-right: 10px;
  position: relative;
  display: flex;
  flex-flow: column;
  align-items: center;
}

.mxt-journey .mxt-journey-select {
  position: relative;
  top: -20px;
  padding: 0px 20px;
}

.mxt-journey-text {
  color: white;
  text-align: center;
  font-size: 15px;
  font-weight: bold;
  position: absolute;
  bottom: 95px;
  user-select: none;
}

.mxt-journey-img-guidance {
  display: flex;
  position: absolute;
  top: 34px;
  align-items: center;
  color: var(--toggle-blue);
  font-size: 11px;
  height: 20px;
  right: 40px;
  cursor: pointer;
}
.mxt-project-by-email-content {
  padding: 20px 90px;
  color: #666666;
  font-size: 11px;
  font-weight: bold;
  line-height: 40px;
  display: flex;
  flex-flow: column;
  align-items: center;
}

.mxt-project-by-email-success {
  padding: 20px;
  text-align: center;
  max-width: 500px;
}

.mxt-find-project-by-email-input {
  flex: 1;
  font-size: 15px;
  font-weight: normal;
  padding-left: 10px;
  margin-bottom: 10px;
  border: none;
  box-shadow: var(--mxt-dark-drop-shadow);
}

.mxt-find-project-by-email-btn, .mxt-find-project-by-email-login {
  margin-bottom: 10px;
}

.mxt-find-project-by-email-input-label {
  position: absolute;
  left: 50px;
}

.mxt-find-project-by-email-input-div {
  width: 350px;
  display: flex;
}

.mxt-find-project-by-email-subtext {
  line-height: normal;
  margin-bottom: 30px;
  min-height: 30px;
}
.pick-your-style-modal {
  padding: 15px !important;
}

.pick-your-style-modal-text {
  margin: 20px 0;
  color: #4e4e4e;
  text-align: center;
  line-height: 24px;
  font-size: 14px;
}

.mxt-grid-container.pick-your-style-modal-content-div {
  position: relative;
}

.pick-your-style-modal-button {
  margin: 15px 0;
}

.pick-your-style-grid-item-text-div {
  color: #666666;
}

.pick-your-style-grid-item-text {
  font-size: 9px;
  font-weight: 500;
}
.mxt-countertop-toggle-container {
  background: white;
  margin-top: 10px;
}

.mxt-countertop-upstand-toggle {
  margin-bottom: 10px;
}
.mxt-door-hinge-toggle-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
