
/*scroll custom
https://codepen.io/devstreak/pen/dMYgeO?editors=0110
*/
@import url('//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.min.css');
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 300;
  src: url(https://fonts.gstatic.com/s/opensans/v18/mem5YaGs126MiZpBA-UN_r8OUuhs.ttf) format('truetype');
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/opensans/v18/mem8YaGs126MiZpBA-UFVZ0e.ttf) format('truetype');
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 700;
  src: url(https://fonts.gstatic.com/s/opensans/v18/mem5YaGs126MiZpBA-UN7rgOUuhs.ttf) format('truetype');
}
/*///////VARS/////////////*/
:root {
--box-bg: rgba(255,255,255,.95);  /*bg caja menu*/
--item-color: #000000;/*item color*/
--subIt-color:  #696969 ;/*subitem color*/

--box-borderColor: #aeb2b7;
--li-borderBottomColor: rgba(0,0,0,0.05);

--li-active: #1abc9c; /* active */
--li-a-hover:  red;/*mouse over*/
--accordion-bg: rgba(255,255,255,.8);
--test :red ;
/* estilos custom scroll bar */
  --scroll-bgShadow: rgba(0,0,0,0.3);
  --scroll-bgColor: #f5f5f5;
  --asas: SlateGray;
  /*rgba(0,0,0,.8);*/
  --asas-border: SlateGray;
  /*rgba(0,0,0,.8);*/

}


/*.activeM{
  text-decoration: underline;
  color: red;
  font-weight: 300;
}
*/
/*////////MENU BTN////////////*/
#menuBtn{
  display: none;
  position: fixed; 
  top: 0px; left: 0px;
  padding: 1px 3px; 
  margin: 14px;
  height: auto; 
  width: auto;
  z-index: 999;
  cursor: pointer;
  background-color: rgba(255,255,255,.05);
  border-radius: 3px; 
  border: 1px solid rgba(255,255,255,.1);
}
.fa-bars{
  color: var(--test);
  font-size: 1.5em;
}
/*///title sidebar//////*/
.listOfWorks{
  font-weight: bold;
  color: var(--item-color);
  text-decoration: none;
  display: block;
  padding: 18px 25px 18px 25px;
  font-size: 12px;
  outline: 0;
}



/*/////////////////////////////*/
.sidebar-toggle {
  margin-left: -240px;
}
.sidebar {
  position: fixed; 
  top: 0px;
  width: 270px;
  left: 0px;
  height: 100vh;
  border: 1px solid var(--box-borderColor);
  background: var(--box-bg);
  overflow: auto;
/*  position: absolute;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;*/
  z-index: 1000;
}
.sidebar #leftside-navigation ul,
.sidebar #leftside-navigation ul ul {
  margin: -2px 0 0;
  padding: 0;
}
.sidebar #leftside-navigation ul li {
  list-style-type: none;
  border-bottom: 1px solid var(--li-borderBottomColor);
}
.sidebar #leftside-navigation ul li.active > a {
  color: var(--li-active);
}
.sidebar #leftside-navigation ul li.active ul {
  display: block;
}
.sidebar #leftside-navigation ul li a {
  color: var(--item-color);
  text-decoration: none;
  display: block;
  padding: 18px 0 18px 25px;
  font-size: 12px;
  outline: 0;
  -webkit-transition: all 200ms ease-in;
  -moz-transition: all 200ms ease-in;
  -o-transition: all 200ms ease-in;
  -ms-transition: all 200ms ease-in;
  transition: all 200ms ease-in;
}
.sidebar #leftside-navigation ul li a:hover {
  color: var(--li-a-hover);
}
.sidebar #leftside-navigation ul li a span {
  display: inline-block;
}
.sidebar #leftside-navigation ul li a i {
  width: 20px;
}
.sidebar #leftside-navigation ul li a i .fa-angle-left,
.sidebar #leftside-navigation ul li a i .fa-angle-right {
  padding-top: 3px;
}
.sidebar #leftside-navigation ul ul {
  display: none;
}
.sidebar #leftside-navigation ul ul li {
  background: var(--accordion-bg);
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
  border-bottom: none;
}
.sidebar #leftside-navigation ul ul li a {
  font-size: 12px;
  padding-top: 13px;
  padding-bottom: 13px;
  color: var(--subIt-color);
}

.pull-right{
  float: right;
}

/* menu scrolll*/

.scroll-css::-webkit-scrollbar-track
{
  -webkit-box-shadow: inset 0 0 6px var(--scroll-bgShadow);
  background-color: var(--scroll-bgColor);
}

.scroll-css::-webkit-scrollbar
{
  width: 5px;
  background-color: var(--scroll-bgColor);
}

.scroll-css::-webkit-scrollbar-thumb
{
  background-color: var(--asas);
  border: 2px solid var(--asas-border);
}

.scroll-css
{
    overflow-y: auto;
}


