.inverted-border-radius-text {
    /* position: relative; */
    z-index: 0;
  }

  .inverted-border-radius-text::before {
    content: "";
    position: absolute;
    right: -50px;
    top: 0;
    height: 25px;
    width: 50px;
    border-top-left-radius: 20px;
    box-shadow: -25px 0 0 0 white;
  }
  .inverted-border-radius-text::after {
    content: "";
    position: absolute;
    bottom: -60px;
    left: -1px;
    height: 60px;
    width: 25px;
    border-top-left-radius: 50px;
    box-shadow: 0 -40px 0 0 white;
  }

  .inverted-border-radius-icon::before {
    z-index: 5;
    content: "";
    position: absolute;
    background-color: transparent;
    left: -50px;
    bottom: 0px;
    height: 25px;
    width: 50px;
    border-bottom-right-radius: 25px;
    box-shadow: 25px 0 0 0 white;
  }

  .inverted-border-radius-icon::after {
    z-index: 0;
    content: "";
    position: absolute;
    background-color: transparent;
    top: -50px;
    right: 0;
    height: 50px;
    width: 25px;
    border-bottom-right-radius: 25px;
    box-shadow: 0 25px 0 0 white;
  }
