.box.sensor {
  max-width: 400px;
  flex-basis: 200px;
  display: flex;
  flex-direction: column;
  justify-content: start;
}

.modifyHeightContent{
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 1vw;
}

.modifyHeight{
  background-color: var(--intense-div-color);
  width: 130px;
  height: 250px;
  border-radius: 11px;
  padding: 27px 0vw 27px 0vw ;
  display: flex;
  align-items: center;
  justify-content: start;
  flex-direction: column;
}

.modifyHeight *{
  color: var(--white-font);
}

#titleHeight{
  font-size:13px;
  font-weight: 100;
}

#tubeHeight{
  margin-top: 2.6px;
  font-size:14px;
  font-weight: 800;
}

#hrWhite{
    margin-top: 14px;
    margin-bottom: 14px;
    border: 0;
    border-top: 2px solid #6d6788;
    width: 100%;
}

#titleModifyHeight{
  font-size: 13px;
  padding: 0 27px 0 27px;
  text-align: center;
}

.buttonDesign{
  width: 76px;
  height: 24px;
}

.inputAltura {
  margin: 12px 0 12px 0;
  border-color: white;
  text-align: center;
  -webkit-appearance: none;
  border-radius: 12px;
  background: var(--input-white);
  color: var(--black-font);
  height: 30px;
  width: 75px;
  font-size: 15px!important;
  font-weight: 900!important;
}
.inputAltura:focus {
  outline: none;
}
.inputAltura:focus:hover {
  box-shadow: none;
}

.inputAltura::-webkit-outer-spin-button,
.inputAltura::-webkit-inner-spin-button {
  /* -webkit-appearance: none; */
  margin: 0;
}

/* Slider */
.cylinder {
	position: relative;
	overflow: hidden;
	margin: 0 auto;
	width: 100px;
	height: 300px;
	border-radius: 50px/25px;
	background-color: #ded9ea;
}

.cylinder:before {
	position: absolute;
	left: 0;
	top: 0;
	width: 100px;
	height: 50px;
	border-radius: 50px/25px;
	background-color: #ded9ea;
	content: '';
}

.cylinder:after {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100px;
	height: 50px;
	border-radius: 50px/25px;
	background-color: #8433f2;
	content: '';
}

.water {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100px;
	/* height: 0px; */
	padding-top: 50px;
	border-radius: 50px/25px;
	background-color: #6c29c6;
	transition: 0.3s linear;
}

.water:before {
	position: absolute;
	left: 0;
	top: 0;
	width: 100px;
	height: 50px;
	border-radius: 50px/25px;
	background-color: #9930f7;
	content: '';
}

.water:after {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100px;
	height: 50px;
	border-radius: 50px/25px;
	background-color: rgba(0, 160, 160, 0.4);
	content: '';
}