/*! Place your custom styles here */

.pickerProfile {
    top: 26px;
    background: #2B2B2B;
    height: 45px;
    position: relative;
}

.li {
    list-style-type: none;
}

.Buttons-list {
    height: 100%;
    overflow-y: auto;
}

.btn {
  background: lighten(#2B2B2B, 3%);  
  border: 1px solid darken(#2B2B2B, 4%);
  box-shadow: 0px 2px 0 darken(#2B2B2B, 5%), 2px 4px 6px darken(#2B2B2B, 2%);
  font-weight: 900;
  letter-spacing: 1px;
  transition: all 150ms linear;
}

.btn:hover {
  background: darken(#2B2B2B, 1.5%);
  border: 1px solid rgba(#000, .05);
  box-shadow: 1px 1px 2px rgba(#fff, .2);
  color: lighten(#2B2B2B, 18%); 
  text-decoration: none;
  text-shadow: -1px -1px 0 darken(#2B2B2B, 9.5%);
  transition: all 250ms linear;
}

.fullWButton{
    width: 100%;
}