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

* {
 user-select: none; 
 -moz-user-select: none;
 -webkit-text-select: none;
 -webkit-user-select: none;
}

.position {
      position: absolute;
}

:root {
      --thermometerBaseHeight: 25px;
}

.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;
}

.center {
	display: flex;
	width: 100vw;
	height: 90vh;
	margin: auto;
	justify-content: center;
	align-items: center;
}

.consoleText {
      position: relative;
      font-family: 'Goldman';
      text-align: center;
      color: rgb(0, 0, 0, 0.7);
      font-size: 60px;
      top: -20px;
}

.pieceHolder {
	position: absolute;
	background-color: whitesmoke;
      background-image: url('./images/tileHolderBackground.webp');
      background-size: auto;
	border: 2px solid black;
	display: grid;
	gap: 0px;
	justify-content: center;
	align-content: center;
/*	overflow-y: scroll;*/
}

.thermometer {
      position: absolute;
      bottom: 0px;
      background-color: rgba(245, 245, 245, 0.6);
      border: 2px solid black;
      border-top-left-radius: 50px 50px;
      border-top-right-radius: 50px 50px;
      border-bottom: none;
      /* border-radius: 50px 50px; */
      display: flex;
      overflow: hidden;
}

.thermometerBase {
      position: absolute;
      background: radial-gradient(circle at top, rgb(0, 72, 139) 50%, rgb(0, 33, 71));
      /* background: rgba(139, 0, 0, 1); */
      border: 2px solid black;
      border-radius: 50%;
      display: flex;
      justify-content: center;
	align-content: center;
      transition: 0.2s all ease-in;
}

.thermometerBar {
      position: absolute;
      bottom: 0px;
      width: 100%;
      height: var(--thermometerBaseHeight);
      background: linear-gradient(rgb(0, 162, 255), rgb(0, 72, 139));
      /* background: red; */
      z-index: 1;
      transition: 0.2s all ease-in;
}

.thermometerScale {
      position: absolute;
      place-self: flex-end;
      width: 100%;
      height: 576px;
      z-index: 2;
	/* background: no-repeat url(./images/thermometer.webp); */
      background-position-y: bottom calc(var(--thermometerBaseHeight) + 5px);
}

.shapeHolder {
	position: absolute;
	display: inline-block;
}

.hexElement {
	display: inline-block;
	position: relative;
	aspect-ratio: cos(30deg);
	clip-path: polygon(-50% 50%,50% 100%,150% 50%,50% 0);
	background-color: whitesmoke;
}

.innerHex {
	position: absolute !important;
	pointer-events: none;
      background-color: lightgray;
	/* background-color: rgba(0, 0, 0, 0.5); */
}

/* .outerHex {
	background-image: url(./images/tileBG.webp);
      background-size: 100% 100%;
} */

.dragHex {
	position: absolute;
}

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

.intersection {
	position: absolute;
}

.actualIntersection {
	position: absolute;
	background-color: black;
}

.pipeExit {
	position: absolute;
      /* background-image: url(./images/tube.webp);
      background-size: 100% auto; */
	background-color: gray;
	border: 13px solid whitesmoke;
	z-index: -1;
}

.pipeStart {
	background-color: dodgerblue;
}

.pipeEnd {
	background-color: red;
}

.coolantText {
      display: block;
      position: relative;
      color: white;
      transform: rotate(90deg);
      font-family: 'Goldman';
      font-size: 11px;
      top: 13px;
}

.shape {
	justify-self: center;
	align-self: center;
      pointer-events: none;
}

.touchable {
      pointer-events: auto;
}

.invisiblePiece {
      opacity: 0%;
      pointer-events: none !important;
}

.snapped {
      opacity: 0%;
}

.hexContainer {
	position: absolute;
	pointer-events: none;
      filter: drop-shadow(-1px 6px 3px rgba(50, 50, 0, 0.5));
      z-index: 10;
}

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

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

@font-face {
      font-family: 'Goldman';
      font-style: normal;
      font-weight: 700;
      font-display: swap;
      src: url(https://fonts.gstatic.com/s/goldman/v19/pe0rMIWbN4JFplR2FI5XEtCaBg.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;
    }