/*!
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.
*/

/* @group Base */
.chosen-container {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  font-size: 20px;
  -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 {
  position: absolute;
  top: 100%;
  z-index: 1010;
  width: 100%;
  border: solid 1px rgba(144, 161, 181, 0.4);
  border-radius: 4px;
  background-color: #fbfcfd;
  color: #2c2c2c;
  box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.05);
  clip: rect(0, 0, 0, 0);
  -webkit-clip-path: inset(100% 100%);
          clip-path: inset(100% 100%);
}

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

.chosen-container a {
  cursor: pointer;
}

.chosen-container .search-choice .group-name, .chosen-container .chosen-single .group-name {
  margin-right: 4px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-weight: normal;
  color: #999999;
}

.chosen-container .search-choice .group-name:after, .chosen-container .chosen-single .group-name:after {
  content: ":";
  padding-left: 2px;
  vertical-align: top;
}

/* @end */
/* @group Single Chosen */
.chosen-container-single .chosen-single {
  position: relative;
  display: block;
  overflow: hidden;
  /*height: 56px;*/
  text-decoration: none;
  white-space: nowrap;

  font-family: Montserrat, sans-serif;
  font-size: 16px;
  line-height: 1.94;
  letter-spacing: 0.3px;

  width: 100%;
  padding: 9px 20px 8px;

  border: solid 1px rgba(144, 161, 181, 0.4);
  border-radius: 4px;
  background-color: rgba(245, 246, 250, 0.4);
  color: #2c2c2c;
  box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.05);

  transition: all .2s cubic-bezier(0.250, 0.460, 0.450, 0.940);

}

.chosen-container-single .chosen-default {
  color: #999;
}

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

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

.chosen-container-single .chosen-single abbr {
  position: absolute;
  top: 6px;
  right: 26px;
  display: block;
  width: 12px;
  height: 12px;
  background: url('/static/images/images/arrow-down.svg') -42px 1px no-repeat;
  font-size: 1px;
}

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

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

.chosen-container-single .chosen-single:after {
  position: absolute;
  content: '';
  top: 20px;
  right: 14px;
  width: 14px;
  height: 9px;
  background: url('/static/images/images/arrow-down.svg') no-repeat 50% 50%/100%;
  opacity: .5;
}

.chosen-container-single .chosen-single div {
  display: none;
}

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

.chosen-container-single .chosen-search input[type="text"] {
  margin: 1px 0;
  padding: 10px 20px;
  width: 100%;
  height: auto;
  outline: 0;
  border: 1px solid #ddddde;
  font-size: 1em;
  line-height: normal;
}

.chosen-container-single .chosen-drop {
  margin-top: 4px;
  box-shadow: 0 10px 10px rgba(0,0,0,.2);
}

.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%);
}

/* @end */
/* @group Results */
.chosen-container .chosen-results {
  color: #444;
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  margin: 0;
  padding: 0;
  max-height: 240px;
  border-radius: 4px;
  -webkit-overflow-scrolling: touch;
}

.chosen-container .chosen-results li {
  display: none;
  font-family: Montserrat, sans-serif;
  margin: 0;
  padding: 8px 22px;
  list-style: none;
  line-height: 1.7;
  font-size: 16px;
  word-wrap: normal;
  -webkit-touch-callout: 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 {
  background-color: #292929;
  color: #fff;
}

.chosen-container .chosen-results li.no-results {
  color: #777;
  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;
}

/* @end */
/* @group Active  */
.chosen-container-active.chosen-with-drop .chosen-single {
  border-color: #2c2c2c;
}

.chosen-container-active.chosen-with-drop .chosen-single div {
  border-left: none;
  background: transparent;
}

.chosen-container-active.chosen-with-drop .chosen-single div b {
  background-position: -18px 2px;
}

.chosen-container-active .chosen-choices {
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

.chosen-container-active .chosen-choices li.search-field input[type="text"] {
  color: #222 !important;
}

/* @end */
/* @group Disabled Support */
.chosen-disabled {
  opacity: 0.5 !important;
  cursor: default;
}

.chosen-disabled .chosen-single {
  cursor: default;
}

.chosen-disabled .chosen-choices .search-choice .search-choice-close {
  cursor: default;
}
/* @end */
@media only screen and (max-width: 991.98px) {
  .chosen-select.form__input {
    font-family: Montserrat, sans-serif;
    font-size: 16px;
    line-height: 1.94;
    letter-spacing: 0.3px;

    width: 100%;
    padding: 14px 20px 13px;

    border: solid 1px rgba(144, 161, 181, 0.4);
    border-radius: 4px;
    background-color: rgba(245, 246, 250, 0.4);
    color: #2c2c2c;
    box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.05);

    transition: all .2s cubic-bezier(0.250, 0.460, 0.450, 0.940);
  }
}
