* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;

    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  }

  /*
  .tooltip {
    position: relative;
    display: inline-block;
  }*/
  
  .popup-question{
    position: absolute;
    left: 300px;
    top: 150px;
    width: 400px;
    padding: 20px;
    background: #fff;
    z-index: 5;
    box-shadow: 0 0 10px rgba(0,0,0,.3);
    border-radius: 10px;
  }
  
  .tooltip .tooltiptext {
    width: 120px;
    visibility: hidden;
    background-color: #000;
    color: #fff;
    font-weight: 600;
    text-align: center;
    padding: 8px 0;
   
    position: absolute;
    z-index: 2;

    bottom: 105%;
    left: 50%;
    margin-left: -60px;
  }
  
  .tooltip:hover .tooltiptext {
    visibility: visible;
  }

  header {
    text-align: center;
    padding: 20px;

    background: rgb(125 239 253);;
    color: #000;
  }

  body {
    background: rgb(243, 243, 243);
  }

  .hero {
    display: flex;
    justify-content: center;
  }

  #expriment{
    width: 960px;
    height: 500px;
    margin-bottom:30px;
  }

  #controls {
    display: none;
    position: absolute;
    margin-top: -120px;
    left: 50px;
  }

  #controls.active{
    display: inline-block;
  }

  button {
    padding: 8px 20px;
    border-radius: 0;
    border: 0;
    outline: 0;

    cursor: pointer;
    background: #fff;
    font-weight: 800;
  }

  button:hover {
    background: #ccc;
  }

  button img {
    width: 32px;
  }

  h1 {
    font-weight: 600;
  }

  #stepdesc {
    font-size: 28px;
    text-align: center;
    margin-bottom: 30px;
  }

  .step{
    position: relative;
    width: 100%;
    height: 100%;

    overflow: hidden;
    display: none;
  }


  .step.active{
    display: block;
  }

  .step .element{
      position: absolute;
  }

  .element{
    z-index: 1;
    cursor: pointer;
  }

  .reading-meter{
    width: 60px;
    height: 60px;
    z-index: 3;
    left: 300px;
    font-family: monospace;
    top: 367px;
  }

  #sample-reading{
    height: 100%;
    display: grid;
    place-items: center;
    font-size: 18px;
    font-family: monospace;
  }

  #placeflask{
    flex-direction: column;
    text-align: center;

    top: 330px;
    left: 450px;

    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;

    z-index: 3;
  }

  #beaker{
    flex-direction: column;
    text-align: center;

    top: 180px;
    left:170px;

    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
  }

  #sidebar{
    width: 400px;
    height: 560px;
    overflow-y: scroll;
  }

  .super-container{
    display: flex;
    justify-content: space-around;
    margin-top: 10px;
  }

  #taskslist{
    list-style-type: none;
  }

  #taskslist li{
    padding: 5px 0;
    font-size: 12px;
  }

  b{
    font-weight: 600;
  }

  .drop-step-2{
    left: 315px;
    top: 230px;
  }

  .drop-step-3{
    top: 280px;
    left: 482px;
  }

  
  .drop-step-31{
    top: 290px;
    left: 350px;
  }

  .drop-step-5{
    left: 506px;
    top: 280px;
  }

  table, th, td {
    border: 1px solid black;
    border-collapse: collapse;
  }  

  th, td {
    padding: 4px 15px;
  }

  .drop-step-6{
    top: 327px;
    left: 465px;
  }

  .step p{
    font-weight: 600;
  }

  .small{
    background: #000;
    color:#fff;
    padding: 4px;
  }

  .reading-indicator{
    font-family: monospace;
    z-index: 2;
  }

  .title{
    position: absolute;
    bottom: 0;
    width: 100%;
  }