.qr-code-wrapper {
  background: $info-light;
  width: 240px;
  height: 240px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  .qr-code-inner {
    position: relative;
    z-index: 1;
    padding: 20px;
    height: 200px;
    img {
      object-fit: cover;
      height: 160px;
      width: 160px;
    }
    .scanner {
      position: absolute;
      content: "";
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      &.shape-1:after {
        position: absolute;
        content: "";
        left: 0;
        top: 0;
        width: 20px;
        height: 20px;
        border-top: 1px solid $primary-5;
        border-left: 1px solid $primary-5;
      }
      &.shape-1:before {
        position: absolute;
        content: "";
        right: 0;
        top: 0;
        width: 20px;
        height: 20px;
        border-top: 1px solid $primary-5;
        border-right: 1px solid $primary-5;
      }
      &.shape-2:after {
        position: absolute;
        content: "";
        left: 0;
        bottom: 0;
        width: 20px;
        height: 20px;
        border-bottom: 1px solid $primary-5;
        border-left: 1px solid $primary-5;
      }
      &.shape-2:before {
        position: absolute;
        content: "";
        right: 0;
        bottom: 0;
        width: 20px;
        height: 20px;
        border-bottom: 1px solid $primary-5;
        border-right: 1px solid $primary-5;
      }
    }
  }
}
