/* General styles used by many widgets */
.boxshadow {
  box-shadow: 3px 3px 4px rgba( 234, 234, 234 ,  1 );
  box-shadow: 3px 3px 4px rgba( var(--palette-neutral-8,234, 234, 234) ,  1 );
  -moz-box-shadow: 3px 3px 4px rgba( 234, 234, 234 ,  1 );
  -moz-box-shadow: 3px 3px 4px rgba( var(--palette-neutral-8,234, 234, 234) ,  1 );
  -webkit-box-shadow: 3px 3px 4px rgba( 234, 234, 234 ,  1 );
  -webkit-box-shadow: 3px 3px 4px rgba( var(--palette-neutral-8,234, 234, 234) ,  1 );
}

/* Styles associated with the dropdown widget */
.dropdown-popup {
  position: fixed;
  z-index: 1;
  /* required for IE */
}

.dropdown-input-main {
  position: relative;
}

.dropdown-input-inputarea {
  position: relative;
  margin-right: 19px;
}

.dropdown-input-text {
  background-color: transparent;
  border: 0px;
  left: 0px;
  outline: 0px;
  overflow: hidden;
  padding: 0px;
  position: absolute;
  top: 0px;
  margin: 0;
}

.dropdown-input-name {
  position: absolute;
  width: 100%;
}

.dropdown-input-autocomplete {
  color: rgba( 200, 200, 200 ,  1 );
  color: rgba( var(--palette-neutral-20,200, 200, 200) ,  1 );
  width: 100%;
}

.dropdown-input-blank {
  height: 15px;
  background-color: rgba(255, 255, 255, 1);
  background-color: var(--background-color,rgba(255, 255, 255, 1));
  opacity: 0;
  filter: alpha(opacity=0);
  position: relative;
}

.dropdown-input-search {
  background-repeat: no-repeat;
  background-position: center;
  bottom: 0px;
  position: absolute;
  right: 0px;
  top: 0px;
  width: 16px;
}

.dropdown-input-list-container {
  background-color: rgba(255, 255, 255, 1);
  background-color: var(--background-color,rgba(255, 255, 255, 1));
  border:  1px solid;
  border-color: rgba( 200, 200, 200 ,  1 );
  border-color: rgba( var(--palette-neutral-20,200, 200, 200) ,  1 );
  border-top: 0px;
  display: none;
  margin-left: 10px;
  overflow: hidden;
  position: absolute;
  z-index: 100;
}

.dropdown-input-list-container .status-text {
  color: rgba(0, 0, 0, .55);
  color: var(--text-secondary-color,rgba(0, 0, 0, .55));
  display: none;
  font-size: 12px;
  font-style: italic;
  padding: 2px;
  text-align: center;
}

.dropdown-input-list {
  margin: 0px;
  list-style-type: none;
  overflow: hidden;
  padding: 1px;
  position: relative;
}

.dropdown-input-list.overflow {
  overflow-y: auto;
}

.dropdown-input-listitem {
  border:  1px solid;
  border-color: rgba( 255, 255, 255 ,  1 );
  border-color: rgba( var(--palette-neutral-0,255, 255, 255) ,  1 );
  cursor: pointer;
  padding-left: 3px;
  position: relative;
}

.dropdown-input-listitem-value {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.dropdown-input-listitem-delete {
  bottom: 0px;
  display: none;
  position: absolute;
  right: 0px;
  top: 0px;
  width: 15px;
  overflow: hidden;
}

.dropdown-input-listitem-delete:before {
  position: relative;
  content: url("../../_content/tfs-icons.png");
  left: -1296px;
  top: -16px;
}

.dropdown-input-listitem.highlighted {
  border:  1px solid;
  border-color: rgba( 199, 224, 244 ,  1 );
  border-color: rgba( var(--palette-primary-tint-20,199, 224, 244) ,  1 );
  background-color: rgba( 222, 236, 249 ,  1 );
  background-color: rgba( var(--palette-primary-tint-30,222, 236, 249) ,  1 );
  border:  1px dashed;
  border-color: rgba( 0, 0, 0 ,  1 ) !important;
  border-color: rgba( var(--palette-neutral-100,0, 0, 0) ,  1 ) !important;
  font-weight: bold !important;
}

.dropdown-input-listitem.highlighted.deletable .dropdown-input-listitem-value {
  margin-right: 15px;
}

.dropdown-input-listitem.highlighted.deletable .dropdown-input-listitem-delete {
  display: block;
}

/* Background image styles that are used by widgets */
.img_magnify {
  overflow: hidden;
}

.img_magnify:before {
  position: relative;
  content: url("../../_content/tfs-icons.png");
  left: -3632px;
  top: -16px;
}

.img_expand {
  overflow: hidden;
}

.img_expand:before {
  position: relative;
  content: url("../../_content/tfs-icons.png");
  left: -1552px;
  top: -16px;
}

.img_collapse {
  overflow: hidden;
}

.img_collapse:before {
  position: relative;
  content: url("../../_content/tfs-icons.png");
  left: -1552px;
  top: -16px;
}

.img_redx {
  overflow: hidden;
}

.img_redx:before {
  position: relative;
  content: url("../../_content/tfs-icons.png");
  left: -1296px;
  top: -16px;
}

.img_grayx {
  overflow: hidden;
}

.img_grayx:before {
  position: relative;
  content: url("../../_content/tfs-icons.png");
  left: -1296px;
  top: -16px;
}
