.highlight-text {
    color: var(--accent-hover);
}
.highlight-action {
    color: var(--action);
}
.highlight-base {
    color: var(--base);
}
.highlight-white {
    color: var(--white);
}
.x-slide-menu_list ul {
  list-style-type: none;
  margin-left: 0;
  padding-left: 0;
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1100px) {
  
/* Underline From Left */
.hvr-underline-from-left {
 
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  
}
.hvr-underline-from-left:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  right: 100%;
  top: 35px;
  background: var(--action);
  height: 4px;
  -webkit-transition-property: right;
  transition-property: right;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-underline-from-left:hover:before, .hvr-underline-from-left:focus:before, .hvr-underline-from-left:active:before {
  right: 0;
}
}
