:root {
  --empty-value-text-color: var(--empty-element-property);
}

/**  DELAY AND FILTER BUTTONS : start **/

.extensions-response {
  font-size: var(--font-size-base);
  position: relative;
  width: calc(100% - 6px);
  height: auto;
  margin: 27px 0px 5px 0px;
  padding: 0px 30px;
  display: flex;
  flex-wrap: wrap;
  row-gap: 5px;
  column-gap: 5px;
  align-content: center;
}

.extensions-response .delay-wrapper,
.extensions-response .filter-wrapper {
  display: block;
  height: auto;
  width: auto;
}

.extensions-response .response-controls {
  position: absolute;
  top: 26px;
  left: 0px;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  z-index: 1;
}

.extensions-response .add-filter-btn-wrp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0px 9px;
  height: 26px;
  font-size: 0.9em;
  font-weight: 400;
  border-radius: 13px;
  transition: all 0.3s ease 0s;
  background: var(--blu);
  color: var(--blu-light-01);
}

.extensions-response .add-filter-btn-wrp span.material-icons-outlined {
  font-size: 20px;
  color: var(--color-white-hex);
}

.extensions-response .add-filter-btn-wrp:hover {
  opacity: 0.8;
  cursor: pointer;
}

.extensions-response:hover .response-controls {
  opacity: 1;
}

appdashboard-delay-slider,
appdashboard-delay-text,
appdashboard-filter {
  display: flex;
}

.previewMode.extensions-response {
  margin: 0;
  padding: 0 10px 0px 25px;
}

.previewMode .response-wrp {
  border-radius: var(--input-border-radius-base);
  background: var(--color-white-hex);
  border: 1px solid var(--gray-light-02);
  overflow-x: hidden;
  overflow-y: auto;
  color: #22272d;
  font-size: 1.15em;
  line-height: 25px;
  width: calc(100% - 5px);
  padding: 4px 10px;
  line-height: 20px;
  font-size: 0.8em;
  margin: auto;
  white-space: pre-wrap;
}

.previewMode .response-wrp.no-text {
  color: rgb(141, 162, 181);
}

/**  DELAY AND FILTER BUTTONS : end **/

/** BUTTONS: start **/

.buttons-response {
  display: flex;
  margin: 15px 0 0 0;
  gap: 6px;
  width: 100%;
  font-size: 14px;
  padding: 0 var(--input-base-margin);
  flex-direction: row;
  float: right;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-items: baseline;
  opacity: 1;
}

.buttons-response.disabled {
  opacity: 0.5;
}

.buttons-json-response {
  margin: 0;
  font-size: 14px;
  padding: 0 var(--input-base-margin);
}

.buttons-json-response .button-json {
  float: none;
  margin-left: auto;
}

.buttons-json-response.json-shown .button-json {
  border: 1px solid var(--blu);
  color: var(--blu);
}

.buttons-json-response .more-info {
  text-align: end;
  width: 100%;
  padding: 0 3px;
}

.json-text {
  position: relative;
}

.json-text .button-controls {
  position: absolute;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  justify-content: space-between;
  display: inline-flex;
  left: 0;
  top: 0;
}

.json-text .button-controls .control-button {
  cursor: pointer;
  color: var(--blu);
  transition: color 0.3s;
  height: 24px;
  width: 24px;
  background: var(--blu-light-02);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.json-text .button-controls .control-button em {
  font-size: 16px;
  color: var(--blu);
  transition: color 0.3s;
}

.json-text:hover .button-controls {
  opacity: 1;
}

.custom-placeholder {
  margin: 10px 5px;
  background: #dfdfdf;
  border: dotted 0px #999;
  height: var(--button-height-base);
  transition: transform 250ms cubic-bezier(0, 0, 0.2, 1);
}

.button-reply-add {
  float: right;
  -webkit-user-select: none;
          user-select: none;
  box-sizing: border-box;
  outline: none;
  border: 1px dashed var(--blu-light-02);
  border-radius: var(--button-border-radius-base);
  color: var(--blu-light-02);
  cursor: pointer;
  font-size: 0.7em;
  font-weight: 400;
  line-height: var(--button-height-base);
  order: 1;
  padding: 0 10px;
  transition: all 0.3s;
  min-width: 100px;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
}

/** BUTTONS: end **/

/** DELETE - UP/DOWN LEFT BUTTONS: start **/

.response-controls .control-button {
  cursor: pointer;
  color: var(--blu-04);
  transition: color 0.3s;
  height: 20px;
}

.response-controls .control-button.delete {
  height: 24px;
  width: 24px;
  background: var(--blu-light-02);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.response-controls .control-button.delete em {
  font-size: 1.15em;
  color: var(--blu);
  transition: color 0.3s;
}

.response-controls .control-button:hover {
  color: var(--blu-light-02);
}

.response-controls .control-button:hover.delete {
  box-shadow: 0 2px 6px 0 rgba(255, 255, 255, 0.15);
}

.response-controls .control-button:hover.delete em {
  color: var(--color-red-hex);
}

/** DELETE - UP/DOWN LEFT BUTTONS: end **/

.text-editor-wrapper,
.image-editor-wrapper,
.setting-wrapper {
  font-size: var(--font-size-base);
  position: relative;
  width: 100%;
  height: auto;
  margin: 0px;
}

.text-editor-wrapper .text-editor,
.image-editor-wrapper .text-editor,
.setting-wrapper .text-editor {
  position: relative;
  margin: 0;
  padding: 0;
}

/** ACTION PREVIEW: start **/

.cds-action-preview {
  /* padding: 3px 16px 16px; */
  padding: 5px 10px;
  margin: 0px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.cds-action-preview .title-preview-label {
  color: var(--brown);
  font-size: 12px;
  margin: 0px;
}

.cds-action-preview .icon-action img {
  height: 17px;
  filter: brightness(0) saturate(100%) invert(42%) sepia(2%) saturate(2720%) hue-rotate(9deg) brightness(91%) contrast(81%);
}

.cds-action-preview .icon-action mat-icon {
  height: 17px;
  color: var(--brown-85);
}

.cds-action-preview .set-attribute-value {
  font-size: 12px;
  font-weight: 400;
  background: #ecb606;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0px 6px;
  border-radius: 4px;
  color: #fff;
  line-height: 1.5;
  overflow: hidden;
  word-break: break-word;
}

.action-row {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-direction: row;
}

.action-row-left {
  height: 18px;
  width: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.action-row-right {
  font-size: 12px;
  font-weight: 400;
  color: var(--brown-85);
  display: -webkit-box;
  -webkit-line-clamp: 8;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-height: 240px;
}

.action-row-right.empty,
.set-attribute-value.empty {
  background: none !important;
  color: var(--empty-value-text-color) !important;
  padding: unset !important;
}

.action-row .action-row-left svg {
  fill: var(--brown-85);
}

.previewContent {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  gap: 5px;
  margin: 4px 0px;
}

/** ACTION PREVIEW: end **/

.tag-container {
  height: -moz-fit-content;
  height: fit-content;
  padding: 2px;
  max-width: calc(100% - 25px);
  background-color: var(--blu);
  color: var(--color-white-hex);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
}

.tag-label {
  margin: auto 10px;
  font-size: 12px;
  line-height: 22px;
}
