body {
	background: #fff;
	margin: 0;
    position: relative;
}
/*
	edschats gruen: #009b54
	edschats grau: #f0efec

*/
* {
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10 and IE 11 */
  user-select: none; /* Standard syntax */
}
#container{
	display: flex;
	flex-direction: row;
    background: white;
}
.left{
    width: 80%;
    display: flex;
    align-items: center;
    position: relative;
    flex-direction: column;
}
.right {
    width: 20%;
    height: 100vh;
}

.left #spin_container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url('/assets/lkw.jpg');
    background-size: cover;
}
.prices {
    width: calc(100% - 5px);
    background: #f0efec;
    height: 100%;
    margin-left: 5px;
    overflow: auto;
}
div#logo {
    position: absolute;
    display: flex;
    align-items: center;
    flex-direction: row;
    z-index: 10;
}

div#logo img {
    padding: 15px;
}

#status_label {
	position: absolute;
	top: 768px;
	width: 768px;
	color: black;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 1.5em;
	text-align: center;
	pointer-events: none;
}

#drawing_canvas {
	position: absolute;

}

.popup {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    justify-content: center;
    align-items: center;
    background: rgb(36 42 47 / 72%);
    transition: .5s;
    display: none;
    opacity: 0;
}
.popup.active{
	display: flex;
}
.popup.pt-image #popup-text {
    display: none;
}

.popup.pt-text #popup-image {
    display: none;
}


div#popup-text {
	position: relative;
}
img#popup-image{
	max-height: 80vh;
	max-width: 80vw;
	object-fit: contain;
}

div#popup-text span:nth-child(2) {
    position: relative;
    width: 70vw;
    display: block;
    font-size: 3rem;
    font-weight: 900;
    font-family: sans-serif;
    color: white;
    text-align: center;
}
div#popup-text span:first-child {
    content: ' ';
    display: block;
    background: #009b54;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    position: absolute;
    z-index: 0;
}
#box{
	width: 100%;
}
.price img {
    width: 100%;
    object-fit: contain;
    height: calc(100% - 1rem);
}

.price {
    padding: 15px;
    margin: 15px;
    text-align: center;
    color: #009b54;
    font-family: sans-serif;
    font-weight: bold;
    background: white;
    border-radius: 10px;
    height: calc(50% - 53px);
    font-size: 1rem;
}
.slogan{
        position: absolute;
    color: white;
    left: 0;
    top: 15%;
    font-size: 3vmax;
    font-family: sans-serif;
    padding: 1vmax 2vmax 1vmax 5vmax;
    background: #009b54;
    font-weight: bold;
}