﻿html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video, input {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
    box-sizing:border-box;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
    box-sizing: border-box;
}
body {
    line-height: 1;
}
ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

#div_content_container {
    width: 100%;
    top:0px;
    padding-bottom:134px;
    position:relative;
    min-height: calc(100vh - 250px)- ;
    padding-top: 80px;
    z-index:10;
    box-sizing: border-box;
}

input:focus,
select:focus,
textarea:focus,
button:focus {
    outline: none;
}

/* HEADER */
.div_header {
    height: 80px;
    width: 100%;
    padding-left:20px;
    padding-right:0px;
    position: fixed;
    top: 0px;
    background-color:var(--kelloggs-white);
    left:0;
    right:0;
    margin:auto;
    z-index: 20;
    display: flex;
    flex-direction: row;
    align-items:center;
}

#div_menu{
    margin-left:20px;
    display:flex;
    flex-direction:row;
    gap:10px;
}

    #div_menu .div_menu_item {
        border-radius: 10px;
        padding: 10px 16px;
        margin-left: 4px;
        margin-right: 4px;
        cursor: pointer;
        position: relative;
        z-index: 150;
        font-weight: 800;
        font-family: 'Barlow Condensed', sans-serif;
        color: var(--kelloggs-red);
        font-size:24px;
    }

.div_menu_item i{
    font-size:16px;
}

#div_menu .has_submenu {
    border-radius: 10px 10px 0px 0px;
    padding: 10px 16px;
    margin-left: 4px;
    margin-right: 4px;
    cursor: pointer;
}

    #div_menu a{
        text-decoration:none;
        line-height:40px;
    }

    #div_menu .div_menu_item:hover {
        background: #FFFFFF;
        color: var(--kelloggs-red);
    }

.div_submenu_item {
    width: 100%;
    position: relative;
    padding-right: 50px;
    white-space: nowrap;
    font-family: 'Montserrat', sans-serif;
    font-size:14px;

}

    .div_submenu_item i{
        position:absolute;
        font-size:9pt;
        right:0px;
        line-height:40px;
    }

        #div_menu .div_menu_item .div_submenu {
            display: none;
            position: absolute;
            box-shadow: 0px 3px 10px rgba(17, 17, 17, 0.1);
            border-radius: 15px;
            background-color:#fff;
            padding-left:49px;
            min-width:300px;
            padding-right:40px;
            padding-top:41px;
            padding-bottom:41px;
            margin-top:30px;
            margin-left:-49px;
            z-index:100;
            max-height:calc(100vh - 70px);
            overflow-y:auto;
        }

            #div_menu .div_menu_item .div_submenu h2{
                color:var(--kelloggs-black);
                font-size:22px;
                font-weight:800;
            }

            #div_menu .div_menu_item:hover .div_submenu, #div_menu .div_menu_item .div_submenu:hover {
                display: block;
            }
            .div_header .img_logo {
                height: 60px;
                margin-top:10px;
            }

        .div_header #div_widgets {
            margin-right: 0px;
            height:29px;
            box-sizing: border-box;
            font-weight:700;
            font-size:16px;
            text-align: right;
            display: flex;
            align-items:flex-end;
            flex-direction: row;
        }

#div_widgets > div {
    flex-grow: 0;
}

#div_widgets .div_languages a {
    color: #a0a0a0;
    text-decoration: none;
}

#div_user, #div_shopping_cart_widget {
    display: flex;
    align-items: center;
    margin-left: 30px;
}

    #div_user, #div_shopping_cart_widget > i {
        margin-right: 10px;
        font-size: 16pt;
    }

label
{
    margin-right:10px;
    margin-left:4px;
}

.div_languages .a_active
{
    color:#fff !important;
}

#div_widgets #div_user a {
    text-decoration:none;
}

#div_widgets div img {
    margin-right: 7px;
}

#div_shopping_cart_lines {
    max-height: 400px;
    overflow-y:auto;
}

#div_search {
    position: relative;
    left:0;
    right:0;
    margin:auto;
    align-items:center;
    display:flex;
    height: 100%;
    max-width:475px;
    width:25%;
}

    #div_search .textbox_search {
        margin-right: 0px;
        width: 100%;
        height: 48px;
        line-height: 48px;
        border: solid 1px var(--kelloggs-gray);
        border-radius: 5px;
    }

#div_search_results {
    display: none;
    color: var(--kelloggs-black);
    position: absolute;
    z-index: 300;
    width: calc(100vw - 40px);
    max-width: 800px;
    left:50%;
    transform:translateX(-50%);
    box-sizing: border-box;
    top: 70px;
    box-shadow: 0px 3px 10px rgba(17, 17, 17, 0.1);
    border-radius: 15px;
    background-color:#fff;
    padding-bottom:14px;
}

    #div_search_results .div_close {
        float: right;
        font-size: 20pt;
        margin-right: 20px;
        cursor: pointer;
        margin-top:16px;
        margin-right: 20px;
    }

#div_search_results .div_close i {
    color: var(--kelloggs-black);
}

#div_search_results h1 {
    margin-top: 34px;
    margin-left: 40px;
    font-size: 22px;
    font-weight: 800;
}

#div_search_results_container{
    max-height:60vh;
    overflow-y:auto;
}

.div_search_result {
    width: 100%;
    background-color: #fff;
    text-align: left;
    height: 90px;
    vertical-align: middle;
    line-height: 20px;
    border-top: 0px;
    text-align: left;
    box-sizing: border-box;
    margin-bottom: 10px;
    padding: 10px;
    padding-left: 20px;
    transition: all 0.5s cubic-bezier(0.75, 0.25, 0.10, 0.95);
}



.div_search_result h1 {
    font-size: 18px !important;
    line-height: 18px;
    font-weight: 800;
    margin: 0px !important;
    margin-bottom: 2px !important;
    margin-top: 10px !important;
}

    .div_search_result h2 {
        font-size: 16px;
        margin:0px;
        line-height:20px;
    }

.div_search_result .div_search_result_image {
    width: 80px;
    margin-right: 15px;
    height: 70px;
    border: 1px solid var(--jet-mozarella);
    border-radius: 10px;
    background-color: #fff;
    display: flex;
    align-content: center;
    align-items: center;
    justify-content: center;
    float: left;
    transform-origin: left;
    transition: all 0.5s cubic-bezier(0.75, 0.25, 0.10, 0.95);
}

    .div_search_result .div_search_result_image img {
        max-width: 90%;
        max-height: 90%;
    }

    .div_search_result .div_search_result_add, .div_search_result .div_search_result_nostock {
        float: right;
        height: 80px;
        line-height: 80px;
        padding-right: 20px;
        padding-left: 20px;
        font-size: 16pt;
        cursor: pointer;
    }

    .div_search_result .div_search_result_nostock {
        cursor: default;
    }


    .div_search_result .div_search_result_image:hover {
        transform: scale(3);
    }

    .div_search_result:hover {
        background-color: var(--jet-mozarella-tint-1);
    }

.textbox_search {
    background-image: url('../Images/Icons/search.png');
    background-size: 26px;
    background-repeat: no-repeat;
    background-position: 12px center;
    padding-left: 50px;
    border-radius: 2px;
    width: 100%;
    max-width: 350px;
    margin-right: 40px;
    border-radius: 20px;
    height: 40px;
    color: var(--kelloggs-black);
}


#div_show_dropdown_menu {
    flex-grow:0;
    margin-left:30px;
    width:60px;
    height:25px;
    cursor:pointer;
}

    #div_show_dropdown_menu span.menu1, #div_show_dropdown_menu span.menu2, #div_show_dropdown_menu span.menu3 {
        display: block;
        margin-top:-10px;
        position: absolute;
        width: 27px;
        height: 5px;
        border-radius: 0px;
        background: var(--kelloggs-black);
        -webkit-transition: all 0.35s cubic-bezier(0.75, 0.25, 0.10, 0.95);
        transition: all 0.35s cubic-bezier(0.75, 0.25, 0.10, 0.95);
    }

    #div_show_dropdown_menu span.menu1 {
        margin-top: 0px;
    }

    #div_show_dropdown_menu span.menu2 {
        margin-top: 10px;
    }

    #div_show_dropdown_menu span.menu3 {
        margin-top: 20px;
    }

#div_show_dropdown_menu.active span.menu1 {
    margin-top: 10px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all 0.35s cubic-bezier(0.75, 0.25, 0.10, 0.95);
    transition: all 0.5s cubic-bezier(0.75, 0.25, 0.10, 0.95);
}

#div_show_dropdown_menu.active span.menu2 {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transition: all 0.35s cubic-bezier(0.75, 0.25, 0.10, 0.95);
    transition: all 0.5s cubic-bezier(0.75, 0.25, 0.10, 0.95);
}

#div_show_dropdown_menu.active span.menu3 {
    opacity: 0;
    -webkit-transition: opacity 0.35s cubic-bezier(0.75, 0.25, 0.10, 0.95);
    transition: opacity 0.35s cubic-bezier(0.75, 0.25, 0.10, 0.95);
}

#div_dropdown_menu {
    position: fixed;
    color: var(--kelloggs-black);
    top: 70px;
    right: 15px;
    
    box-sizing:border-box;
    text-align: left;
    overflow: hidden;
    max-height: 0px;
    background: #FFFFFF;
    box-shadow: 0px 3px 10px rgba(17, 17, 17, 0.1);
    border-radius: 15px;
    width: 300px;
    z-index: 100;
    transition: max-height 0.2s cubic-bezier(0.75, 0.25, 0.10, 0.95);
}

    #div_dropdown_menu.active {
        max-height: 1000px;
    }

.div_product_track {
    position: absolute;
    left: 0px;
    top: 80px;
    height: 100px;
    background-color: #F2F3F4;
    width: 100%;
    padding-left: 50px;
    line-height: 100px;
    font-weight: 900;
}

    .div_product_track i {
        color: #CCCCCC;
        margin-left: 10px;
        margin-right: 10px;
    }

    .div_product_track a {
        text-decoration: none;
    }

.div_menuitems_container{
    padding-top:14px;
    padding-bottom:14px;
}

#div_dropdown_menu .div_menuitems_container div {
    box-sizing: border-box;
    padding-top:10px;
    padding-bottom:10px;
    padding-left: 30px;
    padding-right:26px;
    cursor: pointer;
}

    #div_dropdown_menu .div_menuitems_container div i{
        float:right;
    }

    #div_categories {
        position: absolute;
        height: 45px;
        width: 80%;
        left: 0;
        right: 0;
        margin: auto;
        margin-top: 100px;
        background-color: rgba(0,0,0,0.5);
        border-left: solid 1px #fff;
        flex-direction: row;
        display: none;
    }

    #div_categories a
    {
        color:var(--kelloggs-black);
        text-decoration:none;
    }

    #div_categories .div_category {
        text-align: center;
        font-family: 'Montserrat', sans-serif;
        flex-grow: 1;
        font-size: 18pt;
        border: solid 1px #fff;
        border-top: 0px;
        height: 45px;
        cursor: pointer;
        line-height: 39px;
        color: #fff;
        border-left: 0px;
        transition: background-color 0.35s cubic-bezier(0.75, 0.25, 0.10, 0.95);
    }

        #div_categories .div_category:hover {
            background-color: #000;
        }

            #div_categories .div_category:hover
            {
                border-bottom:solid 1px #000;
            }

                

.div_subcategories {
    position: absolute;
    color: #fff;
    background-color: #000;
    padding-left: 10px;
    padding-right: 60px;
    padding-top: 30px;
    padding-bottom: 20px;
    margin-top: 46px;
    display: flex;
    flex-direction: row;
    border: solid 1px #fff;
    white-space:nowrap;
    border-top: 0px;
    margin-left: -1px;
    opacity: 0;
    transition: opacity 0.35s cubic-bezier(0.75, 0.25, 0.10, 0.95);
    visibility: hidden;
}

    .div_subcategories h2
    {
        margin-bottom:20px;
    }

    #div_categories .div_category:hover .div_subcategories, .div_subcategories:hover {
        visibility: visible;
        opacity: 1;
    }


    .div_subcategories .div_subcategory {
        text-align:left;
        padding-left:50px;
        font-family:Arial;
        font-size:11pt;
        line-height:28px;
    }

        .div_subcategories .div_subcategory a:hover
        {
            text-decoration:underline !important;
        }


#div_shopping_cart_widget {
    cursor: pointer;
}

#div_shopping_cart_content {
    position: absolute;
    max-width: 600px;
    width: 100%;
    top: 70px;
    right: 50px;
    box-sizing: border-box;
    text-align: left;
    overflow: hidden;
    max-height: 0px;
    background: #fff;
    color: var(--kelloggs-black);
    box-shadow: 0px 3px 10px rgba(17, 17, 17, 0.1);
    border-radius: 15px;
    z-index: 100;
    transition: max-height 0.2s cubic-bezier(0.75, 0.25, 0.10, 0.95);
}

.div_shopping_cart_container{
    padding-top:14px;
    padding-bottom:14px;
}

#div_shopping_cart_content.active {
    max-height: 80vh;
}

    #div_shopping_cart_content .div_close {
        float: right;
        font-size: 20pt;
        margin-right:20px;
        cursor: pointer;
        margin-top: -15px;
        margin-right: 20px;
    }

        #div_shopping_cart_content .div_close i {
            color: var(--kelloggs-black);
        }

        #div_shopping_cart_content h1 {
            margin-top: 34px;
            margin-left:40px;
            font-size:22px;
            font-weight:800;
        }


#div_shopping_cart_content .form_button {
    width: 100%;
    left: 0;
    right: 0;
    margin: auto;
    margin-top: 11px;
    width:fit-content;
    margin-bottom: 29px;
}

.div_shopping_cart_line_header, .div_shopping_cart_line_footer {
    width: 100%;
    background-color: #fff;
    text-align: left;
    height: 40px;
    vertical-align: middle;
    line-height: 20px;
    border-top: 0px;
    text-align: left;
    box-sizing: border-box;
    padding: 10px;
    padding-left: 20px;
}

.div_shopping_cart_line_header {
    border-bottom: solid 1px #e0e0e0;
}

    .div_shopping_cart_line {
        width: 100%;
        background-color: #fff;
        text-align: left;
        height:90px;
        align-items:center;
        align-content:center;
        text-align: left;
        box-sizing: border-box;
        padding: 10px;
        padding-left: 40px;
        margin-bottom:10px;
        transition: all 0.5s cubic-bezier(0.75, 0.25, 0.10, 0.95);
    }

        .div_shopping_cart_line h1, .div_shopping_cart_line_header h1, .div_shopping_cart_line_footer h1 {
            font-size: 18px !important;
            line-height: 18px;
            font-weight:800;
            margin: 0px !important;
            margin-bottom: 2px !important;
        }

            .div_shopping_cart_line h1{
                margin-top:10px !important;
            }

            .div_shopping_cart_line h2 {
                font-size: 16px;
                margin: 0px;
                font-weight: 400;
                line-height: 20px;
            }

        .div_shopping_cart_line table {
            font-weight: normal;
            font-family: 'Barlow Condensed', sans-serif;
            line-height:18px;
            margin-top:3px;
        }

    .div_shopping_cart_line .div_shopping_cart_line_image {
        width: 80px;
        margin-right: 15px;
        height: 70px;
        border: 1px solid var(--jet-mozarella);
        border-radius: 10px;
        background-color:#fff;
        display:flex;
        align-content:center;
        align-items:center;
        justify-content:center;
        float: left;
        transform-origin:left;
        transition: all 0.5s cubic-bezier(0.75, 0.25, 0.10, 0.95);
    }

        .div_shopping_cart_line .div_shopping_cart_line_image img{
            max-width:90%;
            max-height:90%;
        }

    .div_shopping_cart_line .div_shopping_cart_line_amount {
        float: right;
        text-align:right !important;
        height: 70px;
        line-height: 70px;
        padding-right: 20px;
        width:100px;
        white-space:nowrap;
        box-sizing:border-box;
        font-size: 12pt;
        align-items:center;
        display:flex;
    }

        .div_shopping_cart_line .div_shopping_cart_line_amount .numeric_textbox {
            border: 1px solid var(--jet-mozarella);
            border-radius: 10px;
            height:40px;
            line-height:40px;
        }

        .div_shopping_cart_line .div_shopping_cart_line_remove, .div_shopping_cart_line_header .div_shopping_cart_line_remove, .div_shopping_cart_line_footer .div_shopping_cart_line_remove {
            float: right;
            cursor: pointer;
            width: 30px;
            height: 40px;
        }

            .div_shopping_cart_line_remove i
            {
                line-height:70px;
                color:var(--kelloggs-black) !important;
            }

.div_shopping_cart_line_header .div_shopping_cart_line_amount, .div_shopping_cart_line_footer .div_shopping_cart_line_amount {
    float: right;
    text-align: right !important;
    height: 100%;
    white-space: nowrap;
    line-height: 100%;
    padding-right: 20px;
    width: 100px;
    box-sizing: border-box;
    font-size: 12pt;
}

    .div_shopping_cart_line img {
        max-width: 100%;
        max-height: 100%;
    }

    .div_shopping_cart_line .div_shopping_cart_line_image:hover {
        transform: scale(3);
    }

    .div_shopping_cart_line:hover {
        background-color: var(--jet-mozarella-tint-1);
    }



.div_shopping_cart_shipping_cost_explainer {
    position: absolute;
    right: 50px;
    border: solid 2px #000;
    box-shadow: 3px 3px 6px 0px #a0a0a0;
    padding: 20px;
    width: 300px;
    margin-top: -50px;
    background-color: #fff;
    z-index: 100;
    display: none;
}

.div_shopping_cart_line_shipping_costs:hover .div_shopping_cart_shipping_cost_explainer {
    display:block;
}

.valid {
    color: var(--kelloggs-green);
}

.invalid {
    color:var(--kelloggs-red);
}

/* FOOTER */
#div_footer {
    background-color: var(--jet-info-dark);
    padding-left: 100px;
    padding-right: 100px;
    width: 100%;
    padding-top: 70px;
    padding-bottom: 70px;
    bottom: 0;
    font-size: 16px;
    background-image:url('/Images/background_footer.svg');
    background-size:100%;
    background-position:bottom;
    background-repeat:no-repeat;
    border-top:solid 200px var(--kelloggs-silver);
}

    #div_footer h1{
        font-size:20px;
        line-height:20px;
    }

    #div_footer a{
        text-decoration:none;
    }

    #div_footer .div_column {
        margin-right: 50px;
        display: inline-block;
        vertical-align: top;
    }

    #div_footer img {
        height: 50px;
        margin-top: 25px;
        position: absolute;
        left: 25px;
    }

    #div_footer div img
    {
        position:relative;
        left:0;
        margin-right:25px;
        height:30px;
        margin-top:35px;
    }

    


/* FORM CONTROLS */
.form_button {
    min-width: 200px;
    padding-left:30px;
    padding-right:30px;
    width: fit-content;
    height: 48px;
    display:flex;
    align-items:center;
    justify-content:center;
    color: #fff;
    background-color: var(--kelloggs-red);
    border-radius:5px;
    box-sizing: border-box;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
}

    .form_button.disabled {
        cursor: default;
        border-color: var(--jet-mozarella) !important;
    }

    .form_button.blue {
        background-color: var(--jet-digital-blue);
    }

    .form_button.red {
        background-color: var(--kelloggs-red);
    }


    .form_button.white {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        background-color: #fff;
        color: var(--kelloggs-black);
        padding: 0px 36px;
        gap: 10px;
        width: 275px;
        height: 48px;
        /* JET Charcoal */
        border: 1px solid var(--kelloggs-black);
        border-radius: 10px;
        /* Inside auto layout */
        flex: none;
        order: 3;
        align-self: stretch;
        flex-grow: 0;
    }

.form_button i {
    margin-left: 30px;
}

    .form_button.border {
        border: solid 1px #fff;
    }

    .numeric_textbox {
        width: 50px;
        height: 30px;
        line-height: 30px;
        border-radius: 4px;
        border: solid 1px #999999;
        text-align: center;
        margin: 0px;
    }

.form_textbox {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 10px 16px;
    gap: 10px;
    width: 100%;
    color:var(--kelloggs-black);
    height: 48px;
    border: 1px solid #CCCCCC;
    border-radius: 5px;
}

.form_list {
    width: 100%;
    color: var(--kelloggs-black);
    border: 1px solid #CCCCCC;
    background-color:#fff;
    border-radius: 4px;
    width: 100%;
    font-size: 13pt;
    height: 48px;
    line-height: 48px;
    font-family: Arial;
    padding-left: 15px;
    box-sizing: border-box;
}

.chosen-single {
    font-family: 'Montserrat', sans-serif !important;
    width: 300px !important;
    color: var(--kelloggs-black) !important;
    border: 1px solid #CCCCCC !important;
    background: #fff !important;
    border-radius: 4px !important;
    width: 100% !important;
    font-size: 13pt !important;
    height: 48px !important;
    line-height: 48px !important;
    padding-left: 15px !important;
    box-sizing: border-box !important;
    box-shadow: none !important;
}

.chosen-single div {
    display: none !important;
}

.chosen-drop {
    font-family: 'Montserrat', sans-serif !important;
    line-height: 30px !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    color: var(--kelloggs-black) !important;
}

.chosen-drop .active-result:hover, .chosen-drop .result-selected, .chosen-drop .highlighted {
    background: var(--kelloggs-red) !important;
}

.input_deliverydate {
    border: solid 1px #a0a0a0;
    width: 100%;
    border-radius: 4px;
    height: 50px;
    line-height: 50px;
    text-indent: 15px;
    box-sizing: border-box;
    background-color: #fff;
    font-size: 13pt;
    cursor: pointer;
}

.form_textarea {
    width: 100%;
    border: solid 1px #999999;
    border-radius: 4px;
    width: 100%;
    font-size: 13pt;
    height: 160px;
    line-height: 24px;
    padding-top:8px;
    box-sizing:border-box;
    font-family: Arial;
    padding-left: 15px;
    box-sizing: border-box;
}

tr th {
    font-weight: bold;
    text-align:left;
    background-color: #000 !important;
    color: #fff;
    padding:4px;
}

#cookie-table td
{
    padding:4px;
}

.div_excel_export {
    float: right;
    cursor: pointer;
}

    .div_excel_export img {
        width: 30px;
    }


input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px white inset !important;
}

.products_search {
    width: 100%;
    margin-top: 80px;
    clear: both;
    margin-bottom: 73px;
    display: flex;
    flex-direction: row;
    align-content: center;
    align-items: center;
    justify-content: space-between;
    font-weight: 700;
}

    .products_search input[type=text] {
        background-image: url('../Images/Icons/search.png');
        background-size:26px;
        background-repeat: no-repeat;
        background-position: 12px center;
        border: 1px solid var(--kelloggs-black);
        padding-left: 50px;
        border-radius: 2px;
        width: calc(100% - 440px);
        margin-right: 40px;
        height: 48px;
        color: var(--kelloggs-black);
    }

    .products_search select {
        width: 294px;
        height: 48px;
        border: 1px solid var(--kelloggs-black);
        color: var(--kelloggs-black);
        padding: 12px;
        background-color: #fff;
        border-radius: 2px;
    }


.table_overview th{
    background-color:var(--kelloggs-black);
    padding-left:10px;
    padding-right:10px;
}





.show_mobile {
    display: none;
}


@media(max-width:1400px) {
    .hide_step_1 {
        display: none;
    }
}

@media(max-width:1200px) {
    #div_search .textbox_search{
        height:40px;
    }

    .show_mobile {
        display: block;
    }
    
    .main{
        margin-top:50px;
    }

    .hide_mobile {
        display: none;
    }

    .div_header .img_logo {
        height: 40px;
    }

    .div_header {
        height: 50px;
    }

    #div_shopping_cart_widget, #div_show_dropdown_menu {
        margin-left: 0px;
        margin-right: 0px;
    }

        #div_shopping_cart_widget{
            margin-right:20px;
        }

    #div_shopping_cart{
        padding-bottom:3px;
    }

    #div_shopping_cart_widget i {
        font-size: 16px;
    }

    #div_widgets {
        margin-right: -10px;
        align-content: center;
        justify-content: center;
        align-items:center;
    }

    #div_search {
        width: 40%;
    }

    #div_show_dropdown_menu {
        margin-right: -20px;
    }


    .form_button {
        min-width: unset;
        padding-left: 20px;
        padding-right: 20px;
        width: fit-content;
        height: 40px;
        font-size: 14px;
    }

    .numeric_textbox {
        width: 50px;
        height: 30px;
        line-height: 30px;
        border-radius: 4px;
        border: solid 1px #999999;
        text-align: center;
        margin: 0px;
    }

    input[type=time] {
        border: 1px solid #CCCCCC;
        height: 40px;
        font-family: 'Arla Interface Regular', Arial;
        padding-left: 10px;
        padding-right: 10px;
        border-radius: 5px;
    }


    .textbox_address_search {
        height: 40px;
        line-height: 40px;
        font-size: 11pt;
    }

    .form_textbox {
        height: 40px;
    }

    .form_list {
        width: 100%;
        font-size: 11pt;
        height: 40px;
    }

    .chosen-single {
        width: 200px !important;
        font-size: 11pt !important;
        height: 40px !important;
        line-height: 40px !important;
        padding-left: 10px !important;
    }

    #div_content_container {
        padding-top: 50px;
    }

    #div_show_dropdown_menu span.menu1, #div_show_dropdown_menu span.menu2, #div_show_dropdown_menu span.menu3 {
        display: block;
        margin-top: 0px;
        position: absolute;
        width: 20px;
        height: 3px;
        border-radius: 0px;
        -webkit-transition: all 0.35s cubic-bezier(0.75, 0.25, 0.10, 0.95);
        transition: all 0.35s cubic-bezier(0.75, 0.25, 0.10, 0.95);
    }

    #div_show_dropdown_menu span.menu1 {
        margin-top: 3px;
    }

    #div_show_dropdown_menu span.menu2 {
        margin-top: 11px;
    }

    #div_show_dropdown_menu span.menu3 {
        margin-top: 19px;
    }

    #div_show_dropdown_menu.active span.menu1 {
        margin-top: 11px;
    }

    #div_dropdown_menu {
        top: 50px;
        right: 0px;
        border-radius: 10px 0px 0px 10px;
    }

    #div_search_results {
        top: 50px;
        border-radius: 0px 0px 10px 10px;
        width: 100vw;
        left:60px;
    }

        #div_search_results h1, #div_shopping_cart_content h1 {
            font-size: 16px !important;
        }

        #div_search_results .div_close i, #div_shopping_cart_content .div_close i {
            font-size: 16pt;
        }

    .div_search_result_add i {
        font-size: 13pt;
    }

    #div_shopping_cart_content {
        top: 50px;
        width: 100vw;
        right: 0px;
        border-radius: 0px 0px 10px 10px;
    }

    .div_shopping_cart_line .div_shopping_cart_line_amount {
        width: 60px;
        padding-right: 12px;
    }
}


@media(max-width:800px) {
    #div_footer_login {
        background-repeat: no-repeat;
        background-position: bottom right;
        background-size: 80%;
        max-width: 100%;
    }

        #div_footer_login img {
            width: 30%;
            top: unset;
            bottom: 10%;
            right: 10%;
        }

    #div_footer .div_column {
        display: block;
        margin-bottom: 30px;
        text-align: left;
    }

        #div_footer .div_column table {
            margin: auto;
            left: 0;
            right: 0;
        }

        #div_footer .div_column table {
            margin: 0px !important;
        }

            #div_footer .div_column table .element_padding_left {
                padding-left: 0px;
            }

        #div_footer .div_column i {
            display: none;
        }
}