/* Header Start */

header {
    background-color: var(--color-bg);
    border-bottom: 1px solid var(--border-color);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    /* position: sticky;
    top: 0; */
}

/* <!-- Header Top  --> */

.header__top {
    display: flex;
    align-items: center;
    justify-content: start;
    width: 100%;
    height: 68px;
    padding: 12px 16px;
    margin: 0 11px;
}

.header__img {
    width: 50px;
    margin-left: 20px;
    margin-right: 12px;
}

.header__search {
    display: flex;
    align-items: center;
    flex-grow: 1;
}

.header__search-container {
    width: 661px;
    height: max-content;
    display: flex;
    align-items: center;
    justify-content: row;
    padding: 8px 16px;
    background-color: var(--field-color);
    border-radius: var(--small-radius);
    color: var(--color-text);
    font-size: var(--font-size-medium);
    font-weight: 400;
    gap: 5px;
}

.search-popup__icon {
    width: 24px;
    height: 24px;
}

.header__search-input {
    width: 100%;
    background-color: transparent;
    border: none;
    outline: none;
}

.header_darkmode {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    border: 1px solid var(--border-color);
    border-radius: var(--medium-radius);
    margin-left: 8px;
    color: var(--color-text);
    cursor: pointer;
}

.header_darkmode:hover {
    color: var(--color-text-muted);
    transition: .7s ease-in-out;
}

.size-6 {
    width: 24px;
    height: 24px;
}

.header_button {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px 16px;
    border: 1px solid var(--border-color);
    border-radius: var(--medium-radius);
    font-size: var(--font-size-medium);
    font-weight: 700;
    color: var(--color-text);
    gap: 7px;
}

/* <!-- Header Bottom --> */

.header__bottom {
    display: flex;
    align-items: center;
    justify-content: start;
    width: 100%;
    height: 40px;
    padding: 0 16px;
    margin: 0 11px;
}

.header__nav {
    display: flex;
    align-items: center;
    justify-content: start;
    width: 100%;
    height: 100%;
}

.header__nav-ul {
    display: flex;
    align-items: center;
    height: 100%;
    width: max-content;
}

.header__nav-li {
    display: flex;
    align-items: center;
    height: 100%;
    width: max-content;
    font-size: var(--font-size-medium);
    color: var(--color-text-muted);
    font-weight: 700;
    padding: 0 12px;
    position: relative;
}

.header__nav-li span {
    cursor: pointer;
}

.header__nav-svg {
    width: 18px;
    height: 18px;
    margin-left: 1.5px;
}

.header__dropmenu-svg {
    width: 14px;
    height: 14px;
    margin-right: 10px;
}

.header_divider {
    width: 1px;
    height: 20.396px;
    background-color: var(--border-color);
}

.header_Platform {
    white-space: nowrap;
    font-size: var(--font-size-medium);
    font-weight: 500;
    padding: 5px 16px;
    min-width: 135.52px;
    background-color: var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    border-radius: var(--medium-radius);
    cursor: pointer;
    position: relative;
}

.header-Platform-dropdown {
    position: absolute;
    top: 125%;
    left: 0;
    background-color: var(--color-accent);
    padding: 15px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    border-radius: var(--medium-radius);
    font-size: var(--font-size-medium);
    opacity: 0;
    pointer-events: none;
    height: 0;
    overflow: hidden;
    transition: 1s ease;
}

.header-Platform-barcode {
    width: 100px;
    aspect-ratio: 1/1;
}

.header-Platform-APP {
    margin-top: 7px;
    color: var(--color-text-muted);
}

.header-Platform-barcode img {
    border-radius: var(--medium-radius);
}

.header-Platform-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(252 207 101);
    padding: 8px;
    width: 100%;
    border-radius: var(--medium-radius);
    border: none;
    margin-top: 7px;
    font-size: var(--font-size-medium);
    font-weight: 600;
    color: var(--color-text);
}

.header-Platform-btn:hover {
    background-color: rgb(242, 181, 75);
}

.active_header-Platform-dropdown {
    opacity: 1;
    pointer-events: auto;
    height: 264.58px;
    transition: 1s ease;
}

.header_Platform:hover {
    background-color: var(--color-accent-hover);
}

.header__nav-li::after {
    content: "";
    width: 0px;
    position: absolute;
    bottom: 0;
    border-top: solid 3px var(--color-primary);
    border-radius: var(--medium-radius);
}

.header__nav-li:hover::after {
    width: calc(100% - 24px);
    transition: .7s ease-in-out;
}

.header__nav-li:hover .dropdown-container {
    pointer-events: auto;
}

.dropdown-container {
    pointer-events: none;
}

.li1 {
    position: relative;
}

.DC1 {
    position: absolute;
}

.header__nav-li {
    z-index: 10;
}

.dropdown-container {
    padding-top: 20px;
    top: 100%;
    /* right: 0; */
    z-index: 9999;
}

.li1:hover .drop1 {
    opacity: 1;
    pointer-events: auto;
    height: 490px;
    transition: height .7s ease;
}

.header__nav-dropdown {
    display: flex;
    width: max-content;
    height: 0;
    background-color: var(--color-white);
    border-radius: var(--medium-radius);
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    gap: 40px;
    opacity: 0;
    pointer-events: none;
    overflow: hidden;
    transition: .7s ease;
}

.header__nav-dropdown-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px;
}

.header__nav-dropdown-right-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
}

.header__nav-dropdown-img {
    width: 100px;
    aspect-ratio: 1/1;
}

.header__nav-dropdown-right-item:hover img {
    animation: zoom 1.5s ease infinite both;
}

.header__nav-dropdown-heading {
    font-size: var(--font-size-x);
    color: var(--color-text);
}


.header__nav-dropdown-left {
    display: flex;
    flex-direction: column;
    padding: 16px;
    padding-left: 100px;
    background-color: var(--color-secondary);
    overflow-y: auto;
    width: 311px;
}

.header__nav-dropdown-ul h3 {
    font-size: var(--font-size-x);
    color: var(--color-text-secondary);
    margin: 10px 0;
}

.header__nav-dropdown-ul li {
    margin-bottom: 7px;
}

.header__nav-dropdown-ul li a:hover {
    margin-right: 4px;
}

.li2 {
    position: relative;
}

.DC2 {
    position: absolute;
}

.li2:hover .drop2 {
    opacity: 1;
    pointer-events: auto;
    height: 530px;
    transition: height .7s ease;
}

.li3 {
    position: relative;
}

.DC3 {
    position: absolute;
    right: -100%;
}

.li3:hover .drop3 {
    opacity: 1;
    pointer-events: auto;
    height: 530px;
    transition: height .7s ease;
}

.li4 {
    position: relative;
}

.DC4 {
    position: absolute;
}

.li4:hover .drop4 {
    opacity: 1;
    pointer-events: auto;
    height: 530px;
    transition: height .7s ease;
}

.li5 {
    position: relative;
}

.DC5 {
    position: absolute;
}

.li5:hover .drop5 {
    opacity: 1;
    pointer-events: auto;
    height: 530px;
    transition: height .7s ease;
}

.header__nav-li:hover .header__dropmenu-svg {
    transform: rotate(180deg);
    transition: .7s ease;
}

.header__dropmenu-svg {
    transform: rotate(0deg);
    transition: .7s ease;
}

.header__nav-dropdown-right-divider {
    min-height: 1px;
    width: 100%;
    background-color: var(--border-color);
    margin: 30px 0;
}

.header__nav-list {
    display: flex;
    align-items: center;
}

.menu-burgur-logo,
.burgur-menu-header,
.burgur-menu {
    display: none;
}