.select-dropdown,
.select-dropdown * {
  margin: 0px;
  padding: 4px;
  position: relative;
  box-sizing: border-box;
  border: 2px outset #f6a11a;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.select-dropdown {
  position: relative;
  border-radius: 4px;
}
.select-dropdown select {
  font-size: 1rem;
  font-weight: normal;
  max-width: 100%;
  padding: 8px 24px 8px 10px;
  border: none;
  background-color: transparent;
    -webkit-appearance: none;
    -moz-appearance: none;
  appearance: none;
}
.select-dropdown select:active, .select-dropdown select:focus {
  outline: none;
  box-shadow: none;
}
.select-dropdown:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 8px;
  width: 0;
  height: 0;
  margin-top: -2px;
  border-top: 5px solid #aaa;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
}

.select-dropdown:hover {
  background-color: #c7c7c7;
}

.marked {
  /* background-color: orange !important; */
  text-decoration-line: underline;
  /*text-underline-position: under; */
  text-decoration-color: orange;
  text-decoration-thickness: 4px;
}

#bookmark-id {
  border-radius: 5px 0px 0px 5px;
  border: 0px solid #f6a11a;
}

#bookmark-id:hover {
      border: 0px solid #f6a11a;
      background-color: #f6a11a;
      transition: 0.2s;
  }

#bookmark-id-clear {
  border-radius: 0px 5px 5px 0px;
  border: 0px solid #f6a11a;
}

#bookmark-id-clear:hover {
      color: red;
      background-color:white;
      transition: 0.2s;
  }


#bookmark-id-empty {
  border-radius: 5px;
  background-color: #383838;
  color: #f6a11a;
  border: 1px solid #f6a11a;
}

#bookmark-id-empty:hover {
      border: 1px solid white;
      color: white;
      transition: 0.2s;
  }


#rbookmark {
  margin-top:11px;
  margin-left:4px;
  margin-right:4px;
}

/**
 * Change selection color
*/
::-moz-selection { /* Code for Firefox */
  color: #FFBF00;
  background: #343a40;
}

::selection {
  color: #FFBF00;
  background: #343a40;
}

