
* {
  box-sizing: border-box;
  padding:6px;
  margin:5px;
}

html {
  padding: 0;
  margin: 0;
  height: 100%;
}
body {
  font-family: Arial, Helvetica, sans-serif;
  margin:0;
  padding:0;
  height:100%;
}

hr {
  padding:initial !important;
   
}

label {
  white-space: nowrap;
}

dialog {
  position: absolute !important;
  margin: auto !important;
  padding: 0;
}

dialog .close {
  cursor: pointer;
  background-color: rgba(0,0,0,0.3);
  color:rgba(140, 140, 180, 0.4);
  margin:0;
  padding:6px;
}

dialog .close:hover {
  background-color: rgba(255,2,1,0.9);
  color:white;
}

dialog .titlebar {
  display: inline-block;
  width:100%;
    border-bottom: 1px solid rgba(140, 140, 180, 0.4);
    margin: 0px;
    padding: 0px;
    
}

dialog .titlebar > label {
  margin: 0;
  padding: 6px;
}

dialog .footer {
  margin-left: 12px;
  margin-right: 12px;
}

table {
  min-width: calc(100% - 16px);
  border: 1px solid rgba(20, 40, 80, 0.8);
  background-color:  rgba(160, 160, 200, 0.2);
  overflow: auto;
  border-collapse: collapse;
}

table thead {
  margin:0;
  position: sticky;
  top:-6px;
}

table thead td {
  padding: 1em !important;
  color:white;
  font-weight: bold;
  background-color: rgba(255,2,1,0.9);
  border: 1px solid rgba(140, 140, 180, 0.2);
  cursor: pointer;  
}

table tbody {
  overflow: auto;
}

table tbody tr {
  background-color: white;
  color:black;
  border-bottom: 1px solid rgba(140, 140, 180, 0.4);
}

table tbody tr:hover td {
  background-color: rgba(140, 140, 180, 0.2);
}

table tbody td {
  padding: 1em !important;
  border-right: 1px solid rgba(140, 140, 180, 0.4);
  
}

.col_asc { /*Sortierspalte*/
  background-image: url("img/arrow_up_white.png");
  background-origin: border-box;
  background-repeat: no-repeat;
  background-position: right;
  background-size: contain;
}

.col_desc { /*Sortierspalte*/
  background-image: url("img/arrow_down_white.png");
  background-origin: border-box;
  background-repeat: no-repeat;
  background-position: right;
  background-size: contain;
}

.del_btn {
  background-image: url("img/Delete_white.png");
  background-origin: border-box;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  height:2em;
  margin:0;
}

.col_file {
  background-image: url("img/document.png");
  background-origin: border-box;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  height:0.5em;
  margin:0;
}

.col_email {
  background-image: url("img/uri.png");
  background-origin: border-box;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  height:0.5em;
  margin:0;
}

.img_clipboard {
  background-color: transparent;
  background-image: url("img/Clipboard.png");
  background-origin: border-box;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  height:1em;
  margin:0;
}

.container {
  margin:0;
  width:100%;
  border: 1px solid rgba(140, 140, 180, 0.2);
  background-color:  rgba(160, 160, 200, 0.2);
  display:grid;
  grid-gap: 9px;
  grid-template-columns: minmax(min-content, min-content); /*repeat(auto-fill, minmax(auto , auto));*/
}

.containerUp {
  margin:0;
  width:100%;
  border: 1px solid rgba(140, 140, 180, 0.2);
  background-color:  rgba(160, 160, 200, 0.2);
  display:grid;
  grid-gap: 9px;
  grid-template-columns: min-content; 
  align-items: center;
  grid-auto-rows: min-content;
}

.containerUp input {
  min-width: 2em;
}

.containerUp input[type="checkbox"] {
  height:1.5em;
}

.list {
  display:flex !important;
    flex-direction: column;
    grid-gap: 0 !important; 
}

.list > div {
  border: 1px inset rgba(140, 140, 180, 0.4);
  background-color: #fff;
  cursor: pointer;
  font-size: 0.8em;
}

.list > div > * {
  display: block;
  margin:0.4em;
  padding:0;
  cursor:pointer;
}

.vl {
  padding: 0px !important;
  margin: 0px !important;
  width:1px;
  border-left: 1px inset rgba(140, 140, 180, 0.4);
}

.tab {
  overflow:hidden;
  border: 1px solid rgba(140, 140, 180, 0.4);
  background: rgba(140, 140, 180, 0.2);
  padding: 0;
  margin-bottom: 0;;
}

.tab button {
  background-color: inherit;
  border: none;
  outline: none;
  transition: 0.3s;
  float:left;
  margin:0;
  border-radius: 0;
}

.tab button.active {
  background-color: rgba(255,2,1,0.9);
}

.activebutton {
  font-weight: bold;
  background-color: rgba(20, 40, 80, 0.8);
}

.tabBody {
  margin-top:0;
  padding:0;
}

.tabcontent {
  display: none;
  border: 1px solid rgba(140, 140, 180, 0.4);
  border-top:none;
  margin:0;
}

.buttonbar {
  display:flex;
  justify-content: flex-end;
  border: 1px solid rgba(140, 140, 180, 0.2);
  background-color: rgba(160, 160, 200, 0.2);
}

.progressBarContainer {
  width: 100%;
  background-color: transparent;
  padding: 0px !important;
  margin: 0px !important;
  color:black;
  border: 1px solid rgba(20, 40, 80, 0.8);
}

.progressBar {
  height: 100%;
  background-color: rgba(255,2,1,0.9);
  padding: 0px !important;
  margin: 0px !important;
  z-index: -1;
}

@media screen and (max-width: 800px) {
  .container {
    display:flex;
    flex-direction: column;
    grid-gap: 0; 
  }
  .containerUp {
    display:flex;
    flex-direction: column;
    grid-gap: 0; 
  }
  .containerUp > * {
    width: 100%;
  }
  .vl {
    display: none !important;
  }

  textArea {
    min-height: 10em;
  }
}

.row {
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    flex-direction: row;
}

.row>div:last-child {
  margin:0;
  padding:0;
  flex: 1 1 auto;
}

.row>div:first-child {
  margin:0;
  padding:0;
  flex: 0 0 auto;
}



label {
  padding-left: 0;
  margin-left: 0;
}

input {
  cursor:text !important;
}

input[type=text], input[type=password] {
  display: inline-block;
  border: 1px solid #ccc;
  box-sizing: border-box;
  width:100%;
}

input[type=checkbox], input[type=radio] {
  cursor: pointer !important;
}



button {
  background-color: rgba(255,2,1,0.9);
  border-radius: 3px;
  color: white;
  border: none;
  cursor: pointer;
  padding:12px 18px;
  font-size: 1em;
}

select {
  padding: 14px 20px;
}

label > button {
  width: auto;
  margin-left: 9px;
}

.topnav > button , select {
  width: auto;
  margin-right: 9px;
}

button:hover {
  opacity: 0.8;
}

.grayed_out {
  background-color: rgb(190, 190, 190);
  color: rgb(140 , 140 , 140);
}

.grayed_out:hover {
  opacity: 1.0;
}

.imgcontainer {
  text-align: center;
  margin: 24px 0 12px 0;
  display:flex;
  flex-direction: column;
  align-items: center;
}

img.avatar {
  width: 40%;
  max-width: 200px;
  border-radius: 50%;
}

img.avatar_border {
  border-radius: 50%;
  border: 1px solid rgba(140, 140, 180, 0.2);
  box-shadow: inset 4px 4px rgba(255,2,1,0.9);
}


img.w400 {
  width:400px;
}

.inline {
  width:auto;
  display: inline;
  padding:6px;
}

.inline * {
  padding:9px !important;
  width:auto;
  display:inline;
}


span.psw {
  float: right;
  padding-top: 16px;
}

.right {
  float: right;
}

.padding_9 {
  padding:9px !important;
}

.address_container {
    border:1px solid black;
    padding: 6px;
    margin: 4px;
    
}
.address_container > * {
    cursor:pointer;
}

div.address_container > label {
    display: block;
}


/*Loader*/
#loader {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  width: 120px;
  height: 120px;
  margin: -76px 0 0 -76px;
  -webkit-animation: spin 1s linear infinite;
  animation: spin 1s linear infinite;

  border: double 18px transparent;
  border-radius: 50%;
  background-image: linear-gradient(white, white), radial-gradient(circle at top left, #f00,#b00);
  background-origin: border-box;
  background-clip: content-box, border-box;
}

.chkSpan {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: nowrap;
  justify-content: flex-start;
}

.chkSpan .expanding {
  flex-grow: 1;
}

@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}


.collapsable {
  background-color: #ccc;
  color: #333;
  cursor: pointer;
  padding: 0px;
  width: 100%;
  text-align: left;
  font-weight: bold;
}

.collapsable > p {
  margin: 18px;
}

.collapsable.active, .collapsable:hover {
  background-color: #f00;
  color:#fff;
}

.collapsable .content {
  /*position:absolute;*/
  z-index: 2;
  padding: 9px 0px;
  display: none;
  overflow: hidden;
  background-color: #333;
  color: #ccc;
}

.collapsable .content a {
  display:block;
}

.collapsable .content a:hover {
  background-color: #fff;
  color:#333;
}

.cite {
  font-size: 3em;
  font-weight: bold;
  color:rgba(140, 140, 180, 0.4);
  text-align: center;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  text-wrap: wrap;
}

.inputPin {
  width: 2em;
  height: 2em;
}

.dropfile{
  border: 5px dashed #777;
  color: #ccc;
  background-color: #fff;
  border-radius: 11px;
  padding: 1em 2em 1em 2em;
  cursor: grabbing;
  user-select:none;
  -webkit-user-select: none;
  -ms-user-select: none;
}

@media only screen and (max-width: 800px) {
  img.avatar {
    display: none;
  }
  #citeid {
    display: none;
  }
  #buttonbar {
    flex-direction: column;
  }
  #loginmask {
    display:flex;
    flex-direction: column;
  }
  #sectionImage {
    display: none;
  }
}



#progressLine{
  position: absolute;
  top: 50%;
  left: 50%;
  margin-right: -50%;
  transform: translate(-50% , -50%);
  background-color: lightgray;
  border-radius: 15px;
  box-shadow: 5px 5px 5px rgba(0,0,0,0.8);
  color: red;
  padding: 0.2em 1em;
  z-index:999;
}

.config_left {
  padding:1em;
  border: 3px solid #777;
  border-radius: 11px;
  background-color: #fff;
  width: 300px;
}

.config_left > * {
  width: 100%;
}

.config_left div {
  margin: 0;
  padding: 0;
}

.config_rules {
  padding:1em;
  border: 3px solid #777;
  border-radius: 11px;
  background-color: #fff;
}

.config_rules textarea {
  width:100%;
  min-height: 20em;
  height:100%;
}

.config_right {
  padding:1em;
  border: 3px solid #777;
  border-radius: 11px;
  background-color: #fff;
  
}

.config_right textarea {
  width:100%;
  min-height: 20em;
  height:100%;
}

.configRow {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
}

.configSelect {
  width: 150px;
  margin:0;
}

.inVal {
  width: 60px;
  padding: 1em;
}

#idFaceLogin {
  display: none;
}

.camera-view {
  background-color: black;
  height: 100%;
  width: 100%;
  margin:0
}

.camera-view-fullscreen {
  position: fixed;
  z-index: 999;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

/*
#videoViewContainer { }
*/

#btnStartCamera {
  position: absolute;
  left:0;
  bottom:0;
  background-image: url("img/camera.png");
  background-size: 2.5em;
  background-repeat: no-repeat;
  background-position: center;
  height: 3em;
  width: 100%;
  margin:0;
  padding:0;
}

.Account-Image-Container {
  position: relative;
  padding: 0;  
  height: 150px;
  width: 200px;
}

.Account-Image {
  padding: 0;
  height: 100%;
  width: 100%;
  margin: 0;
}

.Account-Image-Remove-Button {
  position:absolute;
  top: 0;
  right: 0;
  width: 2em;
  height: 2em;
  padding: 0;
  margin: 0;
}

#lblSelectedSystemprovider {
  background-color: #fff;
  border-radius: 5px;
  display:flex;
  align-items: center;
  padding-left: 1em;
}
