#messageBanner{
  display: block;
  position: absolute;
  z-index: 1000;
  width: 80%;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 6px;
  opacity: 0.9;
}


#wellplate{

    display: flex;
    width: 100%;
    height: 300px;
    background-color: #2A3038;
    border: 1px solid #2c2e33;
    /* padding: 10px; */
    display: flex;
    position: relative;

    .wellplate-wells{
      display: flex;
      width: 100%;
      height: auto;
      flex-direction: column;
      justify-content: space-around;
    }
    .wellplate-row{
      display: flex;
      flex-direction: row;
      width: 100%;
      height: auto;
      justify-content: space-around;
    }
    button{
      border: none;
      background-color: #e4eaec;
      border-radius: 50%;
      margin: 2px;
    }
    button[disabled=disabled], button:disabled {
      background-color: transparent;
      border: 1px solid #0090e7;
      color: #0090e7;
    }
    .well-active{ background-color: #0090e7; }
  }

  .params-container{
    display: block;
    width: 100%;
    height: 250px;
    overflow-y: auto;
  }

  .samples{
    overflow-y: auto;
    width: 100%;
    height: 385px;
    /* position: relative; */
    .sample{
      display: inline-block;
      width: 100px;
      height: 100px;
      align-items: center;
      padding: 10px;
      &:hover .details{ display: block; }
      & .details{
        display: none;
        width: 350px;
        position: absolute;
        background-color: #0090e7;
        z-index: 999;
        transform: translate(-105%, -110%);
        padding: 10px;
        border-radius: 6px 6px 0px 6px;
        & span{
          display: block;
          width: 100%;
          font-size: 12px;
          font-weight: 100;
          text-align: right;
        }
        &::after{
          content: '';
          display: block;
          position: absolute;
          left: calc(100% - 1px);
          width: 0; 
          height: 0; 
          border-top: 10px solid transparent;
          border-left: 10px solid #0090e7;
          z-index: 998;
        }
      }
      .video{
        width: 80px;
        height: 80px;
        border-radius: 6px;
        &:hover{ border: 1px solid #0090e7; cursor: pointer; }
      }
    }
}

.fix-appended-btn{
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
  height: 38px !important;
}

#treatments-added{
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  overflow-x: auto;
  & .treatment-card{
    margin: 10px;
    border: 1px solid #46c35f;
    padding: 10px;
    border-radius: 6px;
    position: relative;
  }
  & .cells{
    /* behavior: flex;
    justify-content: space-between; */
    /* behavior: inline-block; */
    max-height: 100px !important;
    overflow-y: auto;
    width: 100%;
    margin-bottom: 10px;
    & span{
      margin: 0px 3px 5px 3px;
      font-size: 10px;
      display: inline-block;
      line-height: 30px;
      text-align: center;
      width: 30px;
      height: 30px;
      background-color: #2c2e33;
      border-radius: 50%;
    }
  }
}

.record-container-body{
  text-align: center;
  font-family: Arial, sans-serif;
  background-color: #111;
  display: flex;
  justify-content: center;
  align-items: center;
}

.record-container{
  /* behavior: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
  margin: 0 auto; */
  & img{
    display: block;
    width: 80%;
    height: auto;
  }
}

.records-card{
  & .created_at{
    float: right;
    margin-bottom: -20px;
    font-size: 12px;
    color: #6c7293 !important
  }
}

.full-img{
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  & button{
    border: none;
    background-color: #2A3038;
    height: 60px;
    line-height: 60px;
    width: 60px;
    border-radius: 50%;
    &:hover:not([disabled]){
      background-color: #2c2e33;
    }
    &:disabled{ opacity: 0.4;}
  }
}

.count-display{
  width: 100%;
  text-align: center;
  margin: 10px 0;
}

.frames{
  width: 90%;
  display: flex;
  flex-direction: row;
  overflow-x: auto;
  margin: 0px 5%;
  padding-bottom: 30px;
  & img{
    margin: 0px 10px;
    opacity: 0.4;
  }
}

.img-frame-active{
  border: 2px solid #0090e7;
  opacity: 1 !important;
}

.well-size-badge{
  background-color: #0090e7;
  color: #fff;
  font-weight: bold;
  padding: 10px 20px;
  border-radius: 20px;
  line-height: 10px;
}

#params-details{
  & span{
    display: inline-block;
    margin-bottom: 5px;
    padding: 3px;
    & strong{
      font-weight: bold;
    }
  }
}







.chart-tabs ul{
  padding: 0;
  & li{
    list-style: none;
    display: inline;
    margin-right: 20px;
    padding-bottom: 10px;
    font-weight: 300;
    & a{
      text-decoration: none;
      color: #bfbfbf;
    }
  }
}

#circleSize{
  width: 100%;
}

#canvas{
  background: #bfbfbf;
  width: 300px;
  height: 300px;
  padding: 10px;
  border-radius: 9px;
}

.chart-tabs ul li:hover a{ color: #0d6efd; }

.split-btn-ctl{
  width: 100%;
  display: flex;
  flex-direction: row;
  margin: 20px 0;
  justify-content: space-between;
}

#split{
  display: block;
  border: 1px solid #fff;
  border-radius: 5px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.1s ease-in-out;
  margin-left: 10px;
  &:hover{
    background-color: #fff;
    &::before, .circular{ border-color: #0d6efd; }
    & .vertical, .horizontal{ background-color: #0d6efd; }
  }
}

#split .horizontal{
  display: block;
  width: 40px;
  height: 2px;
  background-color: #fff;
  position: absolute;
  transition: all 0.1s ease-in-out;
}

#split .vertical{
  display: block;
  width: 2px;
  height: 40px;
  background-color: #fff;
  position: absolute;
  transition: all 0.1s ease-in-out;
}

#split .circular{
  display: block;
  width: 10px;
  height: 10px;
  border: 2px solid #fff;
  border-radius: 50%;
  position: absolute;
  transition: all 0.1s ease-in-out;
}

#split::before{
  content: '';
  display: block;
  width: 30px;
  height: 30px;
  border: 2px solid #fff;
  border-radius: 50%;
  margin: 0;
  padding: 0;
  transition: all 0.1s ease-in-out;
}







.radio-container{
  display: flex;
  flex-direction: row;
  justify-content: space-between;

  & .radio-input{
    width: auto;
    display: inline;
  }

}