/*
 * Custom Select jQuery Plugin Base
 */
.custom-select {
  position: relative;
}

.custom-select__option {
  overflow: hidden;
  box-sizing: border-box;
  display: block;
  width: 100%;
  padding: 0;
  background-color: transparent;
  border: 0;
  border-radius: 0;
  font-family: inherit;
  white-space: nowrap;
  text-align: left;
  text-overflow: ellipsis;
  cursor: pointer;
  user-select: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.custom-select__option-wrap {
  position: relative;
}

.custom-select__input {
  box-sizing: border-box;
  display: block;
  width: 100%;
  padding: 0;
  border-width: 1px 0;
  border-style: solid;
  border-radius: 0;
  font-family: inherit;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.custom-select__dropdown {
  position: absolute;
  box-sizing: border-box;
  width: 100%;
  top: 100%;
  left: 0;
}

.custom-select--dropup .custom-select__dropdown {
  top: auto;
  bottom: 100%;
}

/*
 * Custom Select jQuery Plugin Theme
 */
.custom-select__option {
  position: relative;
  font-weight: 300;
  line-height: 40px;
  font-size: 24px;
  padding-left: 10px;
}

.custom-select__option:focus {
  outline: none;
}

.custom-select__dropdown .custom-select__option:hover, .custom-select__dropdown .custom-select__option:focus {
  background-color: #E44E00;
}

.custom-select__option--value {
  width: 100%;
  overflow: hidden;
  height: 60px;
  -moz-border-radius: 6px; /* Firefox */
  -webkit-border-radius: 6px; /* Safari, Chrome */
  border-radius: 6px; /* CSS3 */
  border: 1px solid #CB9A5D;
  background-color: #E9C392;
  font-weight: 300;
  font-size: 24px;
  color: #552212;
  padding-left: 10px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}

.custom-select__option--value::after {
  position: absolute;
  box-sizing: border-box;
  width: 0;
  height: 0;
  top: 50%;
  right: 0.75rem;
  border-width: 0.3rem;
  border-bottom-width: 0;
  border-style: solid;
  border-color: currentColor transparent;
  transform: translateY(-50%);
  content: "";
}

.custom-select--active .custom-select__option--value::after
{
}

.custom-select--active .custom-select__option--value {

}

.custom-select--active .custom-select__option--value:hover, .custom-select--active .custom-select__option--value:focus {

}

.custom-select--dropup.custom-select--active .custom-select__option--value {
}

.custom-select__option--selected {
  background-color: #fcfcfc;
}

.custom-select__option[disabled] {
  color: #a1a1a1;
  cursor: default;
}

.custom-select__option[disabled]:hover, .custom-select__option[disabled]:focus {
  background-color: transparent;
}

.custom-select__option-wrap {
  overflow-y: auto;
  max-height: 11.25rem;
}

.custom-select__option-wrap::-webkit-scrollbar {
  width: 16px;
}

.custom-select__option-wrap::-webkit-scrollbar-thumb {

}

.custom-select__input {
  position: relative;
  z-index: 1;
  height: 2.25rem;
  margin-top: -1px;
  padding: 0 0.75rem;
  transform: translateY(1px);
  font-size: 1rem;
  color: #212121;
}

.custom-select__input:focus {
  outline: none;
}

.custom-select--dropup .custom-select__input {
  border-top-width: 0;
  margin-top: 0;
  transform: translateY(0);
}

.custom-select__dropdown {
  overflow: hidden;
  z-index: 1;
  top: calc(100% - 1px);
  background-color: #F8DBB0;
  border-width: 0 1px 1px;
  border-style: solid;
  border-color: #E44E00;
  border-radius: 0 0 8px 8px;
}

.custom-select--dropup .custom-select__dropdown {
  bottom: calc(100% - 1px);

}
.dropdown-display
{
  border: 0px;
  text-decoration: none;
}
.dropdown-display:active
{
  border: 0px;
  text-decoration: none;
}
.dropdown-display:hover
{
  border: 0px;
  text-decoration: none;
}
/*# sourceMappingURL=jquery.custom-select.css.map */
