html,
body {
	background: #1d5d75;
}

/** Reset default col paddings **/
div[class^="col-"] {
	padding: 0;
}
.col {
	padding: 10px;
}

/** Targeting the nav element **/
nav {
	background: #223344;
	color: #fff;
	min-height: 69px;
	box-shadow: 0px 10px 15px -5px #1d5d75aa;
}
nav .vectorpro {
	position: absolute;
	margin: 0 auto;
}
nav .vectorpro img {
	width: 100%;
}

/** Targeting .container adjacent to the nav element **/
nav + .container {
	padding-top: 76px;
}
/* nav + .container img {
	margin: 10px 0;
	max-width: 95%;
	box-shadow: 0px 3px 6px -2px #333a;
} */
nav + .container a:hover img {
	box-shadow: 0px 1px 5px -1px #3333;
}

.table-stats {
	font-size: 12px;
}

.table-sample-results {
	font-size: 12px;
}

.product-image {
	max-width: 256px;
}

.result-percentage {
	font-weight: bold;
}

.card .successSymbol,
.card .failedSymbol {
	display: inline-block;
	position: absolute;
	vertical-align: middle;
	text-align: center;
	background: #ccc;
	border: 2px solid #ccc;
	width: 25px;
	height: 25px;
	overflow: hidden;
	padding: 0.125rem 0;
	margin: -0.35rem 0 0 0.5rem;
	border-radius: 100%;
}

.card .successSymbol {
	background: #e2deee;
	border: 2px solid #6151f1;
}
.card .failedSymbol {
	background: #c580804f;
	border: 2px solid #d20000;
}

.card .invalidSymbol {
	display: inline-block;
	position: absolute;
	vertical-align: middle;
	text-align: center;
	background: transparent;
	width: 25px;
	height: 25px;
	overflow: hidden;
	padding: 0.125rem 0;
	margin: -0.15rem 0 0 0.1rem;
}

/** Increase number of columns as viewport gets wider - default 1 col **/
@media (max-width: 800px) {
	.card-columns {
		-webkit-column-count: 1;
		-moz-column-count: 1;
		column-count: 1;
	}
}
@media (min-width: 800px) {
	.card-columns {
		-webkit-column-count: 2;
		-moz-column-count: 2;
		column-count: 2;
	}
}
@media (min-width: 1080px) {
	.card-columns {
		-webkit-column-count: 3;
		-moz-column-count: 3;
		column-count: 3;
	}
}
@media (min-width: 1400px) {
	.card-columns {
		-webkit-column-count: 4;
		-moz-column-count: 4;
		column-count: 4;
	}
}

.card .vectorpro-card-header {
	color: #fff;
	background-color: #66afad;
	padding: 8px;
}

.card .sample-card-header {
	color: #fff;
	background-color: #f1eded;
	padding: 8px;
}

#btnScrollTop {
	display: none;
	position: fixed;
	vertical-align: middle;
	text-align: center;
	height: 64px;
	width: 64px;
	bottom: 25px;
	right: 25px;
	z-index: 99;
	font-size: 18px;
	border: none;
	outline: none;
	background-color: #66afd0;
	color: black;
	cursor: pointer;
	border-radius: 100%;
}

.btn-primary {
	background-color: #66afd0;
	border-width: 0;
}

#cards .card {
	margin: 5px;
	border-width: 2px;
	min-width: 300px;
}

#cardsNonCalculationResults .card {
	margin: 5px;
	border-width: 2px;
	min-width: 300px;
	max-width: 300px;
}

.test-stand-image {
	min-width: 50px;
}

.btnImg {
	background-color: transparent;
	border: none;
	display: block;
	margin-top: 0px;
	margin-left: auto;
	margin-right: auto;
}

.modal {
	display: none; /* Hidden by default */
	position: fixed; /* Stay in place */
	z-index: 1; /* Sit on top */
	padding-top: 100px; /* Location of the box */
	left: 0;
	top: 0;
	width: 100%; /* Full width */
	height: 100%; /* Full height */
	overflow: auto; /* Enable scroll if needed */
	background-color: rgb(0, 0, 0); /* Fallback color */
	background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
	background-color: #fefefe;
	border-radius: 25px;
	box-shadow: 0px 5px 10px -2px rgba(0, 0, 0, 0.25);
	margin: auto;
	padding: 20px;
	border: 1px solid #888;
	width: 80%;
	height: 80%;
	overflow-y: auto;
}

/* animation for the VectorPro image to access the menu */

.menuImage {
	height: 64px;
	position: relative;
	width: 64px;
}

.menuImage img {
	border-radius: 9999px;
	height: 100%;
	position: relative;
	width: 100%;
	z-index: 2;
}

@keyframes pulse {
	to {
		opacity: 0;
		transform: scale(1);
	}
}

.menuImage::before,
.menuImage::after {
	animation: pulse 2s linear infinite;
	border: #2d7a96 solid 8px;
	border-radius: 9999px;
	box-sizing: border-box;
	content: ' ';
	height: 140%;
	left: -20%;
	opacity: .6;
	position: absolute;
	top: -20%;
	transform: scale(0.714);
	width: 140%;
	z-index: 1;
}

.menuImage::after {
	animation-delay: 1s;
}

.menuImage:hover::before,
.menuImage:hover::after {
	/* animation: pulse 1s linear infinite, cycle-colors 6s linear infinite; */
	animation: pulse 1s linear infinite;
}
