.carousel-inner-custom {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.searchbar {
  position: absolute;
  right: 15%;
  bottom: 30%;
  left: 15%;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
  text-align: center;
}

.carousel-text {
  font-size: 40px;
  font-weight: 700;
  color: #323232;
  margin-bottom: 10px;
}

.carousel-indicators {
  display: flex;
  justify-content: center;
  margin-top: 10px;
  margin-bottom: 20px;
}

.carousel-indicators input[type="radio"] {
  display: none;
}

/* Style the labels to represent the indicators */
.carousel-indicators label {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ddd;
  cursor: pointer;
  margin: 0 5px;
}

/* Highlight the checked radio button label */
.carousel-indicators input[type="radio"].active+label {
  background-color: #333;
}

/* -------modal--------------- */

.custom-modal {
  margin-top: 5rem;
  border-radius: 0px;
}

.form-control::placeholder {
  font-size: 0.95rem;
  color: #aaa;
  font-style: italic;
}

.form-control:focus {
  box-shadow: none;
}

.modal-location {
  color: #f03250;
}

.modal-location-decline {
  color: #f03250;
  font-size: 12px;
}

@media only screen and (max-width: 479px) {
  .searchbar {
    position: absolute;
    right: 15%;
    bottom: 10%;
    left: 15%;
    z-index: 10;
    padding-top: 20px;
    padding-bottom: 20px;
    color: #fff;
    text-align: center;
  }

  .carousel-text {
    font-size: 26px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
  }
}

.share {
  position: fixed;
  right: 20px;
  bottom: 20px;
    z-index: 2;
}

.share__toggle:checked~.share__button {
  transform: rotate(-180deg);
}

.share__toggle:checked~.share__icon--facebook {
  transform: translateX(-55px) rotate(0);
}

/* .share__toggle:checked~.share__icon--twitter {
  transform: translateX(-110px) rotate(0);
} */

/* .share__toggle:checked~.share__icon--instagram {
  transform: translateX(-110px) rotate(0);
} */

.share__toggle:checked~.share__icon--whatsapp {
  transform: translateX(-110px) rotate(0);
}

.share__button {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  color: white;
  background-color: #FF9B9B;
  border-radius: 50px;
  box-shadow: 0px 0px 0px 1px rgba(152, 223, 253, 1);
  cursor: pointer;
  transition: .3s ease;
}

.share__icon {
  position: absolute;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50px;
  transform: translateX(0) rotate(180deg);
  cursor: pointer;
  transition: .3s ease-in-out;
}

.share__icon--facebook {
  background-color: #3b5998;
}

/* .share__icon--twitter {
  background-color: #1da1f2;
} */

.share__icon--instagram {
  background-color: #e4405f;
}

.share__icon--whatsapp {
  background-color: #25d366;
}