.gh-cards-widget {
  display: flex;
  flex-direction: column;
  width: 306px;
}
.gh-cards-widget .card-graphic {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  min-height: 190px;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  background-color: #FF8000;
  transition: 0.24s background-color ease-in-out;
}
.gh-cards-widget .card-graphic:hover {
  cursor: pointer;
}
.gh-cards-widget .card-graphic span.placeholder {
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  margin-top: auto;
}
.gh-cards-widget .card-content {
  display: flex;
  flex-direction: column;
  padding: 32px;
  width: 100%;
  min-height: 158px;
  height: 100%;
  background-color: #FFFFFF;
  border-bottom: 1px solid #D4D4DB;
  border-right: 1px solid #D4D4DB;
  border-left: 1px solid #D4D4DB;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}
.gh-cards-widget .card-content h3 {
  margin: 0;
  text-align: center;
  /* Desktop/Heading/XS */
  font-size: 20px;
  font-style: normal;
  font-weight: 800;
  line-height: 24px; /* 120% */
}
.gh-cards-widget .card-content .description, .gh-cards-widget .card-content .description p {
  margin-bottom: 0;
  margin-top: 16px;
  text-align: center;
  color: var(--Color-Primary, #262632);
  /* Global/Paragraph/SM/Regular */
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 128.571% */
}
.gh-cards-widget.selection-type {
  flex-direction: column;
}
.gh-cards-widget.selection-type .card-content {
  align-items: center;
  height: auto;
  gap: 16px;
  border: none;
  box-shadow: 0 0 0 1px var(--Shades-Black-10, rgba(38, 38, 50, 0.1)) inset;
  border-radius: 8px;
  transition: 0.24s box-shadow ease-in-out;
}
.gh-cards-widget.selection-type .card-content p {
  margin-top: 0;
}
.gh-cards-widget.selection-type .card-graphic {
  background-color: #FFFFFF;
}
.gh-cards-widget.selection-type span.placeholder {
  background-image: url("assets/selection-card-placeholder.png");
  width: 160px;
  height: 160px;
}
.gh-cards-widget.selection-type img {
  /*width: 160px;*/
  height: 160px;
  object-fit: contain;
}
.gh-cards-widget.selection-type .description h3 {
  color: var(--Color-Primary, #262632);
  text-align: center;
  /* Global/Paragraph/SM/Bold */
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 18px; /* 128.571% */
}
.gh-cards-widget.selection-type .gh-input-wrapper {
  position: relative;
  display: flex;
  width: 40px;
  height: 40px;
}
.gh-cards-widget.selection-type .gh-input-wrapper[data-type=checkbox] input {
  visibility: hidden;
  width: 0;
  height: 0;
}
.gh-cards-widget.selection-type .gh-input-wrapper[data-type=checkbox] label {
  display: flex;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 6px;
  border: 1px solid var(--Shades-Black-10, rgba(38, 38, 50, 0.1));
  background: var(--Neutrals-White, #FFF);
  transition: 0.24s background-color ease-in-out;
  cursor: pointer;
}
.gh-cards-widget.selection-type .gh-input-wrapper[data-type=checkbox] label:after {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  content: "";
  background-image: url("assets/selection-checkmark-icon.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  transition: 0.24s opacity ease-in-out;
}
.gh-cards-widget.selection-type .card-content:not(.disabled) input:checked + label {
  background: var(--Color-Celebration, #0D8668);
}
.gh-cards-widget.selection-type .card-content:not(.disabled) input:checked + label:after {
  opacity: 1;
}
.gh-cards-widget.selection-type .card-content.selected {
  box-shadow: 0px 0px 0px 4px var(--Color-Celebration, #0D8668) inset;
}
.gh-cards-widget.selection-type .card-content.disabled {
  background: var(--Shades-Black-5, rgba(38, 38, 50, 0.05));
  box-shadow: 0px 0px 0px 1px var(--Shades-Black-5, rgba(38, 38, 50, 0.05)) inset;
}
.gh-cards-widget.image-type span.placeholder {
  background-image: url("assets/image-card-placeholder.png");
  width: 114px;
  height: 166px;
}
.gh-cards-widget.image-type img {
  /*width: 114px;*/
  height: 180px;
  object-fit: contain;
}
.gh-cards-widget.use-parent-width {
  width: 100%;
}
.gh-cards-widget.use-parent-height {
  height: 100%;
}
.gh-cards-widget.use-parent-height .card-content {
  height: 100%;
}

.gh-parent_height {
  height: 100%;
}

.gh-parent_height .gh-cards-widget {
  height: 100%;
}

/*# sourceMappingURL=gh-cards.css.map */
