@import "../common/colors";
.core-navegation-drawer {
  width: 260px;
  position: absolute;
  left: -260px;
  top: 0;
  z-index: 61;
  background: #fff;
  -webkit-transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  &.visible {
    left: 0;
  }

  .core-navegation-drawer-head {
    min-height: 124px;
  }
  .core-navegation-drawer-list-item {
    cursor: pointer;
    position: relative;
    overflow: hidden;
    height: 48px;


    &.selected
    {
      span{
        color: $color-primary;
      }

      svg.icon{
        fill:$color-primary
      }
    }
  }
}

.core-navegation-drawer-fade {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 60;
}