/* Base styles v 1.12*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body{
  font: 60px "Arial", sans-serif;
  text-align: center;
  /* text-shadow: 4px 2px 0 rgba(0, 0, 0, 0.2); */
}

.flex-container {
  /* border: 10px solid #7f00ff; */
  margin: 0 auto;
  max-width: 1200px;
}

.flex-item {
  padding: 10px;
}

.flex-container {
  display: flex;
  flex-wrap: wrap;
  padding: 0 5vw;
  /* flex-direction: row; */
  
}

.flex-item{
  width: 50%;
}

@media screen and (max-width:1050px ) {
  body{
  font: 10vw "Arial", sans-serif;
}
  .flex-container{
    flex-direction: column;
    
    /* height: 100vh; */
  }
  .flex-item{
    width: 100%;
    /* height: 100; */
  }
}


.pump_station_container{
  /* height: ; */
  display: flex;
  flex-direction: column;
  /* background-color: yellow; */
  height:100%;
  /* justify-content: space-around; */
  /* align-items: center; */
}

.pump_station{
  height: 100%;
  padding-top: 20px;
  /* align-self: center; */
}

.pump_row{
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  gap:30px;
  /* padding: 30px 0; */
}

/* .pump{
  background-color: beige;
  padding: 30px;
} */

.pump {
      display: flex;
      flex-direction: column;
      align-items: center;
      flex: 1;
    }

.pump img {
  width: 100%;
  max-width: 100%;
  height: auto;
  transition: opacity 0.3s ease;
}

.fit_container{
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  /* background-color: blanchedalmond; */
  /* border: 3px solid greenyellow; */
  padding: 20px 40px;
  /* align-items: center; */
  align-content: center;
  /* max-width: 500px; */
}

.fit_row{
  display: flex;
  justify-content: space-between;
  height: 100%;
  align-items: center;
}

.fit_row:nth-child(2n+1) {
  background-color: #f0f0f0;
}

.fit_row:nth-child(2n) {
  background-color: #f8f8f8;
  /* border: 3px solid green; */
}

.fit_id{
  min-width: 30%;
  /* width:10%; */
  /* text-align: right; */
  /* align-items: right; */
  /* background-color: aqua; */
}

.fit_val{
  /* width:80%; */
  white-space: nowrap;
  text-align: right;
  padding: 0 10px 0;
  /* align-items: right; */
  /* background-color: red; */
}

.notouch {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  pointer-events: none;
}




