* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.contenedor-header-favorite {
  display: flex;
  width: 100%;
  /* display: none; */

}

.header-logo-fav {
  width: 400px;
  height: 100vh;
}

.header-logo-fav img {
  width: 60px;
  height: 60px;
  border-radius: 99px;
}


.contenedor-nav-fav {
  width: 100%;
  background-color: rgba(198, 190, 238, 0.358);

}

.ul-nav-fav {
  display: flex;
  /* justify-content: space-around; */
  align-items: center;
  background-color: white;
  height: 60px;
}

.ul-nav-fav li {
  list-style-type: none;
}

a {
  text-decoration: none;
  color: grey;
  margin: 0 15px;
}

body {
  background-color: rgba(198, 190, 238, 0.358);
}

.btn-fav {
  padding: 20px;
  width: 100%;
  text-align: left;
  border: none;
  background-color: rgba(198, 190, 238, 0.902);
  color: rgb(255, 0, 0);
  cursor: pointer;
}

.titulo-principal {
  margin: 10px;

}

.contenedor-favoritos-guardados {
  margin: 20px 0;
  position: relative;
}

.favoritos-table {
  transition: background ease 0.4s;
  background-color: white;
  margin: 20px auto;
  padding: 6px;
}

.favoritos-table table {
  /* padding: 0 10px; */
  width: 100%;
  max-width: 1400px;
  text-align: left;
  height: 110px;
  border-collapse: collapse;
  border-radius: 10px;


}

.favoritos-table:hover {
  background-color: #5a9ac5;
}

.favoritos-table:hover>table {

  color: white;
}

th {
  color: #0a2a42;
  font-weight: bold;
}

td,
tr {
  max-width: 200px;
}

table img {
  width: 150px;
  height: 100px;
}

i {
  color: #d7a14b;
}

.estatus {
  background-color: #0773bb;
  color: white;
  padding: 5px;
}

.pricing {
  color: #0a2a42;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .contenedor-header-favorite {
    flex-direction: column;
  }

  .header-logo-fav {
    width: 100%;
    height: auto;
  }

  .ul-nav-fav {
    /* flex-direction: column; */
    align-items: flex-start;
  }

  .ul-nav-fav li {
    margin: 5px 0;
  }

  .favoritos-table table {
    font-size: 14px;
  }

  table img {
    width: 70px;
    height: 70px;
  }

  table * {
    font-size: 12px;
    margin: 5px 0;
  }
}

.fav-space {
  margin: 120px auto;
}

.remove-fav-holder {
  /* position: absolute; */
  top: 0;
  right: 10px;
  text-align: right;
}

.btn-remove-fav {
  background-color: red;
  border: none;
  color: whitesmoke;
  padding: 4px;
  cursor: pointer;
  border-radius: 5px;

  font-size: 11px;
}

.btn-remove-fav i {
  color: white;
}


.no-saved-prop {
  text-align: center;
  margin: 50px auto;
  padding: 20px;
  background-color: white;
  width: 90%;
  max-width: 600px;
  border-radius: 10px;
}

.btn-add-more-fav {
  padding: 10px;
  margin: 10px auto;
}