.body--cscb-edit-box-visible {
  overflow: hidden;
}
.cscb__button {
  background-color: #8AC249;
  border: 2px solid #8AC249;
  border-radius: 5px;
  box-sizing: border-box;
  color: #F2F2F2;
  cursor: pointer;
  display: block;
  font-family: 'ProximaNW01-AltLightReg', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  margin-bottom: 1rem;
  padding: 15px 20px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  width: 100%;
}
.cscb__button:hover {
  color: inherit;
}
.cscb__button--bordered {
  background-color: transparent;
  border-color: #B4B4B4;
  color: #B4B4B4;
}
.cscb-info-box {
  background-color: #3E3E3E;
  color: #F2F2F2;
  display: none;
  position: fixed;
  z-index: 100;
}
.cscb-info-box__inner-wrapper {
  -ms-flex-align: center;
      align-items: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  margin: 0 auto;
  max-width: 1120px;
  padding: 20px 0;
}
.cscb-info-box__text {
  padding-right: 40px;
}
.cscb-info-box .cscb__button {
  margin-bottom: 0;
  margin-left: 20px;
  white-space: nowrap;
  width: auto;
}
.cscb-info-box--center {
  bottom: 0;
  left: 0;
  width: 100%;
}
.cscb-info-box--left,
.cscb-info-box--right {
  bottom: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
  width: 345px;
}
.cscb-info-box--left .cscb-info-box__inner-wrapper,
.cscb-info-box--right .cscb-info-box__inner-wrapper {
  -ms-flex-direction: column;
      flex-direction: column;
  padding: 20px;
}
.cscb-info-box--left .cscb-info-box__text,
.cscb-info-box--right .cscb-info-box__text {
  padding-right: 0;
}
.cscb-info-box--left .cscb__button,
.cscb-info-box--right .cscb__button {
  margin-left: 0;
  margin-top: 20px;
  white-space: normal;
  width: 100%;
}
.cscb-info-box--left {
  left: 20px;
}
.cscb-info-box--right {
  right: 20px;
}
.cscb-edit-box {
  background-color: rgba(0, 0, 0, 0.8);
  display: none;
  height: 100%;
  left: 0;
  opacity: 0;
  overflow-y: scroll;
  position: fixed;
  top: 0;
  transition: opacity 200ms ease-in;
  width: 100%;
  z-index: 99999;
}
.cscb-edit-box--visible {
  -ms-flex-align: center;
      align-items: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: center;
      justify-content: center;
  opacity: 1;
}
.cscb-edit-box--hidden {
  opacity: 0;
}
.cscb-edit-box--left {
  -ms-flex-pack: left;
      justify-content: left;
}
.cscb-edit-box--right {
  -ms-flex-pack: right;
      justify-content: right;
}
.cscb-edit-box__inner-box {
  background-color: #3E3E3E;
  box-sizing: border-box;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
  color: #F2F2F2;
  display: block;
  max-width: 460px;
  opacity: 1;
  padding: 30px;
  position: relative;
  width: 100%;
  z-index: 9999999;
}
.cscb-edit-box__close-icon {
  cursor: pointer;
  height: 22px;
  position: absolute;
  right: 20px;
  top: 20px;
  width: 22px;
}
.cscb-edit-box__close-icon::before,
.cscb-edit-box__close-icon::after {
  background-color: #F2F2F2;
  content: '';
  height: 22px;
  left: 10px;
  position: absolute;
  width: 2px;
}
.cscb-edit-box__close-icon::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.cscb-edit-box__close-icon::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.cscb-edit-box__title {
  color: #F2F2F2;
  font-family: 'Merriweather', serif;
  font-size: 1.5rem;
  margin: 10px 0 20px;
  text-align: center;
}
.cscb-edit-box__description,
.cscb-edit-box__settings-wrapper {
  margin-bottom: 30px;
}
.cscb-edit-box__checkbox {
  -ms-flex-align: center;
      align-items: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  padding-bottom: 10px;
}
.cscb-edit-box__checkbox--locked {
  opacity: 0.5;
}
.cscb-edit-box__checkbox--locked .cscb-edit-box__checkbox-label {
  cursor: not-allowed !important;
}
.cscb-edit-box__checkbox input[type=checkbox] {
  display: none;
}
.cscb-edit-box__checkbox input[type=checkbox]:checked + label.cscb-edit-box__checkbox-label {
  background: #8AC249;
}
.cscb-edit-box__checkbox input[type=checkbox]:checked + label.cscb-edit-box__checkbox-label::after {
  background-color: #F2F2F2;
  left: calc(25px  * 1.5 - 4px);
}
.cscb-edit-box__checkbox input[type="checkbox"] + label.cscb-edit-box__checkbox-label {
  background: #737373;
  border-radius: 29px;
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  height: 29px;
  margin-left: 0;
  margin-bottom: 0;
  position: relative;
  width: 62.5px;
}
.cscb-edit-box__checkbox input[type="checkbox"] + label.cscb-edit-box__checkbox-label::before {
  display: none;
}
.cscb-edit-box__checkbox input[type="checkbox"] + label.cscb-edit-box__checkbox-label::after {
  background: #B4B4B4;
  border-radius: 50%;
  content: '';
  height: 25px;
  left: 4px;
  max-width: 25px;
  position: absolute;
  top: 2px;
  transition: 300ms;
  width: 25px;
}
.cscb-edit-box__checkbox-title {
  color: #F2F2F2;
  display: inherit;
  margin-bottom: 0;
  text-decoration: none;
}
.cscb-edit-box__checkbox-title::after {
  border: solid #F2F2F2;
  border-width: 0 2px 2px 0;
  box-sizing: content-box;
  content: '';
  display: inline-block;
  height: 9px;
  margin: 3px 0 0 10px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  width: 9px;
}
.cscb-edit-box__checkbox-title--no-arrow {
  cursor: initial;
  max-width: 345px;
  text-align: right;
}
.cscb-edit-box__checkbox-title--no-arrow::after {
  display: none;
}
.cscb-edit-box__checkbox-title--open::after {
  margin-top: 8px;
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}
.cscb-edit-box__checkbox-title-link,
.cscb-edit-box__table-link,
.cscb-edit-box__imprint-link {
  color: #B4B4B4;
  display: inline-block;
  margin-bottom: 0;
  font-size: 12px;
  text-decoration: none;
}
.cscb-edit-box__checkbox-title-link {
  display: block;
  text-align: right;
}
.cscb-edit-box__accordion-wrapper {
  border-top: 2px solid #8AC249;
  display: none;
  margin-bottom: 20px;
  padding: 15px 0 0;
}
.cscb-edit-box__accordion-wrapper--open {
  display: block;
}
.cscb-edit-box__accordion-description {
  margin: 0;
  padding-bottom: 15px;
}
.cscb-edit-box__table {
  margin-bottom: 15px;
  width: 100%;
}
.cscb-edit-box__table td {
  padding: 5px;
}
.cscb-edit-box__table tr {
  padding: 0;
}
.cscb-edit-box__table tr td:first-child {
  width: 92px;
}
.cscb-edit-box__table tr a {
  margin-bottom: 0;
  padding: 0;
}
.cscb-edit-box__table tr:nth-child(odd) td {
  background-color: #454545;
}
.cscb-edit-box__imprint-wrapper {
  text-align: center;
}
.cscb-edit-box__imprint-link:not(:last-child)::after {
  content: '|';
  padding: 0 6.6px 0 6.6px;
}
.cscb-preview-box {
  -ms-flex-align: center;
      align-items: center;
  background-color: #3E3E3E;
  box-sizing: border-box;
  color: #F2F2F2;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  height: 100%;
  -ms-flex-pack: center;
      justify-content: center;
  left: 0;
  padding: 60px;
  position: absolute;
  text-align: center;
  top: 0;
  width: 100%;
}
.cscb-preview-box .cscb__button {
  width: auto;
}
.cscb-iframe-wrapper {
  height: 0;
  overflow: hidden;
  padding-bottom: 56.25%;
  padding-top: 0;
  position: relative;
}
.cscb-iframe-wrapper--loading::before {
  background-image: url("../images/spinner.gif");
  background-size: contain;
  content: '';
  height: 40px;
  left: 50%;
  margin-left: -20px;
  position: absolute;
  top: 50%;
  width: 40px;
}
.cscb-iframe-wrapper iframe {
  height: 100%;
  left: 0;
  position: absolute;
  width: 100%;
  top: 0;
}
@media screen and (max-width: 1140px) {
  .cscb-info-box__inner-wrapper {
    -ms-flex-direction: column;
        flex-direction: column;
    padding: 20px;
  }
  .cscb-info-box__text {
    padding-right: 0;
  }
  .cscb-info-box .cscb__button {
    margin-left: 0;
    margin-top: 20px;
    white-space: normal;
    width: 100%;
  }
}
@media screen and (max-width: 640px) {
  .cscb-edit-box--visible {
    -ms-flex-align: center;
        align-items: center;
  }
  .cscb-info-box--left,
  .cscb-info-box--right {
    bottom: 0;
    left: 0;
    right: auto;
    width: 100%;
  }
}
