#floating-logo-container {
    position: fixed;
    bottom: 8px;
    right: 8px;
    z-index: 999999;
    display: none;
    align-items: flex-start;
    background: white;
    padding: 5px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    width: auto;
    height: auto;
}

#floating-logo img {
    height: auto;
    max-width: 400px;
    max-height: 300px;
    cursor: pointer;
    margin-right: 5px;
}

#close-logo {
    background: #931634;
    color: white;
    border: none;
    padding: 5px;
    cursor: pointer;
    font-size: 20px;
    line-height: 1;
}

@media screen and (max-width: 767px)
{
  #floating-logo-container {
    display: none !important;
  }
}
