
.dirty-menu-fix{
  position: fixed;
  z-index: -1;
  top: 0;
  left: 0;
  margin: 0;
  padding: 0;
  width: 250px;
  height: 100vh;
  background-color: #222933;
  transition: 0.3s;
}

.dirty-menu-fix.hide-menu{
  width: 90px;
}
.dirty-menu-fix.hover-menu{
  width: 250px;
}

.sticky-wrapper, .menu-wrapper{
  width: 250px;
}
.sticky-wrapper:hover, .menu-wrapper:hover{
  width: 250px !important;
}
.show-menu .sticky-wrapper, .show-menu .menu-wrapper{
  width: 250px !important;
}
/* *** menu hide *** */
.hide-menu .sticky-wrapper, .hide-menu .menu-wrapper{
  width: 90px;
  transition: 0.3s;
}
.hide-menu .menu-wrapper .link{
  display: none;
  transition: 0.3s;
}
.hide-menu.menu-links-visible .menu-wrapper:hover .link{
  display: inline-block;
}
.hide-menu .content-wrapper{
  margin-left: 90px;
  transition: 0.3s;
}
.menu-visible .content-wrapper{
  margin-left: 250px;
}
body .remove-margins{
  margin: 0;
}

.sticky-wrapper{
  position: absolute;
}

.menu-wrapper{
  position: absolute;
  background-color: #222933;
  color: #5B5D63;
 
  padding: 20px 0;
}
.menu-wrapper a{
    color: rgb(124, 125, 129);
    font-size: 16px;
}
.icon a:hover{
  text-decoration: none;
}

.menu-wrapper ul{
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.menu-primary .button-menuitem{
    margin: 0 auto 10px auto;
    height: 40px;	
    width: 200px;
    border: 1px solid #111419;
    border-radius: 4px;
}


.menu-primary .menuspacer hr{
  border-top: solid 1px #000;
  width: 100%;
  padding: 0;
  margin: 0;
}

.menu-primary .icon{
  width: 25px;
  text-align: center;
  display: inline-block;
}
.menu-primary .link{
  display: inline-block;
  padding-left: 30px;
  vertical-align: middle;
}
.menu-primary li{
  padding: 4px 23px 4px 23px;
  border: solid 7px transparent;
  display: flex;
  align-items: center;
}
.menu-primary .active{
  border-left: solid 7px white;
} 
.menu-primary .active a {
    color: #fff;
    
}

.dark-mode .content-wrapper {
  background-color: #0E1319;
}

.content-wrapper{
  position: relative;
  margin-left: 250px;
  top: 0;
  background-color: #f5f5f5;
}
.marginwrap{
  padding: 15px 15px;
}

.menu-btn-container{
  margin-top: 20px;
  padding: 10px;
  
}

.menu-btn {
  padding: 0 0;
  
}

.menu-btn-container button:focus, .menu-btn-container button{
  width: 220px;
  border: solid 1px black;
  color: rgb(124, 125, 129);
  background-color: #222933;
  text-transform: capitalize;
  font-family: "sofiapro-light";
  border-radius: 8px;
  font-size: 16px;
  height: 40px;
  box-shadow: none;
}

.menu-btn-container select:focus, .menu-btn-container select{
  width: 220px;
  border: solid 1px black;
  color: rgb(124, 125, 129);
  background-color: #222933;
  text-transform: capitalize;
  font-family: "sofiapro-light";
  border-radius: 8px;
  font-size: 16px;
  height: 40px;
  box-shadow: none;
}

button.hide-button, button.hide-button:focus{
  width: 52px;
  border: solid 1px #222933;
}

button.hide-button span {
  display: none;
}


.menu-btn-container button:hover{
  background-color: #222933;
  color: white;
}

.menu-btn-container-active{
  background-color: #222933;
  color: white;
}

.menu-btn-container button svg {
  float: left;
  margin-left: -5px;
  margin-top: 5px;
}

/* *** Slide toggle button menu *** */
.menu-hide-label{
  position: relative;
  padding-left: 15px;
  
}
.lbl {
  position: relative;
  display: none;
  height: 15px;
  width: 32px;
  background: #ccc;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.lbl:after {
  position: absolute;
  left: -2px;
  top: -3px;
  display: block;
  width: 21px;
  height: 21px;
  border-radius: 100px;
  background: #fff;
  box-shadow: 0px 3px 3px rgba(0,0,0,0.05);
  content: '';
  transition: all 0.3s ease;
}

.lbl:active:after { transform: scale(1.15, 0.85); }

.cbx:checked ~ label { background: #ccc; }

.cbx:checked ~ label:after {
  left: 15px;
  background: #179588;
}

.cbx:disabled ~ label {
  background: #d5d5d5;
  pointer-events: none;
}

.cbx:disabled ~ label:after { background: #bcbdbc; }

.hidden { display: none; }

.active-btn svg{
  color: white;
}

.active-btn span {
  color: white;
}
