.product-detail-wrapper{
	margin-top:120px;
}

.product-detail-wrapper a{
	text-decoration:none !important;
}


.product-detail-wrapper a:hover{
	text-decoration:none !important;
}


.download_item:hover{
	text-decoration:none;
}

.download_item p{
	text-decoration:none;
}


.download_item:hover p{
	text-decoration:none;
}


.pdf_inner{
	max-width:calc(100% - 10px);
}

.pdf_inner .dl_pdftitle{
	font-size:18px;
	line-height:18px;
	white-space:break-inside;
}

.produktuebersicht{
	margin-top:120px;
}

.merklistenbutton{
	cursor:pointer;
}

.merklistenbutton:hover{
	transform:scale(1.5);
}

/* Loader container for the half-transparent background */
.loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.5); /* Half-transparent white */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000; /* Ensure it appears above other elements */
}

/* Loader animation */
.loader {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(255, 0, 0, 0.3); /* Light red background */
    border-top: 5px solid red; /* Bright red quarter-circle */
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Keyframes for rotating animation */
@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}


.merkliste_btn_wrapper {
    position: fixed;
    right: 0;
    top: 0;
    z-index: 100;

}

.merkliste_btn_wrapper button {
        background-color: $primary-color;
        outline: none;
        border: none;
        color: white;
        width: 60px;
        height: 60px;
        border-radius: 5rem;
        font-size: 29px;
        box-shadow: 10px 10px 31px -11px rgba(0,0,0,0.57);

        display: flex;
        justify-content: center;
        align-items: center;
    }
    .merkliste_btn_wrapper button i {
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100%;
      width: 100%;
      margin: 0;
      padding: 0;
      line-height: 1;
    }

.merkliste_btn_wrapper {
  position: fixed;
  right: 20px;
  top: 130px;
  z-index: 500;
}
.merkliste_btn_wrapper button {
  background-color: #EA002A;
  outline: none;
  border: none;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 5rem;
  font-size: 29px;
  box-shadow: 10px 10px 31px -11px rgba(0, 0, 0, 0.57);
}

.merkliste-modal {
    z-index: 10000;

  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.33);
  justify-content: center;
  align-items: center;
}
.merkliste-modal .modal-content {
  width: 900px;
  max-width: 100%;
  height: 100%;
  justify-content: center;
}
.merkliste-modal .modal-content .merkliste_modal__head {
  position: relative;
  text-align: center;
  padding: 1rem;
  background-color: #252D31;
  color: white;
  border-top-left-radius: 0.375rem;
  border-top-right-radius: 0.375rem;
}
.merkliste-modal .modal-content .merkliste_modal__head .merkliste__headline {
  font-weight: 900;
  text-transform: uppercase;
  font-size: 1.25rem;
}
.merkliste-modal .modal-content .merkliste_modal__head .close {
  position: absolute;
  top: 50%;
  right: 16px;
  font-size: 26px;
  cursor: pointer;
  transform: translateY(-50%);
  line-height: 0;
}
.merkliste-modal .modal-content .merkliste_modal__body {
  background-color: white;
  height: 50%;
  padding: 3rem 1rem;
  overflow: scroll;
  scrollbar-width: thin;
  scrollbar-color: #EA002A transparent;
}
.merkliste-modal .modal-content .merkliste_modal__body .merkliste_table_headline {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  gap: 5px;
  padding: 10px;
  font-weight: 900;
  font-size: 1.125rem;
  position: sticky;
  top: -3rem;
  background-color: white;
}
.merkliste-modal .modal-content .merkliste_modal__body .merkliste_table_headline .table_headline_1 {
  grid-area: 1/1/2/2;
}
.merkliste-modal .modal-content .merkliste_modal__body .merkliste_table_headline .table_headline_2 {
  grid-area: 1/2/2/3;
}
.merkliste-modal .modal-content .merkliste_modal__body .table_content {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  grid-template-rows: repeat(3, auto);
  gap: 5px;
  border-top: 1.5px solid #A8A8AA;
  padding: 10px;
  padding-right: 0;
}
.merkliste-modal .modal-content .merkliste_modal__body .table_content .table_left_row {
  grid-column: 1/2;
  grid-row: 1/4;
  font-weight: 700;
}
.merkliste-modal .modal-content .merkliste_modal__body .table_content .table_center_row {
  grid-column: 2/3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.merkliste-modal .modal-content .merkliste_modal__body .table_content .table_right_row {
  grid-column: 3/4;
  grid-row: 1/4;
  margin-left: auto;
  margin-top: -10px;
}
.merkliste-modal .modal-content .merkliste_modal__body .table_content .table_right_row .merkliste_icon_modal {
  background-color: #EA002A;
  outline: none;
  border: none;
  height: 40px;
  width: 40px;
  color: white;
  font-size: 21px;
}
.merkliste-modal .modal-content .merkliste_modal__footer {
  background-color: #F0F1F1;
  border-bottom-left-radius: 0.375rem;
  border-bottom-right-radius: 0.375rem;
  text-align: center;
  padding-top: 1.125rem;
  padding-bottom: 0.5rem;
}

.to_product:hover{
	text-decoration:none;
}


model-viewer {
    width: 100%;
    height: 600px;
}
model-viewer {
    overflow: visible;
    display: block;
}

.ar-button {
    position: absolute;
    bottom: 0.5rem;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.25rem 1rem;
    display: flex;
    gap: 0.5rem;
    align-items: center;
    justify-content: center;
    background-color: #EA002A;
    color: #ffffff;
    border-radius: 5rem;
    z-index: 350;
}

.qrcode {
    position: absolute;
    right: 0;
    bottom: 0;
    overflow: hidden;
    font-size: 1rem;
    line-height: 1;
    text-align: center;
    filter: drop-shadow(0px 5px 6px rgba(0, 0, 0, 0.5));
    border-radius: 10px;
    background-color: #fff;
    display: block;
    margin: 1.5rem;
}

.qrcode_text_wrapper {
    background: #EA002A;
    padding: 0.75rem;
    color: white;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.qrcode_text_wrapper .qrcode_text {
    text-align: left;
}

.qrcode_img {
    text-align: center;
    display: inline-block;
    padding: 0.75rem;
}

.mv_holder{
	position:relative;
	display:block;
	margin-bottom:4rem;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iMTA5NCIgaGVpZ2h0PSI1MTkuOTkiIHZpZXdCb3g9IjAgMCAxMDk0IDUxOS45OSI+CiAgPGRlZnM+CiAgICA8Y2xpcFBhdGggaWQ9ImNsaXAtcGF0aCI+CiAgICAgIDxyZWN0IGlkPSJSZWNodGVja18yMiIgZGF0YS1uYW1lPSJSZWNodGVjayAyMiIgd2lkdGg9IjEwOTQiIGhlaWdodD0iNTE5Ljk5IiBmaWxsPSIjMjUyZDMxIi8+CiAgICA8L2NsaXBQYXRoPgogIDwvZGVmcz4KICA8ZyBpZD0iR3J1cHBlXzI4MDQiIGRhdGEtbmFtZT0iR3J1cHBlIDI4MDQiIG9wYWNpdHk9IjAuMDYzIj4KICAgIDxnIGlkPSJHcnVwcGVfMTYxMiIgZGF0YS1uYW1lPSJHcnVwcGUgMTYxMiIgY2xpcC1wYXRoPSJ1cmwoI2NsaXAtcGF0aCkiPgogICAgICA8cGF0aCBpZD0iUGZhZF82MSIgZGF0YS1uYW1lPSJQZmFkIDYxIiBkPSJNOTg5LjY4OSwwQzk4Ni43LDIyOS42ODcsNzg5LjMxOSw0MTUuNjg3LDU0Nyw0MTUuNjg3UzEwNy4zLDIyOS42ODcsMTA0LjMxMSwwSDBDMi45NTIsMjg3LjY1MywyNDYuNjU4LDUxOS45OSw1NDcsNTE5Ljk5UzEwOTEuMDQsMjg3LjY1MywxMDk0LDBaIiBmaWxsPSIjMjUyZDMxIi8+CiAgICA8L2c+CiAgPC9nPgo8L3N2Zz4K);
  margin-bottom: 4rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 90%;
}




#dachfenster{
	margin-top:5rem;
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10 and IE 11 */
  user-select: none; /* Standard syntax */
}

.footer-border>.ce-col{
    background-color: #fff;
    border-top: 10px solid #f00;
}

.df-option{
	cursor:pointer;
}

.df-option:hover{
    border-color: #EA002A !important;
    box-shadow: inset 10px 10px 18px -11px rgba(0, 0, 0, 0.2);
}

.df-option-disabled{
	cursor:not-allowed;
	opacity:0.4;
}


.df-option-disabled:hover{
    border-color: #A8A8AA !important;
    box-shadow: inset 0 0 0 0 rgba(0, 0, 0, 0);
}

.configurator-media{
	position:relative;
}



.layer02{
	z-index:2;
	position:absolute;
	top:0;
	left:0;
}

.layer03{
	z-index:4;
	position:absolute;
	top:0;
	left:0;
}

.layer04{
	z-index:4;
	position:absolute;
	top:0;
	left:0;
}

.layer05{
	z-index:5;
	position:absolute;
	top:0;
	left:0;
}

.layer06{
	z-index:6;
	position:absolute;
	top:0;
	left:0;
}

.layer07{
	z-index:7;
	position:absolute;
	top:0;
	left:0;
}

.layer08{
	z-index:8;
	position:absolute;
	top:0;
	left:0;
}

.configurator-wrapper .configurator-message__success{
	z-index:500;
}


#konfioverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  display:none;
}

/* Spinner */
.konfispinner {
  width: 50px;
  height: 50px;
  border: 5px solid rgba(255, 255, 255, 0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

/* Spin animation */
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}