.transcript-frame{
    height: calc(100vh - 55px);
  }

  
.open-transcript {
    text-align: right;
    max-height: 100%;
    max-width: 600px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0%;
    margin: auto;
    outline: none;
    width: 100%;
  }
  
  .open-transcript-btn {
    background: #4CAF50;
    border: 0;
    padding: 10px 25px;
    color: #fff;
    border-radius: 5px;
    outline: none;
  }
  
  .transcript-popup {
    width: 310px;
    margin: auto;
    position: fixed;
    left: auto;
    right: -100%;
    top: 0;
    bottom: 0;
    z-index: 9999999;
    background: rgba(255, 255, 255, 0.81);
    font-family: 'Montserrat', sans-serif;
    /* box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.12); */
    color: #4d4d4d;
    transition: all 0.5s;
  }
  
  .transcript-popup .transcript-body {
    padding: 15px 16px;
    padding-right: 0;
    padding-top: 15px;
    text-align: left;
    line-height: 2;
    font-size: 15px;
  }
  
  .transcript-popup .transcript-header {
    padding: 14px;
    text-align: left;
    font-size: 20px;
    border-bottom: 1px solid #b4b4b4;
    background: rgba(255, 255, 255, 0.6392156862745098);
  }
  
  .transcript-popup {
    font-size: 20px;
  }
  
  .transcript-popup .sidepanel-close-button {
    background: transparent;
    border: 0;
    outline: none;
    position: absolute;
    right: 10px;
    top: 10px;
  }
  
  .transcript-popup .sidepanel-close-button svg {
    width: 17px;
  }
  
  .transcript-popup .sidepanel-close-button svg line{
    stroke: #656565;
  }
  
  @media only screen and (max-height: 800px) and (max-width: 1400px){
    .open-transcript {
        bottom: 30px;
    }
  }

  @media only screen and (max-width: 1024px) {
    .open-transcript {
        bottom: 30px;
    }
  }

  
  @media only screen and (max-width: 991px) {
    .open-transcript {
        bottom: -40px;
    }
  }

  
  @media only screen and (max-width: 767px) {
    .open-transcript {
        bottom: -35px;
    }
    .transcript-popup {
        width: 100%;
    }
    .open-transcript-btn{
        padding: 8px 15px;
    }
  }