/*OPTIONS MODAL*/
.signatureTagIE{
	display: table;
}

.optionsContentIE{
	display: table;
	margin: auto;
	width: 90%;
	max-width: 780px;
	text-align: center;
	height: auto;
	margin-top: 5vh;
	position: static;
	z-index: 1;
	visibility: visible;
	background-color: #FFFFFF;
	box-shadow: 0px 5px 10px #222;
	border-radius: 5px;
}

.tabIE {
	display: table-cell;
	background-color: #f1f1f1;
	width: 20%;
	height: auto;
}

/* Style the buttons that are used to open the tab content */
.tabIE button {
	display: block;
	background-color: inherit;
	color: black;
	padding: 22px 16px;
	width: 100%;
	border: none;
	outline: none;
	text-align: center;
	cursor: pointer;
	transition: 0.3s;
}

/* Change background color of buttons on hover */
.tabIE button:hover {
	background-color: #ddd;
}

/* Create an active/current "tab button" class */
.tabIE button.active {
	background-color: white;
	border-left: 4px solid #0071AE;
	color: #0071AE;
}

.contentIE{
	display: table-cell;
}

/* Style the tab content */
.tabcontentIE {
	display: table-cell;
	padding-bottom: 12px;
	height: 700px;
	border-left: none;
	background: #fff;
}

.ieBack {
	position: relative;
	background-size: cover;
	background-position: center center;
}

.signatureTagIE{
	display: table;
}

/*MEDIA QUERIES*/

@media (max-width: 600px) and (orientation: portrait) {

	.optionsContentIE{
		width: 100%;
		max-width: none;
		height: 100% !important;
		margin: 0 auto;
		box-shadow: none;
		border-radius: 0;
	}

	.tabIE {
		display: table-row;
		margin: 0;
		padding: 0;
	}

	.tabIE button{
		float: left;
		display: table-cell;
		width: 25%;
		padding: 14px 16px;
	}
	.tabcontentIE {
		display: table-row;
		padding-bottom: 12px;
		/*margin-top:-21px;*/
	}

	.tab-headerIE{
		padding: 15px;
		text-align: center;
		width: 100%;
		color: white;
		background-color: #0071AE;
	}

	.tab-headerIE .icon{
		font-size: 40pt;
	}
}


@media (max-height: 500px) and (orientation: landscape){

	.optionsContentIE{
		width: 100%;
		max-width: none;
		height: 100% !important;
		margin: 0 auto;
		box-shadow: none;
		border-radius: 0;
	}
}