/* Style for the floating element */
.floating-element {
    position: fixed;
    top: 200px; /* Adjust the top position as needed */
    left: 0px; /* Adjust the right position as needed */
    /*background-color: #f0f0f0;*/
    padding: 10px;
    /*border: 1px solid #ccc;*/
    border-radius: 5px;
    /*box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);*/
    z-index: 1000;
  }
  
  /* Style for the close button */
  .close-button {
    float: right;
    cursor: pointer;
  }
  
  /* Style for the image */
  .floating-image {
    max-width: 100%; /* Ensure the image doesn't exceed the container width */
    margin-bottom: 10px; /* Add spacing between the image and text */
  }
  
  .button-24 {
    background: #ff4742;
    border: 1px solid #ff4742;
    border-radius: 6px;
    box-shadow: rgba(0, 0, 0, 0.1) 1px 2px 4px;
    box-sizing: border-box;
    color: #ffffff;
    cursor: pointer;
    display: inline-block;
    font-family: nunito, roboto, proxima-nova, "proxima nova", sans-serif;
    font-size: 16px;
    font-weight: 800;
    line-height: 16px;
    /*min-height: 40px;*/
    outline: 0;
    /*padding: 12px 14px;*/
    text-align: center;
    text-rendering: geometricprecision;
    text-transform: none;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    vertical-align: middle;
  }
  
  .button-24:hover,
  .button-24:active {
    background-color: initial;
    background-position: 0 0;
    color: #ff4742;
  }
  
  .button-24:active {
    opacity: 0.5;
  }
  