:root, [data-theme=light] {
    --kt-menu-dropdown-box-shadow: 0px 0px 20px 0px rgba(82, 63, 105, 0.15);
    --kt-menu-dropdown-bg-color: #ffffff;
    --kt-menu-heading-color: #A1A5B7;
    --kt-menu-link-color: #ffffff;
    --kt-menu-link-title: #7db9c1;
    --kt-menu-link: #7db9c1;
    --kt-menu-link-color-hover: #0493A8;
    --kt-menu-link-color-show: #0493A8;
    --kt-menu-link-color-here: #0493A8;
    --kt-menu-link-color-active: #0493A8;
    --kt-menu-link-bg-color-hover: #F4F6FA;
    --kt-menu-link-bg-color-show: #F4F6FA;
    --kt-menu-link-bg-color-here: #F4F6FA;
    --kt-menu-link-bg-color-active: #F4F6FA;
}
[data-theme=dark] {
    --kt-menu-dropdown-box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.3);
    --kt-menu-dropdown-bg-color: #1e1e2d;
    --kt-menu-heading-color: #565674;
    --kt-menu-link-color: #ffffff;
    --kt-menu-link-title: #7db9c1;
    --kt-menu-link: #7db9c1;
    --kt-menu-link-color-hover: #0493A8;
    --kt-menu-link-color-show: #0493A8;
    --kt-menu-link-color-here: #0493A8;
    --kt-menu-link-color-active: #0493A8;
    --kt-menu-link-bg-color-hover: #2B2B40;
    --kt-menu-link-bg-color-show: #2B2B40;
    --kt-menu-link-bg-color-here: #2B2B40;
    --kt-menu-link-bg-color-active: #2B2B40;
}
:root{
    --bgColorMenu : #fff;
    --duration: .7s;
}

.menufoot{

    margin: 0;
    display: flex;
    /* Works well with 100% width  */
    width: 32.05em;
    font-size: 1.5em;
    padding: 0 2.85em;
    position: relative;
    align-items: center;
    justify-content: center;
    background-color: var(--kt-primary);

}

.menufoot__item{

    all: unset;
    flex-grow: 1;
    z-index: 100;
    display: flex;
    cursor: pointer;
    position: relative;
    border-radius: 50%;
    align-items: center;
    will-change: transform;
    justify-content: center;
    padding: 0.2em 0 0.05em;
    transition: transform var(--timeOut , var(--duration));
    color: var(--kt-white)!important
}

.menufoot__item::before{

    content: "";
    z-index: -1;
    width: 2.1em;
    height: 2.1em;
    border-radius: 50%;
    position: absolute;
    transform: scale(0);
    transition: background-color var(--duration), transform var(--duration);

}


.menufoot__item.active {

    transform: translate3d(.2em, -.5em , 0);

}

.menufoot__item.active::before{
    transform: scale(1);
    background-color: var(--kt-success);
}

.iconfoot{
    width: 2.6em;
    padding-left: 15px;
    stroke: var(--kt-white);
    fill: var(--kt-white);
    stroke-width: 1pt;
    stroke-miterlimit: 10;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 400;
    font-size: 10px;
    color: var(--kt-white)!important;
}

.menufoot__item.active .iconfoot {

    animation: strok 1.5s reverse;

}

@keyframes strok {

    100% {

        stroke-dashoffset: 400;

    }

}

.menufoot__border{

    left: 0;
    bottom: 99%;
    width: 6em;
    height: 1.4em;
    position: absolute;
    clip-path: url(#menu);
    will-change: transform;
    background-color: var(--kt-primary);
    transition: transform var(--timeOut , var(--duration));

}

.svg-container {

    width: 0;
    height: 0;
}


@media screen and (max-width: 50em) {
    .menu{
        font-size: .8em;
    }
}