@charset "UTF-8";
/* Colors */
.form-control {
  font-weight: 500;
}

.updatePending {
  background-color: #ffecb5;
}

.input-disabled {
  pointer-events: none; /* prevents clicks/interactions */
  opacity: 0.6; /* faded look */
  background-color: #f5f5f5; /* typical disabled bg */
  color: #888; /* muted text */
  cursor: not-allowed; /* visual feedback */
}

/* Example usage
<div class="select-container">
    <div class="specialselect-inner">
        <select id="subnav" class="subnavdropdown">
            <option selected="selected" value="xxx">yyy</option>
            <option value="aaa">bbb</option>
        </select>
        <div class="dropdown" for="subnav">▼</div>
    </div>
</div>
*/
.select-container {
  border: 1px solid #D5D8E0;
  border-radius: 5px;
}

.specialselect-inner select {
  appearance: none;
  -webkit-appearance: none;
  border: 0;
  padding: 6px 30px 6px 12px;
  width: 100%;
  color: #55565A;
  text-transform: uppercase;
  z-index: 2;
  background: none;
  font-weight: 500;
}

.specialselect-inner-unstyled select {
  appearance: none;
  -webkit-appearance: none;
  border: 0;
  padding-right: 30px;
  width: 100%;
  margin: 10px 0;
  text-transform: uppercase;
}

.specialselect-inner select:focus, .specialselect-inner-unstyled select:focus {
  outline: none;
}

.specialselect-inner select option {
  padding: 5px 0;
}

.specialselect-inner-unstyled select option {
  padding: 5px 0;
}

.specialselect-inner, .specialselect-inner-unstyled {
  align-items: center;
  display: flex;
  position: relative;
}

.specialselect-inner .dropdown {
  position: absolute;
  right: 10px;
  color: #e2211c;
}

.specialselect-inner-unstyled .dropdown {
  position: absolute;
  right: 10px;
}

.btn-default {
  background-color: #e2211c;
  font-weight: 700;
  color: #FFF;
}

.btn-default:hover {
  background-color: #d2110c;
  color: #FFF;
}

.btn-disabled {
  background-color: #6c757d !important;
  border-color: #6c757d !important;
  color: white !important;
  cursor: not-allowed;
  pointer-events: none;
  opacity: 1;
  font-weight: normal !important;
}