.cc_root {
  width: 98%;
  max-width: 1256px;
  position: relative;
  margin: auto;
  text-align: left;
}
.cc_cookies {
  position: fixed;
  width: 98%;
  padding: 14px 1% 14px 1%;
  font-size: 14px;
  background-color: #1d4b35;
  color: white;
  text-align: center;
  display: none;
  z-index: 200;
  left: 0px;
  bottom: 0px;
}
.cc_cookies a {
  color: #f6c5a5;
}
.cc_line_info {
  float: left;
  width: 70%;
}
.cc_line_btns {
  float: right;
  width: 25%;
}
.cc_line_btns a {
  float: left;
  width: 100%;
  box-sizing: border-box;
  border: 2px solid white;
  background: #a6cc80;
  text-align: center;
  font-weight: bold;
  color: white;
  padding: 10px 0px 10px 0px;
  margin-top: 8px;
  text-decoration: none;
  border-radius: 5px;
}
.cc_line_btns a:last-child {
  background: #f2e5e5;
  color: #ccb2b2;
}
.cc_modal_bg {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  background: rgba(0, 0, 0, 0.65);
  display: none;
  text-align: center;
  z-index: 201;
}
.cc_modal_win {
  margin-top: 5%;
  display: inline-block;
  width: 90%;
  max-width: 700px;
  max-height: 500px;
  overflow: auto;
  box-sizing: border-box;
  padding: 20px;
  background: white;
  box-shadow: 0 0 10px 0px black;
  border-radius: 4px;
  text-align: left;
  font-size: 90%;
}
.cc_modal_win .cc_line_btns {
  float: left;
  width: 100%;
  margin-top: 10px;
}
.cc_modal_win .cc_line_btns a {
  float: right;
  width: 45%;
  margin: 1% 2.5% 1% 2.5%;
  border-color: rgba(0, 0, 0, 0.15);
  font-size: 16px;
}
.cc_setup_group {
  float: left;
  width: 100%;
  padding-top: 5px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  margin-bottom: 8px;
}
.cc_setup_header {
  float: left;
  width: 100%;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
}
.cc_setup_header:hover {
  text-decoration: underline;
}
.cc_group_expand {
  float: right;
  width: 95.25%;
  color: rgb(110, 110, 110);
  display: none;
}
.cc_group_expand p {
  margin-top: 10px;
}
.checkmark {
  display: inline-block;
  width: 22px;
  height: 22px;
  -ms-transform: rotate(45deg); /* IE 9 */
  -webkit-transform: rotate(45deg); /* Chrome, Safari, Opera */
  transform: rotate(45deg);
  position: relative;
  top: 5px;
  margin-right: 5px;
}
.checkmark_circle {
  position: absolute;
  width: 22px;
  height: 22px;
  background-color: green;
  border-radius: 11px;
  left: 0;
  top: 0;
}
.inactive .checkmark_circle {
  background-color: rgba(50, 0, 0, 0.25);
}
.checkmark_stem {
  position: absolute;
  width: 3px;
  height: 9px;
  background-color: #fff;
  left: 11px;
  top: 6px;
}
.checkmark_kick {
  position: absolute;
  width: 3px;
  height: 3px;
  background-color: #fff;
  left: 8px;
  top: 12px;
}
.arrow {
  border: solid black;
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 3px;
  position: relative;
  top: -2px;
  left: 3px;
  transition: all 0.3s;
}
.down {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}
.up {
  transform: rotate(-135deg) !important;
  -webkit-transform: rotate(-135deg) !important;
  top: 1px;
}

.cc_switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 24px;
}
.cc_switch input.cc {
  opacity: 0;
  width: 0;
  height: 0;
}
.cc_slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.cc_slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 4px;
  bottom: 3px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
input.cc:checked + .cc_slider {
  background-color: green;
}
input.cc:focus + .cc_slider {
  box-shadow: 0 0 0px green;
}
input.cc:checked + .cc_slider:before {
  -webkit-transform: translateX(33px);
  -ms-transform: translateX(33px);
  transform: translateX(33px);
}
.cc_slider.round {
  border-radius: 24px;
}
.cc_slider.round:before {
  border-radius: 50%;
}
