/* @media (orientation: portrait) {
  :root {
    --container-width: var(--viewport-width, 100vw);
    --container-height: calc(var(--viewport-height, 100vh) * 0.6);
    --canvas-left: 0px;
    --canvas-top: calc(var(--container-height) / 2);
    --left-joystick-position: 0vw;
    --left-close-icon-position: calc(var(--viewport-width, 100vw) - 1.5em);
    --float-gui-top: calc(var(--viewport-height, 100vh) * 0.62);
  }
}
@media (orientation: landscape) {
  :root {
    --container-width: 26em;
    --container-height: var(--viewport-height, 100vh);
    --canvas-left: calc(var(--container-width) / 2);
    --canvas-top: 0px;
    --left-joystick-position: 26em;
    --left-close-icon-position: 14.8em;
    --float-gui-top: 1vh;
  }
} */
body {
  position: relative;
  top: 0;
  left: 0;
  width: var(--viewport-width, 100vw);
  height: var(--viewport-height, 100vh);
  font-family: -apple-system, BlinkMacSystemFont, segoe ui, Roboto,
    helvetica neue, Arial, noto sans, sans-serif, apple color emoji,
    segoe ui emoji, segoe ui symbol, noto color emoji;
  color: #212529;
  overflow: hidden;
  margin: 0;
}
canvas {
  position: absolute;
  top: var(--canvas-top);
  left: var(--canvas-left);
  width: var(--viewport-width, 100vw);
  height: var(--viewport-height, 100vh);
}
.sidebar-container {
  position: absolute;
  width: 400px;
  height: 150px;
  right: 0;
  z-index: 2;
}
.sidebar-container > * {
  width: var(--container-width);
}
.sidebar-container.collapsed ~ canvas {
  top: 0;
  left: 0;
}
.sidebar-icon-container {
  padding: 0.5rem 0.14rem;
  background-color: #7952b3;
  box-shadow: 0 2px 5px 0 rgb(0 0 0 / 16%), 0 2px 10px 0 rgb(0 0 0 / 12%);
  display: flex;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: flex-start;
  align-items: center;
  margin: 0;
  display: none;
}
.sidebar-icon-container > .sidebar-icons > .sidebar-icon {
  border-bottom: 1px dashed #d3d3d3;
  width: 2.5em;
  height: 2.5em;
  border-radius: 1.5em;
  background-color: #fff;
  padding-top: 0.1em;
  box-shadow: 0 2px 5px 0 rgb(0 0 0/16%), 0 2px 10px 0 rgb(0 0 0/12%);
  margin-left: 0.4em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.sidebar-icon-container > .sidebar-icons > .sidebar-icon > .fa {
  font-size: 22px;
  color: #1e79fd;
}
.sidebar-icon-container
  > .sidebar-icons
  > .sidebar-icon
  > input[type="radio"]:checked
  + .fa {
  opacity: 1;
}
.sidebar-icon-container > .sidebar-icons > .sidebar-icon > input[type="radio"] {
  display: none;
}
/* .sidebar-item {
  height: 0;
  width: 0;
} */
.sidebar-item > .sidebar-close {
  position: absolute;
  top: 0.5em;
  left: var(--left-close-icon-position);
  font-size: 1.6em;
  text-align: center;
  vertical-align: bottom;
  font-weight: 400;
  color: #fff;
}
.sidebar-item > .sidebar-close > input[type="checkbox"] {
  display: none;
}
.sidebar-item > .sidebar-close > label {
  position: static;
  width: 4em;
  height: 4em;
}
.sidebar-content {
  padding: 1em;
  width: calc(var(--container-width) - 1.6em);
  height: calc(var(--container-height) - 8em);
  min-height: 100%;
  left: 0;
  background-color: #fff;
  margin-top: 0;
  margin-bottom: 0;
  overflow-x: hidden;
  padding-top: 0;
}
.sidebar-content h4 {
  font-size: 18px;
  margin: 0;
  padding: 10px 12px;
  border-bottom: 2px solid #dedede;
}
.sidebar-content {
  background-color: #1f1f1f;
  padding: 0.75rem;
  background-image: linear-gradient(
    to bottom right,
    rgba(255, 255, 255, 0.2),
    rgba(255, 255, 255, 0.01)
  );
  border-radius: 0.75rem;
  box-shadow: 0 0.125rem 0.25rem rgb(0 0 0 / 10%);
  color: #fff;
}
/* .sidebar-content .vsl-input-container {
  border-bottom: 1px solid #eee;
} */
.float-gui {
  display: block;
  position: absolute;
  top: var(--float-gui-top);
  right: 1vw;
  position: absolute;
  z-index: 2;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 0.2em;
  text-align: center;
  display: none;
}
.float-gui .vsl-input-container {
  width: 22em;
  padding: 0.5em;
  text-align: left;
}
.float-gui ~ .vsl-joystick-container {
  border: 10px green dotted;
}
.float-gui > div > i:first-child {
  display: none;
}
.sidebar-item-buttons {
  width: var(--container-width);
  top: calc(var(--container-height) - 4em);
  left: 0;
  height: 4em;
  display: flex;
  background-color: #fff;
  position: absolute;
  padding: 0 0.2em;
  justify-content: flex-end;
  align-items: flex-start;
  align-content: flex-start;
  flex-wrap: wrap;
  flex-direction: row;
}
.sidebar-item-buttons > .btn {
  min-width: 30%;
  max-width: 6em;
  text-align: center;
}
.btn,
input[type="button"],
input[type="submit"] {
  background-color: #007bff;
  color: #fff;
  margin: 0.1em;
  border-radius: 0.3em;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  border: 2px solid #fff;
}
.vsl-ral-picker-inner-container .vsl-ral-color-button,
.vsl-input-container .vsl-ral-main-button {
  margin: 5px;
  border-radius: 50%;
  border: 2px solid #fff;
  font-size: 0px;
  height: 40px;
  width: 40px;
}
.btn.disabled {
  filter: grayscale(100%);
  cursor: not-allowed;
}
.btn:hover,
input[type="button"]:hover,
input[type="submit"]:hover {
  border: 2px solid gray;
}
.sidebar-content img {
  max-width: 25vw;
  max-height: 20vh;
}
.vsl-input-container {
  max-width: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 0.7em 1em;
}
.vsl-ral-picker .vsl-ral-picker-inner-container {
  overflow-y: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
  max-height: 25vh;
}
.vsl-ral-picker .vsl-ral-picker-inner-container > input {
  width: 4.8em;
}
.vsl-imagelist {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 0.2em;
  margin: 0.2em;
  align-content: center;
}
.vsl-imagelist img {
  max-width: 100%;
  max-height: 100%;
}
.vsl-imagelist label {
  width: 8.6em;
  text-align: center;
  padding: 0.2em;
  margin: 0.2em;
  background-color: #fff;
}
@media (max-width: 900px) {
  body {
    font-size: 80%;
  }
  .vsl-imagelist label {
    width: 5.3em;
  }
}
.vsl-imagelist input[type="radio"] {
  display: none;
}
.vsl-imagelist input[type="radio"] + img {
  opacity: 0.4;
}
.vsl-imagelist input[type="radio"]:checked + img {
  opacity: 1;
}
.vsl-imagelist-label {
  height: 2.5em;
}
.vsl-imagelist label {
  border: 2px dashed #a9a9a9;
}
.vsl-imagelist label:hover {
  border: 2px solid #a9a9a9;
}
.vsl-draggables .vsl-imagelist > label > img {
  cursor: grab;
}
.vsl-joystick-container {
  display: block;
  width: 100px;
  height: 100px;
  border: 2px solid gray;
  background-color: rgba(128, 128, 128, 0.5);
  padding: 1em;
  cursor: move;
  display: inline-block;
  position: fixed !important;
  bottom: 2em;
  z-index: 10;
}
.vsl-joystick-container {
  margin-right: -24vw;
  margin-bottom: -2vh;
}
.vsl-joystick-container.vsl-joystick-round {
  margin-left: calc(-24vw + var(--left-joystick-position));
}
.vsl-perspective-scaler {
  position: fixed;
  bottom: 1em;
  width: 10em;
  text-align: center;
  left: calc(50% + var(--left-joystick-position) / 2);
  margin-left: -5em;
}
@media (max-width: 600px) {
  .vsl-joystick-container {
    transform: scale(0.5);
    margin-right: -19vw;
    margin-bottom: -1.6em;
  }
  .vsl-joystick-container.vsl-joystick-round {
    margin-left: calc(-19vw + var(--left-joystick-position));
  }
}
.vsl-joystick-container.dragging,
.vsl-joystick-container:hover {
  border: 2px solid #fff;
}
.vsl-joystick-inner-container {
  width: 75px;
  height: 75px;
  border: 2px solid gray;
  position: relative;
  margin-left: 10px;
  margin-top: 10px;
}
.vsl-joystick-round {
  border-radius: 50%;
}
.vsl-joystick-container .joystick-handle {
  position: relative;
  width: 2em;
  height: 2em;
  background-color: red;
  text-align: center;
  vertical-align: middle;
  color: #fff;
  font-weight: lighter;
  padding: 0;
  margin-top: -124.6px;
  margin-left: -16.8px;
}
.vsl-joystick-container .joystick-handle.vsl-joystick-round {
  margin-top: -119px;
  margin-left: -0.8em;
}
.vsl-joystick-container .joystick-center {
  position: absolute;
  width: 2em;
  height: 2em;
  top: 50%;
  left: 50%;
  margin-top: -1em;
  margin-left: -1em;
  border: 2px dashed gray;
}
.contact-form input,
.contact-form textarea {
  width: 95%;
  margin-left: 0.25em;
  margin-right: 0.25em;
  margin-bottom: 0.1em;
  font-size: 1em;
}
.contact-form .status {
  position: relative;
  margin-left: -1.5em;
  vertical-align: top;
  font-size: 60%;
}
.contact-form input:invalid + .status::after {
  content: " ⨉";
  color: red;
}
.contact-form input:valid + .status::after {
  content: " ✓";
  color: green;
}
.contact-form input[type="button"]:invalid {
  background-color: #ccc;
}
.contact-form input[type="submit"] {
  margin-top: 2em;
}
.contact-form input.two-thirds {
  width: 60%;
}
.contact-form input.one-third {
  width: calc(35% - 1.1em);
}
.contact-form input.two-thirds ~ input.one-third {
  margin-left: 0.5em;
}
.contact-form input.two-thirds ~ input.one-third[required] {
  margin-left: 0;
}
.contact-form input.one-third ~ input.two-thirds {
  margin-left: 0.5em;
}
.saving .contact-form .btn-primary {
  background-color: gray;
}
.error {
  background-color: red;
  color: #fff;
  border-radius: 2px;
}
@keyframes pulse_animation {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
.saving .contact-form {
  animation-name: pulse_animation;
  animation-duration: 1.5s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-out;
}
.contact-form input,
.contact-form textarea {
  margin-left: 0;
  margin-right: 0;
}
.contact-form textarea {
  height: 4em;
}
form#pars > fieldset img {
  max-width: 8em;
  padding: 0;
  display: inline-block;
}
form#pars #next,
form#pars #back {
  display: inline-block;
  width: 7em;
  margin-top: 1em;
  margin-right: 1em;
}
.vsl-slider label {
  width: 40%;
  display: inline-block;
  word-wrap: break-word;
}
.vsl-slider input[type="range"] {
  width: 29%;
}
.vsl-slider input[type="number"] {
  width: 16%;
  text-align: right;
}
svg.vsl-polygon-editor {
  pointer-events: all;
  stroke-width: 3;
  width: calc(var(--viewport-width, 100vw) - var(--container-width) - 6em);
  height: calc(var(--viewport-height, 100vh) - var(--canvas-top) - 6em);
  position: fixed;
  right: 3em;
  bottom: 3em;
  background-image: url(../../images/papergrid.png);
  background-size: 100px 100px;
  background-color: rgba(255, 255, 255, 0.6);
}
.share-container ~ canvas {
  left: 0;
}
div.share-container {
  width: 14em;
  height: 22em;
  display: block;
  position: absolute;
  left: 1em;
  top: 1em;
  background-color: rgba(255, 255, 255, 0.7);
  z-index: 100;
  padding: 1em;
  border-radius: 0.4em;
}
div.share-container img {
  max-width: 10em;
}
.vsl-navigator3d table {
  width: 100%;
  table-layout: fixed;
}
.vsl-navigator3d table a {
  width: 100%;
  padding: 0;
  display: block;
  margin: 2px;
  border: none;
}
.sidebar-icon-container > .sidebar-icons > .sidebar-icon > .fa.fa-reynaers {
  width: 100%;
  height: 100%;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  margin-left: -1px;
  margin-top: -1px;
}
.sidebar-icon > input + .fa.fa-reynaers {
  opacity: 0.25;
  cursor: pointer;
}
.sidebar-icon > input:checked + .fa.fa-reynaers {
  opacity: 1;
}
.sidebar-icon > input + .fa.fa-reynaers:hover {
  opacity: 1;
}
i.fa.fa-reynaers-home {
  background-image: url("../../Content/designers/reynaers/icons/1.%20Home.png");
}
i.fa.fa-reynaers-floorplan {
  background-image: url("../../Content/designers/reynaers/icons/2.%20Floorplan.png");
}
i.fa.fa-reynaers-roof {
  background-image: url("../../Content/designers/reynaers/icons/3.%20Roof.png");
}
i.fa.fa-reynaers-overhang {
  background-image: url("../../Content/designers/reynaers/icons/4.%20Overhang.png");
}
i.fa.fa-reynaers-openingelements {
  background-image: url("../../Content/designers/reynaers/icons/5.%20OpeningElements.png");
}
i.fa.fa-reynaers-colours {
  background-image: url("../../Content/designers/reynaers/icons/6.%20Colours.png");
}
i.fa.fa-reynaers-walldimensions {
  background-image: url("../../Content/designers/reynaers/icons/7.%20WallDimensions.png");
}
i.fa.fa-reynaers-contact {
  background-image: url("../../Content/designers/reynaers/icons/8.%20Contact.png");
}
i.fa.fa-reynaers-photoupload {
  background-image: url("../../Content/designers/reynaers/icons/9.%20Photoupload.png");
}
input[type="number"] {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

#vsl-box {
  background: #f0faff;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  padding: 0.5em;
  opacity: 0.85;
  position: absolute;
  right: 1em;
  bottom: 1em;
  transition: 0.3s;
  opacity: 0.25;
  width: 4em;
  text-align: center;
  overflow: hidden;
  height: 1em;
  padding-top: 0.15em;
  z-index: 1;
  display: none;
}

#vsl-box:hover {
  opacity: 0.85;
  width: 20em;
}

@media screen and (max-device-height: 800px) {
  #vsl-box {
    transform-origin: bottom left;
    transform: scale(0.6);
    left: 0.5em;
    bottom: 0.5em;
  }
}

#vr-qr-code {
  position: fixed;
  left: 50%;
  top: 50%;
  margin-left: -75px;
  margin-top: -75px;
  background-color: white;
}

#vr-qr-code > div {
  display: inline-block;
  text-align: center;
}

.hidden {
  display: none;
}

.gdpr-line input[type="checkbox"] {
  width: 2em;
}

.gdpr-line label {
  width: 12em;
  display: inline;
}

.gdpr-line label a {
  text-decoration: underline;
}

.gdpr-line .gdpr-explanation {
  display: none;
}

.gdpr-line a:hover + div.gdpr-explanation {
  display: block;
  position: relative;
  background-color: lightgray;
  border-radius: 2px;
  padding: 1em;
  width: 90%;
  margin-top: -26em;
  height: 20em;
  z-index: 1000;
  font-size: x-small;
  margin-left: 1em;
  margin-bottom: 5em;
}
.vsl-ral-picker-inner-container .active {
  border: 2px solid #fb0202;
}
.color-circle{
    position: relative;
}
.vsl-ral-picker-inner-container .active-div:after {
  content:"";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 25px;
  z-index: 1;
  background-image: url(../../images/check.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 30px;
  width: 40px;
  height: 40px;
}
.selected-color{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
label {
    font-weight: bold;
}

.selected-color {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0px 10px;
    margin-bottom: 10px;
    border-bottom: 2px solid #dedede;
}