/* Button
============================================================= */

.button {
	display: inline-block;
	min-width: 16rem;
	padding: .75rem 1.3125rem;
	border-radius: 1.3125rem;
	text-align: center;
	font-size: .875rem;
	line-height: 1.125rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .0625rem;
	color: #ffffff;
	background-color: #bf5700;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.button:hover {
	background-color: #ac4e00;
}

.button:active {
	background-color: #994600;
}

.button.primary {
	background-color: #bf5700;
}

.button.primary:hover {
	background-color: #ac4e00;
}

.button.secondary {
	background-color: #005f86;
}

.button.secondary:hover {
	background-color: #00466b;
}

/* Share Button
============================================================ */

.c--share-buttons {
	margin-bottom: 1rem;
}

.c--share-buttons .label {
	margin-bottom: 0.5rem;
	text-transform: uppercase;
}

.c--share-buttons .buttons {
	margin: 0 -0.5rem;
	display: flex;
}

.c--share-buttons .share-button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 2.5rem;
    height: 2.5rem;
    margin: 0.5rem;
    border-radius: 50%;
    line-height: 0;
    background-size: 1rem 1rem;
    background-repeat: no-repeat;
    background-color: #005f86;
}

.c--share-buttons .share-button:hover {
	background-color: #00466b;
}

.c--share-buttons .share-button svg {
	width: 1.25rem;
	height: 1.25rem;
	color: #ffffff;
}

.c--share-buttons .share-button i {
	color: #fff;
	font-size: 1rem;
}

/* Cards
============================================================ */

.c--card {
	padding: 0;
	max-width: 80rem;
}

.c--card:not(:last-child) {
	margin-bottom: 3rem;
}

.c--card .card-wrapper {
	border-radius: 0.25rem;
	box-shadow: 0 0.375rem 1rem rgba(0, 0, 0, 0.1);
	border: .0625rem solid rgba(239, 239, 239, 1);
	background-color: #ffffff;
}

.c--card .content {
	padding: 1.75rem;
}

.c--card[max-width~='64rem'] .content {
	padding: 1.5rem;
}

.c--card[max-width~='48rem'] .content {
	padding: 1.25rem;
}

.c--card .thumbnail-wrapper {
	position: relative;
}

.c--card .thumbnail-wrapper .thumbnail {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: top;
	background-repeat: no-repeat;
}

.c--card .thumbnail-wrapper .thumbnail-round {
	width: 12rem;
	height: 12rem;
	margin: 1.5rem auto;
	border: 0.25rem solid #ffffff;
	border-radius: 50%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	box-shadow: 0 .125rem 0.25rem 0 rgba(116, 116, 116, .23);
}

.c--card[max-width~='32rem'] .thumbnail-wrapper .thumbnail-round {
	margin: 0 auto -1.5rem auto;
	position: relative;
	top: -1.5rem;
}

.c--card[max-width~='48rem'] .thumbnail-wrapper .thumbnail-round {
	width: 8rem;
	height: 8rem;
}

.c--card .conditions .h-icon {
	display: inline-block;
	vertical-align: middle;
	width: 1.75rem;
	height: 1.75rem;
	margin-right: 1rem;
	color: #6d7883;
}

.c--card .conditions .condition {
	display: inline-block;
	vertical-align: middle;
	padding: 0.25rem 1rem;
	border: 0.0625rem solid #979797;
	border-radius: 0.25rem;
	line-height: 1.5rem;
	font-size: 1rem;
	font-family: 'Charis', serif;
	font-style: normal;
	font-weight: 400;
	letter-spacing: 0rem;
	color: #6d7883;
}

.c--card .conditions .condition:hover {
	border-color: #007173;
	color: #007173;
}

.c--card .blurb {
	margin-bottom: 1rem;
}

.c--card .card-links {
	margin-bottom: 1rem;
}

/* Card - Generic
----------------------------- */
.c--card.generic {
	padding: 0;
}

.c--card.generic .card-wrapper {
	border: 0;
	border-radius: 0;
	box-shadow: none;
}

.c--card.generic .card-wrapper :first-child {
	padding-left: 0;
}

/* .c--card.generic .card-wrapper .content {
	padding: 0;
} */

/* Card - Search
----------------------------- */

.c--card.search {
	padding: 0;
}

.c--card.search .card-wrapper {
	border: 0;
	border-radius: 0;
	box-shadow: none;
}

.c--card.search .card-wrapper :first-child {
	padding-left: 0;
}

.c--card[max-width~='48rem'].search .content {
	padding: 0 1.25rem;
}

/* Card - Clinical Trial
----------------------------- */

.c--card.clinical-trial {}

.c--card.clinical-trial .header {
	margin-bottom: .75rem;
}

.c--card.clinical-trial .blurb p {
	margin-bottom: 1.5rem;
}

.c--card.clinical-trial .blurb hr {
	margin-bottom: 1rem;
}

.c--card.clinical-trial .conditions {
	margin-bottom: 0.5rem;
}

.c--card.clinical-trial .conditions .condition:not(:last-child) {
	margin-right: 1rem;
	margin-bottom: 1rem;
}

/* Card - Directory
----------------------------- */

.c--card.directory {}

.c--card.directory[min-width~='32rem'] .content:not(:first-child) {
	padding-left: 0;
}

.c--card.directory .body-container[min-width~='32rem'][max-width~='47.9375rem'] .titles-container {
	margin-bottom: 2rem;
}

.c--card.directory .specializations.hidden {
	display: none;
	visibility: hidden;
}

.c--card.directory .thumbnail-wrapper {
	padding: 0 2rem;
}

.c--card.directory .thumbnail-wrapper .thumbnail-round {
	background-position: center top;
}

.c--card.directory,
.c--card.directory .card-wrapper {
	height: 100%;
}

/* Card - Portraits
----------------------------- */

.c--card.portraits {}

.c--card.portraits[min-width~='32rem'] .content:not(:first-child) {
	padding-left: 0;
}

.c--card.portraits .body-container[min-width~='32rem'][max-width~='47.9375rem'] .titles-container {
	margin-bottom: 2rem;
}

.c--card.portraits .specializations.hidden {
	display: none;
	visibility: hidden;
}

.c--card.portraits .thumbnail-wrapper {
	padding: 0 2rem;
}

.c--card.portraits .thumbnail-wrapper .thumbnail-round {
	background-position: center top;
}

.c--card.portraits,
.c--card.portraits .card-wrapper {
	height: 100%;
}

/* Simplified Portrait */
.c--card .thumbnail-wrapper .thumbnail-round.portrait-gallery {
	width: 17rem;
	height: 20rem;
	margin: 1.5rem auto;
	border: none;
	border-radius: 3rem;
	background-size: cover;
	background-position: center top;
	background-repeat: no-repeat;
}

.c--card[max-width~='32rem'] .thumbnail-wrapper .thumbnail-round.portrait-gallery {
	margin: 0 auto 0 auto;
	position: static;
	top: unset;
}

.c--card[max-width~='48rem'] .thumbnail-wrapper .thumbnail-round.portrait-gallery {
	width: 17rem;
	height: 20rem;
}

/* Flip Box */
.flip-box {
	background-color: transparent;
	perspective: 1000px;
}

.flip-box-inner {
	position: relative;
	width: 17rem;
	height: 20rem;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}

.flip-box-front {
	position: absolute;
	width: 100%;
	height: 100%;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.flip-box-front {}

.flip-box .title-wrapper {
	background-color: #000;
	border-bottom-left-radius: 3rem;
	border-bottom-right-radius: 3rem;
}

.card-wrapper-simple a {
	color: #fff;
}

.card-wrapper-simple a:hover {
	color: #fff;
	text-decoration: none;
}

h3.portrait-title {
	font-size: 1.125rem;
	font-weight: 600;
	color: #ffffff;
}

.page--portrait-index .portrait-card-back {
	height: 20rem;
	border-radius: 3rem;
}

/* Card - Portraits Media */
.c--card-media {
	height: 100%;
	min-height: 23.75rem;
	position: relative;
	border: solid 1px rgba(213, 213, 213, .7);
	background-color: #ffffff;
}

.c--card-media[min-width~='32.125rem'] {
	min-height: auto;
}

.c--card-media .image-col {}

.c--card-media .card-image {
	display: block;
	height: 100%;
	min-height: 12rem;
	position: relative;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.c--card-media .card-image:before {
	content: '';
	height: 100%;
	width: 100%;
	position: absolute;
	bottom: 0;
	background: linear-gradient(rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, .25) 100%);
}

.c--card-media .card-image:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: calc(50% - 1.5rem);
	border: 1.5rem solid transparent;
	border-top-width: 0;
	border-bottom-color: #ffffff;
}

.c--card-media[min-width~='32.125rem'] .card-image:after {
	display: none;
}

.c--card-media .category-holder {
	text-align: center;
	margin-bottom: 0.625rem;
	padding-top: 1.125rem;
}

.c--category-button {
	font-family: "Open Sans";
	display: inline-block;
	font-size: .875rem;
	line-height: 1.875rem;
	font-style: normal;
	font-weight: 700;
	text-align: center;
	text-transform: uppercase;
	background-color: #273b4d;
	color: #fff;
	padding: .125rem 2rem .125rem 2rem;
	margin-right: .75rem;
	margin-bottom: .75rem;
	vertical-align: top;
}

.c--card-media .category-holder .c--category-button {
	margin-right: 0;
}

.c--category-button:hover {
	background-color: #445a6a;
}

.c--card-media .category-holder a {
	text-decoration: none;
}

.c--card-media .category-holder a:hover {
	color: #ffffff;
	text-decoration: none;
}

.c--card-media .card-title {
	line-height: 1.625rem;
	font-size: 1.125rem;
	font-family: "Open Sans";
	font-weight: 700;
	font-style: normal;
	text-align: center;
	color: #242d39;
	padding-bottom: 3rem;
	padding-left: 1.5rem;
	padding-right: 1.5rem;
}

.c--card-media .card-title a,
.c--card-media .card-title a:hover {
	color: #242d39;
	text-decoration: none;
}

.c--card-media .card-link-icon {
	width: 1.25rem;
	height: 1.25rem;
	position: absolute;
	right: 0.875rem;
	bottom: 0.875rem;
	color: #00808b;
}




/* Quick Links
============================================================ */

.c--quick-links .item:not(:last-child) {
	margin-bottom: 1.25rem;
}

.c--quick-links .item .link {
	font-size: 1rem;
	line-height: 1.5rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .0625rem;
	border-bottom: 0;
}

.c--quick-links .item .link:hover {
	text-decoration: none;
}

.c--quick-links .item .link .icon {
	display: inline-block;
	color: #005f86;
	margin-right: .5rem;
	vertical-align: middle;
	width: 1.5rem;
	height: 1.5rem;
}

.c--quick-links .item .link .text {
	display: inline-block;
	color: #005f86;
	vertical-align: middle;
}

.c--quick-links .item .link .text:hover {
	text-decoration: underline;
}

.c--quick-links .item .link:hover .icon,
.c--quick-links .item .link:hover .text {
	color: #00466b;
}

/* Asset
============================================================ */

.c--card.asset .icon {
	display: inline-block;
	vertical-align: middle;
	width: 2rem;
	height: 2rem;
	color: #00808b;
}


/* Asset Search
============================================================ */

.c--card.asset-search {
	padding: 0;
}

.c--card.asset-search .card-wrapper {
	border: 0;
	border-radius: 0;
	box-shadow: none;
}

.c--card.asset-search .card-wrapper :first-child {
	padding-left: 0;
}

.c--card[max-width~='48rem'].asset-search .content {
	padding: 0;
}

.c--card.asset-search .icon {
	display: inline-block;
	vertical-align: middle;
	width: 2rem;
	height: 2rem;
	color: #00808b;
}



/* Finder
============================================================= */

/* Global - Top
----------------------------- */

.c--finder-global-top {
	background-color: #ced6da;
}

.c--finder-global-top>.wrapper {
	max-width: 80rem;
	margin: 0 auto;
	padding: 2rem;
}

.c--finder-global-top form {
	width: 100%;
}

.c--finder-global-top.row.gutter[max-width~="31.9375rem"]>.col.query-container {
	padding-bottom: 1rem;
}

.c--finder-global-top .query {
	font-size: 16px;
	line-height: 24px;
}

.c--finder-global-top .query-label {
	font-size: 22px;
	font-weight: 700;
	color: #374960;
	margin: 16px 0 16px 0;
}

.c--finder-global-top .query-text {
	padding: 13px 16px 13px 16px;
	background-color: #ffffff;
	height: 50px;
	width: 100%;
}

.c--finder-global-top .submit-query {
	height: 100%;
	width: auto;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: end;
	-webkit-align-items: flex-end;
	-ms-flex-align: end;
	align-items: flex-end;
}

.c--finder-global-top .submit-button {
	vertical-align: baseline;
	width: 100%;
	height: 50px;
	padding: 13px 26px 13px 26px;
	background-color: #005f86;
	color: #ffffff;
	font-size: 16px;
	border-radius: 30px;
	font-weight: 700;
	cursor: pointer;
}


/* Global - Sidebar
----------------------------- */

.c--finder-global-sidebar {
	background-color: #ced6da;
	padding: 2rem;
}

.c--finder-global-sidebar .heading {
	margin-bottom: 2rem;
}

.c--finder-global-sidebar .heading .h4 {
	color: #374960;
	width: auto;
	line-height: 2rem;
}

.c--finder-global-sidebar .body {
	padding-top: 2rem;
}

.c--finder-global-sidebar .heading .toggle-filters .icon {
	display: inline-block;
	vertical-align: bottom;
	width: 1.75rem;
	height: 1.75rem;
	color: #374960;
	-webkit-transform: rotate(-90deg);
	-ms-transform: rotate(-90deg);
	transform: rotate(-90deg);
}

.c--finder-global-sidebar .heading .toggle-filters.is-expanded .icon {
	-webkit-transform: rotate(0deg);
	-ms-transform: rotate(0deg);
	transform: rotate(0deg);
}

.c--finder-global-sidebar .submit-filters:empty {
	display: none;
}

.c--finder-global-sidebar .submit-filters {
	padding-top: 3rem;
}




.c--finder-global-sidebar>.wrapper {
	max-width: 80rem;
	margin: 0 auto;

}

.c--finder-global-sidebar form {
	width: 100%;
}

.c--finder-global-sidebar.row.gutter[max-width~="31.9375rem"]>.col.query-container {
	padding-bottom: 1rem;
}

.c--finder-global-sidebar .query {
	font-size: 16px;
	line-height: 16px;
}

.c--finder-global-sidebar .query-label {
	font-size: 16px;
	font-weight: 700;
	color: #374960;
	margin: 10px 0px 10px 0px;
}

.c--finder-global-sidebar .query-text {
	padding: 13px 13px 13px 13px;
	color: #000000;
	background-color: #ffffff;
	width: 100%;
}

.query-container .query-select,
.c--finder-global-sidebar .query-select {
	font-size: 1.125rem;
	line-height: 2.125rem;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	background-color: #E8EAEC;
	color: #696969;
	padding: 8px;
	width: 100%;
	text-align: left;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	cursor: default;
}

.c--finder-global-sidebar .submit-query {
	height: 100%;
	width: auto;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: end;
	-webkit-align-items: flex-end;
	-ms-flex-align: end;
	align-items: flex-end;
}

.c--finder-global-sidebar .submit-button {
	vertical-align: baseline;
	width: 50%;
	height: 50px;
	padding: 13px auto 13px auto;
	margin: 0 auto 50px auto;
	background-color: #005f86;
	color: #ffffff;
	font-size: 16px;
	border-radius: 30px;
	font-weight: 700;
	cursor: pointer;
}


@media screen and (min-width: 64em) {
	.c--finder-global-sidebar .search-scroll {
		display: none;
	}
}

/* Global - Body
----------------------------- */

.c--finder-global-body {}

.c--finder-global-body .heading {
	margin-bottom: 2rem;
	margin-top: 2rem;
}

.c--finder-global-body .heading .h4 {
	color: #374960;
}

.c--finder-global-body .results {
	transition: opacity 250ms ease;
	opacity: 1;
}

.c--finder-global-body .results.loading {
	opacity: 0;
}

.c--finder-global-body .results .search_result:not(:last-child) {
	margin-bottom: 2rem;
}

.c--finder-global-body .results .result:not(:last-child) {
	margin-bottom: 2rem;
}

.c--finder-global-body .search_result_source {
	font-weight: 800;
}

/* Query Bar
============================================================= */

.c--query-bar {
	background-color: #ced6da;
}

.c--query-bar .wrapper {
	max-width: 80rem;
	margin: 0 auto;
	padding: 2rem;
}

.c--query-bar form {
	width: 100%;
}

.c--query-bar .row.gutter[max-width~="31.9375rem"]>.col.query-container {
	padding-bottom: 1rem;
}

.c--query-bar .query {
	font-size: 16px;
	line-height: 24px;
}

.c--query-bar .query-label {
	text-transform: uppercase;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 2px;
	color: #374960;
	margin: 16px 0 16px 0;
}

.c--query-bar .query-text {
	padding: 13px 16px 13px 16px;
	background-color: #e8eaec;
	height: 50px;
	width: 100%;
}

.c--query-bar .submit-query {
	height: 100%;
	width: auto;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: end;
	-webkit-align-items: flex-end;
	-ms-flex-align: end;
	align-items: flex-end;
}

.c--query-bar .submit-button {
	vertical-align: baseline;
	width: 100%;
	height: 50px;
	padding: 13px 26px 13px 26px;
	background-color: #005f86;
	color: #ffffff;
	font-size: 16px;
	border-radius: 30px;
	font-weight: 700;
}

/* Global Header Query Bar
----------------------------- */

.c--query-bar[data-id="globalHeader"] {
	background-color: #ffffff;
}

.c--query-bar[data-id="globalHeader"]>.wrapper {
	padding: 1.5rem 2rem 2rem 2rem;
}

/* Pagination
============================================================= */

.c--pagination {
	margin: 3rem auto;
}

.c--pagination .controls {
	display: flex;
	justify-content: center;
}

.c--pagination .page-button {
	background-color: #ffffff;
	background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMiIgaGVpZ2h0PSIyMCIgdmlld0JveD0iLTAuNjI5IC0wLjkzOCAxMiAyMCI+PHBhdGggZmlsbD0iI2JmNTcwMCIgZD0iTTEwLjM0NCw4LjcwM2MtMC40MDgtMC40MDgtOC4yLTguMzQtOC4yLTguMzRDMS45MTUsMC4xMzMsMS41ODgsMCwxLjI0NiwwQzAuOTE0LDAsMC42MDUsMC4xMiwwLjM3OCwwLjMzOCBjLTAuNDk0LDAuNDc1LTAuNTA2LDEuMjU2LTAuMDI2LDEuNzQ0TDcuNjUsOS40OTVsLTcuMjk4LDcuNDEzYy0wLjQ4LDAuNDg3LTAuNDY5LDEuMjcsMC4wMjUsMS43NDNDMC42MTEsMTguODc2LDAuOTIsMTksMS4yNDgsMTkgYzAuMzQsMCwwLjY1Ny0wLjEzMywwLjg5Ni0wLjM3M2MwLDAsNy44MjQtNy45NTQsOC4xNDktOC4yNzlDMTAuNzE5LDkuOTIyLDEwLjcxNiw5LjA3NCwxMC4zNDQsOC43MDN6Ii8+PC9zdmc+');
	background-position: 56.25% center;
	background-repeat: no-repeat;
	width: 2.875rem;
	height: 2.875rem;
	position: relative;
	border: .0625rem solid #d5d5d5;
	border-radius: 50%;
	display: inline-block;
	vertical-align: middle;
}

.c--pagination .page-button.prev {
	transform: rotate(180deg);
}

.c--pagination .page-button.disabled {
	background-color: #d8d8d8;
	background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMiIgaGVpZ2h0PSIyMCIgdmlld0JveD0iLTAuNjI5IC0wLjkzOCAxMiAyMCI+PHBhdGggZmlsbD0iI2ZmZmZmZiIgZD0iTTEwLjM0NCw4LjcwM2MtMC40MDgtMC40MDgtOC4yLTguMzQtOC4yLTguMzRDMS45MTUsMC4xMzMsMS41ODgsMCwxLjI0NiwwQzAuOTE0LDAsMC42MDUsMC4xMiwwLjM3OCwwLjMzOCBjLTAuNDk0LDAuNDc1LTAuNTA2LDEuMjU2LTAuMDI2LDEuNzQ0TDcuNjUsOS40OTVsLTcuMjk4LDcuNDEzYy0wLjQ4LDAuNDg3LTAuNDY5LDEuMjcsMC4wMjUsMS43NDNDMC42MTEsMTguODc2LDAuOTIsMTksMS4yNDgsMTkgYzAuMzQsMCwwLjY1Ny0wLjEzMywwLjg5Ni0wLjM3M2MwLDAsNy44MjQtNy45NTQsOC4xNDktOC4yNzlDMTAuNzE5LDkuOTIyLDEwLjcxNiw5LjA3NCwxMC4zNDQsOC43MDN6Ii8+PC9zdmc+');
	cursor: default;
}

.c--pagination .page-select {
	padding: 0 1.5rem;
}