.falcon-dropdown-container {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.falcon-arrow-and-options-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 3.8rem;
  box-shadow: none;
  border: 0;
  border-radius: 1rem;
  cursor: pointer;
}
.falcon-main-label {
  margin: 0rem 0 0rem 1.1rem;
  color: #888;
  font-weight: bold;
  font-size: 1.2rem;
  position: absolute;
  user-select: none;
  transition: 0.2s ease all;
}
.falcon-main-label-final {
  font-weight: 600;
  color: #777;
  font-size: 0.7rem;
  transition: 0.2s ease all;
  margin-bottom: 1.9rem;
  z-index: 1;
}
.falcon-selected-options-container {
  width: 98%;
  overflow-y: hidden;
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 3rem;
  overflow-x: scroll;
  margin-left: 1.1rem;
}
.falcon-selected-options-container::-webkit-scrollbar {
  height: 0px;
}
.falcon-selected-options-container .falcon-selected-option {
  border-radius: 10rem;
  display: flex;
  background: #f7931e;
  font-size: 0.9rem;
  margin: 0.5rem 0 0 1rem;
  padding: 0.2rem 0.5rem 0.2rem 0.5rem;
  z-index: 2;
  height: 1rem;
  width: auto;
}
.falcon-selected-option:nth-child(1) {
  margin-left: 0rem;
}
.falcon-single-selected {
  display: inline-block;
  color: #555;
  font-size: 1.2rem;
  margin-top: 0.5rem;
}
.falcon-selected-options-container .falcon-selected-option .falcon-selected-option-text {
  margin-right: 0.5rem;
  color: #fff;
}
.falcon-selected-options-container .falcon-selected-option .falcon-selected-option-clear {
  cursor: pointer;
  color: #fff;
}
.falcon-and-more-span {
  margin-left: 0.5rem;
  margin-top: 0.5rem;
  font-weight: bold;
  font-size: 0.95rem;
  color: #999;
  white-space: nowrap;
}
.falcon-and-more-span:hover {
  text-decoration: underline;
}
.falcon-clear-all {
  font-weight: bold;
  color: #777;
  width: 2%;
}
.falcon-arrow-div {
  display: flex;
  align-items: center;
  margin-right: 0.3rem;
  margin-bottom: 0.3rem;
  width: 2%;
}
.falcon-arrow-div i {
  color: #777;
  font-size: 1.2rem;
  cursor: pointer;
}
.falcon-focused-arrow {
  color: #111;
/* -------------------------------------------------- */
}
.falcon-options-and-search-container {
  box-shadow: none;
  width: 100%;
  display: none;
  z-index: 1;
}
.falcon-options-and-search-container .falcon-menu-label {
  margin-left: 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: #666;
}
.falcon-search-add-icon {
  box-shadow: inset 0px -5px 8px #fff, inset 5px 5px 8px #ecd342;
  border: 0;
  border-radius: 1rem;
  padding: 1rem;
  margin-left: 1rem;
  display: flex;
}
.falcon-search-add-icon:hover {
  box-shadow: inset 0px -5px 8px #fff, inset 5px 5px 8px #e8bf00;
}
.falcon-search-add-icon input {
  border: 0;
  outline: 0;
  width: 98%;
  font-size: 1rem;
  color: #666;
}
.falcon-search-add-icon input::placeholder {
  color: #aaa;
  font-size: 0.8rem;
}
.falcon-search-add-icon i {
  font-size: 1.2rem;
  color: #777;
  cursor: pointer;
}
.falcon-search-add-icon i:hover {
  color: #111;
}
.falcon-options-and-search-container .falcon-options-menu {
  padding-left: 1rem;
  height: 17rem;
  overflow-y: scroll;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: auto;
}
.falcon-options-menu .falcon-option {
  background: #fff;
  box-shadow: 5px 5px 10px rgba(0,0,0,0.251), -10px -10px 25px rgba(255,255,255,0.502);
  color: #656c7e;
  min-width: 270px;
  max-width: 400px;
  flex: 1;
  height: 2rem;
  border-radius: 0.6rem;
  font-size: 1.4rem;
  margin-right: 30px;
  list-style: none;
  border: 0;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  user-select: none;
}
.falcon-options-menu .falcon-option:hover {
  box-shadow: 4px -4px 15px rgba(79,126,198,0.749);
  cursor: pointer;
}
.falcon-option-freeze {
  list-style: none;
  box-shadow: inset 0px -5px 8px #fff, inset 5px 5px 8px #92b0dd !important;
  border: 0;
  border-radius: 1rem;
  padding: 1rem;
  margin-bottom: 0.57rem;
  font-size: 0.95rem;
  color: #777;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
}
.falcon-option-freeze:hover {
  box-shadow: inset 0px -5px 8px #fff, inset 5px 5px 8px #4f7ec6;
}
.falcon-show-dropdown {
  display: block;
  animation: 0.5s show-dropdown-transition ease forwards;
}
.falcon-hide-dropdown {
  animation: 0.5s hide-dropdown-transition ease forwards;
  transition: height 4s ease;
  height: 21.5rem;
}
.falcon-selected {
  color: #656c7e;
  box-shadow: inset 6px 6px 6px rgba(79,126,198,0.749) !important;
}
.falcon-keyword-selected {
  display: inline;
  color: #ccc;
  font-size: 0.9rem;
}
.falcon-keyword-selected-hidden {
  display: none;
}
.falcon-option-menu {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  height: 17rem;
  margin: auto;
}
.falcon-dropdown-arrow {
  opacity: 0.5;
  width: 1rem;
  animation: rotate-dropdown-arrow_up ease 0.6s forwards;
}
.falcon-dropdown-arrow_up {
  opacity: 0.5;
  width: 1rem;
  animation: rotate-dropdown-arrow ease 0.6s forwards;
}
.falcon-show-options-menu {
  animation: show-options-menu 0.6s ease forwards;
}
.falcon-no-matches-container {
  display: flex;
  justify-content: center;
  margin-top: 2.2rem;
  height: 10.7rem;
}
.falcon-arrow-and-options-container:hover {
  box-shadow: none;
}
.falcon-clear-all {
  margin-right: 0.5rem;
}
.falcon-clear-all img {
  width: 100%;
}
.falcon-selected-option-clear img {
  filter: invert(48%) sepia(100%) saturate(3233%) hue-rotate(-374deg) brightness(100%) contrast(80%);
}
.falcon-no-matches-container {
  width: 100%;
  height: 13.7rem;
}
.falcon-arrow-div img {
  width: 1rem;
  margin-top: 0.1rem;
}
img {
  user-select: none;
}
/* -------------------------------------------------- */
/* For The Scrollbar  */
/* width */
::-webkit-scrollbar {
  width: 0.7rem;
}
/* Track */
::-webkit-scrollbar-track {
  border-radius: 10px;
}
/* Handle */
::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 1rem;
}
/* -------------------------------------------------- */
@media screen and (max-width: 1200px) {
  .falcon-arrow-div {
    margin: 0.5rem 0rem 0.3rem 0.1rem;
    width: 3%;
  }
  .falcon-clear-all {
    margin-top: 0.5rem;
    margin-left: 1rem;
  }
}
@media screen and (max-width: 830px) {
  .falcon-selected-option {
    display: flex;
    flex-direction: row;
    height: 1rem;
  }
  .falcon-arrow-div {
    margin: 0.5rem 0.4rem 0.3rem 0.8rem;
    width: 5%;
  }
  .falcon-clear-all {
    margin-top: 0.5rem;
  }
}
@media screen and (max-width: 320px) {
  .falcon-selected-option {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    height: 1rem;
  }
  .falcon-keyword-selected {
    font-size: 0.7rem;
  }
  .falcon-clear-all {
    margin-top: 0.5rem;
  }
  .falcon-options-menu {
    display: flex;
    flex-direction: row;
  }
  .falcon-clear-all {
    margin-right: 0rem;
  }
  .falcon-arrow-div {
    margin: 0.5rem 0.7rem 0 1rem;
    width: 5%;
    margin-bottom: 0.2rem;
    margin-left: 0.5rem;
  }
  .falcon-options-menu .falcon-option {
    margin-right: 10px;
    min-width: 130px;
    max-width: 237px;
    font-size: 1.2rem;
  }
  .falcon-selected-option-clear {
    display: none;
  }
  .falcon-selected-options-container .falcon-selected-option .falcon-selected-option-text {
    margin-right: 0rem;
  }
  ::-webkit-scrollbar {
    width: 0.5rem;
  }
}
@-moz-keyframes rotate-dropdown-arrow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-180deg);
  }
}
@-webkit-keyframes rotate-dropdown-arrow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-180deg);
  }
}
@-o-keyframes rotate-dropdown-arrow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-180deg);
  }
}
@keyframes rotate-dropdown-arrow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-180deg);
  }
}
@-moz-keyframes rotate-dropdown-arrow_up {
  from {
    transform: rotate(-180deg);
  }
  to {
    transform: rotate(0deg);
  }
}
@-webkit-keyframes rotate-dropdown-arrow_up {
  from {
    transform: rotate(-180deg);
  }
  to {
    transform: rotate(0deg);
  }
}
@-o-keyframes rotate-dropdown-arrow_up {
  from {
    transform: rotate(-180deg);
  }
  to {
    transform: rotate(0deg);
  }
}
@keyframes rotate-dropdown-arrow_up {
  from {
    transform: rotate(-180deg);
  }
  to {
    transform: rotate(0deg);
  }
}
@-moz-keyframes show-dropdown-transition {
  from {
    opacity: 0;
    height: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes show-dropdown-transition {
  from {
    opacity: 0;
    height: 0;
  }
  to {
    opacity: 1;
  }
}
@-o-keyframes show-dropdown-transition {
  from {
    opacity: 0;
    height: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes show-dropdown-transition {
  from {
    opacity: 0;
    height: 0;
  }
  to {
    opacity: 1;
  }
}
@-moz-keyframes hide-dropdown-transition {
  from {
    opacity: 1;
    height: 22rem;
  }
  to {
    height: 0;
    opacity: 0;
  }
}
@-webkit-keyframes hide-dropdown-transition {
  from {
    opacity: 1;
    height: 22rem;
  }
  to {
    height: 0;
    opacity: 0;
  }
}
@-o-keyframes hide-dropdown-transition {
  from {
    opacity: 1;
    height: 22rem;
  }
  to {
    height: 0;
    opacity: 0;
  }
}
@keyframes hide-dropdown-transition {
  from {
    opacity: 1;
    height: 22rem;
  }
  to {
    height: 0;
    opacity: 0;
  }
}
@-moz-keyframes show-options-menu {
  from {
    height: 0rem;
  }
  to {
    height: 18rem;
  }
}
@-webkit-keyframes show-options-menu {
  from {
    height: 0rem;
  }
  to {
    height: 18rem;
  }
}
@-o-keyframes show-options-menu {
  from {
    height: 0rem;
  }
  to {
    height: 18rem;
  }
}
@keyframes show-options-menu {
  from {
    height: 0rem;
  }
  to {
    height: 18rem;
  }
}
