body {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  background: url('../img/image2.png') no-repeat center center fixed;
  background-size: cover;
}

#datatable-container {
  display: none;
}

.deuda-row {
  background: #ff7474;
  border-radius: 10px;
}

/* From Uiverse.io by yashlikescode */
.card {
  position: relative;
  width: 400px;
  height: 200px;
  background: linear-gradient(-45deg, #74d474 0%, #77d8e9 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.card img {
  width: 80px;
  fill: #333;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.card:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.card__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  padding: 20px;
  box-sizing: border-box;
  background-color: #fff;
  opacity: 0;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.card:hover .card__content {
  transform: translate(-50%, -50%) rotate(0deg);
  opacity: 1;
}

.card__title {
  text-align: center;
  margin: 0;
  font-size: 12px;
  color: #333;
  font-weight: 700;
}

.card__description {
  margin: 10px 0 0;
  font-size: 14px;
  color: #777;
  line-height: 1.4;
}

.card:hover img {
  scale: 0;
}

/*Css del modal de la junda administrativa*/

/*boton en el inferior derecho */
.fixed-bottom-right {
  position: fixed;
  bottom: -20px;
  right: 7px;
  z-index: 100;
}

/* Posicionar el modal al lado izquierdo del icono */
.custom-modal-position .modal-dialog {
  position: fixed;
  left: 560px;
  bottom: 10px;
  max-width: 590px;
  width: 200%;
  max-height: 240px;
}

/*cambiar el color del cuadro del titulo*/
.modal-header {
  background-color: #359f37;
}

/*quitamos el padding dentro del modal*/
.modal-body ul {
  padding-left: 0;
  padding-top: 0;
}

/* Cambiar el tamaño de la letra en el título del modal */
.modal-header h5 {
  font-size: 1rem;
  font-weight: bold;
  color: #ffffff;
  text-align: center;
  margin-bottom: -10px;
  margin-top: -10px;
}

/*cambiar el tamano de la letra de los textos*/
.modal-body ul li {
  font-size: 0.9rem;
  margin-bottom: 10px;
  border-bottom: 2px solid #359f37;
  padding: 0px 0px;
}