.nav-link {
    position: relative;
    height: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    color: var(--blue-x-dark) !important;
}

.nav-link span{
    white-space: nowrap;
}

.nav-element-title{
   font-size: 16px;
   font-weight: bold;
}

.nav-element-subtitle{
    font-size: 12px;
    font-weight: bold;
 }

.nav-link::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: var(--blue-x-dark);
    transition: width 0.3s;
    position: absolute;
    bottom: 0;
    left: 0;
}

.nav-link:hover::after {
    width: 100%;
    color: var(--gray-dark) !important;
}

.active-link-parent .active-nav-link::after {
    width: 0;
}

.navbar-toggler{
    padding: 6px 12px;
}
.navbar-toggler-icon {
    font-size: 15px;
}

.sliding-panel-nav {
    position: fixed;
    top: 0;
    left: -100%;
    min-width: 150px;
    width: auto;
    height: 100%;
    background-color: white;
    z-index: 1050;
    transition: left 0.7s ease-out;
    overflow-y: auto;
}

.sliding-panel-nav.open {
    transition: left 0.5s ease;
    left: 0;
}

.sliding-panel-nav .close-btn {
    cursor: pointer;
    background-color: transparent;
    color: var(--blue-x-dark);
    font-size: 15px;
}

/* Overlay (mask to be shown over the page when sliding panel is out) styles */
.sliding-panel-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1029;
    display: none;
}

.sliding-panel-nav-overlay.open {
    display: block;
}

.line {
    fill: none;
    stroke: var(--blue-x-dark);
    stroke-width: 6;
    transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
        stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.line1 {
    stroke-dasharray: 60 207;
    stroke-width: 6;
}

.line2 {
    stroke-dasharray: 60 60;
    stroke-width: 6;
}

.line3 {
    stroke-dasharray: 60 207;
    stroke-width: 6;
}

.menu {
    background-color: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.opened .line1 {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
    stroke-width: 6;
}

.opened .line2 {
    stroke-dasharray: 1 60;
    stroke-dashoffset: -30;
    stroke-width: 6;
}

.opened .line3 {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
    stroke-width: 6;
}
