#fixed-menu {
    position: fixed;
    width: 100%;
    top: 0px;
    z-index: 99;
}

.sub-menu-container {
    animation: faceInMenu;
    transition: opacity .25s;
    animation-duration: .25s;
    animation-fill-mode: forwards;
    animation-timing-function: ease-in;
    position: absolute;
    left: 0px;
    width: 100%;
    z-index: 99;
    left: 50%;
    transform: translateX(-50%);
}

@keyframes faceInMenu {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.svg-hover svg #layer-1,
.svg-hover svg #layer-2,
.svg-hover svg #layer-3 {
    transition: .4s;
}
.svg-hover svg {
    overflow: visible;
}
.svg-hover:hover svg #layer-1 {
    transform: translateX(-3%) translateY(8%);
}
.svg-hover:hover svg #layer-3 {
    
    transform: translateX(3%) translateY(-8%);
}

#fixed-menu {
    transition: .4s;
}

#fixed-menu.white-header {
    background-color: white;
}

#fixed-menu a {
    color: black;
}
#fixed-menu .menu-item a:hover {
    color: var(--color-theme);
}
#fixed-menu.white-header .menu-item:hover > a {
    color: var(--color-theme);
}

#fixed-menu.white-header .sub-menu-item:hover > a {
    background-color: var(--color-theme-lighter);
}

#fixed-menu.transparent-header .menu-item:hover > a {
    color: black;
    transition: color .25s;
}

#fixed-menu.transparent-header .menu-item > a {
    color: rgb(var(--bs-light-rgb));
}

#fixed-menu:not(.white-header)       .only-white,
#fixed-menu:not(.transparent-header) .only-transparent {
    display: none;
}

.header-menu-rounded {
    background-color: white;
    border-radius: 50%;
    height: 34px;
    width: 34px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-menu-rounded i {
    color: var(--color-theme);
    font-size: 17px;
}

.cart-count {
    position: absolute;
    color: white;
    font-size: 20px;
    top: -9px;
    right: -14px;
    height: 25px;
    width: 25px;
    border-radius: 50%;
    background-color: black;
    display: flex;
    align-items: center;
    justify-content: center;
}

#fixed-menu.white-header .header-menu-rounded i {
    color: white;
}
#fixed-menu.white-header .header-menu-rounded {
    background-color: var(--color-theme);
}

.rrss-link:hover {
	background-color: var(--color-theme-lighter);
	border-color: var(--color-theme);
}
.section-header {
    background-image: URL(/img/section-header-bg-shape.svg);
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: bottom;
    position: relative;
    top: -72px;
    padding-top: 72px;
    margin-bottom: -72px;
    display: flex;
    align-items: center;
}

@media print {
    .section-header {
        top: 0px;
        padding-top: 0px;
        margin-bottom: 0px;
    }
}

.cart-step {
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}