/*
 * MI - Proyecto Mi México
 * Dewtec - Desarrollo Estructural Web
 * Departamento de Sistemas
 */

.snackbar {
  visibility: hidden;
  margin-left: -125px;
  background-color: #333;
  color: #fff;
  border-radius: 1em;
  padding: 16px;
  position: fixed;
  z-index: 10000;
  top: 30px;
  right: 1em;
}

.snackbar.show {
  visibility: visible;
  -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
  animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

@-webkit-keyframes fadein {
  from {
    top: 0;
    opacity: 0;
  }
  to {
    top: 30px;
    opacity: 1;
  }
}

@keyframes fadein {
  from {
    top: 0;
    opacity: 0;
  }
  to {
    top: 30px;
    opacity: 1;
  }
}

@-webkit-keyframes fadeout {
  from {
    top: 30px;
    opacity: 1;
  }
  to {
    top: 0;
    opacity: 0;
  }
}

@keyframes fadeout {
  from {
    top: 30px;
    opacity: 1;
  }
  to {
    top: 0;
    opacity: 0;
  }
}

body {
  padding-top: 3.5rem;
}

/*
 * Typography
 */

h1 {
  padding-bottom: 9px;
  margin-bottom: 20px;
  border-bottom: 1px solid #eee;
}

/*
 * Sidebar
 */

.sidebar {
  position: fixed;
  top: 51px;
  bottom: 0;
  left: 0;
  z-index: 1000;
  padding: 20px 0;
  overflow-x: hidden;
  overflow-y: auto; /* Scrollable contents if viewport is shorter than content. */
}

.sidebar .nav {
  margin-bottom: 20px;
}

.sidebar .nav-item {
  width: 100%;
}

.sidebar .nav-item + .nav-item {
  margin-left: 0;
}

.sidebar .nav-link {
  border-radius: 0;
}

/*
 * Dashboard
 */

/* Placeholders */
.placeholders {
  padding-bottom: 3rem;
}

.placeholder img {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.menu_colum {
  text-align: left;
}

.kv-upload-progress {
  display: none;
}

.flag_ojo {
  background: #5fc290;
}

.jumbotron_login {
  background: rgb(255 254 255 / 60%);
  padding-bottom: 0;
}

.box_new_account {
  color: black;
  padding-top: 1em;
  padding-bottom: 1em;
  background: rgb(255 254 255 / 90%);
  border-radius: 1em;
}

.footer-login{
  margin: 1.3em 0 1.3em;
  text-align: center;
  color: #9f9f9f;
}
