/* open-sans-regular - latin */
@font-face {
	font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 400;
	src: url('/site/assets/fonts/open-sans-v40-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  
  /* open-sans-600 - latin */
  @font-face {
	font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 600;
	src: url('/site/assets/fonts/open-sans-v40-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }

html,body{
	font-family: var(--font-sans);
}
  
a{
  color:var(--theme);
  text-decoration: none;
  transition: var(--transition);
}

a:hover,
a:active,
a:focus {
  color: var(--dark);
  text-decoration: underline;
  transition: var(--transition);
}

.link-muted{
  font-weight: 400;
  color: #333;
  text-decoration: none;
}

h1,
h2,
h3,
h4{
	font-weight: 400;
	text-wrap: balance;
}

.page_heading {
	display: flex;
	gap: 8px;
	align-items: center;
	margin:0;
}

.page_heading>svg {
	height: 38px;
	width: auto;
}

h3, .panel_title, .card_heading,.faux_label {
    color: var(--grey-black, #222);
    font-size: 26.25px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid var(--grey-very-light);
    margin-bottom: 0;
}

.faux_label{
	font-size: 1rem;
}

.contented h3, 
.contented h4, 
.contented h5,
.contented h6
{
  margin-bottom: 0;
}

.hunderline{
	padding-bottom: 4px;
	border-bottom: 1px solid var(--grey-very-light);
}

label{
  color: #116397;
}

.text_centre{
	text-align: center;
}

.text_right{
	text-align: right;
}

.text-grey{
  color:#999;
}

.text-green{
  color:#1589C9;
}

.text-slime{
  color:#BECE11;
}

.text-black{
  color:#000000;
}

.text-grey{
  color:#4a4a49;
}

.text-grey-light{
  color:#dadada;
}

.text-midweight{
  font-weight: 400;
}

.text-grey{
	color:#4a4a49;
}


.text-red{
	color:#D03C34;
}

.text-small{
	font-size: 11px;
}

.text-smaller{
	font-size: 0.7rem;
}

.line-tight{
	line-height:1.1em;
}

.text-white{
	color:#fff;
}

.text-blue{
  color:#00b3e3;
}

.text-bigger{
  font-size: 18px;
}

.text-prettybig{
  font-size: 1.6rem;
  line-height: 1.3em;
}



.text-superbig{
  font-size: 2rem;
  line-height: 1.4em;
}

.text-strong{
  font-weight:900;
}

.text-titlecase{
    text-transform: capitalize;
}
.text-upper{
  text-transform: uppercase;
}

.hero-lede{
  padding:12px 0;
  font-size:32px;
  line-height: 1.3em;
  font-weight: 400;
}

.nav {
  font-size: 17px;
  font-weight: 700;
}

.nav-tabs > li.active > a, .nav-tabs > li.active > a:focus, .nav-tabs > li.active > a:hover {
  color: #000;

}

footer a{
  color:#eee;
}

footer a:hover{
  color:#00b1b0;
}

.css-copyright{
  font-size:12px;
  color:#dadada;
}

.vertical-align {
    display: flex;
    align-items: center;
}
