@import "../config";
@import "../mixins/scrollbars";

#{$class-prefix}-content {

  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  @include scrollbars(.5em, silver);

  &-container {
    position: absolute;
    width: 100%;
    max-width: 260px;
    max-height: 100%;
    opacity: 0;
    color: $font-color;
    overflow-y: auto;
    overflow-x: hidden;
    background: rgba($corner-background, $btn-opacity);
    @include transition(opacity $transition-duration $transition-type);

    &.visible,
    &.pinned {
      opacity: 1;
      z-index: 2;
    }

  }

  &-subtitle
  {
    margin-top: 10px;
    color:#888888;
  }

  &-header {
    display: table;
    width: 100%;
    // &-cell {
    //   float: right;
    // }
    // &-title {
    //   float:left;
    // }
    h1
    {
      float:left;
      margin-top:-6px;
    }
    button{
      float:right;
      margin-bottom:-6px;
    }
    border-bottom: 1px solid #efefef;
    margin-bottom: 8px;
    clear:both;
  }

  &-body {
    height: 100%;
    width: 100%;
    position: relative;
  }

  &-text {
    padding: 15px 15px 15px 10px;
    position: relative;
    z-index: 2;
    text-align: left;
    word-wrap: break-word;
  }

  &-fill {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-width: 100%;
  }

  &-top-right {
    top: 0;
    right: 0;
  }

  &-bottom {
    &-left {
      bottom: 0;
      left: 0;
    }
    &-right {
      bottom: 0;
      right: 0;
    }
  }

  &-copyright {
    display: inline-block;
    color:#888888;
  }

  &-coetitle {
    font-variant: small-caps;
    display:inline;
    font-size: 13px;
  }
  
  &-coe {
    color:#888888;    
  }

}