
/* Natursteine Übersicht */

.section-list-overview {
    max-width: var(--innerwidth1);
    margin: 0 auto;
}
.section-list-overview .views-element-container > div {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.section-list-overview .views-exposed-form {
    grid-column: 1 / -1;
    margin-bottom: calc(1 * var(--griditem));
}

.section-list-overview .views-exposed-form .bef-links ul {
    display: flex;
    gap: 20px;
}

.section-list-overview .views-exposed-form .bef-links ul li a {
    font-size: 24px;
    color: black;
    text-decoration: none;
}

.section-list-overview .views-exposed-form .bef-links ul li a.bef-link--selected {
    text-decoration: underline;
}

.section-list-overview .views-row {
    position: relative;
}

.section-list-overview .views-row a {
    position: absolute;
    background: rgba(255,255,255,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: black;
    text-decoration: none;
    font-size: 20px;
    font-weight: 500;
    text-transform: uppercase;
    visibility: hidden;
    box-sizing: border-box;
    padding: var(--griditem);
}

.section-list-overview .views-row:hover a {
    visibility: visible;
}


/* Modal Popup */

.node-produkt {
    position: fixed;
    z-index: 808;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(224, 223, 221, 0.85);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.node-produkt-wrap {
    max-width: var(--innerwidth1);
    margin: 0 auto;
    width: calc(100% - 40px);
    display: flex;
    align-items: center;
    gap: 40px;
}

.node-produkt-remove {
    position: fixed;
    z-index: 909;
    top: 65px;
    right: 50px;
    width: 50px;
    height: 50px;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.node-produkt-remove span {
  width: 40px;
  height: 4px;
  background: black;
  position: absolute;
  top: 12px;
  left: 5px;
  transition: 0.2s;
}

.node-produkt-remove span:nth-child(1) {
    transform: rotate(45deg);
    top: 20px;
}

.node-produkt-remove span:nth-child(2) {
  transform: rotate(-45deg);
  top: 20px;
}

.node-produkt-bildergalerie {
    width: 70%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.node-produkt-bildergalerie img {
    width: 100%;
    height: auto;
}

.node-produkt-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    width: 30%;
    box-sizing: border-box;
}

.node-produkt-content h3 {
    font-size: 24px;
}

.node-produkt-content .node-produkt-text {
    max-height: 60vh;
    overflow: auto;
}