/* Base styles for the whole site */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

/*Sidemenu Overrides*/
.col-1-4 {    
/*
  position: -webkit-sticky;
  position: -moz-sticky;
  position: -ms-sticky;
  position: -o-sticky;
  position: sticky;
*/
  padding: 30px 0;
  top: 20px;
  bottom: auto;
  z-index: 10;
  margin-bottom: 60px !important;
}
.col-inside-2 {
  background-color: #f3f3f3 !important;
}
.col-inside-3 {
  padding-top: 0 !important;
}
#sidemenu ul li a {
  margin: 1px 0px;
  letter-spacing: 0.5px;
  font-size: 14px;
  font-weight: 500;
}
#sidemenu ul li a:hover {
  text-underline-offset: 0.25em;  
}
#sidemenu ul li.on > a, #sidemenu ul li.collapse > a {
  font-weight: 700;
}
.default-header h1{
  display: none;
}
.breadcrumb{
  border-bottom: none !important;
  font-size: 16px;
  font-weight: 500;
  text-underline-offset: 0.25em; 
}
.container{
  min-height: 100%;
	background-color: #FCFCFD;
}

/*Initial Base Stylings*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  font-size: 17px;
  --pri: #116CD4;
  --prihover: #0051b5;
  --default: #333333;
}
html {
  scroll-behavior: smooth;
  /* Ensures footer is at the bottom of the page */
  height: 78.9%;
}
body {
  font-family: 'Open-Sans', sans-serif;
  /* Ensures footer is at the bottom of the page */
  height: 78.9%;
}

#styled-content hr {
  border: 1px solid #888;
}

#styled-content sup {
  text-decoration: none;
}

#styled-content .to-top {
  text-decoration: none;
  text-transform: lowercase;
  display: inline-block;
}
#styled-content a.to-top:first-letter {
  text-transform: uppercase !important;
}
#styled-content .to-top > img {
  height: 24px;
  transition: 150ms;
}

#styled-content .to-top:hover > img {
  transform: translateY(-3px);
  transition: 150ms;
}

#styled-content .blue{
  color: var(--pri);
}

#styled-content ul.less-padding{
  padding-left: 25px;
}
#styled-content ul.no-list{
  list-style: none;
}
#styled-content ul.no-list li{
  margin-bottom: 14px;
}

#styled-content .detail, #styled-content .detail * {
  font-size: 14px;
  font-weight: 600 !important;
}

#styled-content .no-margins {
  margin: 0;
  padding: 0;
}

/* Main home page */
#intro {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  text-align: center;
}
#intro > h1 {
  text-align: center;
  font-size: 2.5em;
  font-weight: 700;
  line-height: 1.5em !important;
  margin-bottom: .25em !important;
  padding: 0;
  color: #313646 !important;
}
#intro > div {
  font-size: 18px;
  font-weight: 500;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 80%;
}
#intro > div > p {
  width: 80%;
}
#intro > div > p:not(last-child) {
  margin: 0px 0px 10px 0px;
}
#intro > div > p:last-child {
  margin-bottom: 35px !important;
}

#styled-content .tiles{
  display: flex;
	justify-content: center;
  flex-wrap: wrap;
  gap: 20px 17px;
  width: fit-content;
  padding: 0;
  margin: 20px auto 50px auto;
}
#styled-content .tiles.only-titles {
  justify-content: flex-start;
}
#styled-content .tiles > a{
	width: 32%;
  display: flex;
  flex-direction: column;
	gap: 25px;
  background-color: #ffffff;
  border: solid 2px #EBEBEB;
	border-radius: 10px;
	padding: 15px 35px 25px 35px;
	filter: drop-shadow(0 3px 15px #29688B0D);
	transition: 150ms;
	text-decoration: none;
}
#styled-content .tiles.only-titles > a {
	padding: 15px 35px;
}
#styled-content #flu-tiles > a {
  filter: none;
  background-color: #305f7e;
  border-radius: 4px;
  font-weight: 600;
}
#styled-content .tiles.only-titles > a {
  justify-content: center;
  text-align: center;
  min-height: 180px;
}
#styled-content .tiles:not(#flu-tiles) > a:hover{
  transform:scale(102%);
	transition: 150ms;
	filter: drop-shadow(0 3px 10px #1B455D1A);
	cursor: pointer;
	text-decoration: none;
}
#styled-content #flu-tiles > a:hover {
	cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 0.25em;
  color: #fff;
  transition: 150ms all;
}
#styled-content .tiles > a > img {
  margin: 15px 0 -20px 0;
}
#styled-content .tiles >  a > div{
	max-width: 280px;
	width: content-fit;
	display: flex;
	flex-direction: column;
	gap: 15px;
}
#styled-content .tiles.only-titles > a h2 {
  margin: 0;
  padding: 0;
  font-size: 22px;
  line-height: 34px;
}
#styled-content #flu-tiles > a > h2 {
  color: #fff;
}
#styled-content .tiles > a h2{
	font-size: 26px;
	font-weight: 700;
	line-height: 26px;
	color: #313646;
	text-decoration: none;
  margin: 12px 0 20px 0;
}
#styled-content .tiles > a > div > p{
	font-size: 16px;
	font-weight: 400;
	color: #313646BF;
	text-decoration: none;
	line-height: 22px;
	padding: 0;
  margin: 0;
}
#styled-content .tiles > a > div > p:not(last-child) {
  margin-bottom: 10px;
}
/* Dashboard block */
#styled-content .centered {
  width: 100%;
  text-align: center;
  display: flex;
	justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}
#styled-content .centered > p {
  width: 70%;
}

/* Main Sub Pages */

#styled-content h1{
  font-size: 2.05em;
  font-weight: 700;
  line-height: 120%;
  margin-bottom: .75em;
  padding: 0;
  color: var(--default);
}
#styled-content h2{
  font-size: 1.65em;
  font-weight: 700;
  line-height: 120%;
  margin: 2em 0 .5em;
  color: var(--default);
}
#styled-content h3{
  font-size: 1.3em;
  font-weight: 700;
  line-height: 120%;
  margin: 2em 0 .5em;
  color: var(--default);
}
#styled-content h4{
  font-weight: 700;
  line-height: 120%;
  
  padding: 0;
  color: var(--default);
}
#styled-content p {
  font-size: 1em;
  font-weight: 500;
  line-height: 180%;
  margin-bottom: 1.125em;
  letter-spacing: .125px;
  padding: 0;
}
#styled-content .reduced-p {
  margin: 0px 0px 0px 0px;
}
strong{
  font-weight: 700;
}
#styled-content ul, #styled-content ol {
  font-size: 17px;
}
#styled-content ul li, #styled-content ol li {
  font-weight: 500;
  line-height: 180%;
  margin: 7px 0px;
  padding: 0;
}

/* Block Quote */
#styled-content blockquote{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
/*  gap: clamp(2em, 4vw, 5em);*/
  margin: 2.5em 0 !important;
  padding: 1em 2em !important;
  background: #f3f3f3;
  border-radius: 8px;
}
#styled-content blockquote p{
  line-height: 175%;
}
#styled-content blockquote p:last-child{
  margin: 0;
}
#styled-content .blockquote-outline{
  background-color: #ffffff00;
  border: 2px solid var(--pri);
  border-radius: 10px
}

/* Blue button */
.blue-button {
  background-color: #2D74D3;
  padding: 5px 12px;
  color: white !important;
  border-radius: 10px; 
  text-decoration: none;
  font-size: 14px;
}

/* list of cards */
#cards-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 2.5em clamp(1em, 1.25vw, 1.5em);
  max-width: 1080px;
  margin-bottom: 4em;
}
.card {
	width: 31%;
	transition: 150ms;
  min-width: 175px;
  cursor: pointer;
  text-decoration: none;
  padding: 20px;
  box-shadow: rgb(150 146 182 / 10%) 0px 1px 25px;
  background-color: #f4f4f4;
  border-radius: 10px;
  border: 2px solid #e9e9e9;
}
.card .date {
  color: #66778b;
}
.card .action-button {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  background-color: #e9e9e9;
  border-radius: 10px;
  padding: 5px 10px;
}
.card:hover{
	transform: scale(1.025);
	transition: 250ms ease-out;
  text-decoration: none;
  background-color: #e9e9e9;
}
.card:hover .action-button {
  background-color: #dedede;
}

/* Wide link list */
#styled-content .wide-link-container {
  width: auto;
  margin: 2em 0;
}
#styled-content .wide-link-container > a, #styled-content .wide-link-container > div > a {
  font-size: 1em;
  font-weight: 600;
  letter-spacing: .25px;
  color: var(--heading);
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: solid 2px #EBEBEB;
  padding: 1em;
  text-decoration: none;  
  transition: 150ms all ease-out;
  cursor: pointer;
}
#styled-content .wide-link-container > div{
  padding-left: 4em;
}
#styled-content .wide-link-container > a .detail {
  color: #66778b;
  font-size: 17px;
}
#styled-content .wide-link-container > a:hover{
  color: black;
  background-color: #f8f8f8;
}
#styled-content .wide-link-container > a:first-child {
  border-top: none
}
#styled-content .wide-link-container > a:only-child {
  border-top: solid 2px #EBEBEB;
  border-bottom: solid 2px #EBEBEB;
}
#styled-content .wide-link-container img {
  padding: 0;
}

/* Short link list */
#wt-content .short-link-container {
  max-width: 400px;
  width: auto;
  margin: 2em 0;
}
#styled-content .short-link-container > a, #styled-content .short-link-container > div > a {
  font-size: 1em;
  font-weight: 600;
  letter-spacing: .25px;
  color: var(--heading);
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: solid 2px #EBEBEB;
  border-radius: 8px;
  margin: 1em 0;
  padding: 1em;
  text-decoration: none;  
  transition: 150ms;
  max-width: 400px;
}
#styled-content .short-link-container > div{
  padding-left: 3em;
}
#styled-content .short-link-container > a:hover, #styled-content .short-link-container > div > a:hover {
  color: black;
  background-color: #f8f8f8;
}

/* Sub Pages */

#styled-content a{
  font-weight: 600;
  color: var(--pri);
  text-underline-offset: 0.25em;
  transition: 150ms all;
}
#styled-content a:hover{
  color: var(--prihover);
  text-underline-offset: 0.25em;
  transition: 150ms all;
}

/* Tables */
/* Pharmacare / biosimilars.html */
#styled-content .biosimilar-table tr:first-of-type {
  background-color: #cbdbed;
/*  text-align: center;*/
}
#styled-content .biosimilar-table tr {
  border-bottom: 2px solid #cbdbed;
}
#styled-content .biosimilar-table tr:first-of-type > *, #styled-content .biosimilar-table tr > td:first-child {
  font-weight: 700 !important;
}
#styled-content .biosimilar-table tr > td:nth-child(3) {
  width: 120px;
}
#styled-content .biosimilar-table tr:not(first-of-type) > td:nth-child(3) > span,
#styled-content .biosimilar-table tr:not(first-of-type) > td:nth-child(4) > span {
  margin-bottom: 8px;
  display: block;
  line-height: 20px;
}
#styled-content .biosimilar-table tr:not(first-of-type) > td:nth-child(3) > span:last-of-type,
#styled-content .biosimilar-table tr:not(first-of-type) > td:nth-child(4) > span:last-of-type {
  margin-bottom: 0;
}
#styled-content .biosimilar-table tr > td:last-child {
  width: 94px;
}
#styled-content .biosimilar-table tr:not(first-of-type) > td:last-child {
  text-align: center;
}
#styled-content .biosimilar-table tr * {
  font-size: 14px;
}
#styled-content .biosimilar-table tr *, #styled-content .biosimilar-table tr * {
  font-weight: 500;
}
#styled-content .biosimilar-table tr > * {
  padding: 8px 10px;
}
#styled-content .biosimilar-table tr:not(first-of-type) * {
  line-height: 22px;
}

/* wt-table aligns the first column to the left, others to the right */
#styled-content .wt-table, #styled-content .biosimilar-table {
  border: 2px solid #E6E5EB;
  margin: 30px 0 5px 0;
  width: 100%;
}
#styled-content .wt-table.smaller-font th, #styled-content .wt-table.smaller-font td {
  font-size: 14px !important;
}
#styled-content .wt-table th {
  padding: 20px 10px;
  font-size: 16px;
  font-weight: 700;
  background-color: #E6E5EB;
  color: var(--default);
  vertical-align: top;
  text-align: right;
}
#styled-content .wt-table td {
  padding: 20px 10px;
  font-size: 16px;
  font-weight: 600;
  border: 2px solid #E6E5EB;
  text-align: right;
}
#styled-content .wt-table th:first-child, #styled-content .wt-table td:first-child {
  text-align: left;
}

/* wt-table-by-facility aligns the last column to the right, others to the left */
#styled-content .wt-table-by-facility th, #styled-content .wt-table-by-facility td {
  text-align: left;
}
#styled-content .wt-table-by-facility th:last-child, #styled-content .wt-table-by-facility td:last-child {
  text-align: right;
}

/* wt-table-left aligns all columns to the left */
#styled-content .wt-table-left th, #styled-content .wt-table-left td {
  text-align: left;
}

/* New dropdowns - functionality with CSS */
#styled-content .dropdown-title{
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1em;
  border-top: solid 2px #c9d9ef;
  width: 100%;
  text-decoration: none;
  background-color: #f8f8fa;
}
#styled-content .dropdown-title > p {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: .25px;
}
#styled-content .dropdown-input {
  display: none;
}
#styled-content .dropdown-section {
  border-left: 3.5px solid #333;
  padding-left: 3px;
}

#styled-content .dropdown-input:not(checked) + label > .dropdown-content {
  display: none;
}
#styled-content .dropdown-input:checked + label > .dropdown-content {
  display: flex;
  padding: 1em;
  background-color: #f8f8fa;
  font-size: 17px;
}
#styled-content .dropdown-input:checked + label > .dropdown-content ul {
  margin-top: 0;
}
#styled-content .dropdown-input:checked + label > .dropdown-content p:last-of-type {
  margin: 0;
}
#styled-content .dropdown-input + label > .dropdown-title {
  border-radius: 5px;
}
#styled-content .dropdown-input:checked + label > .dropdown-title {
  background-color: #2676D3;
}
#styled-content .dropdown-input:checked + label > .dropdown-title p, #styled-content .dropdown-input:checked + label > .dropdown-title svg path {
  color: white;
  stroke: white;
}
#styled-content .dropdown-input:checked + label > .dropdown-title svg {
  transform: rotate(180deg);
}
#styled-content .dropdown-content {
  display: flex;
  flex-direction: column;
}
#styled-content .dropdown-content br {
  margin-bottom: 30px;
}
#styled-content .dropdown-title:hover, #styled-content .dropdown-info > .dropdown-wrap .dropdown-title{
  background-color: #f8f8fa;
}



/* Restructured Dropdowns */
#styled-content .dropdown-wrap2 .dropdown-title{
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1em;
  border-top: solid 2px #EBEBEB;
  width: 100%;
  text-decoration: none;
}
#styled-content .dropdown-wrap2 .dropdown-title > p {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: .25px;
  padding: 0;
}
#styled-content .dropdown-wrap2 .dropdown-input {
display: none;
}
#styled-content .dropdown-wrap2 .dropdown-input:checked + label > .dropdown-title {
  background-color: #2676D3;
}
#styled-content .dropdown-wrap2 .dropdown-input:not(checked) + label + .dropdown-content{
  height: 0;
  overflow: hidden;
}
#styled-content .dropdown-wrap2 .dropdown-input:checked + label + .dropdown-content{
  display: flex;
  padding: 1em;
  background-color: #f8f8fa;
  font-size: 17px;
  height: auto;
  overflow: auto;
}
#styled-content .dropdown-wrap2 .dropdown-title:hover, #styled-content .dropdown-info > .dropdown-wrap .dropdown-title{
  background-color: #f8f8fa;
}
#styled-content .dropdown-wrap2 .dropdown-input:checked + label > .dropdown-title p, #styled-content .dropdown-input:checked + label > .dropdown-title svg > path {
  color: white;
  stroke: white;
}
#styled-content .dropdown-wrap2 .dropdown-input:checked + label > .dropdown-title svg {
  transform: rotate(180deg);
}









/* Previous style Dropdowns */
#styled-content .dropdown-wrap {
  font-size: 1em;
  font-weight: 600;
  letter-spacing: .25px;
  color: var(--heading);
  text-decoration: none;
}
#styled-content .dropdown-wrap:first-child .dropdown-title, #styled-content .dropdown-info > .dropdown-wrap:nth-child(-n + 2) .dropdown-title {
  border-top: none;
}
#styled-content .dropdown-title.active img {
  transform: rotate(180deg);
}
#styled-content .dropdown-title.active, #styled-content .dropdown-info > .dropdown-wrap .dropdown-title.active {
  background-color: #EBEBEB;
}



#styled-content .dropdown-title.active, #styled-content .dropdown-info > .dropdown-wrap .dropdown-title.active {
  background-color: #EBEBEB;
}
#styled-content .dropdown-title:hover, #styled-content .dropdown-info > .dropdown-wrap .dropdown-title{
  background-color: #f8f8fa;
}
#styled-content .dropdown-title p{
  margin: 0;
  max-width: 85%;
  font-weight: 700;
}
#styled-content .dropdown-info{
  font-size: 17px;
	margin-top: -2px;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s ease;
}
#styled-content .dropdown-info p {
  margin: 0;
  padding: 1em;
}
#styled-content .dropdown-info ul {
  margin: 0;
  padding: 1em 2em;
}
/* Dropdowns in a dropdown */
#styled-content .dropdown-info > .dropdown-wrap {
  font-size: 17px;
}

@media only screen and (max-width: 890px) {
  #styled-content #flu-tiles > a {
    width: 31%;
  }
}

@media only screen and (max-width: 635px) {
  #styled-content #flu-tiles > a {
    width: 48%;
  }
}

@media only screen and (max-width: 475px) {
  #styled-content #flu-tiles > a {
    width: 100%;
  }
  
  #styled-content .tiles.only-titles > a {
    min-height: 110px;
  }
}

@media only screen and (max-width: 380px) {
  #styled-content .tiles.only-titles > a {
    min-height: 150px;
  }
}
