.sq-image-with-header-body {
  &__container {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    padding: 30px;
    > div {
      display: flex;
      align-items: center;
      text-align: center;
    }
  }
  &__image {
    width: 90px;
    height: 90px;
    overflow: hidden;
    border-radius: 50%;
    img {
      height: 100%;

    }
  }
  &__text {
    padding: 30px;
  }

  &--style-bordered {
    margin: 15px 0;
    .sq-image-with-header-body__container {
      border: solid 1px  $sq-color-slate-lighter;
      border-radius: 15px;
    }
    border-radius: 5px;
  }
  &--style-shadow {
    margin: 15px 0;
    .sq-image-with-header-body__container {
      border: solid 1px  $sq-color-slate-lightest;
      box-shadow: 0px 10px 10px $sq-color-slate-lightest;
      border-radius: 15px;
    }
    border-radius: 5px;
  }
 
}
