/* 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, 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, sans-serif;
}
html {
  box-sizing: content-box;
}
*, *:before, *:after {
  box-sizing: content-box;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
  padding: 2px;
}
body {
  opacity:0;
  transition: opacity 3s;
  -webkit-transition: opacity 3s;
}
ol, ul {
  list-style: none;
  list-style-type: none;
  white-space: nowrap;
  /* Fix for Edge */
  list-style-image: url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7);
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}


/* --- TABLE --- */
table {
	border-collapse: collapse;
	border-spacing: 0;
  border: solid 2px #f3f1f1;
}

table {
  width: 100%;
  margin: 20px auto;
  table-layout: auto;
}
thead tr th {
 font-weight: bold;
  font-size: 12px;
  color: #555555;
  text-align: center;
  line-height: 12px;
}
tbody tr td {
  font-size: 12px;
  color: #797979;
}
tbody tr th {
  font-weight: bold;
  color: #555555;
  text-align: left;
  font-size: 12px;
}
.fixed {
  table-layout: fixed;
}

table,
td,
th {
  border-collapse: collapse;
}

th,
td {
  padding: 12px 20px;
  border: solid 1px;
  text-align: center;
}
tr:nth-child(even) {
  background-color: #F8F8F8;
}
td, th {
  border: solid 1px #f3f1f1;
}

/* --- TABS CONTAINER --- */
.responsive--wrapper {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding-top: 2px;
  max-width: 827px;
  margin: 0 auto;
}

.container--tabs {
  flex: 1;
  margin: 0 auto;
  /* width: 100%; */
  /* max-width: 720px; */
}
.container--tabs > .row {
  /* margin-top: 1rem; */
}
.container--tabs .nav-tabs {
  width: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  list-style-type: none;
}

.container--tabs .nav-tabs > li > a {
  padding: 16px 30px 16px 30px;
  font-size: 14px;
  line-height: 52px;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: bold;
  color: #797979;
  transition: color .7s;
}
@media only screen and (max-width: 620px) {
  .container--tabs .nav-tabs > li > a {
    padding: 15px;
    font-size: 12px;
    line-height: 44px;
  }
}

.container--tabs .nav-tabs > li.tab > a {
  border-left: none;
  box-shadow: 0 -1px 0 0 #ddd;
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}
.container--tabs .nav-tabs li:first-child a {
  border-left: 1px solid #ddd;
  box-shadow: 0 -1px 0 0 #ddd;
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}


.container--tabs .nav-tabs > li.tab > a:hover {
  border-color: #eee #eee #ddd;
  border-bottom-color: transparent;
}

.container--tabs .nav-tabs > li.tab > a:hover,
.container--tabs .nav-tabs > li.tab > a:focus,
.container--tabs .nav-tabs > li.tab.active > a,
.container--tabs .nav-tabs > li.tab.active > a:hover,
.container--tabs .nav-tabs > li.tab.active > a:focus {
  cursor: pointer;
  background-color: #fff;
  box-shadow: 0 -2px 0 0 #05BFD1;
  color: #222;
  border-bottom-color: transparent;
  transition: border .7s;
}




.container--tabs .nav-tabs > li.embed a{
  background-image: url("../images/icons/embed.svg");
  background-repeat: no-repeat;
  background-position: 0 center;
  padding-left: 30px;
}
.container--tabs .nav-tabs > li.share a{
  background-image: url("../images/icons/share.svg");
  background-repeat: no-repeat;
  background-position: 0 center;
  padding-left: 30px;
}



.container--tabs .nav-tabs > li.share.active a,
.container--tabs .nav-tabs > li.share a:hover,
.container--tabs .nav-tabs > li.share a:focus {
  background-image: url("../images/icons/share_hover.svg");
  color: #222;
}

.container--tabs .nav-tabs > li.embed.active a,
.container--tabs .nav-tabs > li.embed a:hover,
.container--tabs .nav-tabs > li.embed a:focus {
  background-image: url("../images/icons/embed_hover.svg");
  color: #222;
}

@media only screen and (max-width: 620px) {
  .container--tabs .nav-tabs > li.embed a,
  .container--tabs .nav-tabs > li.share a {
    padding-left: 10px;
    background: none;
  }
  .container--tabs .nav-tabs > li.embed.active a,
  .container--tabs .nav-tabs > li.embed a:hover,
  .container--tabs .nav-tabs > li.embed a:focus,
  .container--tabs .nav-tabs > li.share.active a,
  .container--tabs .nav-tabs > li.share a:hover,
  .container--tabs .nav-tabs > li.share a:focus {
    background: none;
  }
}


.container--tabs .tab-container {
  border: 1px solid #DCDCDC;
}
.container--tabs .tab-container > .tab-pane {
  display: none;
}
.container--tabs .tab-container > .tab-pane.active {
  display: block;
}

.container--tabs .tab-container > .active {
  display: block;
}

.container--tabs .nav-tabs li.share {
  margin-left: auto;

}

.tab-content {
  margin: 50px;
}
.tab-content h3 {
  font-size: 18px;
  font-weight: bold;
  color: #000000;
  text-align: center;
  margin: 35px 0;
}

.tab-content.chart {
  margin: 35px;
}
.highcharts-credits {
  font-size: 12px;
  color: #797979;
  background: #F8F8F8;
}

/* --- EMBED / IFRAME TEXTAREA --- */
#tab-5 textarea {
  border: 1px solid #CCC;
  box-sizing: border-box;
  font-family: monospace;
  font-size: 13px;
  margin-bottom: 15px !important;
  min-height: 150px;
  padding: 10px;
  width: 100%;
}
#tab-5 p {
  font-size: .85rem;
  margin: 1rem 0;
  line-height: normal;
}
#tab-5 button {
    font-size: 12px;
    font-weight: bold;
    color: #555555;
    letter-spacing: 2px;
    line-height: 24px;
    text-transform: uppercase;
    background: none;
    border-radius: 3px;
    position: relative;
}
  .flash {
    transition: 0.2s;
    box-shadow: 0px 0px 10px blue;
  }
  .flash:after {
    content: "Code Copied";
    position: absolute;
    right: -125px;
    font-size: .8rem;
    color: #111;
  }
/* --- SHARE --- */

#tab-4 ul {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
}
#tab-4 ul li {
  flex: 50%;
  display: block;
  margin-bottom: 2rem;
}
#tab-4 ul li a {
  font-size: 14px;
  font-weight: bold;
  color: #555555;
  letter-spacing: 2px;
  line-height: 24px;
  text-transform: uppercase;
  text-decoration: none;
  display: block;
  line-height: normal;
  margin-right: 5px;
  transition: all .7s;
}
#tab-4 ul li a:hover {
  text-decoration: underline;
  transition: all .7s;
  color: #222222;
}

#tab-4 ul.share-social {
  border-bottom: 1px solid #DCDCDC;
  margin-bottom: 2rem;
}
#tab-4 ul.share-social a {
  background-repeat: no-repeat;
  background-position: 0 center;
  padding: 10px 0 10px 40px;
}

#tab-4 ul.share-social .facebook {
  background-image: url("../images/icons/facebook.svg");
}
#tab-4 ul.share-social .twitter {
  background-image: url("../images/icons/twitter.svg");
}

@media only screen and (max-width: 620px) {
  #tab-4 ul li a {
    font-size: 12px;
    letter-spacing: 1.5px;
  }
}
@media only screen and (max-width: 550px) {
  #tab-4 ul {
    flex-direction: column;
  }
  #tab-4 ul li {
    margin-bottom: 1rem;
  }
  #tab-4 ul.share-social {
    margin-bottom: 1.2rem;
  }
}


#tab-4 ul.share-hc {

}

#tab-4 ul.share-hc a {
  background-repeat: no-repeat;
  background-position: 0 center;
  padding: 10px 0 10px 40px;
}
#tab-4 ul.share-hc #download-as-svg {
  background-image: url("../images/icons/svg.svg");
}
#tab-4 ul.share-hc #download-as-pdf {
  background-image: url("../images/icons/pdf.svg");
}
#tab-4 ul.share-hc #download-as-png {
  background-image: url("../images/icons/png.svg");
}
#tab-4 ul.share-hc #download-as-csv {
  background-image: url("../images/icons/csv.svg");
}

/* --- SOURCE --- */
#tab-3 p {
  color: #555555;
  font-size: 14px;
  line-height: normal;
}
#tab-3 a {
  color: #555555;
  font-size: 14px;
  text-decoration: none;
}
#tab-3  a:hover {
  text-decoration: underline;
  color: #222222;
}

#tab-3 em {
  font-style: italic;
}

/* --- Page/Site Chrome/Branding if the page is iframed --- */
body.iframed header {
  display: none;
}

/* --- Page/Site Chrome/Branding if the page is NOT iframed --- */
body header {
  display: block;
  background-color: #e8e8e8;
  width: 100%;
  height: 54px;
  margin-bottom: 4rem;
}
.header-branding {
  display: flex;
  align-items: center;
  height: 54px;
}
.header-title {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 54px;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: .05em;
  background-color: #222222;
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 400;
  padding: 0 25px;
}
.header-title a {
  text-decoration: none;
  font-size: 16px;
  letter-spacing: .05em;
}
.header-title .inst {
  color: #ffffff;

}
.header-title .gutt {
  color: #08cdca;
  font-weight: bold;
}


.header-back {
  margin: 0 30px 0 auto;
  padding: 0;
}
.header-back a {
  text-decoration: none;
  color: #000;
  font-weight: bold;
  font-size: 18px;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTgiIGhlaWdodD0iMTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTMuNDE0IDdsMy4yOTMgMy4yOTNhMSAxIDAgMCAxLTEuNDE0IDEuNDE0bC01LTVhLjk5Ny45OTcgMCAwIDEgMC0xLjQxNGw1LTVhMSAxIDAgMCAxIDEuNDE0IDEuNDE0TDMuNDE0IDVIMTdhMSAxIDAgMSAxIDAgMkgzLjQxNHoiIGZpbGw9IiNGRjY5NDEiIGZpbGwtcnVsZT0ibm9uemVybyIvPjwvc3ZnPg==");
  background-repeat: no-repeat;
  background-position: 0 center;
  padding-left: 30px;
}


@media only screen and (max-width: 800px) {
  .header-title {
    margin-right: auto;
  }
  .header-title a {
    display: flex;
    flex-direction: column;
  }
  .header-title .gutt{
    font-size: 12px;
    line-height: 12.5px;
    letter-spacing: .06em;
  }
  .header-title .inst{
    font-size: 11px;
    line-height: 12.5px;
    letter-spacing: .4em;
  }
  .header-back {
    margin: 0 15px 0 15px;
  }
  .header-back a {
    font-size: 12px;
    padding-left: 25px;
    display: block;
  }
}