/*!
Chosen, a Select Box Enhancer for jQuery and Prototype
by Patrick Filler for Harvest, http://getharvest.com

Version 1.8.7
Full source at https://github.com/harvesthq/chosen
Copyright (c) 2011-2018 Harvest http://getharvest.com

MIT License, https://github.com/harvesthq/chosen/blob/master/LICENSE.md
This file is generated by `grunt build`, do not edit it by hand.
*/

/* --- Base --- */

.chosen-container {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  font-size: 18px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.chosen-container * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.chosen-container .chosen-drop {
  width: 100%;
  margin-top: -1px;
  position: absolute;
  top: 100%;
  z-index: 1010;
  background: #fff;
  /* TODO: Set box shadow */
  -webkit-box-shadow: 0 0 40px rgba(0, 0, 0, 0.10);
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.10);
  clip: rect(0, 0, 0, 0);
  -webkit-clip-path: inset(100% 100%);
  clip-path: inset(100% 100%);
  background-clip: padding-box;
}

.chosen-container.chosen-with-drop .chosen-drop {
  clip: auto;
  -webkit-clip-path: none;
  clip-path: none;
}

.chosen-container a {
  cursor: pointer;
}

/* --- Select Box --- */

.chosen-container-single .chosen-single {
  display: block;
  width: 100%;
  height: 58px;
  padding: 5px 6px 0 6px;
  border-bottom: 1px solid #101020;
  color: #07081b;
  font-size: 18px;
  line-height: 58px;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  white-space: nowrap;
}

.chosen-container-single .chosen-single span {
  display: block;
  overflow: hidden;
  margin-right: 36px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.chosen-container-single .chosen-single-with-deselect span {
  margin-right: 38px;
}

/* Deselect icon. */
.chosen-container-single .chosen-single abbr {
  position: absolute;
  top: 6px;
  right: 26px;
  display: block;
  width: 12px;
  height: 12px;
  background: url(expand.svg) 0 0 no-repeat;
  font-size: 1px;
}

.chosen-container-single .chosen-single abbr:hover {
  background-position: -42px -10px;
}

/* Expand icon. */
.chosen-container-single .chosen-single div {
  width: 12px;
  height: 14px;
  position: absolute;
  top: 50%;
  right: 13px;
  margin-top: -9px;
  background: url(expand.svg) 0 0 no-repeat;
  background-size: 12px 14px;
}

.chosen-container-single.chosen-with-drop .chosen-single div,
.chosen-container-single .chosen-single div b {
  background-image: url(collapse.svg);
}

.chosen-container-single .chosen-single div b {
  display: block;
  width: 0;
  height: 0;
  overflow: hidden;
  opacity: 0;
}

/* --- Search --- */

.chosen-container-single .chosen-search {
  position: relative;
  z-index: 1010;
}

.chosen-container-single .chosen-search input[type="text"] {
  display: block;
  width: 100%;
  height: 49px;
  padding: 0 24px;
  border: 0;
  border-radius: 0;
  color: #07081b;
  background: #e7e7e9 url(search.svg) right center no-repeat;
  background-position: right 24px center;
  background-size: 14px 14px;
  font-size: 18px;
  line-height: 49px;
  white-space: nowrap;
  -webkit-appearance: none;
  outline: 0;
}

.chosen-container-single.chosen-container-single-nosearch .chosen-search {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  -webkit-clip-path: inset(100% 100%);
  clip-path: inset(100% 100%);
}

/* --- Drop List --- */

.chosen-container .chosen-results {
  margin: 0;
  padding: 0;
  max-height: 196px;
  font-size: 14px;
  line-height: 20px;
  text-transform: uppercase;
  color: #07081b;
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.chosen-container .chosen-results li {
  display: none;
  margin: 0;
  padding: 13px 25px 16px;
  list-style: none;
  word-wrap: break-word;
  -webkit-touch-callout: none;
  position: relative;
}

.chosen-container .chosen-results li:before {
  content: '';
  display: block;
  width: calc(100% - 48px);
  height: 1px;
  background: #07081b;
  position: absolute;
  left: 24px;
  top: 0;
}

.chosen-container .chosen-results li:first-child:before {
  display: none;
}

.chosen-container .chosen-results li.active-result {
  display: list-item;
  cursor: pointer;
}

.chosen-container .chosen-results li.disabled-result {
  display: list-item;
  color: #ccc;
  cursor: default;
}

.chosen-container .chosen-results li.highlighted {
  color: #9956cc;
}

.chosen-container .chosen-results li.no-results {
  color: #535361;
  display: list-item;
  background: #f4f4f4;
}

.chosen-container .chosen-results li.group-result {
  display: list-item;
  font-weight: bold;
  cursor: default;
}

.chosen-container .chosen-results li.group-option {
  padding-left: 15px;
}

.chosen-container .chosen-results li em {
  font-style: normal;
  text-decoration: underline;
  color: #9956cc;
}
