/*************************************************************************************
**************************************************************************************
**************************************** RESET ***************************************
**************************************************************************************
*************************************************************************************/

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, 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 {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    box-sizing: border-box;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

body {
    line-height: 1;
    background-color: #ffffff;
}

ol, ul {
    list-style: none;
}

a, a:link, a:visited {
    text-decoration: none;
    color: inherit;
}

blockquote, q {
    quotes: none;
}

    blockquote:before, blockquote:after,
    q:before, q:after {
        content: '';
        content: none;
    }

table {
    border-collapse: collapse;
    border-spacing: 0;
}
/*Form reset*/
textarea,
select,
input[type="date"],
input[type="datetime"],
input[type="datetime-local"],
input[type="email"],
input[type="month"],
input[type="number"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="text"],
input[type="time"],
input[type="url"],
input[type="week"],
input[type="submit"] {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-background-clip: padding;
    -moz-background-clip: padding;
    background-clip: padding-box;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
    -webkit-appearance: none;
    background-color: transparent;
    outline: 0;
    margin: 0;
    padding: 0;
    text-align: left;
    vertical-align: middle;
    border: none;
}

button, input[type="button"] {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-appearance: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-appearance: none;
    background-color: transparent;
    outline: 0;
    margin: 0;
    padding: 0;
    text-align: left;
    vertical-align: middle;
    border: none;
}

    button:active,
    input[type="button"]:active {
        /*transform: scale(0.95);*/
    }

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none !important;
    margin: 0 !important;
}

input[type=number] {
    -moz-appearance: textfield !important;
}

::-moz-selection {
    background: #1C5633;
    color: #FFFFFF;
}

::selection {
    background: #1C5633;
    color: #FFFFFF;
}

/*************************************************************************************
**************************************************************************************
**************************************** GENERAL *************************************
**************************************************************************************
*************************************************************************************/

body, html {
    width: 100%;
    height: 100%;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    line-height: 1.5;
    color: #191919;
}

    body.active_popup,
    body.active_cart, body.active_order {
        overflow: hidden;
    }

#global_wrapper {
    /*width: 100%;
    height: 100%;*/
    overflow-x: hidden;
    position: relative;
}

.clear {
    float: none;
    clear: both;
}

.float_left {
    float: left;
}

.float_right {
    float: right;
}

img {
    display: block;
    width: 100%;
}

hr {
    margin: 20px 0;
    border: none;
    border-top: 1px solid #DDDDDD;
}

a.red_link,
a.red_link:hover,
.red_text {
    color: #EC1D24;
}

a:hover {
    color: #000000;
}

b, strong {
    font-weight: 700;
}

i {
    font-style: italic;
}

p {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 14px;
    color: #191919;
}

    p a, p a:link {
        text-decoration: underline;
    }

i {
    font-size: 14px;
}

#content ul {
    font-size: 13px;
    margin-bottom: 15px;
}

#content table tr td {
    padding: 5px;
    border: 1px solid #D8D8D8;
}

#content table.no_borders tr td {
    border: none;
    padding: 0;
}

h1 {
    font-size: 25px;
    line-height: 1.2;
    text-transform: uppercase;
}

h2 {
    font-size: 18px;
}

h3 {
    font-size: 16px;
}

h4 {
    font-size: 15px;
}

h5 {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
}

h6 {
    font-size: 12px;
}

/* buttons */

a.button,
input[type="submit"].button,
button.button {
    display: inline-block;
    width: auto;
    height: 40px;
    padding: 0 25px;
    font-size: 11px;
    line-height: 36px;
    border: 2px solid #1C5633;
    background-color: #1C5633;
    text-align: center;
    text-transform: uppercase;
    cursor: pointer;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    color: #FFFFFF;
    font-weight: 700;
    letter-spacing: 2px;
    border-radius: 50px;
    -moz-border-radius: 50px;
    -webkit-border-radius: 50px;
}

    a.button.small_button,
    input[type="submit"].button.small_button,
    button.button.small_button {
        height: 30px;
        padding: 0 15px;
        line-height: 26px;
        text-transform: none;
        letter-spacing: 0;
        font-size: 13px;
    }



    a.button:hover,
    input[type="submit"].button:hover,
    button.button:hover {
        border: 2px solid #143e24;
        background-color: #143e24;
        color: #FFFFFF;
    }


    a.button.white_button,
    input[type="submit"].button.white_button,
    button.button.white_button {
        border: 2px solid #FFFFFF;
        background-color: #FFFFFF;
        color: #191919;
    }

        a.button.white_button:hover,
        input[type="submit"].button.white_button:hover,
        button.button.white_button:hover {
            border: 2px solid #f2f2f2;
            background-color: #f2f2f2;
        }

    a.button.ghost_button,
    input[type="submit"].button.ghost_button,
    button.button.ghost_button {
        border: 1px solid #1C5633;
        background-color: transparent;
        color: #1C5633;
    }

        a.button.ghost_button:hover,
        input[type="submit"].button.ghost_button:hover,
        button.button.ghost_button:hover {
            border: 1px solid #c4d1c9;
            background-color: #c4d1c9;
            color: #FFFFFF;
        }

.promotion_badge_wrap {
    position: absolute;
    z-index: 5;
    top: 4px;
    left: 6px;
}

.promotion_badge {
    /*position: absolute;
    z-index: 10;
    top: 8px;
    left: 8px;*/
    color: #FFFFFF;
    padding: 4px 6px 3px 6px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    background-color: #191919;
    display: inline-block;
}

.badge_new {
    background-color: #1C5633;
    color: #FFFFFF;
}

.badge_sale {
    background-color: #d0011b;
    color: #FFFFFF;
}

.badge_exclusive {
    background-color: #c4d1c9;
    color: #1C5633;
}

.badge_backorder {
    background-color: black;
}


/* columns */

.column_one,
.column_one_half,
.column_one_third,
.column_two_thirds,
.column_one_quarter,
.column_one_fifth {
    width: 100%;
    display: block;
    float: left;
    padding: 10px;
    position: relative;
}

.column_one_half {
    width: 50%;
}

.column_one_third {
    width: 34%;
}

.column_two_thirds {
    width: 66%;
}

.column_one_quarter {
    width: 25%;
}

.column_one_fifth {
    width: 20%;
}

/* slider */

.slick-slider {
    touch-action: auto !important;
}

.hero_slider .slick-slide {
    min-height: 500px !important;
    background-size: cover;
    background-position: center;
}

.hero_slider .slick-slide {
    margin: 0;
    position: relative;
}

.hero_slider_text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #FFFFFF;
    text-align: center;
}

    .hero_slider_text h2,
    .hero_slider_text h5 {
        color: #FFFFFF;
        margin-bottom: 15px;
    }

    .hero_slider_text h2 {
        font-size: 75px;
        line-height: 1;
        font-weight: 800;
    }

    .hero_slider_text h5 {
        margin-bottom: 30px;
    }

/* Dots */
.slick-dotted.slick-slider {
    margin-bottom: 20px;
}

.slick-dots {
    position: absolute;
    bottom: 0;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
}

    .slick-dots li {
        position: relative;
        display: inline-block;
        width: 15px;
        height: 15px;
        margin: 0 3px;
        padding: 0;
        cursor: pointer;
    }

        .slick-dots li button {
            font-size: 0;
            line-height: 0;
            display: block;
            width: 15px;
            height: 15px;
            padding: 0;
            cursor: pointer;
            color: transparent;
            border: 0;
            outline: none;
            background: transparent;
        }

            .slick-dots li button:hover,
            .slick-dots li button:focus {
                outline: none;
            }

                .slick-dots li button:hover:before,
                .slick-dots li button:focus:before {
                    opacity: 1;
                }

            .slick-dots li button:before {
                font-size: 30px;
                line-height: 20px;
                position: absolute;
                top: 0;
                left: 0;
                width: 15px;
                height: 15px;
                content: '•';
                text-align: center;
                opacity: .25;
                color: black;
                -webkit-font-smoothing: antialiased;
                -moz-osx-font-smoothing: grayscale;
                color: #FFFFFF;
            }

        .slick-dots li.slick-active button:before {
            opacity: .75;
            color: #FFFFFF;
        }


/* Arrows */
.slick-prev,
.slick-next {
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 50%;
    left: 0;
    z-index: 15;
    display: block;
    width: 50px;
    height: 50px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    cursor: pointer;
    color: transparent;
    border: none;
    outline: none;
    background-color: transparent;
    opacity: 0.1;
    transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    background-color: rgba(0,0,0,0);
}

.slick-disabled {
    opacity: 0.1 !important;
}

.slick-prev:hover,
.slick-next:hover {
    opacity: 1;
    /*background-color: rgba(0,0,0,0.02);*/
}

    .slick-prev:hover::before,
    .slick-next:hover::before {
        content: "";
        background-color: rgba(0,0,0,0.02);
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

.slick-next {
    left: auto;
    right: 0;
}

    .slick-prev::after,
    .slick-next::after {
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        content: "\f053";
        font-style: normal;
        font-weight: normal;
        text-rendering: auto;
        -webkit-font-smoothing: antialiased;
        display: inline-block;
        position: absolute;
        font-size: 18px;
        top: 50%;
        left: 50%;
        margin: 0 0 0 -5px;
        z-index: 1;
        vertical-align: middle;
        font-weight: 900;
        color: #FFFFFF;
    }

    .slick-next::after {
        content: "\f054";
    }

.slick-slide {
    margin: 10px;
}

.slick-list {
    margin: 0 -10px;
}

.slick-slide:focus,
.slick-slide a:focus {
    outline: none;
}


/*************************************************************************************
**************************************************************************************
**************************************** FORMS ***************************************
**************************************************************************************
*************************************************************************************/

textarea,
select,
input[type="date"],
input[type="datetime"],
input[type="datetime-local"],
input[type="email"],
input[type="month"],
input[type="number"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="text"],
input[type="time"],
input[type="url"],
input[type="week"],
input[type="submit"] {
    background-color: #F9F9F9;
    border: 1px solid #c4d1c9;
    height: 40px;
    font-size: 14px;
    line-height: 16px;
    width: 100%;
    padding: 12px 15px;
    font-family: 'DM Sans';
    -webkit-transition: border 0.3s ease-in-out;
    -moz-transition: border 0.3s ease-in-out;
    transition: border 0.3s ease-in-out;
}

    textarea:focus,
    select:focus,
    input[type="date"]:focus,
    input[type="datetime"]:focus,
    input[type="datetime-local"]:focus,
    input[type="email"]:focus,
    input[type="month"]:focus,
    input[type="number"]:focus,
    input[type="password"]:focus,
    input[type="search"]:focus,
    input[type="tel"]:focus,
    input[type="text"]:focus,
    input[type="time"]:focus,
    input[type="url"]:focus,
    input[type="week"]:focus {
        border: 1px solid #1C5633;
    }

select {
    background: #F2F2F2 url(data:image/png;base64,R0lGODlhDQAEAIAAAAAAAP8A/yH5BAEHAAEALAAAAAANAAQAAAILhA+hG5jMDpxvhgIAOw==);
    background-repeat: no-repeat;
    background-position: 97% center;
    padding: 0 20px 0 15px !important;
}

input::-webkit-search-decoration {
    -webkit-appearance: none;
}

button:focus, input[type="button"]:focus {
    outline: none;
}

form.form_coupon {
    width: 100%;
    margin: 15px 0;
    display: inline-block;
}

    form.form_coupon span {
        width: 70%;
        float: left;
        padding-right: 15px
    }

    form.form_coupon input[type="submit"] {
        width: 30%;
        float: right;
        padding: 0 10px;
    }

textarea {
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    height: 70px;
    padding: 10px;
    font-size: 14px;
    resize: none;
}


/*************************************************************************************
**************************************************************************************
**************************************** HEADER **************************************
**************************************************************************************
*************************************************************************************/

header {
    height: 80px;
    position: fixed;
    top: 25px;
    left: 0;
    width: 100%;
    z-index: 50;
    background-color: #FFFFFF;
    box-shadow: 0 0 6px rgba(0,0,0,0.15);
    -moz-box-shadow: 0 0 6px rgba(0,0,0,0.15);
    -webkit-box-shadow: 0 0 6px rgba(0,0,0,0.15);
}

#logo_desktop {
    width: 300px;
    height: 78px;
    position: fixed;
    top: 25px;
    left: 15px;
    z-index: 60;
    background-color: #FFFFFF;
    padding: 23px 20px;
    display: block;
}

body.hidden_top_header header,
body.hidden_top_header #logo_desktop {
    top: 0;
}

body.hidden_top_header #side_menu .sidebar__inner {
    padding-top: 95px;
}

body.hidden_top_header #content {
    margin-top: 80px;
}

#logo_desktop img {
    width: auto;
    height: 34px;
}

#logo_mobile {
    display: none;
    width: 138px;
    height: 60px;
    padding: 18px 0;
    position: absolute;
    top: 3px;
    left: 50%;
    margin-left: -70px;
}

    #logo_mobile img {
        width: auto;
        height: 24px;
    }

.mobile_menu_button {
    position: absolute;
    top: 15px;
    left: 10px;
    width: 35px;
    height: 35px;
    z-index: 10;
    cursor: pointer;
    display: none;
}

    .mobile_menu_button::after {
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        content: "\f0c9";
        font-style: normal;
        font-weight: normal;
        text-rendering: auto;
        -webkit-font-smoothing: antialiased;
        display: inline-block;
        position: absolute;
        font-size: 18px;
        top: 50%;
        left: 50%;
        margin: -9px 0 0 -8px;
        z-index: 1;
        vertical-align: middle;
        font-weight: 900;
        color: #191919;
    }

.my_account_mobile {
    margin: 0 15px;
    border-top: 1px solid #c4d1c9;
    display: none;
}

    .my_account_mobile a {
        display: block;
        border-bottom: 1px solid #c4d1c9;
        padding: 15px 0;
    }

        .my_account_mobile a i {
            margin-right: 10px;
            color: #1C5633;
        }

        .my_account_mobile a:last-child {
            border-bottom: none;
        }

.cart_title_mobile,
.product_title_mobile {
    position: fixed;
    top: 90px;
    left: 0;
    z-index: 10;
    width: 100%;
    background-color: #FFFFFF;
    height: 55px;
    /*border-bottom: 1px solid  #c4d1c9;*/
    padding: 14px 20px;
    display: none;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.12);
    -moz-box-shadow: 0 0 6px rgba(0, 0, 0, 0.12);
    -webkit-box-shadow: 0 0 6px rgba(0, 0, 0, 0.12);
}

    .cart_title_mobile h3,
    .product_title_mobile h3 {
        font-size: 16px;
        line-height: 1.5;
        font-weight: 700;
        color: #191919;
    }

/* Sticky header*/

.sticky_header {
    transition: transform 0.4s;
}

.scroll-down .sticky_header {
    transform: translate3d(0, -100%, 0);
}

.scroll-up .sticky_header {
    transform: none;
}

.scroll-up:not(.menu-open) .sticky_header {
    background: #FFFFFF;
    /*box-shadow: 0 0 10px rgba(0, 0, 0, 0.35);*/
}

#header_top_alert {
    height: 26px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    color: #FFFFFF;
    line-height: 20px;
    z-index: 100;
    background-color: #191919;
    text-align: center;
}

    #header_top_alert p {
        float: left;
        color: #CCCCCC;
        font-size: 10px;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 0;
    }

        #header_top_alert p a {
            text-decoration: none;
            color: #CCCCCC;
        }

        #header_top_alert p.log_out {
            float: right;
        }

.header_top_inner {
    max-width: 1460px;
    margin: 0 auto;
    padding: 6px 35px 5px 35px;
    clear: both;
    float: none;
    display: inline-block;
    width: 100%;
}

#header_right {
    position: relative;
    top: 22px;
    display: inline-block;
    float: right;
    margin-left: 10px;
    margin-right: 5px;
}

    #header_right a {
        display: inline-block;
        width: 40px;
        height: 40px;
        text-align: center;
        font-size: 18px;
        margin-left: 15px;
        color: #191919;
    }

        #header_right a:hover {
            color: #1C5633;
        }

        #header_right a i {
            padding-top: 10px;
            font-size: 18px;
        }

        #header_right a.cart_icon_header {
            width: auto;
        }

            #header_right a.cart_icon_header i,
            #header_right a.cart_icon_header span {
                display: inline-block;
            }

    #header_right .mobile_search_button {
        display: none;
    }

    #header_right .my_account_desktop,
    #header_right .favourites_desktop {
        display: inline-block;
    }

    #header_right a.cart_icon_header span.cart_qty {
        background: #1C5633;
        color: white;
        border-radius: 20px;
        padding: 2px 6px;
        font-size: 12px;
        margin-top: 0;
        display: inline;
        margin: -5px 20px 0 -8px;
        float: right;
    }



/* search */

#search {
    position: relative;
    top: 19px;
    width: 350px;
    display: inline-block;
    float: right;
}

    #search #search_input {
        height: 45px;
        font-size: 16px;
        letter-spacing: 0;
        color: #191919;
        padding-left: 22px;
        -webkit-border-radius: 50px;
        -moz-border-radius: 50px;
        -ms-border-radius: 50px;
        -o-border-radius: 50px;
        border-radius: 50px;
    }

    #search #submit_search {
        position: absolute;
        width: 55px;
        height: 45px;
        border: none;
        top: 0;
        right: 0;
        cursor: pointer;
        background-color: transparent;
    }


        #search #submit_search::after {
            font-family: "Font Awesome 5 Free";
            font-weight: 900;
            content: "\f002";
            font-style: normal;
            font-weight: normal;
            text-rendering: auto;
            -webkit-font-smoothing: antialiased;
            display: inline-block;
            position: absolute;
            font-size: 18px;
            top: 50%;
            left: 50%;
            margin: -10px 0 0 -9px;
            z-index: 1;
            vertical-align: middle;
            font-weight: 900;
            color: #191919;
        }

        #search #submit_search:hover::after {
            color: #1C5633;
        }




/* nav */


#main_nav {
    padding: 30px 15px;
    -webkit-appearance: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-appearance: none;
}

    #main_nav ul li {
        padding: 0;
        border-bottom: 1px solid #c4d1c9;
        position: relative;
    }

        #main_nav ul li:last-child {
            border-bottom: none;
        }


        #main_nav ul li a,
        #main_nav ul li span.dropdown_trigger {
            font-size: 12px;
            text-transform: uppercase;
            font-weight: 700;
            letter-spacing: 1px;
            width: 100%;
            display: block;
            padding: 15px 0;
            cursor: pointer;
        }

            #main_nav ul li a:hover,
            #main_nav ul li .dropdown_trigger:hover {
                color: #191919;
            }

        #main_nav ul li span.active_dropdown.dropdown_trigger:hover {
            color: #1C5633;
        }

        #main_nav ul li span.dropdown_trigger {
            position: relative;
        }

            #main_nav ul li span.dropdown_trigger::after {
                font-family: "Font Awesome 5 Free";
                font-weight: 900;
                content: "\f078";
                font-style: normal;
                font-weight: normal;
                text-rendering: auto;
                -webkit-font-smoothing: antialiased;
                display: inline-block;
                position: absolute;
                font-size: 12px;
                top: 50%;
                right: 0;
                margin: -6px 0 0 0;
                z-index: 1;
                vertical-align: middle;
                font-weight: 900;
                color: #1C5633;
            }

        #main_nav ul li span.dropdown_toggle {
            padding: 0 20px;
            float: right;
            cursor: pointer;
            position: absolute;
            top: 12px;
            right: 0;
            color: #1C5633;
        }

        #main_nav ul li ul {
            display: none;
        }

            #main_nav ul li ul li {
                padding-left: 15px;
            }

                #main_nav ul li ul li a,
                #main_nav ul li ul li span.dropdown_trigger {
                    text-transform: none;
                    letter-spacing: 0;
                    font-size: 14px;
                    color: #818181;
                }

                #main_nav ul li ul li a,
                #main_nav ul li ul li span.dropdown_trigger {
                    font-weight: 500;
                }

                #main_nav ul li ul li ul {
                    padding: 15px 0;
                }

                    #main_nav ul li ul li ul li {
                        border-bottom: none;
                        padding: 3px 15px;
                    }

                        #main_nav ul li ul li ul li a {
                            font-weight: 400;
                            padding: 5px 0;
                            display: inline-block;
                            width: auto;
                        }

                #main_nav ul li ul li:last-child {
                    border-bottom: none;
                }

                #main_nav ul li span.active_dropdown,
                #main_nav ul li ul li span.dropdown_trigger.active_dropdown {
                    color: #1C5633;
                    font-weight: 600;
                    border-bottom: 1px solid #c4d1c9;
                }

                    #main_nav ul li span.active_dropdown::after,
                    #main_nav ul li ul li span.dropdown_trigger.active_dropdown::after {
                        font-family: "Font Awesome 5 Free";
                        font-weight: 900;
                        content: "\f077";
                        font-style: normal;
                        font-weight: normal;
                        text-rendering: auto;
                        -webkit-font-smoothing: antialiased;
                        display: inline-block;
                        position: absolute;
                        font-size: 12px;
                        top: 50%;
                        right: 0;
                        margin: -6px 0 0 0;
                        z-index: 1;
                        vertical-align: middle;
                        font-weight: 900;
                        color: #1C5633;
                    }

                #main_nav ul li ul li a.current_sub_cat {
                    font-weight: 700;
                    color: #1C5633;
                }

        #main_nav ul li a.current_cat {
            font-weight: 700;
            color: #1C5633;
        }

/* header_top */

.small_drop_down {
    display: block;
    position: absolute;
    z-index: 10;
    top: 26px;
    left: -10px;
    font-size: 11px;
    line-height: 22px;
    height: 0;
    opacity: 0;
    overflow: hidden;
    min-width: 115%;
}

    .small_drop_down span {
        background-color: #FFFFFF;
        border-top: 1px solid #DDDDDD;
        margin: 0 6px 6px 6px;
        display: block;
        -webkit-box-shadow: 0 0 6px rgba(0,0,0,0.2);
        -moz-box-shadow: 0 0 6px rgba(0,0,0,0.2);
        box-shadow: 0 0 6px rgba(0,0,0,0.2);
        white-space: nowrap;
    }

        .small_drop_down span a {
            display: inline-block;
            width: 100%;
            padding: 5px 10px;
            border-bottom: 1px solid #DDDDDD;
        }





/*************************************************************************************
**************************************************************************************
************************************ MAIN CONTENT ************************************
**************************************************************************************
*************************************************************************************/

#side_menu {
    width: 320px;
    float: left;
    will-change: min-height;
}

    #side_menu .sidebar__inner {
        padding: 0 20px;
        position: relative;
        transform: translate(0, 0);
        transform: translate3d(0, 0, 0);
        will-change: position, transform;
        padding-top: 95px;
        min-height: 100%;
    }

#content {
    min-width: 100%;
    min-height: 100%;
    margin-top: 105px;
    padding: 20px 20px 20px 320px;
}

#global_wrapper,
.header_inner {
    max-width: 1500px !important;
    margin: 0 auto;
    position: relative;
}

footer .footer_top {
    max-width: 1510px;
}

body {
    background-color: #FFFFFF;
}

#global_wrapper {
    background-color: white;
}

/*************************************************************************************
**************************************************************************************
************************************** HOMEPAGE **************************************
**************************************************************************************
*************************************************************************************/

#about_hp,
#about_hp_2 {
    background-color: #1c5633;
    padding: 60px 40px;
    text-align: center;
}

#about_hp_2 {
    margin-top: 10px;
}

#about_hp h2 {
    font-size: 35px;
    line-height: 1.2em;
    font-weight: 400;
    max-width: 900px;
    margin: 0 auto;
    color: #c4d1c9;
}

    #about_hp h2 b {
        color: #FFFFFF;
    }

#about_hp_2 h5,
#about_hp_2 p {
    color: #FFFFFF;
    max-width: 800px;
    margin: 0 auto;
    margin-bottom: 15px;
}

#about_hp_2 h5 {
    margin-bottom: 30px;
}

#about_hp_2 p:last-child {
    margin-bottom: 0;
}

.category_mosaic {
    margin: 0;
}

.title_with_line {
    position: relative;
    text-align: center;
    padding-top: 40px;
}

    .title_with_line h3 {
        font-size: 25px;
        font-weight: 700;
        text-align: center;
        padding: 0 15px 0 15px;
        position: relative;
        z-index: 10;
        margin: 0 auto 30px auto;
        display: inline-block;
        background-color: #FFFFFF;
        text-transform: uppercase;
        letter-spacing: 5px;
    }

    .title_with_line::after {
        position: absolute;
        display: block;
        left: 0;
        top: 80px;
        width: 100%;
        height: 1px;
        content: "";
        background-color: #c4d1c9;
        z-index: 8;
    }

.category_mosaic table tr td table tr td {
    border-top: none !important;
    border-right: 20px solid #FFFFFF !important;
    border-bottom: 20px solid #FFFFFF !important;
    border-left: 10px solid #FFFFFF !important;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

    .category_mosaic table tr td table tr td:first-child {
        border-left: 10px solid #FFFFFF !important;
    }

.category_mosaic table tr td {
    vertical-align: top !important;
    border: 10px solid #FFFFFF !important;
    padding: 0 !important;
}

.cat_mosaic {
    vertical-align: top;
    position: relative;
    overflow: hidden;
}

    .cat_mosaic a img {
        transition: transform .3s ease-in-out;
        -moz-transition: transform .3s ease-in-out;
        -webkit-transition: transform .3s ease-in-out;
    }

    .cat_mosaic a:hover img {
        transform: scale(1.05);
    }

    .cat_mosaic h5 {
        position: absolute;
        z-index: 5;
        bottom: 15px;
        left: 15px;
        letter-spacing: 2px;
        font-size: 11px;
        font-weight: 700;
    }

table.category_mosaic_table {
    margin: 0 -30px 0 -10px;
}

table.category_mosaic_table_2 {
    margin: 0 -20px 0 -10px;
    margin-top: -20px;
}

    table.category_mosaic_table_2 tr td {
        border-right: 20px solid #FFFFFF !important;
    }

#merch_categories table tr td h5, #smoking_categories table tr td h5 {
    color: #FFFFFF;
}

/*************************************************************************************
**************************************************************************************
********************************* PRODUCT CATEGORY ***********************************
**************************************************************************************
*************************************************************************************/

.product_list {
    width: 100%;
    display: inline-block;
}

.one_product {
    width: 23%;
    margin: 1%;
    float: left;
    padding: 15px;
    position: relative;
    vertical-align: top;
    border-radius: 5px;
    box-shadow: 0 0 6px rgba(0,0,0,0.12);
    -moz-box-shadow: 0 0 6px rgba(0,0,0,0.12);
    -webkit-box-shadow: 0 0 6px rgba(0,0,0,0.12);
}

.product_images .add_to_favourites {
    right: auto;
    left: 530px;
    top: 10px;
    z-index: 100;
}

.one_image_only .product_images .add_to_favourites {
    right: auto;
    left: 450px;
    top: 10px;
}


.add_to_favourites {
    width: 40px;
    height: 40px;
    position: absolute;
    z-index: 5;
    top: 0;
    right: 0;
    text-align: center;
    cursor: pointer;
    color: #CCCCCC;
}

    .add_to_favourites i {
        font-size: 18px;
    }

    .add_to_favourites:hover {
        color: #191919;
    }

    .add_to_favourites.favourite_product, .favourites_desktop.favourite_product {
        color: #d0011b !important;
    }

.product_image {
    width: 100%;
    padding-bottom: 100%;
    position: relative;
    overflow: hidden;
}

.product_images_slider .slick-slide img {
    max-height: 480px !important;
    width: auto !important;
    margin: 10px auto !important;
}

@media only screen and (max-width:1200px) {
    .product_images_slider .slick-slide img {
        max-height: 420px !important;
    }
}

@media only screen and (max-width:1000px) {
    .product_images_slider .slick-slide img {
        max-height: 100px !important;
    }
}

.product_image div img {
    display: block;
    transition: transform .3s ease-in-out;
    -moz-transition: transform .3s ease-in-out;
    -webkit-transition: transform .3s ease-in-out;
    max-height: 100%;
    width: auto;
    margin: 0 auto;
    max-width: 100%;
}

.product_image div {
    display: block;
    width: 100%;
    position: absolute;
    z-index: 4;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    height: 100%;
}

    .product_image div:hover img {
        transform: scale(1.05);
        -moz-transform: scale(1.05);
        -webkit-transform: scale(1.05);
    }

.product_details {
    text-align: left;
    padding-top: 10px;
}

.product_header {
    font-weight: 700;
    padding-bottom: 10px;
    /*white-space: nowrap;*/
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: bold;
    height: 1.8em;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.product_name {
    font-weight: 400;
    line-height: 1.3em;
    color: #45474c;
    height: 2.5em;
    font-size: 14px;
    margin-bottom: 5px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    color: #818181;
    text-transform: capitalize;
}

.prd_note {
    font-size: 12px;
    height: 1.8em;
    overflow: hidden;
    padding-right: 45px;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.product_price {
    margin: 0;
    font-weight: 700;
    color: #191919;
}

.red_text {
    color: #d0011b;
}

.old_price {
    color: #AAAAAA;
    text-decoration: line-through;
    font-weight: 400;
    padding-left: 5px;
}

.add_to_cart {
    position: absolute;
    z-index: 5;
    bottom: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    border: 1px solid #c4d1c9;
    border-radius: 5px;
    text-align: center;
    font-size: 18px;
    cursor: pointer;
    color: #1C5633;
    transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
}

    .add_to_cart:hover {
        background-color: #1C5633;
        border: 1px solid #1C5633;
        color: #FFFFFF;
    }

.view_more_button {
    text-align: center;
    padding: 30px 0 60px 0;
}

/************************** FILTERS **************************/

/* Drop downs */

.product_filters {
    position: relative;
    z-index: 8;
    margin-bottom: 30px;
}

    .product_filters .accordion_section {
        background-color: #f9f9f9;
        width: 18.35%;
        margin-right: 1%;
        margin-bottom: 1.5%;
        display: inline-block;
        vertical-align: top;
        position: relative;
        user-select: none;
        -moz-user-select: none;
        -khtml-user-select: none;
        -webkit-user-select: none;
        -o-user-select: none;
    }

        .product_filters .accordion_section h4 {
            position: relative;
            border-radius: 5px;
            -moz-border-radius: 5px;
            -webkit-border-radius: 5px;
            padding: 8px 12px;
            cursor: pointer;
            background-color: #F9F9F9;
            border: 1px solid #c4d1c9;
            font-size: 13px;
        }

            .product_filters .accordion_section h4:after {
                font-family: "Font Awesome 5 Free";
                font-weight: 900;
                content: "\f078";
                font-style: normal;
                font-weight: normal;
                text-rendering: auto;
                -webkit-font-smoothing: antialiased;
                display: inline-block;
                position: absolute;
                font-size: 12px;
                top: 50%;
                right: 0;
                margin: -8px 12px 0 0;
                z-index: 1;
                vertical-align: middle;
                font-weight: 900;
                color: #1C5633;
            }

        .product_filters .accordion_section.open_accordion h4:after {
            content: "\f077";
        }


        .product_filters .accordion_section .accordion_plus_minus {
            display: none !important;
        }

        .product_filters .accordion_section .accordion_content {
            display: none;
            position: absolute;
            top: 35px;
            left: 0;
            width: 100%;
            background-color: #f9f9f9;
            z-index: 8;
            padding: 4px 12px 0 12px;
            border-left: 1px solid #DDDDDD;
            border-bottom: 1px solid #DDDDDD;
            border-right: 1px solid #DDDDDD;
            max-height: 230px;
            overflow-y: scroll;
            border-bottom-right-radius: 5px;
            -moz-border-bottom-right-radius: 5px;
            -webkit-border-bottom-right-radius: 5px;
            border-bottom-left-radius: 5px;
            -moz-border-bottom-left-radius: 5px;
            -webkit-border-bottom-left-radius: 5px;
        }

        .product_filters .accordion_section.open_accordion h4 {
            border-left: 1px solid #1C5633;
            border-top: 1px solid #1C5633;
            border-right: 1px solid #1C5633;
            border-bottom: none;
            border-bottom-right-radius: 0;
            border-bottom-left-radius: 0;
        }

        .product_filters .accordion_section.open_accordion .accordion_content {
            border-left: 1px solid #1C5633;
            border-bottom: 1px solid #1C5633;
            border-right: 1px solid #1C5633;
        }

        .product_filters .accordion_section .accordion_content label,
        .product_filters .accordion_section .accordion_content span {
            font-size: 12px;
            color: #818181;
        }

        .product_filters .accordion_section .accordion_content .styled_input_wrap {
            margin-bottom: 5px;
        }

        .product_filters .accordion_section .accordion_content label:hover {
            color: #191919;
            cursor: pointer;
        }

        .product_filters .accordion_section .accordion_content label input {
            margin: 0 2px 0 0;
        }

        .product_filters .accordion_section .accordion_content .styled_input_wrap:last-child {
            margin-bottom: 8px;
        }

.product_filters_title h3 {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 15px;
    color: #1C5633;
    position: relative;
    display: inline-block;
    padding: 0 25px 10px 0;
    cursor: pointer;
    margin-right: 10px;
}

    .product_filters_title h3::after {
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        content: "\f077";
        font-style: normal;
        font-weight: normal;
        text-rendering: auto;
        -webkit-font-smoothing: antialiased;
        display: inline-block;
        position: absolute;
        font-size: 12px;
        top: 50%;
        right: 0;
        margin: -14px 4px 0 0;
        z-index: 1;
        vertical-align: middle;
        font-weight: 900;
        color: #1C5633;
    }

.product_filters_title.filters_closed h3::after {
    content: "\f078";
}


/* Filter tags */

.product_filters_applied {
    display: block;
    clear: both;
    float: none;
    padding: 6px 10px 5px 10px;
}

#searchTags {
    display: inline-block;
    padding-right: 160px;
}

.active_filter_tag {
    display: inline-block;
    background-color: #c4d1c9;
    border: 1px solid #c4d1c9;
    padding: 0 26px 0 8px;
    border-radius: 5px;
    margin: 0 4px 4px 0;
    position: relative;
    cursor: pointer;
}

    .active_filter_tag span {
        line-height: 24px;
        font-size: 11px;
    }

    .active_filter_tag::after {
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        content: "\f00d";
        font-style: normal;
        font-weight: normal;
        text-rendering: auto;
        -webkit-font-smoothing: antialiased;
        display: inline-block;
        position: absolute;
        top: 3px;
        right: 8px;
        font-size: 12px;
        z-index: 1;
        vertical-align: middle;
        font-weight: 900;
        color: #191919;
    }

/* Title */

.page_title {
    height: 250px;
    margin: 0 0 30px 0;
    text-align: center;
    position: relative;
    color: #FFFFFF;
}

.my_account .page_title {
    margin-right: 0;
}

.page_title_inner {
    position: relative;
    z-index: 5;
    width: 100%;
    height: 100%;
}

    .page_title_inner h1 {
        font-size: 50px;
        font-weight: 700;
        position: relative;
        top: 50%;
        transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
    }

.title_overlay {
    position: absolute;
    z-index: 4;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.35);
}

/* Breadcrumbs */

.breadcrumbs {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 15px;
    line-height: 1;
    padding: 0 20px;
}

    .breadcrumbs span,
    .breadcrumbs a {
        font-size: 13px;
        padding: 0 2px;
        opacity: 0.6;
    }

        .breadcrumbs span:hover {
            color: #FFFFFF;
        }

        .breadcrumbs a:hover {
            opacity: 1;
            color: #FFFFFF;
        }

        .breadcrumbs a i,
        .breadcrumbs span i {
            font-size: 9px;
            line-height: 20px;
        }

        .breadcrumbs a i {
            font-size: 12px;
        }

/*************************************************************************************
**************************************************************************************
********************************** PRODUCT DETAIL ************************************
**************************************************************************************
*************************************************************************************/

#product_detail_popup {
    position: fixed;
    z-index: 200;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(25,25,25,0.2);
    overflow: hidden;
    display: none;
}

.product_detail_inner {
    width: 100%;
    max-width: 1200px;
    margin: 60px auto;
    background-color: #FFFFFF;
    padding: 0;
    position: relative;
    float: none;
    clear: both;
    min-height: 590px;
    max-height: 590px;
    overflow: hidden;
    top: 50%;
    margin-top: -300px;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    height: 100%;
    box-shadow: 0 0 6px rgba(0,0,0,0.12);
    -moz-box-shadow: 0 0 6px rgba(0,0,0,0.12);
    -webkit-box-shadow: 0 0 6px rgba(0,0,0,0.12);
}

.one_image_only .product_detail_inner {
    min-height: 575px;
    max-height: 575px;
    margin-top: -285px;
}

.product_detail_inner_wrap {
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 40px 20px 0 40px;
}

.product_images {
    width: 600px;
    vertical-align: top;
    position: fixed;
    z-index: 6;
    overflow: hidden;
}

.one_image_only .product_images {
    width: 500px;
}

    .product_images:hover,
    .one_image_only .product_images:hover {
        width: 100%;
    }

        .product_images:hover + .image_zoom_focusout,
        .one_image_only .product_images:hover + .image_zoom_focusout {
            display: block;
        }

.image_zoom_focusout {
    position: fixed;
    width: 50%;
    height: 100%;
    top: 0;
    right: 0;
    z-index: 20;
    display: none;
}

    .image_zoom_focusout.inactive_zoom {
        display: block;
        width: 100%;
    }

.product_images_slider {
    margin-left: 80px;
    max-width: 500px;
}

    .product_images_slider .slick-slide {
        /*border: 1px solid #DDDDDD;*/
        cursor: zoom-in;
    }

.slider_nav_wrap {
    width: 80px;
    position: absolute;
    top: 35px;
    left: 0;
}

.one_image_only .slider_nav_wrap,
.one_image_only .slick-dots {
    display: none;
}

.one_image_only .product_images_slider {
    margin-left: 0;
}

.slider_nav_wrap .slick-vertical .slick-prev,
.slider_nav_wrap .slick-vertical .slick-next {
    top: -15px;
    left: 0;
    width: 80px;
    height: 35px;
    margin: 0;
}

.slider_nav_wrap .slick-vertical .slick-next {
    top: auto;
    bottom: -50px;
    margin: 0;
}

    .slider_nav_wrap .slick-vertical .slick-prev::after,
    .slider_nav_wrap .slick-vertical .slick-next::after {
        color: #191919;
        content: '\f077';
    }

.slider_nav_wrap .slick-vertical .slick-disabled,
.product_images_slider .slick-disabled {
    opacity: 0.1 !important;
}

.slider_nav_wrap .slick-vertical .slick-next::after {
    content: '\f078';
}

.slider_nav_wrap .slick-slide {
    margin: 5px 2px;
    /*border: 1px solid #DDDDDD !important;*/
    box-shadow: 0 0 6px rgba(0,0,0,0.12);
    -moz-box-shadow: 0 0 6px rgba(0,0,0,0.12);
    -webkit-box-shadow: 0 0 6px rgba(0,0,0,0.12);
}

.product_images .slick-dots li button::before,
.product_images .slick-dots li.slick-active button::before {
    color: #191919;
}

.product_images .slick-dots {
    bottom: -18px;
}

.product_images_slider .slick-prev::after,
.product_images_slider .slick-next::after {
    color: #191919;
}

.product_images_slider .slick-prev,
.product_images_slider .slick-next {
    right: 0;
    left: 0;
    width: 65px;
    height: 100%;
    top: 0;
    margin: 0;
    transform: none;
    -moz-transform: none;
    -webkit-transform: none;
    border: 10px solid transparent;
}

.product_images_slider .slick-next {
    left: auto;
    right: 0;
}

.slider_nav_wrap .slick-slide.current_tn {
    border: 1px solid #AAAAAA !important;
}

.product_images_slider .slick-list {
    overflow: visible;
}

.slick-slide img {
    height: auto !important;
    max-width: 100%;
}

.js-image-zoom__zoomed-area {
    background-color: #DDDDDD !important;
}

.js-image-zoom__zoomed-image {
    border: 1px solid #DDDDDD !important;
    /*background-size:1000px auto !important;*/
}

.product_description {
    width: 50%;
    float: right;
    vertical-align: top;
    position: relative;
    z-index: 5;
    padding: 0 20px 10px 50px;
}

.one_image_only .product_description {
    width: 57%;
}

.product_description h2 {
    font-size: 30px;
    font-weight: 700;
    margin: 10px auto;
    line-height: 1;
}

.product_description p {
    color: #818181;
}

.product_description_code p {
    font-weight: 700;
    font-size: 14px;
    color: #191919;
    margin: -5px 0 20px 0;
}

.product_description_price p {
    font-size: 22px;
    font-weight: 700;
    color: #1c5633;
}

.add_to_cart_product {
    float: left;
    margin-bottom: 25px;
}

    .add_to_cart_product button {
        height: 50px;
        line-height: 25px;
        font-size: 15px;
        padding: 10px 30px;
    }

.cart_edit_item_qty {
    float: right;
}

.new_size .cart_edit_item_qty {
    margin-top: -65px;
}

.item_quantity_minus,
.item_quantity,
.item_quantity_plus {
    width: 50px !important;
    height: 50px !important;
    float: left;
    padding: 0 !important;
    text-align: center !important;
    font-size: 25px !important;
    font-weight: 700;
    background-color: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    -moz-border-radius: 0 !important;
    -webkit-border-radius: 0 !important;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

    .item_quantity_minus:active,
    .item_quantity_plus:active {
        transform: scale(0.95);
    }

.item_quantity {
    width: 60px !important;
    margin: 0 10px !important;
}


.item_quantity_minus,
.item_quantity_plus {
    width: 40px !important;
    height: 40px !important;
    border-radius: 5px !important;
    -moz-border-radius: 5px !important;
    -webkit-border-radius: 5px !important;
    cursor: pointer !important;
    user-select: none;
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -o-user-select: none;
    border: 1px solid #c4d1c9 !important;
    line-height: 32px;
    margin-top: 5px;
}

.product_filters {
    user-select: none;
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -o-user-select: none;
}

.product_filters_inner {
    display: none;
}

.product_filters hr {
    margin-top: 10px;
    margin-bottom: 30px;
}

.item_quantity_minus i,
.item_quantity_plus i {
    font-size: 21px;
    color: #c4d1c9;
}

.item_quantity_minus:hover,
.item_quantity_plus:hover {
    border: 1px solid #1C5633 !important;
}

.swatches {
    padding-right: 180px;
}

    .swatches li {
        display: inline-block;
        margin: 2px 1px;
        vertical-align: top;
        list-style: none;
    }

        .swatches li.disabled span {
            border: 1px solid #DDDDDD;
            color: #DDDDDD;
        }

    .swatches span {
        line-height: 22px;
        border-radius: 32px;
        border: 1px solid #c4d1c9;
        color: #1C5633;
        display: block;
        height: 33px;
        text-align: center;
        transition: all .25s ease 0s;
        min-width: 33px;
        padding: 5px 10px;
        font-weight: 600;
        cursor: pointer;
        font-size: 13px;
    }

    .swatches > .selected span,
    .swatches li:not(.disabled) span:hover,
    .swatches li.selected span {
        background-color: #1C5633;
        color: #fff;
        border: 1px solid #1C5633;
    }

.size_title {
    padding-left: 5px;
    margin-bottom: 10px;
}

    .size_title span {
        font-size: 13px;
        font-weight: 700;
        margin-bottom: 10px;
    }

.product_sizes_wrap {
    margin-bottom: 20px;
}

.add_another_size {
    position: relative;
}

button.add_size_button {
    height: 20px;
    position: absolute;
    top: -20px;
    right: 0;
    color: #1C5633;
    cursor: pointer;
    font-size: 12px;
}

    button.add_size_button i {
        vertical-align: bottom;
    }


/*************************************************************************************
**************************************************************************************
*********************************** POP UP CART **************************************
**************************************************************************************
*************************************************************************************/

#cart, #order {
    position: fixed;
    z-index: 200;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(25,25,25,0.2);
    overflow: hidden;
    display: none;
}

.cart_inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #FFFFFF;
    padding: 0;
    position: relative;
    float: none;
    clear: both;
    height: 100%;
    min-height: 80%;
    max-height: 80%;
    top: 50%;
    transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    box-shadow: 0 0 6px rgba(0,0,0,0.12);
    -moz-box-shadow: 0 0 6px rgba(0,0,0,0.12);
    -webkit-box-shadow: 0 0 6px rgba(0,0,0,0.12);
}

    .cart_summary,
    .cart_place_order,
    .cart_inner .special_instructions {
        width: 340px;
        float: left;
        position: absolute;
        z-index: 5;
        top: 30px;
        left: 30px;
    }

    .cart_inner .special_instructions {
        top: 175px;
        z-index: 7;
    }

.cart_place_order {
    top: 260px;
    width: auto;
    z-index: 7;
}

.cart_summary h3 {
    font-size: 30px;
    font-weight: 700;
}

.product_list_cart {
    width: 100%;
    height: 100%;
    overflow-y: scroll;
    padding-left: 420px;
    padding-right: 30px;
    padding-top: 95px;
    position: relative;
    z-index: 6;
}

.one_product_cart {
    position: relative;
    display: inline-block;
    width: 100%;
}

    .one_product_cart:last-child {
        margin-bottom: 50px;
    }

    .one_product_cart .product_name {
        padding-right: 80px;
        margin-bottom: 0;
    }

    .one_product_cart .product_header {
        padding-bottom: 0;
        margin-bottom: 0;
        height: 1.6em;
    }

        .one_product_cart .product_header span {
            color: #AAAAAA;
            font-size: 12px;
        }

.cart_total {
    float: left;
    font-size: 25px;
    color: #818181;
}

.cart_price {
    float: right;
    font-size: 25px;
    font-weight: 700;
    color: #1C5633;
}

.cart_place_order .special_instructions {
    padding: 15px 0 20px 0;
}

.product_details_cart img {
    width: 100px;
    float: left;
    border: 1px solid #DDDDDD;
    margin-right: 15px;
    margin-bottom: 20px;
}

.one_product_cart .cart_edit_item_qty {
    position: absolute;
    top: 25px;
    right: 0;
}

.one_product_cart .product_instructions_text {
    margin-bottom: 20px;
}

    .one_product_cart .product_instructions_text textarea {
        height: 58px;
        line-height: 1.4;
    }

.product_list_cart hr {
    margin-top: 0;
}

button.product_instructions_button {
    height: 20px;
    position: absolute;
    top: 0;
    left: 115px;
    color: #1C5633;
    cursor: pointer;
}

    button.product_instructions_button i {
        vertical-align: bottom;
    }

button.remove_instructions {
    top: 43px;
    right: 10px;
    left: auto !important;
}

.product_special_instructions {
    position: relative;
    z-index: 5;
}

button.add_instructions {
    font-size: 12px;
}

    button.add_instructions i {
        font-size: 12px;
        line-height: 15px
    }


button.remove_instructions i {
    vertical-align: top;
}

.product_instructions_text {
    clear: both;
    float: none;
    position: relative;
    z-index: 4;
    top: auto;
    left: auto;
    margin: 0;
    width: 100%;
    display: none;
    margin-bottom: 0;
}

#product_detail_popup .product_instructions_text {
    transition: margin .1s linear;
    -moz-transition: margin .1s linear;
    -webkit-transition: margin .1s linear;
}

    #product_detail_popup .product_instructions_text.note_added {
        margin-bottom: 60px;
    }

.product_special_instructions .add_instructions {
    display: block;
}

.product_special_instructions.note_added .add_instructions {
    display: none;
}

.product_special_instructions .remove_instructions {
    display: none;
}

.product_special_instructions.note_added .remove_instructions {
    display: block;
}

.cart_place_order {
    width: 340px;
}

    .cart_place_order button {
        height: 50px;
        line-height: 25px;
        font-size: 15px;
        padding: 10px 25px 10px 30px;
        width: 100%;
    }

        .cart_place_order button i {
            font-size: 15px;
        }

button#empty_cart,
button#back_to_shop {
    border: 1px solid darkred;
    background: transparent;
    color: darkred;
    height: 40px;
    padding-top: 6px;
    width: 48%;
    font-size: 12px;
    padding: 6px;
    letter-spacing: 0;
    margin-top: 15px;
    opacity: 0.6;
    position: relative;
    top: auto;
    right: auto;
    z-index: 10;
}

button#empty_cart {
    float: left;
}

    button#empty_cart:hover,
    button#back_to_shop:hover {
        opacity: 1;
    }

button#back_to_shop {
    border: 1px solid #191919;
    color: #191919;
    float: right;
}

button#empty_cart i {
    font-size: 13px;
}

button#back_to_shop i {
    font-size: 13px;
    color: #191919;
}

.order_confirmation {
    text-align: center;
    max-width: 400px;
    margin: 0 auto 30px auto;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
}

    .order_confirmation h3 {
        font-size: 50px;
        line-height: 50px;
        color: #1C5633;
        font-weight: 700;
        margin-bottom: 20px;
    }

    .order_confirmation h4 {
        font-size: 20px;
        color: #818181;
        line-height: 1.6em;
        margin-bottom: 30px;
    }

    .order_confirmation p {
        color: #818181;
    }

    .order_confirmation h4 span {
        display: block;
        color: #191919;
        font-weight: 700;
        font-size: 30px;
    }

/*************************************************************************************
**************************************************************************************
************************************* CHECKOUT ***************************************
**************************************************************************************
*************************************************************************************/


/*************************************************************************************
**************************************************************************************
********************************* ORDER CONFIRMATION *********************************
**************************************************************************************
*************************************************************************************/


/*************************************************************************************
**************************************************************************************
************************************ TEXT LAYOUT *************************************
**************************************************************************************
*************************************************************************************/


/*************************************************************************************
**************************************************************************************
*********************************** CONTACT PAGE *************************************
**************************************************************************************
*************************************************************************************/



/*************************************************************************************
**************************************************************************************
*************************************** FOOTER ***************************************
**************************************************************************************
*************************************************************************************/

footer {
    position: relative;
    width: 100%;
    background-color: #FFFFFF;
    text-align: center;
    clear: both;
    float: none;
    box-shadow: 0 0 6px rgba(0,0,0,0.15);
    -moz-box-shadow: 0 0 6px rgba(0,0,0,0.15);
    -webkit-box-shadow: 0 0 6px rgba(0,0,0,0.15);
}

    footer .footer_top {
        width: 100%;
        padding: 40px;
        display: inline-block;
        text-align: left;
    }

        footer .footer_top h5 {
            margin-bottom: 20px;
        }

        footer .footer_top ul li a {
            color: #818181;
            font-size: 14px;
            line-height: 1.6;
        }

            footer .footer_top ul li a:hover {
                color: #000000;
            }

            footer .footer_top ul li a.footer_email_link {
                color: #000000;
                text-decoration: underline;
            }

    footer #newsletter_form {
        position: relative;
        margin-bottom: 50px;
    }

        footer #newsletter_form span {
            padding-right: 100px;
            display: inline-block;
            width: 100%;
        }

        footer #newsletter_form input[type="text"],
        footer #newsletter_form input[type="email"] {
            background-color: #FFFFFF;
            width: 46%;
            margin-right: 4%;
            float: left;
        }

        footer #newsletter_form input[type="submit"] {
            width: 100px;
            position: absolute;
            top: 0;
            right: 0;
        }

    footer .footer_bottom {
        text-align: center;
        padding: 10px;
        background-color: #191919;
    }

        footer .footer_bottom p {
            margin-bottom: 0;
            font-size: 12px;
            color: #999999;
        }

.footer_social a {
    display: inline-block;
    width: 18px;
    height: 18px;
    margin-right: 15px;
}

    .footer_social a:hover {
        opacity: 0.5;
    }


footer .footer_payment_methods {
    position: absolute;
    bottom: 40px;
    right: 20px;
    width: 228px;
    height: 40px;
}

footer .footer_col_1,
footer .footer_col_2,
footer .footer_col_3 {
    width: 33%;
    float: left;
}

footer p,
footer ul li {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 8px;
}

    footer p a,
    footer p a:link,
    footer p span {
        text-decoration: none;
        color: #818181;
    }

        footer p a:hover,
        footer p a:link:hover {
            color: #191919;
        }

    footer p i {
        width: 20px;
        text-align: center;
        color: #1C5633;
    }

    footer p span {
        display: block;
        margin-top: 3em;
        line-height: 2;
        padding-left: 15px;
    }

        footer p span i {
            margin-left: -20px;
        }

/*************************************************************************************
**************************************************************************************
********************************** NOTIFICATIONS *************************************
**************************************************************************************
*************************************************************************************/


.notifications {
    width: 90%;
    margin-left: 5%;
    position: fixed;
    bottom: -500px;
    left: 0;
    z-index: 300;
    overflow: hidden;
    transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -webkit-transition: all .5s ease-in-out;
    padding: 0;
}

.product_detail_notification {
    width: 100%;
    margin: 0;
}

.notifications.visible {
    bottom: 30px;
}

.product_detail_notification.visible {
    bottom: 0;
}

.added_to_cart_notification {
    width: 100%;
    background-color: #c4d1c9;
    padding: 30px;
    position: relative;
    bottom: 0;
    border-radius: 5px;
    border: 1px solid #1c5633;
}

    .added_to_cart_notification p {
        display: inline;
    }

.added_to_cart_product_header,
.added_to_cart_product_name {
    font-weight: 700;
}

.close_notification,
.close_popup {
    position: absolute;
    top: 15px;
    right: 10px;
    z-index: 101;
    width: 50px;
    height: 50px;
    text-align: center;
    cursor: pointer;
}


    .close_notification i,
    .close_popup i {
        font-size: 22px;
        color: #1C5633;
    }

.added_to_cart_notification .button.view_cart {
    position: absolute;
    top: 26px;
    right: 70px;
}

.added_to_cart_text {
    padding-right: 200px;
}

.product_description .product_special_instructions button.add_instructions {
    top: -135px;
    right: 0;
    left: auto;
}

.product_description .product_special_instructions button.remove_instructions {
    top: 5px;
}

.my_account_inner h3 {
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.change_password {
    max-width: 300px;
    padding: 10px;
}

    .change_password input {
        margin-bottom: 10px;
    }

.order_list {
    padding: 10px;
}

.one_order {
    background-color: #f9f9f9;
    padding: 20px;
    border: 1px solid #DDDDDD;
    position: relative;
    \margin-bottom: 20px;
}

.my_account_inner {
    margin-right: 20px;
}


.button.view_past_order {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: #c4d1c9;
    border: 2px solid #c4d1c9;
    color: #1C5633;
}

    .button.view_past_order:hover {
        color: #191919;
        background-color: #c4d1c9;
        border: 2px solid #c4d1c9;
    }

#scroll_top {
    position: fixed;
    width: 60px;
    height: 60px;
    z-index: 100;
    border: 3px solid #c4d1c9;
    border-radius: 60px;
    bottom: 30px;
    right: 30px;
    text-align: center;
    cursor: pointer;
    opacity: 0;
    transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    bottom: -100px;
}

    #scroll_top.visible {
        opacity: 1;
        bottom: 30px;
    }

    #scroll_top i {
        font-size: 22px;
        font-weight: 700;
        color: #c4d1c9;
    }

    #scroll_top:hover {
        background-color: #c4d1c9;
    }

        #scroll_top:hover i {
            color: #1C5633;
        }


/* Contact page */

.contact_coordinates {
    width: 300px;
    float: left;
    width: 33%;
    margin: 10px 0;
}

.contact_form {
    display: inline-block;
    float: right;
    width: 66%;
    margin: 10px 0 30px 0;
}

    .contact_form h5,
    .contact_coordinates h5 {
        padding: 0 0 30px 10px;
    }

.contact_coordinates p {
    padding-left: 10px;
}

.contact_form {
    margin-bottom: 30px;
}

    .contact_form div {
        padding: 10px;
        float: none;
    }

    .contact_form .col_50 {
        width: 50%;
        float: left;
        padding: 10px;
    }

.col_100 {
    width: 100%;
    float: none;
}

.col_66 {
    width: 66.66%;
    float: left;
}

.col_50 {
    width: 50%;
    float: left;
}

.col_33 {
    width: 33.33%;
    float: left;
}

.col_25 {
    width: 25%;
    float: left;
}

.contact_coordinates p,
.contact_coordinates p {
    line-height: 1.5;
    margin-bottom: 20px;
    color: #818181;
    padding-left: 30px;
}

    .contact_coordinates p a {
        text-decoration: none;
    }

    .contact_coordinates p i {
        width: 20px;
        text-align: center;
        color: #1C5633;
        margin-left: -20px;
    }

.contact_intro {
    text-align: center;
    margin: 0 auto 30px auto;
    background-color: #F9F9F9;
    padding: 45px 30px 30px 30px;
}

    .contact_intro p {
        margin-bottom: 15px;
    }

.sort_by {
    display: inline-block;
    width: 100%;
    margin: 0 auto;
    position: absolute;
    top: -3px;
    right: 0;
    width: 150px;
}

    .sort_by select {
        font-size: 12px;
        height: 30px;
        float: right;
        padding-left: 10px !important;
    }

/* Loading Overlay */

.loading_overlay {
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.85);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 200;
    transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    display: none;
    visibility: hidden;
    opacity: 0;
}

    .loading_overlay.active_loading {
        display: block;
        visibility: visible;
        opacity: 1;
    }

    .loading_overlay img {
        width: 43px;
        height: 11px;
        position: absolute;
        top: 50%;
        left: 50%;
        margin: -5px 0 0 -22px;
    }


@media only screen and (min-width: 1500px) {
    .header_inner {
        left: 12px;
    }

    .notifications {
        max-width: 1500px;
        left: 50%;
        margin-left: -750px;
    }

    #logo_desktop {
        left: calc((100% - 1470px) / 2) !important;
    }

    #header_top_alert p.log_out {
        margin-right: -15px;
    }

    .header_top_inner {
        padding: 6px 15px 5px 15px;
    }
}

@media only screen and (max-width: 1200px) {

    .one_product {
        width: 31%;
    }

    .category_mosaic table tr td table tr td {
        border-bottom: 16px solid #FFFFFF !important;
    }

    .product_detail_inner,
    .cart_inner {
        max-width: 1000px;
    }

    .product_images_slider {
        margin-left: 0;
    }

    .slider_nav_wrap {
        width: 100%;
        position: relative;
        top: auto;
        padding: 0 38px;
    }

    .product_images,
    .product_images:hover,
    .one_image_only .product_images:hover {
        width: 440px !important;
    }

    .product_description,
    .one_image_only .product_description {
        width: 55%;
    }


    .slick-slide img {
        width: 100% !important;
    }

    .product_images_slider .slick-slide {
        cursor: auto;
        max-height: 430px !important;
    }

    .slider_nav_wrap .slick-prev,
    .slider_nav_wrap .slick-next {
        opacity: 1;
        color: #191919;
        width: 30px;
        height: 70px;
    }

    .slider_nav_wrap .slick-prev {
        left: -31px;
        opacity: 0.1;
    }

    .slider_nav_wrap .slick-next {
        left: auto;
        right: -31px;
        opacity: 0.1;
    }

        .slider_nav_wrap .slick-prev::after,
        .slider_nav_wrap .slick-next::after {
            color: #191919;
        }

        .slider_nav_wrap .slick-prev:hover,
        .slider_nav_wrap .slick-next:hover {
            opacity: 1;
            background-color: rgba(0,0,0,0.02);
        }

    .product_detail_inner {
        min-height: 540px;
        max-height: 540px;
    }

    .one_image_only .product_detail_inner {
        min-height: 520px;
        max-height: 520px;
        margin-top: -260px;
    }

    .product_images_slider .slick-list {
        overflow: hidden;
    }

    .slider_nav_wrap {
        display: none !important;
        visibility: hidden !important;
    }

    .slick-dotted.slick-slider {
        margin-bottom: 0;
    }

    .cart_summary, .cart_place_order, .cart_inner .special_instructions {
        width: 300px;
    }

    .product_list_cart {
        padding-left: 380px;
    }

    .one_product_cart .product_name {
        padding-right: 180px;
    }

    .hero_slider {
        margin-bottom: 20px !important;
    }

    .product_images {
        overflow: visible;
    }


        .product_images .add_to_favourites,
        .one_image_only .product_images .add_to_favourites {
            right: auto;
            left: 390px;
        }
}



@media only screen and (max-width: 1000px) {

    .product_images {
        max-width: 460px;
    }

    .product_images_slider .slick-slide img {
        max-height: none !important;
        width: 99% !important;
    }

    #side_menu {
        float: none;
        width: 100%;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 20;
        background-color: #FFFFFF;
        /*opacity: 0;*/
        height: 0;
        overflow: hidden;
        -webkit-transition: height .3s linear, padding-top .3s linear, padding-bottom .3s linear;
        -moz-transition: height .3s linear, padding-top .3s linear, padding-bottom .3s linear;
        transition: height .3s linear, padding-top .3s linear, padding-bottom .3s linear;
    }

    #main_nav {
        padding: 15px 15px 30px 15px;
    }

    #content {
        padding: 15px;
        margin-top: 90px;
    }

    header {
        height: 65px;
    }

    #logo_desktop {
        display: none;
    }

    #logo_mobile {
        display: block;
    }

    #search {
        width: 100%;
        background-color: #f9f9f9;
        right: auto;
        left: 0;
        top: 30px;
        padding: 0 20px;
        height: 0;
        overflow: hidden;
        box-shadow: inset 0px 5px 5px -5px rgba(0,0,0,0.1);
        -moz-box-shadow: inset 0px 5px 5px -5px rgba(0,0,0,0.1);
        -webkit-box-shadow: inset 0px 5px 5px -5px rgba(0,0,0,0.1);
        -webkit-transition: height .3s linear, padding-top .3s linear, padding-bottom .3s linear;
        -moz-transition: height .3s linear, padding-top .3s linear, padding-bottom .3s linear;
        transition: height .3s linear, padding-top .3s linear, padding-bottom .3s linear;
    }

        #search #submit_search {
            position: relative;
            top: -45px;
            right: auto;
            left: auto;
            float: right;
        }

        #search #search_input {
            background-color: #FFFFFF;
        }

    #header_right .mobile_search_button {
        display: inline-block;
        margin-right: 5px;
    }

    body.mobile_search_active #search {
        height: 85px;
        padding: 20px;
    }

    #header_right {
        top: 15px;
        right: 2px;
    }

        #header_right a {
            margin-left: 0;
            width: 35px;
            height: 35px;
        }

            #header_right a i {
                font-size: 16px;
                line-height: 15px;
            }

        #header_right .my_account_desktop,
        #header_right .favourites_desktop {
            display: none;
        }

    body.mobile_menu_active #side_menu {
        height: 100%;
        opacity: 1;
        overflow-y: scroll;
    }

    body.mobile_menu_active {
        overflow: hidden;
    }

        body.mobile_menu_active .mobile_menu_button::after {
            content: '\f00d';
        }

    body.mobile_search_active.mobile_menu_active #side_menu {
        padding-top: 85px;
    }

    body.mobile_search_active #header_right .mobile_search_button i {
        color: #1C5633;
    }

    #side_menu .sidebar__inner {
        padding: 80px 5px 0 5px;
    }

    .mobile_menu_button {
        display: block;
    }

    #main_nav {
        padding-bottom: 0;
    }

    .my_account_mobile {
        display: block;
    }

    .product_detail_inner,
    .cart_inner {
        width: 100%;
    }

    .product_detail_inner {
        padding: 90px 0 0 0;
    }

    .cart_summary,
    .cart_place_order,
    .cart_inner .special_instructions {
        position: static;
        width: 100%;
        padding: 0 20px 20px 20px;
        left: auto;
        right: auto;
        top: auto;
    }

    .product_list_cart {
        padding: 80px 20px 0 20px;
        height: auto;
        overflow: hidden;
    }

    .cart_inner {
        overflow-y: scroll;
        min-height: 0;
        margin-top: 90px;
        margin-bottom: 0;
        max-height: 100%;
        padding-bottom: 40px;
    }

        .cart_inner .close_popup {
            position: fixed;
            top: 90px;
            right: 0px;
        }

    .cart_title_mobile,
    .product_title_mobile {
        display: block;
    }

    .cart_summary h3 {
        display: none;
    }

    .one_product_cart:last-child {
        margin-bottom: 0;
    }

    .cart_place_order {
        margin-bottom: 75px;
        text-align: center;
    }

    .product_detail_inner,
    .one_image_only .product_detail_inner {
        max-height: 100%;
        height: 100%;
        min-height: 100%;
        margin: 90px 0 0 0;
        padding-top: 55px;
        top: 0;
    }

    .product_images, .product_images:hover,
    .one_image_only .product_images:hover {
        width: 100% !important;
        position: relative;
    }

    .cart_inner {
        top: 0;
        transform: none;
        -moz-transform: none;
        -webkit-transform: none;
    }

    .product_images_slider {
        max-width: 100% !important;
    }

    .product_images {
        position: relative;
        margin: 0 auto;
        left: auto;
        top: auto;
        overflow: visible;
    }

    .product_description, .one_image_only .product_description {
        width: 100%;
        z-index: 1;
        margin: 0 auto;
        float: none;
        clear: both;
        padding: 20px 20px 120px 20px;
        max-width: 480px;
    }

    #product_detail_popup .product_instructions_text.note_added {
        margin-bottom: 0;
    }

    .image_zoom_focusout {
        display: none !important;
        visibility: hidden !important;
        z-index: -100;
        width: 0 !important;
        height: 0 !important;
    }

    .slider_nav_wrap {
        margin: 0 -30px;
        width: auto;
    }

    #product_detail_popup .product_instructions_text {
        padding-bottom: 20px;
    }

    #product_detail_popup .close_popup {
        position: fixed;
        top: 90px;
        right: 0;
        background-color: #FFFFFF;
    }

    .slider_nav_wrap .slick-prev, .slider_nav_wrap .slick-next {
        height: 82px;
    }

    .product_title_mobile .product_name {
        -webkit-line-clamp: 1;
        padding-right: 30px;
        height: 1.5em;
    }

    .page_title_inner h1 {
        font-size: 40px;
    }

    .product_images_slider .slick-prev,
    .product_images_slider .slick-next {
        right: 0;
        left: -10px;
        top: 0;
        height: 100%;
        opacity: 1;
    }

        .product_images_slider .slick-prev::after,
        .product_images_slider .slick-next::after {
            color: #DDDDDD;
            transition: color .3s ease-in-out;
            -moz-transition: color .3s ease-in-out;
            -webkit-transition: color .3s ease-in-out;
        }

        .product_images_slider .slick-prev:hover::after,
        .product_images_slider .slick-next:hover::after {
            color: #191919;
        }

    .product_images_slider .slick-next {
        left: auto;
        right: -10px;
    }

    body.active_top_alert #content {
        margin-top: 90px;
    }

    .add_to_cart {
        width: 35px;
        height: 35px;
    }

    .product_detail_inner_wrap {
        padding: 30px 0 0 0;
    }

    .header_top_inner {
        padding: 6px 15px 5px 15px;
    }

    .one_image_only .slick-track,
    .one_image_only .slick-slider .slick-track,
    .one_image_only .slick-slider .slick-list {
        transform: none !important;
        padding: 0 !important;
        max-width: 470px;
        margin: 0 auto;
    }

    .one_image_only .slick-slide {
        margin: 10px 20px !important;
    }

    .product_images .add_to_favourites,
    .one_image_only .product_images .add_to_favourites {
        right: 4px;
        left: auto;
        top: -30px;
    }

    .product_description {
        padding: 40px 20px 100px 20px;
    }

    #header_right a.cart_icon_header span.cart_qty {
        margin-right: 0;
    }
}

@media only screen and (max-width: 800px) {

    .product_filters .accordion_section {
        width: 23.3%;
    }

    footer .footer_col_1 {
        width: 100%;
        float: none;
        clear: both;
        position: relative;
        margin-bottom: 40px;
    }

        footer .footer_col_1 p {
            width: 45%;
        }

            footer .footer_col_1 p:last-child {
                position: absolute;
                top: 0;
                left: 50%;
                margin-left: -15px;
            }

    footer .footer_col_2,
    footer .footer_col_3 {
        width: 50%;
    }

    footer p span {
        margin-top: 35px;
    }

    .product_images_slider .slick-prev, .product_images_slider .slick-next {
        display: none !important;
    }

    .added_to_cart_notification .button.view_cart {
        position: relative;
        top: 0;
        left: 0;
        right: auto;
        margin-top: 15px
    }

    .added_to_cart_notification {
        padding: 15px 20px 20px 20px;
    }

    .added_to_cart_text {
        padding-right: 40px;
    }

    .close_notification {
        top: 0;
        right: 0;
    }

    .contact_coordinates,
    .contact_form {
        float: none;
        display: block;
        width: 100%;
        margin: 40px 0;
    }
}

@media only screen and (max-width: 600px) {
    .newarrival_img {
        width: auto;
        height: 100%;
    }

    .add_to_favourites i {
        font-size: 15px;
    }

    .one_product_cart .cart_edit_item_qty {
        position: relative;
        top: 0;
        left: 0;
        float: none;
        width: auto;
        text-align: center;
        margin: 0;
        background-color: #F9F9F9;
        padding: 0;
        float: none;
        clear: both;
        margin: 0 -20px;
    }

    .item_quantity_minus,
    .item_quantity_plus, .item_quantity {
        display: inline-block;
        float: none;
        clear: both;
    }

    .one_product_cart .product_name {
        padding-right: 0;
    }

    .product_list_cart {
        padding: 0;
        padding-top: 85px;
    }

    .one_product_cart {
        padding: 0 20px;
    }

        .one_product_cart .product_header span {
            position: absolute;
            top: 76px;
            right: 20px;
            left: auto;
            z-index: 10;
        }

    .product_details_cart img {
        width: 90px;
    }

    .one_product_cart .product_header,
    .product_price {
        font-size: 13px;
    }

    .one_product_cart .product_name {
        font-size: 12px;
    }

    button.product_instructions_button {
        left: 105px;
    }

    .item_quantity_minus, .item_quantity_plus {
        width: 30px !important;
        height: 30px !important;
        line-height: 22px;
    }

    .cart_total, .cart_price {
        font-size: 18px;
    }

    input.item_quantity {
        font-size: 18px !important;
    }

    .product_description {
        width: 100%;
        padding: 10px 20px 100px 20px;
        margin-top: 40px;
    }

        .product_description h2 {
            font-size: 20px;
        }

    p {
        font-size: 14px;
    }

    .product_description .cart_edit_item_qty {
        margin-top: -15px;
        float: none;
        clear: both;
    }

    .product_description .product_special_instructions button.add_instructions {
        top: -185px;
    }

    button.add_size_button {
        top: 5px;
        right: auto;
        left: 0;
    }

        button.add_size_button i {
            float: left;
            margin-right: 5px;
        }

    .add_another_size {
        height: 20px;
    }

    .add_to_cart_product, .add_to_cart_product button {
        float: none;
        width: 100%;
    }

    .product_description .cart_edit_item_qty {
        margin: 0 auto 20px auto;
        background-color: #f9f9f9;
        text-align: center;
        padding-top: 4px;
    }

    .product_description hr {
        margin: 0 0 20px 0 !important;
    }

    .hero_slider_text {
        width: 80%;
    }

    .hero_slider .slick-slide {
        min-height: 300px !important;
    }

    #about_hp, #about_hp_2 {
        padding: 40px 20px;
    }

    #about_hp_2 {
        padding: 40px 30px;
    }

    #about_hp h2 {
        font-size: 25px;
    }

    .title_with_line h3 {
        font-size: 18px;
        line-height: 22px;
        padding-top: 10px;
        letter-spacing: 3px;
    }

    .title_with_line::after {
        display: none;
    }

    table.category_mosaic_table,
    table.category_mosaic_table_2,
    table.category_mosaic_table tr td table {
        margin: 0 auto !important;
        width: 100%;
    }


    .category_mosaic table tr td table tr td,
    .category_mosaic table tr td table tr td:first-child {
        border: none !important;
    }

    .category_mosaic table tr td {
        display: block;
        width: 100%;
        max-width: 400px;
        margin: 10px auto;
        border: none !important;
        padding: 0 !important;
    }

        .category_mosaic table tr td table tr td {
            margin: 10px auto;
        }

            .category_mosaic table tr td table tr td:first-child {
                margin-top: 0;
            }

        .category_mosaic table tr td table tr:last-child td:last-child {
            margin-bottom: 0;
        }

    .category_mosaic_table_2 tr td:first-child {
        margin-top: 0;
    }

    .cat_mosaic {
        height: 190px;
        width: 100%;
        background-color: #f2f2f2;
    }

        .cat_mosaic a img {
            position: absolute;
            top: 50% !important;
            transform: translateY(-50%) !important;
        }

    .one_product {
        width: 46%;
        margin: 2%;
    }

        .one_product .product_header,
        .one_product .product_name {
            font-size: 13px;
        }

    .hero_slider_text h2 {
        font-size: 50px;
    }

    .product_filters .accordion_section {
        width: 31.5%;
    }

    .page_title_inner h1 {
        font-size: 35px;
    }

    .swatches {
        padding-right: 0;
    }

    #scroll_top {
        width: 50px;
        height: 50px;
        border-radius: 40px;
        bottom: 20px;
        right: 20px;
        bottom: -100px;
    }

        #scroll_top i {
            font-size: 18px;
        }

        #scroll_top.visible {
            opacity: 1;
            bottom: 20px;
        }

    .contact_form .col_50,
    .col_50 {
        float: none;
        width: 100%;
    }

    .promotion_badge {
        top: 5px;
        left: 5px;
        padding: 3px 6px 3px 6px;
        font-size: 8px;
        letter-spacing: 1px;
        border-radius: 3px;
        -moz-border-radius: 3px;
        -webkit-border-radius: 3px;
    }

    .col_66, .col_33 {
        width: 100%;
        float: none;
    }

    #searchTags {
        width: 100%;
        display: block;
        padding-right: 0;
    }
}



@media only screen and (max-width: 500px) {

    .product_list {
        margin-right: 0;
    }

    .hero_slider_text h2 {
        font-size: 40px;
    }

    .product_list {
        margin-right: 0;
    }

    .page_title {
        margin-right: 0;
    }

    .product_filters .accordion_section {
        width: 48.3%;
    }

    .page_title_inner h1 {
        font-size: 30px;
    }

    footer .footer_col_1,
    footer .footer_col_2,
    footer .footer_col_3 {
        width: 100%;
        margin-bottom: 40px;
    }

    footer .footer_col_3 {
        margin-bottom: 0;
    }

    footer .footer_col_1 p {
        width: 100%;
    }

        footer .footer_col_1 p:last-child {
            position: relative;
            top: auto;
            left: auto;
            margin-left: 0;
        }

    footer p span {
        margin-top: 25px;
    }

    .button.view_past_order {
        position: relative;
        top: auto;
        left: 0;
        margin-top: 20px;
    }

    #clearance_hp {
        margin-right: -3% !important;
    }
}

@media only screen and (max-width: 370px) {

    #clearance_hp {
        margin-right: 0 !important;
    }

    .one_product {
        width: 100%;
        max-width: 400px;
        margin: 0 auto 20px auto;
        float: none;
        display: block;
    }

    .product_image {
        width: 80%;
        padding-bottom: 80%;
        margin-left: 10%;
    }
}

@media only screen and (max-width: 340px) {
    .one_product_cart {
        padding: 0 10px;
    }

        .one_product_cart .product_header span {
            right: 10px;
        }

    /*  .product_description{
        width: 280px;
    }*/

    .product_image {
        width: 90%;
        padding-bottom: 90%;
        margin-left: 5%;
    }
}



/*************************************************************************************
**************************************************************************************
************************************ LOG IN PAGE *************************************
**************************************************************************************
*************************************************************************************/


#login_page {
    padding-top: 0;
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
}

    #login_page p {
        color: #818181;
    }

        #login_page p b {
            color: #1C5633;
        }

#login_form {
    width: 400px;
    margin: 0 auto;
    box-shadow: 0 0 6px rgba(0,0,0,0.18);
    -moz-box-shadow: 0 0 6px rgba(0,0,0,0.18);
    -webkit-box-shadow: 0 0 6px rgba(0,0,0,0.18);
    padding: 35px 30px 5px 30px;
}

#login_page.register {
    position: relative;
    margin-top: 80px;
    transform: none;
    top: 0 !important;
}

.register #login_form {
    width: 650px;
    text-align: center;
}

.register h5 {
    margin: 20px auto;
    clear: both;
    float: none;
    display: inline-block;
    width: 100%;
}

.register form {
    padding-bottom: 40px;
}

    .register form div {
        padding: 0 5px;
    }

#login_form img {
    width: 200px;
    margin: 0 auto 30px auto;
}

#login_form input {
    margin: 0 0 10px 0;
    border-radius: 5px;
}

#login_form .login_button {
    display: block;
    width: 100%;
    margin: 10px auto 0 auto;
    padding-right: 20px;
    max-width: 340px;
}

    #login_form .login_button i {
        margin-left: 10px;
        font-size: 12px;
    }

#login_form .forgot_password {
    text-align: center;
    margin: 20px auto;
    font-size: 12px;
    display: block;
    width: 110px;
    text-decoration: underline;
}

.register_account {
    text-align: center;
    width: 400px;
    margin: 0 auto;
    padding: 20px 30px;
}

    .register_account h3 {
        font-weight: 700;
    }

    .register_account .button {
        margin-top: 20px;
        width: 100%;
    }

.login_contact_info {
    max-width: 850px;
    margin: 0 auto;
    padding: 0 30px;
    text-align: center;
}

    .login_contact_info p {
        display: inline-block;
        padding: 5px 10px;
        margin: 0;
    }

        .login_contact_info p i {
            margin-right: 3px;
            color: #1C5633;
        }

        .login_contact_info p a,
        .login_contact_info p span {
            text-decoration: none;
            color: #818181;
        }

    .login_contact_info h4 {
        font-weight: 700;
        margin-top: 20px;
        margin-bottom: 20px;
    }

.login_page_wrap {
    min-height: 100%;
}

#global_wrapper.login_page_wrap {
    height: auto;
    padding-bottom: 80px;
}

.login_footer {
    height: 50px;
    width: 100%;
    text-align: center;
    border-top: 1px solid #DDDDDD;
    position: relative;
    padding-top: 12px;
    z-index: 50;
    font-size: 12px;
    color: #818181;
    margin-top: 40px;
}

    .login_footer p {
        font-size: 14px;
    }

    .login_footer p {
        margin-bottom: 0;
    }

@media only screen and (max-width: 800px) {
    #login_page {
        position: relative;
        top: 60px;
        transform: none;
    }

    .register #login_form {
        width: 90%;
    }

    #login_page.register {
        margin-top: 30px;
    }
}

@media only screen and (max-width: 420px) {
    #login_form, .register_account {
        width: 300px;
    }

    #login_form {
        padding-left: 20px;
        padding-right: 20px;
    }
}

.product_images_slider_nav .slick-list {
    height: 100% !important;
    max-height: 430px;
}

@media only screen and (min-width: 1000px) {
    .product_images_slider .slick-track {
        min-width: 460px;
    }
}

@media only screen and (min-width: 1200px) {
    .product_images_slider .slick-track {
        min-width: 480px;
    }
}



@media only screen and (max-width: 999px) {
    .product_images_slider .slick-track {
        min-width: 100%;
    }
}

@media only screen and (max-width: 1000px) {
    .product_images_slider .slick-slide {
        max-height: none !important;
    }
}

.product_images_slider .slick-slide {
    margin: 0;
    padding: 0;
}

    .product_images_slider .slick-slide img {
        box-shadow: 0 0 6px rgba(0,0,0,0.12);
        -moz-box-shadow: 0 0 6px rgba(0,0,0,0.12);
        -webkit-box-shadow: 0 0 6px rgba(0,0,0,0.12);
        /*        margin-top: 50% !important;
        transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -webkit-transform: translateY(-50%);*/
    }

.one_image_only .product_images_slider .slick-slide img {
    max-width: 99%;
    margin-top: 50% !important;
    transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
}

.hide {
    display: none !important;
}

.js-image-zoom__zoomed-area {
    background-color: white;
}
[v-cloak] {
    display: none;
}
