@font-face {
    font-family: 'Roboto';
    src: url('../assets/fonts/Roboto-Thin.ttf') format('truetype');
    font-weight: 100;
}

@font-face {
    font-family: 'Roboto';
    src: url('../assets/fonts/Roboto-Light.ttf') format('truetype');
    font-weight: 300;
}

@font-face {
    font-family: 'Roboto';
    src: url('../assets/fonts/Roboto-Regular.ttf') format('truetype');
    font-weight: 400;
}

@font-face {
    font-family: 'Roboto';
    src: url('../assets/fonts/Roboto-Medium.ttf') format('truetype');
    font-weight: 500;
}

@font-face {
    font-family: 'Roboto';
    src: url('../assets/fonts/Roboto-Bold.ttf') format('truetype');
    font-weight: 700;
}

* {
    box-sizing: border-box;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
}

.hbox {
    display: flex;
    flex-direction: row;
}

.vbox {
    display: flex;
    flex-direction: column;
}

.flexCenter {
    display: flex;
    justify-content: center;
    align-items: center;
}

.flex1 {
    flex: 1;
}

.relative {
    position: relative;
}

html {
    width: 100%;
    height: 100%;
    position: fixed;
    font-family: Helvetica, Arial, sans-serif;
    font-size: 12px;
    color: #ffffff;
}

body {
    overflow: hidden;
    width: 100%;
    height: 100%;
    margin: 0;
    background-color: #2a2a2a;
}

.app {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
}

.toggler {
    background-color: #515151;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

#topBarToggler {
    width: 70px;
    height: 45px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 0 0 10px 10px;
    margin-top: -1px;
    z-index: 1;
}

#topBarToggler::before {
    content: "";
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #ff6c0d;
}

#topBarToggler.open::before {
    transform: rotateZ(180deg);
}

#topBarToggler.collapsed {
    margin-top: -45px;
}

#sideBarToggler.collapsed {
    left: -45px;
}

#sideBarToggler.open::before {
    transform: rotateZ(180deg);
}

#sideBarToggler::before {
    content: "";
    width: 0;
    height: 0;
    border-left: 10px solid #ff6c0d;
    border-bottom: 10px solid transparent;
    border-top: 10px solid transparent;
}

#sideBarToggler {
    width: 45px;
    height: 70px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    border-radius: 0 10px 10px 0;
}

.bounceX {
    animation: bounceX 2s infinite;
}

.bounceY {
    animation: bounceY 2s infinite;
}

@keyframes bounceY {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-30px);
    }
    60% {
        transform: translateX(-50%) translateY(-15px);
    }
}

@keyframes bounceX {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(-50%) translateX(0);
    }
    40% {
        transform: translateY(-50%) translateX(-30px);
    }
    60% {
        transform: translateY(-50%) translateX(-15px);
    }
}

#properties {
    min-width: 280px;
    max-width: 280px;
    width: 280px;
    background-image: linear-gradient(to right, #c9c9c9, #f9f9f7);
    overflow-x: visible;
    overflow-y: auto;
    transition: all 0.2s ease-in-out;
    z-index: 3;
}

#properties.collapsed {
    margin-left: -280px;
}

#building_changer {
    display: none;
}

.content {
    position: relative;
}

#content {
    height: 100%;
}

#contentCanvas {
    touch-action: none;
    width: 100%;
    height: 100%;
}

#content::before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    background: url('../assets/main_logo_light.svg') no-repeat;
    background-position: center center;
    width: 133px;
    height: 65px;
}

#topBar {
    background-color: #515151;
    border-top: 6px solid #e6e7e8;
    transition: all 0.2s ease-in-out;
    white-space: nowrap;
    z-index: 2;
}

#topBar.leftShifted {
    margin-left: -280px;
}

#userArea {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 53px;
    padding-top: 15px;
    padding-bottom: 15px;
    box-sizing: content-box;
    border-bottom: 6px solid #e6e7e8;
}

.button::before, #getQuote::before {
    content: attr(data-content);
}

#statusMessage {
    font-size: 36px;
    text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.5);
}

#projectsDiv {
    margin-left: auto;
    margin-right: auto;
    height: 100%;
    justify-content: center;
    align-items: center;
}

.buttons {
    align-items: center;
    margin-top: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.buttons > * {
    margin: 0 2px;
    text-align: center;
    white-space: nowrap;
}

.topExtras {
    justify-content: center;
    align-items: center;
    background-color: #515151;
    z-index: 1;
}

.topExtras > div {
    display: flex;
    justify-content: center;
    align-items: center;
}

#viewControls {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin: 10px;
}

#viewControls > div:first-of-type {
    margin-bottom: 10px;
}

a {
    color: inherit;
    text-decoration: underline;
}

.noselect {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.logo {
    background: url('../assets/main_logo_light.svg') no-repeat center;
    background-position: center center;
    background-size: 75%;
    background-color: white;
    width: 100%;
    height: 133px;
    border-top: 6px solid #e6e7e8;
    border-bottom: 5px solid #ff6c0d;
}

.telephone {
    margin-top: 0;
    margin-bottom: 0;
    text-align: right;
    font-size: 14px;
}

.bold_orange {
    color: #de7c2f;
    font-weight: bold;
    font-size: 19px;
    vertical-align: middle;
}

#properties_fields {
    padding: 5px 10px;
}

#cardboard_btn {
    display: inline-block;
    background-image: url("assets/icons/cardboard-logo_2x.png");
    background-size: 80px;
    background-position: 40px;
    width: 40px;
    height: 25px;
    position: absolute;
    left: 400px;
    top: 50px;

    opacity: 0.7;
    cursor: pointer;
}

#cardboard_btn:hover {
    opacity: 1;
}

.separator {
    position: absolute;
    display: none;
    top: 0;
    left: -1px;
    height: 108px;
    width: 2px;
    border-left: 1px solid #161616;
    border-right: 1px solid #444444;
}


/* buttons */

.supportButtons {
    margin-top: 2px;
    float: right;
}

.button {
    min-width: 95px;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 13px;
    font-family: Roboto;
    font-weight: bold;
    letter-spacing: 0.6px;
    color: #FFFFFF;
    padding: 4px 6px;
    margin-left: 7px;
    margin-right: 7px;
    margin-top: 2px;
    margin-bottom: 5px;
    background-color: #ff6c0d;
    border: 3px solid white;
    border-radius: 5px;
    background-size: 25px 25px;
    background-repeat: no-repeat;
    background-position: center center;
}

.button.disabled {
    opacity: 0.5;
    pointer-events: none;
    cursor: default;
}

.button.toggled {
    opacity: 0.5;
}

.popupBackground {
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.4);
    width: 100%;
    height: 100%;
    z-index: 10001;
}

.popupWindow {
    position: absolute;
    padding: 20px;
    background-color: #515151;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 450px;
    max-width: calc(100% - 8px);
    z-index: 10003;
}

.popupWindow .title {
    font-size: 2rem;
    font-weight: bold;
    border-bottom: 1px solid #616161;
    margin-bottom: 20px;
}

.popupWindow .message {
    font-size: 1.5rem;
    margin-top: 20px;
    margin-bottom: 25px;
    margin-left: 15px;
    text-align: justify;
}

.popupWindow input {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 35px;
}

.popupWindow .buttonContainer {
    display: flex;
    justify-content: center;
    align-items: center;
}

.popupWindow .button {
    min-width: 40px;
    padding: 8px;
    margin: 0 9px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close.button {
    position: absolute;
    min-width: initial;
    width: 30px;
    top: 0;
    right: 0;
}

.instructionWrapper {
    position: absolute;
    cursor: pointer;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.instruction {
    position: relative;
    background-color: #ff6c0d;
    border-radius: 10px;
    text-align: center;
    font-size: 2.5rem;
    box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.5);
    text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.5);
    padding: 40px;
    margin: 40px;
}

.instruction.arrow-right::before {
    content: "";
    background-color: #ff6c0d;
    width: 30px;
    height: 30px;
    transform: rotate(45deg);
    position: absolute;
    top: 40%;
    right: -15px;
}

.instruction.arrow-left::before {
    content: "";
    background-color: #ff6c0d;
    width: 30px;
    height: 30px;
    transform: rotate(45deg);
    position: absolute;
    top: 40%;
    left: -15px;
}

.instruction.arrow-top::before {
    content: "";
    background-color: #ff6c0d;
    width: 30px;
    height: 30px;
    transform: rotate(45deg);
    position: absolute;
    top: -15px;
    left: calc(50% - 15px);
}

.instruction .next {
    margin-top: 40px;
    width: 40px;
    background-color: white;
    color: black;
    text-shadow: initial;
    box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.5);
    border-radius: 0;
}

.instructionWrapper.left {
    justify-content: flex-start;
}

.instructionWrapper.right {
    justify-content: flex-end;
}

.instructionWrapper.top {
    align-items: flex-start;
}

.instructionWrapper.bottom {
    align-items: flex-end;
}

/* auth */

.auth_fieldset {
    position: relative;
    padding-bottom: 20px;
}

.auth_fieldset legend {
    font-size: 16px;
}

.auth_button {
    position: absolute;
    right: 5px;
    bottom: 5px;
}

.auth_button.login {
    top: 135px;
    bottom: inherit;
}

.sendEmailButtonWrapper {
    margin-top: 40px;
}

.auth_close_container {
    position: absolute;
    right: 0;
    top: 20px;
    width: 100%;
    height: 40px;
}

.auth_close {
    cursor: pointer;
    display: inline-block;
    position: absolute;
    right: 12px;
    text-align: center;
    width: 40px;
    height: 30px;
    line-height: 30px;
    vertical-align: middle;
    padding: 0 10px;
}

.auth_x {
    width: 20px;
    height: 20px;
    display: inline-block;
    background: url('../assets/close.svg') no-repeat center;
    background-size: 20px 20px;
    vertical-align: middle;
    margin-left: 5px;
    margin-top: -1px;
}

.auth_popup label {
    width: 92px;
    display: inline-block;
}

.forgotten_password {
    display: inline-block;
    margin-top: 30px;
    margin-bottom: -8px;
    text-decoration: underline;
    cursor: pointer;
}

.send_password {
    display: none;
    padding-top: 30px;
    padding-bottom: 20px;
}

.open_forgotten_password .send_password {
    display: block;
}

/* end of auth */

.fieldset[data-orderid="1"] .utils-label, .fieldset[data-orderid="2"] .utils-label {
    width: 40px;
    min-width: initial;
}

.fieldset {
    background-color: white;
    color: black;
    border-radius: 10px;
    margin-top: 10px;
}

.fieldset .label {
    letter-spacing: 0px;
    cursor: pointer;

    position: relative;

    font-family: Roboto;
    font-size: 13px;
    font-weight: 700;
    color: #FFFFFF;

    padding: 4px 6px;
    margin-top: 0;

    background: #ff6c0d;
    border: 3px solid white;
    border-radius: 10px;
    box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.5);
    text-transform: uppercase;
}

/* transition
.fields {
	padding: 10px 10px;
	overflow: hidden;
	-webkit-transition: max-height 0.3s ease-in, padding 0.3s ease-in;
	max-height: 185px;
}

.fieldset.closed .fields {
	height: auto;
	max-height: 0;
	padding: 0 10px;
}
*/

.close {
    background-color: white;
    color: black;
    font-size: 2rem;
    cursor: pointer;
    width: 32px;
    height: 32px;
    border-radius: 100%;
    border: 2px solid black;
    margin-left: auto;
    margin-right: 3px;
}

.startButtons .logo {
    position: relative;
}

.logo .close {
    position: absolute;
    margin: 0;
    top: 3px;
    right: 3px;
}

.fields {
    padding: 10px 10px;
}

.fieldset.closed .fields {
    display: none;
}

.fieldset-header-icon {
    position: absolute;
    right: 10px;
    height: 100%;
    width: 10px;
    top: 0;
    background: url('../assets/icons/arrow_right.svg') no-repeat center;
    filter: brightness(100);
    background-size: 65%;
    transform: rotateZ(90deg);
}

.fieldset.closed .fieldset-header-icon {
    transform: initial;
}

.fieldset.closed .nextStepDiv, .fieldset.closed .toggleContainer {
    display: none;
}

.unitsSpan {
    color: #f68934;
    font-weight: bold;
    font-size: 14px;
    padding-left: 4px;

    display: inline-block;
    width: 0px;
}

.nextStepDiv {
    color: #f68934;
    font-style: italic;
    font-size: 14px;
    font-weight: bold;
    text-align: right;
    padding-bottom: 10px;
    padding-right: 10px;
    margin-left: 60%;
    cursor: pointer;
}

.utils-label {
    display: inline-block;
    min-width: 61px;
}

.utils-label.insetbay {
    width: 80px;
}

.leanToSection .utils-label {
    min-width: initial;
}

/*
#pitch .utils-input {
	width: 20px;
}
*/

div[data-id='overhang_category'] {
    margin: 5px 0 5px 0;
}

*[data-id='overhang_left'] label.utils-label, *[data-id='overhang_right'] label.utils-label, *[data-id='overhang_front'] label.utils-label, *[data-id='overhang_back'] label.utils-label {
    padding-left: 10px;
}

*[data-id='overhang_left'] label.utils-label:before, *[data-id='overhang_right'] label.utils-label:before, *[data-id='overhang_front'] label.utils-label:before, *[data-id='overhang_back'] label.utils-label:before {
    content: "-";
    position: relative;
    left: -5px;
}

*[data-id='overhang_end'] input[type='range'] {
    vertical-align: middle;
}

*[data-id='overhang_end'] {
    margin-bottom: 6px;
}

*[data-id='overhang_end'] .utils-input, *[data-id='overhang_end'] span {
    vertical-align: super;
}

.scenePanel .toggleContainer > label:first-of-type, *[data-id='no_walls'] .utils-label, *[data-id='single_slope'] .utils-label {
    width: auto;
    padding-right: 8px;
}

*[data-id='no_walls'] {
    display: none !important;
}

.utils-input {
    color: #f68934;
    background-color: #58585a;
    border: 1px solid transparent;
    padding: 2px;

    cursor: auto;
    width: 30px;
    text-align: right;

    font-weight: bold;
    font-size: 14px;
}

.numberInputWrapper {
    align-items: center;
}

.numberInputWrapper.disabled {
    opacity: 0.5;
    pointer-events: none;
}

input[type="range"] {
    cursor: pointer;
    vertical-align: middle;
    width: 85px;
    padding-top: 0;
    padding-bottom: 5px;

}

input[type="checkbox"] {
    vertical-align: middle;
}

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

input[type=number] {
    -moz-appearance: textfield;
    margin-left: 3px;
    margin-right: -2px;
}

.utils-range {
    display: flex;
}

.utils-range.disabled {
    opacity: 0.5;
    pointer-events: none;
}

.separator_vertical {
    border-top: 1px solid #000000;
    border-bottom: 1px solid #525252;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

/*
 Zoom in/out
*/

#zoom_in {
    cursor: pointer;
    background-image: url('../assets/zoom_in.svg');
}

#zoom_out {
    cursor: pointer;
    background-image: url('../assets/zoom_out.svg');
}

.zoom_btn {
    opacity: 0.85;
    float: left;
    margin-left: 4px;
    width: 30px;
    height: 30px;

    background-size: 70%;
    background-position: center;
    background-repeat: no-repeat;
}

.zoom_btn:active, .zoom_btn:hover {
    opacity: 1;
}

/*
 Accessories
*/

#accessories {
    cursor: pointer;
    float: left;
    margin-left: 6px;
    margin-top: 0px;
}


#truck .icon {
    position: relative;
    top: -2px;
    background-image: url('../assets/truck.svg');
    background-size: 36px;
}

#person .icon {
    position: relative;
    top: -2px;
    background-image: url('../assets/person.svg');
    width: 30px;
    height: 30px;
    background-size: 8px;
}

.accessory_btn .icon {
    display: inline-block;
    width: 40px;
    height: 30px;
    margin-left: 2px;
    background-size: 40px;
    background-position: center;
    background-repeat: no-repeat;
}

.accessory_btn {
    height: 30px;
    position: relative;
    float: left;
    margin-left: 4px;

    border: 2px solid rgba(0, 0, 0, 0);
    border-radius: 2px;
}

.accessory_btn.selected {
    border-color: #ffffff;
}

.accessory_btn > div {
    opacity: 0.85;
}

.accessory_btn > div:active, .accessory_btn > div:hover {
    opacity: 1;
}

.move_icon {
    position: relative;
    top: -3px;

    display: none;
    margin-bottom: -1px;
    width: 20px;
    height: 20px;
    background: url('../assets/move.svg') no-repeat center;
    background-size: 19px;
    padding: 15px 19px;
}

.move_icon.placing {
    background: url('../assets/arrow_right.svg') no-repeat center;
    background-size: 17px;
    pointer-events: none;
    transform: rotate(90deg);
}

.accessory_btn.selected .move_icon {
    display: inline-block;
}

/*
 Scene Panel
*/

.scenePanel {
    margin-left: 0px;
    margin-right: 0px;
}

.scenePanel.closed .content {
    display: none;
}

.scene-placing {
    display: none;
    padding: 10px;
    line-height: 15px;
}

.leanToSection .leftArrow, .leanToSection .rightArrow {
    width: 20px;
    height: 20px;
}

.leftArrow, .rightArrow {
    display: inline-block;
    width: 30px;
    height: 30px;
    background: url('../assets/arrow_right.svg') no-repeat center;
    background-size: 70%;
    /* margin-top: 20px; */
    vertical-align: bottom;
    position: relative;
    top: 2px;
    left: 3px;
}

.leftArrow {
    transform: rotate(180deg);
}

.placing .scene-placing {
    display: block;
}

.btn {
    display: inline-block;
    /*background: url('../assets/plus.svg');
    background-size: 100%;
    */
    cursor: pointer;
    margin-top: 10px;
    margin-left: 10px;
    border-radius: 10px;
    border: 1px solid #222222;
    padding: 4px 8px;
    background-color: white;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, .6);
}

.scene-newBtn {
    display: inline-block;
    /*background: url('../assets/plus.svg');
    background-size: 100%;
    */
    cursor: pointer;
    margin-top: 0px;
    margin-left: 10px;
    margin-bottom: 6px;
    border-radius: 3px;
    border: 1px solid #222222;
    padding: 4px 8px;
    background-color: #efefef;
}

.sideLabel {
    text-transform: capitalize;
    font-weight: bold;
    margin-left: 3px;
}

.addon-element {
    margin-bottom: 10px;
}

.addon-element.disabled {
    pointer-events: none;
}

.addon-element.disabled .addNew {
    display: none;
}

.addon-element:not(.disabled) .loadingSpan {
    display: none;
}

#sceneNodes {
    margin-top: 0px;
    max-height: 100px;
    overflow-y: auto;
    margin-top: 5px;
    margin-bottom: 5px;
    padding: 0 10px;
    line-height: 20px;
    /*
    border-radius: 4px;
    border: 1px solid #3D3D3D;
    background-color: #252525;

    padding-left: 10px;
    padding-top: 10px;
    */
}

.sceneNode {
    position: relative;
    display: flex;
    align-items: center;
}

.sceneNodeName {
    cursor: pointer;
}

.sceneNode.active .sceneNodeName {
    color: #f58932;
}

.sceneNodeVisibility {
    cursor: pointer;
    display: inline-block;
    position: absolute;
    top: 0;
    right: 40px;
    width: 20px;
    height: 20px;
    background: url('../assets/eye.svg') no-repeat center;
    background-size: 70%;
}

.sceneNodeDestroy {
    cursor: pointer;
    right: 2px;
    width: 44px;
    height: 44px;
    background: url('../assets/trash2.svg') no-repeat center;
    background-size: 70%;
}

.sceneNodeMove {
    cursor: pointer;
    width: 44px;
    height: 44px;
    margin-left: auto;
    background: url('../assets/move.svg') no-repeat center;
    background-size: 70%;
}

.placing .sceneNodeDestroy {
    display: none;
}

.placing .sceneNodeMove {
    display: none;
}

.unselectable {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/*
 Addon select
*/

.addon-list {
    position: absolute;
    z-index: 9999;
    line-height: 24px;
    /* margin-top will be set by js (in ToolsView) on #properties.onscroll */
    margin-left: 65px;
    margin-top: -114px;
    border: 1px solid #222222;
    background-color: #efefef;
    border-radius: 3px;
}

.addon-nested {
    position: absolute;
    left: 110px;
    z-index: 9999;
    line-height: 24px;
    margin-top: 2px;
    margin-left: 10px;
    border: 1px solid #222222;
    background-color: #efefef;
    border-radius: 3px;
}

.placing .addon-element {
    display: none;
}

.addon-option {
    cursor: pointer;
    padding: 2px 10px;
    white-space: nowrap;
}

.addon-option:hover {
    background-color: #7d7d7d;
}

/*
 canvas cursors
*/

.grab {
    cursor: grab;
}

.grabbing {
    cursor: grab;
    cursor: grabbing;
}

.move {
    cursor: move;
}

.copy {
    cursor: copy;
}

/*
 General
*/

.hidden {
    display: none !important;
}


/*
 Color Input
*/

.color-element {
    display: inline-block;
    height: 25px;
    margin-top: 6px;
    position: relative;
}

.color-button {
    cursor: pointer;
    margin-left: 5px;
    white-space: nowrap;
}

.color-list {
    position: absolute;
    width: 230px;
    bottom: 0;
    right: 0;
    z-index: 9999;
    line-height: 24px;
    height: 286px;
    overflow-y: scroll;

    margin-top: 28px; /* -310px to open upwards */
    margin-left: -6px;

    border: 3px solid #fff;
    padding: 1px 0px 4px 0px;

    background-color: white;

    border-radius: 3px;
}

.disclaimer {
    margin-top: 10px;
    margin-bottom: 10px;
    color: gray;
}

.color-disclaimer {
    position: absolute;
    border: 3px solid white;
    vertical-align: middle;
    padding: 6px;
    background: white;
    z-index: 9999;
    margin-left: -6px;
    font-size: 0.9rem;
    white-space: nowrap;
    width: 200px;
    text-align: center;
    overflow-x: auto;
}

.disclaimerDetails {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 300px;
    background: #252525;
    border: 1px solid #3d3d3d;
    padding: 20px;
    text-align: justify;
    border-radius: 4px;
    z-index: 10000;
}

.disclaimerDetailsCloseButton {
    position: absolute;
    top: 2px;
    right: 2px;
    cursor: pointer;
    width: 20px;
    height: 20px;
    cursor: pointer;
    background: url(assets/close.svg);
    background-size: contain;
    background-repeat: no-repeat;
}

#disclaimerDetailsButton {
    background: #f58932;
    background: linear-gradient(to bottom, #f58932, #c76012);
    border-radius: 99px;
    margin-left: 4px;
    padding-left: 5px;
    padding-right: 5px;
    cursor: pointer;
}

.infoBubbleButton {
    pointer-events: initial !important;
    width: 27px;
    height: 27px;
    font-size: 22px;
    margin-left: 8px;
    font-weight: bold;
    color: grey;
    border: 2px solid grey;
    border-radius: 100%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.leanToWallsPopup > .vbox {
    align-items: center;
}

.leanToWallsPopup .img {
    height: 160px;
    display: flex;
    flex-direction: column-reverse;
    margin-top: 10px;
}

.leanToWallsPopup .imgLabel {
    margin-bottom: 5px;
    text-align: center;
    font-size: 1.3rem;
    font-weight: bold;
    text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.5);
}

.color-option {
    cursor: pointer;
    padding-left: 4px;
}

.color-option:hover {
    background-color: #F0F0F0;
    color: #000;
}

.color-option.selected {
    background-color: #F0F0F0;
    color: #000;
}

.color-box {
    display: inline-block;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, .6);
    width: 65px;
    height: 18px;
    margin-right: 6px;
    vertical-align: middle;

    border-radius: 2px;

    -webkit-border-bottom-right-radius: 8px;
    -moz-border-bottom-right-radius: 8px;
    border-bottom-right-radius: 8px;
}

.color-span {
    vertical-align: middle;
}

[data-button="selected"] .color-span {
    display: inline-block;
    width: 97px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.utils-field[data-id="wall"] {
    margin-top: 10px;
    margin-bottom: 15px;
}

#leanToleft .utils-label {
    display: none;
}

#leanToright .utils-field {
    position: relative;
    left: -15px;
}

#leanToright .utils-label {
    margin-right: 5px;
    min-width: 35px;
}

#leanToback {
    margin-bottom: 43px;
}

#leanTofront {
    margin-top: 43px;
}

.leanToSection {
    position: relative;
    padding: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.leanTo {
    width: 117px;
    display: inline-block;

    border: 2px solid #fff;
    border-radius: 7px;
    padding: 4px 4px;
}

.leanTo.disabled {
    border-color: rgba(255, 255, 255, 0.5);
}


.leanToWraparound {
    width: 40px;
    height: 60px;

    border-width: 2px;
    border-color: #ffffff;
}

.leanToWraparound, .leanToWraparound * {
    cursor: pointer;
}

.leanToWraparound.disabled {
    opacity: 0.5;
}

.leanToWraparound.disabled * {
    pointer-events: none;
}

/* position, border-style */

.leanToWraparound.back {
    border-top-style: solid;
}

.leanToWraparound.front {
    border-bottom-style: solid;
}

.leanToWraparound.left {
    border-left-style: solid;
    right: 15px;
}

.leanToWraparound.right {
    border-right-style: solid;
}

/* border radius */

.leanToWraparound.back.left {
    border-top-left-radius: 20px;
}

.leanToWraparound.back.right {
    border-top-right-radius: 20px;
}

.leanToWraparound.front.left {
    border-bottom-left-radius: 20px;
}

.leanToWraparound.front.right {
    border-bottom-right-radius: 20px;
}

/* inputs */

.leanToWraparound.left input {
    margin-left: 18px;
}

.leanToWraparound.right input {
    margin-left: 10px;
}

.leanToWraparound.back input {
    margin-top: 34px;
}

.leanToWraparound.front input {
    margin-top: 29px;
}

.leanToSection .unitsSpan {
    display: none;
}

.leanToHeader {
    text-align: center;
}

.leanToSection .utils-label {
    width: 43px;
}

.utils-field {
    display: flex;
    align-items: center;
}

.utils-field.disabled {
    opacity: 0.5;
    pointer-events: none;
}

#sharePanel {
    display: none;
    position: absolute;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transition: 0.2s ease-in-out;
    -moz-transition: 0.2s ease-in-out;
    -o-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
}

.share_btn {
    cursor: pointer;
    width: 40px;
    height: 40px;

    -webkit-transition: 0.2s ease-in-out;
    -moz-transition: 0.2s ease-in-out;
    -o-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
}

.share_facebook:hover {
    width: 50px;
    margin-left: -10px;
}

.share_google:hover {
    width: 50px;
    margin-left: -10px;
}


.share_x:hover {
    width: 50px;
    margin-left: -10px;
}

.share_pinterest:hover {
    width: 50px;
    margin-left: -10px;
}

.share_email:hover {
    width: 50px;
    margin-left: -10px;
}

.share_btn img {
    width: 36px;
    height: 36px;
    margin-left: 2px;
    margin-top: 2px;
}

#sendEmailButton {
    text-align: center;
}

.popupWindow .shareBtn {
    cursor: pointer;
    width: 40px;
    height: 40px;
}

.popupWindow .shareBtn:hover {
    width: 40px;
    margin-left: 0;
}

.share_facebook {
    background-color: #3C5A99;
}

.share_google {
    background-color: #DC4A38;
}

.share_x {
    background-color: black;
}

.share_pinterest {
    background-color: #CB2027;
}

.share_email {
    background-color: #738a8d;
}

.share_email img {
    width: 30px;
    height: 30px;
    margin-left: 5px;
    margin-top: 5px;
}

.email_popup {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    max-width: 100%;
    background-color: #515151;
    padding: 10px;
    border: 2px solid rgba(10, 10, 10, 0.3);
    z-index: 2;
}

.email_popup .auth_fieldset {
    padding-top: 34px;
}

.email_popup label {
    text-align: right;
    width: 60px;
    display: inline-block;
    margin-right: 2px;
    margin-bottom: 20px;
}

.email_popup .auth_button {
    right: 14px;
    bottom: 10px;
}

.topAlignedLabel {
    vertical-align: top;
}

.email_popup * {
    font-size: 14px;
}

.email_popup textarea {
    resize: none;
    width: 243px;
    height: 125px;
}

.email_popup .status {
    height: 14px;
    margin-left: 6px;
    margin-top: 20px;
    margin-bottom: 20px;
    text-align: center;
    display: block;
    font-size: 20px;
}

#fb_login_container {
    display: inline-block;
}

#viewPreset, #scene {
    width: 94px;
}

#getQuoteWrapper .icon {
    background-image: url('../assets/icons/get_a_quote.svg');
    background-color: #a5a8ad;
    background-size: 30px 30px;
    background-repeat: no-repeat;
    background-position: center center;
    position: absolute;
    left: 0;
    border-radius: 5px;
    width: 45px;
    height: 100%;
    padding: 0;
    border-radius: 5px 0 0 5px;
}

#getQuoteWrapper .arrow-right {
    display: block;
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 8px solid #a5a8ad;
    position: absolute;
    right: -8px;
    top: 11px;
}

#getQuoteWrapper {
    background-color: #ff6c0d;
    width: 190px;
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 36px;
    border: none;
}

#getQuote {
    font-size: 1.2rem;
    left: 20px;
    position: relative;
    letter-spacing: initial;
}

#login_div {
    font-size: 1.2rem;
}

#login, #help {
    display: inline-block;
    border-left: 1px solid white;
    line-height: 20px;
    padding-left: 15px;
    cursor: pointer;
}

#login {
    padding-right: 10px;
}

#export {
    position: absolute;
    bottom: 20px;
    right: 20px;
}

.loginStatus {
    padding-right: 10px;
    line-height: 24px;
    font-weight: normal;
}

.loginStatus_email {
    font-weight: bold;
}

/* toggle switch */
.toggleContainer {
    display: flex;
    align-items: center;
    margin-top: 5px;
    margin-bottom: 5px;
}

.switch {
    position: relative;
    display: inline-block;
    width: 54px;
    height: 28px;
}

.switch input {
    display: none;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked + .slider {
    background-color: #f58932;
}

input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
}

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

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

#toggleShadowsContainer {
    position: absolute;
    left: 10px;
    bottom: 10px;
}

.toggleLabel {
    text-align: center;
    display: block;
}

.preLoadingPage {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 9999;
}

.LoaderIcon {
    width: 57px;
    height: 11px;
}

.LoaderIcon .dots {
    position: relative;
}

.LoaderIcon .dots div {
    position: absolute;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #ff6c0d;
    animation-timing-function: cubic-bezier(0, 1, 1, 0);
}

.LoaderIcon .dots div:nth-child(1) {
    left: 6px;
    animation: dot1 0.6s infinite;
}

.LoaderIcon .dots div:nth-child(2) {
    left: 6px;
    animation: dot2 0.6s infinite;
}

.LoaderIcon .dots div:nth-child(3) {
    left: 26px;
    animation: dot2 0.6s infinite;
}

.LoaderIcon .dots div:nth-child(4) {
    left: 45px;
    animation: dot3 0.6s infinite;
}

@keyframes dot1 {
    0% {
        transform: scale(0);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes dot2 {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(19px, 0);
    }
}

@keyframes dot3 {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(0);
    }
}

/* end of toggle switch */

#projectSelect {
    max-width: 200px;
}

#chatwindow {
    display: none;
}

#liveChat {
    display: none;
}

#startdiv .startButtons {
    padding: 20px;
    border-radius: 5px;
    width: 300px;
    background-color: white;
}

.boxShadowedWindow {
    box-shadow: 4px 4px 8px 0px rgba(0, 0, 0, 0.5);
}

.startButtons .button {
    letter-spacing: 0px;
    cursor: pointer;
    position: relative;
    font-family: Roboto;
    font-size: 13px;
    font-weight: 700;
    color: #FFFFFF;
    padding: 4px 6px;
    margin-top: 0;
    background: #ff6c0d;
    border: 3px solid white;
    border-radius: 10px;
    box-shadow: 2px 2px 4px 0px rgb(0, 0, 0, 0.5);
    text-transform: uppercase;
}

footer {
    position: absolute;
    bottom: 10px;
    width: 100%;
    text-align: center;
}

.quote-btn {
    max-width: 160px;
    text-decoration: none;
}

.m-wrap{
    margin: 0 auto;
}

@media screen and (max-width: 1000px) {
    #templateSelecttop {
        display: none;
    }

    #templateSelecttop2 {
        display: none;
    }

    #cbs1 {
        display: none;
    }

    #cbs2 {
        display: block;
    }
}

@media screen and (min-width: 1001px) {
    #templateSelecttop {
        display: block;
    }

    #templateSelecttop2 {
        display: none;
    }

    #cbs1 {
        display: block;
    }

    #cbs2 {
        display: none;
    }

    .mobilescroll {
        display: none;
    }

    .mobileselect {
        display: none;
    }
}

@media screen and (min-width: 1024px) {
    #content::before {
        display: none;
    }

    #sharePanel {
        display: block;
    }

    #sharePanelToggler {
        display: none;
    }

    #properties, #properties.collapsed {
        margin-left: 0;
    }

    #topBar, #topBar.collapsed, #topBar.leftShifted {
        margin-top: 0;
        margin-left: 0;
    }

    .toggler {
        display: none;
    }

    #projectsDiv {
        margin-left: initial;
        align-items: flex-start;
    }

    #projectsDiv #projectSelect {
        margin-left: 7px;
    }

    .topExtras {
        position: absolute;
    }

    #userArea {
        position: relative;
        flex-direction: row;
        padding: 6px;
    }

    .buttons {
        margin-top: initial;
        margin-bottom: initial;
    }
}
