/*
  Icon select for 4 column-layout component.
*/
.icon-select-wrapper .form-item.js-form-type-checkbox {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding: 15px;
  gap: 10px;
  width: 100px;
  height: auto;
}

.icon-select-wrapper .form-checkboxes {
  gap: 20px;
}

/*Restrict the text to 2 lines, crop and add "..." to the end of a line.*/
.icon-select-wrapper span.form-item__prefix {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.icon-select-wrapper span.form-item__suffix {
  margin-left: 0;
}

.icon-select-wrapper span.form-item__suffix svg {
  width: 50px;
  height: 50px;
}

.icon-select-wrapper input.form-checkbox.form-boolean {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  border-radius: 10px;
  transition: .5s;
}

.icon-select-wrapper input.form-checkbox:hover,
.icon-select-wrapper .form-boolean--type-checkbox:checked {
  border: 3px solid #232C64;
}

.paragraphs-tabs-wrapper .field-multiple-table .draggable > td {
  flex: auto !important;
}