@import "./variables.css";
.or-text {
  font-family: var(--roboto-font);
  font-style: normal;
  font-weight: bold;
  font-size: 18px;
  line-height: 38px;
  color: var(--black-color);
  position: relative;
  text-align: center;
}

.or-text:before {
  content: "";
  display: block;
  width: 100px;
  height: 1px;
  background: #424242;
  left: 50px;
  top: 50%;
  position: absolute;
}

.or-text:after {
  content: "";
  display: block;
  width: 100px;
  height: 1px;
  background: #424242;
  right: 50px;
  top: 50%;
  position: absolute;
}

@media (max-width: 480px) {
  .or-text:before {
    width: 80px;
  }

  .or-text:after {
    width: 80px;
  }
}
@media (max-width: 320px) {
  .or-text:before {
    width: 50px;
  }

  .or-text:after {
    width: 50px;
  }
}

/*# sourceMappingURL=ExistingClaimForm.css.map */
