﻿.button-float {
    z-index: 10000;
    position: fixed;
    bottom: 10px;
    right: 15px;
    padding: 10px;
}

.container-button-float {
    position: relative;
}

.title-button-float {
    position: absolute;
    top: 23px;
    left: -150px;
    width: 150px;
    background-color: #1975C5;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 5px;
    border-radius: 3px;
    box-sizing: border-box;
    opacity: 0;
    transform: translateX(-10px);
    visibility: hidden;
    transition: all 0.4s ease; /* puedes ajustar la duración */
}

#title-span-btn {
    color: white;
}

.container-button-float:hover .title-button-float {
    opacity: 1;
    transform: translateX(0);
    visibility: visible;
}

.btn-float {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: solid 1px transparent;
    background-color: #1975C5;
    color: white;
    font-size: 32px;
    cursor: pointer;
}

    .btn-float:hover {
        background-color: #277dc9;
    }



.image-option-table {
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.container-image-control {
    position: relative;
    width: 45px;
}

.edit-option {
    width: 35px;
}



@media (max-width:800px) {

    .button-float {
        bottom: 50px;
    }
}
