#configurator-wrapper {
    position: relative;
    z-index: 99;
}
#settings {
    position: absolute;
    width: 140px;
    z-index: 3;
    padding: 34px 20px 20px 20px;
    left: calc((100vw - 1360px) / -2);
    top: 10px;
    display: flex;
    flex-wrap: wrap;
    margin-left: 10px;
    justify-content: center;
    gap: 12px;
    background: #fff;
    transition: all 0.5s;
    box-shadow: 0 4px 6px 2px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    overflow: hidden;
}

#toggleSettings,
#toggleLanguagePanel{
    display: none;
}
#toggleLanguagePanel img {
    transition: 0.3s;
}

/* Language Panel - Rechte Seite */
#languagePanel {
    position: fixed;
    width: 180px;
    z-index: 3;
    padding: 20px;
    right: 20px;
    top: 15px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    background: #fff;
    box-shadow: 0 4px 6px 2px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    transition: 0.3s;
}

#cart {
    z-index: 3;
    width: 100vw;
    pointer-events: none;
    display: flex;
    justify-content: flex-end;
    padding: 10px;
    position: sticky;
    bottom: 0;
    left: 0;
    margin-top: 10px;
    margin-left: 50%;
    transform: translateX(-50%);

}
#cartInner {
    text-align: right;
    transition: all 0.5s;
    border-radius: 8px;
    pointer-events: auto;
    backdrop-filter: blur(10px);
    padding: 20px;
}
.cartHeader {
    font-weight: bold;
    font-size: 18px;
    line-height: 100%;
}
.settingsHeader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: #aee4fe;
    text-align: center;
    font-weight: bold;
    font-size: 12px;
    line-height: 100%;
    color: #000;
    padding: 4px 10px;
    border-radius: 8px 8px 0 0;
}
.global_price_outer {
    font-weight: bold;
    font-size: 50px;
    text-align: right;
    display: block;
    line-height: 100%;
}
#addPriceToCart {
    padding: 14px 20px;
    line-height: 120%;
    font-size: 14px;
    cursor: pointer;
    font-weight: bold;
    color: #fff;
    border-radius: 8px 8px;
    background: #FF7400;
    text-align: center;
    text-transform: uppercase;
    transition: 0.3s;
    animation: pulse 2s infinite;
    max-width: 400px;
    margin-left: auto;
}
#addPriceToCart.invalid {
    background: #dddddd;
    pointer-events: none;
    animation: none;
}
#toggleLanguagePanel {
    position: absolute;
    z-index: 1;
    right: 0;
    top: 10px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    background: #088E99;
    border-radius: 100%;
    animation: pulse 2s infinite;
    transition: opacity 0.3s;
    opacity: 0;
    pointer-events: none;
    display: flex;
    justify-content: center;
    align-items: center;
}
#toggleSettings {
    position: absolute;
    z-index: 1;
    left: 0;
    top: 10px;
    cursor: pointer;
    width: 50px;
    height: 50px;
    background: #088E99;
    border-radius: 100%;
    animation: pulse 2s infinite;
    transition: opacity 0.3s;
    opacity: 0;
    pointer-events: none;
    display: flex;
    justify-content: center;
    align-items: center;
}
#toggleSettings:before,
#toggleSettings:after{
    top: 50%;
    pointer-events: none;
    transition: all 0.3s;
    left: 50%;
    transform: translateX(-50%) translateY(-50%) rotate(45deg);
    position: absolute;
    background: #fff;
}
#toggleSettings:before{
    content: "";
    width: 30px;
    height: 3px;
}
#toggleSettings:after{
    content: "";
    height: 30px;
    width: 3px;
}

#toggleSettings svg {
    color: white;
    transition: 0.3s;
}

#ld-wallheight-error {
    color: white;
    position: absolute;
    right: 0;
    font-size: 12px;
    line-height: 100%;
    background: red;
    padding: 15px;
    width: 160px;
    left: calc(((100vw - 1340px)/-2) + 150px);
    z-index: 1;
    top: 55px;
    transition: 0.3s;
}
#ld-wallheight-error:not(.show){
    opacity: 0;
    transform: translateX(-100%);
    pointer-events: none;
}
#ld-wallheight-error .closer {
    width: 20px;
    height: 20px;
    position: absolute;
    right: 2px;
    top: 2px;
    cursor: pointer;
}
#ld-wallheight-error .closer:before,
#ld-wallheight-error .closer:after {
    top: 50%;
    pointer-events: none;
    transition: all 0.3s;
    left: 50%;
    transform: translateX(-50%) translateY(-50%) rotate(45deg);
    position: absolute;
    background: #fff;
}
#ld-wallheight-error .closer:before {
    content: "";
    width: 20px;
    height: 2px;
}
#ld-wallheight-error .closer:after{
    content: "";
    height: 20px;
    width: 2px;
}
@media only screen and (max-width: 1400px){
    #settings,
    #toggleSettings{
        left: -20px;
    }
    #toggleLanguagePanel{
        right: -20px;
    }
    #ld-wallheight-error{
        left: 130px;
    }
}
@media only screen and (max-width: 1200px){
    #settings,
    #toggleSettings{
        left: -20px;
        margin-left: 0;
    }
    #ld-wallheight-error{
        left: 120px;
    }
}
@media only screen and (max-width: 767px){
    #toggleLanguagePanel{
        opacity: 1;
        pointer-events: auto;
        right: -25px;
    }

    #toggleLanguagePanel.open + #languagePanel {
        opacity: 1;
        pointer-events: all;
    }
    #languagePanel {
        opacity: 0;
        pointer-events: none;
        top: 60px;
        right: 15px;
    }
    #ld-wallheight-error {
        left: 115px;
        top: 100px;
    }
    #settings {
        top:70px;
        pointer-events: none;
        opacity: 0;
        left: -40px;
    }
    #toggleSettings {
        left: -25px;
    }
    #ld-product-selection-inner h2 {
        font-size: 28px;
    }
    #toggleSettings.open + #settings {
        left: -25px;
        pointer-events: all;
        opacity: 1;
    }
    #toggleSettings.open svg{
        opacity: 0;
    }
    #toggleSettings:not(.open):before,
    #toggleSettings:not(.open):after{
        opacity: 0;
        transform: translateX(-50%) translateY(-50%);
    }
    #toggleSettings {
        opacity: 1;
        pointer-events: all;
    }

}
#ld-configurator-wrapper-outer::-webkit-scrollbar:vertical {
    height: 0;
    width: 0;
    display: none;
}
#ld-configurator-wrapper-outer::-webkit-scrollbar-thumb:vertical {
    height: 0;
    width: 0;
    display: none;
}
#ld-configurator-wrapper-outer {
    background-image: url(../images/configuratorbg.png);
    display: flex;
    overflow: scroll;
    justify-content: center;
    width: 100vw;
    left: 50%;
    background-size: auto 480px;
    background-position: bottom center;
    transform: translateX(-50%);
    padding: 50px 0;
    position: relative;
    background-color: #F5F5F5;
    background-repeat: repeat-x;
}
#ld-configurator-wrapper-outer:not(.loaded) #ld-configurator-wrapper{
    opacity: 0;
    pointer-events: none;
}
#ld-configurator-wrapper{
    transition: 0.5s 0.5s;
    display: flex;
    justify-content: flex-start;
    position: relative;
}
#ld-configurator-wrapper > div {
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    justify-content: center;
    flex: 0 0 auto;
    flex-shrink: 0;
}
#configurator {
    position: relative;
}
#ld-closets{
    position: relative;
}
#ld-closets:after {
    clear: both;
    content: "";
    height: 100%;
    width: 0;
}

.ld-closet{
    min-width:200px;
    padding: 2px;
    position:relative;
    height:400px;
    float: left;
    overflow: hidden;
    transition: 0.5s min-width;
}
.ld-closet.addCloset {
    animation: showItem 0.5s forwards;
}

.ast-plain-container.ast-no-sidebar #primary {
    margin:0 !important;
}
@keyframes showItem {
    0% {
        min-width: 0px;
    }
    100%{
        min-width: 200px;
    }
}
@keyframes hideItem {
    0% {
        min-width: 200px;
    }
    100%{
        min-width: 0px;
    }
}

.ld-closet.hide {
    animation: hideItem 0.5s 0.5s forwards ;

    pointer-events: none;
}
.ld-closet:after {
    content: "";
    position: absolute;
    animation: skeleton 3s ease-in-out infinite;
    top:0;
    left:0;
    pointer-events: none;
    width: 100%;
    z-index: 0;
    height: 100%;
}
.ld-closet:before {
    content: "";
    border: 1px dashed rgba(0,0,0,.3);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    pointer-events: none;
    height: 100%;
}
@keyframes skeleton {
    0% {
        background: rgba(8,142,154,0.15)
    }
    50% {
        background: rgba(8,142,154,0.25)
    }
    100% {
        background: rgba(8,142,154,0.15)
    }
}
.ld-total-height,
.ld-total-width {
    position: absolute;
}
.ld-total-width {
    bottom: -40px;
    width: calc(100% - 400px);
    text-align: center;
    left: 50%;
    line-height: 100%;
    pointer-events: none;
    transform: translateX(-50%);
    font-size: 14px;
}
.ld-total-width > div {
    position: relative;
    border-top: 1px solid #000;
    transition: 0.3s;
    padding-top: 10px;
}
.ld-total-height {
    bottom: 0;
    height: 400px;
    pointer-events: none;
    display: flex;
    right: calc(100% - 248px);
    align-items: flex-end;
    line-height: 100%;
    font-size: 14px;
}
.ld-total-height > div {
    position: relative;
    height: 100%;
    border-right: 1px solid #000;
    transition: 0.3s;
    padding-right: 10px;
    display: flex;
    align-items: center;
}
.placeholderBlock {
    width: 200px;
    height: 100%;
    display: block;
}
.add-col[data-pos="before"]:not(.disabled) ~.ld-total-width{
     padding-left: 162px;
}
.add-col[data-pos="before"].disabled ~.ld-total-width{
    padding-left: 63px;
}
.add-col[data-pos="after"]:not(.disabled) ~.ld-total-width{
    padding-right: 162px;
}
.add-col[data-pos="after"].disabled ~.ld-total-width{
    padding-right: 63px;
}

.ld-total-width > div:before,
.ld-total-width > div:after {
    content: "";
    transform: translateY(-50%);
    height: 10px;
    width: 1px;
    top: 0;
    position: absolute;
    background: #000;
}
.ld-total-width > div:before {
    left: -1px;
}
.ld-total-width > div:after {
    right: -1px;
}
.ld-total-height > div:before,
.ld-total-height > div:after {
    content: "";
    transform: translateX(50%);
    width: 10px;
    height: 1px;
    right: 0;
    position: absolute;
    background: #000;
}
.ld-total-height > div:before {
    top: -1px;
}
.ld-total-height > div:after {
    bottom: -1px;
}
.setted-item{
    background-size:cover;
    position: relative;
    z-index: 1;
    transition: 0.3s;
    border-top: 1px dashed rgba(0,0,0,.3)
}
.setted-item.hide {
    opacity: 0 !important;
    transform: translateY(20px);
    pointer-events: none;
}
.del-item {
    width: 30px;
    height: 30px;
    border-right: 1px dashed rgba(0,0,0,.3);
    border-bottom: 1px dashed rgba(0,0,0,.3);
    background: #0A003D;

    cursor: pointer;
    position: relative;
}
.del-item:before,
.del-item:after {
    content: "";
    width: 20px;
    height: 2px;
    background: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
}
.del-item:before {
    transform: translateX(-50%) translateY(-50%) rotate(45deg);
}
.del-item:after {
    transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}
.placeholderBlock {
    width: 200px;
}

.add-col{
    position: relative;
    height: 400px;
    width: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: skeleton 3s ease-in-out infinite;
    padding: 1px;
    font-weight: bold;
    font-size: 14px;
    color: #fff;
    overflow: hidden;
    cursor: pointer;
    transition: 0.5s;
}
.add-col:before {
    content: "";
    border: 1px dashed rgba(0,0,0,.3);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    pointer-events: none;
    height: 100%;

}

.add-col > div ,.fakeWall > div{
    transform: translateY(-50%) rotate(-90deg);
    top: 25px;
    position: relative;
}

.fakeWallImageRight div span{
    transform: scaleX(-1) rotate(180deg);
}

.firstwall.fakeWall[data-wall="wall2"]{
    left:90px;
    width:90px;
    z-index: 10;
}

.firstwall.fakeWall[data-wall="wall3"]{
    left:-90px;
    width:90px;
    z-index: 10;
}


.add-col[data-pos="before"].disabled,
.add-col[data-pos="after"].disabled{
    width: 0;
    opacity: 0;
    pointer-events: none;
}
.add-col[data-pos="before"]{
    margin-left: 60px;

}
.add-col[data-pos="before"]:before {
    border-right: none;
}
.add-col[data-pos="after"]:before {
    border-left: none;
}
.add-col[data-pos="after"]{
    margin-right: 60px;
}

.fakeWall > div{
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 20px;
    background: #aee4fe;
    border-radius: 50px;
    animation: pulse 2s infinite;
}

.add-col > div {
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 20px;
    background: #FF7400;
    color:#fff;
    border-radius: 50px;
    animation: pulse 2s infinite;
}
.add-col > div span,.fakeWall > div span {
    padding: 10px 20px;
}

.add-closet{
    position:absolute;
    z-index:1;
    left:50%;
    top:50%;
    transform: translateX(-50%) translateY(-50%);
    cursor:pointer;
    width: 38px;
    height: 38px;
    background: #FF7400;
    border-radius: 100%;
    animation: pulse 2s infinite;
    transition: opacity 0.3s;
}
.add-closet-default {
    width: 90px;
    height: 90px;
    top: 50% !important;
    bottom: auto !important;
    text-align:center;
    font-size: 13px;
    color: #fff;
    line-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    text-transform: uppercase

}
.add-closet-default:before,
.add-closet-default:after {
    opacity: 0 !important;

}
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0px rgba(8, 142, 153, 0.2);
    }
    100% {
        box-shadow: 0 0 0 20px rgba(8, 142, 153, 0);
    }
}
.add-closet:before,
.add-closet:after {
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    position: absolute;
    background: #FFF;
}
.add-closet:before {
    content: "";
    width: 26px;
    height: 3px;
}
.add-closet:after{
    content: "";
    height: 26px;
    width: 3px;
}
.ld-closet.first .add-closet:not(.add-closet-default) {
    opacity: 0;
    pointer-events: none;
}
.ld-closet:not(.first) .add-closet-default {
    opacity: 0;
    pointer-events: none;
}


.ld-start-options {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.ld-start-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    padding: 20px;
    border: 2px solid #ddd;
    border-radius: 10px;
    transition: all 0.3s ease;
    margin-bottom: 40px
}

.ld-start-option:hover {
    background-color: #f5f5f5;
    border-color: #999;
}

.ld-start-icon {
    width: 60px;
    height: 60px;
    background-color: #eee;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

.ld-start-text {
    font-size: 16px;
    font-weight: bold;
    text-align: center;
}


#ld-product-selection-bg, #ld-start-selection-bg{
    background-color: rgba(0,0,0,0.6);
    position: fixed;
    width:100%;
    height:100%;
    left:0;
    top:0;
    z-index: 100;
    display:none;
}

#ld-start-selection-bg{
    display: block;
}


#ld-product-selection-inner,#ld-start-selection-inner{
    background-color: #FFF;
    position: fixed;
    width:calc(100% - 40px);
    max-width: 800px;
    max-height: calc(100vh - 140px);
    left:50%;
    top:50%;
    transform: translateY(-50%) translateX(-50%);
    z-index: 100;
    display:none;
    overflow-y: scroll;
    overflow-x: hidden;
}

#ld-start-selection-inner{
    display: block;
}


#ld-product-selection-inner h2, #ld-start-selection-inner h2 {
    padding: 20px 30px;
    box-shadow: 0 0 20px rgba(0,0,0,0.25);
    position: sticky;
    top: 0;
    left: 0;
    background: #fff;
    text-align: center;
}
ul.ld-products{
    list-style: none;
    margin-left: 0;
    padding: 10px 20px 20px 20px;
    display: flex;
    flex-wrap: wrap;
}

ul.ld-products h3 {
    width: 100%;
    padding: 10px 0;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    font-size: 18px;
    color: #aee4fe;
}

ul.ld-products li{
    padding: 10px;
    width: 33.33%;
}
@media only screen and (max-width: 767px){
    ul.ld-products li {
        width: 50%;
    }
}
ul.ld-products li > div {
    border: 1px solid #eee;
    height: 100%;
    padding-bottom: 20px;
    transition: 0.3s;
    cursor:pointer;

}
ul.ld-products li > div .imgOuter {
    padding: 20px;
    width: 100%;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color:#efefef
}
ul.ld-products li > div img {
    max-width: 100%;
    max-height: 100%;
}
ul.ld-products li > div:hover{
    border-color: #088E99;
    background: rgba(8,142,154,0.10)
}
ul.ld-products li > div .productTitle {
    background: #aee4fe;
    color: #fff;
    padding: 10px 20px;
    font-weight: bold;
    font-size: 14px;
    line-height: 140%;
    margin-bottom: 12px;
}
ul.ld-products li > div .width,
ul.ld-products li > div .height,
ul.ld-products li > div .color {
    padding: 0 20px;
    font-size: 12px;
    line-height: 140%;
}
ul.ld-products li > div .price {
    padding: 0 20px;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #eee;
    line-height: 140%;
    transition: 0.3s;
}
ul.ld-products li > div:hover .price{
    border-color: #088e99;
}
.ld-wallheight-outer {
    margin-bottom: 10px;
    position: relative;
}
.ld-wallheight {
    width: 100%;
    border-color: white !important;
    border-style: solid !important;
    outline: 0 !important;
    height: 50px !important;
    line-height: 31px !important;
    background: #eee !important;
    border-right-color: black !important
}
.ld-wallheight:focus {
    border-color: #088E99 !important;
}
.ld-wallheight-outer label,
.lg-colors-outer label,
.lg-handle-colors-outer label,
.lg-language-outer label,
.lg-wall-outer label{
    display: flex;
    font-weight: bold;
    font-size: 14px;
    line-height: 100%;
}
.lg-colors-outer label , .lg-handle-colors-outer label , .lg-wall-outer label, .lg-language-outer label{
    margin-bottom: 10px;
}
.ld-wallheight-outer:before,
.ld-wallheight-outer:after {
    content: "";
    position: absolute;
    right: 0;
    transform: translateX(50%);
    background: #000;
    height: 1px;
    width: 12px;
}
.ld-wallheight-outer:before {
    bottom: 49px;
}
.ld-wallheight-outer:after {
    bottom: 0;
}

.ld-change-color {
    width: 40px;
    height: 40px;
    transition: 0.3s;
    border-radius: 100%;
    border: 2px solid #000;
    cursor: pointer;
}
[data-color="anthrazit"] {
    background: #3B3B3B
}
[data-color="weiss"] {
    background: #ffffff
}
.ld-active-color{
    box-shadow: 0 0 0 5px rgba(8, 142, 153, 1);
    border-color: #088E99;
}

/* Griff-Farben (Handle Colors) */
.ld-change-handle-color {
    width: 40px;
    height: 40px;
    transition: 0.3s;
    border-radius: 100%;
    border: 2px solid #000;
    cursor: pointer;
}
[data-handle-color="schwarz"] {
    background: #000000;
}
[data-handle-color="silber"] {
    background: linear-gradient(135deg, #C0C0C0 0%, #E8E8E8 50%, #A8A8A8 100%);
}
.ld-active-handle-color {
    box-shadow: 0 0 0 5px rgba(8, 142, 153, 1);
    border-color: #088E99;
}

.lg-handle-colors-outer {
    display: flex;
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-top: 15px;
}
.lg-handle-color {
    display: flex;
    justify-content: flex-start;
    gap: 10px;
    width: 100%;
    align-items: center;
}

.lg-colors-outer {
    display: flex;
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
}
.lg-color {
    display: flex;
    justify-content: flex-start;
    gap: 10px;
    width: 100%;
    align-items: center;
}

/* Language Switcher Styling */
.lg-language-outer {
    display: flex;
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-top: 0;
}

#languagePanel .lg-language-outer {
    margin-top: 0;
}

#languagePanel .lg-language-outer label {
    display: none;
}

.ld-language-select {
    width: 100%;
    height: 50px;
    padding: 0 15px;
    border: 2px solid #000;
    border-radius: 4px;
    background-color: white;
    color: #000;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    outline: none;
    transition: all 0.3s ease;
}

.ld-language-select:hover {
    background-color: #f5f5f5;
}

.ld-language-select:focus {
    border-color: #088E99;
    box-shadow: 0 0 0 3px rgba(8, 142, 153, 0.1);
}

.ld-language-select option {
    padding: 5px;
    font-size: 12px;
}

.loader-container {
    display: flex;
    padding: 60px;
    justify-content: center;
    align-items: center;
}
.loader {
    width: 50px;
    height: 50px;
    position: relative;
}

.rotating-plane {
    background-color: #088E99;
    animation: rotatePlane 1.2s infinite ease-in-out;
}



.wallwrapper{
    position: relative;
    width: 100px;
    height: 120px;
    left:0;
}

.changewall {
    position: absolute;
    background-color: white;
    color: black;
    border: 1px solid black;
    padding: 10px;
    text-align: center;
    box-sizing: border-box;
    font-size:11px;
}

.wall1 {
    top: 0;
    left: 0px; /* Damit es sich rechts vom Wall2-Button befindet */
    width: 90px;
    height: 20px;
    line-height: 0.3em;

}

.fakeWall{
    background: repeating-linear-gradient(
            45deg,          /* Winkel der Linien */ #8c8c8c,          /* Farbe der ersten Linie */
            #8c8c8c 4px,     /* Länge der ersten Linie */
            transparent 4px, /* Start der transparenten Linie */
            transparent 8px /* Ende der transparenten Linie */
    );
    width:120px;
    height:100%;
    position: relative;
    justify-content: center;
    align-items: center;
    padding: 1px;
    font-weight: bold;
    font-size: 14px;
    color: #fff;
    overflow: hidden;
    cursor: pointer;
    transition: 0.5s;

    display:none;
}

.fakeWallImageLeft{
    background:url(../images/dummy_right.png) !important;
}


.fakeWallImageRight{
    background:url(../images/dummy_right.png) !important;
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
}



.activeWall{
    background-color:#aee4fe;
}
.wall2 {
    top: 91px;
    left: 0px; /* Damit es sich rechts vom Wall2-Button befindet */
    width: 70px;
    height: 20px;
    transform: rotate(-90deg); /* Dreht den Text um 90 Grad */
    transform-origin: left top;
    line-height: 0.3em;
}

.wall2 {
    top: 91px;
    left: 0px; /* Damit es sich rechts vom Wall2-Button befindet */
    width: 70px;
    height: 20px;
    transform: rotate(-90deg); /* Dreht den Text um 90 Grad */
    transform-origin: left top;
    line-height: 0.3em;
    display:none
}

.wall3 {
    top: 21px;
    left: 90px; /* Damit es sich rechts vom Wall2-Button befindet */
    width: 69px;
    height: 20px;
    transform: rotate(90deg); /* Dreht den Text um 90 Grad */
    transform-origin: left top;
    line-height: 0.3em;
    display:none
}


.floor{
    position:absolute;
    left:22px;
    top:22px;
    width:47px;
    height:69px;
    background-color:#ccc;
}


.ld-product-item-templates {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ld-product-item-templates li {
    padding: 10px;
    width: 100%;
    display: block;
}

.templateItem {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.templateImage {
    flex: 0 0 auto;
    margin-right: 20px;
}

.imgOuterTemplate {
    width: 250px;
    height: 250px;
    overflow: hidden;
}

.imgOuterTemplate img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.templateInfo {
    flex: 1;
}

.productTitle {
    font-weight: bold;
    margin-bottom: 5px;
}

.height, .color {
    font-size: 0.9em;
}




@keyframes rotatePlane {
    0% { transform: perspective(120px) rotateX(0deg) rotateY(0deg); }
    50% { transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg); }
    100% { transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg); }
}
