.floating-widget {
  position: fixed;
  bottom: 20px; /* Distance from the bottom of the page */
  right: 20px; /* Distance from the right side of the page */
  z-index: 1000; /* Ensures the widget appears on top of other elements */
}

.widget-content {
  display: block; /* Keeps the content visible */
  background-color: white; /* Optional: Add a background color */
  border: 1px solid #ddd; /* Optional: Add a border */
  border-radius: 8px; /* Optional: Add rounded corners */
  padding: 10px; /* Optional: Add some padding around the content */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Optional: Add a subtle shadow for depth */
}

.widget-content img {
  max-width: 170px; /* Adjust this value to control the width of the image */
  height: auto;
  display: block;
}
.section--light .form-a .form__submit input.component__button--1 {
    color: #62C3E1;
}

    @media (max-width:992px) {

        .widget-content img{
            width: 80px !important;
            max-width: unset !important;
        }
    }