.nuContentEditor .layout {
  border: 3px solid #0F8DCB;
  border-radius: 3px;
  padding: 10px;
  margin-bottom: 20px;
}
.nuContentEditor .layout > .header {
  font-size: 1.2em;
  font-weight: bold;
  margin-bottom: 10px;
  background: #0F8DCB;
  border-radius: 2px;
  min-height: 30px;
  width: 100%;
  display: flex;
  padding: 5px;
}
.nuContentEditor .layout > .header .left {
  display: flex;
}
.nuContentEditor .layout > .header .right {
  margin-left: auto;
}
.nuContentEditor .layout > .header .title {
  font-size: 16px;
  margin-left: 10px;
  color: #FFF;
}
.nuContentEditor .layout > .header .title span {
  line-height: 26px;
}
.nuContentEditor .layout > .header .select {
  margin-left: 10px;
  margin-top: 2px;
}
.nuContentEditor .layout > .header .select select {
  padding: 3px;
  margin: 0;
}
.nuContentEditor .rows {
  display: flex;
  flex-direction: column;
}
.nuContentEditor .row {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  gap: 10px;
  margin: 20px 0;
  border: 2px solid #0F8DCB;
  border-radius: 3px;
  padding: 20px 15px;
}
.nuContentEditor .row .columns {
  display: flex;
  flex-direction: row;
  gap: 10px;
}
.nuContentEditor .row .columns.columns_2 .col {
  max-width: 50%;
}
.nuContentEditor .row .col {
  display: flex;
  justify-content: flex-start;
  flex-grow: 1;
  flex-direction: column;
  border: 1px dashed #f1f1f1;
}
.nuContentEditor .row .col .item .buttons {
  display: flex;
  justify-content: space-around;
  padding: 10px;
  background: #ffffe1;
}
.nuContentEditor .row .col .item .buttons .btn {
  font-size: 15px;
  margin: 0px !important;
  padding: 10px 15px !important;
}
.nuContentEditor .row .col .item .image {
  text-align: center;
}
.nuContentEditor .row .col .item .image img {
  max-width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  max-height: 300px;
}
.nuContentEditor .row .header {
  font-size: 1.2em;
  font-weight: bold;
  margin-bottom: 10px;
  background: #eee;
  border-radius: 2px;
  min-height: 30px;
  width: 100%;
  display: flex;
  padding: 5px;
}
.nuContentEditor .row .header .right {
  margin-left: auto;
}
.nuContentEditor .row .header .title {
  font-size: 16px;
  margin-left: 10px;
}
.nuContentEditor .row .header .title span {
  line-height: 26px;
}