.tablesorter-filter-row {
  display: none;
}

.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active,
a.ui-button:active,
.ui-button:active,
.ui-button.ui-state-active:hover {
  border: 1px solid #0187a2 !important;
  background: #0187a2 !important;
  font-weight: bold;
  color: #fff;
}

/* Dropdown Button */
#dropbtn,
#dropbtnInscripciones {

  background-color: transparent;
}

/* Dropdown button on hover & focus */
#dropbtn:hover,
#dropbtn:focus,
#dropbtnInscripciones:hover,
#dropbtnInscripciones:focus {
  background-color: white !important;
  color: #2980B9 !important;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #2980B9;
  width: 250px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
  color: white;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {
  background-color: #155f91;

}

/* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */
.show {
  display: block;
}

.submenu-inscripciones {
  display: none;
}

.submenu-inscripciones li {
  position: relative;
}

.submenu-inscripciones {
  right: -140px;
  top: 0px;
}

.loader-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  overflow-x: hidden;
}

.loader {
  border: 8px solid #f3f3f3;
  border-top: 8px solid #3498db;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}