

/* =============================================================================
  MENU TOGGLE SWITCHES
============================================================================= */
/**
 * Toggle Switch Globals
 *
 * All switches should take on the class `cmn-toggle-switch` as well as their
 * variant that will give them unique properties. This class is an overview
 * class that acts as a reset for all versions of the icon.
 */

.cmn-toggle-switch {
    display: block;
    position: absolute;
    overflow: hidden;
    z-index: 50;
    /* float: right; */
    margin: 0;
    padding: 0;
    top: 3px !important;
    right: 0;
    width: 63px;
    height: 74px;
    font-size: 0;
    text-indent: -9999px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    box-shadow: none;
    border-radius: none;
    border: none;
    cursor: pointer;
    -webkit-transition: background 0.3s;
    transition: background 0.3s;
}
.minimal{
  height: 0 ;
  overflow: hidden;
  width: 100%;
}

.minimal.view{
  height: auto;
  overflow: hidden;
  background-color: rgba(255, 127, 51,0.9);
  margin-top: - 74px;
  transition:0.4s; 
}
.minimal.view ul{
  width: 100%;
  margin: 0 auto;

}
.minimal.view ul li{
  border-bottom:1px solid rgba(255,255,255,0.9) 
}

.minimal.view ul li, .view ul li a {
  width: 100%;

 
}
.minimal.view ul li a {
  padding: 0 5px;
  display: inline-block;
}


.minimal.view li > ul {
    display: none;
     position: relative !important;

}
.minimal.view li:target > ul {
    display: block;
    position: relative !important;
}
.minimal.view li{
  height: auto;
  color:#fff;
}
.minimal.view li ul li{
  font-size: 12px;

}
.minimal.view li:hover{
 background-color: rgba(0,64,89,1);
}
 .minimal.view li ul li.selected{
  background-color: inherit;
  border-bottom: 0px;
 }
.cmn-toggle-switch:focus {
  outline: none;
}

.cmn-toggle-switch span {
  display: block;
  position: absolute;
  top: 35px;
  left: 12px;
  right: 12px;
  height: 4px;
  background: white;
}

.cmn-toggle-switch span::before,
.cmn-toggle-switch span::after {
  position: absolute;
  display: block;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #fff;
  content: "";
}

.cmn-toggle-switch span::before {
  top: -16px;
}

.cmn-toggle-switch span::after {
  bottom: -16px;
}



/**
 * Style 2
 * 
 * Hamburger to "x" (htx). Takes on a hamburger shape, bars slide
 * down to center and transform into an "x".
 */
.cmn-toggle-switch__htx {
  background-color: rgba(255, 127, 51,1);

.cmn-toggle-switch__htx span {
  -webkit-transition: background 0 0.3s;
          transition: background 0 0.3s;
}

.cmn-toggle-switch__htx span::before,
.cmn-toggle-switch__htx span::after {
  -webkit-transition-duration: 0.3s, 0.3s;
          transition-duration: 0.3s, 0.3s;
  -webkit-transition-delay: 0.3s, 0;
          transition-delay: 0.3s, 0;
}

.cmn-toggle-switch__htx span::before {
  -webkit-transition-property: top, -webkit-transform;
          transition-property: top, transform;
}

.cmn-toggle-switch__htx span::after {
  -webkit-transition-property: bottom, -webkit-transform;
          transition-property: bottom, transform;
}

/* active state, i.e. menu open */
.cmn-toggle-switch__htx.active {
  background-color: rgba(0,90,125,1);
}

.cmn-toggle-switch__htx.active span {
  background: none;
}

.cmn-toggle-switch__htx.active span::before {
  top: 0;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

.cmn-toggle-switch__htx.active span::after {
  bottom: 0;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.cmn-toggle-switch__htx.active span::before,
.cmn-toggle-switch__htx.active span::after {
  -webkit-transition-delay: 0, 0.3s;
          transition-delay: 0, 0.3s;
}

