.model-results-list {
  list-style-type: none; /* Removes bullets from the list */
  padding: 0; /* Removes default padding */
  margin: 0; /* Removes default margin */
  border: 1px solid #ccc; /* Adds border around the list */
  max-height: 200px; /* Sets a max height for scrolling */
  overflow-y: auto; /* Adds scroll for long lists */
}
.model-results-list li {
  padding: 0.5rem; /* Adds padding for each item */
  cursor: pointer; /* Changes cursor to pointer on hover */
  background-color: #fff; /* White background for items */
  border-bottom: 1px solid #ddd; /* Adds separation between items */
}
.model-results-list li:hover {
  background-color: #f0f0f0; /* Changes background color on hover */
}
.model-results-list li .more-results {
  text-align: center; /* Centers the text */
  font-weight: bold; /* Makes it bold */
  color: #007bff; /* Changes text color */
  cursor: pointer; /* Adds pointer cursor */
}

.repair-prices {
  text-align: center;
}
.repair-prices .repair-options {
  display: flex;
  justify-content: space-around;
  margin-top: 20px;
}
.repair-prices .repair-item {
  text-align: center;
  border: 1px solid #ccc;
  padding: 10px;
  width: 150px;
}

.question-section, .courier-section {
  margin-top: 30px;
  text-align: center;
}
.question-section div, .courier-section div {
  margin-top: 20px;
}
.question-section div input, .question-section div textarea, .question-section div button, .courier-section div input, .courier-section div textarea, .courier-section div button {
  display: block;
  width: 100%;
  max-width: 400px;
  margin: 10px auto;
}

.search-and-device-selection {
  text-align: center;
  margin: 20px 0;
}
.search-and-device-selection .search-container {
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.search-and-device-selection .search-container h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.search-and-device-selection .search-container div {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 30rem;
  position: relative;
  margin-bottom: 0;
}
.search-and-device-selection .search-container div input {
  width: 100%;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 0.5rem;
  margin-right: 0;
  margin-bottom: 0;
  box-sizing: border-box;
}
.search-and-device-selection .search-container div input:focus {
  outline: none;
  border-color: #3498db;
}
.search-and-device-selection .search-container div input .search-icon {
  position: absolute;
  left: 1rem;
  color: #888;
  font-size: 1.25rem;
}
.search-and-device-selection .search-container div .clear-button {
  position: absolute;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.25rem;
  color: #888;
  cursor: pointer;
  width: 1rem;
}
.search-and-device-selection .search-container div .clear-button:hover {
  color: #e74c3c;
}
.search-and-device-selection .search-container div .clear-button:focus {
  box-shadow: none;
}
.search-and-device-selection .search-container ul.model-results-list {
  list-style-type: none; /* Removes bullets */
  padding: 0;
  margin: 0;
  border: 0;
  width: 100%;
  max-width: 30rem;
  overflow-y: auto; /* Adds scroll for long lists */
  position: relative; /* Keep position relative so it appears below the form */
  z-index: 10; /* Above other elements */
  margin-top: 0.5rem; /* Space between input and list */
  padding-left: 1.5rem; /* left padding for better alignment */
  max-height: 15rem; /* Adjust the height as necessary */
}
.search-and-device-selection .search-container ul.model-results-list li {
  display: flex; /* Align image and text horizontally */
  align-items: center; /* Vertically align items */
  padding: 0.75rem 1rem; /* Adjust padding */
  cursor: pointer;
  background-color: #fff;
  border-bottom: 1px solid #ddd;
  margin: 0;
  list-style: none;
}
.search-and-device-selection .search-container ul.model-results-list li:hover {
  background-color: #f0f0f0;
}
.search-and-device-selection .search-container ul.model-results-list li.more-results {
  text-align: center;
  font-weight: bold;
  cursor: unset;
  pointer-events: none;
}
.search-and-device-selection .search-container ul.model-results-list li img {
  width: 2rem; /* Adjust the size of the image */
  height: auto;
  margin-right: 1rem; /* Space between image and text */
}

.device-selection h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}
.device-selection p {
  font-size: 1rem;
  margin-bottom: 20px;
  color: #666;
}
.device-selection .brands {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.device-selection .brands .brand-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #333;
  width: 8rem;
  overflow: hidden;
  margin-bottom: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.device-selection .brands .brand-item img {
  width: 6rem;
  height: 6rem;
  object-fit: contain;
  margin-bottom: 0.5rem;
  transition: transform 0.3s ease;
}
.device-selection .brands .brand-item span {
  font-size: 1rem;
  margin-top: 5px;
}
.device-selection .brands .brand-item:hover {
  color: #3498db;
  transform: scale(1.1);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.device-selection .brands .brand-item.selected {
  color: #3498db;
}
.device-selection .brands .brand-item.dimmed {
  opacity: 0.5;
}
.device-selection .brands a:focus {
  background-color: Unset;
}

.models-section {
  text-align: center;
  margin-top: 2rem;
}
.models-section.active {
  display: block;
}
.models-section .models-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1rem;
}
.models-section .models-list .model-series {
  width: 100%;
  font-size: 1.5rem;
  font-weight: bold;
  margin-top: 2rem;
  border-bottom: 2px solid #ddd;
  padding-bottom: 0.5rem;
}
.models-section .models-list .model-item {
  text-align: center;
  width: 10rem;
  padding: 1rem;
  border: 1px solid #ddd;
  border-radius: 0.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}
.models-section .models-list .model-item:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  background-color: #f7f7f7;
}
.models-section .models-list .model-item img {
  object-fit: contain;
  margin-bottom: 0.5rem;
  width: 6rem;
  height: 6rem;
  object-fit: contain;
}
.models-section .models-list .model-item span {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: #333;
}

.contact-info {
  cursor: pointer;
}

section p {
  text-align: justify;
}

/*# sourceMappingURL=fix_device.css.map */
