/* Links */
a {
  color: var(--link-color);
  text-decoration: none;
}
a:hover, a:focus, a:active {
  color: var(--first-color);
  text-decoration: none;
}

.link-white {
  color: #fff;
  text-decoration: none;
}
.link-white:hover, .link-white:focus, .link-white:active {
  color: #fff;
  text-decoration: none;
}

.option-link {
  color: var(--link-color);
  border-bottom: 1px dotted var(--link-color);
  background-color: var(--link-bg-color);
  text-decoration: none;
}
.option-link:hover, .option-link:focus, .option-link:active {
  color: var(--first-color);
  border-bottom: 1px dotted var(--first-color);
  background-color: transparent;
  text-decoration: none;
}