.pan-layout-left {

display: block;
position: absolute;
top: 0px;
bottom: 0px;
left: var(--pan-layout-left-left);
width: var(--pan-layout-left-width);
background-image: var(--pan-layout-left-background-image);
background-repeat: no-repeat;
background-position: center;
background-size: cover;
color: #FFF;
z-index: 100500;
&__overlay {
  display: block;
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  background-color: var(--pan-layout-left-background-color);
  opacity: .7;
}
> * {
  position: absolute;
  left: 0px;
  right: 0px;
  z-index: 2;
}
h1,h2,h3,h4,h5,h6 {
  margin: 0px;
}
&__top {
  top: 0px;
  height: var(--pan-layout-left-top-height);
}
&__middle {
  top: var(--pan-layout-left-top-height);
  bottom: var(--pan-layout-left-bottom-height);
  border-top: var(--pan-layout-left-middle-border);
  border-bottom: var(--pan-layout-left-middle-border);
  overflow-y: auto;
  overflow-x: visible;
}
&__bottom {
  height: var(--pan-layout-left-bottom-height);
  bottom: 0px;
  > * {
    display: block;
    position: absolute;
    left: 10px;
    right: 10px;
  }
}
&__small {
  top: 0px;
  height: 20px;
  font-size: .8rem;
  > * {
    @include v-center;
  }
}
&__social {
  top: 20px;
  bottom: 0px;
  overflow-x: auto;
  overflow-y: hidden;
  font-size: 1.4rem;
  padding-top: 15px;
  ul {
    list-style: none;
    display: table;
    padding: 0px;
    margin: 0px;
    > li {
      display: table-cell;
      padding-right: 30px;
      margin: 0px;
      a {
        color: inherit !important;
      }
    }
  }
}
&__avatar {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  height: 200px;
  a {
    display: block;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    width: 150px;
    height: 150px;
    margin: 0px auto;
    > img {
      display: block;
      width: 100% !important;
      height: 100% !important;
      border-radius: 50%;
    }
  }
}
&__info {
  position: absolute;
  top: 200px;
  bottom: 0px;
  left: 5px;
  right: 5px;
  text-align: center;
  text-transform: uppercase;
}
&__title {
  font-size: 1.5rem;
  white-space: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
}
&__subtitle {
  font-weight: lighter;
}
&__menu {
  display: block;
  list-style: none;
  padding: 0px;
  margin: 0px;
  > li {
    display: block;
    padding: 0px;
    margin: 0px;
    &:hover {
      background-color: rgba(255, 255, 255, .1);
    }
    &.active {
      background-color: rgba(255, 255, 255, .3) !important;
    }
    > a {
      display: block;
      padding: 15px 15px 15px 30px;
      color: inherit !important;
      text-decoration: none !important;
    }
  }
}
&__close {
  left: unset;
  top: 0px;
  right: 10px;
  padding: 10px 15px;
  color: #FFF;
  cursor: pointer;
  z-index: 10;
  display: var(--pan-layout-left-close-btn-display);
}

}