/* Default Header Hide */
section.custom_header + div {
    display: none;
}

.custom_header {
    position: sticky;
    top: 0;
    z-index: 10;
    border-bottom: 1px solid #d8d8d8;
}

.admin-bar .custom_header {
    top: 32px;
}

/*  */

/*.main_menu_strip {
    display: flex;
    justify-content: space-between;
    background: #CB333B;
    color: white;
    padding: 16px 40px;
}*/

.main_menu_strip {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 36px;
    background: #fff;
    color: #1E1E1E;
    padding: 16px 40px;
}

.main_menu_strip .logo a img {
    max-width: 154px;
}

.cat_and_search {
    display: flex;
    justify-content: space-between;
    column-gap: 16px;
}

.svt-header-search {
    width: 100%;
}

/* Search */
form.custom-search-form {
    display: flex;
    align-items: center;
    background: #FFFFFF;
    border-radius: 10px;
    padding: 2px 10px;
    /* min-width: 540px; */
    justify-content: space-between;
}

form.custom-search-form label {
    display: flex;
    align-items: center;
	width:100%;  
}

form.custom-search-form input.search-field {
    border: none;
    font-size: 16px;
	width:100%; 
}

form.custom-search-form input.search-field:focus {
    box-shadow: none;
}

form.custom-search-form .svt-clear-header-search {
    display: none;
}

form.custom-search-form .svt-clear-header-search svg {
    display: block;
}

form.custom-search-form input.search-submit {
    font-size: 14px;
    line-height: 20px;
    background: #CB333B;
    border: 1px solid #CB333B;
    border-radius: 7px;
}
form.custom-search-form input.search-submit:hover{
    color:#CB333B;
    background: white;
}


/* User Info */
.user_info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 16px;
}


/* Red Menu Strip */
.red_menu_strip {
    display: flex;
    justify-content: space-between;
    background: #fff;
    color: #222;
    padding: 12px 40px;
}

.red_menu_strip ul.menu {
    margin: 0;
    list-style: none;
    color: white;
    display: flex;
    gap: 0;
}

.red_menu_strip ul.menu li a {
    color: #222;
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
}

.red_menu_strip ul.menu li {
    position: relative;
    padding-right: 16px;
    margin-right: 16px;
}

.red_menu_strip ul.menu li:last-child {
    padding: 0;
    margin: 0;
}

.red_menu_strip ul.menu li::after {
    content: "";
    width: 1px;
    height: 60%;
    position: absolute;
    top: 6px;
    right: 0;
    background-size: cover;
    /* transform: translateY(-50%); */
    background: rgba(0, 0, 0, 0.5);
}

.red_menu_strip ul.menu li:last-child::after {
    content: "";
    display: none;
}

.svt-desktop-hide {
    display: none;
}

.custom_header .logo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.svt-logo-left {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.svt-mobile-account .svt-account-login {
    color: #CB333B;
    font-size: var(--Base-Text, 16px);
    font-weight: 600;
    line-height: 125%;
    text-decoration: underline;
}

.svt-mobile-actions-inner {
    display: flex;
    align-items: center;
    gap: 24px;
}

body.hs-logged-in .svt-mobile-account .svt-account-login {
    display: none;
}

body:not(.hs-logged-in) .svt-mobile-account .svt-account-profile-wrap {
    display: none;
}

.svt-mobile-account .svt-account-profile-wrap .svt-account-profile svg {
    display: block;
}

.svt-mobile-account .svt-account-profile-wrap .svt-account-profile svg path {
    stroke: #000;
}

@media screen and (max-width: 991px) {
    .svt-desktop-hide {
        display: block;
    }
    .svt-tablet-hide {
        display: none !important;
    }
    .cat_and_search {
        width: 100%;
    }
    .main_menu_strip .logo a img {
        max-width: 100px;
    }
    .location-icon {
        height: 16px;
    }
    .main_menu_strip {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

@media screen and (max-width: 767px) {
    .svt-tablet-hide {
        display: block !important;
    }
    .svt-mobile-hide {
        display: none !important;
    }
    .red_menu_strip {
        display: none;
    }
}