.fg-dropdown-country-search-result-list {
  position: absolute;
  top: 5px;
  left: 0;
  z-index: 1300;

  overflow-x: hidden;
  overflow-y: auto;
  opacity: 1;
  visibility: visible;

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

  padding: 15px;
  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;
}

.fg-dropdown-country-search-result-list.ng-hide {
  opacity: 0;
  visibility: hidden;
}

.fg-dropdown-country-search-result {
  position: relative;

  display: flex;
  align-items: center;

  width: 100%;

  margin-left: 0;
  padding: 15px 15px 0 0;

  background: none;
  cursor: pointer;
}

.fg-dropdown-country-search-result:first-child {
  padding-top: 0;
}

.fg-dropdown-country-search-result:after {
  position: absolute;
  right: 13px;
  top: 0;

  width: 15px;
  height: 100%;

  background-image: linear-gradient(to right, rgba(34, 36, 38, 0) 30%, rgba(34, 36, 38, .6) 37%, rgba(34, 36, 38, .9) 50%, rgba(34, 36, 38, 1) 100%);

  content: "";
  pointer-events: none;
}

.fg-dropdown-country-search-result-label {
  overflow: hidden;

  max-width: 100%;

  color: #999999;
  border-bottom: 1px solid transparent;

  white-space: nowrap;

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

.fg-dropdown-country-search-result-label--hovered,
.fg-dropdown-country-search-result-label--active {
  color: #FFFFFF;
  border-color: #08B58E;
}

.fg-dropdown-country-search-options-button {
  width: 12.5px;

  margin-left: .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-country-search-options-button:hover {
  color: #000000;
}

.fg-dropdown-country-search-options-button--reverted {
  margin-left: 1.5px;

  transform: rotate(180deg);
}

@media screen and (max-width: 767px) {
  .fg-dropdown-country-search-display-text {
    font-size: 12px;
    line-height: 15px;
  }

  .fg-dropdown-country-search-options-button {
    position: absolute;
    right: 19px;
    top: 24px;
  }
}
