
/*
Typography.

Styleguide:  2
*/

html {
	font-size: 100%; /* 16px, normally */
}

body {
	/* Enable kerning in FF and WebKit. */
	text-rendering: optimizeLegibility;
}

pre,
code,
kbd,
samp {
	/* Corrects font family set oddly in IE6, S4/5, Chrome
	   en.wikipedia.org/wiki/User:Davidgothberg/Test59 */
	font-family: monospace, serif;
	font-family: Monaco, 'Lucida Console', monospace;
}

code,
kbd,
samp {
	white-space: nowrap;
}

pre {
	/* www.pathf.com/blogs/2008/05/formatting-quoted-code-in-blog-posts-css21-white-space-pre-wrap/ */
	white-space: pre; /* CSS2 */
	white-space: pre-wrap; /* CSS2.1 */
	/*white-space: pre-line; /* CSS3 (and 2.1 as well, actually) */
	word-wrap: break-word; /* IE */
}

pre > code {
	line-height: inherit;
	white-space: inherit;
}

a:focus,
a:hover {
	text-decoration: underline;
}

a {
	text-decoration: underline;
	color: inherit;
}

[href] {
	/* j.mp/webkit-tap-highlight-color */
	-webkit-tap-highlight-color: rgba(0,0,0,0.25);
}

/* Block elements */

p,
h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0 auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: normal;
	-webkit-hyphens: none;
	   -moz-hyphens: none;
	    -ms-hyphens: none;
	        hyphens: none;
}

hr {
	/* IE9 does not properly get border-color for <hr>s that
	   have border-width > 1px. Use background-color. */
	height: 1px;
	border-width: 0;
	margin-bottom: -1px;
	background-color: currentcolor;
}

hr.col-md-12 {
	padding-top: 0;
	padding-bottom: 0;
	margin-top: 0;
	margin-bottom: 0;
	background-clip: content-box;
}

ol                {
	list-style-type: decimal;
	/* Chrome renders them outside by default, causing a
	   difference between FF and Chrome */
	list-style-position: inside;
}

dl {
    display: grid;
    grid-column-gap: 1.125rem;
    grid-template-columns: max-content 1fr;
    grid-auto-columns: 1fr;
	align-items: flex-end;
}

dl > dt {
    grid-column: 1 / span 1;
	max-width: 40vw;
}

blockquote        { font-style: italic; font-family: Georgia, serif; }
blockquote::before { content: "\201C"; font-size: 3em; color: #484848; float: left; margin-left: -0.6em; line-height: 0.92em; }

p:empty,
h1:empty,
h2:empty,
h3:empty,
h4:empty,
h5:empty,
h6:empty,
ul:empty,
ol:empty,
dl:empty,
li:empty,
dt:empty,
dd:empty,
blockquote:empty {
	/* Hide any typographic block that is empty. This is a bit
	   contraversial, but helps correct style errors in blocks
	   of user input where the HTML has ended up being dodgy -
	   perhaps thanks to a CMS editor, for example. */
	display: none;
}

p > img,
p > svg,
p > video,
p > canvas,
p > object,
p > embed,
p > iframe,
li > img,
li > svg,
li > video,
li > canvas,
li > object,
li > embed,
li > iframe,
dd > img,
dd > svg,
dd > video,
dd > canvas,
dd > object,
dd > embed,
dd > iframe {
	/* Don't allow media to break out of container bounds. */
	max-width: 100%;
}


/* Inline elements */

abbr[title]       { border-bottom: 1px dotted; }

b,
strong,
dfn               { font-weight: bold; }
em,
dfn               { font-style: italic; }

/* Match the l-height of <small> to the x-height of surrounding text. */
small             { font-size: 0.727272em; font-weight: 400; }
sup,
sub               { line-height: 0; font-size: 0.8333em; position: relative; vertical-align: baseline; }
sup               { top: -0.5em; }
sub               { bottom: -0.25em; }

q                 { quotes: none; }
q::before,
q::after           { content: ''; content: none; }

abbr              { letter-spacing: 0.1em; }
del               { opacity: 0.5; filter: alpha(opacity=50%); text-decoration: line-through; }

/* Tables */

table             {width: 100%;}
tfoot             { font-style: italic; }
caption           { background-color: inherit; }





ul {
    list-style-type: none;
}

dd                { margin: 0; }
ul,
ol,
dl,
blockquote        { margin-top: 1.25rem; }
li                { margin-bottom: 0;}

/*This should be the case only inside ul elements. ol elements should not be effected. Added ul*/
ul li::before {
    content: '–';
    display: inline-block;
    margin-left: -1.25em;
    width: 1.25em;
    vertical-align: top;
}


.list-normal > li > p {
  display: inline-block;
 
}


.bordered-list li::before {
	content:none;
}
blockquote::before { font-size: 3em; line-height: 0.84em; margin-left: -0.6em; }

ul.bordered-list > ul {margin:0; padding: 0;}
/* Inline elements */

sup,
sub               { font-size: 0.6em; line-height: 0; }

abbr              { letter-spacing: 0.1em; }

/* Tables */

th,
td,
caption           { padding: 4px 10px 4px 5px; }

/* Indentation */

ul,
ol                { margin-left: 0; }

blockquote        { margin-left: 2.6667em; }



/* Classes */

.left             { margin: 0.75em 1em 0.75em 0; }
.right            { margin: 0.75em 0 0.75em 1em; }
.note             { font-size: 0.9167em; line-height: 1.8181; font-style: italic; }

.tag-code::before { content: '<'; margin-right: -0.1em; }
.tag-code::after  { content: '>'; margin-left: -0.1em; }

.wrap             { white-space: normal; }
.no-wrap          { white-space: nowrap; text-overflow: ellipsis; }
.break-wrap       { white-space: normal; overflow-wrap: break-word; }
.line-wrap        { white-space: pre; }

/* Modifiers */

.uppercase-text   { text-transform: uppercase !important; }
