*, *:after, *:before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.navbar-brand {
  padding: 0;
}

.navbar {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 5px 15px;
}

.btn:not(:disabled):not(.disabled) {
  background-color: rgb(188,0,0);
  transition: all .3s;
  box-shadow: none;
  border-width: 0px;
  border-radius: 5px;
  font-weight: 700;
}

.btn:not(:disabled):not(.disabled):hover {
  background-color: rgb(255,0,0);
  transition: all .3s;
}

.sidebar {
  width: 250px;
  height: 100vh;
  position: fixed;
  top: 0;
  /*left: -255px;*/
  z-index: 999;
  background: #262626;
  color: #fff;
  transition: all .5s;
  box-shadow: 3px 0px 10px rgba(0,0,0,0.5);
  text-align: left;
}

.overlay {
  display: none;
  position: fixed;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.8);
  z-index: 998;
  opacity: 0;
}

.overlay.active {
  display: block;
  opacity: 1;
}

.open-menu {
  position: fixed;
  top: 15px;
  right: 10px;
  z-index: 997;
  box-shadow: 3px 3px 3px rgba(51, 51, 51, 0.2);
}

.open-menu.btn-customized, .open-menu.btn-customized:hover, .open-menu.btn-customized:active, .open-menu.btn-customized:focus, .open-menu.btn-customized:active:focus, .open-menu.btn-customized.active:focus, .open-menu.btn-customized.btn.btn-primary:not(:disabled):not(.disabled):active, .open-menu.btn-customized.btn.btn-primary:not(:disabled):not(.disabled):active:focus {
  box-shadow: 3px 3px 10px rgba(0,0,0,0.5);
}

a.btn-customized {
  margin-left: 5px;
  margin-right: 5px;
  padding: .75rem 1.5rem;
  background: #f35b3f!important;
  border: 0;
  border-radius: 4px;
  font-size: 16px;
  color: rgba(255,255,255,0.85) !important;
  box-shadow: none;
}

a.btn-customized:hover, a.btn-customized:active, a.btn-customized:focus, a.btn-customized:active:focus, a.btn-customized.active:focus, a.btn-customized.btn.btn-primary:not(:disabled):not(.disabled):active, a.btn-customized.btn.btn-primary:not(:disabled):not(.disabled):active:focus {
  outline: 0;
  background: #c23318;
  border: 0;
  color: #fff !important;
  box-shadow: none;
}

.dismiss {
  font-size: 26px;
  width: 35px;
  height: 35px;
  position: absolute;
  top: 10px;
  right: 10px;
  transition: all .3s;
  background: #444;
  border-radius: 4px;
  text-align: center;
  line-height: 36px;
  cursor: pointer;
}

.dismiss:hover, .dismiss:focus {
  background: #555;
  color: #fff;
}

.sidebar .brand {
  padding: 40px 20px;
  border-bottom: 1px solid #444;
}

.sidebar.active {
  left: 0;
}

