/*
 * styles.css
 *
 * @author: Chopping Block (choppinblock.com)
 *
 */
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
	font-family: 'Proxima Nova', "HelveticaNeue-Light", "Helvetica Neue Light","Helvetica Neue", Helvetica, Arial, sans-serif;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* Your styles go here */


/* CSS, which stands for cascading style sheets, are styles you set for your HTML components */
/* Everything has a default style  (think ugly) and here is how you can modify your style*/

/* class selection*/
.wrap{
	width:100%;
}
.container{
	max-width: 700px;
	position: relative;
	margin: 20px auto;
}

/* Id selection */
#content-content{
}

/* Tag selection */
div{
}

div.wrap{
}

.wrap p{
	font-family: 'Proxima Nova', "HelveticaNeue-Light", "Helvetica Neue Light","Helvetica Neue", Helvetica, Arial, sans-serif;
	color: #000000;
	font-size: 14px;
	line-height: 1.2em;
}




/* APP CSS*/




/*Graphic custom*/


#graphicContainer h2 {
	font-family: 'Proxima Nova', "HelveticaNeue-Light", "Helvetica Neue Light","Helvetica Neue", Helvetica, Arial, sans-serif;
	color: #4c4e4d;
	font-size: 2.5em;
	text-align: center;
	font-weight: bold;
	margin-bottom: 30px;
}

.caption{
	clear: both;
	font-size: .8em;
    color: #4f7177;
    margin-bottom: 1.875em;
    margin-top: 1.875em;
    line-height: 1.5em;
}

/* d3 custom */

.circle{
    stroke-width:1px;
    stroke: #fff;
}


/*change colors for graphics here! */

.mentions{
  fill: #1da1f2;
	stroke:#fff;
	stroke-width: 0.5px;

}

#vizcontainer{
	width:100%;
	height:500px
}

@media (max-width:400px){
		 #vizcontainer{
		 	height: 300px
		 }
	}
