
.custom-panel {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100%;
  border-radius: 0;
  color: #fff;
  cursor: pointer;
  flex: 0.5;
  margin: 10px;
  position: relative;
  transition: flex 0.7s ease-in;
  -webkit-transition: all 700ms ease-in;
}
.custom-panel .on-text {
    font-size: 24px;
    position: absolute;
    /* top: 20px; */
    /* opacity: 0; */
    height: 100%;
    width: 50%;
    /* background-color: var(--light); */
    color: black;
    padding: 1rem;
  }
.custom-panel .display-text {
  /* font-size: 24px; */
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* top: 20px; */
  right: -1px;
  margin: 0;
  opacity: 0;
  height: 100%;
  width: 50%;
  background-color: var(--light);
  color: black;
  padding: 1rem;
}

.custom-panel.active {
  flex: 1;
  border-top-right-radius: 52px;
}

.custom-panel.active .display-text {
  opacity: 1;
  transition: opacity 0.3s ease-in 0.4s;
  border-top-right-radius: 50px;
}
