/* NOT IN INDEX HTML */

.modal-btn:hover {
    cursor: pointer;
  }
  
  .uk-input,
  .module-input {
    border: 1px solid rgba(0, 0, 0, 0.5);
  }
  
  /* tank volume hidden div */
  .modal {
    display: none;
    position: fixed; /*taken out of flow, positioned reletive to parent*/
    border: solid 1px red;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.5);
  }
  
  .t1-modal-header {
    color: white;
  }
  
  .tank-heading {
    color: white;
  }
  
  .modal-content {
    position: relative;
    /* background-color: aqua; */
    background-color: white;
    padding: 1.5rem;
    margin: auto;
    width: 75%;
    max-width: 900px;
    border: solid 1px black;
    -webkit-animation-name: animatetop;
    -webkit-animation-duration: 0.4s;
    animation-name: animatetop;
    animation-duration: 0.4s;
  }
  
  .t1-modal-header {
    display: flex;
    /* justify-content: space-between; */
    align-items: center;
    /* border: solid 1px black; */
  }
  
  .t1-modal-header h2 {
    text-align: center;
    /* border: solid 1px black; */
    flex-grow: 1;
  }
  
  .close-btn {
    /* float: right;  */
    align-self: flex-start;
    color: lightgray;
    background-color: red;
    padding: 0;
    font-size: 24px;
    font-weight: bold;
  }
  
  .close-btn:hover {
    color: darkgray;
  }
  
  .svg-form-container {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    /* align-items: center; */
  }
  
  .tank-svg {
    width: 50%;
  }
  
  svg {
    /* border: solid 1px black; */
    align-self: center;
    /* flex-grow: 1; */
  }
  
  #t2-last-updated {
    border: 0.5px solid var(--blue-gray);
    color: burlywood;
    font-size: 1.5rem;
  }
  
  .prop2-number {
    font-size: 1.5rem;
  }
  
  .right-modal-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
  }
  
  .counter-container {
    margin: 0;
    padding: 0;
  }
  
  .change-over-heading {
    margin-bottom: 0.5rem;
  }
  
  .change-over-time {
    background-color: burlywood;
    margin: 0;
    padding: 0;
  }
  
  .t1-coder-values-diplay {
    flex-grow: 1;
    /* border: solid 1px black; */
  }
  
  .t1-coder-values-diplay p {
    margin: 0.25rem;
  }
  
  /* Form */
  .tank-modal-form {
    margin-top: 1.25rem;
  }
  
  .t1-can-coder h4 {
    margin-bottom: 0.5rem;
    /* font-size: 1.5rem; */
  }
  
  .t1-can-size h4 {
    margin-bottom: 0.5rem;
    /* font-size: 1.5rem; */
  }
  
  .t1-modal-update-btn {
    display: block;
    padding: 0.5rem;
    margin-top: 1.5rem;
    text-align: center;
  }
  .t1-modal-update-btn p {
    margin: 0.2rem;
  }
  
  .t1-modal-update-btn p {
    color: white;
  }
  
  .t1-modal-update-btn:disabled p {
    color: black;
  }
  
  @-webkit-keyframes animatetop {
      from {top:-300px; opacity:0} 
      to {top:0; opacity:1}
      }
  
  @keyframes animatetop {
      from {top:-300px; opacity:0}
      to {top:0; opacity:1}
      }
  
    @-webkit-keyframes animate-on-top {
      from {top:0px; opacity:0} 
      to {top:0; opacity:1}
      }
  
  @keyframes animate-on-top {
      from {top: 0px; opacity:0}
      to {top:0; opacity:1}
      }
  