@charset "UTF-8";
/************************************************************************************************************************************
NEW
************************************************************************************************************************************/
@import url("https://fonts.googleapis.com/css?family=Montserrat:300,400,700&display=swap");
#db-header {
  background-color: #fff;
  border-bottom: #000 3px solid;
  display: flex;
  -webkit-box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.17);
  -moz-box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.17);
  box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.17);
}

#db-header,
#db-footer {
  z-index: 1;
}

#db-header-logo {
  position: relative;
  width: 100%;
  border-top: #b5d46c 3px solid;
}

#db-header-logo-2 {
  display: flex;
  bottom: 0;
  left: 120px;
  position: absolute;
  top: 0px;
  /* right: 0; */
  font-size: 12px;
  line-height: initial;
  /* max-width: 33vw; */
  /* text-align: right; */
  font-style: italic;
  color: #fff;
  background-color: #b5d46c;
  padding: 8px 10px;
  align-items: center;
  margin-right: 10px;
  background: #b8d46c;
  background: -moz-linear-gradient(top, #b8d46c 0%, black 100%);
  background: -webkit-gradient(left top, left bottom, color-stop(0%, #b8d46c), color-stop(100%, black));
  background: -webkit-linear-gradient(top, #b8d46c 0%, black 100%);
  background: -o-linear-gradient(top, #b8d46c 0%, black 100%);
  background: -ms-linear-gradient(top, #b8d46c 0%, black 100%);
  background: linear-gradient(to bottom, #b8d46c 0%, black 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#b8d46c", endColorstr="#000000", GradientType=0);
}

#db-header-menu {
  background-color: white;
  border-top: #b5d46c 3px solid;
}

#db-header-menu ul {
  list-style-type: none;
  display: flex;
  height: 100%;
  margin: 0;
}

#db-header-menu li {
  cursor: pointer;
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
  transition: 0.33s;
  padding-top: 3px;
}

#db-header-menu li:hover .num-ber,
#db-header-menu li:hover {
  background-color: #d4d4d4;
}

/*#db-header-menu li:hover img {
    transform:scale(1.1)
}*/
#db-header-menu li img {
  width: auto;
  height: 20px;
  margin: 0 8px;
  transition: 0.2s;
}

.num-ber {
  position: absolute;
  background: white;
  color: #000;
  top: 1px;
  right: 3px;
  font-size: 12px;
  line-height: initial;
  font-weight: bold;
  padding: 0 1px;
  border-radius: 4px;
  transition: 0.33s;
}

#applicationWindow[data-mode=designer] .menu-viewer {
  display: none;
}

#applicationWindow[data-mode=viewer] .menu-designer {
  display: none;
}

#db-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #fff;
  border-top: #000 3px solid;
  -webkit-box-shadow: 0px -10px 10px 0px rgba(0, 0, 0, 0.17);
  -moz-box-shadow: 0px -10px 10px 0px rgba(0, 0, 0, 0.17);
  box-shadow: 0px -10px 10px 0px rgba(0, 0, 0, 0.17);
  min-height: 90px;
  display: flex;
  flex-flow: column;
}

#db-footer-2 {
  font-size: 12px;
  background-color: #b9b9b9;
  width: 100%;
  text-align: center;
  color: #fff;
  padding: 2px;
}

#db-go-to-preview-btn,
.db-footer-button {
  background-color: #b5d46c;
  cursor: pointer;
  transition: 0.33s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.db-footer-button {
  width: 52px;
  height: 52px;
  border-radius: 5px;
  position: absolute;
  bottom: 15px;
  right: 12px;
}

#db-go-to-preview-btn {
  width: 32px;
  height: 32px;
  border-radius: 3px;
  margin: 18px auto 0px;
}

#db-go-to-preview-btn > img,
.db-footer-button > img {
  transition: 0.33s;
}

.db-footer-button > img {
  width: 38px;
  height: auto;
}

#db-go-to-preview-btn > img {
  width: 22px;
  height: auto;
}

#db-go-to-preview-btn:hover,
.db-footer-button:hover {
  transform: scale(1.1);
  background-color: #c9e093;
}

#db-footer-1 {
  padding-top: 2px;
  flex-grow: 1;
  display: flex;
  padding-right: calc(70px + 3vw);
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-around;
  overflow: hidden;
  z-index: -1;
}

#db-footer-2 {
  position: relative;
  z-index: -1;
}

#price-total {
  font-size: 46px;
  font-weight: bold;
  line-height: 40px;
}

#footer-text {
  font-size: 14px;
}

@media (max-width: 500px) {
  #price-total {
    font-size: 30px;
    line-height: 24px;
  }

  #footer-text {
    max-width: 230px;
    text-align: right;
    font-size: 12px;
    line-height: 13px;
  }

  #db-footer-2 {
    height: 40px;
  }
}
.checkbox input[type=checkbox] {
  opacity: 0;
}

.checkbox label {
  position: relative;
  display: inline-block;
  /*16px width of fake checkbox + 6px distance between fake checkbox and text*/
  padding-left: 22px;
}

.checkbox label::before,
.checkbox label::after {
  position: absolute;
  content: "";
  /*Needed for the line-height to take effect*/
  display: inline-block;
}

/*Outer box of the fake checkbox*/
.checkbox label::before {
  cursor: pointer;
  height: 28px;
  width: 28px;
  border: 4px solid #3c3533;
  left: 0px;
  border-radius: 3px;
  /*(24px line-height - 16px height of fake checkbox) / 2 - 1px for the border
   *to vertically center it.
   */
  top: 3px;
  background-color: #fff;
}

/*Checkmark of the fake checkbox*/
.checkbox label::after {
  height: 9px;
  width: 15px;
  border-left: 4px solid #3c3533;
  border-bottom: 4px solid #3c3533;
  transform: rotate(-50deg);
  left: 7px;
  top: 11px;
}

/*Hide the checkmark by default*/
.checkbox input[type=checkbox] + label::after {
  content: none;
}

/*Unhide on the checked state*/
.checkbox input[type=checkbox]:checked + label::after {
  content: "";
}

/*Adding focus styles on the outer-box of the fake checkbox*/
.checkbox input[type=checkbox]:focus + label::before {
  outline: #3b99fc auto 5px;
}

#price-total {
  cursor: pointer;
}

.top-notice {
  position: absolute;
  background-color: white;
  border: #b1b3b5 2px solid;
  top: 20px;
  left: 20px;
  right: 20px;
  max-width: 300px;
  padding: 12px;
  border-radius: 8px;
  margin: 0 auto;
  -webkit-box-shadow: 10px 10px 41px 0px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 10px 10px 41px 0px rgba(0, 0, 0, 0.75);
  box-shadow: 10px 10px 41px 0px rgba(0, 0, 0, 0.75);
  opacity: 0;
  transform: translateY(-60px);
  transition: 0.3s;
  visibility: hidden;
}

.top-notice.visible {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

#error-info > div:first-child {
  font-size: 14px;
  text-align: center;
  padding-bottom: 4px;
  font-weight: bold;
}

#error-info > div:nth-child(2) {
  display: flex;
  align-items: center;
  justify-content: space-around;
}

#error-next {
  display: none;
}

#hard-start,
#empty-warning,
#tap-to-zoom-info {
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.click-to-close {
  cursor: pointer;
}

#modal-dimensions-view .db-panel-body {
  width: 100%;
  height: 100%;
}
#modal-dimensions-view svg {
  max-width: 90vw;
  max-height: calc(100vh - 250px);
}

.img-substr {
  position: absolute;
  left: 5%;
  bottom: 5%;
  max-width: 80px !important;
  width: 30%;
  opacity: 0.5;
}

#applicationWindowContainer {
  font-family: "Montserrat", sans-serif;
}

#applicationWindow {
  height: 100%;
  display: flex;
  flex-direction: column;
}

#gabion-volume {
  position: absolute;
  bottom: 10px;
  left: 10px;
  font-size: 13px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  padding: 3px 6px;
  border-radius: 10px;
}

#module-redhen-board .container {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  padding: 0;
}

.hide-in-designer, .hide-in-viewer {
  transition: 0.5s;
  transition-delay: 0.1s;
}

#applicationWindow[data-mode=designer] .hide-in-designer {
  opacity: 0;
  pointer-events: none;
}

#applicationWindow[data-mode=viewer] .hide-in-viewer {
  opacity: 0;
  pointer-events: none;
}

/* smartphones, touchscreens */
@media (pointer: coarse) {
  .show-on-computer {
    display: none;
  }
}
@media not all and (pointer: coarse) {
  .show-on-mobile {
    display: none;
  }
}
#dimenstionsViewLegend {
  font-weight: bold;
  font-size: 12px;
  color: #888;
  margin: 4px;
  text-align: center;
}

header#header {
  background-color: #fff;
  border-bottom: #000 3px solid;
  -webkit-box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.17);
  -moz-box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.17);
  box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.17);
  border-top: #b5d46c 3px solid;
  margin-bottom: 16px;
}

img.logo {
  height: 32px;
  width: auto;
  margin: 9px 0 2px -6px !important;
}

.top-logo img.logo {
  margin: 0 !important;
}

.header-top {
  padding: 0 !important;
}

@media (max-width: 767px) {
  .user-info {
    margin-top: 0 !important;
  }
}
.btn {
  white-space: normal;
}

/*******
REMOVE AFTER REBUILD
 */
#applicationWindowContainer {
  height: 100%;
  overflow: hidden;
  position: relative;
}

/*#dimensionsView {
  visibility: hidden;
}*/
#partsView, #dimensionsView, #dimensionsViewToCopy {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: default;
  background-color: white;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: default;
}
#partsView .panel, #dimensionsView .panel, #dimensionsViewToCopy .panel {
  stroke: #222222;
  stroke-width: 2;
}
#partsView .connector, #partsView .corner, #partsView .tip, #dimensionsView .connector, #dimensionsView .corner, #dimensionsView .tip, #dimensionsViewToCopy .connector, #dimensionsViewToCopy .corner, #dimensionsViewToCopy .tip {
  stroke: #888888;
  stroke-width: 2.1;
  fill: none;
}
#partsView .bracingWire, #dimensionsView .bracingWire, #dimensionsViewToCopy .bracingWire {
  stroke: #222222;
  stroke-width: 0.5;
}
#partsView .bracingWireConnect, #dimensionsView .bracingWireConnect, #dimensionsViewToCopy .bracingWireConnect {
  fill: #222222;
}
#partsView .bracingConnector, #dimensionsView .bracingConnector, #dimensionsViewToCopy .bracingConnector {
  stroke: #222222;
  stroke-width: 1;
}
#partsView .elementLabel, #dimensionsView .elementLabel, #dimensionsViewToCopy .elementLabel {
  fill: black;
  stroke: white;
  stroke-linejoin: round;
  stroke-width: 0.6px;
}
@supports (paint-order: stroke) {
  #partsView .elementLabel, #dimensionsView .elementLabel, #dimensionsViewToCopy .elementLabel {
    stroke-width: 8px;
    paint-order: stroke;
  }
}
#partsView #dimensionsView .connector, #partsView #dimensionsView .corner, #partsView #dimensionsView .tip, #dimensionsView #dimensionsView .connector, #dimensionsView #dimensionsView .corner, #dimensionsView #dimensionsView .tip, #dimensionsViewToCopy #dimensionsView .connector, #dimensionsViewToCopy #dimensionsView .corner, #dimensionsViewToCopy #dimensionsView .tip {
  stroke: #222222;
  stroke-width: 2;
}
#partsView #resultWindow td.number, #partsView #resultWindow th.number, #dimensionsView #resultWindow td.number, #dimensionsView #resultWindow th.number, #dimensionsViewToCopy #resultWindow td.number, #dimensionsViewToCopy #resultWindow th.number {
  text-align: right;
}
#partsView #resultWindow #cost-info, #dimensionsView #resultWindow #cost-info, #dimensionsViewToCopy #resultWindow #cost-info {
  display: initial;
}
#partsView #resultWindow #cost-info #price, #dimensionsView #resultWindow #cost-info #price, #dimensionsViewToCopy #resultWindow #cost-info #price {
  cursor: pointer;
}
#partsView #resultWindow #cost-info .form-check-input, #dimensionsView #resultWindow #cost-info .form-check-input, #dimensionsViewToCopy #resultWindow #cost-info .form-check-input {
  position: relative;
  left: -4px;
  top: 2px;
  transform: scale(1.1);
}
#partsView #resultWindow tfoot, #dimensionsView #resultWindow tfoot, #dimensionsViewToCopy #resultWindow tfoot {
  cursor: pointer;
}
#partsView #resultWindow .hide-list #show-list-button, #dimensionsView #resultWindow .hide-list #show-list-button, #dimensionsViewToCopy #resultWindow .hide-list #show-list-button {
  visibility: hidden;
}
#partsView #resultWindow .hide-list #parts-list, #dimensionsView #resultWindow .hide-list #parts-list, #dimensionsViewToCopy #resultWindow .hide-list #parts-list {
  display: none;
}
#partsView svg, #dimensionsView svg, #dimensionsViewToCopy svg {
  overflow: hidden;
}

#applicationWindow {
  /*.container {
    background-color: white;
    padding: 20px;
  }*/
  /*#price-reinforcement {
    font-size: 1.2rem;
    font-weight: bold;
  }*/
  /*#price-reinforcements {
    pointer-events: none;
    position: absolute;
    top: 235px;
    right: 20px;
    //background-color: rgba(255, 255, 255, 0.6);
    padding: 8px;
    max-width: 150px;
    text-align: right;
  }*/
  /*#btn-save-project {
        flex-shrink:100;
        padding: 0 !important;
    }
  
    #btn-save-project:after {
        left:23px !important;
    }
  
    @media (max-width:1199px) {
        #btn-save-project:after {
            left: 16px !important;
        }
    }*/
}
#applicationWindow #viewerParentWindow,
#applicationWindow #designerWindow {
  position: fixed;
  top: 44px;
  bottom: 90px;
  left: 0;
  right: 0;
}
#applicationWindow #viewerParentWindow #editorWindow,
#applicationWindow #viewerParentWindow #viewerLeftWindow,
#applicationWindow #designerWindow #editorWindow,
#applicationWindow #designerWindow #viewerLeftWindow {
  width: 100%;
  height: 100%;
  /*@media screen and (max-width: 992px) {
      width: 100%;
  }*/
}
#applicationWindow #viewerParentWindow #viewerLeftWindow,
#applicationWindow #designerWindow #viewerLeftWindow {
  width: 100%;
}
#applicationWindow #viewerParentWindow #restOfDesigner,
#applicationWindow #designerWindow #restOfDesigner {
  background: rgba(255, 255, 255, 0.5);
}
#applicationWindow #designerWindow {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: default;
  /*        #restOfDesigner {
                  #minimapWindowParent {
                      flex: 1 0 50%;
                      //        height: 50%;
  
                      @media screen and (max-width: 992px) {
                          width: 100%;
                          min-height: 300px;
                      }
  
                      .field-on {
                          fill: $field-filled;
                      }
  
                      .field-off {
                          fill: none;
                      }
  
                      .editorMarker {
                          fill: $minimap-marker;
                      }
  
                      svg {
                          background-color: $minimap-background;
                      }
  
                      position: relative;
  
                      background-color: #707070;
                  }
  
                  #buttonsAndMessagesWindow {
                      flex: 1 0 50%;
                      //        height: 50%;
  
                      @media screen and (max-width: 992px) {
                          width: 100%;
                      }
  
  
                      display: flex;
                      flex-direction: column;
                      justify-content: space-between;
  
                      #messagesWindow {
                          text-align: center;
                      }
                  }
              }*/
}
#applicationWindow #designerWindow #editorWindow .field-off {
  fill: rgba(0, 0, 0, 0);
}
#applicationWindow #designerWindow #editorWindow .field-on {
  fill: #444444;
}
#applicationWindow #designerWindow #editorWindow .field.field-on {
  stroke: #ffffff;
  stroke-width: 0.025;
}
#applicationWindow #designerWindow #editorWindow .editMarker {
  opacity: 0.8;
  stroke: black;
  stroke-width: 0.025;
  stroke-opacity: 0.7;
}
#applicationWindow #designerWindow #editorWindow .editMarkerDimensionsText.field-off {
  fill: #444444;
}
#applicationWindow #designerWindow #editorWindow .editMarkerDimensionsTextBackground.field-off {
  fill: #eeeeee;
}
#applicationWindow #designerWindow #editorWindow .editMarker.field-off {
  fill: #eeeeee;
}
#applicationWindow #designerWindow #editorWindow .editMarkerDimensionsText.field-on {
  fill: #eeeeee;
}
#applicationWindow #designerWindow #editorWindow .editMarkerDimensionsTextBackground.field-on {
  fill: #444444;
}
#applicationWindow #designerWindow #editorWindow .designerEdgeLabel {
  fill: #eeeeee;
  font-size: 0.8px;
  stroke: #444444;
  stroke-linejoin: round;
  stroke-width: 0.03px;
}
@supports (paint-order: stroke) {
  #applicationWindow #designerWindow #editorWindow .designerEdgeLabel {
    stroke-width: 0.2px;
    paint-order: stroke;
  }
}
#applicationWindow #designerWindow #editorInfoMessages {
  padding: 16px;
  text-align: center;
  background-color: #b5d46c;
  color: #fff;
  font-size: 0.9rem;
}
#applicationWindow #viewerParentWindow {
  display: flex;
  justify-content: space-between;
}
#applicationWindow #controlsWindow {
  text-align: center;
}
#applicationWindow #controlsWindow .btn {
  width: 50%;
}
#applicationWindow #controlsWindow #designerViewInfoButton {
  width: 100%;
  padding: 20px 20px 20px 40px;
  background-color: #b5d46c;
  text-align: left;
  letter-spacing: 0.3rem;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
}
#applicationWindow #controlsWindow #modeButtons button {
  text-transform: initial;
}
#applicationWindow #modeButtons {
  min-height: 20px;
  width: calc(100% + 1px);
  background-color: #b5d46c;
}
#applicationWindow #viewerWindow {
  width: 100%;
}
#applicationWindow #shareButtonsModal #shareButtonsContainer #copyProjectLinkForm {
  display: flex;
}
#applicationWindow #shareButtonsModal #shareButtonsContainer #copyProjectLinkForm input {
  flex-grow: 1;
}
#applicationWindow body {
  background-color: #555555;
}
#applicationWindow #resultWindow {
  background-color: rgba(255, 255, 255, 0.6);
  position: absolute;
  right: 20px;
  top: 20px;
  bottom: 20px;
  font-size: 0.9rem;
}
#applicationWindow #restOfDesigner {
  position: absolute;
  right: 20px;
  bottom: 20px;
  font-size: 0.9rem;
}
#applicationWindow #cost-info,
#applicationWindow #buttonsAndMessagesWindow {
  padding-bottom: 20px;
}
@media screen and (max-width: 992px) and (min-width: 500px) {
  #applicationWindow #cost-info,
#applicationWindow #buttonsAndMessagesWindow {
    padding-top: 20px;
  }
}
#applicationWindow #modeButtons button {
  background-color: #b5d46c;
  color: #6a7569;
  padding: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  font-size: 0.9rem;
}
#applicationWindow #modeButtons button:hover {
  background-color: #c7e67e;
}
#applicationWindow #modeButtons button.selected {
  font-weight: bold;
  color: #ffffff;
}
#applicationWindow #modeButtons button.selected > div {
  transform: scale(1.1);
}
#applicationWindow #modeButtons button > div > div {
  padding-bottom: 8px;
}
#applicationWindow #modeButtons button:first-child {
  padding-left: 20%;
}
#applicationWindow #modeButtons button:nth-child(2) {
  padding-right: 20%;
}
#applicationWindow #navigator-title {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  color: #fff;
  padding: 12px 12px 12px 25px;
  display: flex;
  align-items: center;
}
#applicationWindow #navigator-title .fas {
  font-size: 1.6rem;
  margin-right: 8px;
}
#applicationWindow #applicationWindow {
  padding: 0;
}
#applicationWindow .rh-btn,
#applicationWindow .rh-btn-green > button {
  background-color: #b5d46c;
  color: #fff !important;
}
#applicationWindow .rh-btn-transparent {
  padding: 0 20px;
}
#applicationWindow .rh-btn-transparent > button {
  background-color: initial;
  color: #fff !important;
}
#applicationWindow .rh-btn-transparent:after {
  top: 20px !important;
}
#applicationWindow .rh-btn > button,
#applicationWindow #add-to-cart,
#applicationWindow #goToViewerButton,
#applicationWindow #clearbutton {
  display: inline-block;
  font-weight: 400;
  line-height: 1.25;
  text-align: left;
  white-space: nowrap;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: 1px solid transparent;
  color: #555;
  border-radius: 30px;
  padding: 20px 20px 20px 50px;
  width: 100%;
  font-size: 0.9rem;
}
#applicationWindow .rh-btn-green > button:hover {
  background-color: #c7e67e;
}
#applicationWindow .rh-btn:after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 1.55rem;
  position: absolute;
  top: 32px;
  left: 37px;
  color: #fff;
  pointer-events: none;
  line-height: 1.25rem;
}
#applicationWindow #btn-clear-project:after {
  content: "";
}
#applicationWindow #btn-go-viewer:after {
  content: "";
}
#applicationWindow #btn-add-to-cart:after {
  content: "";
}
#applicationWindow #btn-save-project:after {
  content: "";
}
#applicationWindow #btn-back-to-project:after {
  content: "";
}
#applicationWindow #btn-save-obj:after {
  content: "";
  left: 33px;
}
#applicationWindow #modeButtons button {
  width: 50%;
}
@media (max-width: 1199px) {
  #applicationWindow .rh-btn > button {
    border-radius: 20px;
    padding: 10px 10px 10px 36px;
  }
  #applicationWindow .rh-btn:after {
    top: 21px;
    left: 33px;
    font-size: 1.1rem;
  }
  #applicationWindow .rh-btn-transparent:after {
    top: 10px !important;
  }
  #applicationWindow #btn-save-obj:after {
    left: 28px;
  }
}
#applicationWindow #cost-info {
  padding-right: 10px;
}
@media (max-width: 500px) {
  #applicationWindow #cost-info {
    max-width: 240px;
  }
}
#applicationWindow #cost-info label {
  text-align: initial;
  color: #333;
  font-size: 0.9rem;
  margin-left: 30px;
  font-size: 1.5rem;
  padding: 4px 0;
}
#applicationWindow #cost-info label[for=priceConfirmation] {
  color: #fff;
  pointer-events: none;
}
#applicationWindow #cost-info .form-check {
  padding: 0 20px;
  margin-bottom: 6px;
  margin-left: 6px;
  text-align: right;
}
#applicationWindow #cost-info p {
  color: #333;
  padding-top: 8px;
  padding-right: 16px;
  font-size: 0.8rem;
  text-align: right;
  font-weight: bold;
}
@media screen and (max-width: 500px) {
  #applicationWindow #minimapWindowParent {
    display: none;
  }
}
#applicationWindow #price-confirmation {
  color: #333;
  position: absolute;
  top: 93px;
  right: 20px;
  pointer-events: none;
  text-align: right;
  font-weight: bold;
  font-size: 1.3rem;
}
#applicationWindow #buy-container {
  position: absolute;
  right: 20px;
  bottom: 20px;
  padding: 8px;
}
#applicationWindow #minimapWindow {
  padding: 8px;
  padding-top: 50px;
  position: absolute;
  width: 100%;
  height: 100%;
}
#applicationWindow .text-field-parent {
  padding: 10px 20px;
  position: relative;
  width: 100%;
}
#applicationWindow #messagesWindow {
  cursor: pointer;
  color: #fff;
  background-color: #c00;
  width: 100%;
  display: inline-block;
  text-align: center;
}
#applicationWindow #messagesWindow > span {
  margin: 3px;
}
#applicationWindow #messagesWindow .fa-info-circle {
  padding-left: 6px;
}
#applicationWindow #controlsWindow {
  display: flex;
  background-color: #b5d46c;
}
@media (max-width: 499px) {
  #applicationWindow #controlsWindow {
    flex-direction: column;
  }
  #applicationWindow #controlsWindow .text-field-parent {
    padding-top: 0;
  }
}
#applicationWindow #controlsWindow > .text-field-parent {
  display: flex;
}
#applicationWindow .btn-rh {
  font-size: 0.9rem;
  padding: 8px 12px !important;
  border-color: #ccc;
  color: #292b2c;
  background-color: #fff;
  transition: all 0.2s ease-in-out;
  margin: 2px !important;
}
#applicationWindow .btn-rh:hover {
  color: #292b2c;
  background-color: #e6e6e6;
  border-color: #adadad;
}
#applicationWindow #cr-label {
  font-size: 0.8rem;
  position: relative;
}
#applicationWindow .img-substr {
  position: absolute;
  left: 5%;
  bottom: 5%;
  max-width: 80px !important;
  width: 30%;
  opacity: 0.7;
}
#applicationWindow #icon-fill {
  background: rgba(255, 255, 255, 0.3);
  border: none;
  border-radius: 3px;
  bottom: 6px;
  right: 5px;
  cursor: pointer;
  max-width: 100px;
}
#applicationWindow #icon-fill img {
  max-width: 100%;
  height: auto;
}
#applicationWindow .btn-clear-project,
#applicationWindow .btn-go-to-preview,
#applicationWindow .btn-return-to-editor,
#applicationWindow .btn-save-project,
#applicationWindow .btn-download-3d,
#applicationWindow .btn-change-fill,
#applicationWindow .btn-buy-now,
#applicationWindow .btn-designer-info,
#applicationWindow .btn-undo,
#applicationWindow .btn-fit-to-window,
#applicationWindow .btn-enter-zoom-mode {
  background: rgba(255, 255, 255, 0);
  border: none;
  cursor: pointer;
  outline: none !important;
}
#applicationWindow .btn-designer-info {
  position: absolute;
  bottom: 20px;
  left: 20px;
}
#applicationWindow .btn-clear-project {
  position: absolute;
  top: 20px;
  left: 20px;
}
#applicationWindow .btn-undo {
  position: absolute;
  top: 20px;
  left: 80px;
}
#applicationWindow .btn-fit-to-window {
  position: absolute;
  top: 20px;
  right: 20px;
}
#applicationWindow .btn-enter-zoom-mode {
  position: absolute;
  top: 20px;
  right: 80px;
}
#applicationWindow .btn-buy-now {
  text-align: center;
}
#applicationWindow .btn-buy-now img {
  margin-top: 6px;
}
#applicationWindow .btn-go-to-preview {
  margin-top: 16px;
}
#applicationWindow .btn-go-to-preview > img {
  max-width: 70%;
  height: auto;
  margin-bottom: 10px;
}
#applicationWindow #project-name {
  background-color: rgba(255, 255, 255, 0);
  border: none;
  font-size: 1.4rem;
}
#applicationWindow #project-name::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #333;
  opacity: 1;
  /* Firefox */
}
#applicationWindow #project-name:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #333;
}
#applicationWindow #project-name::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #333;
}
#applicationWindow .img-size-1,
#applicationWindow .img-size-2,
#applicationWindow .img-size-3 {
  width: auto;
}
#applicationWindow .img-size-1 {
  height: 40px;
}
#applicationWindow .img-size-2 {
  height: 36px;
}
#applicationWindow .img-size-3 {
  height: 45px;
}
#applicationWindow .img-size-4 {
  height: 80px;
}
#applicationWindow #top-bar {
  position: absolute;
  left: 20px;
  top: 20px;
  right: 20px;
  display: flex;
  overflow: hidden;
}
#applicationWindow #info-text {
  pointer-events: none;
  position: absolute;
  bottom: 10px;
  left: 60px;
  color: #000;
  font-size: 0.9rem;
  right: 100px;
}
@media (max-width: 800px) {
  #applicationWindow {
    /*.img-size-3 {
      height: 32px;
    }*/
    /*#price-reinforcements {
      top: 152px;
    }*/
    /*.btn-go-to-preview > img {
      max-width:90%;
    }*/
  }
  #applicationWindow .img-size-1 {
    height: 28px;
  }
  #applicationWindow .img-size-2 {
    height: 25px;
  }
  #applicationWindow .img-size-4 {
    height: 55px;
  }
  #applicationWindow #top-bar {
    top: 5px;
    left: 0;
    right: 5px;
  }
  #applicationWindow .text-field-parent {
    padding: 0;
  }
  #applicationWindow #project-name {
    padding: 8px;
  }
  #applicationWindow #info-text {
    font-size: 0.85rem;
    line-height: 1.13rem;
    left: 48px;
  }
  #applicationWindow #price-confirmation {
    top: 60px;
    font-size: 1rem;
  }
  #applicationWindow #restOfDesigner {
    max-width: 100px !important;
  }
  #applicationWindow .btn-go-to-preview {
    margin-top: 0 !important;
    margin-bottom: 3px;
  }
  #applicationWindow #messagesWindow > .fa-info-circle {
    display: none;
  }
}
#applicationWindow #editorWindow {
  overflow: hidden;
}
@media (orientation: landscape) and (max-width: 800px) {
  #applicationWindow #designerViewInfoButton {
    padding: 3px 40px !important;
  }
  #applicationWindow #editorInfoMessages {
    padding: 3px 8px !important;
  }
}
@media (max-width: 500px), (max-height: 500px) {
  #applicationWindow {
    /*#price-confirmation {
          font-size:0.9rem;
        }
    
        #price-total {
          font-size:3.5rem;
          line-height:3.5rem;
        }
    
        #price-reinforcements {
          top:180px;
        }
    
        #buy-container {
          bottom:10px;
          right:10px;
        }*/
  }
  #applicationWindow .btn-designer-info {
    bottom: 10px;
    left: 10px;
  }
  #applicationWindow .btn-clear-project {
    top: 10px;
    left: 10px;
  }
  #applicationWindow .btn-undo {
    position: absolute;
    top: 10px;
    left: 55px;
  }
  #applicationWindow .btn-fit-to-window {
    position: absolute;
    top: 10px;
    right: 10px;
  }
  #applicationWindow .btn-enter-zoom-mode {
    position: absolute;
    top: 10px;
    right: 55px;
  }
  #applicationWindow .btn-undo {
    top: 10px;
    left: 55px;
  }
  #applicationWindow .img-size-3 {
    height: 30px;
  }
}
#applicationWindow #restOfDesigner {
  max-width: 125px;
}
#applicationWindow #parts-list td,
#applicationWindow #parts-list th {
  text-align: right;
}
#applicationWindow #parts-list tr td:first-child,
#applicationWindow #parts-list tr th:first-child {
  text-align: left;
}

#shader-mobile,
#shader-rh {
  display: flex;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  position: absolute;
  background-color: rgba(255, 255, 255, 0.8);
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

#shader-rh.visible {
  visibility: visible;
  opacity: 1;
}

#shader-mobile button {
  white-space: initial;
  margin: 10px 0;
  max-width: 80%;
}

@media (max-width: 500px) {
  #shader-mobile {
    display: flex;
    background-color: rgba(0, 0, 0, 0.6);
  }
}
@media (max-width: 500px), (max-height: 500px) {
  main {
    overflow-y: auto;
    overflow-x: hidden;
    height: 100%;
    width: 100%;
  }

  main::-webkit-scrollbar {
    -webkit-appearance: none;
  }

  main::-webkit-scrollbar:vertical {
    width: 20px;
  }

  main::-webkit-scrollbar:horizontal {
    height: 20px;
  }

  main::-webkit-scrollbar-thumb {
    border-radius: 8px;
    border: 2px solid white;
    background-color: rgba(0, 0, 0, 0.5);
  }
}
.db-panel {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  min-height: 100%;
  z-index: 2;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
  visibility: hidden;
  display: flex;
  padding: 15px;
  padding: 3vmin;
}

.db-panel.visible {
  backdrop-filter: blur(4px);
  visibility: visible;
  background-color: rgba(255, 255, 255, 0.7);
  -webkit-box-shadow: inset 0px 0px 10px 10px rgba(0, 0, 0, 0.27);
  -moz-box-shadow: inset 0px 0px 10px 10px rgba(0, 0, 0, 0.27);
  box-shadow: inset 0px 0px 10px 10px rgba(0, 0, 0, 0.27);
}

.db-panel .db-panel-body {
  background-color: rgba(255, 255, 255, 0.9);
  border: 1px solid #000;
  border-radius: 16px;
  padding: 32px 16px 24px 16px;
  min-width: 300px;
  opacity: 0;
  transition: 1s;
  position: relative;
  max-height: 90vh;
}

.db-panel.visible .db-panel-body {
  opacity: 1;
}

.db-panel .db-panel-body.db-panel-list,
#panel-height-chooser .db-panel-body {
  padding: 32px 0 24px 0;
}

.db-panel-list ul {
  margin: 0;
}

.db-panel-list li img {
  max-height: 18px;
  max-width: 18px;
  margin-right: 16px;
}

.db-panel-list li.small img {
  max-height: 14px;
  max-width: 14px;
  margin: 2px 16px 2px 4px;
}

.db-panel-list li > div,
.db-panel-list li > a {
  margin: 0 16px;
  display: flex;
  border-bottom: dotted 1px #000;
  padding: 10px 0;
  width: 100%;
  color: #232323;
}

.db-panel-list li {
  cursor: pointer;
  width: 100%;
  display: flex;
}

#panel-height-chooser .radio:hover,
.db-panel-list li:hover {
  background-color: rgba(238, 238, 238, 0.5);
}

.db-panel .close {
  position: absolute;
  top: 6px;
  right: 8px;
  cursor: pointer;
  opacity: 0.8;
}

.db-panel .close > img {
  width: 16px;
  height: auto;
}

.db-panel h2 {
  font-weight: normal;
  font-size: 20px;
  text-align: center;
  margin-bottom: 16px;
}

#panel-height-chooser .db-panel-body {
  width: 250px;
  min-width: initial;
  padding-left: 0;
}

#segments label {
  font-size: 20px;
  line-height: 33px;
  margin: 0 32px 0 0;
}

#segments .radio {
  cursor: pointer;
}

#segments input {
  margin-left: 12px;
  transform: scale(1.8);
  pointer-events: none;
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/*# sourceMappingURL=style.css.map */
