/* =========================================
   Icon Box Widget
   ========================================= */

.fsb-w-icon-box {
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
}

.fsb-icon-box {
  display: flex;
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
}

/* -----------------------------------------
   Layout Varianten
----------------------------------------- */

.fsb-icon-box--top {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.fsb-icon-box--left {
  flex-direction: row;
  align-items: center;
}

.fsb-icon-box--right {
  flex-direction: row-reverse;
  align-items: center;
}

/* -----------------------------------------
   Icon Bereich
----------------------------------------- */

.fsb-icon-box__icon {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

.fsb-icon-box__icon svg {
  display: block;
}

/* -----------------------------------------
   Content Bereich
----------------------------------------- */

.fsb-icon-box__content {
  flex: 1 1 auto;
  min-width: 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

.fsb-icon-box__title {
  margin: 0;
  font-weight: 600;
}

.fsb-icon-box__text {
  margin: 0;
  white-space: normal;
}

.fsb-icon-box__button {
  box-sizing: border-box;
}

/* -----------------------------------------
   Embedded Master Button
----------------------------------------- */

.fsb-icon-box__button .fsb-cta__btn {
  max-width: 100%;
}

.fsb-icon-box__button .fsb-cta__btn[style*="width: 100%"],
.fsb-icon-box__button .fsb-cta__btn[style*="width:100%"] {
  width: 100% !important;
}

/* -----------------------------------------
   Safety / Reset
----------------------------------------- */

.fsb-icon-box * {
  box-sizing: border-box;
}