/* ==========================  AUFBAU  ========================== */

html {
  height: 100%;
}
body {
  font-family: sans-serif;
  font-size: 14px;
  border-top: 17px solid #9eb934;
}
body a.inlineLink {
  text-decoration: underline;
  color: #0290c5;
  cursor: pointer;
  font-weight: bold;
}
body .error {
  color: #c40000;
}
body .error a.inlineLink {
  color: #b40000;
}
body .error a.inlineLink:hover,
body .error a.inlineLink:active,
body .error a.inlineLink:focus {
  color: darkred;
}
body .warning {
  color: #d87000;
}
body .warning a.inlineLink {
  color: #ee7500;
}
body .warning a.inlineLink:hover,
body .warning a.inlineLink:active,
body .warning a.inlineLink:focus {
  color: #dc6500;
}
body .pageHeader {
  max-width: 1170px;
  width: 100%;
  margin: 0px auto;
}
body .pageHeader .logo {
  margin-right: 40px;
}
body .pageHeader .logo img {
  max-width: 100%;
  width: 400px;
}
body .pageContent {
  position: relative;
  max-width: 1170px;
  width: 100%;
  margin: 0px auto;
  padding: 15px;
}
body .pageContent .main {
  max-width: 500px;
  width: 100%;
  margin: 0px auto;
}
body .pageContent .main .frame .title {
  color: #9eb934;
  font-size: 16px;
}
body .pageContent .video {
  display: none;
}
body .pageContent .video .videoContainer {
  width: 300px;
  cursor: pointer;
}
body .pageContent .video .videoContainer .videoPreview {
  position: relative;
  border: 4px solid #9eb934;
}
body .pageContent .video .videoContainer .videoPreview img {
  width: 100%;
}
body .pageContent .video .videoContainer .playIcon {
  position: absolute;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 25px;
  text-align: center;
  vertical-align: middle;
  padding-left: 2px;
  font-size: 22pt;
  top: 60px;
  left: 125px;
  opacity: 1;
  background-color: #9eb934;
  opacity: 0.5;
  color: white;
}
body .pageContent .video .videoContainer:hover .playIcon {
  opacity: 0.9;
}
body .pageContent .video .videoContainer .videoText {
  text-align: center;
  font-size: 10pt;
  padding: 3px 5px;
}
@media (max-width: 991px) {
  body .pageContent .video {
    text-align: center;
  }
  body .pageContent .video .videoContainer {
    margin-top: 20px;
    display: inline-block;
  }
}
@media (min-width: 992px) {
  body .pageContent .video {
    margin: 0;
    position: fixed;
    right: 30px;
    top: 100px;
  }
  body .pageContent .video > div {
    padding: 0;
  }
}
body .pageContent .sponsoring {
  display: none;
  text-align: center;
}
body .pageContent .sponsoring .titleA {
  font-size: 16pt;
  color: #7a9029;
  font-weight: bold;
  margin-top: 30px;
  margin-bottom: 0px;
}
body .pageContent .sponsoring .titleB {
  margin-top: 30px;
  margin-bottom: 10px;
  color: #7a9029;
  font-weight: bold;
  font-size: 14pt;
}
body .pageContent .sponsoring .partners a {
  box-sizing: border-box;
  width: 18%;
  padding: 0 20px;
  display: inline-block;
}
body .pageContent .sponsoring .partners a img {
  width: 100%;
}
body .pageFooter {
  border-top: 2px solid #9eb934;
  padding: 8px 15px 15px 15px;
  font-weight: bold;
}
body .pageFooter .footerContent {
  max-width: 1170px;
  width: 100%;
  margin: 0px auto;
  display: flex;
}
body .pageFooter .copyright {
  flex: 1;
}
body .pageFooter .links {
  flex: 1;
  text-align: right;
}
body .pageFooter .links a {
  display: inline-block;
  color: black;
  margin: 0 15px;
  text-decoration: none;
}
@media (max-width: 767px) {
  body .pageHeader {
    padding: 10px 15px 0 15px;
    text-align: center;
  }
}
@media (min-width: 768px) {
  body {
    height: 100%;
    display: flex;
    flex-direction: column;
  }
  body .pageHeader {
    padding: 10px 15px 20px 15px;
  }
  body .pageContent {
    flex: 1;
    height: 100%;
    overflow-y: auto;
  }
}
body #languageSelection {
  position: absolute;
  top: 8px;
  right: 8px;
}
body #languageSelection .current .shortcut {
  display: inline-block;
}
body #languageSelection .current .displayname {
  display: none;
}
body #languageSelection .list .shortcut {
  display: none;
}
body #languageSelection .list .displayname {
  display: inline-block;
}
body #languageSelection .list {
  border: 1px solid #dddddd;
  background-color: white;
  position: absolute;
  right: -2px;
  white-space: nowrap;
}
body #languageSelection .list > div {
  padding: 5px;
}
body #languageSelection .list > div:hover {
  background-color: #eeeeee;
}
/* ==========================  FORMS  ========================== */

.form-group {
  margin: 10px 0;
}
.form-group label {
  font-weight: bold;
  margin-bottom: 5px;
  display: block;
}
.help-block {
  font-size: 12px;
  margin-top: 2px;
}
.has-error .help-block {
  color: #c40000;
}
.form-label {
  font-weight: bold;
  font-size: 13px;
  margin-bottom: 3px;
  display: block;
}
/* =========================  BUTTONS  ========================= */

.btn {
  padding: 10px 15px;
  border: none;
  cursor: pointer;
  font-size: 14px;
  margin: 10px 0 0 0;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}
.btn:active,
.btn:focus,
.btn:hover {
  outline: none;
}
.btn.btn-submit {
  background-color: #9eb934;
  color: white;
}
.btn.btn-submit:hover {
  background-color: #8aa12d;
}
.btn.btn-submit[disabled] {
  background-color: #bebebe;
  cursor: not-allowed;
}
.btn.btn-submit[disabled]:hover {
  background-color: #bebebe;
}
.btn.btn-second {
  background-color: darkgray;
  color: white;
}
.btn.btn-second:hover {
  background-color: #949494;
}
.btn.btn-other {
  padding: 0;
  font-size: 10pt;
  background: none;
  margin-bottom: 15px;
}
.btn.btn-other:hover {
  text-decoration: underline;
}
/* ==========================  INPUTS  ========================== */

.pw-strength,
textarea,
select,
input[type='password'],
input[type='email'],
input[type='text'],
input[type='number'] {
  display: block;
  width: 100%;
  padding: 8px 10px;
  background: none;
  border: 1px solid black;
  color: black;
}
.has-error textarea,
.has-error select,
.has-error input[type='password'],
.has-error input[type='email'],
.has-error input[type='text'],
.has-error input[type='number'] {
  border-color: #c40000;
}
textarea:focus,
select:focus,
input[type='password']:focus,
input[type='email']:focus,
input[type='text']:focus,
input[type='number']:focus {
  border-color: #059dd7;
}
select:focus {
  color: black;
}
input::-webkit-input-placeholder {
  color: #888888;
  font-size: 12px;
}
input::-moz-placeholder {
  color: #888888;
  font-size: 12px;
}
input:-ms-input-placeholder {
  color: #888888;
  font-size: 12px;
}
input:-moz-placeholder {
  color: #888888;
  font-size: 12px;
}
textarea:active,
textarea:focus,
textarea:hover,
select:active,
select:focus,
select:hover,
input:active,
input:focus,
input:hover {
  outline: none;
}
/* =========================  PASSWORD  ========================= */

pv-passwords .descText ul {
  padding-left: 20px;
  margin-top: 0;
}
.pw-strength {
  padding: 0;
}
.pw-strength input {
  background: none;
  border: none;
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.pw-strength .pw-strength-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
.pw-strength .pw-strength-line > div {
  height: 3px;
}
.pw-strength.pw-invalid .pw-strength-line > div {
  background-color: #af0000;
}
.pw-strength.pw-weak .pw-strength-line > div {
  background-color: #ffab00;
}
.pw-strength.pw-good .pw-strength-line > div {
  background-color: #dbf500;
}
.pw-strength.pw-strong .pw-strength-line > div {
  background-color: #20b300;
}
/* ==========================  DATE PICKER  =========================== */

.datePicker .month .text,
.datePicker > div {
  display: inline-block;
}
.datePicker > div > input {
  text-align: center;
  padding-right: 2px;
}
.datePicker .day {
  width: 25%;
  padding-right: 2px;
}
.datePicker .month {
  width: 45%;
  padding: 0 2px;
  position: relative;
}
.datePicker .year {
  width: 30%;
  padding-left: 2px;
}
.datePicker .month .text {
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  color: black;
  padding: 9px 10px;
}
.datePicker .month.selected .text {
  display: none;
}
.datePicker .month.notselected input {
  color: transparent;
}
/* =======================  TIME PICKER  ======================== */

.timePicker {
  position: relative;
}
.timePicker input {
  padding-right: 30px;
}
.timePicker .button {
  position: absolute;
  top: 0;
  right: 0;
  padding: 9px 10px 8px 10px;
  cursor: pointer;
}
.timePicker .popover {
  display: none;
  overflow: hidden;
  user-select: none;
  z-index: 2;
}
.timePicker .hours,
.timePicker .minutes,
.timePicker .ampm {
  position: absolute;
  top: 0;
  transition: top ease 0.3s;
}
.timePicker isTouch .hours,
.timePicker isTouch .minutes,
.timePicker isTouch .ampm {
  transition: none;
}
.timePicker .hours > span,
.timePicker .minutes > span,
.timePicker .ampm > span {
  display: block;
}
.timePicker .selector {
  margin-top: 89px;
  width: 100%;
  border-top: 2px solid #dddddd;
  border-bottom: 2px solid #dddddd;
}
@media (min-width: 450px) {
  .timePicker .popover {
    border: 1px solid white;
    border-radius: 4px;
    border-top-right-radius: 0;
    height: 200px;
    position: absolute;
    background-color: white;
    color: black;
    right: 0;
    top: 33px;
  }
  .timePicker.opened .popover {
    display: inline-block;
  }
  .timePicker.opened input {
    border-bottom-right-radius: 0;
  }
  .timePicker.opened .button {
    background-color: white;
    color: black;
    border-top-right-radius: 4px;
  }
  .timePicker .selector {
    background-color: #eeeeee;
  }
  .timePicker .hours {
    left: 0;
  }
  .timePicker.is12 .minutes {
    right: 40px;
  }
  .timePicker.is24 .minutes {
    right: 0;
  }
  .timePicker .ampm {
    right: 0;
  }
  .timePicker.is12 .selector {
    padding: 0 70px 0 30px;
  }
  .timePicker.is24 .selector {
    padding: 0 30px;
  }
  .timePicker .hours > span,
  .timePicker .minutes > span,
  .timePicker .ampm > span {
    padding: 1px 6px;
  }
}
@media (max-width: 449px) {
  .timePicker .popover {
    height: 200px;
    position: fixed;
    background-color: black;
    color: white;
    width: 100%;
    left: 0;
    bottom: 0;
  }
  .timePicker.opened .popover {
    display: block;
  }
  .timePicker .selector {
    background-color: #333333;
    border-color: #555555;
  }
  .timePicker .hours {
    left: 0;
  }
  .timePicker.is12 .minutes {
    left: 33%;
  }
  .timePicker.is24 .minutes {
    right: 0;
  }
  .timePicker .ampm {
    right: 0;
  }
  .timePicker.is24 .minutes,
  .timePicker.is24 .hours {
    width: 50%;
    text-align: center;
  }
  .timePicker.is12 .ampm,
  .timePicker.is12 .minutes,
  .timePicker.is12 .hours {
    width: 33%;
    text-align: center;
  }
  .timePicker.is12 .selector {
    padding: 2px 66% 2px 33%;
  }
  .timePicker.is24 .selector {
    padding: 2px 50%;
  }
  .timePicker .hours > span,
  .timePicker .minutes > span,
  .timePicker .ampm > span {
    padding: 2px 6px;
    width: 100%;
    font-size: 16px;
  }
}
/* ==========================  LOGIN  =========================== */

.loginView .video,
.resetView .video,
.loginView .sponsoring,
.resetView .sponsoring {
  display: block !important;
}
#login #keepLoggedInGroup {
  display: none;
}
#login #loginButtonGroup {
  margin: 5px 0 20px 0;
}
#login #loginButtonGroup #loginButton {
  display: inline-block;
  width: auto;
}
#login #linksGroup {
  font-size: 10pt;
  margin-bottom: 0;
}
#login #linksGroup > a {
  display: inline-block;
  color: #555555;
  text-decoration: none;
}
#login #linksGroup > a:hover {
  color: black;
}
#login #registerLink {
  display: none !important;
}
/* ==========================  PW RESET  =========================== */

#pwResetStart #resetButton {
  float: right;
}
/* =====================  REGISTER  ======================= */

#registerMask #registerBtn {
  float: right;
}
#registerMask .input-fixed {
  display: block;
  width: 100%;
  padding: 8px 10px;
  background: none;
  border: 1px solid black;
  color: #888888;
  background-color: #eeeeee;
}
#dsgvoGroup label {
  padding-left: 18px;
  display: block;
  position: relative;
  font-size: 10pt;
}
#dsgvoGroup label input {
  position: absolute;
  left: 0;
  top: 2px;
}
#dsgvoGroup label a {
  text-decoration: underline;
  margin-top: 4px;
  display: block;
}
/* =====================  USER TO APP  ======================= */

#Authorize .releaseFields,
#Authorize .optionalFields {
  margin-bottom: 10px;
}
#Authorize .releaseFields .subtitle,
#Authorize .optionalFields .subtitle,
#Authorize .resources .subtitle {
  margin-bottom: 4px;
}
#Authorize .fieldEntry label {
  width: 40%;
  display: inline-block;
}
#Authorize .fieldEntry .fieldValue {
  display: inline-block;
}
#Authorize .resources {
  margin-bottom: 4px;
}
#Authorize .resources .resourceList {
  margin: -2px;
}
#Authorize .resources .resourceItem {
  padding: 4px;
  border: 1px solid #cccccc;
  margin: 2px;
  display: inline-block;
  background-color: #bdbdbd;
  color: white;
}
#Authorize .resources .resourceItem:hover {
  background-color: #aaaaaa;
  color: white;
}
#Authorize .resources .resourceItem > img {
  height: 15px;
  vertical-align: middle;
}
#Authorize #resourceInfo .resourceName::after {
  content: "";
  clear: both;
  display: table;
}
#Authorize #resourceInfo .resourceTitle {
  margin: 0 0 10px 0;
  font-weight: bold;
}
#Authorize #resourceInfo .resourceName .image img {
  padding: 5px;
  border: 1px solid #cccccc;
}
#Authorize #resourceInfo .scopeItem {
  padding: 5px;
  border: 1px solid #cccccc;
  margin-bottom: -1px;
  cursor: pointer;
}
#Authorize #resourceInfo .scopeTitle {
  font-weight: bold;
  margin-bottom: 3px;
}
@media (max-width: 767px) {
  #Authorize #resourceInfo .resourceName .image {
    text-align: center;
  }
  #Authorize #resourceInfo .resourceName .image img {
    width: 100px;
  }
}
@media (min-width: 768px) {
  #Authorize #resourceInfo .resourceName .image {
    width: 25%;
    float: right;
  }
  #Authorize #resourceInfo .resourceName .image img {
    width: 100%;
  }
}
/* =====================  Second  ======================= */

#second {
  text-align: center;
}
#second .image {
  margin: 20px 0;
}
#second img {
  max-width: 60%;
  max-height: 100px;
}
#second .image .pv {
  font-size: 100px;
}
#Login .error {
  font-weight: bold;
  color: #c70000;
}
#Login .otherTFAs p {
  margin-top: 0;
}
#Login .otherTFAs .tfaMode {
  border: 1px solid #cccccc;
  margin-bottom: 5px;
  height: 60px;
  cursor: pointer;
}
#Login .otherTFAs .tfaMode:hover {
  background-color: #eeeeee;
}
#Login .otherTFAs .tfaMode > div {
  float: left;
  padding: 5px;
}
#Login .otherTFAs .tfaMode > .icon {
  width: 30%;
  text-align: center;
}
#Login .otherTFAs .tfaMode > .name {
  width: 70%;
  text-align: left;
}
#Login .otherTFAs .tfaMode > .name .mode {
  font-weight: bold;
}
#Login .otherTFAs .tfaMode > .name .sub {
  font-size: 10pt;
}
#Login .otherTFAs .tfaMode > .icon img {
  max-height: 48px;
  max-width: 100%;
}
#Login .otherTFAs .tfaMode > .icon span {
  font-size: 48px;
  background: none;
  display: block;
}
/* =======================  Pin-Eingabe ======================= */

.fixedPin {
  display: inline-block;
  color: #555555;
  background-color: white;
  background-image: none;
  border: 1px solid #cccccc;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px black;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px black;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  padding: 5px 0;
  font-size: 20px;
  font-weight: bold;
}
.fixedPin > div {
  display: inline-block;
  padding: 0 4px;
}
#second .fixedPin input {
  text-align: center;
  width: 36px;
  border: none;
  border-bottom: 1px solid #dddddd;
  padding: 0 2px 4px 2px;
  border-radius: 0;
}
.fixedPin input:active,
.fixedPin input:focus,
.fixedPin input:hover {
  outline: none;
}
.fixedPin input[type='number'] {
  -moz-appearance: textfield;
}
.fixedPin input::-webkit-outer-spin-button,
.fixedPin input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
