:root {
  --color-primary: #003acc;
  --color-hover: white;
  --color-secondary: #c2c2c2;
}

.content__header__right {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 10px;

  justify-content: space-between;
  align-items: center;
}

.content__header__right .nav__button {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  text-align: left;
  vertical-align: center;
  white-space: nowrap;
  margin: 0;
  overflow: hidden;
  padding: 0;
  position: relative;
  text-decoration: none;
  transition: transform 0.1s cubic-bezier(0.55, 0, 1, 0.45);
  white-space: nowrap;
  line-height: 20px;
  cursor: pointer;
}

.content__header__right .nav__button .dropdown--active {
  position: relative;
}

.content__header__right .nav__button:hover,
.content__header__right .nav__button:hover svg {
  color: red;
}

.nav__button__toshare
{
  margin: auto;
  padding-top: 6px;
}






.dropdown-wrapper {
  position: relative;
  display: inline-block;
}

.dropdown-menu {
  position: absolute;
  margin-top: 10px;
  display: inline-flex;
  visibility: hidden;
  opacity: 0;
  left: 50%;
  transform: translateX(-90%);
  top: 100%;
  z-index: 1000;
  flex-direction: column;
  background-color: #777;
  padding: 5px 10px 10px 10px;
  border-radius: 12px;
  transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out;
}


.dropdown-arrow {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  left: 50%;
  top: 0;
  right: auto;
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
  background-color: #777;
}

.dropdown-menu.dropdown--active {
  visibility: visible;
  opacity: 1;
}

.dropdown-menu .a__toshare {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  list-style: none;
  color: white;
  font-size: 14px;
  font-weight: 600;
}

.dropdown-menu .a__toshare svg {
  color: var(--color-secondary);
}

.dropdown-menu .a__toshare:first-of-type {
  padding-top: 0;
}

.dropdown-menu .a__toshare span {
  width: 100%;
  padding: 10px 0;
  border-bottom: 1px solid white;
  align-items: center;
  vertical-align: center;

}

.dropdown-menu .a__toshare:hover {
  color: var(--color-hover);
}

.dropdown-menu .a__toshare:hover svg {
  color: var(--color-hover);
}

.dropdown-menu .a__toshare:last-child span {
  border-bottom: none;
  align-items: center;
  vertical-align: center;

}

.dropdown-menu--share {
  width: 240px;
}

.a__toshare
{
  text-decoration: none;
  color: white;
}

a[href^="http"].a__toshare, a.a__toshare {
  color: white;
}




.left_toshare
{
  text-align: left;
}
.right_toshare {
  display: flex;
  gap: 10px;
}
