html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.bg {
    background-color: #040043;
    color: white;
}

/* NAV */
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='white' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.dropdown-menu.bg .dropdown-item {
    color: white;
}

    .dropdown-menu.bg .dropdown-item:hover,
    .dropdown-menu.bg .dropdown-item:focus {
        background-color: #1a1a80;
        color: white;
    }

    .dropdown-menu.bg .dropdown-item:active {
        background-color: #000033;
        color: white;
    }

/* LOGIN */
.divider:after,
.divider:before {
    content: "";
    flex: 1;
    height: 1px;
    background: #eee;
}

.h-custom {
    height: calc(100% - 73px);
}

@media (max-width: 450px) {
    .h-custom {
        height: 100%;
    }
}

/* BOTONES */
.btn-ingresar, .btn-guardar, .btn-ver, .btn-modificarDestino {
    background-color: #1a1a80;
    color: white;
}

    .btn-ingresar:hover, .btn-guardar:hover, .btn-ver:hover, .btn-modificarDestino:hover {
        background-color: #242483;
        color: white;
    }