/* The Modal (background) */
.modal {
  display: none;
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  /* Full height */
  overflow: auto;
  /* Enable scroll if needed */
  background-color: rgb(0, 0, 0);
  /* Fallback color */
  background-color: rgba(0, 0, 0, 0.4);
  /* Black w/ opacity */
  -webkit-animation-name: fadeIn;
  /* Fade in the background */
  -webkit-animation-duration: 0.4s;
  animation-name: fadeIn;
  animation-duration: 0.4s
}

/* Modal Content */
.modal-content {
  height: auto;
  position: fixed;
  bottom: 0;
  background: linear-gradient(to right, rgb(254, 240, 138), rgb(234, 179, 8));
  ;
  width: 100%;
  -webkit-animation-name: slideIn;
  -webkit-animation-duration: 0.4s;
  animation-name: slideIn;
  animation-duration: 0.4s;


}

.ratakanan {
  text-align: end;
  align-self: flex-end;

}

/* The Close Button */
.close {
  color: white;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

.modal-header {
  padding: 25px;
  background: linear-gradient(to right, rgb(254, 240, 138), rgb(234, 179, 8));
  color: white;
}

.modal-body {
  padding-left: 25px;
  padding-right: 25px;
  padding-bottom: 20px;
  color: black;
}

.modal-right {
  text-align: end;
}

.modal-footer {
  padding: 2px 16px;
  background-color: white;
  color: white;
}

/* Add Animation */
@-webkit-keyframes slideIn {
  from {
    bottom: -300px;
    opacity: 0
  }

  to {
    bottom: 0;
    opacity: 1
  }
}

@keyframes slideIn {
  from {
    bottom: -300px;
    opacity: 0
  }

  to {
    bottom: 0;
    opacity: 1
  }
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

@keyframes fadeIn {
  from {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

.itemslider {
  opacity: 0.4;
  transition: .4s ease all;
  margin: 0 0px;
  transform: scale(.8);
}

.active .itemslider {
  opacity: 1;
  transform: scale(1);
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {

  background: #0cc2aa;
}

.owl-prev,
.owl-next {
  top: 25%;
  position: absolute;
  height: 100px;
  width: 30px;
  color: inherit;
  background: none;
  border: none;
  z-index: 100;

}

.owl-nav .owl-prev {
  left: 25px;
}

.owl-nav .owl-next {
  right: 25px;
}