/* CSS Document */
#search-div{
    background: url(../img/bg/5.jpg);
    padding: 2rem 1rem;
    background-position: center center;
    background-size: cover;
}
.guest-rooms{
    padding-left: 15px;
}
.guest-rooms li{
    list-style: disc;
}
.guest-rooms li .room_no{
    color: #000000 !important;
    font-size: 1.1rem;
}
.guest-rooms li .room_guests{
    color: #000000 !important;
    font-size: 1.2rem;
}
.guest-rooms li .room_guests strong{
    color: #28a745 !important;
    font-weight: 500;
}
.guest-rooms li .room_price{
    color: #28a745 !important;
    font-size: 1.2rem;
}
.lead.text-success{
    font-weight: 500;
}
.btn-xs{
    padding: 0.3rem;
    line-height: 1.3rem;
}
/* whatsapp */
.btn-whatsapp-pulse {
background: #25d366;
color: white;
position: fixed;
bottom: 20px;
right: 20px;
font-size: 40px;
display: flex;
justify-content: center;
align-items: center;
width: 0;
height: 0;
padding: 35px;
text-decoration: none;
border-radius: 50%;
animation-name: pulse;
animation-duration: 1.5s;
animation-timing-function: ease-out;
animation-iteration-count: infinite;
z-index: 1000;
}
@keyframes pulse {
0% {
box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
}
80% {
box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
}
}
.btn-whatsapp-pulse-border {
bottom: 150px;
right: 20px;
animation-play-state: paused;
}
.btn-whatsapp-pulse-border::before {
content: "";
position: absolute;
border-radius: 50%;
padding: 25px;
border: 5px solid #25d366;
opacity: 0.75;
animation-name: pulse-border;
animation-duration: 1.5s;
animation-timing-function: ease-out;
animation-iteration-count: infinite;
}
@keyframes pulse-border {
0% {
padding: 25px;
opacity: 0.75;
}
75% {
padding: 50px;
opacity: 0;
}
100% {
opacity: 0;
}
}