I have this code:
\documentclass[11pt]{book}
%----------------------------------------------------------------------------------------
% VARIOUS REQUIRED PACKAGES AND CONFIGURATIONS
%----------------------------------------------------------------------------------------
\usepackage[top=3cm,bottom=3cm,left=3cm,right=3cm,headsep=10pt,a4paper]{geometry} % Page margins
\usepackage{tikz} % Required for drawing custom shapes
\usetikzlibrary{patterns,calc,matrix,intersections,circuits.logic.US}
\usepackage{booktabs} % Required for nicer horizontal rules in tables
\usepackage{xcolor} % Required for specifying colors by name
\definecolor{ocre}{RGB}{243,102,25} % Define the orange color used for highlighting throughout the book
\usepackage{nicefrac} % For comparison
\usepackage{microtype} % for better kerning in narrow columns
\usepackage[bottom]{footmisc} % Place a footnote in an environment in the bottom of the page
%----------------------------------------------------------------------------------------
% FONTS
%----------------------------------------------------------------------------------------
\usepackage{avant} % Use the Avantgarde font for headings
\usepackage{microtype} % Slightly tweak font spacing for aesthetics
\usepackage[utf8]{inputenc} % Required for including letters with accents
\usepackage[T1]{fontenc} % Use 8-bit encoding that has 256 glyphs
\usepackage{textcomp}
\usepackage{eurosans}
% Removes the header from odd empty pages at the end of chapters
\makeatletter
%----------------------------------------------------------------------------------------
% THEOREM STYLES
%----------------------------------------------------------------------------------------
\usepackage{amsmath,amsfonts,amssymb,amsthm} % For math equations, theorems, symbols, etc
\newcommand{\intoo}[2]{\mathopen{]}#1\,;#2\mathclose{[}}
\newcommand{\ud}{\mathop{\mathrm{{}d}}\mathopen{}}
\newcommand{\intff}[2]{\mathopen{[}#1\,;#2\mathclose{]}}
% Boxed/framed environments
\newtheoremstyle{ocrenumbox}% % Theorem style name
{0pt}% Space above
{0pt}% Space below
{\normalfont}% % Body font
{}% Indent amount
{\small\bf\sffamily\color{ocre}}% % Theorem head font
{\;}% Punctuation after theorem head
{0.25em}% Space after theorem head
{\small\sffamily\color{ocre}\thmname{#1}\nobreakspace\thmnumber{\@ifnotempty{#1}{}\@upn{#2}}% Theorem text (e.g. Theorem 2.1)
\thmnote{\nobreakspace\the\thm@notefont\sffamily\bfseries\color{black}---\nobreakspace#3.}} % Optional theorem note
\renewcommand{\qedsymbol}{$\blacksquare$}% Optional qed square
\makeatother
% Defines the theorem text style for each type of theorem to one of the three styles above
\newcounter{dummy}
\numberwithin{dummy}{section}
\theoremstyle{ocrenumbox}
\newtheorem{definitionT}{Definizione}[section]
%----------------------------------------------------------------------------------------
% DEFINITION OF COLORED BOX
%----------------------------------------------------------------------------------------
\RequirePackage[framemethod=default]{mdframed} % Required for creating the definition box
% Definition box
\newmdenv[skipabove=7pt,
skipbelow=7pt,
rightline=false,
leftline=true,
topline=false,
bottomline=false,
linecolor=ocre,
innerleftmargin=5pt,
innerrightmargin=5pt,
innertopmargin=0pt,
leftmargin=0cm,
rightmargin=0cm,
linewidth=4pt,
innerbottommargin=0pt]{dBox}
% Creates the environment ---> @iacopo suggestion <---
\newenvironment{definition}[1]{\begin{dBox}\begin{definitionT}\item[\hskip \labelsep] {\bfseries #1}}{\end{definitionT}\end{dBox}}
\begin{document}
\begin{definition}
Nella teoria dei circuiti numerici, la logica sequenziale è un tipo di circuito logico dove l'uscita dipende non solo dal valore attuale dei suoi segnali di ingresso ma anche dalla sequenza degli ingressi passati: la cronologia degli ingressi stessi.
\footnote{Vai, M. Michael (2000). VLSI Design. CRC Press. p. 147. ISBN 0849318769. \\ Cavanagh, Joseph (2006). Sequential Logic: Analysis and Synthesis. CRC Press. pp. ix. ISBN 0849375649 \\ Lipiansky, Ed (2012). Electrical, Electronics, and Digital Hardware Essentials for Scientists and Engineers. John Wiley and Sons. p. 8.39. ISBN 1118414543. \\ Dally, William J.; Harting, R. Curtis (2012). Digital Design: A Systems Approach. Cambridge University Press. p. 291. ISBN 0521199506.}
\end{definition}
\end{document}
that produce this result:
But I would like the \footnote not in the environment, but in the bottom of the page.



\footnotecannot escape this (as it is a float). But we cannot be more precise without more specific code. If you only have one inside the env, you could get away with\footnotemarkinside the env, and adding\footnotetext{text}outside the env. – daleif Aug 30 '17 at 09:32