/* Custom Utilities  */

.bg-quiz-img::after {
  background: url("/images/heart-patten.png") repeat center center;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: 00.03;
  height: 1px;
}

.top {
  top: 40%;
}

.checkbox {
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* On mouse-over, add a grey background color */
.checkbox:hover input~.checkmark {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.checkbox input:checked~.checkmark {
  background-color: #2196F3;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.checkbox input:checked~.checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.checkbox .checkmark:after {
  right: 9px;
  top: 3px;
  margin: 10px;
  bottom: 0;
  width: 10px;
  height: 15px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

/* For Radio */

.radio {
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default radio button */
.radio input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom radio button */

/* On mouse-over, add a grey background color */
.radio:hover input~.checkmark {
  background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.radio input:checked~.checkmark {
  background-color: #2196F3;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the indicator (dot/circle) when checked */
.radio input:checked~.checkmark:after {
  display: block;
}

/* Style the indicator (dot/circle) */
.radio .checkmark:after {
  background: white url('/images/tick.png') no-repeat center center;
  content: "";
  width: 30px;
  height: 30px;
  position: absolute;
  right: 0px;
  padding: 10px;
  top: 0;
}

.h-500 {
  height: 500px;
}


.error-text {
  width: 70%;
  top: 60px;
  left: 15%;
}

.destination .VueCarousel .VueCarousel-navigation-prev,
.destination .VueCarousel .VueCarousel-navigation-next {
  text-indent: -99999px;
  background: url('/images/preview.png') no-repeat center center;
  width: 32px;
  height: 32px;
  top: 38%;
}

.destination .VueCarousel .VueCarousel-navigation-next {
  background: url('/images/next.png') no-repeat center center;
}

.custom-radio input {
  top: 5px;
}


/* banner */
.banner-text {
  background: #0000009e;
}

.banner-text span {
  font-size: 40px;
}

/* Feature slider  */
.feature-slider .VueCarousel-navigation .VueCarousel-navigation-prev,
.feature-slider .VueCarousel-navigation .VueCarousel-navigation-next {
  text-indent: -99999px;
  background: url('/images/preview.png') no-repeat center center;
  width: 32px;
  height: 32px;
  top: 38%;
}

.feature-slider .VueCarousel-navigation .VueCarousel-navigation-next {
  background: url('/images/next.png') no-repeat center center;
}

@media screen and (max-width: 992px) {
  .feature-slider .VueCarousel-navigation .VueCarousel-navigation-prev,
  .feature-slider .VueCarousel-navigation .VueCarousel-navigation-next {
    display: none;
  }
  .destination .VueCarousel .VueCarousel-navigation-prev,
  .destination .VueCarousel .VueCarousel-navigation-next {
    display: none;
  }
}


@media screen and (max-width: 768px) {
  .place-name {
    font-size: 13px;
  }
  .destination .VueCarousel .VueCarousel-inner .VueCarousel-slide {
    width: 100%;
  }

  .banner-text span {
    font-size: 24px;
  }
  .custom-modal .v--modal-box{
    width: 100% !important;
  } 

}