:host {
  /* scw element */
  position: relative;
  box-sizing: border-box;
  --margin-right: initial;
  --margin-bottom: initial;
  --gap-h-int: initial;
  --gap-v-int: initial;
  margin-right: var(--margin-right, var(--gap-h-int, initial));
  margin-bottom: var(--margin-bottom, var(--gap-v-int, initial));
  display: block;
}

:host([warning]) {
  outline: 2px solid red !important;
}
.testimonial-card {
  background-color: rgba(0, 0, 0, 0);
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  padding-left: 0px;
  padding-right: 0px;
  padding-top: 0px;
  padding-bottom: 0px;
  height: 100%;
}
.testimonial-card > *:not(:last-child) {
  margin-bottom: calc(var(--scw-spacing-1) * 2.5);
  --margin-bottom: calc( var( --scw-spacing-1 ) * 2.5 );
}
.testimonial-card .testimonial-container {
  background-color: var(--scw-color-grey-10);
  border-radius: 10px 10px 10px 10px;
  box-shadow: 0px 2px 14px 0px rgba(0, 0, 0, 0.09);
  align-self: stretch;
  flex: 1;
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: center;
  padding-left: var(--scw-spacing-3);
  padding-right: var(--scw-spacing-3);
  padding-top: var(--scw-spacing-2);
  padding-bottom: var(--scw-spacing-2);
  transition: all 100ms;
}
.testimonial-card .testimonial-container > *:not(:last-child) {
  margin-bottom: var(--scw-spacing-2);
  --margin-bottom: var( --scw-spacing-2 );
}
.testimonial-card .testimonial-container scw-icon {
  background-color: rgba(0, 0, 0, 0);
  width: 40px;
  height: 40px;
  --scw-icon-color: var(--scw-color-primary-03);
  transition: all 100ms;
}
.testimonial-card .testimonial-container .body {
  text-align: CENTER;
  font: var(--scw-type-text-bold-04-font);
  color: var(--scw-color-grey-02);
  align-self: stretch;
  flex: 1;
  align-items: center;
  display: flex;
}
.testimonial-card .testimonial-container .source {
  background-color: rgba(0, 0, 0, 0);
}
.testimonial-card .testimonial-container .source .author {
  text-align: CENTER;
  font: var(--scw-type-text-04-font);
  color: var(--scw-color-grey-02);
  align-self: stretch;
}
.testimonial-card .testimonial-container .source .description {
  text-align: CENTER;
  font: 400 0.9375rem/1.406rem "Proxima Nova";
  color: var(--scw-color-grey-02);
  align-self: stretch;
}

.default .testimonial-container {
  background-color: var(--scw-color-grey-10);
  border-radius: 10px 10px 10px 10px;
  box-shadow: 0px 2px 14px 0px rgba(0, 0, 0, 0.09);
  align-self: stretch;
  flex: 1;
}
.default .testimonial-container scw-icon {
  width: 40px;
  height: 40px;
  --scw-icon-color: var(--scw-color-grey-08);
}

.image-wrapper {
  background-color: rgba(0, 0, 0, 0);
  border-radius: 100px 100px 100px 100px;
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: center;
  padding-left: 0px;
  padding-right: 0px;
  padding-top: 0px;
  padding-bottom: 0px;
  width: 80px;
  height: 80px;
}
.image-wrapper > *:not(:last-child) {
  margin-bottom: calc(var(--scw-spacing-1) * -0.5);
  --margin-bottom: calc( var( --scw-spacing-1 ) * -0.5 );
}
.image-wrapper .image {
  background-color: rgba(0, 0, 0, 0);
  width: 80px;
  height: 80px;
  position: absolute;
  border-radius: 100px;
  overflow: hidden;
}