.placeholder {
	font-family: proxima-nova,sans-serif; 
	color: gray;
}

.desktop.placeholder {
	font-size: calc(8px + 0.25vw); 
}

.mobile.placeholder {
	font-size: calc(8.8px + 1.5vw); 
}

.moreControl {
    text-decoration: none;
    font-weight: bold;
	color: #0C0C6A;
    font-family: proxima-nova, sans-serif;
    text-transform: uppercase;
    cursor: pointer;
}

.desktop.moreControl {
    font-size: calc(8px + 0.25vw);
}
.mobile.moreControl {
    font-size: calc(8.8px + 1.5vw);
}

.loader {
	display: none;
	border: .7em solid #f3f3f3;
    border-top: .7em solid grey;
    border-radius: 50%;
    width: 1.5em;
    height: 1.5em;
    -webkit-animation: spin 1.1s linear infinite;
    -moz-animation: spin 1.1s linear infinite;
    -o-animation: spin 1.1s linear infinite;
    animation: spin 1.1s linear infinite;
    margin: 1.7em auto;
}

@keyframes spin {
    0% { 
    	-webkit-transform: rotate(0deg);
    	-moz-transform: rotate(0deg);
    	-o-transform: rotate(0deg);
    	transform: rotate(0deg);
     }
    100% { 
    	-webkit-transform: rotate(360deg); 
    	-moz-transform: rotate(360deg); 
    	-o-transform: rotate(360deg); 
    	transform: rotate(360deg); 
    }
}
/*
	VIDEO BLOCKS FORMATTING
*/


.tileVideoItem {
	position: relative;
	font-family: proxima-nova,sans-serif;
}

.desktop .tileVideoItem {
	display: block;
	width: 100%;
	height: calc(75px + 2.5vw);
	margin-right: .1vw;
	margin-bottom: 4.5em;
	font-size: calc(6px + .4vw);
	color: #000;
	background-color: lightgray;
}

.desktop .tileVideoItem > div {
	position: relative;
	text-align: center;
}

.desktop .tileVideoItem > div a{
	text-align: center;
	overflow: hidden;
}

.desktop .tileVideoItem > div a img{
	height: 100%;
	position: relative;
}

.desktop .tileVideoItem .duration{
	position: absolute;
	right: .5vw;
	bottom: .5vw;
	font-size: calc(7px + 0.15vw);
	color: #dddddd;
	background-color: rgba(0, 0, 0, .5);
	padding: 4px;
	border-radius: 1em;
}

.desktop .tileVideoItem .information {
	position: absolute;
	bottom: -1.2em;
	right: 5em;
	display: inline-block;
	width: 1em;
	line-height: 1em;
	border: 2px solid black;
	border-radius: 50%;
	font-size: 1.3em;
	text-align: center;
	color: black;
	margin: 0;
	padding: 0;
	cursor: pointer;
}

.mobile .tileVideoItem {
	width: 100%;
	font-size: calc(6px + 1.5vw);
	height: auto;
	margin-bottom: 5px;
}

.mobile .tileVideoItem .tileVideoDropDownLabel {
	position: relative;
	height: calc(50px + 5vw);
	width: 100%;
	display: table;
	background-color: #ECEDEF;
}

.mobile .tileVideoItem .tileVideoDropDownLabel *::after {
	background-color: rgb(162,170,173);
}

.mobile .tileVideoItem .tileVideoDropDownLabel > .logo-wrap {
	display: table-cell;
	vertical-align: top;
	width: calc(36px + 9vw);
	height: 100%;
	padding: 2vw;
}

.mobile .tileVideoItem .tileVideoDropDownLabel > .logo-wrap img {
	width: calc(100% - 20px);
	height: auto;
	border: 10px solid #000;
}

.mobile .tileVideoItem .tileVideoDropDownLabel .title-wrap {
	display: table-cell;
	vertical-align: top;
	height: 100%;
	font-weight: 600;
	color: #000;
	//width: 75%;
	padding: 0 4vw;
}

.mobile .tileVideoItem .tileVideoDropDownLabel .logo-wrap + .title-wrap {
	//width: 69%;
	padding: 0;
	font-size: .9em;
	text-align: left;
	vertical-align: top;
	//width: 69%;
	//padding:2vw 3em 0 10px;
	padding:2vw 12em 0 10px;
	color: #55565A;
}

.mobile .tileVideoItem .tileVideoDropDownLabel .information {
	position: absolute;
    top: calc(50% - 1em);
    right: 1em;
    display: inline-block;
    width: 2em;
    line-height: 2em;
    font-size: 1.3em;
    text-align: center;
    font-weight: bold;
    margin: 0;
    padding: 0;
    color: #ECECEE;
    cursor: pointer;
    background-color: #A2AAAD;
    border-radius: 50%;
}

.mobile .tileVideoItem .tileVideoDropDownSubMenu {
	display: none;
	height: auto;
	padding: 5%;
	font-size: 1em;
	background-color: rgb(52, 50, 48);
}

.mobile .tileVideoItem.active .tileVideoDropDownSubMenu {
	display: block;
}

.mobile .tileVideoItem .tileVideoDropDownSubMenu .description {
	color: #fff;
	min-height: 10vw;	
}

.mobile .tileVideoItem .tileVideoDropDownSubMenu .tileVideoPlayBtn {
	display: block;
	clear: both;
	width: 100%;
	margin-top: 2vw;
	text-align: right;
}

.text-with-ellipsis {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}

.text-with-ellipsis.three-lines {
	line-height: 1.2em;
	max-height: 3.6em;
	-webkit-line-clamp: 3;
}

.text-with-ellipsis.five-lines {
	line-height: 1.2em;
	max-height: 6em;
	-webkit-line-clamp: 5;
}

.tileArticleTitle {
	width: 100%; 
	margin-top: -1.2vw; 
	margin-bottom: 1vw; 
	display: inline-block; 
	font-size: 1em; 
	font-weight: 600; 
	text-transform: capitalize; 
	text-decoration: none; 
	color: blue;
}

@supports not (-webkit-line-clamp: 3){

	.text-with-ellipsis {
		overflow: hidden;
		position: relative; 
		text-align: justify;  
		margin-right: -1em;
		padding-right: 1em;
	}

	.text-with-ellipsis::before {
		content: '...';
		position: absolute;
		right: 0;
		bottom: 0;
	}

	.text-with-ellipsis::after {
		content: '';
		position: absolute;
		right: 0;
		width: 1em;
		height: 1em;
		margin-top: 0.2em;
	}
}

.mobile.clinical_summaries{
	width: 100%;
	height: 600px;
	max-width: 600px;
}

.desktop.clinical_summaries{
	width: 100%;
	height: 150px;
}

.desktop.educational_resources,
.mobile.educational_resources{
	width: 100%;
	height: auto;
}

.desktop.clinical_summaries.empty_data,
.mobile.clinical_summaries.empty_data{
	height: auto;
}

@media only screen and (max-width : 1200px) {
	.desktop.clinical_summaries{
		height: 100px;
	}
}

@media only screen and (max-width : 800px) {
	.mobile.clinical_summaries{
		max-width: 500px;
		height: 500px;
	}
}

@media only screen and (max-width : 500px) {
	.mobile.clinical_summaries{
		max-width: 300px;
		height: 300px;
	}
}

/* TILE ADs */

#div-gpt-ad-1522087319184-0 {
	text-align: center;
    //padding-bottom: 32px;
}