/* BASIC css start */
.mainMenuBlank {
    min-height: 30rem;
    min-width: 20rem;
    width: 100vw;
    height: 100vh;

    z-index: 11;
    position: fixed;
    top: 0;
    left: -110vw;
    transition: 0.3s;
}
.mainMenuWrapper {
    min-width: 20rem;
    max-width: 30rem;
    min-height: 30rem;
    max-height: 70rem;
    width: 90vw;
    height: 100vh;
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    background-color: #ffffff;
    box-shadow: 2px 2px 5px #00000050;
    padding: 2rem;
    gap: 2rem;
    overflow-y: scroll;
}
.mainMenuCloseBtn {
    width: 1.5rem;
    height: 1.5rem;
    margin-left: auto;
    position: sticky;
    top: 0;
    right: 0;
    z-index: 5;
}
.mainMenuCloseBtn line {
    stroke-width: 1.5;
    stroke: var(--black);
}
.menuSort {
    display: flex;
}
.menuSort1 {
    width: 100%;
    align-items: center;
    justify-content: space-evenly;
}
#menuLanguage {
    flex-flow: column;
    width: 100%;
    line-height: 2rem;

    border: 1px solid black;
    text-align: center;
    padding: 0.125rem;
    border-radius: 2rem;

    cursor: pointer;
}

#menuLanguage h4 {
}

.menuLanguageList {
    font-size: 0.875rem;
    display: flex;
    flex-flow: column nowrap;
    overflow: hidden;
    transition: 0.3s;
}
.menuLanguageList > a {
    width: 100%;
    color: var(--darkgrey);
}
.notTouchedHeight {
    height: 0;
}
.touchedHeight {
    height: 100%;
}
.sort1Btn {
    width: 4.25rem;
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
}
.sort1Btn > div {
    width: 1.75rem;
    height: 1.75rem;
}
.sort1Btn:nth-child(1) svg,
.sort1Btn:nth-child(2) svg {
    stroke-width: 0;
    fill: #111111;
}
.sort1Btn:nth-child(3) svg,
.sort1Btn:nth-child(4) svg {
    stroke: #111111;
    stroke-width: 1.5;
    fill: none;
    stroke-miterlimit: 10;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.menuSort2 {
    flex-flow: column nowrap;
    width: 100%;
}
.catDepth1 {
    display: flex;
    flex-flow: column nowrap;
    height: 2.5rem;
    line-height: 2.5rem;
    overflow-y: hidden;
}
.categoryOpend {
    height: auto;
}

.catDepth1 h3 {
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 2.5rem;
}
.catDepth1 h3 p {
    width: 1.25rem;
    transition: 0.3s;
}
.categoryOpend h3 p {
    transform: rotate(90deg);
}
.catDepth1 h3 path {
    stroke: #111111;
    stroke-width: 2;
    stroke-miterlimit: 10;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.catDepth2 {
    display: flex;
    flex-flow: column nowrap;
}
.catDepth2 > a {
    font-size: 1rem;
    font-weight: 500;
    line-height: 2rem;
    color: var(--charcol);
    padding: 0 0.5rem;
}
.catDepth3 {
    display: flex;
    flex-flow: column nowrap;
}
.catDepth3 > a {
    font-size: 0.875rem;
    line-height: 1.5rem;
    color: var(--darkgrey);

    padding: 0 1rem;
}
.catDepth3 > a:last-child {
    border-bottom: 1px solid #000;
}
.catDepth2:last-child a:last-child {
    margin-bottom: 1rem;
}
.menuSort3 {
    gap: 1rem;
}
.menuSort3 > a {
    width: 8rem;
    height: 2.5rem;
    line-height: 2.5rem;
    background-color: var(--white);
    text-align: center;
    font-size: 0.875rem;
    border-radius: 2.5rem;
    box-shadow: 2px 4px 5px #00000050;
    font-weight: 500;
}
.menuSort3 > a:hover {
    transition: 0.3s;
    background-color: var(--black);
    color: var(--white);
}
.menuSort4 {
    font-size: 0.75rem;
    width: 100%;
    justify-content: space-evenly;
}
.menuSort5 {
    margin-top: auto;
    font-size: 0.875rem;
    font-weight: 500;
    width: 100%;
    justify-content: space-evenly;
}

/* BASIC css end */

