#cbox_overlay {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
}
#cbox {
  overflow: auto;
  /*height:100%;*/
  position: fixed;
  bottom: 15px;
  right: 15px;
  width: 340px;
  max-width: 100%;
  height: 575px;
  max-height: 85vh;
  /*max-height:50vh;*/
  /*min-height: 168px;*/
  border-radius: 2px;
  padding: 10px 10px 0px 10px;
  z-index: 10000;
  background: white;
  box-shadow: 2px 3px 8px rgba(0, 0, 0, 0.8);
  color: black;
  /*height:100%;*/
  /*tabelle*/
}
#cbox .scroll_ct {
  overflow-y: scroll;
  overflow-x: hidden;
  padding-left: 16px;
  padding-right: 14px;
  flex: 0 1 auto;
  overflow: auto;
  /*height:100%;*/
  /*min-height:200px;
		height:400px;*/
}
#cbox .inner {
  width: 100%;
  margin: 0 auto;
  font-size: 13px;
  line-height: 1.5em;
  text-align: left;
  display: flex;
  flex-direction: column;
  height: 100%;
}
#cbox .inner p {
  margin: 1em 0;
}
#cbox .item {
  margin-bottom: 10px;
}
#cbox label {
  flex: 1;
}
#cbox .more {
  display: none;
}
#cbox .arrow {
  cursor: pointer;
  border-left: 1px solid grey;
}
#cbox .arrow img {
  position: relative;
  top: 2px;
}
#cbox .buttons {
  margin: 20px 0;
  margin-bottom: 0;
  flex: 1 0 auto;
}
#cbox .buttons button {
  display: block;
  line-height: inherit;
  margin-right: 10px;
  color: black;
  padding: 8px 18px;
  margin-bottom: 10px;
  text-align: center;
  border: none;
  transition: color 0.2s linear;
  border-radius: 3px;
  width: 100%;
  background-color: white;
  transition: background 0.2s linear;
  font-weight: bold;
  border: 1px solid #f18825;
}
#cbox .buttons button[name="accept_all"] {
  background: #f18825;
  color: black;
  border: 1px solid #7c7c7c;
  /*text-shadow: 1px 1px rgba(66, 66, 66, 0.5);*/
}
#cbox .buttons button[name="accept_all"]:hover {
  background: #e37e1e;
  color: #f1f1f1;
  transition: color 0.2s linear,background 0.2 linear;
}
#cbox .buttons button[name="deny_all"] {
  background-color: #ab0011;
  color: white;
  text-shadow: 1px 1px rgba(66, 66, 66, 0.5);
  border: 1px solid #7c7c7c;
}
#cbox .buttons button[name="deny_all"]:hover {
  background-color: #9f0615;
  color: #f1f1f1;
  transition: color 0.2s linear,background 0.2 linear;
}
#cbox .buttons button:hover {
  box-shadow: none;
  background: #f7f7f7;
  transition: background 0.2s linear;
}
#cbox .line {
  display: flex;
  background-color: #a6b5ac;
  border-radius: 3px;
  border: 1px solid #6a6a6a;
}
#cbox .line > * {
  padding: 7px;
}
#cbox .line span {
  vertical-align: middle;
}
#cbox .line .text {
  padding-left: 5px;
}
#cbox .line label {
  display: inline-block;
  position: relative;
  padding-top: 10px;
  font-weight: 600;
}
#cbox .line input[type="checkbox"] {
  display: none;
}
#cbox .line .slider {
  position: relative;
  display: inline-block;
  background-color: #eee;
  border: 1px solid #6a6a6a;
  width: 40px;
  height: 16px;
  border-radius: 16px;
}
#cbox .line .slider::after {
  position: absolute;
  display: inline-block;
  content: '';
  width: 16px;
  height: 16px;
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0px 3px 5px #aaa;
  outline: 1px solid #ccc;
  transition: left 0.5s linear;
}
#cbox .line input:checked + .slider:after {
  right: 0;
  transition: right 0.5s linear;
}
#cbox .line input:checked + .slider {
  background-color: #01977b;
  transition: background-color 0.5s linear;
}
#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;
}
/*#cbox*/
.cookie_hinweis {
  margin-top: 20px;
  background: #3c3c3c;
  color: white;
  font-size: 15px;
  line-height: 1.5em;
  padding: 20px;
  max-width: 95%;
  display: inline-block;
  border-radius: 2px;
  border: 1px solid black;
  box-shadow: 1px 1px 3px #9b9696;
}
.cookie_hinweis a {
  color: white;
  font-weight: bold;
}
.cookie_hinweis a:hover {
  color: #dbdbdb;
}
@media only screen and (max-width: 960px) {
  #cbox {
    padding-bottom: 10px;
    margin: 10px auto;
    left: 0;
    right: 0 !important;
    width: 90%;
    bottom: initial;
    top: 10px;
  }
  #cbox .buttons {
    display: flex;
    justify-content: space-around;
  }
  #cbox .buttons button {
    width: fit-content;
  }
}
@media only screen and (max-width: 540px) {
  #cbox {
    padding-bottom: 10px;
    margin: 5% auto;
    left: 0;
    right: 0 !important;
    width: 90%;
  }
  #cbox .buttons {
    flex-wrap: wrap;
  }
  #cbox .buttons button {
    width: 100%;
  }
}
