/* Fixes for legal pages, 404, payment-success */

/* Prevent gray bar at bottom when page content < viewport height */
body {
  background-color: #ffffff;
}

/* Header menu hover underline animation (from 35_animation_script.html) */
:root {
  --Line_Link_Color: #ffffff;
  --Link_Color_active: #ffffff;
}

.link-menu {
  transition: 0.3s !important;
}

.link-menu a:before {
  content: "";
  width: 0%;
  height: 1px;
  position: absolute;
  display: block;
  background-color: var(--Line_Link_Color);
  left: 0;
  bottom: 0;
  transition: 0.3s;
}

.link-menu a:hover:before {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  display: block;
  background-color: var(--Line_Link_Color);
  left: 0;
  bottom: 0;
  transition: 0.3s;
}

.link-menu .tn-atom {
  transition: 0.3s;
}

.link-menu .tn-atom:hover {
  transition: 0.3s;
  color: var(--Link_Color_active) !important;
}
