﻿body {
	background: transparent url('../Images/BlueBackgroundNovaWeb.png') 0% 0% no-repeat padding-box;
	background-size: cover;
	font-family: Arial, Helvetica, sans-serif;
	margin: 0;
	opacity: 1;
	padding: 0;
	-ms-overflow-x: hidden; /*IE11 fix - prevent horizontal scroll bar that appears under some conditions in IE11*/
	width: 100%;
	/*box-sizing: border-box;*/
}

form {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction:column;
}

.container {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width:95%;
}

#PacsLogo{
	margin:20px 0;
}

.item {
	background-image: radial-gradient(white, #f0f0f0, #c7c7c7);
	margin: 1.5%;
	padding: 10px 35px;
	border-radius: 10px;
	border: 4.5px solid #0083BF;
	position: relative;
	height: 19vh;
	min-height:150px;
	width: 30vw;
	text-align: center;
	flex-basis: calc(24% - 20px);
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-areas: 'img img'
		'txt txt';
	justify-items: center;
	align-items: center;
}
.item:hover {
	background-image: radial-gradient(#48aefb, #2d97e7, #0a5085);
}
.item:hover, .item:hover .iconText {
	color: white;
}

.item, .iconText {
	color: #292929;
	font-weight: bold;
	font-size:22px;
	text-decoration:none;
}

.subText{
	font-weight:normal;
	font-size: 18px;
}

.contentContainer {
	display: flex;
	align-items: center;
	flex-direction: column;
	background-color: rgba(255, 255,255, 0.6);
	border: 5px solid gray;
	border-radius: 30px;
	width:65%;
	min-width:375px;
	padding-bottom:20px;
}


.iconText {
	grid-area:txt;
}

.iconImage {
	grid-area: img;
	width: auto; 
	height: 11vh; 
	max-height: 11vh; 
	object-fit: cover; 
}

.titleMessage {
	font-weight: bold;
	color: white;
	font-size: 3vw;
	line-height: 1.4;
}

.titleMessageDiv {
	padding: 2% 4%;
	text-align: center;
	margin: auto;
}

.NovaradLogoImg {
	position: absolute;
	right: 3%;
	bottom: 5%;
	width: 13%;
	max-width: 100%;
}


.logo {
	margin-bottom: 40px;
	opacity: 1;
}

.uploaderText:hover {
	color: #0083BF;
}

.modalPopup {
	background: #ffffff 0% 0% no-repeat padding-box;
	box-shadow: 0px 3px 6px rgba(0, 0, 0, .16);
	border-radius: 4px;
	opacity: 1;
}

.modalTitle {
	background: #404040 0% 0% no-repeat padding-box;
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
	height: 35px;
	width: 100%;
}

.modalTitle .closeIcon {
	float: right;
	padding-right: 9px;
	padding-top: 9px;
}

.modalTitle .closeIcon a {
	cursor: pointer;
}

.modalBody {
	padding: 0 20px;
}


@media screen and (max-width: 975px) {
	.titleMessage {
		font-size: 6vw;
	}

	.item {
		grid-template-areas: 'img txt';
		height: 105px;
		min-width: 250px;
		display:grid;
		min-height:80px;
	}

	.iconImage {
		margin:0;
		margin-right: 10px;
		padding:0;
		height:60%;
	}
	.iconText {
		align-content: center;
		text-align: left;
		font-size: 19px;
	}
	.subText {
		font-size: 16px;
	}
	#PacsLogo {
		width: 60%;
	}

	.NovaradLogo img{
		position: relative;
		margin: 25px auto;
		right: 0;
		bottom: 0;
		width: 100%;
	}
}

@media screen and (max-device-width: 975px) {
	.titleMessage {
		font-size: 6vw;
	}

	.item {
		grid-template-areas: 'img txt';
		min-width: 400px;
		height: 100px;
	}

	.iconImage {
		margin:0;
		margin-right: 10px;
		padding:0;
		height:60%;
	}

	.iconText {
		align-content: center;
		text-align: left;
		font-size: 25px;
	}

	.subText {
		font-size: 21px;
	}

	#PacsLogo {
		width: 60%;
	}

	.NovaradLogo img {
		position: relative;
		margin: 25px auto;
		right: 0;
		bottom: 0;
		width: 100%;
	}
}