﻿.navicon-button {
  position: absolute;  
  display: inline-block;
  padding: 0px 0.5px;
  transition: .3s;
  cursor: pointer;
  user-select: none;

  top:0.5px;
  left:0;
  width:30px;
  height:10px;
}
.navicon-button:hover {
  opacity: 1;
}
.navicon-button:hover .navicon:before {
  top: -8px;
}
.navicon-button:hover .navicon:after {
  top: 8px;
}

.navicon {
  display: inline-block;
  width: 20px;
  height: 4px;
  background-color: #000;
  user-select: none;
  border-radius: 2px;
  transition: .3s;
  position: relative;
}
.navicon:before, .navicon:after {
  display: inline-block;
  width: 20px;
  height: 4px;
  user-select: none;
  border-radius: 2px;
  background-color: #000;
  transition: .3s;
  position: absolute;
  content: '';
  transform-origin: 2px center;
}
.navicon:before {
  top: -7px;
  background-color: #000;
}
.navicon:after {
  top: 7px;
  background-color: #000;
}

.open.navicon-button {
  transform: scale3d(0.8, 0.8, 0.8);
}
.open.navicon-button .navicon:before, .open.navicon-button .navicon:after {
  top: 0;
  width: 18.66664px;
}
.open.navicon-button .navicon:before {
  transform: rotate3d(0, 0, 1, -35deg);
}
.open.navicon-button .navicon:after {
  transform: rotate3d(0, 0, 1, 35deg);
}
.menuBackgroundContainer
{
  position: absolute;   

  display: inline-block;
  top:0;
  left:0;
  width:25px;
  height:25px;
  z-index:-20;
}
.secondaryMenuBackgroundContainer
{
  position: absolute;   
  display: inline-block;
  top:0;
  right:0;
  width:31px;
  height:30px;
  z-index:-20;
}

.secondaryNavicon-button {
  position: absolute;  
  display: inline-block;
  padding: 0.5px 6px;
  transition: .3s;
  cursor: pointer;
  user-select: none;
  border-radius:50%;
  top:1px;
  right:0;
  width:10px;
  height:10px;
}
.secondaryNavicon-button:hover {
  opacity: 1;
}
.secondaryNavicon-button:hover .navicon:before {
  top: -8px;
}
.secondaryNavicon-button:hover .navicon:after {
  top: 8px;
}

.secondaryNavicon {
  display: inline-block;
  width: 4px;
  height: 4px;
  background-color: #000;
  user-select: none;
  border-radius: 50%;
  position: relative;
}
.secondaryNavicon:before, .secondaryNavicon:after {
  display: inline-block;
  width: 4px;
  height: 4px;
  user-select: none;
  border-radius: 50%;
  background-color: #000;
  position: absolute;
  content: '';

}
.secondaryNavicon:before {
  top: -10px;
  background-color: #000;
}
.secondaryNavicon:after {
  top: 10px;
  background-color: #000;
}