#cbox_decker {
  position: fixed;
  z-index: 9;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(159, 159, 159, 0.8);
  display: none;
}
#cbox {
  color: black;
  width: 800px;
  max-width: 90%;
  position: fixed;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 0);
  color: white;
  padding: 14px 40px 20px 40px;
  font-size: 16px;
  z-index: 10;
  display: none;
  background-color: #1e9243de;
}
#cbox h2 {
  margin-bottom: 5px;
  color: White;
}
#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;
  font-size: 13px;
  line-height: 1.3em;
}
#cbox .cb_text a {
  color: white;
}
#cbox .cb_text img {
  position: relative;
  top: 4px;
}
#cbox .cb_text a {
  text-decoration: underline;
}
#cbox .cb_link {
  border-top: 1px solid #afafaf;
  padding-top: 10px;
  margin-top: 20px;
  font-size: 13px;
  line-height: 1.3em;
}
#cbox h2 {
  margin-top: 0;
  padding-top: 0;
}
#cbox .cb_radio {
  margin-top: 20px;
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
}
#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: white !important;
  content: "\00A0\2713\00A0" !important;
  border: 1px solid #d3d3d3;
  font-weight: bolder;
  font-size: 13px;
}
#cbox .cb_radio input[type="checkbox"]:disabled::before {
  position: absolute;
  color: #b7b7b7 !important;
  content: "\00A0\2713\00A0" !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 {
  min-width: 240px;
  max-width: 100%;
  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 .hover:hover {
  background: #817d7d;
  transition: background 0.5s;
}
#cbox .cb_buttons button.all {
  /*background: black;*/
  background: #646363;
  transition: background 0.5s;
}
#cbox .cb_buttons button.all:hover {
  background: #817d7d;
  transition: background 0.5s;
}
#cbox .cb_buttons button.save {
  background: #a7a7a7;
  transition: background 0.5s;
}
#cbox .cb_buttons button.save:hover {
  background: #817d7d;
  transition: background 0.5s;
}
#cbox .cb_buttons button.deny {
  background: #a7a7a7;
  /*background: #646363;*/
  transition: background 0.5s;
}
#cbox .cb_buttons button.deny:hover {
  background: #817d7d;
  transition: background 0.5s;
}
/*cbox ende*/
@media only screen and (max-width: 979px) {
  #cbox {
    max-width: 85%;
    max-height: 82%;
    margin-bottom: 10px;
  }
  #cbox .cb_text {
    max-height: 18vh;
  }
  #cbox .cb_radio {
    margin-top: 10px;
    justify-content: flex-start;
    row-gap: 10px;
    column-gap: 10px;
  }
  #cbox .cb_buttons {
    margin-top: 7px;
  }
  #cbox .cb_buttons button {
    min-width: fit-content;
    padding: 7px 13px;
    cursor: pointer;
    margin-top: 0px;
  }
}
@media only screen and (max-width: 550px) {
  #cbox {
    width: 300px;
    max-width: 90%;
    max-height: 85%;
    padding-bottom: 40px;
  }
  #cbox .cb_text {
    max-height: 27vh;
  }
  #cbox .cb_radio {
    justify-content: flex-start;
    row-gap: 10px;
  }
  #cbox .cb_buttons button {
    cursor: pointer;
    margin-top: 15px;
    width: 100%;
  }
}
