.element-select {
  position: relative;
  display: inline-block; }

.element-select select {
  opacity: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2; }

.element-select.select-small .select-handle {
  border: 0;
  padding-right: 16px;
  background: none; }

.element-select.select-small .select-handle:hover {
  border: 0; }

.element-select.select-small .select-handle::before {
  right: 2px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  border-color: #999 transparent transparent transparent; }

.element-select.select-small.active .select-handle::before {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 4px 5px 4px;
  border-color: transparent transparent #999 transparent; }

.element-select .select-handle {
  text-align: left;
  height: 100%;
  width: 100%;
  cursor: pointer;
  border-radius: 2px;
  padding-right: 32px;
  padding-left: 12px;
  border: solid 1px #ddd;
  background-color: #ffffff;
  position: relative;
  z-index: 1; }

.element-select .select-handle label {
  display: table;
  width: 100%;
  table-layout: fixed; }

.element-select .select-handle-txt {
  display: table-cell;
  font-size: 14px;
  color: #333;
  line-height: 32px;
  font-weight: normal;
  letter-spacing: -1px;
  white-space: nowrap;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis; }

.element-select .select-handle::before {
  position: absolute;
  top: 50%;
  right: 12px;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 4px 0 4px;
  border-color: #666666 transparent transparent transparent;
  transform: translateY(-50%); }

.element-select .select-handle:hover {
  border: solid 1px #666666; }

.element-select .element-dropdown {
  display: none;
  position: absolute;
  top: 82.5%;
  right: 0;
  left: 0;
  z-index: 2;
  list-style: none;
  border-radius: 4px;
  box-shadow: 0 6px 20px 0 rgba(85, 92, 107, 0.3), 0 1px 4px 0 rgba(0, 0, 0, 0.18), 0 0 1px 0 rgba(0, 0, 0, 0.12);
  padding: 12px 0 12px 0;
  background-color: #fff; }

.element-select .element-dropdown button {
  background: none;
  border: 0;
  width: 100%;
  cursor: pointer; }

.element-select .element-dropdown button:hover {
  background-color: #ccc; }

.element-select .element-dropdown .dropdown-item.active button {
  background-color: #ccc; }

.element-select .element-dropdown .dropdown-item.active button .dropdown-txt {
  color: #333333; }

.element-select .element-dropdown .dropdown-txt {
  display: block;
  padding: 0 0 0 17px;
  height: 40px;
  text-align: left;
  font-size: 14px;
  color: #666;
  line-height: 40px; }

.element-select.active .element-dropdown {
  display: block; }

.element-select.active .select-handle::before {
  border-width: 0 4px 6px 4px;
  border-color: transparent transparent #666666 transparent; }

.element-select select:disabled + .select-handle {
  background-color: #f7f7f7; }

.element-select select:disabled + .select-handle:hover {
  border: solid 1px #ddd; }

.element-select select:disabled + .select-handle .select-handle-txt {
  color: #999999; }

.element-select[class*="size-36"] {
  height: 36px; }

.element-select[class*="size-40"] {
  height: 40px; }

.element-select[class*="size-44"] {
  height: 44px; }
