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

.carLogsSection {
  padding-top: 2.5rem;
  padding-bottom: 2rem;
}

.carLogsHeader {
  margin-bottom: 2rem;
  margin-left: 3%;
  position: relative;
  z-index: -1;
  font-family: "Lato", sans-serif;
}
.carLogsHeader::before {
  content: "";
  display: block;
  background-color: #fe7f22;
  position: absolute;
  height: 100%;
  left: -20px;
  width: 0.8rem;
}
.carLogsHeader .span1 {
  color: #202124;
  display: block;
  font-size: 1.9rem;
}
.carLogsHeader .span2 {
  color: grey;
  display: block;
  font-size: 1rem;
  padding-left: 2.5rem;
}

.carLogsContainer {
  background: linear-gradient(189deg, rgb(128, 105, 88) 0%, rgb(154, 93, 49) 39%, rgb(254, 127, 34) 100%);
  width: 75%;
  max-width: 63rem;
  margin: 0 auto;
  margin-top: 2rem;
  padding: 1.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 1rem;
  border-radius: 10px 10px 0 0;
}

.carLog {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 2px, rgba(0, 0, 0, 0.07) 0px 2px 4px, rgba(0, 0, 0, 0.07) 0px 4px 8px, rgba(0, 0, 0, 0.07) 0px 8px 16px, rgba(0, 0, 0, 0.07) 0px 16px 32px, rgba(0, 0, 0, 0.07) 0px 32px 64px;
  padding: 0 0.3rem;
  padding-top: 0.5rem;
  padding-bottom: 0.7rem;
  max-width: 15rem;
  background-color: #f3f4f6;
  border-radius: 0.5rem;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: ease-in 0.1s all;
}
.carLog:hover {
  transform: translateY(-0.3rem);
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}
.carLogModel {
  color: black;
  font-size: 1.1rem;
  font-weight: 500;
  padding-left: 0.5rem;
  max-width: 80%;
}
.carLogMake {
  font-size: 0.9rem;
  color: grey;
  padding-left: 0.5rem;
}
.carLog img {
  width: 95%;
  margin: 0 auto;
  margin-top: 0.5rem;
  border-radius: 0.5rem;
  aspect-ratio: 5/3.5;
  -o-object-fit: fill;
     object-fit: fill;
  display: block;
}
.carLogData {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 0.6rem;
}
.carLogData span {
  position: relative;
}
.carLog .carLogBtnsContainer {
  display: flex !important;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin: 0 auto !important;
  width: 100%;
}
.carLog .carLogBtnsContainer .carLogBtn {
  width: 90%;
  background-color: white;
  background-image: none;
  margin: 0 0.5rem;
  color: rgb(73, 71, 71);
  transition: ease-in 0.1s all;
  outline: none;
}
.carLog .carLogBtnsContainer .carLogBtn:hover {
  transform: translateY(-0.3rem);
}
.carLog .carLogBtnsContainer .carLogCartBtn {
  width: 4rem;
  padding: 0 0.7rem;
  color: black;
  background-color: white !important;
  background-image: none;
  height: 100%;
  transition: ease-in 0.1s all;
  outline: none;
}
.carLog .carLogBtnsContainer .carLogCartBtn:hover {
  transform: translateY(-0.3rem);
}
.carLog .carLogLikeBtn {
  position: absolute;
  top: 0.7rem;
  right: 1rem;
  font-size: 1.2rem;
  color: red;
  cursor: pointer;
  width: -moz-fit-content;
  width: fit-content;
  border: none;
  background-color: transparent;
}

.pagination {
  background-color: #fe7f22;
  width: 75%;
  max-width: 63rem;
  margin: 0 auto;
  padding: 10px;
  padding-bottom: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0 0 10px 10px;
}

#pagenationPrev,
#pagenationNext {
  background-color: white;
  padding: 0.5rem 3rem;
  border-radius: 10px;
  border: none;
  font-weight: bold;
  margin: 0 1rem;
  cursor: pointer;
}

#pagenationNumbers {
  display: flex;
}
#pagenationNumbers li {
  text-decoration: none;
  list-style: none;
  padding-inline: 0.5rem;
}
#pagenationNumbers li a {
  color: white;
}
#pagenationNumbers button {
  background-color: white;
  padding: 5px 10px;
  border: none;
  border-radius: 10px;
  margin-inline: 5px;
  cursor: pointer;
  align-self: flex-end;
}

.current-page {
  background-color: #fe7f22;
}

.filtersBtn {
  background-color: #fe7f22;
  text-align: center;
  width: 15rem;
  margin: 0 auto;
  padding: 0.5rem;
  border-radius: 50px;
  cursor: pointer;
  color: white;
  font-size: 1.1rem;
  transition: transform ease-in 0.2s;
}
.filtersBtn i {
  font-weight: bold;
  padding-left: 0.2rem;
}
.filtersBtn:hover {
  transform: translate(0, -7px);
}
.filtersBtn:hover i {
  color: rgb(223, 194, 194);
}

.active {
  background-color: black;
}

.heartBtnClicked .fa-heart {
  background-color: red;
}

@media screen and (max-width: 1257px) {
  .carLogsContainer {
    width: 90%;
    grid-template-columns: repeat(3, 1fr);
  }
  .pagination {
    width: 90%;
  }
  .carLog {
    width: 100%;
    max-width: none;
  }
}
@media screen and (max-width: 768px) {
  .carLogsContainer {
    width: 90%;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 549px) {
  .carLogsContainer {
    width: 95%;
    grid-template-columns: repeat(1, 1fr);
  }
  .pagination {
    flex-direction: column;
    width: 95%;
  }
  .pagination #pagenationNumbers,
  .pagination #pagenationPrev,
  .pagination #pagenationNext {
    margin: 0.5rem 0;
    width: 100%;
    justify-content: center;
  }
  .carLogsHeader {
    margin-bottom: 2rem;
    margin-left: 0 !important;
    position: relative;
    left: -1rem;
    z-index: -1;
    font-family: "Lato", sans-serif;
    transform: scale(0.8);
    width: 100%;
  }
  .carLogsHeader::before {
    content: "";
    display: block;
    background-color: #fe7f22;
    position: absolute;
    height: 100%;
    width: 0.8rem;
  }
  .carLogsHeader .span1 {
    color: #202124;
    display: block;
    word-wrap: break-word;
    font-size: 1.9rem;
  }
  .carLogsHeader .span2 {
    color: grey;
    display: block;
    font-size: 1rem;
    padding-left: 0rem;
  }
}/*# sourceMappingURL=carLogSection.css.map */