html {
	background-color: whitesmoke;
	background-image: url('./images/background.webp');
	background-size: 100vw 100vh;
	font-family: Palatino,Palatino Linotype,Palatino LT STD,Book Antiqua,Georgia,serif; 
	color: whitesmoke;
	overflow: hidden;
    	user-select: none;
}

:root {
	--slotSize: 200px;
}

.center {
	display: flex;
	width: 100%;
	height: 100%;
	margin: auto;
	justify-content: center;
}

.position {
    position: absolute;
}

.inventory {
	height: 15vh;
	width: 100%;
	top: -10vh;
	left: 0;
	display: flex;
	justify-content: center;
	align-content: center;
	gap: 5vw;
	z-index: 10;
	background-color: transparent;
      background-image: url(/images/inventoryBackground.webp);
      background-size: 100% 100%;
	opacity: 50%;
}


.pause {
      height: 70px;
      width: 70px;
      border-radius: 50%;
	background-color: transparent;
      background-image: url(/images/pause.webp);
      background-size: 100% 100%;
      top: calc(50% - 35px);
      right: calc(7.5vh - 35px);
      display: flex;
      justify-content: center;
      align-content: center;
      font-size: 40px;
      color: black;
}


.unpauseButt {
      bottom: 30%;
}

.saveButton {
      top: 30px;
      right: 50px;
      font-size: 40px !important;
}

.unpauseButton {
      border: none;
      background-color: transparent;
      font-size: 60px;
      color: rgb(255, 255, 255, 0.8);
      font-family: 'Passion One';
}

.unpauseButton:hover {
      color: rgb(255, 255, 255, 0.5);
}

.unpauseButton:active {
      color: rgb(255, 255, 255, 0.2);
}

.pauseOverlay {
      height: 100vh;
      width: 100vw;
      top: 0;
      left: 0;
      pointer-events: all;
      z-index: 100;
      background-color: rgba(0, 0, 0, 0.2);
      box-shadow: inset 0px 0px 500px 100px black;
      backdrop-filter: blur(20px);
      display: none;
}

.unpause {
      font-family: 'Passion One';
      font-size: 160px;
      color: rgb(255, 255, 255, 0.8);
      width: 1000px;
      height: 400px;
      top: calc(50% - 200px);
      left: calc(50% - 500px);
      z-index: 101;
      display: flex;
      justify-content: center;
      align-content: center;
}

@font-face {
      font-family: 'Passion One';
      font-style: normal;
      font-weight: 700;
      font-display: swap;
      src: url(https://fonts.gstatic.com/s/passionone/v18/Pby6FmL8HhTPqbjUzux3JEMq007vyJc.woff2) format('woff2');
      unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

.inventoryItem {
	height: 80%;
	display: flex;
	justify-content: center;
	margin-top: 1vh;
	margin-bottom: auto;
      filter: drop-shadow(-1px 1px 1px rgba(50, 50, 0, 0.5));
}

.dragItem {
	position: absolute !important;
	z-index: 20;
}

.imgcontainer {
	/* position: absolute; */
/*    filter: drop-shadow(-1px 6px 3px rgba(50, 50, 0, 0.5));*/
}

.dropShadow {
	filter: drop-shadow(-1px 6px 3px rgba(50, 50, 0, 0.5));
}

.imgcontainer img {
	max-height: 100%;
	max-width: 100%;
	pointer-events: none;
	object-fit: contain;
}

.sticky {
      right: 80px;
      top: 80px;
}

.cabinet {
	scale: .65;
	top: 2%;
	display: grid;
	grid-template-columns: auto auto auto auto auto auto auto auto auto;
	grid-template-rows: auto auto;
	grid-gap: 10px;
	row-gap: 30px;
	justify-content: center;
}

.cabinetBG {
	width: 100%;
	height: 125%;
	top: -5vh;
	left: -5vh;
	z-index: -1;
}

.machineBG {
	top: -5vh;
	left: -5vh;
	z-index: -1;
}

.machineImage {
	width: 1550px;
	filter: drop-shadow(-1px 6px 3px rgba(50, 50, 0, 0.5));
}

.boxSpot {
	background-color: rgba(0, 0, 0, 0.5);
	box-shadow: inset 0 0 30px black;
	width: var(--slotSize);
	height: var(--slotSize);
}

.box {
	background-image: url("./images/bottle.webp");
	background-size: 100% 100%;
	width: var(--slotSize);
	height: var(--slotSize);
	display: grid;
}

.boxHalf {
	background-color: red;
	opacity: 50%;
	width: calc(var(--slotSize) / 2);
	height: var(--slotSize);
	display: grid;
}

.number {
	height: calc(var(--slotSize) * .8);
	width: calc(var(--slotSize) * .8);
	place-self: end center;
}

.dosage {
	place-self: end center;
	color: black;
	font-size: 30px;
      margin-bottom: 55px;
      font-family: Arial, Helvetica, sans-serif;
}

.dosageSVG {
	place-self: end center;
      margin-bottom: 45px;
	color: black;
	font-size: 50px;   
}

.dosageSVGHalf {
	place-self: end center;
	color: black;
	font-size: 30px;   
}

.dosageHalf {
	place-self: end center;
	color: black;
	font-size: 30px;
	/* margin: 10px;
	margin-right: 20px; */
      margin-bottom: 10px;
      font-family: Arial, Helvetica, sans-serif;
}

.machine {
	bottom: 25%;
	display: grid;
	grid-template-columns: auto auto auto auto auto auto auto;
	grid-gap: 10px;
	justify-content: center;
}

.slot {
	background-color: rgba(0, 0, 0, 0.5);
	box-shadow: inset 0 0 30px black;
	width: var(--slotSize);
	height: var(--slotSize);
}

.dispenser {
	bottom: 5%;
	background-color: dimgray;
	height: 150px;
	width: 200px;
	display: grid;
}

.button {
	place-self: center center;
	height: 100px;
	width: 100px;
	border-radius: 50%;
	background-color: red;
	border: 5px solid black;
}

.slip {
	background-color: rgba(255, 255, 255, 1);
	opacity: 0.8;
	transform-origin: center left;
	transform: translateX(-1300px);
	box-sizing: border-box;
	display: grid;
	padding: 10px;
	filter: drop-shadow(-1px 6px 3px rgba(50, 50, 0, 0.5));
	grid-template-areas: 
	"week3 calendar calendar calendar calendar calendar calendar calendar";
}

.slipCalendar {
	background-color: transparent;
	display: grid;
	gap: 0px;
	box-sizing: border-box;
	border: 1px solid black;
	grid-area: calendar;
}

.slipSpot {
	position: relative;
	background-color: transparent;
	height: 100px;
	width: 100px;
	box-sizing: border-box;
	border: 1px solid black;
	display: flex;
	justify-content: center;
	align-items: center;
}

.weekLabel {
	font-family: "Palatino";
	color: black;
	font-size: 30px;
	justify-self: end;
	align-self: center;
	margin: 10px;
}

.week3 {
	grid-area: week3;
}

.numberSlip {
	height: 80%;
}

.slipHider {
      position: absolute;
	height: 100%;
	width: 500%;
	background-color: transparent;
	z-index: 2;
      left: 100%;
      overflow: hidden;
}