.c-module {
  position: relative;
  margin-bottom: 8px;
}

.c-module:first-of-type .cc-block:first-of-type {
  margin-top: 0;
}

.c-module .c-fixed::after,
.c-module__frame {
  content: '';
  position: absolute;
  // top: -4px;
  // left: -4px;
  // width: calc(100% + 8px);
  // height: calc(100% + 8px);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: solid 9px transparent;
  z-index: var(--zindex-module-active);
}

.c-module--active {
  .c-module__frame,
  .c-fixed::after {
    border-image: url(../../assets/images/frame.png) 9 repeat;
  }
  .c-fixed + .c-module__frame {
    display: none;
  }
}
