body {
  font-family: "Montserrat", sans-serif;
  margin: 0;
}

h2 {
  font-weight: 600;
}

.navbarContainer {
  width: 100%;
  height: 109px;
  background-color: white;
}
.appBarContainer {
  display: flex;
  height: 100%;
  gap: 16px;
  padding-inline: 75px;
  justify-content: space-between;
  align-items: center;
  border-radius: 0px 0px 8px 8px;
  box-shadow: 0 4px 2px -2px #f5f5f5;
}
.checked {
  color: orange;
}
.slideContainer {
  display: none;
}
.slideshowContainer {
  position: relative;
}

.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: 20px;
  height: 20px;
  padding: 16px;
  margin-top: -22px;
  color: #1dbf73;
  background-color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 50%;
  border: 1px solid #f5f5f5;
  user-select: none;
  text-align: center;
}

.next {
  right: 16px;
}
.prev {
  left: 16px;
}

.finishedButton {
  opacity: 0.5;
  color: #c0c0c0;
}

.dotsContainer {
  text-align: center;
  position: absolute;
  bottom: 55px;
  left: 45%;
}

.dot {
  cursor: pointer;
  height: 10px;
  width: 10px;
  margin: 0 2px;
  background-color: #1dbf73;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active,
.dot:hover {
  background-color: #717171;
}

.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}

@media only screen and (max-width: 300px) {
  .prev,
  .next,
  .text {
    font-size: 11px;
  }
}

.navItem {
  padding: 3px;
  text-decoration: none;
  color: #c3c5c8;
}
.navListItem {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}
.dopbtn {
  display: inline-block;
}

.dropdownContent {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
  right: 75px;
  flex-direction: column;
  gap: 8px;
  width: 320px;
  height: 284px;
  padding: 8px;
  justify-content: space-around;
}

.dropdownContent a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.dropdownContent a:hover {
  background-color: #f1f1f1;
}

.dropdown:hover .dropdownContent {
  display: flex;
}

.dropdownContent > .horizontalContainer {
  padding-inline: 8px;
}

.homeNavItem {
  padding-inline: 8px;
  margin-right: 64px;
}
.card {
  background-color: white;
  padding-block: 24px;
  padding-inline: 14px;
  color: #333333;
  border-radius: 8px;
}

.flexContainer {
  display: flex;
  justify-content: center;
  align-items: center;
}

.verticalContainer {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
}

.horizontalContainer {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 16px;
}

.horizontalContainer > * {
  margin: 0;
}

.mainContainer {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 36px;
  background-color: #f5f5f5;
  padding-inline: 75px;
  padding-top: 40px;
}

.actionsContainer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.heroContainer {
  position: relative;
}

.pill {
  background-color: #e9f9f1;
  color: #1dbf73;
  border-radius: 8px;
  padding-inline: 14px;
  height: 28px;
  text-align: center;
  padding-top: 12px;
  margin-right: 14px;
  margin-top: 14px;
}
.switch {
  position: relative;
  display: inline-block;
  width: 30px;
  height: 18px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 10px;
  width: 10px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

input:checked + .slider {
  background-color: #1dbf73;
}

input:focus + .slider {
  box-shadow: 0 0 1px #1dbf73;
}

input:checked + .slider:before {
  -webkit-transform: translateX(10px);
  -ms-transform: translateX(10px);
  transform: translateX(10px);
}

.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

.counter {
  width: 30%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f6f6f6;
  height: 48px;
  border-radius: 8px;
  font-weight: 600;
}

.counterValue {
  background-color: #f6f6f6;
  height: 48px;
  width: 185px;
  border-radius: 8px;
  font-weight: 600;
}

#increment-btn,
#decrement-btn {
  cursor: pointer;
  border: none;
  height: 28px;
  width: 28px;
  border-radius: 50%;
  font-size: 20px;
  background-color: white;
  color: #1dbf73;
  margin: 20px;
}

#counter-value {
  margin-inline: 50px;
  font-size: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
}

progress {
  background-color: lightgray;
  -webkit-appearance: none;
  accent-color: orange; /* sep 2021 - mar 2022 */
  height: 8px;
  width: 311px;
  border-radius: 6px;
}
progress::-webkit-progress-bar {
  background-color: lightgray;
  border-radius: 6px;
}
progress::-webkit-progress-value {
  background-color: orange;
  border-radius: 6px;
  transition: width 0.4s ease-in;
}
progress::-moz-progress-bar {
  background-color: orange;
  border-radius: 6px;
  transition: width 0.4s ease-in;
}

.equalContainer > * {
  flex: 1;
}

.ratingsContainer {
  align-items: unset;
  border-radius: 15px;
  padding-inline: 24px;
}

.reviewsContainer {
  gap: 32px;
  border-radius: 15px;
  margin-top: 16px;
  padding-inline: 24px;
}

.starsContainer {
  gap: 2px;
  color: lightgray;
  justify-content: center;
}

.starsContainer > span {
  font-size: 20px;
}

.textareaContainer {
  width: 95%;
  background-color: #f6f6f6;
  min-height: 168px;
  border: none;
  border-radius: 8px;
  padding-inline: 20px;
  padding-block: 33px;
}

.submitButton {
  background-color: #1dbf73;
  width: 185px;
  height: 48px;
  color: white;
  border-radius: 8px;
  border: none;
}

.sidebarCard {
  position: relative;
  justify-content: flex-start;
  align-items: center;
  border-radius: 8px;
  width: unset;
  padding-top: 75px;
  gap: 8px;
}

.contactButton {
  background-color: #1dbf73;
  width: 100%;
  margin-inline: 16px;
  color: white;
  border-radius: 8px;
  border: none;
  height: 40px;
}

.recommendedSection {
  padding-block: unset;
  padding-inline: unset;
  background-color: unset;
}

.smallCardContainer {
  height: 85px;
  justify-content: space-between;
  background-color: white;
  padding: 12px;
  gap: 8px;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}

.descriptionSection {
  padding-top: 22px;
  padding-left: 15px;
  width: unset;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.itemCard {
  position: relative;
  width: 292px;
  border-radius: 8px;
}

.likeButton {
  border-radius: 50%;
  width: 42px;
  height: 42px;
  background-color: #ffffff;
  position: absolute;
  left: 10px;
  top: 16px;
}

.pinContainer {
  width: 45px;
  height: 45px;
  border-radius: 8px;
  background-color: #f5f5f5;
}

#scrollButton {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 99;
  border: none;
  outline: none;
  background-color: black;
  color: white;
  cursor: pointer;
  padding: 15px;
  border-radius: 4px;
}
.appBarContainer > #navMenu {
  display: none;
}
#navResponsive {
  display: none;
}
.showMenu {
  display: flex !important;
}
.responsiveMenu {
  background-color: white;
  color: lightgrey;
  gap: 8px;
  padding: 8px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  border: 1px solid lightgrey;
}

.purchaseButton {
  background-color: #1dbf73;
  width: 185px;
  height: 48px;
  color: white;
  border-radius: 8px;
  border: none;
  margin-left: auto;
}

.responsiveDropdownContent {
  display: flex;
  position: relative;
  box-shadow: none;
  width: 100%;
  background-color: unset;
  right: unset;
  padding-right: 8px;
}

.hide {
  display: none;
}

.activeChecked {
  color: #1dbf73;
}

@media screen and (max-width: 870px) {
  .appBarContainer {
    flex-direction: row-reverse;
    justify-content: space-between;
    padding-inline: 25px;
  }
  .appBarContainer > #navMenu {
    display: block;
  }
  .appBarContainer > *:not(a[href="#"]) {
    display: none;
  }
  .mainContainer {
    flex-direction: column;
    padding-inline: 25px;
  }
  .verticalResponsiveContainer {
    flex-direction: column;
  }
  .purchaseButton {
    margin-left: unset;
  }
  .ratingsContainer {
    padding-inline: unset;
  }
  .responsiveWidth {
    width: unset !important;
  }
}
