:root {
  --w1: 700px;
  --background: #1d2d50;
  --accent: #fcdab7;
  --accent2: #1e5f74;
  --color: #fefefe;
  --dull: #b8b8b8;
  --error: #e74c3c;
  --highlight: rgba(255, 255, 255, 0.05);
}
a {
  background-color: transparent;
  text-decoration: none;
  font-weight: 700;
  color: var(--color);
  padding: 2px;
}
a:active,
a:hover {
  color: var(--background);
  background-color: var(--color);
}
h1 {
  font-size: 18px;
  color: var(--color);
}
iframe {
  height: 600px;
  width: 100%;
  border: 0;
}
p,
h2,
h3 {
  font-size: 1rem;
}
svg {
  margin-bottom: 0.5rem;
}
.cover {
  position: fixed;
  display: block;
  background-color: rgba(255, 255, 255, 0.1);
  z-index: 1000;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
}
.isworking {
  top: calc(50% - 50px);
  left: calc(50% - 50px);
  position: fixed;
  width: 100px;
  height: 100px;
  border-radius: 20px;
  border: 1px solid var(--color);
}
.form-control {
  display: block;
  width: 100%;
  box-sizing: border-box;
  height: 34px;
  padding: 4px;
  font-size: 14px;
  line-height: 1.4;
  color: #555;
  background-color: rgba(255, 255, 255, 0.5);
  background-image: none;
  border: 1px solid #ccc;
  /* border-radius: 4px; */
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border-color ease-in-out 0.15s,
    -webkit-box-shadow ease-in-out 0.15s;
  -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}
.panel {
  margin-bottom: 20px;
  /* border: 1px solid transparent; */
  /* border-radius: 10px; */
  /* -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05); */
  /* background-color: rgba(255, 255, 255, 0.7); */
}
.panel-body {
  padding: 15px;
}
.panel-primary {
  border-color: #337ab7;
  padding: 10px;
}
.panel-heading {
  text-align: center;
}
.panel-footer {
  text-align: right;
}
#addUserModal {
  z-index: 100;
}
.modal-open {
  overflow: hidden;
}
.modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
  outline: 0;
  z-index: 10;
}
.modal.fade .modal-dialog {
  -webkit-transition: -webkit-transform 0.3s ease-out;
  -o-transition: -o-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  -webkit-transform: translate(0, -25%);
  -ms-transform: translate(0, -25%);
  -o-transform: translate(0, -25%);
  transform: translate(0, -25%);
}
.modal.in .modal-dialog {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
}
.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.modal-dialog {
  position: relative;
  max-width: 400px;
  margin: auto;
  z-index: 1050;
  margin-top: 2rem;
  color: var(--color);
}
.modal-content {
  position: relative;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  border: 1px solid #999;
  border: 1px solid rgba(0, 0, 0, 0.2);
  /* border-radius: 6px; */
  outline: 0;
  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  /* background-color: rgba(255, 255, 255, 1); */
  background-color: var(--background);
}
.modal-backdrop {
  position: fixed;
  z-index: -40;
  background-color: rgba(0, 0, 0, 0.5);
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
}
.modal-header {
  padding: 15px;
  border-bottom: 1px solid #e5e5e5;
}
.modal-header .close {
  margin-top: -2px;
  cursor: pointer;
}
.modal-title {
  margin: 0;
  line-height: 1rem;
}
.modal-body {
  position: relative;
  padding: 15px;
}
.modal-footer {
  padding: 15px;
  text-align: right;
  border-top: 1px solid #e5e5e5;
}
button {
  min-width: 140px;
  padding: 0.4rem;
  font-size: 1rem;
  outline: 2px solid var(--color);
  outline-offset: -2px;
  /* border-radius: 2px; */
  cursor: pointer;
  -webkit-user-select: none;
  margin-bottom: 0.5rem;
  user-select: none;
  background: transparent;
  color: var(--color);
  transition: background 0.3s, color 0.3s;
}
button:hover,
button:active {
  /* border: 0; */
  background: var(--color);
  color: var(--background);
}
.btn {
  /* display: inline-block; */
  /* padding: 12px 60px; */
  font-size: 1rem;
  outline: 3px solid var(--color);
  outline-offset: -3px;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
  background: transparent;
  color: var(--color);
  transition: background 0.3s, color 0.3s;
}
.btn:hover,
.btn:active {
  background: var(--color);
  color: var(--background);
}
/* .btn:active {
  box-shadow: inset 0 0 4px 5px rgba(0, 0, 0, 0.1);
} */
.btn-block {
  display: block;
  padding-top: 12px;
  padding-bottom: 12px;
  margin-bottom: 0.4rem;
  text-align: center;
}
.btn-block-1 {
  padding: 12px 60px;
  /* margin-bottom: 0.2rem;
  text-align: center; */
}
.btn-success {
  color: #fff;
  background-color: #5cb85c;
  border-color: #4cae4c;
}
.btn-success.focus {
  color: #fff;
  background-color: #449d44;
  border-color: #255625;
}
.btn-success:hover {
  color: #fff;
  background-color: #449d44;
  border-color: #398439;
}
.btn-success.active {
  color: #fff;
  background-color: #449d44;
  border-color: #398439;
}
.btn-info {
  color: #fff;
  background-color: #5bc0de;
  border-color: #46b8da;
}
.btn-info:focus {
  color: #fff;
  background-color: #31b0d5;
  border-color: #1b6d85;
}
.btn-info:hover {
  color: #fff;
  background-color: #31b0d5;
  border-color: #269abc;
}
.btn-info:active {
  color: #fff;
  background-color: #31b0d5;
  border-color: #269abc;
}
.btn-danger {
  color: #fff;
  background-color: #d9534f;
  border-color: #d43f3a;
}
.btn-danger:focus {
  color: #fff;
  background-color: #c9302c;
  border-color: #761c19;
}
.btn-danger:hover {
  color: #fff;
  background-color: #c9302c;
  border-color: #ac2925;
}
.btn-danger:active {
  color: #fff;
  background-color: #c9302c;
  border-color: #ac2925;
}
.label {
  display: inline;
  padding: 0.5em;
  font-size: 75%;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.25em;
}
.label-warning {
  background-color: #f0ad4e;
}
.label-warning[href]:hover,
.label-warning[href]:focus {
  background-color: #ec971f;
}
.label-danger {
  background-color: #d9534f;
}
.label-danger[href]:hover,
.label-danger[href]:focus {
  background-color: #c9302c;
}
html {
  font-family: "Abel", sans-serif;
  font-size: 16px;
  color: var(--background);
}
body {
  margin: 0px;
  padding: 0px;
  background-color: var(--background);
  /* background-image: url(hintergrund.jpg); */
  /* background-size: cover; */
  display: flex;
  justify-content: center;
  box-sizing: border-box;
  color: var(--color);
}
.container0 {
  margin-top: 150px;
  max-width: 500px;
  box-shadow: 0px 10px 20px -2px rgb(0 0 0 / 20%);
  border: 1px solid var(--color);
  padding: 1rem;
}
.container1 {
  margin-top: 1rem;
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
  width: 680px;
  box-shadow: 0px 10px 20px -2px rgb(0 0 0 / 20%);
  border: 1px solid var(--color);
  padding: 1rem;
  color: var(--color);
}
.container1_1 {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  border-bottom: 1px solid var(--color);
  padding: 1rem;
  font-weight: 700;
}
.container1_2 {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2rem;
  border-bottom: 1px solid var(--color);
  padding: 1rem;
}
.container1_2 > div:nth-child(1) {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.container1_2 > div:nth-child(2) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.container1_2 > div:nth-child(2) > div {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.container1_2 > div:nth-child(3) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.3rem;
}
.container1_3 {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--color);
  padding: 1rem;
}
.container1_3 > div:nth-child(1) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.container1_4 {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  padding: 1rem;
}
.server {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 1rem;
  border: 1px solid var(--color);
  color: var(--color);
  align-items: center;
}
.serverstatus {
  padding: 0.15rem 0.5rem;
  outline: 0.15rem;
  outline-style: solid;
  outline-color: var(--color);
  outline-offset: -0.1rem;
}
input[type="checkbox"] {
  width: 1rem;
  height: 1rem;
  transform: translate(4px, -2px);
}
input[type="text"],
input[type="password"],
select {
  width: 100%;
  box-sizing: border-box;
  padding: 7px;
  display: block;
  background: transparent;
  outline: none;
  font-size: 1rem;
  color: var(--color);
  border: 0;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--color);
}
input::placeholder {
  font-size: 0.7rem;
  color: var(--dull);
}
option {
  color: var(--background);
}
label {
  display: block;
  font-size: 0.8rem;
  color: var(--color);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
}
table {
  border-spacing: 0;
  text-align: center;
}
.table-striped > tbody > tr:nth-of-type(odd) {
  background-color: rgba(255, 255, 255, 0.2);
}
.table-hover > tbody > tr:hover {
  background-color: rgba(255, 255, 255, 0.5);
}
.table-bordered {
  border: 1px solid #ddd;
}
.table {
  width: 100%;
  margin-bottom: 20px;
  font-size: 1rem;
}
.table > thead > tr > th,
.table > tbody > tr > th,
.table > tfoot > tr > th,
.table > thead > tr > td,
.table > tbody > tr > td,
.table > tfoot > tr > td {
  padding: 8px;
  line-height: 1rem;
  vertical-align: top;
  border-top: 1px solid var(--color);
}
.table > thead > tr > th {
  vertical-align: bottom;
  /* border-bottom: 2px solid #ddd; */
}
.close {
  float: right;
  font-size: 21px;
  font-weight: bold;
  line-height: 1rem;
  color: var(--color);
}
.close:hover {
  color: var(--dull);
}
