@import url(https://fonts.googleapis.com/css?family=Lato:100,300,400,700);
@import url('https://fonts.googleapis.com/css?family=Lato:100,100i,300,300i,400,400i,700,700i,900,900i');
@import url('https://fonts.googleapis.com/css?family=Dancing+Script'); 

#sidePanel {
    position: fixed;
    left: 0;
    top: 0;
    width: 58px;
    height: 100vh;
    background-color: #6d3c5e;
    color: white;
    padding: 20px;
    box-sizing: border-box;
    transition: width 0.5s;
    overflow: hidden;
  }
  #sidePanel:hover {
    width: 200px;
  }
  .panel-item {
    font-size: 22px;
    margin-bottom: 25px;
    white-space: nowrap;
  }
  .panel-item a {
    font-family: lato;
    color: white;
    text-decoration: none;
  }
  .panel-item i {
    margin-right: 20px;
    width: 20px;
  }
  
  @media print {
    .no-print {
      display: none;
    }
  }
  