/* Globals */
.pretty-checkbox:checked + .label-checkbox:before,
.pretty-radio:checked + .label-radio:before {
	opacity: 1;
	-webkit-animation: bump 0.3s 1;
	-o-animation: bump 0.3s 1;
	animation: bump 0.3s 1;
	transition: 0.2s ease all;
}

.Blink { animation: blinker 1s cubic-bezier(.5, 0, 1, 1) infinite alternate; }
@keyframes blinker { from { opacity: 1; } to { opacity: 0; } }

.label-checkbox:before {
	content: url(//assets.bettyblocks.com/0d41e4e49b6f4066bcfe0d376087cc9f_assets/files/check.svg?_=fc5f0ca2ff2daa5ba22c7c02de20a11e);
	opacity: 0;
	transition: 0.2s ease all;
}

.label-radio:before {
	width: 12px;
	height: 12px;
	background-color: #4EBF8C;
	content: "";
	border-radius: 50%;
	opacity: 0;
	transition: 0.2s ease all;
}

.form-option {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	margin-bottom: 6px;
}

.form-option:last-child {
	margin-bottom: 0;
}

.option-label {
	margin-bottom: 0;
	margin-left: 8px;
	cursor: pointer;
}

.muted {
	color: #ccc;
}

@-webkit-keyframes bump {
	0% {
		opacity: 0;
		transform: scale(0.2);
	}

	50% {
		transform: scale(1.4);
		opacity: 1;
	}

	100% {
		transform: scale(1);
	}
}

@-o-keyframes bump {
	0% {
		opacity: 0;
		transform: scale(0.2);
	}

	50% {
		transform: scale(1.4);
		opacity: 1;
	}

	100% {
		transform: scale(1);
	}
}

@-moz-keyframes bump {
	0% {
		opacity: 0;
		transform: scale(0.2);
	}

	50% {
		transform: scale(1.4);
		opacity: 1;
	}

	100% {
		transform: scale(1);
	}
}

@keyframes bump {
	0% {
		opacity: 0;
		transform: scale(0.2);
	}

	50% {
		transform: scale(1.4);
		opacity: 1;
	}

	100% {
		transform: scale(1);
	}
}

.label-checkbox,
.label-radio {
	display: -webkit-inline-flex;
	display: -moz-inline-flex;
	display: -ms-inline-flex;
	display: -o-inline-flex;
	display: inline-flex;
	width: 20px;
	height: 20px;
	background-color: #fff;
	border: 1px solid #D0D0D0;
	margin: 0;
	vertical-align: middle;
	cursor: pointer;
	position: relative;
	justify-content: center;
	-ms-align-items: center;
	align-items: center;
}

.label-radio {
	border-radius: 50%;
}

.big-warning {
	background-color: #FFA941;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-direction: row;
	-moz-flex-direction: row;
	-ms-flex-direction: row;
	-o-flex-direction: row;
	flex-direction: row;
	justify-content: center;
	-ms-align-items: center;
	align-items: center;
	padding: 20px;
	color: #fff;
}

.big-warning svg {
	font-size: 58px;
	margin-left: 10px;
	margin-right: 10px;
}

.big-warning p {
	text-align: left;
	margin-left: 20px;
	margin-bottom: 0;
}

/* Login */

.login {
	background-image: url(//assets.bettyblocks.com/0d41e4e49b6f4066bcfe0d376087cc9f_assets/files/bg-login.jpg?_=ba83895a11692594f8727164fb854089);
	background-repeat: no-repeat;
	background-color: #fafafa;
	background-size: cover;
	background-position: center;
	padding: 30px;
	box-shadow: inset 0 -555px 555px -455px rgba(0, 0, 0, 0.1);
	height: 100%;
	margin: 0;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	-o-flex-direction: column;
	flex-direction: column;
	justify-content: center;
}

.form-group label {
	margin-bottom: 4px;
}

.login-modal {
	width: 100%;
	max-width: 460px;
	background-color: #fff;
	padding: 30px;
	box-shadow: 0 0 50px 0 rgba(0, 0, 0, 0.3), 0 0 0 9999px rgba(0, 0, 0, 0.1);
	border-top: 6px solid #009FB9;
}

.login-modal .logo {
	text-align: center;
	width: 100%;
	max-width: none;
	border: 0;
	margin: 10px 0 37px;
	padding: 5px;
	position: static;
	height: auto;
}

.login-modal h1 {
	background-color: #E9F6F9;
	margin: 0px -30px 20px;
	padding: 20px 30px 15px;
	font-size: 30px;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	justify-content: center;
}

.login-modal .logo img {
	padding: 0;
	max-width: 222px;
	width: 100%;
	max-height: 43px;
}

.login-modal .btn {
	padding: 14px;
}

.login-modal .login-help {
	display: block;
	text-align: center;
	margin-top: 15px;
}

.login-modal .login-help a {
	color: #00B0CB;
}

.input-wrap {
	position: relative;
}

.input-wrap input:focus ~ svg,
.input-wrap input:active ~ svg,
.input-wrap input:valid ~ svg {
	opacity: 1;
}

.input-wrap svg {
	position: absolute;
	left: 15px;
	top: 50%;
	transform: translateY(-50%);
	margin-top: -1px;
	opacity: 0.2;
	transition: 0.2s ease all;
}

.input-wrap input {
	padding-left: 43px;
}

/* Personal Records */
.personal-records {
  background-repeat: no-repeat;
  background-color: #00b0cb36!important;
  background-size: cover;
  background-position: center;
  padding: 30px;
  box-shadow: inset 0 -555px 555px -455px rgba(0, 0, 0, 0.1);
  height: 100%;
  margin: 0;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
  justify-content: center;
}

.personal-records-modal {
  box-shadow: none!important;
}

.questionnaire-modal {
  max-width: 720px;
  box-shadow: none!important;
}

.deskadmin-appointments {
  box-shadow: none!important;
  max-width: 100%;
}

/* Chrome, Safari, Edge, Opera */
input.postalcode-numbers::-webkit-outer-spin-button,
input.postalcode-numbers::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input.postalcode-numbers[type=number] {
  -moz-appearance: textfield;
}

/* Transitions / animations */
.tile {
	transition: 0.2s ease all;
	width: 100%;
}

.tile:hover {
	transform: scale(1.04);
	box-shadow: 0 0 50px 0 rgba(0, 0, 0, 0.1);
}

/* Hero */
.hero {
	background-color: #E9F6F9;
	padding: 30px 0;
}

.hero.test {
	padding: 0;
}

.hero.test .user-specs {
	padding: 20px 0 30px;
}

.back-to {
	margin-top: 8px;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	opacity: 0.5;
	color: #246DAC;
	transition: 0.2s ease all;
}

.back-to:hover {
	opacity: 1;
	color: #246DAC;
}

.back-to svg {
	margin-right: 8px;
}

/* Main content */
.main-content {
	padding-top: 30px;
	padding-bottom: 40px;
}

/* Tiles */
.tile {
	background-color: #f0f0f0;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	-o-flex-direction: column;
	flex-direction: column;
	-ms-align-items: center;
	align-items: center;
	text-align: center;
	padding: 15px;
}

.box {
	background-color: #fff;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	-o-flex-direction: column;
	flex-direction: column;
	width: 100%;
	padding: 25px;
	border: 1px solid #D4EEF3;
	color: #246DAC;
	min-height: 340px;
}

.box table a {
	color: #333;
	opacity: 0.25;
}

.box table a:hover {
	opacity: 0.6;
}

.box.add-box {
	opacity: 0.5;
	color: #E65A59;
	transition: 0.2s ease all;
}

.box.add-box:hover {
	opacity: 1;
	background-color: #fafafa;
}

.box.add-box {
	justify-content: center;
	-ms-align-items: center;
	align-items: center;
}

.box.add-box svg {
	font-size: 54px;
}

.carrier {

}

.carrier .form-control {
	max-width: 400px;
}

.box h1 {
	font-size: 22px;
	margin: 0 0 8px;
}

.box p {
	margin: 0;
}

table.box-list {
	width: 100%;
}

table.box-list td:last-child {
	text-align: right;
}

.tile.tile-xl svg {
	font-size: 66px;
	margin-bottom: 25px;
}

.tile.tile-xl {
	padding: 25px;
	margin: 0;
}

.tile.tile-xl h1 {
	font-size: 22px;
	margin: 0 0 4px;
}

.tile p {
	margin: 0;
}

.tile * {
	color: #fff;
}

.tile-devices {
	background-color: #4EBF8C;
}

.tile-transport {
	background-color: #009FB9;
}

.tile-devices.error {
	background-color: #FE585C;
}

.tile-devices span {
	white-space: nowrap;
	font-weight: 600;
}

.table-devices {
	text-align: left;
}

.table-devices tr th,
.table-devices tr td {
	border: none;
	padding: 8px 20px 0 0;
	vertical-align: middle;
}

.table-devices tr td.good {
	color: #4EBF8C;
}

.table-devices tr td.loading{
	color: #aaa;
}

.table-devices tr td.faulty {
	color: #FE585C;
}

.table-devices tr th:last-child,
.table-devices tr td:last-child {
	padding-right: 0;
}

[data-skipmeasurementstable] td:first-child {
    vertical-align: top;
}

.tile-sample {
	background-color: #246DAC
}

.tile.locked {
	background-color: #999;
	pointer-events: none;
	cursor: not-allowed;
}

.locked-msg {
	position: absolute;
	left: 15px;
	top: 0;
	right: 15px;
	bottom: 0;
	padding: 30px;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	-o-flex-direction: column;
	flex-direction: column;
	justify-content: center;
	-ms-align-items: center;
	align-items: center;
	background-color: rgba(255, 169, 65, 0.9);
	box-shadow: inset 0 0 0 999999px rgba(0, 0, 0, 0.05);
}

.locked-btn {
	position: relative;
	cursor: not-allowed;
}

.btn-lock {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background-color: rgba(255, 169, 65, 0.9);
	box-shadow: inset 0 0 0 999999px rgba(0, 0, 0, 0.05);
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: center;
	-ms-align-items: center;
	align-items: center;
}

.btn-alert{
	background-color: transparent;
	box-shadow: inset 0 0 0 1px rgba(255,255,255,1), inset 0 0 0 255px rgba(255,255,255,0);
}

.btn-alert:hover, .btn-alert:focus, .btn-alert:active{
	background-color: transparent;
	box-shadow: inset 0 0 0 1px rgba(255,255,255,1), inset 0 0 0 255px rgba(0,0,0,0.1);
}

.btn-info{
	border: none;
	background-color: transparent;
	color: #ccc;
	padding: 0;
	margin: 0 0 0 8px;
	font-size: 24px;
	cursor: pointer;
	transition: 0.2s ease all;
}

.btn-info:hover, .btn-info:focus, .btn-info:active{
	border: none;
	background-color: transparent;
	padding: 0;
	margin: 0 0 0 8px;
	font-size: 24px;
	cursor: pointer;
	color: #009FB9;
}

.tiles.tests {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-direction: row;
	-moz-flex-direction: row;
	-ms-flex-direction: row;
	-o-flex-direction: row;
	flex-direction: row;
	position: relative;
}

.tiles.tests:before {
	background-color: #E9F6F9;
	position: absolute;
	content: "";
	left: 0;
	right: 0;
	top: 0;
	height: 50%;
}

.tiles.tests .container {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-direction: row;
	-moz-flex-direction: row;
	-ms-flex-direction: row;
	-o-flex-direction: row;
	flex-direction: row;
	justify-content: center;
	flex-wrap: wrap;
}

.tiles.tests .tile-row {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-direction: row;
	-moz-flex-direction: row;
	-ms-flex-direction: row;
	-o-flex-direction: row;
	flex-direction: row;
	justify-content: center;
	flex-wrap: wrap;
	margin: 0 -7.5px;
}

.tiles.tests .tile.test {
	margin: 7.5px;
	width: 75px;
	height: 75px;
	z-index: 2;
	padding: 0;
	position: relative;
}

.tile.test {
	background-color: #009FB9;
}

.tile.test h3 {
	font-size: 12px;
	display: none;
}

.tile.test svg.main-icon {
	font-size: 36px;
	margin-top: auto;
	margin-bottom: auto;
}

.tile.inactive {
	background-color: #CACACA;
}

.tile.inactive:hover,
.tile.inactive:focus,
.tile.inactive:active{
	transform: none;
	box-shadow: none;
}

.tile.active {
	background-color: #246DAC;
}

.tile.done {
	background-color: #4EBF8C;
}

.sub-icon {
	position: absolute;
	right: 8px;
	top: 8px;
	font-size: 12px;
}

/* Tables */

.table-lifelines,
.table-personalia {
	margin-bottom: 0;
}

table.table-lifelines tr td {
	border-bottom: 1px solid #ddd;
}

table.table-lifelines tr td:first-of-type {
	box-shadow: inset 1px 0 0 0 #ddd;
}

table.table-lifelines tr td:last-of-type {
	box-shadow: inset -1px 0 0 0 #ddd;
}

.table-lifelines tr th,
.table-personalia tr th {
	background-color: #009FB9;
	color: #fff;
	white-space: nowrap;
	padding: 14px 25px;
	text-align: left;
}

.table-lifelines tr:nth-child(even) td,
.table-personalia tr:nth-child(even) td {
	background-color: #fff;
}

.table-lifelines tr td,
.table-personalia tr td {
	background-color: #F2FAFB;
	vertical-align: middle;
	white-space: nowrap;
	padding: 12px 25px;
	border: none;
	text-align: left;
}

.table-lifelines tr th:first-child {
	padding: 14px 25px 14px 20px;
}*/

.table-lifelines tr td:first-child {
	padding: 8px 25px 8px 20px;
}

.table-lifelines tr th:last-child {
	padding: 14px 20px 14px 20px;
}

.table-lifelines tr td:last-child {
	padding: 8px 20px 8px 20px;
}

.table-lifelines tr td:last-child {
	text-align: right;
}

.table-personalia tr td:first-child {
	width: 30%;
}

/* Table v2 */

.table-options {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: stretch;
	align-items: stretch;
	margin: 0;
	padding: 0;
}

.nav-pills .nav-link {
	border-radius: 50px;
	padding: 5px 20px;
	margin: 0;
}

.nav-pills {
	margin: 0;
}

.nav-pills .nav-item:not(:last-child) {
	margin-right: 15px;
}

.nav-pills .nav-link.all {
	box-shadow: inset 0 0 0 1px #246DAC;
	color: #246DAC;
}

.nav-pills .nav-link.upcoming {
	box-shadow: inset 0 0 0 1px #00ACC7;
	color: #00ACC7;
}

.nav-pills .nav-link.finished {
	box-shadow: inset 0 0 0 1px #4EBF8C;
	color: #4EBF8C;
}

.nav-pills .nav-link.noshow {
	box-shadow: inset 0 0 0 1px #E65A59;
	color: #E65A59;
}

.nav-pills .nav-link.mmse {
	box-shadow: inset 0 0 0 1px #FFA941;
	color: #FFA941;
}

.nav-pills .nav-link.all.active {
	background-color: #246DAC;
	color: #fff;
}

.nav-pills .nav-link.upcoming.active {
	background-color: #00ACC7;
	color: #fff;
}

.nav-pills .nav-link.finished.active {
	background-color: #4EBF8C;
	color: #fff;
}

.nav-pills .nav-link.noshow.active {
	background-color: #E65A59;
	color: #fff;
}

.nav-pills .nav-link.mmse.active {
	background-color: #FFA941;
	color: #fff;
}

.nav-tab-wrap {
	background: radial-gradient(farthest-side at 0% 50%, rgba(0, 0, 0, .2), rgba(0, 0, 0, 0)), radial-gradient(farthest-side at 100% 50%, rgba(0, 0, 0, .2), rgba(0, 0, 0, 0)) 100% 0;
	background-color: white;
	background-repeat: no-repeat;
	background-size: 10px 100%;
	display: block;
	width: 100%;
	overflow-y: visible;
	overflow-x: auto;
}

.nav-tab-wrap .shadow-hints {
	background: linear-gradient(to right, white 30%, rgba(255, 255, 255, 0)), linear-gradient(to left, white 30%, rgba(255, 255, 255, 0)) 100% 0;
	background-size: 50px 100%;
	background-repeat: no-repeat;
	max-width: none;
	margin-bottom: 0;
	width: 100%;
	display: table;
}

.table-tabs {
	overflow: auto;
}

.table-tabs .nav {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	flex-wrap: nowrap;
}

.table-tabs li.nav-item {
	white-space: nowrap;
}

.table-search {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: stretch;
	align-items: stretch;
	margin-left: auto;
	flex-grow: 0;
	padding-left: 30px;
	min-height: 36px;
  max-width: 400px;
  width: 100%;
}

.table-search .input-wrap {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	width: 100%;
}

.table-search .input-wrap input {
	position: relative;
	border: 1px solid #ddd;
	margin-left: auto;
}

.table-search .input-wrap input {
	padding-right: 35px;
	padding-left: 10px;
	outline: none;
	transition: none;
	width: 200px;
}

.table-search .input-wrap input:focus,
.table-search .input-wrap input:active {
	width: 100%;
}

.table-search .input-wrap svg {
	position: absolute;
	right: 10px;
	top: 50%;
	left: auto;
	transform: translateY(-50%);
	color: #bbb;
	transition: 0.2s ease all;
	opacity: 1;
}

.table-search .input-wrap input:valid ~ svg {
	color: #246DAC;
}

.table-paging, .dataTables_paginate {
	margin-top: auto;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 20px;
	padding-top: 30px!important;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	-o-flex-direction: column;
	flex-direction: column;
	justify-content: center;
	-ms-align-items: center;
	align-items: center;
    float: inherit!important;
}

.page-link,
.page-item:first-child .page-link,
.page-item:last-child .page-link,
.dataTables_wrapper .dataTables_paginate .paginate_button {
	margin: 0 5px!important;
	width: 37px!important;
	height: 37px!important;
	border-radius: 50px!important;
	font-size: 16px!important;
	color: #246DAC!important;
	letter-spacing: 0!important;
	text-align: center!important;
    background: transparent!important;
      border: 1px solid #dee2e6!important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
    display: block;
    padding: 9px 13px;
    float: left;
  line-height: 100%;
}

.page-link:focus {
	color: #246DAC;
}

.page-item.active .page-link, 
.dataTables_wrapper .dataTables_paginate .paginate_button.current {
	background-color: #246DAC!important;
	color: #fff!important;
	border-color: #246DAC!important;
}

.page-link:hover, .page-link:focus, 
.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
    z-index: 2;
    color: #246DAC!important;
    text-decoration: none;
    background-color: #e9ecef!important;
    background: #e9ecef!important;
    border-color: #dee2e6;
}

table tr.upcoming td:first-of-type {
	box-shadow: inset 5px 0 0 0 #00ACC7;
}

table tr.finished td:first-of-type {
	box-shadow: inset 5px 0 0 0 #4EBF8C;
}

table tr.noshow td:first-of-type {
	box-shadow: inset 5px 0 0 0 #E65A59;
}

table tr.mmse td:first-of-type {
	box-shadow: inset 5px 0 0 0 #FFA941;
}

/* Hero locations + tests */
.lts{
	margin: 0 auto;
	max-width: 700px;
}

.hero .lts {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	-o-flex-direction: column;
	flex-direction: column;
	justify-content: center;
	-ms-align-items: center;
	align-items: center;
}

.hero .lts h1 {
	color: #246DAC;
	font-size: 45px;
	margin: 0 0 6px;
	text-align: center;
}

.hero .lts p {
	font-size: 22px;
	color: #00B0CB;
	font-family: 'Calibre', 'Helvetica neue', 'arial', sans-serif;
	font-weight: 400;
	margin: 0 0 18px;
	text-align: center;
}


/* Hero tests */
.hero .user-specs {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	-o-flex-direction: column;
	flex-direction: column;
	justify-content: center;
	-ms-align-items: center;
	align-items: center;
}

.hero .user-specs h1 {
	color: #246DAC;
	font-size: 45px;
	margin: 0 0 6px;
	text-align: center;
}

.hero .user-specs p {
	font-size: 22px;
	color: #00B0CB;
	font-family: 'Calibre', 'Helvetica neue', 'arial', sans-serif;
	font-weight: 400;
	margin: 0 0 18px;
	text-align: center;
}

/* Forms */

form {
	color: #333;
}

.form-label {
	margin-top: 10px;
	margin-bottom: 2px;
	font-weight: bold;
	cursor: pointer;
}

.form-group {
	margin-bottom: 20px;
}

.form-control {
	border-radius: 0;
	border: 1px solid #DDDDDD;
	padding: 9px 12px 10px;
}

select.form-control{
    padding: 0.375rem 0.75rem;
}

.search-person .input-wrap {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	margin-bottom: 30px;
}

.appointment-questions-form input[type=radio] {
    -ms-transform: scale(1.3);
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
    margin-right: 10px !important;
    margin-bottom: 2px;
   height:20px;
  width:20px;
}

/* Test blocks */
.test-block h2 .btn {
	font-family: 'Arial', 'Helvetica Neue', Helvetica, Arial, sans-serif;
	font-weight: 600;
}

.stable-connection {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
}

.green-check {
	color: #4EBF8C;
	font-size: 26px;
	margin-right: 14px;
}

.red-check {
	color: #FF3A0F;
	font-size: 22px;
	margin-right: 8px;
}

/* Blood sampling */
.blood-sample {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-direction: row;
	-moz-flex-direction: row;
	-ms-flex-direction: row;
	-o-flex-direction: row;
	flex-direction: row;
	-ms-align-items: stretch;
	align-items: stretch;
	margin-bottom: 12px;
}

.blood-sample span {
	background-color: #F7F7F6;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: flex-start;
	-ms-align-items: center;
	align-items: center;
	min-width: 160px;
	color: #333;
	border: 1px solid #DDDDDD;
	padding: 0 12px 0 28px;
}

.blood-sample .form-control {
	max-width: 200px;
}

.blood-sample .form-control.scanning {
	color: #aaa;
}

.bloodsample-msg {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	margin-left: 15px;
	color: #333;
}

.blood-sample .btn {
	min-width: 150px;
}

.bloodsample-msg svg {
	margin-right: 7px;
	font-size: 19px;
}

.bloodsample-msg.warning svg {
	color: #FFA941;
}

.bloodsample-msg.positive svg {
	color: #4EBF8C;
}

.citraat span {
	box-shadow: inset 15px 0 #4FB6F2, inset 16px 0 #ddd;
}

.serum-mini span {
	box-shadow: inset 15px 0 #FFC24A, inset 16px 0 #ddd;
}

.serum-maxi span {
	box-shadow: inset 15px 0 #E83333, inset 16px 0 #ddd;
}

.hepa-mini span {
	box-shadow: inset 15px 0 #97FFBE, inset 16px 0 #ddd;
}

.hepa-maxi span {
	box-shadow: inset 15px 0 #12A636, inset 16px 0 #ddd;
}

.edta span {
	box-shadow: inset 15px 0 #F24FF2, inset 16px 0 #ddd;
}

.nafluoride span {
	box-shadow: inset 15px 0 #ffffff, inset 16px 0 #ddd;
}

.temperatuur span {
	padding-left: 12px;
}

.temperatuur span svg {
	margin-right: 10px;
	margin-left: 12px;
}

.blood-sample input {
	border: none;
	border-top: 1px solid #DDDDDD;
	border-bottom: 1px solid #DDDDDD;
	height: auto;
	z-index: 2;
}

.blood-sample input.form-control:focus{
	border-color: #ddd;
	box-shadow: none;
	background-color: #f9f9f9;
}

.tile-holder {
	margin-bottom: 15px;
}

/* Tooltip */
.tooltip{
	opacity: 1;
}

.tooltip-inner {
    max-width: 400px;
    padding: 5px 11px 8px;
    color: #246DAC;
    text-align: center;
    background-color: #fff;
    border-radius: 0;
	opacity: 1;
	border: 1px solid #246DAC;
	box-shadow: 0px 2px 5px 0 rgba(0,0,0,0.15)
}

.bs-tooltip-auto[x-placement^=top] .arrow, .bs-tooltip-top .arrow{
	bottom: 1px;
}

.tooltip.show {
    opacity: 1;

} 

.tooltip.bs-tooltip-auto[x-placement^=top] .arrow::before, .tooltip.bs-tooltip-top .arrow::before {
    margin-left: 0px;
    content: "";
    border-width: 5px 5px 0;
    border-top-color: #246DAC;
}

.tooltip.bs-tooltip-auto[x-placement^=right] .arrow::before, .tooltip.bs-tooltip-right .arrow::before {
    margin-top: -0px;
    content: "";
    border-width: 5px 5px 5px 0;
    border-right-color: #246DAC;
}

.tooltip.bs-tooltip-auto[x-placement^=bottom] .arrow::before, .tooltip.bs-tooltip-bottom .arrow::before {
    margin-left: -3px;
    content: "";
    border-width: 0 5px 5px;
    border-bottom-color: #246DAC;
}

.tooltip.bs-tooltip-auto[x-placement^=left] .arrow::before, .tooltip.bs-tooltip-left .arrow::before {
    right: 0;
    margin-top: 0;
    content: "";
    border-width: 5px 0 5px 5px;
    border-left-color: #246DAC;
}

.tooltip .arrow::after{
	    position: absolute;
    content: "";
    border-color: transparent;
    border-style: solid;
	z-index:2;
}

.tooltip.bs-tooltip-auto[x-placement^=top] .arrow::after, .tooltip.bs-tooltip-top .arrow::after {
    margin-left: 1px;
    border-width: 4px 4px 0;	
    border-top-color: #fff;
}

.tooltip.bs-tooltip-auto[x-placement^=right] .arrow::after, .tooltip.bs-tooltip-right .arrow::after {
    margin-top: 0px;
	margin-left: 2px;
    border-width: 5px 5px 5px 0;
    border-right-color: #fff;
}

.tooltip.bs-tooltip-auto[x-placement^=bottom] .arrow::after, .tooltip.bs-tooltip-bottom .arrow::after {
    margin-left: -3px;
	bottom: -1px;
    border-width: 0 5px 5px;
    border-bottom-color: #fff;
}

.tooltip.bs-tooltip-auto[x-placement^=left] .arrow::after, .tooltip.bs-tooltip-left .arrow::after {
    margin-top: 0;
	right: 2px;
    border-width: 5px 0 5px 5px;
    border-left-color: #fff;
}


@media(min-width: 768px) {
	.row.tiles {
		position: relative;
	}

	.tile-holder {
		margin-bottom: 0;
	}

	.tile-holder {
		transition: .51s ease all;
	}
}

@media (min-width: 576px) {
	.tile.test h3 {
		display: -webkit-flex;
		display: -moz-flex;
		display: -ms-flex;
		display: -o-flex;
		display: flex;
		font-size: 14px;
	}

	.tiles.tests .tile.test {
		width: 112px;
		height: 112px;
	}
}

@media(min-width: 768px) {

	/* Hero */
	.hero {
		padding: 50px 0;
	}


	.hero.test .user-specs {
		padding: 30px 0 50px;
	}

	.back-to {
		margin-top: 15px;
	}

	/* Main content */
	.main-content {
		padding-top: 50px;
		padding-bottom: 60px;
	}

	/* Tiles */

	.tiles.tests .tile.test {
		margin: 7.5px;
		width: 145px;
		height: 145px;
		z-index: 2;
		padding: 0;
		position: relative;
	}

	.tile.test h3 {
		font-size: 18px;
	}

	.tile.test svg.main-icon {
		font-size: 56px;
		margin-top: auto;
		margin-bottom: auto;
	}

	.sub-icon {
		font-size: 16px;
	}

	/* Test block */
	.test-block {
		border: 1px solid #E8E8E8;
		padding: 30px;
	}
}

@media (min-width: 992px) {

	/* Tiles */
	.tile.tile-xl,
	.box {
		padding: 30px;
	}

	.tile.tile-xl h1,
	.box h1 {
		font-size: 32px;
	}
}

@media (min-width: 1200px) {

	/* Tiles */
	.tile.tile-xl,
	.box {
		padding: 45px;
	}
}

table.dataTable thead .sorting_asc{
background-image: url(//assets.bettyblocks.com/0d41e4e49b6f4066bcfe0d376087cc9f_assets/files/sort_asc.png?_=a057e988ea499c3ddc5bf7a605efadf5);
}
table.dataTable thead .sorting_desc{
  background-image: url(//assets.bettyblocks.com/0d41e4e49b6f4066bcfe0d376087cc9f_assets/files/sort_desc.png?_=8495de5e71b11842613737d5cb731a74);
}
table.dataTable thead .sorting{
background-image: url(//assets.bettyblocks.com/0d41e4e49b6f4066bcfe0d376087cc9f_assets/files/sort_both.png?_=6f711f8fb3c0b0c4dbbe1c2db4a34a06);
}

table.dataTable tbody td, table.dataTable tbody th, table.dataTable thead th, table.dataTable thead td {
    padding: 12px 25px;
}

table.dataTable thead th {
    box-shadow: inset -1px 0 0 0 rgba(0,0,0,0.15);
}

table.dataTable thead .sorting, table.dataTable thead .sorting_asc, table.dataTable thead .sorting_desc, table.dataTable thead .sorting_asc_disabled, table.dataTable thead .sorting_desc_disabled {
    cursor: pointer;
    *cursor: hand;
    background-repeat: no-repeat;
    background-position: center right 20px;
}

.sort-free{
background-image:none !important;
}

tr.finished {
    opacity: 0.5;
}

.empty-card{
	padding: 50px;
  	text-align: center;
}

.empty-card a.btn.btn-primary {
    color: #fff;
}

.scan-icon{
font-size: 80px;
    margin-bottom: 30px;
    color: #00ACC7;
}

.scan-icon.icon-small{
font-size:40px;
}

h2 span.heading-help{
font-size: 20px;
   font-weight: 300;
   color: #cccccc;
  margin-top: 10px;
}