/*
Table Of Contents
 
 1.) Typography
 2.) Default Styles
 
 *-- Common styles --*
 a.) Container and Grids
 
 3.) Header - Main
 4.) Home Page
 5.) Inner Page
 6.) Light Box
 7.) Colors
 
===============================================*/

/*
 1.) Typography
----------------------------------------*/

@import url("bootstrap.min.css") all;
@import url("animate.css") all;
@import url("fontawesome-all.min.css") all;
@import url("fa-brands.min.css") all;
@import url("fa-light.min.css") all;
@import url("fa-regular.min.css") all;
@import url("fa-solid.min.css") all;
@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i,800,800i') all;


/*
 2.) Default Styles
----------------------------------------*/

body {
	-webkit-font-smoothing: antialiased;
	text-shadow: 1px 1px 1px rgba(0,0,0,0.004);
	font-family: "Open Sans", Arial, Helvetica, sans-serif;
	font-weight: 400;
	font-size: 16px;
	color: #ffffff;
	line-height: 30px;
	background: #000000;
	margin: 0;
	padding: 0;
}


/*= Links 
=======================================================*/

a {
	color: #1a71c9;
	text-decoration: none;
	outline: 0;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
	cursor: pointer;
	outline: 0;
}

a:hover,
a:active,
a:focus {
	color: rgba(26, 113, 201, .75);
	text-decoration: underline;
	outline: 0;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
}

a:visited {
	outline: 0;
	text-decoration: none;
}

a[href^="mailto:"], 
a[href^="tel:"], 
a[href^="fax:"] {
	color: #1a71c9;
	text-decoration: none;
}

a:hover[href^="mailto:"], 
a:hover[href^="tel:"], 
a:hover[href^="fax:"] {
	color: rgba(26, 113, 201, .75);
	text-decoration: underline;
}


/*= Headings: P, H1, H2, H3, H4, H5, H6 
=======================================================*/

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 400;
	padding: 0;
	margin: 0;
}

h1 {
	font-size: 26px;
	line-height: 36px;
}

h2 {
	font-size: 26px;
	line-height: 30px;
}

h3 {
	font-size: 24px;
	line-height: 28px;
}

h4 {
	font-size: 22px;
	line-height: 26px;
}

p {
	padding: 0 0 10px 0;
	margin: 0;
}

p:last-child {
	padding: 0 0 20px 0;
}

em {
	font-style: italic;
}

strong {
	font-weight: 700;
}

.light {
	font-weight: 300;
}

.regular {
	font-weight: 400;
}

.semi-bold {
	font-weight: 600;
}

.bold {
	font-weight: 700;
}


/*= Unorder List 
=======================================================*/

ul,
ol {
	list-style: none;
	padding: 5px 0;
	margin: 0;
}

ul:last-child,
ol:last-child {
	padding-bottom: 0;
}

li {
	line-height: 24px;
	position: relative;
	padding: 0 0 10px 15px;
	margin: 0;
}

li:last-child {
	padding-bottom: 10px;
}

ul:last-child li:last-child,
ol:last-child li:last-child {
	padding-bottom: 20px;
}

ul li::before {
	content: "\f054";
	font-family: "Font Awesome\ 5 Pro";
	font-weight: 400;
	font-size: 13px;
	position: absolute;
	top: 1px;
	left: 0;
}

li ul:last-child li:last-child,
li ol:last-child li:last-child {
	padding-bottom: 0;
}

li ul,
li ol {
	padding-top: 10px;
}


/*= Order List 
=======================================================*/

ol {
	counter-reset: item;
}

ol > li {
	counter-increment: item;
	padding: 0 0 7px 25px;
}

ol > li:before { 
	content: counter(item); 
	width: 16px; 
	height: 16px;	
	float: left;
	font-family: "open_sansbold", Arial, Helvetica, sans-serif;
	font-size: 11px; 
	color: #1a71c9; 
	line-height: 16px; 
	text-align: center; 
	background: #ffffff; 
	border-radius: 16px;
	position: absolute; 
	top: 4px; 
	left: 0; 
	padding: 0; 
	margin: 0;
}


/* #Input Styles
================================================= */

textarea,
select,
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
.uneditable-input {
	border-radius: 0;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
	outline: 0;
}

input,
textarea,
select {
	-webkit-transition: border linear 0.2s, box-shadow linear 0.2s;
	-moz-transition: border linear 0.2s, box-shadow linear 0.2s;
	-ms-transition: border linear 0.2s, box-shadow linear 0.2s;
	-o-transition: border linear 0.2s, box-shadow linear 0.2s;
	transition: border linear 0.2s, box-shadow linear 0.2s;
}

label {
	width: 100%;
	float: left;
	font-weight: 700;
	font-size: 18px;
	color: #ffffff;
	line-height: 20px;
	text-transform: uppercase;
	padding: 0 0 6px 0;
	margin: 0;
}

.req {
	color: #ff0000;
}

textarea,
select,
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
.uneditable-input {
	width: 100%;
	height: 40px;
	float: left;
	font-weight: 400;
	font-size: 18px;
	color: #00467f;
	line-height: 20px;
	background: #ffffff;
	border: none;
	border-radius: 0;
	outline: none;
	position: relative;
	padding: 8px 15px;
	margin: 0;
}

textarea {
	height: 90px;
	padding: 10px 0 10px 15px;
	outline: none;
	resize: none;
}

/* Placeholder */
::placeholder {
	color: #1a71c9;
}

::-webkit-input-placeholder, 
::-webkit-textarea-placeholder {
	color: #1a71c9;
}

input::-moz-placeholder, 
textarea::-moz-placeholder {
	color: #1a71c9;
}

::-moz-placeholder {
	color: #1a71c9;
}

::-ms-input-placeholder {
	color: #1a71c9;
}

select:focus,
textarea:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="time"]:focus,
input[type="week"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="color"]:focus,
.uneditable-input:focus {
	outline: 0;
}


/* Custom Select Box */
.sbHolder {
	width: 100%;
	height: auto;
	float: left;
	position: relative;
	outline: none;
	text-decoration: none;
	background: none;
	padding: 0;
	margin: 0;
}

.sbSelector {
	width: 100%;
	float: left;
	height: 40px;
	font-weight: 400;
	font-size: 18px;
	color: #ffffff;
	line-height: 36px;
	text-transform: none;
	text-align: left;
	text-indent: 0;
	text-decoration: none;
	background: none;
	border: 2px solid #ffffff;
	border-radius: 0;
	position: relative;
	display: block;
	left: 0;
	outline: none;
	overflow: hidden;
	padding: 0 15px;
	margin: 0;
}

.sbSelector:link, 
.sbSelector:visited, 
.sbSelector:hover, 
.sbSelector:active {
	color: #ffffff;
	outline: none;
	text-decoration: none;
}

.sbHolder:hover .sbSelector {
	color: #ffffff;
	outline: none;
	text-decoration: none;
}

.sbToggle {
	width: 40px;
	height: 40px;
	float: right;
	display: block;
	outline: none;
	position: absolute;
	text-align: center;
	right: 0;
	top: 0;
	z-index: -1;
	border-left: 2px solid #ffffff;
}

.sbToggle:before {
	content: "\f107";
	font-weight: 300;
	font-family: "Font Awesome\ 5 Pro";
	font-size: 32px;
	color: #ffffff;
	text-align: center;
	position: absolute;
	top: 6px;
	right: 12px;
}

.sbToggleOpen:before {
	content: "\f106";
}

.sbOptions {
	width: 100%;
	float: left;
	list-style: none;
	position: relative;
	background: none;
	border: none;
	border-radius: 0;
	padding: 0;
	margin: 0;
	top: 0!important;
	z-index: 20;
}

.sbOptions li {
	width: 100%;
	float: left;
	padding: 0;
	margin: 0;
	counter-increment: none;
	background: #ffffff;
}

.sbOptions li:before {
	display: none;
}

.sbOptions a {
	width: 100%;
	float: left;
	font-weight: 400;
	font-size: 18px;
	color: #6a737b;
	line-height: 1.3em;
	text-transform: none;
	border: none;
	outline: none;
	display: block;
	position: relative;
	text-decoration: none;
	text-align: left;
	padding: 6px 15px 6px 37px;
}

.sbOptions a:before {
	content: "\f105";
	width: 25px;
	height: 100%;
	float: left;
	font-weight: 300;
	font-family: "Font Awesome\ 5 Pro";
	font-size: 28px;
	text-align: center;
	position: absolute;
	top: 5px;
	left: 10px;
}

li.multiselect .sbOptions a:before {
	content: "\f0c8";
	font-size: 19px;
	left: 8px;
}

li.multiselect .sbOptions a.selected:before {
	content: "\f14a";
}

.sbOptions a.disabled {
	color: #c0c0c0 !important;
	pointer-events: none !important;
}

.sbOptions a:link, 
.sbOptions a:visited {
	color: #6a737b;
	text-decoration: none;
}

.sbOptions a:hover, 
.sbOptions a:focus, 
.sbOptions a.sbFocus {
	color: #1a71c9;
	background: #ffffff;
}

.sbOptions .sbDisabled {
	height: 0;
	display: block;
	padding: 0;
	visibility: hidden;
}

.sbOptions .sbGroup {
	font-weight: 400;
	font-size: 13px;
	color: #00aeef;
	display: block;
	padding: 5px 11px;
}

.sbOptions .sbSub {
	padding-left: 11px;
}

.select-fill .sbSelector {
	color: #00aeef;
	background: #ffffff;
}

.select-fill .sbSelector:link, 
.select-fill .sbSelector:visited, 
.select-fill .sbSelector:hover, 
.select-fill .sbSelector:active {
	color: #00467f;
}

.select-fill 
.sbHolder:hover 
.sbSelector {
	color: #00467f;
}


/* #Buttons
================================================== */

.btn,
button,
input[type="button"],
input[type="submit"] {
	float: none;
	display: inline-block; 
	font-weight: 4000;
	font-size: 24px;
	color: #ffffff;
	line-height: 20px;
	letter-spacing: 0.02em;
	text-align: center;
	text-decoration: none;
	text-transform: none;
	white-space: normal;
	vertical-align: middle;
	background: none;
	border: 2px solid #ffffff;
	filter: 0;
	border-radius: 3px;
	box-shadow: none;
	position: relative;
	cursor: pointer;
	overflow: hidden;
	outline: 0;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
	padding: 13px 20px 14px 20px;
	margin: 0;
}

.btn:before,
.btn:after {
	display:none;
}

.btn > i {
	font-weight: 300;
	margin: 0 0 0 5px;
}

.btn:hover,
.btn:focus,
.btn:active,
.btn:active:focus,
.btn.active,
.btn.active:focus,
button:hover,
button:focus,
button:active,
button:active:focus,
button.active,
button.active:focus,
input[type="button"]:hover,
input[type="button"]:focus,
input[type="button"]:active,
input[type="button"]:active:focus,
input[type="button"].active,
input[type="button"].active:focus,
input[type="submit"]:hover,
input[type="submit"]:focus,
input[type="submit"]:active,
input[type="submit"]:active:focus,
input[type="submit"].active,
input[type="submit"].active:focus {
	color: #1a71c9;
	background: #ffffff;
	text-decoration: none;
	outline: 0;
}

.btn.disabled,
.btn[disabled],
fieldset[disabled] .btn {
	cursor: not-allowed;
	filter: alpha(opacity=65);
	-webkit-box-shadow: none;
	box-shadow: none;
	opacity: .65;
}

a.btn.disabled,
fieldset[disabled] a.btn {
	pointer-events: none;
}

.btn-out {
	width: 100%;
	float: left;
}


/*= Table
=======================================================*/

table {
	width: 100%;
	border-spacing: 0;
	border-collapse: collapse;
	padding: 0;
	margin: 0;
}


/*= Container & Grids
=======================================================*/

.container {
	width: 100%;
	max-width: 100%;
	padding: 0 25px;
}


/*
 3.) Header - Main
----------------------------------------*/

.header-main {
	width: 100%;
	height: 60px;
	float: left;
	text-align: center; 
	background: #ffffff;
	position: fixed; 
	top: 0; 
	left: 0; 
	z-index: 1000;
}

.header-main .brand { 
	width: 100%;
	float: left;
	line-height: 60px;
	padding: 0; 
	margin: 0 15px 0 0;
}

.header-main .brand img {
	width: 100%;
	max-width: 105px;
	vertical-align: middle;
}


/*
 4.) Home Page Content
----------------------------------------*/

.container-home {
	width: 100%;
	height: 100%;
	float: left;
	position: fixed;
	top: 0;
	left: 0;
	padding: 60px 0 0 0;
}

.container-in {
	width: 100%;
	height: 100%;
	float: left;
	overflow: auto;
	overflow-x: hidden;
}


/* Welcome - Content */
.welcome-content {
	width: 100%;
	float: left;
	padding: 46px 0 30px 0;
}

.welcome-content h1 {
	width: 100%;
	float: left;
	font-weight: 300; 
	letter-spacing: 0.02em; 
	font-weight: normal;
	position: relative;
	z-index: 5;
	padding: 0 30px;
	margin: 0;
}

.welcome-content h1 strong { 
	font-weight: 600;
}

.welcome-content figure {
	width: 100%;
	float: left;
	text-align: center;
	overflow: hidden;
	margin: -6% 0 -10% 0;
}

.welcome-content figure img {
	width: 100%;
}

.welcome-content .icon-start {
	width: 100%;
	float: left;
	text-align: center; 
	padding:0 20px;
	margin: 0 0 20px 0;
}

.welcome-content .icon-start a {
	width: auto; 
	float: none; 
	display: inline-block;
	font-weight: 400; 
	font-size: 19px;
	color: #ffffff; 
	line-height: 23px;
	letter-spacing: 0.02em; 
	text-transform: uppercase; 
	text-decoration: none; 
	background: #1a71c9;
	border-radius: 3px;
	cursor: pointer;
	padding: 11px 20px 13px 20px;
}

.welcome-content .icon-start a:hover, 
.welcome-content .icon-start a:focus, 
.welcome-content .icon-start a:active {
	background: #00467f;
}

.welcome-content .txt-max {
	width: 100%;
	float: left;
	text-align: center;
}

.welcome-content .txt-max p {
	width: 100%;
	max-width: 85%; 
	float: none;
	line-height: 24px; 
	letter-spacing: 0.06em;
	padding: 0;
	margin: 0 auto;
}


/* Footer - Main */
.footer-main { width:100%; float:left; text-align:center; background:#6a737b; padding:27px 0 30px 0;}
.footer-main .container { padding:0 20px;}
.footer-main .pre-footer { width:100%; float:left; border-bottom:1px solid #ffffff; padding:0 0 20px 0; margin:0 0 30px 0;}
.footer-main .pre-footer:last-child { border:none; padding:0; margin:0;}
.footer-main .pre-footer p { font-size:14px; line-height:24px; padding:0;} 
.footer-main .footer-links { width:100%; float:left; padding:0 0 17px 0;}
.footer-main .footer-links:last-child { padding-bottom:0;}
.footer-main .footer-links p { font-weight:600; font-size:13px; line-height:21px; padding:0;}
.footer-main .footer-links p a { color:#ffffff; text-decoration:none;}
.footer-main .footer-links p a:hover { opacity:.70;} 
.footer-main .copyright { width:100%; float:left;}
.footer-main .copyright p { font-size:13px; line-height:19px; padding:0 0 20px 0;}
.footer-main .copyright p:last-child { padding-bottom:0;}


/*
 5.) Inner Page Content
----------------------------------------*/

.container-inner {
	width: 100%;
	height: 100%;
	float: left;
	background: #3c86d1;
	position: fixed;
	top: 0;
	left: 0;
	padding: 60px 0 47px 0;
}


/* Title - Content */
.title-content {
	width: 100%;
	height: 165px;
	float: left;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	background: #00467f;
	padding: 40px 0 0 0;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 500;
	overflow: hidden;
}

.title-content .sub-title {
	width: 100%;
	float: left;
	font-weight: 600;
	font-size: 18px;
	color: #00aeef;
}


/* Form - Content */
.form-content {
	width: 100%;
	float: left;
	padding: 25px 0;
}

.form-content label {
	padding: 0 0 6px 22px;
}

.form-content ol {
	width: 100%;
	float: left;
	padding: 0;
	margin: 0;
}

.form-content ol li {
	width: 100%;
	float: left;
	padding: 0 0 33px 0;
	margin: 0;
}

.form-content ol li:last-child {
	padding-bottom: 0;
}

.form-content ol li:before {
	color: #00aeef;
	top: 2px;
}

.form-content .sbOptions {
	padding: 0;
}

.form-content .sbOptions li {
	padding: 0;
	margin: 0 0 1px 0;
}

.form-content .sbOptions li:last-child {
	margin-bottom: 0;
}

.form-content .btn { 
	width: 100%;
}

.form-content .btn-out { 
	text-align: center; 
	padding: 40px 0 0 0;
}


/* Form - Footer */
.form-footer {
	width: 100%;
	height: 47px;
	float: left;
	text-align: center;
	background: #003c71;
	padding: 18px 0 0 0;
	position: fixed;
	bottom: 0;
	left: 0;
	z-index: 100;
}

.form-footer .links {
	width: 100%;
	float: left;
}

.form-footer .links ul {
	width: 100%;
	float: left;
	padding: 0;
	margin: 0 0 -16px 0;
}

.form-footer .links ul li {
	float: none;
	display: inline-block;
	vertical-align: top;
	font-size: 12px;
	line-height: 14px;
	text-transform: uppercase;
	padding: 0;
	margin: 0 9px 16px 9px;
}

.form-footer .links ul li a {
	color: #ffffff;
	text-decoration: none;
}

.form-footer .links ul li.clear-all a {

	background: url(../img/icon-close2.png) no-repeat left center;
	background-size: 13px auto;
	padding: 0 0 0 20px;
}

.form-footer .links ul li.clear-prev a {
	background: url(../img/icon-previous.png) no-repeat left center;
	background-size: 15px auto;
	padding: 0 0 0 21px;
}

.form-footer .links ul li:before {
	display: none;
}


/*
 6.) Light - Box
----------------------------------------*/

/* Light - Box - Open*/
.container-in.hiddenscroll {
	overflow: hidden;
}

.container-in.hiddenscroll .header-main {
	filter: blur(2px);
}

.container-in.hiddenscroll .welcome-content {
	filter: blur(2px);
}

.container-in.hiddenscroll .title-content {
	filter: blur(2px);
}

.container-in.hiddenscroll .form-content {
	filter: blur(2px);
}

.container-in.hiddenscroll .form-footer {
	filter: blur(2px);
}


/* Light - Box - Out */
.light-box-out {
	width: 100%;
	height: 100%;
	float: left;
	background: rgba(35, 116, 200, .85);
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10000;
	overflow: auto;
	overflow-x: hidden;
	visibility: hidden;
	opacity: 0;
	-webkit-transition: top .15s ease-out;
	-moz-transition: top .15s ease-out;
	transition: top .15s ease-out;
	-webkit-transition: all .25s ease-out;
	-moz-transition: all .25s ease-out;
	-o-transition: all .25s ease-out;
	transition: all .25s ease-out;
}

.light-box-out.active {
	visibility: visible;
	opacity: 1;
	-webkit-transition: opacity .2s ease-out;
	-moz-transition: opacity .2s ease-out;
	transition: opacity .2s ease-out;
}

.light-box-out .outer-bg {
	width: 100%;
	height: 100%;
	float: left;
	display: table;
}

.light-box-out .inner-bg {
	width: 100%;
	height: 100%;
	float: none;
	display: table-cell;
	vertical-align: middle;
}

.light-box {
	width: 100%;
	float: left;
	text-align: center;
	padding: 30px 25px;
}

.light-box aside {
	width: 100%;
	float: left;
	text-align: center;
	padding: 0 15px 45px 15px;
}

.light-box aside:last-child {
	padding-bottom: 0;
}

.light-box aside p {
	font-size: 24px;
	line-height: 38px;
	letter-spacing: 0.02em;
}

.light-box aside p span.number {
	width: 35px;
	height: 35px;
	float: none;
	display: inline-block;
	vertical-align: middle;
	font-size: 20px;
	color: #1a71c9;
	line-height: 35px;
	background: #ffffff;
	border-radius: 35px;
}

.light-box .summary {
	width: 100%;
	float: left;
	text-align: left;
	padding: 0 0 30px 0;
}

.light-box .summary .product-txt {
	width: 100%;
	float: left;
	padding: 0 0 25px 0;
}

.light-box .summary .product-txt:last-child {
	padding-bottom: 0;
}

.light-box .summary .product-txt p {
	font-size: 18px;
	line-height: 23px;
	padding: 0;
}

.light-box .summary .product-txt .product-title {
	font-size: 20px;
	line-height: 26px;
	padding: 0 0 10px 0;
}

.light-box .summary .product-txt .product-title:last-child {
	padding-bottom: 0;
}

.light-box .summary .product-txt .product-title span {
	font-weight: 700;
	font-size: 40px;
	line-height: 40px;
}

.light-box .summary h3 {
	width: 100%;
	float: left;
	font-weight: 600;
	font-size: 20px;
	text-transform: uppercase;
	border-bottom: 1px solid #ffffff;
	margin: 0 0 10px 0;
}

.light-box .summary ol {
	width: 100%;
	float: left;
	padding: 0;
}

.light-box .summary ol li {
	width: 100%;
	float: left;
}

.light-box .icon-close {
	width: 100%;
	float: left;
	font-size: 14px;
	line-height: 18px;
	letter-spacing: 0.02em;
	text-align: center;
	text-transform: uppercase;
}

.light-box .icon-close a {
	float: none;
	display: inline-block;
	color: #ffffff;
	position: relative;
	text-decoration: none;
	background: url(../img/icon-close.png) no-repeat top center;
	background-size: 22px auto;
	cursor: pointer;
	padding: 32px 0 0 0;
}


/*
 7.) Text - Colors
----------------------------------------*/

/* Padding - None */
.top-none {
	padding-top: 0!important;
}

.bottom-none {
	padding-bottom: 0!important;
}


/* Colors */
.blue-lt {
	color: #00aeef!important;
}

.blue-dk {
	color: #00467f!important;
}


/* Background - Colors */
.blue-lt-bg {
	background-color: #00aeef!important;
}

.blue-dk-bg {
	background-color: #00467f!important;
}

.sbHolder.updating, .sbHolder.updating .sbOptions a {
	background: #b9b9b9;
	pointer-events: none;
}

.sbHolder.updating .sbSelector {
	background: #b9b9b9;
}

a.reset {
	color: #616161 !important;
	position: absolute;
	z-index: 9999;
	right: 0;
	height: 100%;
	border-left: 2px solid #8a8a8a;
	padding: 8px 12px 0 12px;
	font-size: 19px;
	font-weight: bold;
}

.product-code-input {
	max-width: 700px;
	border-radius: 5px !important;
	text-align: center;
	text-transform: uppercase;
}

.multi-results-lightbox .light-box .icon-close a {
	color: #4789d0;
	background-position: top right;
}

.multi-results-lightbox .matching-kit {
	display: flex;
	border-bottom: 1px solid #fff;
	padding-bottom: 23px;
	margin-bottom: 20px;
}

.multi-results-lightbox .matching-kit i {
	font-size: 1.5rem;
	margin-top: .5rem;
}

.multi-results-lightbox .kit-name {
	padding-left: 3px;
}

.syringe-notice {
	font-size: 13px !important;
	color: #c10b0b;
	margin-left: 10px;
}