.customizableFieldsContainer {
  display: grid;
  width: 100%;
  gap: 20px;
}
.customizableFieldsContainer:empty{
  display:none;
}
.customizableField {
  position: relative;
  width: 100%;
  height: auto;
  display: grid;
  gap: 10px;
  overflow: hidden;
}

.customizableFieldRow:not(.isFile), .customizableFieldRow.isFile .file-input-wrapper {
  width: 65%;
  border: 1px solid var(--lines-border-color, #d0d0d0);
  color: var(--base, #000);
  box-sizing: border-box;
  height: auto;
  border-radius: var(--border-radius, 8px);
  font-size: inherit;
  padding: 13px;
  background-color: transparent;
}

.customizableFieldRow.isFile .file-input-wrapper {
  position:relative;
  display: flex;
  flex-direction: row;
}
 
.customizableFieldRow.isFile .file-input-name{
  margin-left:10px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.customizableFieldRow.isFile .FMFileUploadFrame{
position:absolute;
  inset:0;
  width:100%;
height:100%;
}

.customizableFieldTitle {
  position: relative;
  font-size: inherit;
  font-weight: 600;
}
select.customizableFieldRow {
  cursor: pointer;
  position: relative;
  z-index: 1;
}
.customizableFieldRow.hasDatepicker{
    cursor: pointer;
    background-image: url("../../files/calendar.svg");
    background-repeat: no-repeat;
    background-size: 20px;
    background-position: right 12px center;
}
.textareaField.customizableFieldRow {
  resize: unset;
  height: 90px;
border-radius: var(--border-radius-small, 8px);
}

select.customizableFieldRow {
  background-image: url(../../files/arrowDownBlack.svg);
  background-size: 15px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -ms-appearance: none;
  background-repeat: no-repeat;
  background-position: right 15px center;
}
.file-input-wrapper > span{
   flex: none;
  }

.customizableFieldRow::-webkit-input-placeholder {
    font-weight: 300;
  color: rgb(from var(--base) r g b / var(--opacity));
}

.customizableFieldRow::-moz-placeholder {
    font-weight: 300;
  color: rgb(from var(--base) r g b / var(--opacity));
}

.customizableFieldRow::-ms-input-placeholder {
    font-weight: 300;
  color: rgb(from var(--base) r g b / var(--opacity));
}
@media screen and (max-width: 1100px) {
  .customizableFieldRow:not(.isFile), .customizableFieldRow.isFile .file-input-wrapper{
    width: 100%;
  }
}
