* {
  box-sizing: border-box;
}

.merchMain {
  display: flex;
  flex-direction: column;
  margin-top: 20px;
}

.container {
  margin: 0px;
}
.sliderTop {
  height: 80vh;

  display: flex;
  flex-direction: column;
  max-width: 100%;
  position: relative;
}

.lower {
  display: flex;
  height: 60vh;
}
.lowerLeft {
  width: 50%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  margin: 0;
}
.accessories {
  align-self: center;
  justify-self: center;
  width: 100%;
}

.lowerRight {
  width: 50%;
  margin: 0;
}
.lowerRightTop {
  height: 50%;
  margin: 0;
}
.lowerRightBot {
  height: 50%;
  margin: 0;
}

h1 {
  font-size: 24px;
  font-weight: 400;
  margin-left: 42px;
}
h2 {
  font-weight: 400;
  font-size: 22px;
}
.merchMain p {
  font-weight: 400;
  font-size: 14px;
}
.descriptionButtons {
  margin-top: 25px;
  margin-right: 10px;
}
/* Buttons */
.subscribeBtn {
  font-family: Dosis, sans-serif;
  font-size: 18px;
  border: 0;
  width: 90px;
  height: 40px;
  border-radius: 10px;
  margin: 10px;
  box-shadow: 5px 10px #000;
}

.buyBtn {
  font-family: Dosis, sans-serif;
  font-size: 24px;
  border: 0;
  align-self: center;
  justify-self: center;
  width: 103px;
  height: 43px;
  border-radius: 15px;
  box-shadow: 1px 1px 5px;
}
.carousel {
  position: absolute;
  height: 90%;
  bottom: 0;
  display: flex;
  overflow-x: hidden;
  scroll-snap-type: x mandatory;
}
.textCarousel {
  position: absolute;
  padding: 0px;
  width: 35%;
  margin: 0px;
}
.item {
  min-width: 100%;
  scroll-snap-align: center;
  position: relative;
}

/* Navigation carousel */
.sliderTop .btn {
  position: absolute;
  top: 50%;
  margin-top: 20px;
  height: 30px;
  width: 30px;
  border-radius: 15px;
  background-color: rgba(95, 106, 117, 0.3);
  z-index: 1;
  line-height: 30px;
  text-align: center;
  color: white;
  font-weight: bold;
}
.sliderTop .btn:hover {
  background-color: rgba(95, 106, 117, 0.5);
  cursor: pointer;
}
.sliderTop .btn.next {
  right: 15px;
}
.sliderTop .btn.prev {
  left: 15px;
}
