body {
	background-image: linear-gradient(to right, #d7e0e9 , #9ab1c7);
	color: #222222;
}

.form-control {
	font-size: 1.15rem;
	border: 1px solid #aaa;
	background-color: #eeeeee;
	border-radius: 0;
	padding: .2rem .50rem;
	height: 40px;
}

.form-control-inactive {
	font-size: 1.15rem;
	border: 0;
	background-color: #eeeeee;
	border-radius: 0;
	padding: .2rem .50rem;
	height: 40px;
}

a {
	color: #6cb535;
}

a:hover {
	text-decoration: none;
}

.button, .btn-lg {
	margin-left: auto;
	margin-right: auto;
	display: block;
	background-color: #6cb535;
	color: #fff !important;
	text-align: center;
	font-size: 24px;
	font-weight: bold;
	line-height: 31px;
	text-decoration: none;
	border-radius: 0;
	border: 1px solid #6cb535;
	cursor: pointer;
	box-shadow: 3px 3px 10px rgba(0,0,0,0.3);
	max-width: 600px;
}

.button:hover, .btn-lg:hover {
	background-color: rgba(30,120,30, 0.7);
	border: 1px solid rgba(30,120,30, 0.7);
	color: #fff;
	text-decoration: none;
}

.button.orange {
	background-color: #da9901;
	border: 1px solid #da9901;
}

.button.orange:hover {
	background-color: rgba(218,153,1, 0.7);
	border: 1px solid rgba(218,153,1, 0.7);
}

@media (max-width: 767px) {
	#topHeaderText {
		padding-top: calc(30vw) !important;
	}
}

/*
.submitButton {
	background: url("../gfx/submitButton.png") no-repeat top right transparent;
}
*/

label {
	margin-bottom: 0.2rem;
    color: #111111;
    font-size: 18px;
	padding-left: 3px;
	margin-top:7px;
	margin-bottom:0px;
	font-weight: bold;
}

.input-readonly {
	font-size: 18px;
	height: 35px;
	width: 110px;
	text-align: right;
	background-color: #eeeeee;
	border-radius: 0;
	border: 0;
	padding: 2px 10px;
	margin-top: 0px;
	font-weight: bold;
}

.messageFrame {
	width: 100%;
	color: #222222;
	padding: 10px 20px;
	text-align: center;
	font-size: 20px;
	line-height: 28px;
	margin-bottom: 20px;
}

.yellow {
	background-color: #ffd43c;
	color: #222;
}

.green {
	background-color: #5abf52;
	color: #fff;
}

.linkNoUnderline:hover {
	text-decoration: none;
}

.headerBox {
	font-size: 20px;
	color: #222222;
}

.horiz_divider {
	padding: 0px;
	margin: 0px;
	font-size: 1px;
	height: 1px;
	background-color: #888;
}

.divider_right {
	border-right: 0;
}

@media (min-width: 767px) {
	.divider_right {
		border-right:3px solid #eee;
	}
}

@media (max-width: 640px) {
	.headerBox {
		font-size: 15px;
	}
}

.inactiveButton {
	background-color:rgba(0,0,0,0.2);
	box-shadow:3px 5px 10px rgba(0,0,0,0.4);
	bottom: 30px;
	font-size:22px;
}

.obligatoryMark {
	color: red;
}

@media (max-width: 640px) {
	.headerText {
		font-size: 6vw !important;
		line-height:8vw !important;
	}
}

.pain_meter_cell {
	width: 34px;
	height: 80px;
	float: left;
	border: 0px solid black;
	margin-right: 7px;
}	

.pain_meter_cell .indicatorLabel {
	float: left;
	margin-top: 36px;
	font-size: 20px;
	width: 32px;
	text-align: center;
	font-weight: bold;
}

/* RADIOBUTTONS */

/* Customize the label (the radioContainer) */
.radioContainer {
	display: block;
	position: relative;
	padding-left: 40px;
	margin-top: 4px;
	margin-bottom: 6px;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	font-size:19px;
}	

/* Hide the browser's default radio button */
.radioContainer input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}

/* Create a custom radio button */
.radioContainer .checkmark {
	position: absolute;
	top: 0;
	left: 0;
	height: 32px;
	width: 32px;
	background-color: #eeeeee;
	border-radius: 0%;
	border: 1px solid #aaa;
}

.radioContainer .checkmark.disabled {
	border: 0;
}

/* On mouse-over, add a grey background color */
.radioContainer:hover input ~ .checkmark {
	background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.radioContainer input:checked ~ .checkmark {
	background-color: #eeeeee;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.radioContainer .checkmark:after {
	content: "";
	position: absolute;
	display: none;
}

/* Show the indicator (dot/circle) when checked */
.radioContainer input:checked ~ .checkmark:after {
	display: block;
}

/* Style the indicator (dot/circle) */
.radioContainer .checkmark:after {
	/* left: 10px; */
	/* top: 5px; */
	width: 9px;
	height: 18px;
	/* border: solid white; */
	/* border-width: 0 4px 4px 0; */
	/* -webkit-transform: rotate(45deg);*/
	/*-ms-transform: rotate(45deg);*/
	/*transform: rotate(45deg);*/
	color:#111;
	
	content: "\00d7"; /* This will render the 'X' */
	font-size: 40px;
	position: relative;
	bottom: 19px;
	left: 1px;
	font-weight: bold;
	text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
}

.pain_meter_cell .radioContainer .checkmark:after {
	bottom: 21px;
	left: -1px;
}

  
/* CHECKBOXES */

/* Customize the label (the checkBoxContainer) */
.checkBoxContainer {
	display: block;
	position: relative;
	padding-left: 40px;
	margin-bottom: 12px;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

/* Hide the browser's default checkbox */
.checkBoxContainer input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}

/* Create a custom checkbox */
.checkBoxContainer .checkmark {
	position: absolute;
	top: 3px;
	left: 0;
	height: 32px;
	width: 32px;
	background-color: #fafafa;
	border: 1px solid #666;
	border-radius: .25rem;
}

/* On mouse-over, add a grey background color */
.checkBoxContainer:hover input ~ .checkmark {
	background-color: #ddd;
}

/* When the checkbox is checked, add a blue background */
.checkBoxContainer input:checked ~ .checkmark {
	background-color: #f26419;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkBoxContainer .checkmark:after {
	content: "";
	position: absolute;
	display: none;
}

/* Show the checkmark when checked */
.checkBoxContainer input:checked ~ .checkmark:after {
	display: block;
}

/* Style the checkmark/indicator */
.checkBoxContainer .checkmark:after {
	left: 10px;
	top: 5px;
	width: 9px;
	height: 18px;
	border: solid white;
	border-width: 0 4px 4px 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

.terms_h1 {
	font-size: 18px;
	font-weight: bold;
	margin-top: 7px;
	margin-bottom: 2px;
}

.terms_h2 {
	font-size: 16px;
	font-weight: bold;
	margin-top: 7px;
	margin-bottom: 2px;
}

/* DATEPICKER */
.gj-datepicker .input-group-append {
	margin-left: 0;
}

.input_textfield.datepicker {
	float:left;
	display: inline;
	width: 120px !important;
	padding:2px 6px;
	background-color:#ffffff;
	/* border-top-left-radius: 4px; */
	/* border-bottom-left-radius: 4px; */
	line-height: 35px;
	/* border: 0px; */
}

.gj-datepicker .btn {
	color: rgba(158, 208, 196, 0.9);
	height: 41px;
	font-size: 18px;
	background-color: #fff;
	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;
}

.gj-datepicker-bootstrap [role="right-icon"] button {
	width: 40px;
}

/* overwrites for datepicker colors */
.gj-picker-bootstrap table tr td.today div {
    color: rgba(158, 208, 196, 0.8);
}

.gj-picker-bootstrap table tr td.selected.gj-cursor-pointer div {
    background-color: rgba(158, 208, 196, 0.7);
    border-color: rgba(158, 208, 196, 0.7);
}

.gj-datepicker-bootstrap :focus, .gj-datepicker-bootstrap :active {
    box-shadow: 0 0 0 0.2rem rgb(114 36 114 / 15%);
}