@charset "utf-8";

.catalog {
    background-color: white;
    height: 75vh;
    overflow: hidden;
    border-radius: 2px;
}

.catalog-container {
    display: flex;
    height: 100%;

}

.catalog-column,
.catalog-column ul {
    height: 100%;
}

ul, li {
    margin: 0;
    list-style: none;
    padding: 0;
}

.catalog-column {
    width: 0;
    overflow: auto;
    max-height: 80vh;
    transition: all 0.2s ease-out;
}

.catalog-column[lvl='1'],
.catalog-column[lvl='2'],
.catalog-column[lvl='3'][show],
.catalog-column[lvl='4'][show] {
    transition: all 0.2s ease-out;
    width: 225px;
}

.catalog-column[lvl='2'],
.catalog-column[lvl='3'][show],
.catalog-column[lvl='4'][show] {
    border-left: 3px solid #F5F5F5;
}

.catalog-column::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}

.catalog-column::-webkit-scrollbar-thumb {
    background-color: #0DACA5;
    border-radius: 2px;
}

.catalog-column::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px rgb(0 0 0 / 30%);
    border-radius: 4px;
}

.catalog-column ul {
    background-color: white;
}

.catalog-column[lvl="1"] ul {
    color: #323232;
    line-height: 20px;
    background-color: #F2F2F2;
}

.catalog-column li {
    padding: 18px 10px 18px 20px;
    display: none;
    position: relative;
    align-items: center;
    cursor: pointer;
}

.catalog-column li a{
    width: 100%;
}

.catalog-column li[parent-id="0"] {
    font-size: 15px;
    display: flex;
}

.catalog-column li[parent-id="0"] .name {
    margin-left: 10px;
}

.catalog-column li[show] {
    display: flex;
}

.catalog-column[parent-id='0'] li:hover {
    background-color: white;
}

.catalog-column li[hover] {
    color: #0DACA5;
}

.catalog-column[lvl='1'] li[hover] {
    background-color: white;
    color: black;
}

.catalog-column li[show] .name {
    display: flex;
    width: 190px;
    align-items: center;
    width: 91%;
}

.catalog-column .name[child]:after {
    content: '';
    position: absolute;
    right: 13px;
    background: url("/local/img/arrow-part-1.svg") no-repeat center;
    transition: 0.2s;
    width: 15px;
    height: 13px;
}

.catalog-column li[hover] .name[child]:after {
    background: url("/local/img/arrow-part-2.svg") no-repeat center;
    transition: 0.2s;
    right: 11px;
}

.catalog-column li[parent-id='0']:before {
    content: '';
    width: 28px;
    height: 28px;
}

.catalog-column li[catalog-id="1"]:before {
    background: url(/local/img/catalog-ico-lekarstva.svg) no-repeat center;
}

.catalog-column li[catalog-id="120"]:before {
    background: url(/local/img/catalog-ico-medtehnika.svg) no-repeat center;
}

.catalog-column li[catalog-id="146"]:before {
    background: url(/local/img/catalog-ico-tovary-dlya-zdorovya.svg) no-repeat center;
}

.catalog-column li[catalog-id="251"]:before {
    background: url(/local/img/catalog-ico-mama_i_rebenok.svg) no-repeat center;
}

.catalog-column li[catalog-id="288"]:before {
    background: url(/local/img/catalog-ico-odezhda_igrushki_i_razvitie_rebenka.svg) no-repeat center;
}

.catalog-column li[catalog-id="322"]:before {
    background: url(/local/img/catalog-ico-optika.svg) no-repeat center;
}

@media (max-width: 600px) {
    .catalog,
    .catalog-container,
    .catalog-column {
        height: 100%;
        width: 100%;
        z-index: 2;
    }

    .catalog-column[lvl='1'],
    .catalog-column[lvl='2'],
    .catalog-column[lvl='3'][show],
    .catalog-column[lvl='4'][show] {
        width: 100%;
    }

    .catalog-column {
        display: none;
    }

    .catalog-column[show] {
        display: block;
    }

    .catalog-column[lvl="1"] ul {
        background-color: white;
    }

    .catalog-column li {
        border-bottom: 2px solid #F5F5F5;
        background: #FFF;
    }

    .catalog-column li {
        padding: 18px 20px;
    }

    .catalog-column ul {
        overflow: auto;
    }

    .catalog-column,
    .catalog-column ul {
        height: 90%;
    }
}
