.cc_banner-wrapper {
  z-index: 9001;
  position: relative;
}
.cc_container {
  position: fixed;
  overflow: hidden;
  padding: 10px;
  left: 0px;
  right: 0px;
  font-family: "Helvetica Neue Light", "HelveticaNeue-Light", "Helvetica Neue", Calibri, Helvetica, Arial;
  font-size: 16px;
  color: #fdfdfd;
  background-color: rgba(0, 0, 0, 0.9);
  box-sizing: border-box;
}
@media only screen and (min-width: $width) {
  .cc_container {
    padding: 15px 30px 15px;
  }
}
.cc_container::-moz-selection {
  color: #fff;
  background: #ff5e99;
  text-shadow: none;
}
.cc_container a {
  color: #31a8f0;
  color: black;
}
.cc_container .cc_btn {
  display: block;
  float: right;
  padding: 8px 10px;
  width: 33%;
  max-width: 136px;
  font-size: 12px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  line-height: 16px;
  white-space: nowrap;
  color: #000 !important;
  background-color: white;
  filter: brightness(0.7);
  -webkit-border-radius: 5px;
  border-radius: 5px;
  cursor: pointer;
  transition: 200ms color, 200ms filter, 200ms box-shadow;
}
@media only screen and (min-width: $width) {
  .cc_container .cc_btn {
    font-size: 13px;
  }
}
@media only screen and (min-width: $width) {
  .cc_container .cc_btn {
    font-size: 16px;
  }
}
.cc_container .cc_btn:hover {
  /*box-shadow: 0px 0px 12px 1px rgba(255, 255, 255, .8);*/
  filter: brightness(1);
  text-shadow: none;
}
.cc_container .cc_message {
  display: block;
  margin: 0px;
  padding: 0px;
  /*font-size: 10px;*/
  line-height: 22px;
  transition: font-size 200ms;
}
@media only screen and (min-width: $width) {
  .cc_container .cc_message {
    margin-top: 8px;
    font-size: 13px;
  }
}
@media only screen and (min-width: $width) {
  .cc_container .cc_message {
    font-size: 16px;
    line-height: 16px;
  }
}
.cc_container .cc_message .cc_more_info {
  color: white;
}
.cc_container .cc_selection {
  display: block;
  margin: 4px 0px 0px 0px;
  padding: 0px;
  font-size: 10px;
  line-height: 22px;
  transition: font-size 200ms;
}
.cc_container .cc_selection .cc_option_toggle {
  flex-direction: row;
  display: inline-flex;
  margin: 0px 16px 0px 0px;
}
.cc_container .cc_selection .cc_option_toggle .cc_option_checkbox {
  position: absolute;
  margin: 6px 14px;
  width: 14px;
  height: 13px;
  border-radius: 16px;
}
.cc_container .cc_selection .cc_option_toggle .cc_option_toggle_switch {
  position: relative;
  width: 42px;
  height: 25px;
  background-color: #CACCCC;
  border-radius: 16px;
  cursor: pointer;
  transition: 0.3s background-color;
}
.cc_container .cc_selection .cc_option_toggle .cc_option_toggle_switch:hover {
  background-color: #666;
}
.cc_container .cc_selection .cc_option_toggle .cc_option_toggle_switch::after {
  content: "";
  position: absolute;
  margin: 0px;
  left: 4px;
  top: 4px;
  width: 16px;
  height: 16px;
  background-color: white;
  border-radius: 100%;
  box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.2);
  transform: translateX(0);
  transition-duration: 0.3s;
  transition-property: all;
  transition-timing-function: ease-out;
}
.cc_container .cc_selection .cc_option_toggle .cc_option_toggle_switch.selected {
  background-color: #317ECA;
}
.cc_container .cc_selection .cc_option_toggle .cc_option_toggle_switch.selected:hover {
  background-color: #115EAA;
}
.cc_container .cc_selection .cc_option_toggle .cc_option_toggle_switch.selected::after {
  left: calc(100% - 16px - 4px);
}
.cc_container .cc_selection .cc_option_toggle .cc_option_toggle_label {
  margin: 3px 0px 3px 8px;
  font-size: 1rem;
  font-weight: 600;
  white-space: nowrap;
}
@media print {
  .cc_banner-wrapper, .cc_container {
    display: none;
  }
}
