/**
 * #.# Common SCSS
 *
 * Can include things like variables and mixins
 * that are used across the project.
*/
/**
 * #.# Editor Styles
 *
 * CSS for just Backend enqueued after style.scss
 * which makes it higher in priority.
 */
.wp-block-cgb-block-wordpress {
  background: #bada55;
  border: 0.2rem solid rgb(41, 41, 41);
  color: rgb(41, 41, 41);
  margin: 0 auto;
  max-width: 740px;
  padding: 2rem;
}

.wp-block-codoc-border {
  background: #bada55;
  border: 0.2rem solid rgb(41, 41, 41);
  color: rgb(41, 41, 41);
  text-align: center;
  padding: 2rem;
}

.components-range-control__number {
  width: 70px;
}

.codoc-subscription-title {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
}

.codoc-subscription-add {
  position: relative;
  display: inline-block;
  padding: 2px 10px 2px 23px;
  margin-left: 10px;
  background: #0073aa;
  color: #fff;
  font-size: 11px;
  text-decoration: none;
  border-radius: 3px;
}

.codoc-subscription-add:hover {
  background: #0070a7;
  color: #efefef;
}

.codoc-subscription-add:before {
  position: absolute;
  top: 50%;
  left: 7px;
  display: block;
  content: "";
  width: 10px;
  height: 1px;
  margin-top: -1px;
  background: #fff;
}

.codoc-subscription-add:after {
  position: absolute;
  top: 50%;
  left: 7px;
  display: block;
  content: "";
  width: 10px;
  height: 1px;
  margin-top: -1px;
  background: #fff;
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}