.news li {
	margin-bottom: 0;
}

/* media grid overrides */
.media-grid .card {
	padding: 0;
	border-radius: 5px;
	overflow: hidden;
}
.media-grid .card .card-img {
	max-height: 200px;
	overflow: hidden;
	border-radius: 0;
}
.media-grid .card .card-body {
	padding: 10px 20px 20px 20px;
}
.media-grid .card h2.card-title {
	padding-top: 0;
	font-size: 1.15rem;
	font-weight: 800;
}

/* features */
.featured-section {
}
.news-page .featured-section .featured {
	border: solid 2px #e5e5e5;
	margin-bottom: 30px;
	overflow: hidden;
	border-radius: 0.4rem;
}
.news-page .featured-section .featured-media > * {
	margin: 0;
}
.news-page .featured-section .featured-content {
	padding: 2rem 2rem 1rem 1rem;
}

/* in the news */
/* in the news > carousel */
.inthenews-section .owl-stage {
  display: flex;
}
.inthenews-section .owl-item {
  display: flex;
}
.inthenews-section .owl-nav {
	width: 100%;
	position: absolute;
	top: 50%;
}
.inthenews-section .owl-prev:focus,
.inthenews-section .owl-next:focus {
	outline: 0;
}
.inthenews-section .owl-prev:focus,
.inthenews-section .owl-next:focus {
	outline: 0;
}
.inthenews-section .owl-prev i,
.inthenews-section .owl-next i {
	font-size: 1.5rem;
	color: rgb(187, 187, 187);
	transition: all .3s ease-out;
}
.inthenews-section .owl-prev:hover i,
.inthenews-section .owl-next:hover i {
	color: rgb(91, 91, 91);
	transform: scale(120%);
}
.inthenews-section .owl-prev {
	position: absolute;
	left: -30px;
}
.inthenews-section .owl-next{
	position: absolute;
	right: -30px;
}
/* in the news > cards */
.inthenews-section .card {
	padding: 0;
	border-radius: 5px;
	overflow: hidden;
}
.inthenews-section .card p {
	margin-bottom: 15px;
	font-size: .85rem;
	line-height: 1.4rem;
}
.inthenews-section .card a {
	display: inline;
	color: black;
	border: none;
}
.inthenews-section .card .card-img {
	max-height: 200px;
	overflow: hidden;
	border-radius: 0;
}
.inthenews-section .card .card-body {
	padding: 10px 20px 20px 20px;
}
.inthenews-section .card h2.card-title {
	margin-bottom: 20px;
	padding-top: 0;
	padding-bottom: 0;
	font-size: 1.15rem;
	font-weight: 800;
}
.inthenews-section .card h2.card-title:before {
	border-bottom: none;
}

/* current news */
#search-term {
	/* background: #f6f6f4; */
	background: #ffffff;
	font-size: 1.4em;
	padding: 10px;
}
.currentnews-section {
	transition: all 1s ease-out;
}
.currentnews-section .card-img-top-parent img{
	width: 100%;
	height: auto;
}
.currentnews-section .really-show {
	display: flex !important;
}
.currentnews-section .really-hide {
	display: none !important;
}
.card-container.show-first-9:nth-of-type(n + 10) {
	display: none !important;
}
.card-container.show-first-3:nth-of-type(n + 4) {
	display: none !important;
}
.share-icons-container {
	margin-top: -5px;
	margin-right: -18px;
	cursor: pointer;
	border-radius: 4px 4px 0 0;
	position: relative;
	float: right;
	font-size: 1.25rem;
	transition: all .1s ease-out;
}
.share-icons-open {
	width: 34px;
	padding: 3px 8px 1px;
}
.share-icons-container:hover {
	background-color: rgba(95, 95, 95, .95);
	background-color: rgba(0 ,123, 255, .95);
	color: rgba(255 ,255, 255, .75);
}
.share-icons-container .share-icons {
	padding: .25rem .5rem;
	border-radius: 0px 0 4px 4px;
	position: absolute;
	z-index: 1;
	right: 0;
	width: 34px;
	height: 0;
	overflow: hidden; 
	transition: all .1s ease-out;
}
.share-icons-container:hover .share-icons {
	background-color: rgba(95, 95, 95, .95);
	background-color: rgba(0 ,123, 255, .95);
	color: white;
	height: 100px;
	overflow: visible; 
}
.share-icons-container .share-icons .st-custom-button {
	color: rgba(255 ,255, 255, .55);
	transition: all .1s ease-out;
}
.share-icons-container .share-icons .st-custom-button:hover {
	color: white;
}

/* media contact information */
.mediacontact-section .card {
	padding: 0;
	border-radius: 5px;
	overflow: hidden;
}
.mediacontact-section .card .card-img {
	margin: 0;
	border-radius: 0;
}


.share-icons-container {
	display: none;
}
.filter-locations .dropdown-item {
	cursor: pointer;
}
.filter-locations .dropdown-item input {
	display: none;
}

.portrait-image {
	position: relative;
	display: flex !important;
	justify-content: center;
	height:  100%;
	overflow: hidden;
}
.portrait-image:before {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: '';
	background-position: center center;
	backdrop-filter: blur(60px);
	-webkit-backdrop-filter: blur(60px);
}
.portrait-image img{
	position: relative;
	width: unset !important;
	height: 100% !important;
	z-index: 1
}

.loading-message img{
	margin: 0;
	padding: 0;
	animation: rotation 8s infinite linear;
}

@keyframes rotation {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(359deg);
	}
}