#wis2-open-booking
{
    font-family: 'Inter';
    border-radius: 5px;
    /* background: #6ADBD9 !important; */
    background:#334154 !important;
    color: #fff !important;
    border:none!important;
    padding: 5px!important;
    padding-left: 10px!important;
    padding-right: 10px!important;
    font-size: 16px!important;
    text-transform: capitalize!important; 
    /* color:#1B4259!important; */
}
  /* General Styling for the Panel */
.be-panel 
{
font-family: 'Inter', sans-serif;
animation: fadeInSlideUp 1.5s ease-in-out forwards;
}
.wis2-panel.wis2-panel--horizontal {
   background-color: transparent!important;
}

/* Label Styling */
.wis2-label
{
font-size: 0.9rem;
font-weight: 400;
color: #333;
margin-bottom: 5px;
display: block;
}

/* Input Field Styling */
.wis2-input 
{
display: flex;
align-items: center;
padding: 10px 15px;
font-size: 1rem;
font-weight: 500;
color: #333;
border-radius: 5px;
transition: all 0.3s ease;
cursor: pointer;
position: relative;
}
.wis2-input:focus {
outline: none;
border-color: #1b4259;
box-shadow: 0 0 5px rgba(27, 66, 89, 0.5);
}
#wis2-chain{
  background-color: white!important;
  border:solid 1px #ccc!important;
}
.wis2-title {
display:none!important;

}
/* Define the animation */
@keyframes fadeInSlideUp {
0% {
opacity: 0;
transform: translateY(20px); 
}
100% {
opacity: 1;
transform: translateY(0); 
}
}

