/* Tooltip container */
.mytooltip {
  position: relative;
 /*display: inline-block;*/
 
}

/* Tooltip text */
 .mytooltiptext {
  visibility: hidden;
  width: auto;
  background-color: #af0000;
  color: #fff;
  text-align: center;
  padding: 5px;
  border-radius: 6px;

  /* Position the tooltip text */
  position: absolute;
  z-index: 1;
  bottom: 63%;
  right: 0%;
  margin-left: 0px;

  /* Fade in tooltip */
  opacity: 0;
  transition: opacity 0.3s;
}

/* Tooltip arrow */
 .mytooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

/* Show the tooltip text when you mouse over the tooltip container */
/*.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}*/

.success_modal 
{
	width:80%;
	margin: auto;
	margin-top: 40%;
	color: #000;
	background-color: #fff;
	border: 4px solid #0aa;
	border-radius: 6px;
}

#myProgress, #myProgress2 {
  width: 100%;
  height: 40px;  
  padding: 10px 10px 0px 10px;
  margin-top: 5px;
  background-color: grey;
}

#myBar, #myBar2 {
  width: 25%;
  height: 20px;
  background-color: green;
}

.MotorAlarmButton {
  margin-left: 80%;
  /*margin-top: 5px;*/
  background-color: #00af00;
  height: 30px;
  width: 30px;
  border-radius: 50%;
}
.AlarmButton {
  margin: auto;
  margin-bottom: 5px;
  background-color: #00af00;
  height: 30px;
  width: 30px;
  border-radius: 50%;
}