@import url('https://fonts.googleapis.com/css2?family=Bangers&display=swap');

.nolink {
  text-decoration: inherit;
  color: inherit;
}

.nolink:hover {
  text-decoration: inherit;
  color: inherit;
}

.sensorBox {
  background: rgb(116,104,104);
  background: linear-gradient(356deg, rgba(116,104,104,1) 0%, rgba(196,183,183,1) 100%);

  border-radius: 10px;
  padding-top: 20px;
  padding-bottom: 20px;
  text-align: center;
  color: black;
}

.image-nav-wrapper {
  overflow: hidden;
  height: 250px;
  width: 250px;
}

.image-nav h1 {
  position: absolute;
  margin-top: 100px;
  width: 250px;
  text-align: center;
  color: black;
}

.image-nav img {
  height: 250px;
  width: 250px;
}

.image-nav {
  transition: transform 1s;
}

.uploadBTN {
  margin-bottom: 20px;
  height: 60px;
  overflow: hidden;
}

.uploadBTN input[type="file"] {
  display: none;
}

.uploadBTN input[type="file"]:hover {
  cursor: pointer !important;
}

.uploadBTN div {
  cursor: pointer;
  align-items: center;
  justify-content: center;
  background: darkgreen;
  border: 3px dotted green;
  border-radius: 10px;
  padding-left: 16px;
  min-height: 55px;
}

.uploadBTN div strong {
  display: block;
  text-align: center;
  margin-right: 16px;
  color: white;
  margin-top: 16px;
}

.uploadBTN button {
  height: 55px;
  margin-top: -32px;
  border-radius: 10px;
}

.image-nav:hover {
  cursor: pointer;
  transform: scale(1.5);
}

.vertical-center {
  margin-top: auto;
  margin-bottom: auto;
}

.offline {
    cursor: not-allowed;
}

.online {
  cursor: pointer;
}

.profileImage {
  height: 64px;
  width: 64px;
  border-radius: 32px;
}

.listInput {
  position: relative;
  top: 8px;
}

#targetTempLeft {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
}

#targetTempRight {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
}

#targetTempAnimation {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background-color: #007e00;
  z-index: 99999;
}

#tempPickerHorizontal {
    height: 2px;
    width: 100%;
    background-color: blue;
    position: relative;
}

#tempPickerVertical {
    height: 100%;
    width: 2px;
    background-color: blue;
    position: relative;
}

#tempPickerInfoText {
  position: absolute;
  color: white;
  width: 300px;
}

#tempPickerPickedPositions {
  position: absolute;
  height: 100%;
  width: 100%;
}

.paintArea {
  background-color: white;
  border: 3px solid black;
  border-top: none;
  width: 100%;
  height: 400px;
  cursor: crosshair;
}

.paintAreaFadeOut {
  animation-name: paintAreaFadeOutAnimation;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}

@keyframes paintAreaFadeOutAnimation {
  0% {
    opacity: 1;
  }
  5% {
    opacity: 0.6;
  }
  100% {
    opacity: 0;
  }
}

#alert-dialog-container {
  display: inline;
  position: absolute;
  top: 25px;
  right: 50px;
  z-index: 100000;
}

.alert-dialog {
  background-color: rgba(10, 92, 10, 0.9);
  border-radius: 10px;
  box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, 0.2);
  width: 300px;
  height: 70px;
  padding: 5px 20px 5px 20px;
}

.alert-dialog svg {
  margin-right: 15px;
  float: left;
}

.alert-slider {
  margin-top: 5px;
  height: 3px;
  width: 0;
  background-color: white;
  animation-duration: 5s;
  animation-fill-mode: forwards;
  animation-timing-function: linear;
  animation-name: slideranimation;
  position: absolute;
  bottom: 5px;
}

@keyframes slideranimation {
  0% {
    width: 88%;
  }
  100% {
    width: 0;
  }
}

#measure-control {
  position: absolute;
  top: 48%;
  left: -280px;
  width: 400px;
  height: 100px;
  z-index: 100000;
  background-color: blue;
  border-top-right-radius: 50px;
  border-bottom-right-radius: 50px;
}

.measure-control-online {
  background-image: url("../images/sensor-online.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.measure-control-offline {
  background-image: url("../images/sensor-offline.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

#measure-control:hover {
  cursor: pointer;
  animation-duration: .3s;
  animation-fill-mode: forwards;
  animation-name: dropOutAnimation;
}


.fadeIn {
  animation-duration: .3s;
  animation-name: dropInAnimation;
}

@keyframes dropOutAnimation {
  0% {
    left: -280px;
  }
  100% {
    left: 0;
  }
}

@keyframes dropInAnimation {
  0% {
    left: 0;
  }
  100% {
    left: -280px;
  }
}

.maintenance {
  font-size: 80px;
	font-weight: 700;
	background-clip: text;
	-webkit-background-clip: text;
	color: transparent;
  font-family: 'Bangers', cursive;
  letter-spacing: 8px;
	background-image: url('../images/maintenance-bg.jpg');
}

.infotext {
  font-size: 18px;
  font-family: monospace;
}

.vertical-center {
  margin-top: auto;
  margin-bottom: auto;
}


#measure-control {
  color: white;
}

.searchFilters {
  padding-bottom: 20px;
}

.measure-header {
  color: white;
  text-decoration: underline;
  font-size: 19px;
}

.measure-text {
  margin-top: 20px;
  margin-left: 10px;
  text-shadow: 0 0 3px #FF0000, 0 0 5px #0000FF;
}

.measurecard {
  background-color: #2c2f33 !important;
  box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, 0.2);
  color: white !important;
  transition: transform .2s;
  border-radius: 5px;
}

.measurecard li {
  background-color: #2c2f33 !important;
  color: #c2c2c2 !important;
}

.archived {
  background-color: rgba(250, 0, 0, 0.3) !important;
}

.measurecard li {
  background-color: rgba(250, 0, 0, 0) !important;
}

.measurecard:hover {
  cursor: pointer;
  transform: scale(1.05);
  box-shadow: 4px 4px 4px 2px rgba(0, 0, 0, 0.2);
}

.measure-tooltip {
  color: #bdbdbd;
  margin-bottom: 20px;
  margin-left: 20px;
  font-size: 18px;
}

.measure-tooltip:hover {
  cursor: pointer;
}




.paintAreaToolbar {
  background-color: LightGray;
  border: 3px solid black;
  border-bottom: none;
  width: 100%;
  height: 50px;
}

.paintingColorBox {
  height: 30px;
  width: 30px;
  border: 3px solid white;
  border-radius: 3px;
  margin-top: 10px;
}

.usernav-item {
  margin: 0;
  padding: 10px;
  color: white;
  background-color: #121331;
  text-decoration: none;
}

.active, .usernav-item:hover {
  color: white;
  font-weight: bold;
  background-color: #08a88a;
}


hr {
  background-color: var(--color);
}

.animatedProgressBar {
  animation-name: loadingBar;
  animation-timing-function: linear;
  animation-duration: 7s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  background-color: darkgreen !important;
}

.progressList {
  list-style: none;
}

.progressList li {
  font-size: 18px;
}

.measure-images div {
  margin-bottom: 32px;
}

.measure-images img {
  width: 100%;
  height: auto;
}

.progressList li div {
  display: inline-block;
  width: 20px !important;
  height: 20px !important;
  padding-top: 5px;
  padding-left: 10px;
}

.cursor {
  cursor: pointer;
}

@keyframes loadingBar {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}

.temperatureGrid {
    height: 31vh;
    width: 100%;
    border: 5px solid black;
    border-bottom: 5px dashed black;
}

.temperatureInnerGrid {
    height: 3vh;
    width: 10%;
    float: left;
    box-sizing: border-box;
    text-align: center;
}


.sensorGrid {
    height: 51vh;
    width: 100%;
    border: 5px solid black;
}

.sensorInnerGrid {
    height: 5vh;
    width: 10%;
    border: 1px solid black;
    float: left;
    box-sizing: border-box;
    text-align: center;
}

.sensorInnerGrid:hover {
    background-color: rgba(0,255,0,0.3);
}

.sensorInnerGrid > span {
    color: white;
    position: relative;
    top: 15px;
    font-size: 15px;
}

.sensorGridActive {
    background-color: green !important;
}


.dd {
  background-color: white;
  color: black;
  border-radius: 5px;
  position: absolute;
  z-index: 999;
  right: 25px;
  padding: 20px;
  width: 250px;
}

.dd-element {
  color: black;
  height: 40px;
}

.dd-element:hover {
  font-style: italic;
  cursor: pointer;
}

.glow {
  font-family: 'Bangers', cursive;
  font-size: 55px;
  color: #444444;
  text-align: center;
  animation: glow 2s ease-in-out infinite alternate;
}

@-webkit-keyframes glow {
  from {
    text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #6a6a6a, 0 0 40px #6a6a6a, 0 0 50px #6a6a6a, 0 0 60px #6a6a6a, 0 0 70px #6a6a6a;
  }

  to {
    text-shadow: 0 0 20px #fff, 0 0 30px ;
  }
}
