body {
  font-family: Arial, Helvetica, sans-serif;
  color: black;
}
h1 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 8px;
}
h2 {
  font-size: 16px;
  font-weight: 200;
  margin-bottom: 10px;
  color: #757575;
}
li a {
    display: block;
    color: black;
    text-align: center;
    padding: 10px !important;
    text-decoration: none;
    border-radius: 6px;
}
li a:hover {
    background-color: #e9e9e9 !important;
    color: #2c2c2c !important;
}
a {
    color: #2c2c2c;
}
th {
    cursor: pointer;
}

.list-group-item {
    padding: .5rem .5rem !important;
}
.input_invalid {
  background-color: #ffdddd !important;
}
.input_valid {
  background-color: #e3ffdd !important;
}
.hr_menu {
    border: solid 1px #757575;
    margin-left: 10px;
    width: 100%;
}
.list-group-item {
    z-index: 1;
}
.hide {
    display: none;
}
.h5 {
  font-weight: bold;
}
.fa-2x {
    font-size: 1.5rem;
}
.h-100 {
    height: 85px;
}

#page-top {
  background-color: #f8f9fa;
}
.main-title {
    margin-top: 24px;
    margin-bottom: 24px;
}
.screen-small {
    display: none;
}
.screen-large {
    display: block;
}
@media only screen and (max-width: 991px) {
  .screen-small {
    display: block;
  }
  .screen-large {
    display: none;
  }
  .navbar-collapse {
    display: block;
  }
}

.dropdown-item {
    padding: 0.5rem !important;
    cursor: pointer;
}

.font-weight-bold {
    font-weight: bold;
}
.text-right {
    text-align: right;
}
.text-purple {
    color: #6f42c1;
}
.bg-purple {
    background-color: #6f42c1;
}
.btn-purple {
    padding: 6px 10px;
    background-color: #6f42c1;
    color: white;
    cursor: pointer;
    border-radius: 6px;
    font-size: small;
}
.btn-purple:hover {
    background-color: #8e52fb;
    color: white;
}

.card {
    border: none;
    cursor: pointer;
    border-radius: 6px;
}
.card-table {
    border: none;
    border-radius: 6px;
}
.card-form {
    border: 1px solid #f0f0f0 !important;
}
.card-form:hover {
    background-color: white;
}
.card-body-table {
    background-color: white;
    border-radius: 6px;
    padding: 16px;
}
.card-body {
    background-color: white;
    border-radius: 6px;
    padding: 16px;
}
.card-body:hover {
    background-color: #f5f5f5;
}

/* --- modals--- */

.modal-body {
    padding: 16px;
    width: 350px;
    margin: auto;
}

/* --- sidebar --- */

.topbar-title {
    font-weight: bold;
    margin-left: 5px;
}
.username {
    padding: 12px;
}
.navbar {
    background-color: white;
    border-radius: 6px;
    padding: 6px 16px;
    margin-top: 16px;
}
.navbar-collapse {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.navbar-nav{
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
}
.nav-item{
    float: left;
}
.app-icon:hover {
    background-color: white;
    color: white;
}
.nav-active {
    background-color: #6f42c1;
    color: white !important;   
}

.scroll-to-top {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    background-color: #6f42c1;
    color: white;
    cursor: pointer;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 16px;
}

.form-switch .form-check-input {
    height: 20px !important;
}

/* --- login --- */

.form_container {
  display: flex;
  justify-content: center;
}
.formulario {
  padding: 24px;
  position: absolute;
  top: 18%;
}
.form-signin {
  display: flex;
  align-items: center;
  flex-direction: column;
  max-width: 260px;
}
.form_header {
  text-align: center;
  margin-bottom: 12px;
}
.form_img {
  margin-bottom: 6px;
}
.form_element {
  margin-bottom: 16px;
  width: 100%;
}
.form_label {
  margin-bottom: 6px;
}
.form_input {
  padding: 8px !important;
  border-radius: 20px !important;
  width: 100%;
}
.password-wrapper {
  position: relative;
}
.toggle-button {
  display: inline-flex;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: unset;
  right: 12px;
  cursor: pointer;
}
.eye-icon {
  cursor: pointer;
  width: 20px;
  height: 20px;
}
.form_btn {
  width: 100%;
  padding: 8px;
  cursor: pointer;
  border-radius: 20px !important;
  font-size: 16px;
  margin-top: 8px;
}