.container {
  width: 100%;
  min-width: 100%;
  margin:0;
}

.container button.accordion {
  width: 100%;
  background-color: #82D7FF;
  text-align: left;
  border-bottom: 1px solid #CFCFCF;
  padding: 10px 15px;
  font-size: 18px;
  color: #333;
  cursor: pointer;
  transition: background-color 0.2s linear;
}

.container button.accordion.is-open:after {
  	transform: rotate(-45deg);
}

.container button.accordion:hover,
.container button.accordion.is-open {
  background-color: #CFCFCF;
  padding:10px;
}

.accordion-content {
  background-color: white;
  border-left: 1px solid whitesmoke;
  border-right: 1px solid whitesmoke;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-in-out;
}
.container button.accordion:after {
  font-size: 18px;
  float: right;
}
.container button:after {
	border-style: solid;
	border-width: 0.25em 0.25em 0 0;
	content: '';
	display: inline-block;
	height: 0.45em;
	left: 0.15em;
	position: relative;
	top: 0.15em;
	transform: rotate(135deg);
	vertical-align: top;
	width: 0.45em;
}
.accordion_container {	
	width:100%;
}

.accordion_head {
  background-color: #0073aa;
  color: white;
  cursor: pointer;
  font-family: arial;
  font-size: 14px;
  margin: 0 0 1px 0;
  padding: 7px 11px;
  font-weight: bold;
}

.accordion_body {
  display:none;
  padding-bottom: 0;
  min-height: 100px;
  padding:10px;
}

.accordion_body p {
  padding: 0px;
  margin: 0px;
}

.plusminus {
  float: right;
}

.nav {
	font-size:14px;
	list-style-type:none;
	background-color:#fff;
}
.nav li a {
    display: block;
    padding: 10px 5px;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #999;
    text-decoration: none;
    color: #000;
}
.nav li a:hover, #nav li a.active {
     color: #000;
}
.nav li ul {
    display: none; 
	list-style-type:none;
}

.nav li ul li a {
    padding: 10px 25px;
    background: #ececec;
		margin-left:-21px;
    border-bottom: 1px dotted #333;
}
#wrapper {
  display: flex;
}

#left {
  flex: 0 10 15%;
}

#right {
  flex: 1;
  padding-left:30px;
}


@media only screen and (max-width: 798px) {
  // Hamburger nav visible on mobile only
  .nav-mobile {
    display: block;
  }
  nav {
   width: 100%;
    padding: $nav-height 0 15px;
    ul {
      display: none;
      li {
        float: none;
        a {
          padding: 15px;
          line-height: 20px;
        }
        ul li a {
          padding-left: 30px;
        }
      }
    }
  }
  .nav-dropdown {
    position: static;
  }
}
@media screen and (min-width: $breakpoint) {
  nav {
    display: block !important;
  }
}
#nav-toggle {
  position: absolute;
  left: 18px;
  top: 22px;
  cursor: pointer;
  padding: 10px 35px 16px 0px;
  span,
  span:before,
  span:after {
    cursor: pointer;
    border-radius: 1px;
    height: 5px;
    width: 35px;
    position: absolute;
    display: block;
    content: '';
    transition: all 300ms ease-in-out;
  }
  span:before {
    top: -10px;
  }
  span:after {
    bottom: -10px;
  }
  &.active span {
    background-color: transparent;
    &:before,
    &:after {
      top: 0;
    }
    &:before {
      transform: rotate(45deg);
    }
    &:after {
      transform: rotate(-45deg);
    }
  }
}

