/* ============================================================
	Caught results (messages and errors)
============================================================ */

.gst-caught {
	list-style-type: none;
	padding: 1em 0;
	margin: 0 auto;
	max-width: 960px;
}

.gst-caught:after {
	clear: both;
	content: " ";
	display: block;
	height: 0;
	overflow: hidden;
}

.gst-caught__message {
	background-color: #b1db76; /* desaturated green from the logo */
	border: 1px solid #20ab68; /* deep blue-green from the logo */
	
	border-radius: 5px;
	box-shadow: 1px 1px 1px #86bf8a; /* c0c0c0 */
	color: black;
	cursor: pointer;
	float: left;
	margin: 0 0 0.5em 0;
	padding: 0.5em;
}
.gst-caught__message:hover {
	background-color: #c5e599;
	border-color: #3dbc7f;
}
.gst-caught__message.error {
	background-color: #ffd775; /* light yellow gold */
	border-color: #f2742a; /* orange */
	box-shadow: 1px 1px 1px #bfaf86;
}
.gst-caught__message.error:hover {
	background-color: #ffe196; /* not-as-lighter yellow gold */
	border-color: #f58f53;
}
.gst-caught__message + .gst-caught__message {
	margin-left: 1em;
}

.gst-caught__message em {
	font-style: italic;
}

.gst-caught__message strong {
	font-weight: bold;
}

.gst-caught__icon {
	vertical-align: middle;
	font-size: inherit;
}
