#shop-menu-wrapper {
    width: 250px;
}

#shop-menu-title {
    font-weight: 500;
    font-size: 18px;
    margin-bottom: 25px;
}

#shop-menu-title .shop-menu-title-underline {
    width: 50px;
    height: 2px;
    background-color: #000;
    margin-top: 10px;
}

#shop-menu-catalogue .shop-menu-catalogue-item-wrapper {
    margin-bottom: 25px;
    margin-top: 25px;
}


#shop-menu-catalogue .shop-menu-catalogue-item {
    display: flex;
    justify-content: space-between;
    align-items: center;    
    line-height: 20px;
}


#shop-menu-catalogue .shop-menu-catalogue-item a {
    color: #444;
    font-size: 14px;
}

#shop-menu-catalogue .shop-menu-catalogue-item a:hover {
    color: #ee815e;
}

#shop-menu-catalogue .shop-menu-catalogue-item-tick {
    width: 20px;
    height: 20px;
    background-image: url("../img/tick-down-darkgrey.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    cursor: pointer;
}

#shop-menu-catalogue .shop-menu-catalogue-item-wrapper.opened .shop-menu-catalogue-item-tick {
    background-image: url("../img/tick-up-darkgrey.svg");
}

#shop-menu-catalogue .shop-menu-catalogue-item.subategory {
    display: none;
    margin-bottom: 15px;
    margin-top: 15px;    
}

#shop-menu-catalogue .shop-menu-catalogue-item.subategory .shop-menu-catalogue-item-bullet {
    width: 10px;
    height: 10px;
    background-image: url(../img/tick-right-darkgrey.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    display: inline-block;
    margin-right: 10px;
    margin-left: 5px;
}

#shop-menu-catalogue .shop-menu-catalogue-item-wrapper.opened .shop-menu-catalogue-item.subategory {
    display: block;
}
