#header {
    position: sticky;
    top: 0;
    z-index: 998;

    .redesign-btn {
        padding: 9px 15px;
        line-height: 16px;
        font-size: 14px;
        border: 1px solid #FFFFFF1F;
        color: #F48FB1;
        letter-spacing: 1.25px;
        border-radius: 4px;
    }

    .redesign-btn:hover {
        background: #F48FB1;
        color: #000;
    }

    .redesign-btn.active {
        color: #000;
        border: 0px;
        padding: 10px 16px;
    }

    .redesign-btn.active:hover {
        color: #000;
        background: #f8b9cf;
    }

    .nudity-title {
        margin: 6px 16px 12px 16px;
        font-size: 10px;
        font-weight: 500;
        line-height: 16px;
        letter-spacing: 1.5px;
        text-align: left;
        color: #FFFFFF99;
        text-transform: uppercase;
    }

    .nude-filters {
        display: flex;
        padding: 0 16px 24px 16px;
        border-bottom: 1px solid #FFFFFF1F;
        justify-content: center;

        .single-filter {
            width: 76.67px;
            padding: 2px 0 2px 0;
            text-align: center;
            font-size: 14px;
            font-weight: 500;
            line-height: 24px;
            letter-spacing: 0.1px;
            color: #FFFFFFDE;
            border: 1px solid #FFFFFF1F;
            cursor: pointer;
        }

        .active {
            color: #F48FB1;
        }

        .non-nude {
            border-radius: 4px 0px 0px 4px;
        }

        .both {
            border-radius: 0px 4px 4px 0px;
        }
    }

    .theme-switcher {
        padding: 16px;

        .switcher-wrapper {
            width: 78px;
            height: 30px;
            display: flex;
            align-items: center;

            input {
                display: none;
            }

            .theme-switcher-label {
                display: flex;
                justify-content: space-between;
                background: #573E47;
                width: 78px;
                height: 30px;
                border-radius: 15px;
                align-items: center;
                position: relative;
                .switch-option {
                    fill: rgba(255, 255, 255, 0.38);
                }

                .light {
                    margin-right: 7px;
                }

                .dark {
                    margin-left: 12px;
                }

                .switch-toggle {
                    height: 30px;
                    width: 48px;
                    background: #F48FB1;
                    border-radius: 15px;
                    display: flex;
                    justify-content: center;
                    position: absolute;
                    box-shadow: 3px 2px 3.7px #0000005e;
                    align-items: center;
                    cursor: pointer;
                    left: 30px;
                    transition: all .3s linear;
                    .switch-toggle-dark {
                        display: none;
                    }

                    svg {
                        fill: #000;
                    }
                }

                .state-dark {
                    left: 0;
                    .switch-toggle-dark {
                        display: block;
                    }
                    .switch-toggle-light {
                        display: none;
                    }
                }
            }
        }
    }

    .header-top .nav-user:hover {
        .nav-dropdown-menu {
            display: block;
            max-height: calc(100vh - 74px);
            overflow-y: auto;
        }
        .nav-arrow {
            transition: .2s;
            transform: rotate(180deg);
        }
    }

    .nav-user {
        padding: 8px 20px 8px 15px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: #F48FB1;
        border-radius: 4px;
        gap: 2px;
        cursor: pointer;
        position: relative;

        .user-info-container {
            display: flex;
            gap: 11px;
            align-items: center;

            .user-info {
                display: inline-block;
                min-width: 180px;
            }

            span {
                font-size: 14px;
                font-weight: 500;
                line-height: 16px;
                letter-spacing: 1.25px;
                text-align: left;
                color: #000;
            }

        }

        svg {
            fill: #000;
        }

        .nav-dropdown-menu {
            z-index: 999;
            display: none;
            position: absolute;
            width: 260px;
            right: 0;
            top: calc(100%);
            box-shadow: 0px 11px 15px 0px #00000033;
            box-shadow: 0px 9px 46px 0px #0000001F;
            box-shadow: 0px 24px 38px 0px #00000024;

            .nav-dropdown-menu-container {
                width: 100%;
                box-shadow:inset 0 7px 9px -7px rgba(0,0,0,0.7);
                background: #383838;
                padding: 8px 0px 8px 0px;
                border-top: none;
                border-radius: 0px 0px 4px 4px;

                .nav-dropdown-group {
                    margin-bottom: 8px;
                    border-top: 1px solid #FFFFFF1F;
                    border-bottom: 1px solid #FFFFFF1F;
                }

                a {
                    display: flex;
                    width: 100%;
                    padding: 12px;
                    gap: 16px;
                    align-items: center;

                    svg {
                        fill: #FFFFFF99;
                        color: #FFFFFF99;
                    }
                    .fa {
                        width: 24px;
                        color: #FFFFFF99;
                    }
                    span {
                        font-size: 14px;
                        font-weight: 500;
                        line-height: 24px;
                        letter-spacing: 0.1px;
                        text-align: left;
                        text-transform: capitalize;
                        color: #FFFFFF99;
                    }
                }
                .message-center-link {
                    justify-content: space-between;

                    .mc-text {
                        display: flex;
                        gap: 16px;
                    }

                    .badge {
                        font-size: 12px;
                        font-weight: 400;
                        line-height: 16px;
                        text-align: center;
                        color: #000000;
                        padding: 2px 6px;
                        background: #F48FB1;
                        border-radius: 10px;
                    }
                }

                .active {
                    background: #F0689614;
                    span {
                        color: #F48FB1;
                    }
                    svg {
                        fill: #F48FB1;
                        color: #F48FB1;
                    }
                }

                .logout-container {
                    margin-top: 8px;
                    border-top: 1px solid #FFFFFF99;
                    padding-top: 8px;
                }

                .small-icon {
                    svg {
                        margin: 0px 7px;
                    }
                }

                a:hover {
                    transition: .2s;
                    background: #F0689614;
                    span, .fa, svg {
                        color: #FFFFFFDE;
                    }
                    svg {
                        fill: #FFFFFFDE;
                    }
                }
            }
        }
    }

    .cart {
        margin: 0;
        .shopping-cart {
            .cartWrap {
                position: relative;
                padding: 0;
                height: auto;

                .cartLink {
                    padding: 0 !important;
                    margin: 0;
                }

                .count {
                    position: absolute;
                    display: inline-flex;
                    align-items: center;
                    flex-direction: column;
                    width: 20px;
                    height: 20px;
                    top: -10px;
                    right: -10px;
                    padding: 2px;
                    background-color: #f48fb1;
                    border-radius: 100%;
                    font-size: 13px;
                }
            }
        }
    }

    .header-desctop {
        .header-top {
            display: flex;
            justify-content: space-between;
            background: #000000;
            padding: 12px 24px;

            .header-search-container {
                width: 50%;
                display: flex;
                gap: 16px;
                align-items: center;

                .header-logo-block {
                    .header-logo {
                        width: 179px;
                        height: 34px;
                        background-image: url('/design-1/images/icons/header/iwc-logo-dark.svg');
                    }

                    p {
                        margin: 0;
                        font-size: 16px;
                        font-weight: 400;
                        line-height: 16px;
                        letter-spacing: 0.25px;
                        text-align: left;
                        color: #FFFFFFDE;
                    }
                }

                .search {
                    display: flex;
                    align-items: center;
                    padding: 8px 14px;
                    width: 100%;
                    max-width: 463px;
                    height: 36px;
                    border-radius: 18px;
                    background: #252525;

                    .search-field {
                        display: flex;
                        align-items: center;
                        gap: 8px;
                        width: 100%;

                        .search-button {
                            height: 20px;
                            width: 20px;
                            background-image: url('/design-1/images/icons/header/search-dark.svg');
                            background-repeat: no-repeat;
                            background-position: center;
                        }

                        .aa-Input, .aa-Input::placeholder {
                            font-family: Roboto;
                            font-size: 14px;
                            font-weight: 400;
                            line-height: 20px;
                            letter-spacing: 0.25px;
                            text-align: left;
                            color: #FFFFFF99;
                        }
                    }
                }
            }

            .header-auth-container {
                display: flex;
                justify-content: flex-end;
                width: 50%;
                align-items: center;
                gap: 16px;
            }

        }

        .header-nav {
            display: flex;
            justify-content: space-between;
            border-top: 1px solid transparent;
            border-bottom: 1px solid #FFFFFF61;

            .iwc-nav-container {
                display: flex;
                justify-content: flex-start;
                .nav-menu {
                    display: flex;
                    justify-content: flex-start;
                    padding: 8px 8px 8px 24px;
                    gap: 8px;

                    .nav-link {
                        display: flex;
                        align-items: center;
                        gap: 8px;
                        padding: 8px 12px 8px 8px;

                        a {
                            font-size: 14px;
                            font-weight: 500;
                            line-height: 16px;
                            letter-spacing: 1.25px;
                            color: #FFFFFFDE;
                            text-transform: uppercase;
                        }

                        svg {
                            fill: #FFFFFF99;
                            color: #FFFFFF99;
                        }

                        svg.switch-toggle-dark, svg.switch-toggle-light {
                            fill: #000;
                        }
                    }

                    .nav-link:hover {
                        transition: .2s;
                        background: #F0689614;
                        border-radius: 4px;
                        svg:not(.nav-dropdown-menu svg){
                            fill: #FFFFFFDE;
                            color: #FFFFFFDE;
                        }
                    }

                    .nav-link.active {
                        background: #F0689614;
                        border-radius: 4px;
                        svg {
                            fill: #F48FB1;
                            color: #F48FB1;
                        }

                        svg.nav-arrow {
                            fill: #FFFFFFDE;
                        }
                    }

                    .nav-link.nav-dropdown {
                        position: relative;

                        .nav-dropdown-menu {
                            z-index: 999;
                            display: none;
                            position: absolute;
                            width: 260px;
                            right: 0;
                            top: calc(100%);
                            padding-top: 9px;

                            .nav-dropdown-menu-container {
                                width: 100%;
                                box-shadow: 0px 11px 15px 0px #00000033;
                                box-shadow: 0px 9px 46px 0px #0000001F;
                                box-shadow: 0px 24px 38px 0px #00000024;
                                border: 1px solid #FFFFFF1F;
                                background: #252525;
                                padding: 8px 0px 8px 0px;
                                border-top: none;
                                border-radius: 0px 0px 4px 4px;

                                .nav-dropdown-group {
                                    margin-bottom: 8px;
                                    border-top: 1px solid #FFFFFF1F;
                                    border-bottom: 1px solid #FFFFFF1F;
                                }

                                a {
                                    display: flex;
                                    width: 100%;
                                    padding: 12px 16px;
                                    gap: 25px;
                                    align-items: center;

                                    span {
                                        text-transform: capitalize;
                                        line-height: 24px;
                                        letter-spacing: 0.1px;
                                        color: #FFFFFF99;
                                    }
                                }

                                a:hover {
                                    transition: .2s;
                                    background: #F0689614;
                                    span, svg {
                                        color: #FFFFFFDE;
                                    }
                                    svg {
                                        fill: #FFFFFFDE;
                                    }
                                }
                            }
                        }
                    }

                    .nav-link.nav-dropdown:hover {
                        .nav-dropdown-menu {
                            display: block;
                        }
                        .nav-arrow {
                            transition: .2s;
                            transform: rotate(180deg);
                        }
                    }
                }

                .nav-contest {
                    padding: 0;
                    background: transparent;

                    img {
                        max-height: 52px;
                    }
                }
            }

            .iwc-nav-container.nav-second-col {
                .nav-menu {
                    padding: 8px 24px 8px 8px;

                    .nav-link {
                        a {
                            text-transform: capitalize;
                            color: #FFFFFF99;
                        }
                        svg {
                            fill: #FFFFFF99;
                            color: #FFFFFF99;
                        }
                        svg.switch-toggle-dark, svg.switch-toggle-light {
                            fill: #000;
                        }
                    }

                    .nav-link:hover {
                         a {
                            color:#FFFFFFDE;
                        }
                    }
                }
            }
        }
    }

    .header-mobile {
        display: none;

        .header-top {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 15px 9px 11px 11px;
            height: 60px;
            position: relative;
            background: #252525;
        }

        .nav-modal {
            display: none;

            .overlay {
                display: block;
                background-color: rgba(0, 0, 0, 0.74);
                backdrop-filter: blur(5px);
                position: fixed;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                z-index: 10;
            }

            .nav-modal-container::-webkit-scrollbar {
              display: none;
            }

            /* Hide scrollbar for IE, Edge and Firefox */
            .nav-modal-container {
              -ms-overflow-style: none;  /* IE and Edge */
              scrollbar-width: none;  /* Firefox */
            }

            .nav-modal-container {
                padding-top: 8px;
                padding-bottom: 24px;
                width: 268px;
                background: #363636;
                height: 100%;
                overflow: auto;

                .nav-box {
                    padding: 16px 12px;
                    border-bottom: 1px solid #FFFFFF1F;

                    .nav-user {
                        padding: 8px 10px 8px 15px;
                        gap: 0;

                        .user-info-container {
                            gap: 7px;
                        }
                    }

                    .user-info {
                        width: 168px;
                        display: inline-block;
                        text-overflow: ellipsis;
                        overflow: hidden;
                    }

                    .nav-dropdown-menu {
                        width: 244px;
                    }
                }

                .contest-box {
                    border-radius: 4px;
                    padding: 8px;
                    background: #2E2E2E;

                    .contest-title {
                        display: flex;
                        align-items: center;
                        gap: 12px;
                        justify-content: center;
                    }

                    .title-line {
                        display: block;
                        width: 20px;
                        height: 3px;
                        background: #FFFFFF61
                    }

                    span {
                        text-transform: capitalize;
                        font-size: 14px;
                        font-weight: 500;
                        line-height: 24px;
                        letter-spacing: 0.1px;
                        text-align: center;
                        color: #FFFFFF99;
                    }

                    img {
                        width: 100%;
                    }
                }

                .nav-box.auth {
                    display: flex;
                    justify-content: space-between;

                    a {
                        display: inline-block;
                        width: calc(50% - 4px);
                    }

                    .nav-dropdown-menu-container a {
                        width: 100%;
                        display: flex;
                    }
                }

                .nav-box.controls {
                    padding: 24px 12px;
                    .nudity-title {
                        margin: 0 0 6px 0;
                    }
                    .nude-filters {
                        padding: 0;
                        border: none;
                        margin-bottom: 24px;

                        .single-filter {
                            width: 82px;
                        }
                    }
                    .theme-switcher {
                        padding: 0;
                    }
                }

                .menu-box {
                    padding: 16px 12px;

                    .nav-link {
                        border-radius: 4px;
                        background: #2e2e2e;
                        display: flex;
                        gap: 16px;
                        align-items: center;
                        padding: 8px;
                        margin-bottom: 4px;
                        cursor: pointer;

                        svg {
                            transition: .2s;
                            fill: #FFFFFF99;
                            color: #FFFFFF99;
                        }

                        a {
                            font-size: 14px;
                            font-weight: 500;
                            line-height: 16px;
                            letter-spacing: 1.25px;
                            text-align: left;
                            color: #FFFFFF99;
                            text-transform: uppercase;
                        }

                        .dropdown-title {
                            display: flex;
                            gap: 16px;
                            align-items: center;
                        }
                    }

                    .nav-link.active, .nav-dropdown.active .nav-link {
                        svg {
                            fill: #F48FB1;
                            color: #F48FB1;
                        }

                        a {
                            color: #FFFFFFDE;
                        }

                        svg.nav-arrow {
                            fill: #FFFFFFDE;
                            transition: .2s;
                        }
                    }

                    .nav-link.secondary {
                        a {
                            text-transform: capitalize;
                        }
                    }

                    .nav-link.dropdown-trigger {
                        margin-bottom: 0;
                        justify-content: space-between;
                    }

                    .mob-dropdown {
                        border-radius: 4px;
                        margin-bottom: 4px;

                        .dropdown-nav-menu {
                            display: none;
                            margin-top: 8px;
                            padding: 8px;

                            .divider {
                                margin-bottom: 8px;
                                margin-top: 8px;
                            }

                            .nav-item {
                                display: flex;
                                gap: 16px;
                                padding: 8px 0;

                                svg {
                                    fill: #FFFFFF99;
                                    color: #FFFFFF99;
                                }

                                a {
                                    color: #FFFFFF99;
                                    font-size: 14px;
                                    font-weight: 400;
                                    line-height: 20px;
                                    letter-spacing: 0.25px;
                                }
                            }
                        }
                    }

                    .mob-dropdown.active {
                        background: #252525;
                        .nav-link {
                            background: #252525;

                            svg {
                                fill: #F48FB1;
                                color: #F48FB1;
                            }

                            a {
                                color: #FFFFFFDE;
                            }

                            svg.nav-arrow {
                                fill: #FFFFFFDE;
                                transform: rotate(180deg);
                            }
                        }

                    }
                }

            }
        }

        .search-tablet {
            display: flex;
            align-items: center;
            padding: 8px 14px;
            width: 100%;
            max-width: 463px;
            height: 36px;
            border-radius: 18px;
            background: #252525;

            #headerSearchTablet {
                width: 100%;
            }
            .aa-Form {
                border: unset;
                box-shadow: unset;
            }
            .search-field {
                display: flex;
                align-items: center;
                gap: 8px;
                width: 100%;

                .search-button {
                    height: 20px;
                    width: 20px;
                    background-image: url('/design-1/images/icons/header/search-dark.svg');
                    background-repeat: no-repeat;
                    background-position: center;
                }

                .aa-Input, .aa-Input::placeholder {
                    font-family: Roboto;
                    font-size: 14px;
                    font-weight: 400;
                    line-height: 20px;
                    letter-spacing: 0.25px;
                    text-align: left;
                    color: #FFFFFF99;
                }
            }
        }

        .search-full-header-space {
            position: absolute;
            width: 100%;
            height: auto !important;
            min-height: 100%;
            left: 0;
            right: 0;
            z-index: 2;
            display: flex;
            align-items: center;
            margin: 0;
            background: #252525;

            .search-field {
                display: flex;
                align-items: center;
                width: 100%;
                height: 30px;
                margin-right: 9px;
                padding: 0px 6px;
                border-radius: 22px;
                background: linear-gradient(0deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.16)), rgb(18, 18, 18);

                .submit-button {
                    border: none;
                    padding: 0px 0px;
                    background: transparent;
                }

                .aa-Input, .aa-Input::placeholder {
                    color: #FFFFFF99;
                    font-size: 14px;
                    font-weight: 400;
                    line-height: 20px;
                    letter-spacing: 0.25px;
                    margin: 0;
                    padding: 0;
                    text-align: left;
                }
            }
        }

        .cart {
            margin-top: 11px;
        }

        .header-nav {
            display: flex;
            align-items: center;
            gap: 13px;
            width: 100%;

            .header-logo-block {
                .header-logo {
                    background-repeat: no-repeat;
                    height: 22.78px;
                    width: 132px;
                    background-image: url('/design-1/images/icons/header/iwc-logo-dark-mobile.svg');
                }

                p {
                    margin: 0;
                    font-size: 12px;
                    font-weight: 400;
                    line-height: 16px;
                    letter-spacing: 0.4px;
                    color: #FFFFFFDE;
                }
            }

        }

        .header-search {
            display: flex;
            align-items: center;
            gap: 15px;

            #mobile-search-open {
                padding: 4px;
                border-radius: 22px;
                background: linear-gradient(0deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.16)), rgb(18, 18, 18);
            }
        }

        .header-top svg {
            fill: #FFFFFF99;
            color: #FFFFFF99;
        }
    }
}
/* --- /Mobile --- */

@media (max-width:1300px) {
    #header .header-desctop {
        display: none;
    }

    #mobile-search {
        display: none;
    }

    #header {
        position: sticky;
        top: 0;
        z-index: 998;
    }

    #header .header-mobile {
        display: block;
    }

    .shopping-cart {
        .cartWrap {
            .count{
                top: -10px;
                right: -10px;
            }
        }
    }
}

@media (max-width:950px) {
    .shopping-cart {
        .cartWrap {
            .count{
                top: -30px;
                right: -20px;
            }
        }
    }
}

@media (max-width:768px) {
    #mobile-search {
        display: block;
    }
    #header .header-mobile .search-tablet  {
        display: none;
    }
}

#header .nav-user .user-info-container > .badge {
    position: absolute;
    font-size: 10px;
    padding: 2px;
    top: 4px;
    left: 4px;
    line-height: 11px;
}

#header .nav-user .nav-dropdown-menu .nav-dropdown-menu-container a .beta-badge {
    position: absolute;
    font-size: 10px;
    top: -8px;
}
