/** Shopify CDN: Minification failed

Line 261:4 Unexpected "{"
Line 262:4 Expected identifier but found "%"
Line 297:4 Unexpected "{"
Line 298:4 Expected identifier but found "%"
Line 346:4 Unexpected "{"
Line 347:4 Expected identifier but found "%"

**/
header .main-header {
    display: grid;
    grid-template-areas: "logo nav icons";
    grid-template-columns: auto 1fr auto;
    /* position: relative; */
}

.header--logo {
    grid-area: logo;
    display: flex;
}

header nav {
    grid-area: nav;
    justify-self:
        center;
    display: flex;
    align-items: center;
}

header nav ul {
    transition: all 0.3s ease-in;
}

.nav-desktop .nested-item {
    box-shadow: 0 0 10px rgba(0, 0, 0, 20%);
    border-radius: var(--small-component-border-radius);
}

header .header-icons {
    grid-area: icons;
    align-items: center;
}

header nav>ul {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

header .header-icons button {
    border: none;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Switzer-Light';
}

.header--logo .desk-logo a {
    margin-bottom: 0px;
}

header .header-icons svg,
.nav-mobile li a svg {
    width: 17px;
    height: 24px;
}

header .header-icons {
    display: grid;
    grid-template-areas: "search account cart";
    grid-template-columns: auto;
    justify-self: end;
    gap: 16px;
}

header .header-icons .cart-icon {
    grid-area: cart;
}

header .header-icons .cart-icon button {
    display:
        flex;
    flex-direction: row;
    gap: 4px;
    align-items: baseline;
}

header .header-icons .customer-icon {
    grid-area: account;
}

header .header-icons .search-icon {
    grid-area: search;
}

header nav li svg {
    width: 14px;
    height: 14px;
}

header nav li a,
.nav-mobile li a {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    padding: 4px 8px;
}

header nav li svg {
    transition: all 0.3s ease-in;
}

header nav li:hover>a svg {
    transform: rotate(180deg)
}

.header-icons>div {
    height: max-content;
}

.search-drop {
    position: fixed;
    right: 0px;
    top: 0px;
    background-color: #fff;
    /* min-width: 400px; */
    width: 100%;
    z-index: 1000;
    /* height: 100%; */
    /* transform: translateX(100%); */
    transition: all 0.3s ease-in-out;
    display: none;
}

/* .search-drop.active {
    transform: translateX(0%);
} */

.search-drop .search-box {
    display: flex;
    padding: 0% 4% 0px;
    align-items: center;
}

.search-border{
  border-bottom: solid 1px #000;
  padding-bottom: 14px!important;
}

.search-box>svg {
    width: 24px;
    /* flex: 0 0 7%;
    max-width: 7%; */
}

.search-drop .search-box .close-search {
    margin-left: auto;
}

.search-drop .search-box input {
    flex: 0 0 80%;
    max-width: 80%;
    border: none;
    font-family: var(--content-font1)!important;
}

.search-drop .search-box input:focus-visible {
    outline: none;
}

.searched-products {
    padding: var(--product-card-gap-desktop);
    max-height: 80vh;
    overflow-y: auto;
    padding-bottom: 30px;
}

.searched-products::-webkit-scrollbar {
    width: 6px;
}

.searched-products::-webkit-scrollbar-track {
    border-radius: 10px;
}

.searched-products::-webkit-scrollbar-thumb {
    background: lightgrey;
    border-radius: 10px;
}

.searched-products ul {
    display: flex;
    flex-direction: row;
    gap: var(--product-card-gap-desktop);
    flex-wrap: wrap;
}

.searched-products ul>li {
    flex: 0 0 calc(100%/5 - 20px*4/5);
    max-width: calc(100%/5 - 20px*4/5);
}

.search-backdrop {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 50%);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease-in;
    display: none;
}

.search-backdrop.active {
    opacity: 1;
    pointer-events: auto;
    display: block;
}

.search-icon button {
    cursor: pointer;
}

.search-drop.active {
    /* max-width: 300px; */
    opacity: 1;
    pointer-events: auto;
    display: block;
}

.search-drop input {
    flex: 0 0 60%;
    max-width: 60%;
    padding: 1%;
}

.search-drop button {
    border: none;
    background-color: transparent;
    cursor: pointer;
}

.header-icons a {
    display: flex;
    gap: 2px;
    align-items:
        center;
}

.header--logo a {
    margin-bottom: 0px;
    line-height: normal;
}

    {
    % if settings.dropdown=='nested' %
}

header nav>ul .nested-item {
    position: absolute;
}

header nav ul li {
    position: relative;
}

header nav>ul .nested-item {
    background-color: #fff;
    z-index: 100;
    width: max-content;
    min-width: 150px;
    padding: 0px;
    top: 100%;
    left: 80%;
    box-shadow: var(--general-shadow);
    height: 0px;
    overflow: hidden;
    transition: all 0.2s ease-out;
}

header nav>ul .nested-item.level-1 {
    left: 0%;
}

header nav>ul .nested-item.visible {
    height: auto;
    padding: 10px;
    overflow: visible;
}

    {
    % else %
}

header nav>ul .nested-item {
    z-index: 100;
}

header {
    position: relative;
}

header nav .level-1 {
    display: flex;
    flex-direction: row;
}

@media(min-width:990px) {
    header nav .level-1 {
        position: absolute;
        top: 100%;
        min-width: 80%;
        background-color: #fff;
        left: 50%;
        transform: translateX(-50%);
        box-shadow: var(--general-shadow);
        height: 0px;
        overflow: hidden;
        padding: 0px;
        transition: opacity 0.2s ease-out;
        opacity: 0;
    }

    header nav .level-1.visible {
        padding: 1% 3%;
        overflow: visible;
        min-height: 200px;
        opacity: 1;
    }

    header .hamburger {
        display: none;
    }

    ul.level-1.nested-item>li {
        margin: 0 50px;
    }
}

    {
    % endif %
}

@media(min-width:990px) {
    .nav-mobile {
        display: none;
    }

    .hamburger {
        display: none;
    }
}

@media(max-width:990px) {
    .nav-desktop {
        display: none;
    }

    .nav-mobile li a {
        justify-content: space-between;
    }

    .nav-mobile li a svg {
        width: 14px;
        transform: rotate(-90deg);
    }

    mobile-navbar {
        position: fixed;
        left: -100%;
        background-color: #fff;
        z-index: 1000;
        top: 0px;
        min-height: 100vh;
        padding: 3%;
        overflow: hidden;
        transition: all 0.3s ease-in;
    }

    mobile-navbar.show {
        left: 0%;
    }

    header .header-icons .customer-icon {
        display: none;
    }

    header .header-icons .search-icon {
        grid-area: account;
    }

    .search-bar {
        display: flex;
        padding: 6px;
        box-shadow: 0px 0px 2px rgb(0, 0, 0);
    }

    .search-bar input {
        flex: 0 0 90%;
        border: none;
        background: transparent;
        font-size: 16px;
    }

    .search-bar input:focus-visible {
        outline: none;
    }

    .search-bar button {
        border: none;
        background: transparent;
    }

    .search-bar button svg {
        width: 22px;
        height: auto;
    }

    .header--logo h1 {
        font-size: 20px;
        line-height: 20px;
        text-align: center;
    }

    .hamburger {
        grid-area: nav;
        display: flex;
        align-items: center;
    }

    .ham-close {
        display: none;
        opacity: 0;
        transform: scale(0.8);
    }

    .show .ham-close {
        display: block;
        opacity: 1;
        transform: scale(1);
    }

    .show .ham {
        display: none;
        opacity: 0;
        transform: scale(0.8);
    }

    .hamburger svg {
        height: auto;
        width: 22px;
    }

    .hamburger button {
        border: none;
        background: transparent;
        transition: all 0.3s ease-in;
        display: flex;
    }

    header  {
        grid-template-areas: "nav logo icons";
        grid-template-columns:
            1fr 1fr 1fr;
    }

    .nav-mobile>ul>li {
        padding: 10px;
    }

    .nav-mobile .nested-item {
        overflow: hidden;
        transition: all 0.3s ease-in;
        position: absolute;
        left: 0px;
        top: 0px;
        width: 100%;
        z-index: 100;
        background-color: #fff;
        min-height: 100vh;
        padding: 3%;
        padding: 4% 8%;
        transform: translateX(100%);
    }

    .visible>.nested-item {
        transform: translateX(0%);
    }

    .nav-mobile .nested-item .prev-nav {
        border: none;
        background-color: transparent;
        padding: 16px 0px;
    }

    .nav-mobile .nested-item .prev-nav svg {
        width: 18px;
        height: auto;
        transform: rotate(90deg)
    }

    .nav-mobile .customer-link svg {
        transform: rotate(0deg);
        width: 20px;
    }

    .nav-mobile .customer-link {
        justify-content: flex-start;
        gap: 10px;
    }

    .nav-mobile .nested-item li {
        padding: 10px;
    }

    .nav-drop {
        position: fixed;
        bottom: 0px;
        left: 0px;
        background-color: rgba(0, 0, 0, 0.4);
        width: 100%;
        min-height: 100vh;
        z-index: 999;
        display: none;
    }

    .show.nav-drop {
        display: block;
    }

    .nav-close {
        margin: 30px 0px;
        border: none;
        background-color: transparent;
    }

    .nav-close svg {
        width: 16px;
        height: auto;
    }

    .suggestion-wrapper-mob {
        position: absolute;
        background: #fff;
        z-index: 1000;
        box-shadow: 0 0 10px rgb(0 0 0 / 20%);
        max-height: 0px;
        overflow: hidden;
        width: 90%;
        padding: 0px;
        transition: all 0.3s ease-in;
    }

    .suggestion-wrapper-mob.visible {
        overflow: visible;
        max-height: 900px;
        padding: 8% 2%;
    }

    .suggestion-wrapper-mob .suggestion-box a {
        background-color: #dbdbdb;
        padding: 2%;
        border-radius: 10px;
    }
}

@media(max-width:524px) {
    header mobile-navbar {
        width: 100%;
    }

    .header--logo .desk-logo {
        display: none;
    }

    .header--logo .mobile-logo {
        display: flex;
        justify-content: center;
    }

    /* .search-drop {
        min-width: 94vw;
    } */

    /* .search-drop.active {
        max-width: 96vw;
    } */
}

@media(min-width:524px) {
    header mobile-navbar {
        min-width: 300px;
    }

    .header--logo .desk-logo {
        display: flex;
        justify-content: center;
    }

    .header--logo .mobile-logo {
        display: none;
    }
}

@media(min-width:768px) {
    .nav-desktop a {
        font-size: var(--header-font-size-desktop);
    }
}

@media(max-width:768px) {
    .nav-desktop a {
        font-size: var(--header-font-size-mobile);
    }

    .searched-products ul {
        display: flex;
        flex-direction: row;
        gap: var(--product-card-gap-mobile);
    }

    .searched-products ul>li {
        flex: 0 0 calc(100%/2 - 20px*1/2);
        max-width: calc(100%/2 - 20px*1/2);
    }
}

@media(min-width:990px) {
    [data-style="megamenu"] .nested-item {
        margin-top: -20px;
    }
}

.view-all-search {
    border-radius: 0px;
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100%;
    text-align: center;
    font-family: var(--content-font1)!important;
    padding: 15px;
}

.header-sticky-header {
    position: sticky;
    top: 0px;
    left: 0px;
    z-index: 1000;
}

header.header-layout-2 {
    grid-template-areas: "nav logo icons";
}

header .header--logo {
    justify-content: center;
}

.display-mega {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.display-mega ul {
    flex: 0 0 50%;
    max-width: 50%;
}

.display-mega .mega-drop {
    flex: 0 0 40%;
    max-width: 40%;
    display: flex;
    gap: 4%;
}

[data-style="megamenu"] .nested-item>ul {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.mega-image-wrap img {
    transition: transform 0.5s ease-in-out;
}

.mega-content-wrapper:hover img {
    transform: scale(1.3)
}

/* /////////////Changes */
header nav>ul .nested-item.level-2 {
    top: 0%;
}

.mobile-logo a {
    display: flex;
}

a[href="/collections/football-jersey"] {
    font-weight: 600;
}

/* addding mobile number  */
.header-icons .phone-icon.desktop {
    display: flex;
    gap: 10px;
    align-items: center;
}
.header-icons  span.mobile-num a{
    font-size: 16px !important;
    font-weight: 500;
    line-height: 26px;
    color: #90281B;
    font-family: "Switzer-Medium"!important;
}
.header--logo a.section-heading {
    font-size: 30px !important;
}
@media (max-width: 768px){
 .header-icons #new-localization_form {
  display: none !important;
}
  .heart-svg {display: none;}
.header-icons.m-header #new-localization_form {
  display: block !important;
}
}