/* New product CSS */

/*@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;500&display=swap');*/


/* Typography  */

.text-smallest {
    font-size: 12px !important;
    font-family: 'Open Sans', sans-serif !important;
    line-height: 19px;
}

.text-small {
    font-size: 14px;
    font-family: 'Open Sans', sans-serif;
    line-height: 24px;
}

.text-medium {
    font-size: 16px;
    font-family: 'Open Sans', sans-serif;
}

.text-large {
    font-size: 18px;
    line-height: 27px;
    font-family: 'Open Sans', sans-serif;
}

.text-larger {
    font-size: 24px;
}

.text-big {
    font-size: 32px;
}

.text-center {
    text-align: center;
}

.font-family-title {
    font-family: 'Montserrat', sans-serif;
}

.font-family-base {
    font-family: 'Open Sans', sans-serif;
}

.text-grey {
    color: #BBBBBB !important;
}

.text-dark-grey {
    color: #444444 !important;
}

.text-dark {
    color: #1A1A1A !important;
}

.text-white {
    color: #fff !important;
}

.text-red {
    color: #C1272D !important;
}

.font-weight-normal {
    font-weight: 400;
}

.font-weight-bold {
    font-weight: bold;
}

.font-weight-semibold {
    font-weight: 600;
}

/* Icons */

.new-product-container .icon-day--black {
     display: block;
     width: 35px;
     height: 35px;
     position: relative;
}

.new-product-container .icon-day--black:after {
     position: absolute;
     top: 0;
     left: 0;
     content: url("https://cdnvivajo1.blob.core.windows.net/mcgrundriss/product-pages/aussenvisualisierungen/time-selection/day.svg");
}

.new-product-container .icon-day--black:before {
     position: absolute;
     top: 0;
     left: 0;
     opacity: 0;
     content: url("https://cdnvivajo1.blob.core.windows.net/mcgrundriss/product-pages/aussenvisualisierungen/time-selection/day-white.svg");
}

.new-product-container .icon-sunset--black {
    display: block;
    width: 35px;
    height: 35px;
    position: relative;
}

.new-product-container .icon-sunset--black:after {
    position: absolute;
    top: 0;
    left: 0;
    content: url("https://cdnvivajo1.blob.core.windows.net/mcgrundriss/product-pages/aussenvisualisierungen/time-selection/sunset.svg");
}

.new-product-container .icon-sunset--black:before {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    content: url("https://cdnvivajo1.blob.core.windows.net/mcgrundriss/product-pages/aussenvisualisierungen/time-selection/sunset-white.svg");
}

.new-product-container .icon-night--black {
    display: block;
    width: 35px;
    height: 35px;
    position: relative;
}

.new-product-container .icon-night--black:after {
    position: absolute;
    top: 0;
    left: 0;
    content: url("https://cdnvivajo1.blob.core.windows.net/mcgrundriss/product-pages/aussenvisualisierungen/time-selection/night.svg");
}

.new-product-container .icon-night--black:before {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    content: url("https://cdnvivajo1.blob.core.windows.net/mcgrundriss/product-pages/aussenvisualisierungen/time-selection/night-white.svg");
}


/* Forms */

.new-product-container .options_section input,
.new-product-container .options_section textarea,
.new-product-container .options_section select {
    padding: 9px;
    font-size: 14px;
    color: #444444;
    border-radius: 4px;
    border: 1px solid #F0F0F0;
}

.new-product-container .options_section select {
    width: 100%;
}

.new-product-container .options_section input::placeholder,
.new-product-container .options_section textarea::placeholder{
    color: #bbbbbb;
}

.new-product-container .options_section input:hover,
.new-product-container .options_section textarea:hover,
.new-product-container .options_section select:hover {
    border-color: #F0F0F0;
}

.new-product-container .options_section input:focus,
.new-product-container .options_section textarea:focus,
.new-product-container .options_section select:focus {
    border-color: #F0F0F0;
    outline: none;
    box-shadow: none;
}

.new-product-container .checkbox_container_1,
.new-product-container .checkbox_container_2 {
    position: relative;
}

#optionswrapper_18 .checkbox_container_1 .checkbox_special {
    max-width: calc(100% - 23px);
    vertical-align: middle;
}

#optionswrapper_18 .checkbox_container_1 .checkbox_special input {
   margin-right: 6px;
}


.new-product-container .option_link.--beispiel {
    margin-left: 0.5rem;
    padding: 8px 16px;
    color: #444444 !important;
    font-size: 14px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    background: #FFFFFF;
    border: 2px solid #F0F0F0;
    border-radius: 30px;
    text-decoration: none !important;
}

.new-product-container .option_link.--beispiel:hover {
    color: #fff !important;
    background-color: #444444;
}

.new-product-container .options_section .checkbox_standard,
.new-product-container .options_section .checkbox_special {
    display: block;
    padding-top: 12px;
    padding-bottom: 12px;
    color: #444444;
    font-size: 14px;
    border-bottom: 1px solid #F0F0F0;
    margin-bottom: 0 !important;
}

.new-product-container .options_section .checkbox_standard .checkbox_standard,
.new-product-container .options_section .checkbox_special .checkbox_special {
    display: inline-block;
    border-bottom: 0;
    padding: 0;
    vertical-align: middle;
    margin-bottom: 0 !important;
}

.new-product-container .options_section .checkbox_standard input,
.new-product-container .options_section .checkbox_special input {
    display: inline-block;
}

/* Helpers */

.v-align-middle {
    vertical-align: middle;
}

.m-auto {
    margin: 0 auto;
}

.has-background-medium-grey {
    background: #f0f0f0;
}

.has-background-dark {
    background: #1A1A1A;
}

.has-background-yellow {
    background: #FFE5AA;
}

.has-background-green {
    background: #4FC35B;
}

.has-background-blue {
    background: #D2ECFC;
}

.has-background-red {
    background: #FFAAAA;
}

.hidden {
    display: none;
}


/* Normal CSS */

.new-product-container.step1_substep .position-sticky {
    top: 0;
}

.new-product-container .custom-padding-left {
    padding-left: 30px;
    position: relative;
}

.new-product-container .custom-padding-left:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0px;
    width: 2px;
    height: 100%;
    background-color: #F0F0F0;
}

.new-product-container .custom-step {
    background: #FFF;
}

.new-product-container .images-container {
    position: relative;
}

.images-container img {
    width: 100%;
}

.new-product-container .images-options,
.new-product-container .options-container {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.new-product-container .options-container .user-logo {
    width: auto;
    height: auto;
    position: absolute;
    right: 0;
}

.new-product-container .details-section .product_subtitle {
    display: block;
}

.new-product-container button,
.new-product-container input,
.new-product-container optgroup,
.new-product-container select,
.new-product-container textarea {
    font-size: initial;
    line-height: initial;
}

.new-product-container ul.colorlist li a {
    margin: 0.155em;
}

.new-product-container .house-selector-btn {
    border: 2px solid #1A1A1A;
    padding: 4px 12px;
    background: #FFF;
    border-radius: 4px;
    margin-right: 8px;
}

.new-product-container .house-selector-btn img {
    display: none;
}

.new-product-container .house-selector-btn.selected {
    background: #1A1A1A;
}

.new-product-container .house-selector-btn.selected img {
    display: initial;
}

.new-product-container .house-selector-btn.selected p {
    color: #FFF !important;
}

.new-product-container .house-selector .house-selector-btn:last-child {
    margin-right: 0;
}

.new-product-container .switch-control-container {
    position: relative;
    width: 100%;
}

.new-product-container .button-white {
    padding: 4px 12px;
    background: #fff;
    color: #1A1A1A;
    border: 0;
    border-radius: 4px;
    font-size: 12px;
}

.new-product-container .button-white:hover {
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.16);
}

.new-product-container .switch-control button {
    background: transparent;
    padding: 3px 16px;
    color: #1A1A1A;
    min-width: 175px;
    justify-content: center;
}

.button-white.save-canvas:disabled {
    background-color: #d3d3d3;
    cursor: not-allowed;
}

.button-white.save-canvas:disabled:hover {
    background-color: #d3d3d3;
    cursor: not-allowed;
    box-shadow: none;
}

.new-product-container .button-time-switch {
    border: 2px solid #1A1A1A;
}

.new-product-container .button-time-switch.selected {
    background: #1A1A1A !important;
    color: #fff !important;
}

.new-product-container .button-time-switch.selected .icon-day--black:after {
    opacity: 0;
}

.new-product-container .button-time-switch.selected .icon-day--black:before {
    opacity: 1;
}

.new-product-container .button-time-switch.selected .icon-sunset--black:after {
    opacity: 0;
}

.new-product-container .button-time-switch.selected .icon-sunset--black:before {
    opacity: 1;
}

.new-product-container .button-time-switch.selected .icon-night--black:after {
    opacity: 0;
}

.new-product-container .button-time-switch.selected .icon-night--black:before {
    opacity: 1;
}

.new-product-container .time-switcher-list .button-time-switch:first-child {
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
    border-right: 0;
}

.new-product-container .time-switcher-list .button-time-switch:last-child {
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
    border-left: 0;
}

.new-product-container input[type=range] {
    -webkit-appearance: none;
    margin: 10px 0;
    width: 100%;
}
.new-product-container input[type=range]:focus {
    outline: none;
}

.new-product-container input[type=range]::-webkit-slider-thumb {
    box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;
    border: none;
    height: 26px;
    width: 26px;
    border-radius: 50%;
    background: linear-gradient(90deg, #4F64C3 0%, #36468E 100%);
    cursor: pointer;
    -webkit-appearance: none;
    margin-top: -8px;
    animate: 0.2s;
}

.new-product-container input[type=range]::-moz-range-thumb {
    box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;
    border: 0px solid #000000;
    height: 26px;
    width: 26px;
    border-radius: 50%;
    background: linear-gradient(90deg, #4F64C3 0%, #36468E 100%);
    cursor: pointer;
}
.new-product-container input[type=range]::-ms-thumb {
    box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;
    border: 0px solid #000000;
    height: 26px;
    width: 26px;
    border-radius: 50%;
    background: linear-gradient(90deg, #4F64C3 0%, #36468E 100%);
    cursor: pointer;
}
.new-product-container input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 12px;
    cursor: pointer;
    box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;
    background: #F0F0F0;
    border-radius: 8px;
    border: 0px solid #000101;
}
.new-product-container input[type=range]:focus::-webkit-slider-runnable-track {
    background: #F0F0F0;
}
.new-product-container input[type=range]::-moz-range-track {
    width: 100%;
    height: 12px;
    cursor: pointer;
    animate: 0.2s;
    box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;
    background: #F0F0F0;
    border-radius: 8px;
    border: 0px solid #000101;
}

.new-product-container input[type=range]::-ms-track {
    width: 100%;
    height: 12px;
    cursor: pointer;
    animate: 0.2s;
    background: transparent;
    border-color: transparent;
    border-width: 39px 0;
    color: transparent;
}
.new-product-container input[type=range]::-ms-fill-lower {
    background: #F0F0F0;
    border: 0px solid #000101;
    border-radius: 50px;
    box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;
}
.new-product-container input[type=range]::-ms-fill-upper {
    background: #F0F0F0;
    border: 0px solid #000101;
    border-radius: 50px;
    box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;
}

.new-product-container input[type=range]:focus::-ms-fill-lower {
    background: #F0F0F0;
}
.new-product-container input[type=range]:focus::-ms-fill-upper {
    background: #F0F0F0;
}

/* Custom inputs */

.new-product-container .custom-checkbox {
    display: flex;
    height: 28px;
    align-items: center;
    margin-bottom: 0;
    padding-left: 35px;
    cursor: pointer;
    font-size: 14px;
    color: #444444;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.new-product-container .custom-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.new-product-container .checkmark {
    position: absolute;
    top: inherit;
    left: 0;
    height: 28px;
    width: 28px;
    border: 2px solid #F0F0F0;
    background-color: #fff;
}

.new-product-container .custom-checkbox:hover input ~ .checkmark {
    background-color: #fff;
}

.new-product-container .custom-checkbox input:checked ~ .checkmark {
    background-color: #fff;
}

.new-product-container .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.new-product-container .custom-checkbox input:checked ~ .checkmark:after {
    display: block;
}

.new-product-container .custom-checkbox .checkmark:after {
    left: 8px;
    top: 3px;
    width: 8px;
    height: 16px;
    border: solid #1A1A1A;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.new-product-container .custom-radio {
    display: flex;
    align-items: center;
}

.new-product-container .custom-radio input:checked,
.new-product-container .custom-radio input:not(:checked) {
    position: absolute;
    left: -9999px;
}

.new-product-container .custom-radio input:checked + label,
.new-product-container .custom-radio input:not(:checked) + label {
    position: relative;
    padding-left: 28px;
    font-size: 14px;
    color: #444444;
    cursor: pointer;
    line-height: 20px;
    display: inline-block;
}

.new-product-container .custom-radio input:checked + label:before,
.new-product-container .custom-radio input:not(:checked) + label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    border-radius: 100%;
    background: #fff;
}

.new-product-container .custom-radio input:checked + label:before {
    border: 2px solid #36468E;
}

.new-product-container .custom-radio input:not(:checked) + label:before {
    border: 2px solid #BBBBBB;
}

.new-product-container .custom-radio input:checked + label:after,
.new-product-container .custom-radio input:not(:checked) + label:after {
    content: '';
    width: 10px;
    height: 10px;
    position: absolute;
    top: 5px;
    left: 5px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.new-product-container .custom-radio input:checked + label:after {
    background: #36468E;

}

.new-product-container .custom-radio input:not(:checked) + label:after {
    background: #BBBBBB;
}

/* ------- */

.new-product-container .custom-wrapper .checkbox_standard {
    display: flex;
    align-items: center;
    margin-bottom: 0;
    padding-left: 35px;
    cursor: pointer;
    font-size: 14px;
    color: #444444;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.new-product-container .custom-wrapper .checkbox_standard input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.new-product-container .custom-wrapper .checkbox_standard .checkmark {
    position: absolute;
    top: inherit;
    left: 0;
    height: 28px;
    width: 28px;
    border: 2px solid #F0F0F0;
    background-color: #fff;
}

.new-product-container .custom-wrapper .checkbox_standard:hover input ~ .checkmark {
    background-color: #fff;
}

.new-product-container .custom-wrapper .checkbox_standard input:checked ~ .checkmark {
    background-color: #fff;
}

.new-product-container .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.new-product-container .custom-wrapper .checkbox_standard input:checked ~ .checkmark:after {
    display: block;
}

.new-product-container .custom-wrapper .checkbox_standard .checkmark:after {
    left: 8px;
    top: 3px;
    width: 8px;
    height: 16px;
    border: solid #1A1A1A;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.new-product-container .fake-buttons {
    position: absolute;
    width: 100%;
    height: 0;
    bottom: 20px;
}

.new-product-container .fake-buttons button {
    height: 8px;
    width: 8px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: #fff;
}

.new-product-container .fake-buttons button:first-child {
    margin-left: 9px;
}

.new-product-container .fake-buttons button:last-child {
    margin-right: 9px;
}

.new-product-container .step1_opt_section {
    padding-bottom: 0;
    border-bottom: none;
}

.new-product-container .custom-wrapper h5 {
    margin-top: 40px;
    font-size: 16px;
    color: #1A1A1A !important;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.new-product-container .info_rollover {
    font-size: 14px;
}

.new-product-container .nav.nav-pills .nav-item {
    width: 50%;
}

.new-product-container .nav.nav-pills .nav-link {
    width: 100%;
    background-color: transparent;
    border-bottom: 2px solid #F0F0F0;
    color: #BBBBBB;
    font-size: 18px;
    font-family: 'Montserrat', sans-serif;
}

.new-product-container .nav.nav-pills .disabled {
    pointer-events: none;
    cursor: not-allowed;
}

.new-product-container .nav.nav-pills .nav-link.active {
    color: #1A1A1A;
    border-bottom: 2px solid #C1272D;
    border-radius: 0;
}

.new-product-container .exterior_color_row {
    width: fit-content;
    background-color: #F0F0F0;
    border-radius: 30px;
    padding: 5px 12px;
}

.new-product-container .exterior_color_row > li,
.new-product-container .exterior_color_row > li a {
    font-size: 14px;
    font-family: 'Open Sans', sans-serif;
    border-radius: 50%;
    vertical-align: middle;
}

.new-product-container .custom-label {
    border-radius: 4px;
}

.new-product-container .custom-label .button-upload {
    border: 2px solid #F0F0F0;
    width: fit-content;
    padding: 3px 3px 3px 12px;
    border-radius: 30px;
}

.new-product-container .custom-label .custom-borders {
    border: 1px dashed #F0F0F0;
    border-radius: 4px;
}

.new-product-container .projecttitlefield input,
.new-product-container .projecttitlefield textarea {
    border: 2px solid #F0F0F0;
}

.new-product-container .projecttitlefield input:hover,
.new-product-container .projecttitlefield textarea:hover {
    border-color: #1A1A1A;
}

.new-product-container .projecttitlefield input:focus,
.new-product-container .projecttitlefield textarea:focus {
    border-color: #1A1A1A;
}

.new-product-container .nextstepbuttonwrapper {
    display: none;
}

.new-product-container .product_subtitle {
    font-weight: 400 !important;
}

.new-product-container .perspective-section canvas {
    width: 100%;
}

.new-product-container .custom-perspective-cursor {
    cursor: url("/img/icons/eye-cursor.svg") 21 21, pointer;
}

.new-product-container .custom-perspective-cursor-start {
    cursor: url("/img/icons/start-scene.svg") 21 21, pointer;
}

.new-product-container .custom-perspective-cursor-end {
    cursor: url("/img/icons/end-scene.svg") 21 21, pointer;
}

#add_perspective_point_exterior:disabled {
    background: #444444;
    cursor: not-allowed;
}

#add_perspective_point_exterior:disabled p {
    color: #F0F0F0;
}

.new-product-container .new_exterior_upload_preview {
    padding: 0 1rem 0.5rem 1rem;
}

.new-product-container .new_exterior_upload_preview p {
    margin-bottom: 0.5rem;
}

.new-product-container .input-with-btn .button-primary {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.new-product-container .input-with-btn input {
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
}

.new-product-container .input-with-btn input::placeholder {
    font-size: 12px !important;
    font-family: 'Open Sans', sans-serif !important;
    color: #444444 !important;
}

.new-product-container #googleMapsPreview,
.new-product-container #googleMapsPreview_17 {
    min-height: 277px;
    margin-top: -90px;
}

.new-product-container #googleMapsPreview img,
.new-product-container #googleMapsPreview_17 img {
    width: 100%;
    height: 650px;
    object-fit: cover;
    object-position: left;
}

.new-product-container .col_section h3,
.new-product-container .options_section h3 {
    margin-bottom: 20px;
}

.new-product-container .custom-border {
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px;
}

.new-product-container .werbefrei.our-logo {
    top: unset;
    bottom: 7px;
    width: auto;
    right: 10px;
}

.new-product-container .info_rollover {
    background: transparent url('../img/icons/info.svg') no-repeat center center;
}

.new-product-container .upload-file-container {
    display: inline-block;
    vertical-align: middle;
}

.new-product-container .info_rollover.materials_rollover {
    height: 24px;
    width: 24px;
}

.new-product-container .upload-file-row {
    display: flex;
    align-items: center;
    width: max-content;
    background: #D2ECFC;
    margin-right: 12px;
}

.new-product-container .upload-file-label {
    display: block;
    max-width: 150px;
    min-width: 150px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    border-right: 1px solid #fff;
}

.new-product-container .upload-file-status {
    padding: 5px;
}

.new-product-container .upload-file-delete {
    background: #D2ECFC;
}

#oldwrapper .button-next-step.abnormal {
    display: none;
}

.disabled-options {
    position: relative;
}

.modal-content {
    border-radius: 20px !important;
}

.disabled-options:before {
    content: "";
    width: 100%;
    height: calc(100% - 110px);
    position: absolute;
    bottom: 0;
    z-index: 9;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.9) 15.78%, #FFFFFF 100%);
}

.address-input {
    border-color: #bbb !important;
}

@media (max-width: 1400px) {
    .new-product-container .switch-control button {
        min-width: 140px;
    }

    .new-product-container .exterior_color_row {
        padding: 5px 20px;
    }

    .new-product-container .exterior_color_row li:first-child {
        display: block;
    }
}

@media (max-width: 1200px) {
    .new-product-container .button-time-switch p {
        display: none;
    }
}

@media only screen and (max-width: 998px) {
    .new-product-container .options_section {
        min-height: inherit;
        width: 100%;
    }

    .new-product-container .custom-padding-left:after {
        display: none;
    }

    .new-product-container .step1_preis_calculation {
        border: 0;
    }

    .new-product-container .position-sticky {
        position: relative !important;
    }
}

@media only screen and (max-width: 670px) {
    #lay_container_18 .options_container img {
        width: fit-content;
    }

    #opt-18-2d .options_container img {
        width: fit-content;
    }

    #opt-18-innen .options_container img {
        width: fit-content;
    }
}

@media only screen and (max-width: 500px) {
    .new-product-container .switch-control button {
        min-width: 100px;
    }

    .new-product-container .col_section {
        height: initial;
        min-height: unset;
    }

    .new-product-container .col_section h3,
    .new-product-container .options_section h3 {
        height: fit-content;
        display: inline-block;
    }
}