button.btn.btn-primary, .pagination li.active a{
  background-color: #1cbb8c;
  border-color: #1cbb8c;
}
button.btn.btn-primary:hover, .pagination li.active a:hover{
  background-color: #3ec59d;
  border-color: #3ec59d;
}

/*######## LOGIN #######*/
#btnSubmit {
  outline: none;
  height: 40px;
  text-align: center;
  width: 130px;
  border-radius: 40px;
  background: #fff;
  border: 2px solid #1ecd97;
  color: #1ecd97;
  letter-spacing: 1px;
  text-shadow: 0;
  font-size: 12px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.25s ease;
}
#btnSubmit:hover {
  color: white;
  background: #1ecd97;
}
#btnSubmit:active {
  letter-spacing: 2px;
}
#btnSubmit:after {
  content: "Acceder";
}
#btnSubmit.onclic {
  width: 40px;
  border-color: #bbbbbb;
  border-width: 3px;
  font-size: 0;
  border-left-color: #1ecd97;
  margin: auto;
  -webkit-animation: rotating 2s 0.25s linear infinite;
          animation: rotating 2s 0.25s linear infinite;
}
#btnSubmit.onclic:after {
  content: "";
}
#btnSubmit.onclic:hover {
  color: #1ecd97;
  background: white;
}
#btnSubmit.validate {
  font-size: 20px;
  color: white;
  background: #1ecd97;
}
#btnSubmit.validate:after {
  font-family: "FontAwesome";
  content: "\f00c";
}
#btnSubmit.error {
  font-size: 20px;
  color: white;
  background: #ed3d3d;
  border: 2px solid #ed3d3d;
}
#btnSubmit.error:after {
  font-family: "FontAwesome";
  content: "\f00d";
}
@-webkit-keyframes rotating {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes rotating {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/*######## SIDEBAR #######*/
.sidebar [data-bs-toggle=collapse]:after {
  border: solid;
  border-width: 0 .075rem .075rem 0;
  content: " ";
  display: inline-block;
  padding: 2px;
  position: absolute;
  right: 1.5rem;
  top: 1.2rem;
  transform: rotate(45deg);
  transition: all .2s ease-out;
}

.sidebar [aria-expanded=true]:after, .sidebar [data-bs-toggle=collapse]:not(.collapsed):after {
    top: 1.4rem;
    transform: rotate(-135deg);
}

.sidebar-dropdown .sidebar-link:before {
  content: "→";
  display: inline-block;
  left: -14px;
  position: relative;
  transform: translateX(0);
  transition: all .1s ease;
}

.sidebar-dropdown .sidebar-link {
    background: transparent;
    border-left: 0;
    color: #adb5bd;
    font-size: 90%;
    font-weight: 400;
    padding: .625rem 1.5rem .625rem 3.25rem;
}

.sidebar-dropdown .sidebar-item .sidebar-link:hover:hover:before {
    transform: translateX(4px);
}

.sidebar-dropdown .sidebar-item.active .sidebar-link, .sidebar-item.active .sidebar-link:hover{
    color: #00aa54;
}

.sidebar-item.active .sidebar-link:hover, .sidebar-item.active>.sidebar-link {
      border-left-color: #00aa54;
}

/*######## DATATABLE #######*/
.table.disabled{
    opacity: 0.5 !important;
    pointer-events: none;
}

table.table.dataTable > tbody > tr.selected > *{
  color: #FFF;
  background-color: #1cbb8c;
  box-shadow: inset 0 0 0 9999px #1cbb8c;
}

/*######## DETAILS #######*/
.tableFixHead {
  overflow: auto;
  height: 224px;
}

.tableFixHead thead th {
  position: sticky;
  top: 0;
  background-color: #FFF;
}