.text-style {
  color: rgba(148, 148, 148, 1);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown__trigger {
  background-color: transparent;
  border: none;
  color: rgba(148, 148, 148, 1);
  padding: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.dropdown__trigger-arrow {
  width: 14px;
  height: 14px;
}

.dropdown__trigger-arrow svg {
  width: 100%;
  height: 100%;
}

.dropdown__menu {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 0;
  width: max-content;
  display: none;
  background-color: rgba(31, 31, 31, 1);
  border: 1px solid rgba(148, 148, 148, 0.5);
  border-radius: 16px;
  padding: 2px 0px;
  z-index: 1000;
}

.dropdown-menu--active {
  display: grid;
  gap: 4px;
}

.dropdown__menu-item {
  display: inline-block;
  padding: 16px 20px;
  text-decoration: none;
  color: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  line-height: inherit;
}

.dropdown__menu-item:hover {
  color: rgba(255, 255, 255, 1);
}

@media (min-width: 1101px) and (max-width: 1850px) {
  .text-style {
    font-size: 12px;
    line-height: 14px;
  }
}

@media (min-width: 550px) and (max-width: 1100px) {
  .text-style {
    font-size: 14px;
    line-height: 16px;
  }
}

@media (max-width: 549px) {
  .text-style {
    font-size: 12px;
    line-height: 14px;
  }
}