/*=====================================*/
/* WYSIWYG Templates - Drupal 8        */
/*=====================================*/

/* The section uses as a helper for editors. */
.cke_editable .wysiwyg-templates .img-wrapper {
  border: 1px solid #f0f0f0;
  min-width: 50px;
  min-height: 50px;
}

.cke_editable .wysiwyg-templates .img-wrapper.img-fluid:not(.d-inline) drupal-entity {
  width: 100%;
}

.cke_editable .wysiwyg-templates .img-wrapper.img-fluid.d-inline .cke_widget_wrapper {
  display: inline-block;
}
/* End section. */

.wysiwyg-templates .img-wrapper.img-fluid:not(.d-inline) img {
  width: 100%;
}

.wysiwyg-templates .icon-column .img-wrapper.img-fluid img {
  width: auto;
}

.wysiwyg-templates .floated-image {
  max-width: 450px !important;
}

.wysiwyg-templates .embedded-entity img {
  float: none;
}

@media (max-width: 991px) {
  .wysiwyg-templates .floated-image {
    max-width: 100% !important;
    width: 100%;
  }
}

/* Icon List Item CSS set to flebox */
.wysiwyg-templates .list-item {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: center;
  align-content: center;
  gap: 20px;
  color: #003c5c;
  overflow: hidden;
  font-size: 2.2rem;
}
.wysiwyg-templates .list-item img {
  width: 100%;
  max-width: 40px;
}
.wysiwyg-templates .list-item a {
  display: inline-block;
  font-weight: 400 !important;
  vertical-align: baseline;
}
.wysiwyg-templates .icon-column img {
  display: block;
}

.fifty-fifty-column-wrapper {
}

.wysiwyg-templates .fifty-fifty-column {
  background-color: #efefef;
  min-height: 500px;
  padding: 0;
}

@media (max-width: 991px) {
  .wysiwyg-templates .fifty-fifty-column {
    min-height: 400px;
  }
}
@media (max-width: 767px) {
  .wysiwyg-templates .fifty-fifty-column {
    min-height: 0;
  }
}
.wysiwyg-templates .fifty-fifty-column img {
  background-size: cover;
  height: 500px;
  min-height: 500px;
}
@media (max-width: 991px) {
  .wysiwyg-templates .fifty-fifty-column img {
    height: 400px;
    min-height: 400px;
  }
}
@media (max-width: 767px) {
  .wysiwyg-templates .fifty-fifty-column img {
    height: auto;
    min-height: 0;
  }
}
.wysiwyg-templates .fifty-fifty-column .fifty-fifty-content {
  padding: 3rem 4rem;
}
.wysiwyg-templates .fifty-fifty-column .fifty-fifty-image-grid img {
  height: 250px;
  min-height: 250px;
}
@media (max-width: 991px) {
  .wysiwyg-templates .fifty-fifty-column .fifty-fifty-image-grid img {
    height: 200px;
    min-height: 200px;
  }
}
@media (max-width: 767px) {
  .wysiwyg-templates .fifty-fifty-column .fifty-fifty-image-grid img {
    height: auto;
    min-height: 0;
  }
}


/* Flexbox Rows
=================================================*/
/* CSS Flexbox */
.wysiwyg-templates .wysiwyg-flex-row {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: center;
  align-content: center;
  gap: 15px;
}
