/*
  margins from CMP design
*/
.zfc-separator {
  width: 100%;
  height: 1em;
  margin-top: 50px;
  display: table;
}

@media (max-width: 720px) {
  .zfc-separator {
    margin-top: 60px;
  }
}

@media (max-width: 375px) {
  .zfc-separator {
    margin-top: 40px;
  }
}

.zfc-separator .zfc-dotted-full-line.zfc-separator-fill-left {
  display: block;
  width: 200%;
  margin-left: -100%;
}

/* dotted line */
.zfc-dotted-line {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  text-transform: uppercase;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.17em;
  /* h3 */
  font-family: "Prometo", sans-serif;
  font-weight: 500;
}

.zfc-dotted-line:after, .zfc-dotted-line:before {
  content: '';
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: block;
  /* Needed for ie10 */
  height: 10px;
  /* for separators without content to be visible */
}

.zfc-dotted-line:empty:after {
  display: none;
}

.zfc-dotted-line:not(:empty):before {
  margin-right: 0.8rem;
}

.zfc-dotted-line:not(:empty):after {
  margin-left: 0.8rem;
}
