HEX
Server: Apache/2.4.41
System: Linux mainweb 5.4.0-182-generic #202-Ubuntu SMP Fri Apr 26 12:29:36 UTC 2024 x86_64
User: nationalmedicaregrp (1119)
PHP: 8.3.7
Disabled: exec,passthru,shell_exec,system,popen,proc_open,pcntl_exec
Upload Files
File: /home/demo/public_html/waterdamage/assets/scss/header/modules/_module-dropdown-menu.scss
.ld-module-trigger-txt {
	display: inline-flex;
	flex-flow: row nowrap;
	align-items: center;

	i {
		margin-left: 0.35em;
	}
}
.ld-dropdown-menu-content {
	width: 210px;
	padding: 20px 30px;
	border: 1px solid rgba(#000, 0.1);
	
	a {
		display: inline-block;
		position: relative;
	}
	ul {
		padding: 0;
		margin: 0;
		list-style: none;

		ul {
			margin-left: 0.3em;
		}
	}
	li {
		position: relative;
		
		&:not(:last-child) {
			
			a {
				margin-bottom: em(10, 16);
			}
		}
	}
}

.ld-dropdown-menu-underlined {

	li {

		a {
			
			&:before {
				content: '';
				display: inline-block;
				width: 100%;
				height: 1px;
				position: absolute;
				bottom: -2px;
				left: 0;
				background-color: currentColor;
				transform-origin: right center;
				transform: scaleX(0);
				transition: transform 0.45s cubic-bezier(0.23, 1, 0.320, 1);
			}

			&:hover {

				&:before {
					transform-origin: left center;
					transform: scaleX(1);
				}
			}
		}
	}
}