#OverlayContainer{
    width: 100vw;
    height: 80vh;

    background-color: bisque;
    margin: 0;
    margin-top: 20vh;
    z-index: 999;
    opacity: 1;
    transition: .5s;
    position: absolute;
    display: block;
    pointer-events: none;
}

.hidden{
    opacity: 0 !important;
    display: none;

    transition: .5s;
}


/* importing Custom Font */




/* defining Variables */

:root{
	--kaki: #83784A;
	--yellow: #fff100;
    --offwhite: #EBEBE5;

}

/* ---------------- General ---------------- */

body {
	margin: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
    font-family: Arial, Helvetica, sans-serif;
}

h1 {
    font-family: Arial, Helvetica, sans-serif;
	margin: 3px;
    font-size: 20px;
}

p {
    font-family: byker, sans-serif;
    font-size: 14px;
    font-weight: 400;
    font-style: normal;
}

p, ul{
	margin: 10px;
}

/* ----------------  Specific ---------------- */

#container {
	width: 100vw;
	height: 100vh;
	position: relative;
	overflow: hidden;
}


/* homelink */
a.homeLink{
	margin-top: 20px;
	z-index: 1000;
}

#logoCard {
	width: 130px;
}



/* ----- Overlay ----- */

#cancelButton{
	width: 35px;
	height: 35px;
	position: absolute;
	top: 20px;
	right: 20px;
	z-index: 1000;
}

.invisible{
	opacity: 1 !important;
	transition: transform .8s;
	transform: translateY(110vh)!important;

}

.inactive{
	pointer-events: none;
	display: none;
}


#overlay{
	height: 75vh;
	width: 100vw;
	position: absolute;
	top: 0;
	margin-top: 20vh;
	background-color: var(--offwhite);
	opacity: 1;
	transition: transform .8s;
    z-index: 999;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	border-radius: 25px;
		
}

/* 3D Viewer */

#viewer3D{
	flex: 2;
	width: 60vw;
	margin: 20px 0;

	display: flex;
}

model-viewer{
	width: 100%;
	height: 100%;
	--progress-bar-color: transparent;

} 

/* Text Content */

a{
    align-self: center;
    background-color: white;
    padding: 10px 20px;
    margin-top: 10px;
    color: black;
    font-weight: 900;
    text-decoration: none;
}

#textcontainer{
    display: flex;  
    flex-direction: column;
	width: 38vh;
	flex: 3;
	margin-top: 5px;
	margin-bottom: 50px;

	position: relative;
	top: -10px;
	
	overflow-y: scroll;

	

}



