/* FAVORITOS PAGE */

main.favoritos {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
main.favoritos .topContent {
  padding: 50px 0 0px 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-height: 100vh;
  overflow-y: scroll;
}
main.favoritos header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 30px;
}
main.favoritos header h1 {
  font-family: "Poppins-Black";
  color: #393939;
  font-size: 36px;
}

.favoritos .contentFavoritos {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-bottom: 120px;
}
.favoritos .contentFavoritos .filterCategory {
  height: fit-content;
  padding: 0 0 0 30px;
}
.favoritos .contentFavoritos .filterCategory a {
  padding: 10px 20px;
  border-radius: 20px;
  background-color: #f2f6f7;
  font-size: 15px;
  white-space: nowrap;
  width: fit-content !important;
  min-width: unset;
  margin-right: 20px;
}
.glider-slide {
  min-width: unset !important;
}
.favoritos .contentFavoritos .filterCategory .splide__slide:last-child {
  padding-right: 30px;
}
.favoritos .contentFavoritos .items {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 0 30px;
}
.favoritos .contentFavoritos .items .bookInfo {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  align-items: flex-start;
  transition: 1s;
}
.favoritos .contentFavoritos .items .bookInfo .bookInfo-wrapper {
  display: flex;
  align-items: start;
  gap: 20px;
  width: 100%;
}
.favoritos .contentFavoritos .EmptyFav {
  text-align: center;
}

.favoritos .contentFavoritos .items .bookInfo .bookInfo-wrapper .info {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-top: 10px;
}
.favoritos .contentFavoritos .items .bookInfo .bookInfo-wrapper .info h2{
  color: #393939;
  font-size: 14px;
  font-family: "Poppins-Bold";
  line-height: 18px;
}
.favoritos .contentFavoritos .items .bookInfo .bookInfo-wrapper .info h3{
  color: #717171;
  font-size: 12px;
  line-height: 16px;
  font-family: "Poppins-Medium";
}
.favoritos .contentFavoritos .items .bookInfo:hover{
  transform: scale(1.05);
}
.favoritos .contentFavoritos .items .bookInfo span h4{
  color: #717171;
  font-size: 10px;
  line-height: 16px;
  font-family: "Poppins-Regular";
}
.favoritos .contentFavoritos .items .bookInfo .bookInfo-wrapper button {
  padding-top: 10px;
}
.favoritos .contentFavoritos .items .bookInfo .info input[type="range"] {
  -webkit-appearance: none;
  height: 7px;
  background: #f2f6f7;
  border-radius: 5px;
  background-image: linear-gradient(#393939, #393939);
  background-size: 50% 100%;
  background-repeat: no-repeat;
}
.favoritos
  .contentFavoritos
  .items
  .bookInfo
  .info
  input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 5px;
  width: 5px;
  border-radius: 50%;
  background: #f2f6f7;
  background-image: linear-gradient(#393939, #393939);
  cursor: ew-resize;
  box-shadow: 0 0 2px 0 #555;
  transition: background 0.3s ease-in-out;
}
.favoritos .contentFavoritos .items .bookInfo .bookCape {
  width: 130px;
  border-radius: 10px;
  box-shadow: 0px 0px 70px -4px rgb(114 114 114 / 50%);
}
.favoritos .contentFavoritos .items .bookInfo button img {
  width: 15px;
}
.homeFooter {
  opacity: 0.6;
  transform: 0.6s;
}
.homeFooter:hover {
  opacity: 1;
}
.favoritosFooter {
  opacity: 1;
  transition: 0.6s;
}
.favoritosFooter:hover {
  opacity: 1;
}
.buscaFooter {
  opacity: 0.6;
  transition: 0.6s;
}
.buscaFooter:hover {
  opacity: 1;
}
footer.favoritos {
  max-width: 700px;
  width: 100%;
  padding: 30px;
  background: rgb(82, 166, 210);
  background: linear-gradient(
    180deg,
    rgba(82, 166, 210, 0) 0%,
    rgba(255, 255, 255, 1) 100%
  );
  position: fixed;
  bottom: 0px;
}
footer.favoritos .menu {
  background-color: #3757a0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 20px 40px;
  border-radius: 10px;
}
@media (max-width: 410px) {
  .favoritos .contentFavoritos .items .bookInfo .bookCape {
    max-width: 130px;
    width: 51%;
  }
  .favoritos .contentFavoritos .items .bookInfo .bookInfo-wrapper {
    gap: 5px;
  }
}
