.floating-icon {
    position: absolute;
    /*width: 50px;
    height: 50px;
    background-color: #3498db;
    border-radius: 50%;*/
    cursor: pointer;
    display: block;
}

.popup {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    background-color: #ffffff;
    padding: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: none;
}

._circle {
    background-color: #3498db; /* Change this to your desired background color */
    border-radius: 50%;
    padding: 10px; /* Adjust padding as needed */
    cursor: pointer;
}
._fa {
    color: white; /* Change this to your desired icon color */
}