.jsa-container {
  border: 1px solid #ccc;
  padding: 1rem;
  max-width: 600px;
  margin: auto;
}

.jsa-question {
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.jsa-nav {
  margin-top: 1rem;
}

.jsa-nav .button {
  margin-right: 0.5rem;
  background-color: #5472d2;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  color: #f7f7f7;
}

.jsa-nav .button:hover {
	
  background-color: #3c5ecc;
}

.jsa-step select {
	cursor: pointer;
	padding-left: 12px;
  	padding-right: 12px;
}

.jsa-step label.jsa-label-radio {
	display:block;
	line-height:40px;
	margin-bottom: 0;
}

.jsa-step label input[type="radio"] {
	
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
	position: relative;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	height: 40px;
	width: 40px;
	transition: all 0.15s ease-out 0s;
	background: #cbd1d8;
	border: none;
	color: #fff;
	cursor: pointer;
	display: inline-block;
	margin-right: 0.5rem;
	outline: none;
	z-index: 1000;
	border-radius: 50%;
}

.jsa-step label input[type="radio"]::after {
	border-radius: 50%;
}

.jsa-step label input[type="radio"]:hover {
	background: #9faab7;
}

.jsa-step label input[type="radio"]:checked {
	background: #40e0d0;
}

.jsa-step label input[type="radio"]:checked::before {
	width: 40px;
	height: 40px;
	display:flex;
	content: '\f00c';
	font-size: 25px;
	font-weight:bold;
	position: absolute;
	align-items:center;
	justify-content:center;
	font-family:'Font Awesome 5 Free';
}

.jsa-step label input[type="radio"]:checked::after {
	-webkit-animation: click-wave 0.65s;
	-moz-animation: click-wave 0.65s;
	animation: click-wave 0.65s;
	background: #40e0d0;
	content: '';
	display: block;
	position: relative;
	z-index: 100;
}

.jsa-step label.jsa-label-checkbox {
	display:block;
	line-height:40px;
	margin-bottom: 0;
}

.jsa-step label input[type="checkbox"] {
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
	position: relative;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	height: 40px;
	width: 40px;
	transition: all 0.15s ease-out 0s;
	background: #cbd1d8;
	border: none;
	color: #fff;
	cursor: pointer;
	display: inline-block;
	margin-right: 0.5rem;
	outline: none;
	z-index: 1000;
} 

.jsa-step label input[type="checkbox"]:hover {
	background: #9faab7;
}

.jsa-step label input[type="checkbox"]:checked {
	background: #40e0d0;
}

.jsa-step label input[type="checkbox"]:checked::before {
	width: 40px;
	height: 40px;
	display:flex;
	content: '\f00c';
	font-size: 25px;
	font-weight:bold;
	position: absolute;
	align-items:center;
	justify-content:center;
	font-family:'Font Awesome 5 Free';
}

.jsa-step label input[type="checkbox"]:checked::after {
	-webkit-animation: click-wave 0.65s;
	-moz-animation: click-wave 0.65s;
	animation: click-wave 0.65s;
	background: #40e0d0;
	content: '';
	display: block;
	position: relative;
	z-index: 100;
}

.jsa-result-container {
    margin-bottom: 30px;
    padding: 20px;
    background: #f9f9f9;
    /*border-left: 4px solid #0073aa;*/
    border-radius: 4px;
}

.jsa-result-bar {
    position: relative;
    background: #eee;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 4px;
    display: flex;
    justify-content: space-between;
	display: none;
}

.jsa-result-segment {
    width: 25%;
    text-align: center;
    font-weight: bold;
    position: relative;
}

.jsa-segment-1 { background-color: #d9534f; }   /* rot */
.jsa-segment-2 { background-color: #f0ad4e; }   /* orange */
.jsa-segment-3 { background-color: #5bc0de; }   /* blau */
.jsa-segment-4 { background-color: #5cb85c; }   /* grün */

.jsa-indicator {
    position: absolute;
    top: -25px;
    transform: translateX(-50%);
    background: #0073aa;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: bold;
}

.jsa-result-text {
    margin-top: 10px;
    line-height: 1.5;
}

.jsa-registration-section {
	margin-top: 40px;
	padding: 20px;
	background: #f9f9f9;
	/*border: 1px solid #ddd;*/
	border-radius: 4px;
}

.jsa-registration-section h3 {
	margin-bottom: 15px;
}

.jsa-registration-tabs {
	/*margin-bottom: 15px;*/
	margin-bottom: 0px;
}

.jsa-tab-toggle {
	display: inline-block;
	/*padding: 8px 16px;*/
	padding: 16px 24px;
	margin-right: 5px;
	/*border: 1px solid #ccc;*/
	border:none;
	background: ##9faab7;
	cursor: pointer;
	border-radius: 4px 4px 0 0;
	font-weight: bold;
}

.jsa-tab-toggle.active {
	background: #fff;
	/*border-bottom: 1px solid #f9f9f9;*/
}

.jsa-tab-content {
	padding: 10px;
	/*border: 1px solid #ccc;*/
	border-top: none;
	background: #fff;
	border-radius: 0 0 4px 4px;
}

.jsa-notice {
    padding: 15px 20px;
    margin-bottom: 20px;
    border-left: 5px solid #2ecc71;
    background-color: #ecf9f1;
    color: #2f6846;
    font-size: 16px;
    border-radius: 4px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.jsa-notice.jsa-success {
    border-color: #2ecc71;
    background-color: #ecf9f1;
    color: #2f6846;
}

.jsa-notice.jsa-error {
    border-color: #e74c3c;
    background-color: #fcebea;
    color: #a94442;
}

.jsa-result-score-highlight,
.jsa-percent-display {
    text-align: center;
    font-size: 2.5em;
    font-weight: bold;
    margin: 0.5em 0;
}

.jsa-container .button.button-primary {
  margin-right: 0.5rem;
  background-color: #5472d2;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  color: #f7f7f7;	
}

.jsa-container .button.button-primary:hover {
	
  background-color: #3c5ecc;
}

fieldset.jsa-consents {

	margin-bottom: 40px;
}

fieldset.jsa-consents legend {

	font-weight: 600;
	margin-bottom: 20px;
}

.jsa-consent-item {
	margin-bottom: 20px;
}


.jsa-consent-item label {
	/*display:block;*/
	display: inline;
	line-height:40px;
	margin-bottom: 0;
}

.jsa-consent-item input[type="checkbox"] {
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
	position: relative;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	height: 40px;
	width: 40px;
	transition: all 0.15s ease-out 0s;
	background: #cbd1d8;
	border: none;
	color: #fff;
	cursor: pointer;
	display: inline-block;
	margin-right: 0.5rem;
	outline: none;
	z-index: 1000;
} 

.jsa-consent-item input[type="checkbox"]:hover {
	background: #9faab7;
}

.jsa-consent-item input[type="checkbox"]:checked {
	background: #40e0d0;
}

.jsa-consent-item input[type="checkbox"]:checked::before {
	width: 40px;
	height: 40px;
	display:flex;
	content: '\f00c';
	font-size: 25px;
	font-weight:bold;
	position: absolute;
	align-items:center;
	justify-content:center;
	font-family:'Font Awesome 5 Free';
}

.jsa-consent-item input[type="checkbox"]:checked::after {
	-webkit-animation: click-wave 0.65s;
	-moz-animation: click-wave 0.65s;
	animation: click-wave 0.65s;
	background: #40e0d0;
	content: '';
	display: block;
	position: relative;
	z-index: 100;
}

#jsa-tab-login .tml-field-wrap.tml-rememberme-wrap label {
	/*display:block;*/
	display: inline;
	line-height:40px;
	margin-bottom: 0;
}

#jsa-tab-login .tml-field-wrap.tml-rememberme-wrap input[type="checkbox"] {
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
	position: relative;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	height: 40px;
	width: 40px;
	transition: all 0.15s ease-out 0s;
	background: #cbd1d8;
	border: none;
	color: #fff;
	cursor: pointer;
	display: inline-block;
	margin-right: 0.5rem;
	outline: none;
	z-index: 1000;
} 

#jsa-tab-login .tml-field-wrap.tml-rememberme-wrap input[type="checkbox"]:hover {
	background: #9faab7;
}

#jsa-tab-login .tml-field-wrap.tml-rememberme-wrap input[type="checkbox"]:checked {
	background: #40e0d0;
}

#jsa-tab-login .tml-field-wrap.tml-rememberme-wrap input[type="checkbox"]:checked::before {
	width: 40px;
	height: 40px;
	display:flex;
	content: '\f00c';
	font-size: 25px;
	font-weight:bold;
	position: absolute;
	align-items:center;
	justify-content:center;
	font-family:'Font Awesome 5 Free';
}

#jsa-tab-login .tml-field-wrap.tml-rememberme-wrap input[type="checkbox"]:checked::after {
	-webkit-animation: click-wave 0.65s;
	-moz-animation: click-wave 0.65s;
	animation: click-wave 0.65s;
	background: #40e0d0;
	content: '';
	display: block;
	position: relative;
	z-index: 100;
}

.tml-button {
  margin-right: 0.5rem;
  background-color: #5472d2;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  color: #f7f7f7;	
  padding: 13px 29px;
}

.tml-button:hover {
	
  background-color: #3c5ecc;
}

.tml-links {

	padding-left: 0;;
}

.tml-links .tml-lostpassword-link {
	list-style-type: none;
}

.jsa-product {

	background-color: #fff;
	border-radius: 4px;
	padding: 20px 20px 60px 20px;
	position: relative;
	border-color: #40e0d0;
	border-style: solid;
	border-width: 4px;
}

.jsa-product form {
	position: absolute;
	right: 20px;
}

.jsa-product form .button.alt {
  margin-right: 0.5rem;
  background-color: #5472d2;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  color: #f7f7f7;	
}

.jsa-product form .button.alt:hover {
	
  background-color: #3c5ecc;
}

.logged-in .jsa-registration-section {

	display: none;
}

.jsa-question-block {

	margin-bottom: 40px;
}

/*.jsa-document-upload-form input[type="file"] {
  display: none;
}*/

.jsa-document-upload-form .button {
  margin-right: 0.5rem;
  background-color: #5472d2;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  color: #f7f7f7;
}

.jsa-document-upload-form .button:hover {
	
  background-color: #3c5ecc;
}

/*.jsa-document-upload-form .button-label {

	display: inline-block;
	padding-top: 13px;
	padding-right: 29px;
	padding-bottom: 13px;
	padding-left: 29px;
	margin-right: 0.5rem;
    background-color: #5472d2;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    color: #f7f7f7;
}*/

.jsa-document-list-h {

	margin-top: 80px;
}