@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");
body {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.container {
  max-width: 1280px;
  margin: auto;
  width: 90%;
  background-size: cover;
  background-repeat: no-repeat;
}

.bloque {
  border-radius: 5px;
  margin: 25px;
  background-color: #f3f3f3;
  box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.14), 0 5px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
}

.margen-interior {
  padding: 15px;
}

/* Tablas */
.contenedor-tabla {
  overflow-x: scroll;
  /* Barra de desplazamiento horizontal siempre visible */
  overflow-y: scroll;
}

table {
  font-family: arial, sans-serif;
  border-collapse: collapse;
  width: 100%;
}

td,
th {
  border: 1px solid #dddddd;
  text-align: left;
  padding: 8px;
}

tr:nth-child(even) {
  background-color: #dddddd;
}

/* Buttons */
.btn-icono-tabla img {
  height: 20px;
  width: 20px;
  cursor: pointer;
  transition: transform 1s;
}
.btn-icono-tabla img:hover {
  transform: scale(1.05);
}

.btn {
  display: inline-block;
  text-align: center;
  padding: 10px;
  background-color: #153448;
  border-radius: 5px;
  color: white;
  text-decoration: none;
}

/* Loader */
.contenedor-loader {
  display: flex;
  justify-content: center;
  display: none;
  margin: 15px;
}
.contenedor-loader .loader {
  width: 120px;
  height: 20px;
  transform: skewX(-45deg);
  background: linear-gradient(#153448 0 0) left -30px top 0/30px 20px no-repeat #ccc;
  animation: l3 1s infinite linear;
}
@keyframes l3 {
  100% {
    background-position: right -30px top 0;
  }
}

/* Errores y avisos */
.contenedor-errores,
.contenedor-avisos,
.contenedor-exitos {
  display: none;
  padding: 10px;
  margin: 10px 0px;
}
.contenedor-errores label,
.contenedor-avisos label,
.contenedor-exitos label {
  font-weight: 500;
  font-size: 1rem;
  margin: 0px;
  padding: 0px;
}

.contenedor-errores {
  border-left: 3px solid #FF5733;
  border-bottom: 1px solid #FF5733;
}

.contenedor-avisos {
  border-left: 3px solid #FFD700;
  border-bottom: 1px solid #FFD700;
}

.contenedor-exitos {
  border-left: 3px solid #086a0c;
  border-bottom: 1px solid #086a0c;
}

/* Inputs */
input,
select {
  height: 32px;
  min-width: 100px;
  border-radius: 5px;
  border: 0px;
  border-bottom: 3px solid #153448;
  outline: none;
}

/* Sweetalert */
.swal2-confirm,
.swal2-cancel,
.sweet-btn-denegar {
  color: white;
  padding: 8px 20px;
  border: none;
  border-radius: 5px;
  width: 100px;
  height: 32px;
  margin: 5px 5px;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.14), 0 5px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
  outline: none;
}

.swal2-confirm {
  background-color: #153448;
}

.swal2-cancel {
  background-color: "#f7f7f7";
  color: #153448;
}

.sweet-btn-denegar {
  background-color: "#f7f7f7";
  color: #153448;
}

/* Button */
.btn {
  background-color: #153448;
  color: white;
  font-weight: bold;
  padding: 10px 25px;
  border-radius: 5px;
  cursor: pointer;
  box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.14), 0 5px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
  transition: transform 0.3s;
}
.btn:hover {
  transform: scale(1.03);
}

.contenedor-inputs {
  width: 50%;
  margin: auto;
}
.contenedor-inputs h5 {
  display: flex;
  flex-direction: column;
  width: 50%;
  border-bottom: 3px solid #FF5733;
}
.contenedor-inputs .contenedor-input {
  display: flex;
  flex-direction: column;
  margin: 25px auto;
}
.contenedor-inputs .contenedor-input label {
  font-weight: bold;
  margin-bottom: 5px;
}

/* Tom select */
.ts-control {
  border: 0px;
  border-bottom: 3px solid #153448;
  border-radius: 5px;
}

/* Buscador */
.buscador {
  display: flex;
  align-items: flex-end;
}
.buscador .contenedor-input {
  display: flex;
  flex-direction: column;
  margin-right: 25px;
}
.buscador .contenedor-input label {
  font-weight: bold;
  margin-bottom: 5px;
}
.buscador .btn {
  height: 25px;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
  background-color: #fefefe;
  margin: auto;
  padding: 20px;
  padding-bottom: 180px;
  border: 1px solid #888;
  width: 80%;
  max-width: 1000px;
  margin: auto;
}

.btn-close-modal {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.btn-close-modal:hover,
.btn-close-modal:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

#modal-1 #actualizar-cuotas-modal .pagado {
  background-color: #086a0c;
  color: white;
}
#modal-1 #contenedor-nuevas-cuotas {
  margin: 25px 0px;
  align-items: center;
  display: none;
  flex-direction: column;
  align-items: flex-start;
}
#modal-1 #contenedor-nuevas-cuotas div {
  display: flex;
  align-items: center;
}
#modal-1 #contenedor-nuevas-cuotas select {
  height: 40px;
  margin-right: 20px;
}

.contenedor-inputs-modal {
  display: flex;
  margin: 25px 0px;
  align-items: center;
  justify-content: center;
}
.contenedor-inputs-modal a {
  margin: 0 10px;
  width: 200px;
}

#modal-5 {
  z-index: 200;
}

.menu-principal {
  background-color: #f3f3f3;
  margin: 25px;
  box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.14), 0 5px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
  border-radius: 5px;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 700px) {
  .menu-principal {
    flex-direction: column;
  }
}
.menu-principal ul {
  margin: 0;
  padding: 0;
  margin: 10px 15px;
}
.menu-principal ul a {
  background-color: #153448;
  color: white;
  border-radius: 5px;
  width: 200px;
  text-align: center;
  font-weight: bold;
  display: inline-block;
  text-decoration: none;
  height: 40px;
  margin: 5px;
  line-height: 40px;
  transition: transform 1s;
}
@media screen and (max-width: 700px) {
  .menu-principal ul a {
    display: inline-block;
    width: 100%;
  }
}
.menu-principal ul a:hover {
  transform: scale(1.02);
}
.menu-principal ul a li {
  height: 40px;
  list-style: none;
}
.menu-principal .btn-cerrar-sesion {
  background-color: white;
  color: #153448;
}

#pagina-socio .inactivo {
  background-color: #7F0000;
  color: white;
}

#paginador {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
#paginador .item-pagina {
  height: 40px;
  width: 40px;
  border: 1px solid #153448;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  cursor: pointer;
  margin: 0px 4px;
}
#paginador .seleccionado {
  background-color: #153448;
  color: white;
}

.login-form {
  width: 80%;
  max-width: 406px;
  display: flex;
  flex-direction: column;
  margin: auto;
  height: 100vh;
  justify-content: center;
}
.login-form .contenedor-formulario {
  background-color: #f3f3f3;
  padding: 15px;
  border-radius: 5px;
  box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.14), 0 5px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
}
.login-form .contenedor-input {
  display: flex;
  flex-direction: column;
  margin: 10px 0px;
}
.login-form .contenedor-input label {
  font-weight: bold;
  margin-bottom: 4px;
}
.login-form .contenedor-input button {
  background-color: #153448;
  color: white;
  border: 0px;
  border-radius: 5px;
  outline: none;
  height: 32px;
  font-weight: bold;
  cursor: pointer;
}

#pagina-usuario .contenedor-btn {
  display: flex;
  justify-content: center;
}

/*# sourceMappingURL=style.css.map */
