.blurred-content {
  position: relative;
  height: auto;
  overflow: hidden;
}

.blurred-content:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ffffff;
  background: rgba(255, 255, 255, 0.66);
}

.blurred-content-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  -webkit-filter: blur(7.5px);
  -moz-filter: blur(7.5px);
  -o-filter: blur(7.5px);
  -ms-filter: blur(7.5px);
  filter: blur(7.5px);
  background: #ffffff;
  background: rgba(255, 255, 255, 0.66);
}

.blurred-content-foreground {
  z-index: 1;
  display: table;
  height: 100%;
  width: 100%;
  vertical-align: middle;
  position: absolute;
}

.blurred-content-foreground > div {
  text-align: center;
  display: table-cell;
  vertical-align: middle;
}
/*# sourceMappingURL=cc-blur.css.map */