.fg-dropdown-select-container {
  position: relative;

  display: flex;
  align-items: center;

  height: 50px;

  padding: 8px 15px;
  margin: 0;

  border-radius: 0;
  border-bottom: 1px solid #DDDDDD;
  background-color: #FFFFFF;
  cursor: pointer;
}

.fg-dropdown-select-unit-text {
  position: absolute;
  top: 50%;
  right: 50px;

  color: #777777;

  font-size: 12.5px;
  text-transform: uppercase;

  transform: translateY(-50%);
}

.fg-dropdown-select-options-button {
  position: absolute;
  top: calc(50% - 2px);
  right: 19px;
  z-index: 1200;

  width: 12.5px;

  padding: 0;

  background: none;
  border: none;
  color: #777777;

  font-size: 8.5px;
  line-height: 1;

  transform: rotate(0deg);
  transition: color .4s ease, transform .4s ease;
}

.fg-dropdown-select-options-button--hovered,
.fg-dropdown-select-options-button:hover {
  color: #000000;
}

.fg-dropdown-select-options-button--reverted {
  top: calc(50% - 4px);

  transform: rotate(180deg);
}


.fg-dropdown-select-menu {
  position: absolute;
  top: 5px;
  left: 0;
  z-index: 1300;

  overflow-x: hidden;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;

  width: 100%;
  max-height: 0px;

  padding: 15px 10px;
  margin: 42px 0 0;
  border-radius: 0 0 5px 5px;

  border: none;
  background-color: rgba(34, 36, 38, 1);
  box-shadow: none;

  font-size: 14px;
  text-align: left;
  list-style: none;

  transition: opacity .4s ease, visibility .4s ease, max-height .8s ease;
}

.fg-dropdown-select-menu--visible {
  opacity: 1;
  visibility: visible;

  max-height: 374px;
}

.fg-dropdown-select-menu-overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;

  background: transparent;
}

.fg-dropdown-select-menu-item {
  position: relative;

  display: flex;
  align-items: center;
  overflow: hidden;

  padding: 15px 15px 0 7px;

  background: none;
}

.fg-dropdown-select-menu-item:first-of-type {
  padding-top: 0;
}

.fg-dropdown-select-menu-item:last-of-type {
  padding-bottom: 0;
}

.fg-dropdown-select-menu-item-text {
  color: #999999;
  border-bottom: 1px solid transparent;

  transition: color .4s ease, border-bottom .4s ease;
}

.fg-dropdown-select-menu-item-text--active {
  color: #FFFFFF;
  border-color: #08B58E;
}
