/*start: custom select*/
.live-editor-custom-select {
    position: relative;
  }
  
  .live-editor-custom-select select {
    display: none; 
  }
  
  .live-editor-custom-select-selected {
    background-color: var(--customSelectBg);
    border: 1px solid #525252;
  }
  
  .live-editor-custom-select-selected:after {
    position: absolute;
    content: "";
    top: 14px;
    right: 10px;
    width: 0;
    height: 0;
    border: 6px solid transparent;
    border-color: #fff transparent transparent transparent;
  }

  .live-editor-custom-select.live-editor-custom-select-expanded .live-editor-custom-select-selected:after {
    display: none;
  }
  
  .live-editor-custom-select-selected.live-editor-custom-select-arrow-active:after {
    border-color: transparent transparent #fff transparent;
    top: 7px;
  }
  
  .live-editor-custom-select-items-con {
    background-color: #272d34;
    z-index: 999999999999;
  }
  .live-editor-custom-select-items-con.live-editor-custom-select-right-fullheight-position,
  .live-editor-custom-select-items-con.live-editor-custom-select-left-fullheight-position,
  .live-editor-custom-select-items-con.live-editor-custom-select-winmid-fullheight-position,
  .live-editor-custom-select-items-con.live-editor-custom-select-fullwidth-fullheight-position {
    max-height: 100%;
    overflow-y: auto;
  }
  .live-editor-custom-select-items .live-editor-custom-select-option, .live-editor-custom-select-selected {
    color: #ffffff;
    padding: 8px 16px;
    border: 1px solid transparent;
    border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
    cursor: pointer;
    user-select: none;
    white-space: nowrap;
  }
  .live-editor-custom-select-option {
    display: flex;
  }
  
  

  .live-editor-custom-select-hide {
    display: none;
  }
  
  .live-editor-custom-select-items .live-editor-custom-select-option:hover, .live-editor-custom-select-same-as-selected {
    background-color: var(--customSelectDropdownSelected);
  }


.live-editor-custom-select-custom-input {
    border: none;
    outline: none;
}
[contenteditable="true"].live-editor-custom-select-custom-input {
    white-space: nowrap;
    width:200px;
    overflow: hidden;
} 
[contenteditable="true"].live-editor-custom-select-custom-input br {
    display:none;
}
[contenteditable="true"].live-editor-custom-select-custom-input * {
    display:inline;
    white-space:nowrap;
}
/*end: custom select*/