:root{
    --teal:#2ec1ac;
    --teal_hover:#279e8c;
}
* {
    font-family: "Poppins", sans-serif;
}

.h-font {
    font-family: "Merienda", cursive;
}

input[type=number] {
    -moz-appearance: textfield;
    appearance: textfield;
}

.custom-bg {
    background-color: var(--teal);
    border:1px solid var(--teal);
}
.card {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  
  .card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  
  .room_img {
    height: 220px;
    object-fit: cover;
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
  }
  
.custom-bg:hover {
    background-color: var(--teal_hover);
    border-color: var(--teal_hover);
}

.h-line.bg-dark {
	height: 1.7px;
	width: 150px;
	margin: auto;
}

.i_review {
	width: 4rem;
	height: 4rem;
	border-radius: 50%;
}