input {
  /* box-shadow: none !important; */
}

.Dropdown-root {
  position: relative;
}

.Dropdown-control {
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  cursor: default;
  transition: all 200ms ease;
  width: 100%;
  background-image: linear-gradient(191deg, #FFFFFF 0%, #F2F2F2 81%);
  border: 1px solid #E4E4E4;
  box-shadow: -3px 0px 2px 0px rgba(0,0,0,0.03);
  border-radius: 0px 6px 6px 0px;
  height: 55px;
  line-height: 55px;
  text-align: center;
}

.Dropdown-control:hover {
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.Dropdown-arrow {
  border-color: #999 transparent transparent;
  border-style: solid;
  border-width: 5px 5px 0;
  content: ' ';
  display: block;
  height: 0;
  position: absolute;
  right: 10px;
  top: calc(50% - 2px);
  width: 0
}

.is-open .Dropdown-arrow {
  border-color: transparent transparent #999;
  border-width: 0 5px 5px;
}

.Dropdown-menu {
  background-color: white;
  border: 1px solid #ccc;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
  box-sizing: border-box;
  margin-top: -1px;
  max-height: 200px;
  overflow-y: auto;
  position: absolute;
  top: 100%;
  width: 100%;
  z-index: 2000;
  -webkit-overflow-scrolling: touch;
}

.Dropdown-menu .Dropdown-group > .Dropdown-title{
  padding: 8px 10px;
  color: rgba(51, 51, 51, 1);
  font-weight: bold;
  text-transform: capitalize;
}

.Dropdown-option {
  box-sizing: border-box;
  color: rgba(51, 51, 51, 0.8);
  cursor: pointer;
  display: block;
  padding: 8px 10px;
}

.Dropdown-option:last-child {
  border-bottom-right-radius: 2px;
   border-bottom-left-radius: 2px;
}

.Dropdown-option:hover {
  background-color: #f2f9fc;
  color: #333;
}

.Dropdown-option.is-selected {
  background-color: #f2f9fc;
  color: #333;
}

.Dropdown-noresults {
  box-sizing: border-box;
  color: #ccc;
  cursor: default;
  display: block;
  padding: 8px 10px;
}

.Dropdown-placeholder {
  color: #626262;
  font-size: 18px;
}

/* Inline Dropdown */
.inlineDropdown-root {
  position: relative;
  display: inline-block;
  width: 200px;
  text-align: left;
  top: 10px;
}

.inlineDropdown-control {
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  cursor: hand;
  transition: all 200ms ease;
  width: 100%;
  border: 1px solid #E4E4E4;
  border-radius: 6px 6px 6px 6px;
  line-height: 33px;
  text-align: left;
  height: 36px;
  padding-left: 10px;
}

.inlineDropdown-control:hover {
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.inlineDropdown-arrow {
  border-color: #999 transparent transparent;
  border-style: solid;
  border-width: 5px 5px 0;
  content: ' ';
  display: block;
  height: 0;
  margin-top: -ceil(2.5);
  position: absolute;
  right: 10px;
  top: 14px;
  width: 0
}

.is-open .inlineDropdown-arrow {
  border-color: transparent transparent #999;
  border-width: 0 5px 5px;
}

.inlineDropdown-menu {
  background-color: white;
  border: 1px solid #ccc;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
  box-sizing: border-box;
  margin-top: -1px;
  max-height: 233px;
  overflow-y: auto;
  position: absolute;
  top: 100%;
  width: 100%;
  z-index: 1000;
  -webkit-overflow-scrolling: touch;
}

.inlineDropdown-menu .Dropdown-group > .Dropdown-title{
  padding: 8px 10px;
  color: rgba(51, 51, 51, 1);
  font-weight: bold;
  text-transform: capitalize;
}

.inlineDropdown-option {
  box-sizing: border-box;
  color: rgba(51, 51, 51, 0.8);
  cursor: pointer;
  display: block;
  padding: 8px 10px;
  font-size: 18px;
}

.inlineDropdown-option:last-child {
  border-bottom-right-radius: 2px;
   border-bottom-left-radius: 2px;
}

.inlineDropdown-option:hover {
  background-color: #f2f9fc;
  color: #333;
}

.inlineDropdown-option.is-selected {
  background-color: #f2f9fc;
  color: #333;
}

.inlineDropdown-noresults {
  box-sizing: border-box;
  color: #ccc;
  cursor: default;
  display: block;
  padding: 8px 10px;
}

.inlineDropdown-placeholder {
  color: #626262;
  font-size: 18px;
}
