.boj-widget {
  --boj-icon-column: 54px;
  --boj-column-gap: 16px;
  --boj-icon-size: 54px;
  --boj-step-height: 126px;
  --boj-last-step-height: 106px;
  --boj-line-color: #dfe2e6;
  --boj-connector-width: 2px;
  --boj-divider-width: 1px;
  --boj-divider-bottom: 25px;
  width: 100%;
  max-width: 767px;
  margin: 0 auto;
  padding: 0 0 18px;
  overflow: hidden;
  background: #fff;
  box-sizing: border-box;
}

.boj-header {
  padding: 38px 36px 31px;
}

.boj-steps {
  padding: 0 16px 0 8px;
}

.boj-widget *,
.boj-widget *::before,
.boj-widget *::after {
  box-sizing: border-box;
}

.boj-heading {
  margin: 0;
  color: #c79a34;
  font-family: Montserrat, Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 2.2px;
  text-transform: uppercase;
}

.boj-step {
  position: relative;
  display: grid;
  grid-template-columns: var(--boj-icon-column) minmax(0, 1fr);
  column-gap: var(--boj-column-gap);
  align-content: start;
  min-height: var(--boj-step-height);
}

.boj-step:last-child {
  min-height: var(--boj-last-step-height);
}

.boj-has-connector .boj-step:not(:last-child)::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: var(--boj-icon-size);
  bottom: 0;
  left: calc((var(--boj-icon-column) - var(--boj-connector-width)) / 2);
  border-left-color: var(--boj-line-color);
  border-left-style: dashed;
  border-left-width: var(--boj-connector-width);
}

.boj-has-dividers .boj-step::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: var(--boj-divider-bottom);
  left: calc(var(--boj-icon-column) + var(--boj-column-gap));
  height: var(--boj-divider-width);
  background: var(--boj-line-color);
}

.boj-has-dividers .boj-step:last-child::after {
  bottom: 0;
}

.boj-icon {
  position: relative;
  z-index: 2;
  display: flex;
  width: var(--boj-icon-size);
  height: var(--boj-icon-size);
  align-items: center;
  justify-content: center;
  justify-self: center;
  flex: 0 0 auto;
  color: var(--boj-item-icon-color, var(--boj-icon-color, #fff));
  background: var(--boj-item-icon-background, var(--boj-icon-background, #c79a34));
  border: 4px solid #fff;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(35, 25, 12, .14);
}

.boj-icon i,
.boj-icon svg {
  display: block;
  width: 20px;
  height: 20px;
  color: inherit;
  fill: currentColor;
}

.boj-content {
  min-width: 0;
  padding-bottom: 25px;
}

.boj-label {
  margin: 3px 0 0;
  color: #c79a34;
  font-family: Montserrat, Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.boj-title {
  min-width: 0;
  margin: 7px 0 0;
  color: #1f2024;
  font-family: "Bodoni Moda", Georgia, serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.25;
}

.boj-title a {
  color: inherit;
  text-decoration: none;
}

.boj-title a:hover,
.boj-title a:focus {
  color: inherit;
  text-decoration: underline;
}

.boj-description {
  min-width: 0;
  margin: 5px 0 0;
  color: #596176;
  font-family: Montserrat, Arial, sans-serif;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.75;
}
