I try to color the interception of two ellipses as simple as possible. I found some examples here:
Draw ellipses with different coloring for their intersection in tikz?
But I'm not sure how to integrate it in my project.
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage{tikz}
\usetikzlibrary{arrows}
\usetikzlibrary{shapes}
\usetikzlibrary{patterns}
\usetikzlibrary{positioning}
\begin{document}
\begin{tikzpicture}[auto,node distance=4cm,>=latex',font=\sffamily]
\node[draw=blue!40,fill=blue!15,fill opacity=0.5,ellipse,minimum width=60mm,minimum height=35mm,align=center](master) at(0,0) {A};
\node[right=-15mm of master,pattern=north west lines,pattern color=blue,draw=blue!40,fill opacity=0.5,ellipse,minimum width=60mm,minimum height=35mm,align=center](slave) {B};
\node[below right=-3mm and -2mm of master,rotate=90,fill opacity=0.5] {C};
\end{tikzpicture}
\end{document}

