/* BASIC css start */
.headerWrapper {
    position: sticky;
    top: 0;
    z-index: 3;

    width: 100vw;
    min-width: var(--pc-min-width);
    background-color: var(--white);
}

.headerNews {
    width: 100%;
    height: 1.875rem;
    text-align: center;
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: #00000050 3px 0px 5px;
}
.headerNewsCloseBtn {
    width: 1rem;
    position: absolute;
    right: 0.5rem;
    cursor: pointer;
}
.headerNewsCloseBtn line {
    fill: none;
    stroke: #111111;
    stroke-width: 2;
    stroke-miterlimit: 10;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.headerNav {
    width: 100%;
    height: var(--header-height);
    padding: 0 3rem;

    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
}
.headerNav > div {
    flex: 1;
}

.headerNav1 {
}
.headerNav1LogoTop {
    display: block;
    width: 6.5rem;
    height: auto;
}
.headerNav2 {
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    justify-content: space-evenly;
    height: 100%;
}
.nav2Search {
    height: 50%;
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    justify-content: center;
}
.nav2Search fieldset {
    border-bottom: 2px solid var(--black);
    padding: 0.125rem;
}
.MS_search_word {
    width: 20rem;
    text-align: center;
}
.searchBtn {
    width: 1.5rem;
    float: right;
}
.MS_search_word {
    font-size: 0.875rem;
}
.nav2Category {
    min-width: max-content;
    width: 100%;
    height: 50%;
    display: flex;
    flex-flow: row nowrap;
    gap: 1rem;
    align-items: center;
    justify-content: space-evenly;
}
.nav2Category a:hover {
    color: var(--brandcolor);
}
.nav2Category .depth1 {
    display: flex;
    flex-flow: column nowrap;
    background-color: var(--white);
}
.nav2Category .depth1:hover > a {
    color: var(--brandcolor);
    border-bottom: 2px solid var(--brandcolor);
}

.nav2Category .depth1 > a {
    font-size: 1rem;
    font-weight: 500;
    z-index: 4;
    padding: 0.5rem 0;
    border-bottom: 2px solid var(--white);
}

.nav2Category .depth1:hover .depth2 {
    height: auto;
    padding: 5rem 5rem 2rem 2rem;
}
.nav2Category .depth2 {
    position: absolute;
    top: 0;
    left: -1rem;
    width: max-content;
    background: var(--white);

    display: flex;
    flex-flow: column nowrap;

    overflow: hidden;
    height: 0;
}
.nav2Category .depth2 > a {
    font-size: 1rem;
    margin-bottom: 0.5em;
    font-weight: 500;
}
.nav2Category .depth3 {
    display: flex;
    flex-flow: column nowrap;
    margin-bottom: 0.75rem;
}
.nav2Category .depth3 > a {
    font-size: 0.875rem;
    margin: 0 0 0.5em 1em;
}
.headerNav3 {
    min-width: max-content;
    font-size: 0.75rem;
    height: calc(var(--header-height) / 2);
    margin-bottom: auto;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: flex-end;
    gap: 1.25rem;
}
.headerNav3Language {
    cursor: pointer;
}
.headerNav3Language > div {
    position: absolute;
    padding: 1rem 1rem 0 1rem;
    display: flex;
    flex-flow: column;
    overflow: hidden;
    height: 0;
    transition: 0.5s;
    background: #ffffff;
    opacity: 0;
}
.headerNav3Language:hover > div {
    height: auto;
    opacity: 1;
}
.countryList a {
    padding-bottom: 1rem;
}
.headerNav3Basket {
    width: 2rem;
    height: auto;
}
.headerNav3Basket path {
    fill: none;
    stroke: #111111;
    stroke-width: 1;
    stroke-miterlimit: 10;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* BASIC css end */

