/* PRODUCT PAGE - ONLINE PHARMACIES */
.cta__img {
  width: 180px;
}


/* HP */
@media (min-width: 992px) {
  .logo-padding {
    padding-top: 20px;
  }
}

@media (max-width: 991px) {
  .logo-padding {
    padding-top: 10px;
  }
}

.row-center {
  display: flex;
  justify-content: center;
}

.btn--inverse {
  color: white;
}

.hero__title--inverse {
  color: white !important;
}

.media__area-bg {
  background: none !important;
}

/* CAROUSEL */
.carousel {
  display: flex;
  overflow: hidden;
  height: 100%;
  width: 100%;
  position: relative;
}

.slide {
  flex: 0 0 100%;
  transition: transform 1s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 10% 15%;
  box-sizing: border-box;
}

.slide img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  opacity: 0.8;
}

.slide__btn {
  height: auto;
}

.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: #bbb;
  font-weight: bold;
  font-size: 25px;
  transition: 0.6s ease;
  user-select: none;
}

.next {
  right: 0;
  border-radius: 10rem 0 0 10rem;
}

.prev {
  left: 0;
  border-radius: 0 10rem 10rem 0;
}

.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.5);
  color: lightgray;
}

.dots {
  text-align: center;
}

.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.4s ease;
}

.active,
.dot:hover {
  background-color: rgba(0, 0, 0, 0.5);
}