/* TAG HTML */
html {
  font-size: 1rem;
  position: relative;
}
nav{
  background-color: #1abc9c;
}
main {
  text-align: center;
  padding: 1rem;
  margin-left: 10%;
  margin-right: 10%;
}
a:hover{
  font-weight: bolder;
}

img {
  aspect-ratio: attr(width) / attr(height);
}

.text-success{
  color: green;
}
.text-primary{
  color: blue;
}
.text-danger{
  color: red;
}
.text-warning{
  color: orange;
}
.text-info{
  color: turquoise;
}

/* FITUR UNIVERSAL */

.btn{
  font-size: small ;
  padding-left: 10px;
  padding-right: 10px;
  margin-bottom: 5px;
}

/* NAVBAR */
.logo{
  display: inline;
  margin-left: 20px;
  margin-top: 5px;
}

/* HOME */
.jumbotron{
  padding: 20px;
  text-align: center;
}

.peta{
  text-align: center;
}
.containerHome{
  padding-left: 2vw;
  padding-right: 2vw;
}

/* FASILITAS */

/* SPEC_KAMAR */
#specKamar{
  padding: 1rem;
}

/* SIMULASI TARIF KAMAR */
#simulasiTarif{
  padding: 1rem;
}
#buttonSubmit{
  margin-left: 1rem;
}

/* HUBUNGI KAMI */
#hubKami{
  padding: 1rem;
}
/* FOOTER */
.footer-padding {
	padding-bottom: 60px;
}

.footer {
	position: absolute;
	text-align: center;
	bottom: 0;
	width: 100%;
	height: 60px;
	background-color: #1abc9c;
}

.footer p {
	margin-top: 25px;
	font-size: 12px;
  color: #fff;
}

.chatMe{
  font-size: large;
  font-weight: bold;
  position: fixed;
  z-index: 3;
  bottom: 55px;
  right: 15px
}

.anime{
  float: right;
  width: 70px;
  height: auto;
}

.wa{
  text-decoration: none;
  color: #1abc50;
}

.menuBawah{
  position: fixed;
  bottom: 0;
  display: flex;
  justify-content: center;
  text-align: center;
  background-color: azure;
  width: 100%;
}

.menuBawah .menu{
  flex-direction: column;
  padding-left: 20px;
  text-decoration: none;
}
/*Blink Text*/
@keyframes blink {
  0% {
      opacity: 1;
  }
  50% {
      opacity: 0;
  }
  100% {
      opacity: 1;
  }
}

.blinking-text {
  text-align: center;
  margin-top: 20%;
  font-size: 24px;
  color: green;
  animation: blink 1s infinite; 
}
/* FITUR TAMBAHAN */
/*///////FILTER TABLE//////// */
.filterDiv {
  color: #000000;
  width: 100%;
  text-align: center;
  margin: 2px;
  display: none; /* Hidden by default */
}
/* The "show" class is added to the filtered elements */
.show {
  display: block;
}

/*///////////////////////////////////// */

@media only screen and (min-width: 600px)
{

  .containerHome{
    padding-left: 10vw;
  }

}

@media only screen and (min-width: 992px)
{


}

@media only screen and (min-width: 1200px)
{


}