.header__tools{
    background: #f9c650;
    color:#fff;
}

.header__tools i{
    font-size: 22px;
}

.header__tools *{
    color:#fff;
}

.header__tools:after{
    content: "";
    height: 100%;
    width: 50vw;
    position: absolute;
    top:0;
    right:-50vw;
    z-index: 10;
    background: #f9c650;
}

.header__carticon{
    position: relative;
}
.header__carticon .badge{
    position: absolute;
    right:7px;
    z-index: 10;
    border-radius: 24px;
    transform:scale(0.8);
    text-align: center;
    min-width: 24px;
    font-family: 'Amatic SC', cursive;
    font-weight: bold;
}

/* NAVIGATION */
.header__desktopnav{
    display: flex;
    justify-content: space-between;
}

.header__desktopnav a{
    font-family: 'Amatic SC', cursive;
    color:#23335e;
    font-size: 24px;
    position: relative;
    font-weight: bold;

}

.header__desktopnav a:after{
    opacity: 0;
    transition: all 0.3s ease;
    background: #f9c650;
    width: calc(0% + 0px);
    height:2px;
    position: absolute;
    bottom: -10px;
    z-index: 20;
    content: "";
    left:-10px;
    transition: all 0.3s ease;
}

.quicknav_a{
    font-family: 'Amatic SC', cursive;
    color:#23335e;
    font-size: 24px;
    position: relative;
    font-weight: bold;
}
/*
.quicknav_a:after{
    opacity: 0;
    transition: all 0.3s ease;
    background: #f9c650;
    width: calc(0% + 0px);
    height:2px;
    position: absolute;
    bottom: 0px;
    z-index: 20;
    content: "";
    left:0px;
    transition: all 0.3s ease;
}*/
.quicknav_a:hover:after{
    opacity: 1;
    width: calc(100% + 20px);
}
.quicknav_a_2:hover{
    color: #f9c650;
}
.a_children:after{
    height:0px !important;
}
.a_children:hover{
    color: #fff !important;
}
.header__desktopnav a:hover:after{
    opacity: 1;
    width: calc(100% + 20px);
}
.main-menu{
    position: relative;
}
.main-menu ul ul.submenu {
    top: 100%;
    width: 300px;
    box-shadow: 0 0 10px 3px rgba(0, 0, 0, 0.05);
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    position: absolute;
    visibility: hidden;
    opacity: 0;
    padding: 17px 0;
    z-index: -1;
    background: #f9c650;
    transform: translate(-65%, 4.2%);
       
}
.main-header ul > li:hover > ul.submenu {
    visibility: visible;
    opacity: 1;
}
.menu > li ul, .menu ul ul{
    opacity: 0;
    -webkit-transition: all 0.2s ease-in;
    -moz-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
    z-index: -1;
    visibility: hidden;
}

.menu > li:hover > ul{
    top: 100%;
    opacity: 1;
    z-index: 1;
    visibility: visible;
}

.menu ul > li:hover > ul{
    left: 100%;
    opacity: 1;
    z-index: 1;
    visibility: visible;
}

.contentnavigation a{
    color: #23335e;
}


.category-wrapper {
    gap: 1rem;
}
.category{
    border: 1px solid #23335e;
    border-radius: 50px;
    padding: 2px 14px;
}
.category img,
.category i{
    margin-right: 10px;
}

.category:hover
{
    background-color: #ffc107;
    border-color: #ffc107;
}

.category.active
{
    background-color: #ffc107;
    border-color: #ffc107;
    color: #23335e !important;
}

.category.active *
{
    color: #23335e;
}
.categories .category.activeCat, .categories .category.activeCat * {
    background-color: #ffc107;
    filter: brightness(1) invert(0);
    color: #23335e;
    border: 2px solid #ffc107;
}
.category:hover img{
    filter: brightness(1) invert(0);
}