/*////////////////////////////////// Top Level Styles //////////////////////////////////*/
body {
	margin: 0px;
}

#Medscape_Mobile_POC {
	font-family: Helvetica, Arial, sans-serif;
	line-height: 1.15;
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	background-color: #FFF;
	border: 1px solid #CCC;
	box-sizing: border-box;
	width: 100%;
	height: 400px;
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;

/** TODO: TEST AND VERIFY THIS FIX TO KEEP POC FROM GETTING WEIRDLY WIDE IN MOBILE LANDSCAPE **/
	max-width: 414px;
	margin: 0 auto;
}

/* main swipe container */
.swiper-container-h {
	position: absolute;
	top: 0px;
	width: 100%;
	height: 100%;
}

.swiper-slide {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
}

#Medscape_Mobile_POC_Content {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
}

.swipeProgressPos {
	display: flex;
	justify-content: center;
	align-items: center;
	top: 0px;
	bottom: auto !important;
	height: 15px; 
}

.swiper-pagination-bullet {
	width: 8px;
	height: 8px;
	background-color: #FFF;
    border: 1px solid #585858;
    opacity: 1;
}

.swiper-pagination-bullet-active {
	background-color: #585858;
    border: 1px solid #585858;
}

.slide-content-centered {
	margin: auto;
	position: absolute;
	right: 0;
	left: 0;
	width: 100%;
}


/*////////////////////// UNBRANDED SLIDE  ///////////////////////////*/
.swiper-slide.unbranded {
	background-image: url('../img/unbranded.png');
	background-repeat: no-repeat;
	background-position: top -1px center;
}
.swiper-slide.unbranded #Slide1_SwipeNext {
	color: #FFF;
	background-color: #007CB0;
}


/*////////////////////// Slide 1 NO ISI  ///////////////////////////*/
#Medscape_Mobile_POC.slide1NoISI div[data-hash="slide1"] {
	z-index: 10;
	height: 400px;
	background-color: #FFF;
}


/*////////////////////////////////// Chart //////////////////////////////////*/
.swiper-container-chart {
	overflow: hidden;
	/*background-color: #FFF;*/
}


/*////////////////////////////////// Pop Up Styles ///////////////////////////////////*/
/* Modal */
#popup {
	display: none; /* Hidden by default */
	position: absolute; /* Stay in place */
	z-index: 100; /* Sit on top */
	top: 0px;
	left: 0px;
	width: 100%; /* Full width */
	height: 100%; /* Full height */
	overflow: auto; /* Enable scroll if needed */
	background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */
}

/* Modal popup */
#popupModal {
	font-size: 11px;
	color: #000;
	position: relative;
	background-color: #FFF;
	margin: auto;
	padding: 15px 20px;
	border: 1px solid #888;
	border-radius: 8px;
	width: 80%;
	top: 50px;
	box-sizing: border-box;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
	animation-name: animatetop;
	animation-duration: 0.4s;
}
#popupModal .popupContent > *:first-child {
	margin-top: 0;
}
#popupModal .popupContent > *:last-child {
	margin-bottom: 0;
}

/* Add Animation */
@keyframes animatetop {
	from {
		top: -300px;
		opacity: 0;
	}
	to {
		top: 50px;
		opacity: 1;
	}
}

/* The Close Button */
#popupClose {
	font-size: 12px;
	font-weight: bold;
	color: #000;
	text-align: center;
	line-height: 23px;
	position: absolute;
	background-color: #FFF;
	border-radius: 50%;
	width: 23px;
	top: -10px;
	right: -10px;
	box-shadow: -4px 4px 10px 0px #CCC;
	cursor: pointer;
}



/*////////////////////// Mid-bar / Link Style  ///////////////////////////*/
#midbar {
	position:absolute;
	width: 100%;
    height: 25px;
}



/*////////////////////////////////// ISI Styles //////////////////////////////////*/
#isi {
	position: absolute;
	width: 100%;
	left: 0px;
	background-color: #FFF;
	overflow-y: scroll;
}

#isiFrame > *:first-child {
	margin-top: 0;
}
#isiFrame > *:last-child {
	margin-bottom: 0;
}