.search-make-section {
  display: flex !important;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 10px;
  justify-content: center;
  margin-top: 20px !important;
}
.search-make-section .name-container {
  justify-self: center;
  margin: 0 auto 0 auto;
  font-size: 18px;
}
.search-make-section .make-container {
  min-width: fit-content;
  min-height: fit-content;
  display: flex;
  flex-direction: column;
  gap: 5px 0px;
  flex: 1 1 auto;
  align-items: center;
  justify-content: center;
  max-width: 300px;
  margin-bottom: 20px;
  min-width: 170px;
}
.search-make-section .card-container {
  width: 100%;
  height: 100%;
  background-color: #e1e4e8;
  border-radius: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-sizing: content-box;
  transition: all 0.1s ease-in-out;
}
.search-make-section .card-container.disabled {
  opacity: 0.7;
}
.search-make-section .card-container.disabled:hover, .search-make-section .card-container.disabled .btn:hover {
  filter: brightness(100%);
}
.search-make-section .card-container:hover {
  filter: brightness(95%);
}
.search-make-section .card-container.all-section {
  background: #011f46;
}
.search-make-section .card-container.all-section .logo-container {
  padding: 0;
  padding-top: 16px;
}
.search-make-section .card-container .logo-container {
  justify-self: center;
  width: 130px;
  height: 130px;
  padding: 30px;
  align-items: center;
  display: flex;
  padding-bottom: 16px;
}
.search-make-section .card-container .button-container {
  margin: 0 auto 12px auto;
}
.search-make-section .card-container .button-container .btn:hover {
  filter: brightness(100%);
}
@media (max-width: 600px) {
  .search-make-section .make-container {
    min-width: 110px;
  }
  .search-make-section .name-container {
    font-size: 17px;
  }
  .search-make-section .card-container {
    gap: 0;
  }
  .search-make-section .card-container .logo-container {
    padding: 26px;
    padding-bottom: 8px;
  }
}
