.b-a, .bar, .bar:before, .bar:after {
  transition: all .25s;
  content: "";
  position: absolute;
  right: 0;
  height: 5px;
  width: 30px;
  border-radius: 15px;
  background-color: #fff; }

.menu-collapsed {
  transition: all .25s;
  position: fixed;
  top: 0;
  right: 0;
  height: 40px;
  width: 40px;
  z-index: 1;
  cursor: pointer; }
  .menu-collapsed ul {
    transition: all 0s;
    position: fixed;
    right: -9000px; }

.bar {
  position: fixed;
  right: 12px;
  top: 20px; }
  .bar:before {
    top: -9px; }
  .bar:after {
    top: 9px; }

.b-a-expanded, .menu-expanded .bar:before, .menu-expanded .bar:after {
  transition: all .25s;
  top: -0px; }

.menu-expanded {
  transition: all .25s;
  text-align: left;
  line-height: 150%;
  height: 100%;
  width: 100%;
  border-radius: 0px;
  top: -moz-calc(12% + 5px);
  top: -webkit-calc(12% + 5px);
  top: -o-calc(12% + 5px);
  top: calc(12% + 5px);
  right: 0;
  background-color: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: top; }
  .menu-expanded ul {
    transition: all 0s;
    position: relative;
    left: 0;
    z-index: 2;
    width: 300%;
    list-style-type: none;
    margin: 0;
    padding: 0; }
  .menu-expanded a {
    transition: all .15s;
    text-decoration: none;
    font-size: 13pt;
    font-weight: bold;
    line-height: 150%;
    padding: 5px 0 5px 30px;
    color: #fff;
    display: block;
    width: 100%;
    border-bottom: 1px solid #666; }
  .menu-expanded .bar {
    background-color: transparent;
    transition: all .25s; }
    .menu-expanded .bar:before {
      transform: rotate(45deg); }
    .menu-expanded .bar:after {
      transform: rotate(-45deg); }
