.traductor {
    width: 90px;
    display: flex;
    align-items: center;
    gap: 8px;

    padding: 6px 12px;

    border: none;
    border-radius: 999px; 
    border: rgb(10, 4, 106) solid 1px;

    background: rgba(255,255,255,0.15);
    color: white;

    cursor: pointer;
    
}
.traductor img {
    width: 42px;
    height: 32px;

    border-radius: 34%; 
    border: rgb(10, 4, 106) solid 1px;
    object-fit: cover;
}
@media (max-width: 800px) {
    .traductor {
        width: 90px;
        display: flex;
        align-items: center;
        gap: 8px;

        padding: 6px 12px;

        border: none;
        border-radius: 999px; 
        border: rgb(10, 4, 106) solid 1px;

        background: rgba(255,255,255,0.15);;
        color: white;

        cursor: pointer;
        
        transform: translateX(10%);
    }
    .traductor img {
        width: 42px;
        height: 32px;

        border-radius: 34%;
        border: rgb(10, 4, 106) solid 1px;
        object-fit: cover;
    }

}
