/* Purchase Block */
#purchaseblock-flexcontainer {
	display:flex;
	flex-flow:row nowrap;
	justify-content:center;
}
#purchaseblock {
	flex:0 0 500px;
	font-size:14px; 
	line-height:20px;
	border:1px solid lightgrey; 
	padding:12px 24px;
}
#purchaseblock textarea {
	width:100%;
	padding:4px 12px;
	resize: none;
	font-size:16px; 
	box-sizing:border-box;
	border:1px solid lightgrey; 
	border-radius: 4px;
}
#purchaseblock input {
	width:100%;
	height:32px;
	margin:0 0 12px 0;
	padding:4px 12px;
	border:1px solid lightgrey; 
	border-radius: 4px;
	font-size:16px; 
	box-sizing:border-box;
}
#purchaseblock select {
	height:32px;
	margin:0 0 12px 0;
	border:1px solid lightgrey; 
	border-radius: 4px;
	font-size:16px; 
}
#purchaseblock button {
	width: 100%;
	height:32px;
	margin:24px 0;
	padding:auto;
	background: #5469d4;
	color: #ffffff;
	font-family: Arial, sans-serif;
	border-radius: 4px;
	border: 0;
	font-weight: 600;
	cursor: pointer;
	display: block;
	transition: all 0.2s ease;
	box-shadow: 0px 4px 5.5px 0px rgba(0, 0, 0, 0.07);
	font-size:16px; 
}
#purchaseblock button:hover {
	filter: contrast(115%);
}
#purchaseblock button:disabled {
	opacity: 0.5;
	cursor: default;
}

/* License Query Block */
#queryblock-flexcontainer {
	display:flex;
	flex-flow:row nowrap;
	justify-content:center;
}
#queryblock {
	flex:0 0 500px;
	font-size:14px; 
	line-height:20px;
	border:1px solid lightgrey; 
	padding:12px 24px;
}
#queryblock textarea {
	width:100%;
	padding:4px 12px;
	resize: none;
	font-size:16px; 
	box-sizing:border-box;
	border:1px solid lightgrey; 
	border-radius: 4px;
}
#queryblock input {
	width:100%;
	height:32px;
	margin:0 0 12px 0;
	padding:4px 12px;
	border:1px solid lightgrey; 
	border-radius: 4px;
	font-size:16px; 
	box-sizing:border-box;
}
#queryblock select {
	height:32px;
	margin:0 0 12px 0;
	border:1px solid lightgrey; 
	border-radius: 4px;
	font-size:16px; 
}
#queryblock button {
	width: 100%;
	height:32px;
	margin:24px 0;
	padding:auto;
	background: hsl(24, 50%, 65%);
	color: #ffffff;
	font-family: Arial, sans-serif;
	border-radius: 4px;
	border: 0;
	font-weight: 600;
	cursor: pointer;
	display: block;
	transition: all 0.2s ease;
	box-shadow: 0px 4px 5.5px 0px rgba(0, 0, 0, 0.07);
	font-size:16px; 
}
#queryblock button:hover {
	filter: contrast(115%);
}
#queryblock button:disabled {
	opacity: 0.5;
	cursor: default;
}
