Add a fade to the body of a website for popups modals, etc.
&.fade {
position: relative;
&:after {
position: absolute;
z-index: 10000;
top: 0;
right: 0;
bottom: 0;
left: 0;
content: '';
background: black;
opacity: .8;
}
}