
/* MIDDLE */

.middle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: fixed;
    right: 0;
    height: calc(100vh - var(--desktop-nav-height));
    overflow: hidden;
    padding: 0px !important;
    width: 62%;
    /* transition: 0.5s; */
  }
  
  .middle::after {
    content: none;
    position: absolute;
    width: 90%;
    height: 65%;
    border-radius: 50%;
    background-color: #fff;
    transform: rotateX(50deg);
    bottom: 0;
    z-index: -1;
    box-shadow: 0px 9px 6px 0px rgba(0, 0, 0, 0.16);
    -webkit-box-shadow: 0px 9px 6px 0px rgba(0, 0, 0, 0.16);
    -moz-box-shadow: 0px 9px 6px 0px rgba(0, 0, 0, 0.16);
  }

  #renderCanvas {
    padding: 0px 5px !important;
  }

  

/* mobile UI */
@media (max-width: 991px) {

  #renderCanvas {
    padding: 0px !important;
  }



  .middle {
    position: fixed;
    width: 100%;
  }

  .middle::after {
    bottom: -2%;
    transform: rotateX(55deg);
  }


 }