.cb_show {
  cursor: pointer;
  text-decoration: underline;
}
#cookiebox_decker {
  display: none;
  position: fixed;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(159, 159, 159, 0.8);
}
#cookiebox {
  display: none;
  width: 500px;
  max-width: 70%;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: white;
  padding: 14px 40px 20px 40px;
  font-size: 16px;
  z-index: 3;
}
#cookiebox h2 {
  margin-bottom: 5px;
}
#cookiebox .cb_text {
  padding: 0px 10px 10px 0;
  max-height: 30vh;
  overflow-y: scroll;
  /*	border-bottom:5px solid black;*/
  position: relative;
}
#cookiebox .cb_text a {
  text-decoration: underline;
}
#cookiebox .cb_link {
  border-top: 5px solid black;
  padding-top: 10px;
  margin-top: 20px;
}
#cookiebox h2 {
  margin-top: 0;
  padding-top: 0;
}
#cookiebox .cb_radio {
  margin-top: 20px;
}
#cookiebox .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 */
}
#cookiebox .cb_radio input[type="checkbox"]:checked {
  appearance: none;
  outline: none;
  padding: 0;
  content: none;
  border: none;
}
#cookiebox .cb_radio input[type="checkbox"]:checked::before {
  position: absolute;
  color: grey !important;
  content: "\00A0\2713\00A0" !important;
  border: 1px solid #d3d3d3;
  font-weight: bolder;
  font-size: 13px;
}
#cookiebox .cb_buttons {
  margin-top: 20px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#cookiebox .cb_buttons button {
  padding: 5px 20px;
  color: white;
  border: none;
  display: block;
}
#cookiebox .cb_buttons button.all {
  background: black;
}
#cookiebox .cb_buttons button.save {
  background: #646363;
}
#cookiebox .cb_buttons button.deny {
  background: #9d9d9c;
}
@media only screen and (max-width: 600px) {
  #cookiebox .cb_buttons {
    flex-direction: row;
  }
  #cookiebox .cb_buttons button {
    width: 100%;
    margin-bottom: 10px;
  }
}
