@font-face {
    font-family: 'Edu Monument Grotesk';
    src: url(../../content/fonts/EduMonumentGroteskVariable.ttf), url(../../content/fonts/EduMonumentGroteskVariable.woff);
}

html {
    font-size: 16px;
    scroll-behavior: smooth;

    --green-light: rgba(0, 255, 72, 1);
    --green-dark: rgb(0, 171, 48);
    --pink-light: rgba(247, 0, 255, 1);
    --blue: rgb(0, 38, 255);

    --box-border: 2px dashed rgba(0, 255, 72, 1);
    --title-shadow-green: 4px 4px 4px rgb(0, 171, 48);
    --title-shadow-pink: 4px 4px 4px rgba(247, 0, 255, 1);

}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

    font-size: 100%;
    font-weight: 400;
    text-decoration: none;
    color: rgb(0, 0, 0);
}

/* ----- SCROLLBAR ----- */

::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

::-webkit-scrollbar-track {
    background-color: black;
    border: 1px solid var(--green-dark);
}
 
::-webkit-scrollbar-thumb {
    background: var(--green-dark);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--green-light);
}

::-webkit-scrollbar-corner {
    background: black;
}


/* ------------------------------------------ NAVIGATION ---------------------------------------------- */

.s-cube-title, .s-cubesite-title {
    font-family: "lores-9-plus-wide-bold-alt", sans-serif;
    font-size: 1.2rem;
    color: var(--green-light);
    text-shadow: 1px 1px 2px black;
    position: fixed;
    width: 30rem;
}

.s-cube-title {
    top: -6rem;
    left: 4rem;
    visibility: hidden;
}

.s-cubesite-title {
    font-family: "lores-9-plus-wide", sans-serif;
    top: -2.6rem;
    left: 5.9rem;
    visibility: hidden;  
}

:is(.s-cube-title):has( + div:hover) {
    visibility: visible;
}

:is(.s-cubesite-title):has( + a:hover) {
    visibility: visible;
}


/* CUBE */

.s-scene {
    font-size: 28px;
    perspective: 10em;

    position: fixed;
    z-index: 100;    
    top: 8rem;
    left: 8rem;
    
    display: flex;
    align-items: center;
    justify-content: center;
}

.s-cube {
    width: 2em;
    height: 2em;    
    transform-style: preserve-3d;

    position: absolute;
    bottom: -1em;
    left: -1em;
    
    transform: rotateY(20deg) rotateX(20deg);

    transition-property: transform;
    transition-duration: .3s;
    transition-timing-function: ease-in; 
}

.s-cubesite {
    position: absolute;
    width: 100%;
    height: 100%;

    text-align: center;
    padding: .5em 0;

    font-family: "lores-9-plus-wide-bold-alt", sans-serif;

    background-color: rgba(0, 255, 72, 0.6);
    box-shadow: 0 0 .4em rgba(0, 51, 14, 0.6) inset;
}

.s-front {
    transform: translateZ(1em);
}

.s-right {
    transform: translateX(2em) translateZ(1em) rotateY(90deg);
    transform-origin: left;

    transition-property: transform;
    transition-duration: .3s;
    transition-timing-function: ease-in;
}

.s-back {
    transform: translateX(2em) translateZ(-1em) rotateY(180deg);
    transform-origin: left;
}

.s-left {
    transform: translateX(-2em) translateZ(1em) rotateY(-90deg);
    transform-origin: right;

    transition-property: transform;
    transition-duration: .3s;
    transition-timing-function: ease-in;
}

.s-top {
    transform: translateZ(1em) translateY(-2em) rotateX(90deg);
    transform-origin: bottom;

    transition-property: transform;
    transition-duration: .3s;
    transition-timing-function: ease-in;
}

.s-bottom {
    transform: translateX(2em) translateZ(1em) translateY(2em) rotateY(90deg) rotateX(-90deg);
    transform-origin: top left;
}


.s-cube:hover {
    transform: rotateY(0deg) rotateX(0deg);

    .s-cubesite {
        background-color: rgba(0, 255, 72, 0.8);
    }

    .s-cubesite:hover {
        box-shadow: none;
    }

    .s-cubesite-active {
        font-family: "lores-9-plus-wide-bold-alt", sans-serif;
    }

    .s-right {        
        transform: translateX(2em) translateZ(1em) rotateY(0deg);
    }

    .s-left { 
        transform: rotateY(0deg) translateZ(1em) translateX(-100%);
    }

    .s-top {
        transform: translateY(-2em) translateZ(1em) rotateX(0deg);
    }
    
    .s-bottom {
        animation: bottomSiteOut .6s ease-in forwards;
    }

    .s-back {
        animation: backSiteOut .6s ease-in forwards;
    }
}

@keyframes bottomSiteOut {
    50% { transform: translateX(2em) translateZ(1em) translateY(2em) rotateY(0deg) rotateX(-90deg); }
    100% { transform: translateX(2em) translateZ(1em) translateY(2em) rotateY(0deg) rotateX(0deg); }
}

@keyframes backSiteOut { 
    50% { transform: translateZ(1em) translateX(4em) rotateY(90deg); }
    100% { transform:  translateZ(1em) translateX(4em) rotateY(0deg); }
}


/* ------------------------------- BOX GERÜST --------------------------------------- */

main {
    background-color: black;
    height: 316svh;
    width: 408svw;
    position: relative;
}

.s-content-box {
    height: 100svh;
    width: 100svw;
    border: var(--box-border);
    position: absolute;
    overflow: auto;

    color: white;
}

.s-content-box-home {
    top: 8svh;
    left: 104svw;
    border-bottom: none;
}

.s-content-box-inspiration, .s-content-box-artists, .s-content-box-geschichte, .s-content-box-software {
    top: 108svh;
}

.s-content-box-inspiration {
    left: 4svw;
    border-right: none;
}

.s-content-box-artists {
    left: 104svw;
}

.s-content-box-geschichte {
    left: 204svw;
    border-left: none;
}

.s-content-box-software {
    left: 304svw;
    border-left: none;
}

.s-content-box-workshop {
    top: 208svh;
    left: 204svw;
    border-top: none;
}



/* ----- SCHRIFTEN ZUM KOPIEREN ----- */

/* TITEL REGULAR
    font-family: "lores-9-plus-wide", sans-serif;
*/

/* TITEL BOLD
    font-family: "lores-9-plus-wide-bold-alt", sans-serif;
*/





/* ------------------------------------- HOME ------------------------------------------ */

.s-content-box-home {
    padding: 10svh 5svw;
}

.s-a-title1 {
    font-family: "lores-9-plus-wide-bold-alt", sans-serif;
    font-size: 10svw;
    line-height: 90%;
    text-align: left;
    margin-bottom: -2.5%;

    -webkit-text-fill-color: var(--pink-light);
    -webkit-text-stroke: 2px;
    -webkit-text-stroke-color: var(--pink-light);
}

.s-a-title1:hover {
    -webkit-text-fill-color: transparent;
}

.s-a-title1:hover + p {
    -webkit-text-fill-color: var(--pink-light);
}

.s-a-title2 {
    font-family: "lores-9-plus-wide-bold-alt", sans-serif;
    font-size: 10svw;
    line-height: 90%;
    text-align: left;

    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 2px;
    -webkit-text-stroke-color: var(--pink-light);

    transform: scaleX(-1) rotate(180deg);
}

.s-a-namen {
    font-family: "lores-9-plus-wide-bold-alt", sans-serif;
    font-size: 3rem;
    line-height: 130%;
    text-align: left;

    color: white;
    text-shadow: 4px 4px 4px var(--pink-light);

    position: absolute;
    bottom: 10%;
    right: 20%;
}

/* ---------------------------------- INSPIRATION --------------------------------------- */

.s-content-box-inspiration {
    padding: 2rem;
}

.T-wrapper {
    height: 80%;
    
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.no-select{
    user-select: none;
}
  
  
.T-h1{
    font-family: "lores-9-plus-wide-bold-alt", sans-serif;
    font-size: 7rem;
    color: white;
    line-height: 100%;
    text-align: right;
    padding-right: 1rem;
    text-shadow: var(--title-shadow-green);
}
  
p.no-select{
    font-family: "lores-9-plus-wide-bold-alt", sans-serif;
    text-align: center;
    font-size: 3rem;
    margin-bottom: .75rem;
    color: white;
}

p.no-select span{
    color: var(--green-light);
}

.changeable{
    animation-name: tabea;
    animation-duration: 3s;
    animation-timing-function: linear;
    animation-fill-mode: none;
    animation-iteration-count: infinite;
    animation-direction: alternate-reverse;
}

.changeable1{
    animation-name: tabea;
    animation-duration: 3s;
    animation-timing-function: linear;
    animation-fill-mode: forwards;
    animation-iteration-count: infinite;
    animation-direction: alternate-reverse;
    animation-delay: 1s;
}

.changeable2{
    animation-name: tabea;
    animation-duration: 3s;
    animation-timing-function: linear;
    animation-fill-mode: forwards;
    animation-iteration-count: infinite;
    animation-direction: alternate-reverse;
    animation-delay: 2s;
}


@keyframes tabea {
    from {color: white;}
    to {color: var(--green-light)}/*#ff2ed0;}*/
}

.changeable:hover {
    cursor: crosshair;
    text-transform: uppercase;
}

.changeable1:hover {
    cursor: crosshair;
    text-transform: uppercase;
}

.changeable2:hover {
    cursor: crosshair;
    text-transform: uppercase;
}



/* ------------------------------------ ARTISTS ---------------------------------------- */

/* extra css-datei*/



/* ---------------------------------- GESCHICHTE --------------------------------------- */

.s-content-box-geschichte {
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

.s-g-title {
    font-family: "lores-9-plus-wide-bold-alt", sans-serif;
    font-size: 6rem;
    line-height: 100%;
    text-align: left;
    margin: 2rem;

    position: absolute;
    z-index: 1;
    bottom: 2rem;

    color: white;
    text-shadow: var(--title-shadow-green);    
}

.s-g-content-wrapper {
    position: absolute;
    top: 2rem;
    left: 2rem;
    right: 2rem;
    bottom: 13.6rem;

    display: flex;
    justify-content: space-evenly;
    gap: 1rem;
}

.s-g-control-side {
    width: 32rem;
    height: 100%;

    display: flex;
    flex-direction: column;
    gap: .8rem;
}

.s-g-btn {
    position: relative;
    z-index: 3;
    flex-grow:1;
    width: 100%;
    box-shadow: none;
    background-color: transparent;
    color: white;
    border: 2px solid white;

    font-family: Edu Monument Grotesk, sans-serif;
    font-weight: 360;
    letter-spacing: 0.08rem;
    font-size: 2rem;
    text-align: left;
    padding: .5em 1em;
}

.s-g-btn:hover {
    box-shadow: 4px 4px 6px var(--green-light);
    font-weight: 460;
}

.s-g-btn-active {
    font-weight: 460;
    box-shadow: 4px 4px 6px var(--green-dark);
    color: white;
    border-color: var(--green-dark);
}


/* 3D Scene */

.s-g-scene {   
    border: 2px solid white; 
    flex-grow: 1;
    height: 100%;
    width: 100%;
    perspective: 20rem;
    position: relative;
}

.s-g-scene-top {
    width: 100%;
    height: 14rem;
    position: absolute;
    top: 0%;
    visibility: hidden;

    border-left: 4px solid white;
    border-right: 4px solid white;
    background: repeating-linear-gradient(90deg, black, black 20%, white 20%, white 20.2%);
    
    transform-style: preserve-3d;
    transform-origin: top;
    transform: rotateX(-90deg); 
}

.s-g-scene-bottom {
    width: 100%;
    height: 14rem;
    position: absolute;
    bottom: 0%;
    visibility: hidden;

    border-left: 4px solid white;
    border-right: 4px solid white;
    background: repeating-linear-gradient(90deg, black, black 20%, white 20%, white 20.2%);

    transform-style: preserve-3d;
    transform-origin: bottom;
    transform: rotateX(90deg);
}

.s-g-scene-left {
    width: 14rem;
    height: 100%;
    position: absolute;
    left: 0%;
    visibility: hidden;

    background: repeating-linear-gradient(0deg, black, black 20%, white 20%, white 20.5%);

    transform-style: preserve-3d;
    transform-origin: left;
    transform: rotateY(90deg);
}

.s-g-scene-right {
    width: 14rem;
    height: 100%;
    position: absolute;
    right: 0%;
    visibility: hidden;

    background: repeating-linear-gradient(0deg, black, black 20%, white 20%, white 20.5%);

    transform-style: preserve-3d;
    transform-origin: right;
    transform: rotateY(-90deg);
}

.s-g-scene-back {
    width: 100%;
    height: 100%;
    position: absolute;
    right: 0%;
    visibility: hidden;

    border: 4px solid white;
    background: repeating-linear-gradient(90deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0) 20%, white 20%, white 20.2%), repeating-linear-gradient(0deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0) 20%, white 20%, white 20.5%);

    transform-style: preserve-3d;
    transform: translateZ(-14rem);
}


/* Shapes */

.s-g-shape1 {
    position: absolute;
    z-index: 2;
    transform-style: flat;
    transform: translateX(-50%) translateY(-50%);

    width: 15%;
    aspect-ratio: 1/1;
    top: 50%;
    left: 30%; 

    .s-g-shapeside {        
        background-color: blue;
    }
}

.s-g-shape2 {
    position: absolute;
    z-index: 3;
    transform-style: flat;
    transform: translateX(-50%) translateY(-50%);

    width: 15%;
    aspect-ratio: 1/1;
    top: 50%;
    left: 50%; 

    .s-g-shapeside {        
        background-color: var(--green-light);
    }
}

.s-g-shape3 {
    position: absolute;
    z-index: 1;
    transform-style: flat;
    transform: translateX(-50%) translateY(-50%);

    width: 15%;
    aspect-ratio: 1/1;
    top: 50%;
    left: 70%; 

    .s-g-shapeside {        
        background-color: var(--pink-light);
    }
}

.s-g-shapeside {
    width: 100%;
    height: 100%;
    position: absolute;
    border: 1px solid black;
}

.s-g-shape-top {
    transform-origin: top;
    transform: rotateX(-90deg);
}

.s-g-shape-right {
    transform-origin: right;
    transform: rotateY(-90deg);
}

.s-g-shape-bottom {
    transform-origin: bottom;
    transform: rotateX(90deg);
}

.s-g-shape-left {
    transform-origin: left;
    transform: rotateY(90deg);
}

.s-g-shape-back {
    transform: translateZ(100%);
}


/* Button Funktionen */

.s-g-shape1-groesse {
    width: 10%;
}

.s-g-shape2-groesse {
    width: 20%;
}

.s-g-shape3-groesse {
    width: 5%;
}

.s-g-shape1-hoehe {
    top: 50%;
}

.s-g-shape2-hoehe {
    top: 70%;
}

.s-g-shape3-hoehe {
    top: 10%;
}

.s-g-shape1-lage {
    left: 40%;
}

.s-g-shape3-lage {
    left: 60%;
}

.s-g-schatten {
    box-shadow: 20px 20px 20px inset rgba(255, 255, 255, 0.2), -20px -20px 20px inset rgba(0, 0, 0, 0.2);
}

.s-g-shape-perspektive {
    transform-style: preserve-3d; 
}

.s-g-scene-perspektive {
    visibility: visible;
}


/* ---------------------------------- 3D-SOFTWARE --------------------------------------- */

.s-content-box-software {
    font-family: "lores-9-plus-wide-bold-alt", sans-serif;
    overflow-x: hidden;
}

.start-container {
    width: 100%;
    height: 100%;
    transition: opacity .5s ease;
    
}

.header-start {
    display: flex;
    align-items: space-evenly;
    justify-content: center;
    padding-top: 2rem;

    color: white;
    text-shadow: var(--title-shadow-green);

    font-size: 7rem;
    font-family: "lores-9-plus-wide-bold-alt", sans-serif;
    font-weight: 400;
    font-style: normal;
}


.e-gifs {
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    margin-top: 16svh;
}

.e-image {
    border-radius: 5%;
    width: 100%;
}

.e-scan {
    width: 26svw;
    position: relative;
}

.e-modellierung {
    width: 26svw;
    position: relative;
}
    
.e-scan:hover::after {
    content: "3D-Scan";
    color: white;
    padding: 10px;
    position: absolute;
    z-index: 1;
    bottom: -10%;
    left: 0%;
}

.e-modellierung:hover::after {
    content: "3D-Modellierung";
    color: white;
    padding: 10px;
    position: absolute;
    z-index: 1;
    bottom: -10%;
    left: 0%;
}

.e-scan {
font-size:1.6em
}

.e-modellierung {
font-size:1.6em
}

.scan-content-container,
.mod-content-container{
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    top: 0;
    left: 0;
    color: white;

    transition: opacity .5s ease;
}

.e-hidden {
    opacity: 0;
    pointer-events: none;
    display: none;
}

.header-scan {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.header-1-scan, .header-2-scan {
    color: white;
    text-shadow: var(--title-shadow-green);

    font-size: 7rem;
    font-family: "lores-9-plus-wide-bold-alt", sans-serif;
}

.small-scan {
font-size: 1.6em;
color: var(--pink-light);
display: flex;
justify-content: center;
}

.small-scan {
opacity: 0; /* Set initial opacity to 0 */
animation: ease-in-animation 2s forwards; /* Apply animation for 2 seconds and keep the final state */
}

@keyframes ease-in-animation {
from {
    opacity: 0; /* Start with opacity 0 */
    transform: translateY(50px); /* Move the element 50 pixels down */
}
to {
    opacity: 1; /* End with opacity 1 */
    transform: translateY(0); /* Reset the position */
}
}

.e-text-scan-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;

    position: absolute;
    top: 20svh;
    bottom: 0svh;
}

.fade-scan {
    width: 50%;
    margin-left: 10%;
    color: var(--pink-light);
    opacity: .2;
    transition: opacity 1s;
    font-size: 2rem;
}

.fade-scan:hover {
    opacity: 1;
}

.fade-scan:focus,
.fade-scan:active {
    opacity: 0.16;
    transition: opacity 100s;
}

.fade-scan-1 {
    margin-left: 40%;
}

.fade-scan-2 {
    margin-left: 20%;
}

.header-mod {
    display: flex;
    justify-content: center;
    font-size: 6rem;
    gap: 1rem;
    font-family: "lores-9-plus-wide-bold-alt", sans-serif;
    margin-top: 2.6rem;
}

.header-mod > p {
    color: white;
    text-shadow: var(--title-shadow-green);
}


.small-mod {
    font-size: 1.6em;
    color: var(--pink-light);
    display: flex;
    justify-content: center;
}

.small-mod {
    opacity: 0; /* Set initial opacity to 0 */
    animation: ease-in-animation 2s forwards; /* Apply animation for 2 seconds and keep the final state */
}

@keyframes ease-in-animation {
    from {
        opacity: 0; /* Start with opacity 0 */
        transform: translateY(50px); /* Move the element 50 pixels down */
    }
    to {
        opacity: 1; /* End with opacity 1 */
        transform: translateY(0); /* Reset the position */
    }
}

.wrapper-mod {
    width: 100svw;
    display: flex;
    height: 70svh;
    position: absolute;
    bottom: 0;
}

.box-mod {
    width: calc(100% / 3);
    border-style: dashed;
    border-width: 2px;
    border-bottom-style:none;
    border-right-style: none;
    border-color: var(--green-light);
    display: flex;
    padding: 1rem;

    flex-direction: column;
    overflow-X: hidden;
    overflow-Y: auto;
}

.box-mod-1 {
    border-left-style: none;
}

.fade-mod {
    font-family: Edu Monument Grotesk;
    margin: 1rem;
    color: white;
    opacity: 0.2;
    transition: opacity 1s;
    font-size: 1.8rem;
}

.fade-mod:hover {
    opacity: 1;
}

.fade-mod:focus,
.fade-mod:active {
    color: black;
    transition: color 10s;
}

.fade-mod-green {
    color: var(--pink-light);
    font-family: "lores-9-plus-wide-bold-alt", sans-serif;
    font-size: 2.4rem;
}

.back-btn {
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.7em;
    color: white;
    margin: .6em;
}

.back-btn:hover {
    color: var(--green-light);
}


/* ------------------------------------ WORKSHOP ---------------------------------------- */

.s-content-box-workshop {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

.s-w-wrapper img {
    max-width: 100%;
}

.s-w-wrapper {
    max-width: 100%;
    margin-inline: auto;
}

.s-w-accordion {
    --_button-size: 3rem;
    --_panel-padding: 0.75rem;
    --_panel-gap: 1rem;

    display: flex;
    flex-direction: column;
    gap: 1rem;

    contain: content;
}

@media (min-width: 800px){
    .s-w-accordion {
        flex-direction: row;
        height: 76svh;
    }
}

.s-w-accordion-panel {
    position: relative;
    isolation: isolate;
    flex-basis: calc((var(--_panel-padding) * 2) + var(--_button-size));
    overflow: hidden;
    padding: var(--_panel-padding);
    padding-right: calc(var(--_panel-padding) *4);

    transition: flex-basis .5s, flex-grow .5s;
}

.s-w-accordion-panel:has([aria-expanded="true"]) {
    flex-basis: clamp(15rem, 40vh, 20rem);
    flex-grow: 1;
}

.s-w-accordion-content > p {
    color: white;
    transform: translateY(2rem);
    opacity: 0;
    margin-left: calc(var(--_button-size) + var(--_panel-gap));
    
}

.s-w-accordion-panel:has([aria-expanded="true"]) p {
    transform: translateY(0rem);
    opacity: 1; 

    transition: transform .5s .5s, opacity .5s .5s; 
}

.s-w-accordion-title {
    font-size: 3rem;
    font-family: "lores-9-plus-wide-bold-alt", sans-serif;
    color: var(--pink-light);
    text-shadow: 1px 1px 2px black;

    position: relative;
    isolation: isolate;

    display: grid;
    align-items: 0;
}

.s-w-text {
    max-width: 40rem;
    font-size: 1.6rem;
    font-weight: 400;
    font-family: 'Edu Monument Grotesk', sans-serif;
    letter-spacing: 0.1rem;
    color: white;
    text-shadow: 1px 1px 10px black;

}

.s-w-accordion-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    transition: filter .5s;
}

.s-w-accordion-panel:has([aria-expanded="true"]) .s-w-accordion-image {
    filter: brightness(0.5);
}

.s-w-accordion-trigger {
    display: flex;
    align-items: center;
    gap: var(--_panel-gap);
    flex-direction: row-reverse;
    background: transparent;
    border: 0;
}

.s-w-accordion-icon {
    color: var(--pink-light);
    font-family: "lores-9-plus-wide", sans-serif;
    font-size: 3rem;
    text-shadow: 1px 1px 2px black;
    padding: 0.7 rem;
    width: var(--_button-size);
    z-index: 2;
}

.s-w-titlebar {
    display: flex;
    justify-content: flex-end;
    gap: 2rem;
    align-items: center;

    width: 100%;
    margin-bottom: 2rem;
}

.s-w-title {
    font-family: "lores-9-plus-wide-bold-alt", sans-serif;
    font-size: 7rem;
    text-align: left;

    color: white;
    text-shadow: var(--title-shadow-pink);
}

.s-w-subtitle {
    font-family: "lores-9-plus-wide-bold-alt", sans-serif;
    font-size: 2.6rem;
    text-align: right;

    color: var(--pink-light);        
}

@media (min-width: 1900px) {
    html {
        font-size: calc(16px * 1.3);
    }

    .s-scene {
        font-size: calc(28px * 1.3);
    }
}

@media (max-width: 1400px) {
    html {
        font-size: calc(16px * 0.8);
    }

    .s-scene {
        font-size: calc(28px * 0.8);
    }
}