/*
 Theme Name:     Divi Child
 Theme URI:      https://www.reddstone.nl
 Description:    Reddstone Child Theme
 Author:         Reddstone
 Author URI:     https://www.reddstone.nl
 Template:       Divi
 Version:        3.1.5
 Details URI:    http://code.reddstone.nl/wp-content/themes/divi-child/my-theme-changelog.html
*/


/* =Theme customization starts here */

/* Divi toolbox underline */
:root {
  --BottomOffset: 0px;
  --LineHeight: 1px;
  --LineColor: #000000;
}

.dl-menu-style2 ul.et-menu>li>a {
	position: relative;
	z-index: 1;
}
.dl-menu-style2 ul.et-menu>li>a:before {
    position: absolute;
    content: '';
    display: block;
    z-index: -1;
    background: var(--LineColor);
    width: 0;
    height: var(--LineHeight);
    bottom: var(--BottomOffset);
    left: calc(var(--LineHeight) / -2);
    transition: 0.3s cubic-bezier(.03,.3,.4,.96);
    transform: skew(-10deg);
}

.dl-menu-style2 ul.et-menu>li>a:hover:before {
    width: calc(100% + var(--LineHeight));
}
