h1,
h2,
h3,
h4 {
  color: black;
}

.supplies-nav .breadcrumb {
  background: #4ecdc424;
}

.supplies-nav .breadcrumb-item+.breadcrumb-item::before {
  content: "|";
}

.supply-container .filters {
  border-right: none;
}

.supply-container .categories-filter-container {
  max-height: 30vh;
  overflow-y: auto;
}

.supply-container .categories-filter-container input[type="checkbox"] {
  width: .9rem;
  height: .9rem;
  accent-color: #ff6b6b;
  outline: none;
}

.categories-filter-collapse-btn {
  border: 1px solid #dee2e6;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.categories-filter-collapse-btn span {
  color: #4f6688;
  font-size: medium;
}

.ellipsis-4 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

/* suppply detail */
.save-item{
  text-align: end;
}

.save-item button {
  border: unset!important;
  background: unset !important;
  outline: unset!important;
}

#btn-read-more:hover,
#btn-read-more:focus {
  text-decoration: none;
  color: #ff6b6b;
  font-weight: bolder;
}

.supply-image {
  width: 25px;
  height: 25px;
}

.carousel-control-next-icon,
.carousel-control-prev-icon {
    background-position-x: 37%;
    background-position-y: center;
    background-size: 80% 100%;
    background-repeat: no-repeat;
}

.supply-details-container .form-group {
  width: 100%;
}

.supply-details-container .form-group button {
  padding: .2rem!important;
}

/* supply form */
#drop-area.pointer {
  cursor: pointer;
}

input,
select,
textarea {
    outline: none;
    border-radius: unset !important;
}

input:focus,
select:focus,
textarea:focus {
    outline: none!important;
    box-shadow: unset!important;
    border-color: #ced4da!important;
    border-bottom: 2px solid #ff6b6b!important;
}

/* Reviews */
.reviews-container .card {
  border: 2px solid #f9f8f8 !important;
  box-shadow: 5px 5px 8px #dbdbdb9c;
}

.reviews-list {
  max-height: 400px;
  overflow-y: auto;
}

/* Loader */
.overlay-loader {
  position: fixed;
  z-index: 1050; /* Above most Bootstrap elements */
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5); /* semi-transparent black */
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
}

.overlay-loader .spinner-border {
  width: 4rem;
  height: 4rem;
}

/* Media Queries */
/* medium screen and up */
@media (min-width: 768px) {
  .supply-container .filters {
    border-right: 2px solid #e1e1e1;
   }
   .supply-container .categories-filter-container {
      max-height: 50vh;
    }
    .supply-image {
      width: 50px;
      height: 50px;
    }
    .supply-details-container .form-group {
      width: 75%;
    }
}

/* large screen and up */
@media (min-width: 992px) {
  h1 {
    font-size: large;
  }
}