@font-face {
  font-family: 'Open Sans';
  font-style: italic;
  font-weight: 400;
  src: local('Open Sans Italic'), local('OpenSans-Italic'), url(https://fonts.gstatic.com/s/opensans/v15/mem6YaGs126MiZpBA-UFUK0Zdcg.ttf) format('truetype');
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  src: local('Open Sans Regular'), local('OpenSans-Regular'), url(https://fonts.gstatic.com/s/opensans/v15/mem8YaGs126MiZpBA-UFVZ0e.ttf) format('truetype');
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 700;
  src: local('Open Sans Bold'), local('OpenSans-Bold'), url(https://fonts.gstatic.com/s/opensans/v15/mem5YaGs126MiZpBA-UN7rgOUuhs.ttf) format('truetype');
}

/*    This is for Hambuger but it changes the bubble menu fonts since its applies to * or the whole page
* {
  font-family: 'Open Sans', sans-serif;
  box-sizing: border-box;
  /* DomDis  color: #333;   */
  /*    This is fro Hambuger but it changes the bubble menu fonts since its applies to *   color: #fff;    /*DomDis */
  /*    This is fro Hambuger but it changes the bubble menu fonts since its applies to *   font-size: 100%;
  line-height: 1.5;
}
*/

body {
  /* DomDis background: #9fcedf;  */
  /* DomDIs margin: 0; */
}

/* div.Hamburger {    */                   /* DomDis This should push the closed hamburger to the (far) right */ 
	/*float: right; 
}
*/

/* DomDis This should push the closed hamburger to the (far) right */
div.Hamburger {                         
  position: relative;
  width: auto;
  height: auto;
  float: right;
}	

nav {
  --duration: 0.5s;
  --easing: ease-in-out;
  position: relative;
  width: 220px;
  margin: 2px;
  opacity: .85;                /* DomDis */
}

 .menu-item a  {               /* DomDis */
  color: #000                  /* DomDis */
}                              /* DomDis */

 .menu-item a:hover  {         /* DomDis */
  color:#000;                  /* DomDis */
}                              /* DomDis */

nav ol {
  list-style-type: none;
  /* DomDis   margin: 0;            */
  padding: 0;
}
nav li {
  margin: -4px 0 0 0;
}
nav a {                        /* Nav header menus names */
  display: block;
  text-decoration: none;
  background: #fff;
  background: #fff;            /* DomDis */
  
  transform-origin: 0 0;
  transition: transform var(--duration) var(--easing), color var(--duration) var(--easing);
  transition-delay: var(--delay-out);
  border-radius: 4px;
  font-size: 16px;             /* DomDis */
  padding: 1em 1.52em;
  padding: 16px 1px 10px 6px;  /* DomDis  */
}
nav a:hover {
  /* DomDis  background: #efefef;      */
  Color: Tomato; 
}
nav .sub-menu a {                    /* Nav selectable menu items */
  font-size: 0.9em;
  font-size: 12px;            /* DomDis */
  color: #666666;
  Color: #000;                /* DomDIs */
  /* DomDIs  border-left: 2em solid white;  */
  border-left: 2em solid #fff;                  /* DomDis */
  padding: 0.75em;
  padding: 6px  1px 6px  8px;                   /* DomDis  */
  /*    DOMDIS    background: linear-gradient(to right, #ddd 2px, #fff 2px);   */
/* background: linear-gradient(to right, #000 2px, #fff 02px); */  /* This makes the line to the left, under the menu headers */
   background: linear-gradient(to right, #fff 2px, #fff 02px);
}
nav .sub-menu a:hover {
  /* Color: Red;                          /* DomDis */
  /* DomDis background: linear-gradient(to right, #ddd 2px, #efefef 2px);  */
  background: linear-gradient(to right,#bfbfbf 5px,#999999 2px);           /*  DomDis  */
}
nav header {
  font-weight: 600;
  display: block;
  Color: #000;                                   /*DomDis */
  background: rgba(255, 255, 255, 0.5);
  background:  #fff;                            /* DomDis */
  transform-origin: 0 0;
  transition: transform var(--duration) var(--easing), color var(--duration) var(--easing);
  transition-delay: var(--delay-out);
  border-radius: 4px;
  padding: 1em 1.52em;
}

nav header span {
  border: none;
  background: transparent;
  font-size: 1.5em;
  padding: 0;
  cursor: pointer;
  line-height: 1;
  float: right;
}

nav footer button {
  position: absolute;
  top: 0;
  left: 0;
  border: none;
  padding: calc(1em - 2px);
  padding: 20px 10px 20px 10px;                 /*     DomDis    making the button area larger   */
  width: 100%;
  transform-origin: 0 0;
  transition: transform var(--duration) var(--easing);
  transition-delay: calc(var(--duration) + (.1s * (var(--count) / 2)));
  cursor: pointer;
  outline: none;
  background: #cdcdcd;
  opacity: 0;
}

nav.closed {   transform: translate(150px, 0);}    /* DomDis This should push the closed hamburger to the (far) right */

nav.closed a,
nav.closed header {
  transform: translateY(calc(var(--top) * -1)) scaleY(0.1) scaleX(0.2);
  transition-delay: var(--delay-in);
  color: transparent;
  background: #fff;  
}
nav.closed footer button {
  transition-delay: 0s;
  transform: scaleY(0.7) scaleX(0.2);
}
