/* mensaje para resultado de proceso crud */
/* -------------------------------------- */
div.mensaje1 {
    display: none;
    position: fixed;
    z-index: 1000;
    top: 16px;
    right: 16px;
    font-size: 18px;
    border-radius: 5px;
    padding: 15px;
    margin: 1px;
    width: 30%;
}
.mensaje1close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}
.mensaje1close:hover,
.mensaje1close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

/* side nav bar
* ==========================================
*/
body {
  position: relative;
  overflow-x: hidden;
/*
  background-color: rgb(255, 255, 255);
*/  
  background-color: #f8f9fc;
}
body, html {
  height: 100%;
}
.nav .open>a,
.nav .open>a:hover,
.nav .open>a:focus {
  background-color: transparent;
}
/* *** wrappers *** */
#miwrapper {
  padding-left: 0;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
#miwrapper.toggled {
  padding-left: 220px;
}
#sidebar-miwrapper {
  z-index: 1000;
  left: 220px;
  width: 0;
  height: 100%;
  margin-left: -220px;
  overflow-y: auto;
  overflow-x: hidden;
  background: #1a1a1a;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
#sidebar-miwrapper::-webkit-scrollbar {
  display: none;
}
#miwrapper.toggled #sidebar-miwrapper {
  width: 220px;
}
#page-content-miwrapper {
  width: 100%;
  padding-top: 70px;
}
#miwrapper.toggled #page-content-miwrapper {
  position: absolute;
  margin-right: -220px;
}
/* *** Sidebar nav styles *** */
.navbar {
  padding: 0;
}
.sidebar-nav {
  position: absolute;
  top: 0;
  width: 220px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.sidebar-nav li {
  position: relative;
  line-height: 20px;
  display: inline-block;
  width: 100%;
}
.sidebar-nav li:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  height: 100%;
  width: 3px;
  background-color: #1c1c1c;
  -webkit-transition: width .2s ease-in;
  -moz-transition: width .2s ease-in;
  -ms-transition: width .2s ease-in;
  transition: width .2s ease-in;
}
.sidebar-nav li:hover {
  background: skyblue !important;
  border-radius: 10px;
  margin-left: 10px;
  margin-right: 10px;
}
.sidebar-nav li:hover:before,
.sidebar-nav li.open:hover:before {
  width: 100%;
  -webkit-transition: width .2s ease-in;
  -moz-transition: width .2s ease-in;
  -ms-transition: width .2s ease-in;
  transition: width .2s ease-in;
}
.sidebar-nav li a {
  display: block;
  color: #ddd;
  text-decoration: none;
  padding: 10px 15px 10px 30px;
}
.sidebar-nav li a:hover,
.sidebar-nav li a:active,
.sidebar-nav li a:focus,
.sidebar-nav li.open a:hover,
.sidebar-nav li.open a:active,
.sidebar-nav li.open a:focus {
  color: #fff;
  text-decoration: none;
  background-color: transparent;
}
.sidebar-header {
  text-align: center;
  font-size: 20px;
  position: relative;
  width: 100%;
  display: inline-block;
}
.sidebar-brand {
  height: 65px;
  position: relative;
  background: #212531;
  background: linear-gradient(to right bottom, #2f3441 50%, #212531 50%);
  padding-top: 1em;
}
.sidebar-brand a {
  color: #ddd;
}
.sidebar-brand a:hover {
  color: #fff;
  text-decoration: none;
}
.dropdown-header {
  text-align: center;
  font-size: 1em;
  color: #ddd;
  background: #212531;
  background: linear-gradient(to right bottom, #2f3441 50%, #212531 50%);
}
.sidebar-nav .dropdown-menu {
  position: relative;
  width: 100%;
  padding: 0;
  margin: 0;
  border-radius: 0;
  border: none;
  background-color: #222;
  box-shadow: none;
}
.dropdown-menu.show {
  top: 0;
}

/* *** hamburger-Cross *** */
.mihamburger {
  position: absolute; /* fixed; */
  top: 20px;
  z-index: 999;
  display: block;
  width: 32px;
  height: 32px;
  margin-left: 15px;
  background: transparent;
  border: none;
}
.mihamburger:hover,
.mihamburger:focus,
.mihamburger:active {
  outline: none;
}
.mihamburger.is-closed:before {
  content: '';
  display: block;
  width: 100px;
  font-size: 14px;
  color: #fff;
  line-height: 32px;
  text-align: center;
  opacity: 0;
  -webkit-transform: translate3d(0, 0, 0);
  -webkit-transition: all .35s ease-in-out;
}
.mihamburger.is-closed:hover:before {
  opacity: 1;
  display: block;
  -webkit-transform: translate3d(-100px, 0, 0);
  -webkit-transition: all .35s ease-in-out;
}
.mihamburger.is-closed .hamb-top,
.mihamburger.is-closed .hamb-middle,
.mihamburger.is-closed .hamb-bottom,
.mihamburger.is-open .hamb-top,
.mihamburger.is-open .hamb-middle,
.mihamburger.is-open .hamb-bottom {
  position: absolute;
  left: 0;
  height: 4px;
  width: 100%;
}
.mihamburger.is-closed .hamb-top,
.mihamburger.is-closed .hamb-middle,
.mihamburger.is-closed .hamb-bottom {
  background-color: #1a1a1a;
}
.mihamburger.is-closed .hamb-top {
  top: 5px;
  -webkit-transition: all .35s ease-in-out;
}
.mihamburger.is-closed .hamb-middle {
  top: 50%;
  margin-top: -2px;
}
.mihamburger.is-closed .hamb-bottom {
  bottom: 5px;
  -webkit-transition: all .35s ease-in-out;
}
.mihamburger.is-closed:hover .hamb-top {
  top: 0;
  -webkit-transition: all .35s ease-in-out;
}
.mihamburger.is-closed:hover .hamb-bottom {
  bottom: 0;
  -webkit-transition: all .35s ease-in-out;
}
.mihamburger.is-open .hamb-top,
.mihamburger.is-open .hamb-middle,
.mihamburger.is-open .hamb-bottom {
  background-color: #1a1a1a;
}
.mihamburger.is-open .hamb-top,
.mihamburger.is-open .hamb-bottom {
  top: 50%;
  margin-top: -2px;
}
.mihamburger.is-open .hamb-top {
  -webkit-transform: rotate(45deg);
  -webkit-transition: -webkit-transform .2s cubic-bezier(.73, 1, .28, .08);
}
.mihamburger.is-open .hamb-middle {
  display: none;
}
.mihamburger.is-open .hamb-bottom {
  -webkit-transform: rotate(-45deg);
  -webkit-transition: -webkit-transform .2s cubic-bezier(.73, 1, .28, .08);
}
.mihamburger.is-open:before {
  content: '';
  display: block;
  width: 100px;
  font-size: 14px;
  color: #fff;
  line-height: 32px;
  text-align: center;
  opacity: 0;
  -webkit-transform: translate3d(0, 0, 0);
  -webkit-transition: all .35s ease-in-out;
}
.mihamburger.is-open:hover:before {
  opacity: 1;
  display: block;
  -webkit-transform: translate3d(-100px, 0, 0);
  -webkit-transition: all .35s ease-in-out;
}

/* *** buttons login & user *** */
.form_milogin_btn {
  position: absolute; /* fixed; */
  top: 10px;
  right: 15px;
  z-index: 999;
  width: 42px;
  height: 42px;
  font-size: 30px;
  background: transparent;
  border: none;
  display: table-cell;
  color: #1c1c1c;;
}
.form_milogin_btn:hover {
  color: slategray;
}
.midropbtnusr {
  background: transparent;
  border: none; 
  cursor: pointer;
  border-radius: 6px;
}
.midropbtnusr:hover,
.midropbtnusr:focus {
  color: slategray;
}
.midropdownusr {
  position: absolute; /* fixed; */
  top: 10px;
  right: 15px;
  z-index: 999;
  width: 42px;
  height: 42px;
  font-size: 30px;
  border: none;
  display: table-cell;
  color: #1c1c1c;;
}
.midropdownusr-content {
  display: none;
  position: absolute;
  /* background-color: #f1f1f1; */
  background-color: #1c1c1c;
  min-width: 260px;
  overflow: auto;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  right: 0;
  z-index: 1;
  border-radius: 6px;
  font-size: 16px;
}
.midropdownusr-content a {
  /*color: black; */
  color: #ddd;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}
.midropdownusr a:hover {
/*  background-color: #ddd; */
  background: skyblue !important;
}
.mishowusr {
  display: block;
}
/*-------------------------------*/
/*            mioverlay            */
/*-------------------------------*/
