/**
 * Theme Name:     Hello Elementor Child
 * Author:         Elementor Team
 * Template:       hello-elementor
 * Text Domain:	   hello-elementor-child
 * Description:    Hello Elementor is a lightweight and minimalist WordPress theme that was built specifically to work seamlessly with the Elementor site builder plugin. The theme is free, open-source, and designed for users who want a flexible, easy-to-use, and customizable website. The theme, which is optimized for performance, provides a solid foundation for users to build their own unique designs using the Elementor drag-and-drop site builder. Its simplicity and flexibility make it a great choice for both beginners and experienced Web Creators.
 */

button.wbtn.wbtn-booking.wbtn-primary.wbtn.wbtn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  background: #3b5bfd; /* Blue button */
  color: #fff;
  font-weight: 700;
  font-size: 18px !important;
  text-decoration: none;
  border-radius: 50px; /* Rounded shape */
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  position: relative;
}

/* Arrow after text */
button.wbtn.wbtn-booking.wbtn-primary.wbtn.wbtn-primary::after {
 content: "→";
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;        /* White fill */
  color: #3b5bfd;             /* Black arrow */
      font-size: 28px;
    font-weight: bolder;
    font-family: monospace;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  transition: all 0.3s ease;
  margin-left: 10px;
}

/* Hover effects */
button.wbtn.wbtn-booking.wbtn-primary.wbtn.wbtn-primary:hover {
  background: #2f4afc;
  transform: translateY(-2px);
}
button.wbtn.wbtn-booking.wbtn-primary.wbtn.wbtn-primary:hover::after {
  transform: translateX(5px);
}
.wap-front .wselected , .wbtn.wbtn-primary {
	 background-color: #4357D9 !important;
}