@charset "UTF-8";
#cbox_decker {
  position: fixed;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(159, 159, 159, 0.8);
  display: none;
}
#cbox {
  color: black;
  width: 500px;
  max-width: 100%;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: black;
  padding: 14px 40px 20px 40px;
  font-size: 14px;
  z-index: 3;
  display: none;
  background-color: #fafafa;
  /*background-color: rgba(40,121,176,0.8);*/
}
#cbox fieldset {
  border: none;
  margin: 0;
  padding: 0;
}
#cbox h2 {
  margin-bottom: 5px;
}
#cbox a.weiss {
  color: black;
}
#cbox a:hover {
  color: #5a5a5a;
}
#cbox .cb_text {
  padding: 0px 10px 10px 0;
  max-height: 30vh;
  overflow-y: scroll;
  /*	border-bottom:5px solid black;*/
  position: relative;
}
#cbox .cb_text a {
  text-decoration: underline;
}
#cbox .cb_link {
  border-top: 2px solid #a4a46a;
  padding-top: 10px;
  margin-top: 20px;
}
#cbox h2 {
  margin-top: 0;
  padding-top: 0;
}
#cbox .cb_radio {
  margin-top: 20px;
}
#cbox .cb_radio input[type="checkbox"] {
  /* reset all styles */
  appearance: none;
  background-image: none;
  background-color: transparent;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  border: 1px solid #d3d3d3;
  width: 20px;
  height: 20px;
  content: none;
  outline: none;
  margin: 0 5px 0px 0px;
  position: relative;
  top: 4px;
  /* Inputs könne eigentlich KEINE :pseudo Elemente besitzen. Hiermit stylet man also erneut das Input selber */
}
#cbox .cb_radio input[type="checkbox"]:checked {
  appearance: none;
  outline: none;
  padding: 0;
  content: none;
  border: none;
}
#cbox .cb_radio input[type="checkbox"]:checked::before {
  position: absolute;
  color: black !important;
  content: " ✓ " !important;
  border: 1px solid #d3d3d3;
  font-weight: bolder;
  font-size: 13px;
}
#cbox .cb_buttons {
  margin-top: 20px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#cbox .cb_buttons button {
  cursor: pointer;
  margin-top: 15px;
  color: white !important;
  text-decoration: none;
  padding: 12px 29px;
  font-size: 15px !important;
  border-radius: 4px;
  border: none;
  -webkit-box-shadow: 0px 7px 19px -6px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 7px 19px -6px rgba(0, 0, 0, 0.3);
}
#cbox .cb_buttons button.all {
  background: black;
}
#cbox .cb_buttons button.save {
  background: #646363;
}
#cbox .cb_buttons button.deny {
  background: #9d9d9c;
  color: black !important;
}
#cbox .tabelle.cbox {
  border-collapse: collapse;
  margin-bottom: 10px;
}
#cbox .tabelle.cbox tr:nth-of-type(odd) {
  background-color: #ECECED;
}
#cbox .tabelle.cbox tr:nth-of-type(4n+0) td {
  border-bottom: 1px solid black;
}
#cbox .tabelle.cbox tr:last-of-type {
  border-bottom: none;
}
#cbox .tabelle.cbox tr td {
  vertical-align: top;
  padding: 5px 3px 5px 3px;
}
#cbox .tabelle.cbox tr td:first-of-type {
  font-weight: bold;
  padding-right: 10px;
  border-right: 1px solid #cececf;
}
@media only screen and (max-width: 979px) {
  #cbox {
    width: 90%;
    max-width: 90%;
    top: 10%;
    bottom: initial;
    transform: translate(-50%, 0);
  }
  #cbox .cb_text {
    max-height: 15vh;
  }
  #cbox .cb_buttons {
    margin-top: 5px;
  }
  #cbox .cb_buttons button {
    cursor: pointer;
    margin-top: 15px;
    width: fit-content;
  }
  #cbox .cb_radio {
    margin-top: 5px;
  }
}
@media only screen and (max-width: 540px) {
  #cbox {
    width: 90%;
    max-width: 90%;
  }
  #cbox .cb_text {
    max-height: 30vh;
  }
  #cbox .cb_buttons button {
    cursor: pointer;
    margin-top: 15px;
    width: 100%;
  }
}
