@charset "utf-8";

a.button.qLeafMenuRoot:not(.text) {
  text-indent: -1000px;
  line-height: 0;
  padding: 6px;
  min-width: 24px;
}
a.button.qLeafMenuRoot:not(.icon):not(.text):after,
a.button.qLeafMenuRoot.icon:after {
  display: block;
  border-bottom: 12px double #eee; 
  border-top: 4px solid #eee; 
  content: "";
  height: 4px;
  width: 24px;
  overflow: hidden;
  text-indent: -1000px;
  line-height: 0;
  padding: 0;
}
a.button.qLeafMenuRoot.icon.text {
  position: relative;
  padding-left: calc( 36px + 0.3em );
  text-align: left;
  min-width: 36px;
  min-height: 22px;
  line-height: 22px;
  overflow: hidden;
}
a.button.qLeafMenuRoot.icon.text:after {
  position: absolute;
  left: 6px;
  top: 6px;
}
div.qLeafMenu {
    position: absolute;
    width: 100%;
    padding: 0;
    left: 0;
    right: 0;
    opacity: 0;
    transition: opacity 0.3s ease-out;
    overflow: hidden;
}
div.qLeafMenu.open {
    opacity: 1;
}
div.qLeafMenu ul {
    position: relative;
    box-shadow: 0 3px 5px rgba(0,0,0,0.2);
    transition-duration: 0.2s;
    transition-timing-function: ease-out;
    transition-property: left, opacity;
    width: 100%;
}
div.qLeafMenu li > ul {
    position: absolute;
    width: 100%;
    left: 100%;
    top: 0;
    opacity: 0;
}
div.qLeafMenu li > ul.open {
    left: 0;
    opacity: 1;
    transition-property: left;
}
div.qLeafMenu li > ul.closed {
    opacity: 1;
    left: 100%;
    transition-property: left, opacity;
}

div.qLeafMenu a {
    display: block;
    padding: 0.6em 1em 0.6em 1em;
    text-decoration: none;
    
}

div.qLeafMenu a.branch:after {
    content: "\00BB";
    margin-left: 0.5em;
}

div.qLeafMenu a.back:before {
    content: "\00AB";
    margin-right: 0.5em;
    font-weight: 600;

}
