@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700,800');

@function em($pixels, $context: $browser-context) {
  @return #{$pixels/$context}em;
}

/*body {
  background: #ddd;
}*/

[data-component='sidebar'] {
  .sidebar {
    position: fixed;
    z-index: 9999;
    font-family: 'Open Sans', sans-serif;
  }
  .first-menu {
    position: fixed;
    background-color: #fff;
    height: auto;/*100vw;*/
    width: 66px;
    top: auto;
    overflow: hidden;
    -webkit-transition-duration: 0.6s;
    -moz-transition-duration: 0.6s;
    -o-transition-duration: 0.6s;
    transition-duration: 0.6s;
    .list-group-item {
    background-color: #a38259;
      border-right: 0;
      &:not(last-child) {
        border-bottom: 0;
      }
      &:hover {
        background-color: #a38259ab;
      }
    }
    a {
      white-space: nowrap;
      color: #fff;
      font-weight: 400;
      font-size: em(14);
      span {
        opacity: 0;
        visibility: hidden;
    }
    }
    &:hover span {
      opacity: 1;
      visibility: visible;
    }
  }
  .first-menu:hover {
    width: 300px;
  }
  
  .submenu {
    position: fixed;
    left: 300px;
    width: auto;
    top: auto;
    background-color: #0075BA;
    height: auto;
    opacity: 0;
    max-width: 0;
    overflow: auto;
    animation-name: slideOut;
    -webkit-transition-duration: opacity 0.4s;
    -moz-transition-duration: opacity 0.4s;
    -o-transition-duration: opacity 0.4s;
    transition-duration: opacity 0.4s;
    .list-group-item {
      background-color: #0075BA;
      border-left: 0;
      &:hover {
        background-color: #004798;
      }
    }
    a {
      color: #fff;
      font-size: 14px;
      line-height: 1.3;
    }
    span {
      font-weight: 400;
    font-size: 11px;
    color: #e0e0de;
    display: block; 
    }
    
  }
  .svg-submenu {
    background-color: #B45E78;
    .list-group-item {
      background-color: #B45E78;
      padding-top: 8px;
      padding-bottom: 0px;
      &:hover {
        background-color: #C48799;
      }
    }
    a {
      line-height: normal;
    }
  }

  .first-menu li:hover .submenu {
    max-width: 100%;
    opacity: 1;
  }
}

/**/
.noUnderline{
    text-decoration: none;
    font-size: 18px;
}

.negritas{
    font-weight: bold;
}

.fontSubText{
    font-weight: bold;
    font-size: 15px;
}
