.mb-3{
    margin-bottom: 1rem;
}

.botones img {
    width: 50px;
    height: 50px;
}

.botones {
    display: flex;
}

button {
    margin-left: 3px;  
    border-radius: 10px;
    margin-left: 8px;
    background: white;
    cursor: pointer;
}

button:hover {
    background: rgba(216, 216, 216, 0.496);
}

@media (max-width: 800px) {
    .mobile-hide {
        display: none;
    }

   .botones {
        width: 100%;
        overflow: auto;
    }

    .botones img {
        width: 80px;
        height: 90px;
        padding: 2px;
    }

    button:hover img {
        transform: scale(90%);
    }

    button:hover {
        border: 2px solid rgb(17, 104, 236);
        background: #fff;
    }
}

