/*! normalize.css v4.1.1 | MIT License | github.com/necolas/normalize.css */progress,sub,sup{vertical-align:baseline}button,hr,input{overflow:visible}[type=checkbox],[type=radio],legend{box-sizing:border-box;padding:0}html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent;-webkit-text-decoration-skip:objects}a:active,a:hover{outline-width:0}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:bolder}dfn{font-style:italic}h1{font-size:2em;margin:.67em 0}mark{background-color:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}svg:not(:root){overflow:hidden}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}figure{margin:1em 40px}hr{box-sizing:content-box;height:0}button,input,select,textarea{font:inherit;margin:0}optgroup{font-weight:700}button,select{text-transform:none}[type=reset],[type=submit],button,html [type=button]{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:ButtonText dotted 1px}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}legend{color:inherit;display:table;max-width:100%;white-space:normal}textarea{overflow:auto}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-cancel-button,[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-input-placeholder{color:inherit;opacity:.54}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}

/* ====================================================================================================================== 
    	INFORMATION
=========================================================================================================================

Your design must allow for customisable colours. It is best to decide these colours at the start.
Your design must allow for a background (selected by the user) and it must also fall back to a colour gradient background. 
Your design must allow for a customisable font.

Feel free to use the example(s) below.

Example colour set:
#FFFFFF
#FFFFFF

======================================================================================================================= */
	
body
{
    font-family:Oswald, Helvetica, Arial, sans;
  
    /* Safari 4-5, Chrome 1-9 */
    background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#FFFFFF), to(#FFFFFF));

    /* Safari 5.1, Chrome 10+ */
    background: -webkit-linear-gradient(top, #FFFFFF, #FFFFFF);

    /* Firefox 3.6+ */
    background: -moz-linear-gradient(top, #FFFFFF, #FFFFFF);

    /* IE 10 */
    background: -ms-linear-gradient(top, #FFFFFF, #FFFFFF);

    /* Opera 11.10+ */
    background: -o-linear-gradient(top, #FFFFFF, #FFFFFF);
			
	background: ;    
	-webkit-background-size:;
	-moz-background-size:;
	-o-background-size:;
	background-size:;
    
    color: #292929;
    font-size: 14px;
    line-height: 1.5em;
    letter-spacing: 1px;
}

body.body_active{
    overflow: hidden !important;
}

input, textarea{
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-appearance: none;
    -webkit-border-radius:0px;
    border-radius: 0;
}

h1{
    font-weight: 600;
}

a{
    color: #292929;
    font-weight: 600;
    text-decoration: none;
}

a:hover{
    color: #433737;
}

img{
    height: auto;
    max-width: 100%;
}

#overlay{
    position: fixed;
    opacity: 0;
    display: none;
    top: 0; right: 0; left: 0; bottom: 0;
    z-index: 49;
    background-color: rgba(255,255,255,0.8);
}

#overlay.overlay_active{
    display: block;
    opacity: 1;
}

@media only screen and (min-width:900px){
    #overlay{
        display: none !important;
    }
}


/* ============================== */
/* Search ======================= */
/* ============================== */

#search_overlay{
    position: fixed;
    opacity: 0;
    display: none;
    top: 0; right: 0; left: 0; bottom: 0;
    z-index: 49;
    background-color: rgba(255,255,255,0.8);
}

#search_overlay.search_overlay_active{
    display: block;
    opacity: 1;
}

#search_container{
    display: none;
    position: fixed;
    z-index: 50;
    top: 50%;
    transform: translateY(-50%);
    left: 0; right: 0;
    width: 100%;
    max-width: 300px;
    flex-wrap: nowrap;
    justify-content: space-between;
    margin: 0 auto;
    border: 2px solid #dddddd;
    background-color: #FFFFFF;
}

#search_container.search_container_active{
    display: block;
}

#search{
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
}

#txtQuickSearch{
    background-color: #FFFFFF;
    border: none;
    height: 50px;
    outline: none !important;
    width: calc(100% - 50px);
    padding: 0 0px 0 10px;
}

#txtQuickSearch_button{
    background-color: #FFFFFF;
    border: none;
    outline: none !important;
    height: 52px;
    text-transform: uppercase;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    width: 50px;
    height: 50px;
    line-height: 50px;
}

#txtQuickSearch_button:hover{
    color: #433737;
}

/* ============================== */
/* Mobile Nav =================== */
/* ============================== */

#mobile_menu{
    background-color: #FFFFFF;
    width: 90%;
    max-width: 300px;
    position: fixed;
    z-index: 50;
    top: 0; right: -100%; bottom: 0;
    padding-top: 36px;
    box-shadow: 0 0 5px rgba(0,0,0,0.3);
    transition: 0.4s;
    overflow-y: auto;
}

#mobile_menu.mobile_menu_active{
    right: 0;
}

@media only screen and (min-width:900px){
    #mobile_menu{
        right: -100% !important;
    }    
}

.mobile_menu_inner{
    padding: 20px;
}

/* Pages */

.mobile_menu_inner .nav_pages{
    margin-bottom: 10px;
}

.mobile_menu_inner .nav_pages_main, .mobile_menu_inner .nav_pages_subs_main{
    display: flex;
    justify-content: space-between;
}

.mobile_menu_inner .nav_pages_main .nav_pages_main_text, .mobile_menu_inner .nav_pages_subs_main_text{
    width: calc(100% - 30px);
    line-height: 30px;
    font-weight: 600;
    cursor: pointer;
}

.mobile_menu_inner .nav_pages_main_text:hover, .mobile_menu_inner .nav_pages_subs_main_text:hover,
.mobile_menu_inner .nav_pages_main_toggle:hover, .mobile_menu_inner .nav_pages_subs_main_toggle:hover{
    color: #433737;
}

.mobile_menu_inner .nav_pages_main_toggle, .mobile_menu_inner .nav_pages_subs_main_toggle{
    width: 30px;
    text-align: center;
    line-height: 30px;
    color: #929292;
    cursor: pointer;
    font-size: 1.4rem;
    font-weight: 200;
}

.mobile_menu_inner .nav_pages_main_toggle{
    text-indent: 5px;
}

.mobile_menu_inner .nav_pages_inner{
    display: none;
    margin-top: 10px;
}

.mobile_menu_inner .nav_pages_subs_inner{
    display: none;
    padding-left: 20px;
}

.mobile_menu_inner .nav_pages_inner a, .mobile_menu_inner .nav_pages_subs_inner a{
    line-height: 30px;
    padding-left: 30px;
    font-weight: normal;
    display: block;
    font-size: 0.8rem;
    color: #929292;
}

.mobile_menu_inner .nav_pages_inner a:hover, .mobile_menu_inner .nav_pages_subs_inner a:hover{
    color: #433737;
}

.mobile_menu_inner #nav_pages_tabs .nav_pages_inner a:first-child{
    display: none !important;
}


/* Currency & Language */

#mobile_menu .currency_header,
#mobile_menu .language_header{
    margin-top: 50px;
    display: flex;
    line-height: 30px;
    justify-content: space-between;
}

#mobile_menu .language_header{
    margin-top: 20px;
}

#mobile_menu .currency_toggle,
#mobile_menu .language_toggle{
    width: 30px;
    text-align: center;
    color: #929292;
    cursor: pointer;
    font-size: 1.4rem;
    font-weight: 200;
    text-indent: 5px;
    cursor: pointer;
}

#mobile_menu .currency_toggle:hover,
#mobile_menu .language_toggle:hover{
    color: #433737;
}

#mobile_menu .currency_inner_container,
#mobile_menu .language_inner_container{
    display: none;
}

#mobile_menu .currency_inner,
#mobile_menu .language_inner{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    text-align: center;
}

#mobile_menu .language_inner{
    text-align: left;
}

#mobile_menu .currency_item,
#mobile_menu .language_item{
    color: #929292;
    font-size: 0.8rem;
    width: 33.33%;
    margin-top: 10px;
    cursor: pointer;
}

#mobile_menu .language_item{
    width: 45%;
}

#mobile_menu .currency_item:hover,
#mobile_menu .language_item:hover{
    color: #433737;    
}

/* Contact */

#mobile_nav_contact{
    margin-top: 50px;
}

.mobile_nav_contact_item{
    font-size: 0.8rem;
    display: flex;
    font-weight: normal;
}

.mobile_nav_contact_item i{
    width: 20px;
    line-height: 30px;
}

.mobile_nav_contact_item a{
    font-weight: normal;
    line-height: 30px;
}

.mobile_nav_contact_item:hover a{
    color: #433737;
}

/* Social Media */

.social_media{
    display: flex;
    flex-wrap: wrap;
    margin-top: 10px;
}

.social_media a{
    color: #929292;
    font-weight: normal;
    width: 30px;
    margin-bottom: 15px;
}

#social_media_youtube i:hover{
    color: #c4302b;
}

#social_media_blogger i:hover{
    color: #ff8000;
}

#social_media_facebook i:hover{
    color: #43609C;
}

#social_media_twitter i:hover{
    color: #2EA2CB;
}

#social_media_google i:hover{
    color: #DF4B38;
}

#social_media_pinterest i:hover{
    color: #CD2129;
}

#social_media_instagram i:hover{
    color: #295F84;
}

#social_media_vimeo i:hover{
    color: #35B3DA;
}

#social_media_wordpress i:hover{
    color: #21759B;
}

#social_media_skype i:hover{
    color: #00ACED;
}

#social_media_linkedin i:hover{
    color: #0075AF;
}

#social_media_tumblr i:hover{
    color: #2A475F;
}




/* ============================== */
/* Main ========================= */
/* ============================== */

main.header2_scrolled{
    margin-top: 90px;
}

.container{
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    transition: 0.4s;
}

@media only screen and (min-width:600px){
    .container{ max-width: 500px; }
}

@media only screen and (min-width:800px){
    .container{ max-width: 600px; }
}

@media only screen and (min-width:900px){
    .container{ max-width: 850px; }
}

@media only screen and (min-width:1100px){
    .container{ max-width: 1000px; }
}


@media only screen and (min-width:1400px){
    .container{ max-width: 1200px; }
}

#header1{
    display: none;
}

@media only screen and (min-width:900px){
    #header1{
        display: flex;
        flex-wrap: nowrap;
        justify-content: space-between;
        line-height: 50px;
        border-bottom: 1px solid #dddddd;
        color: #929292;
    }
    
    #header1a{
        display: flex;
        flex-wrap: nowrap;
    }
    
    #header1a .currency,
    #header1a .language{
        position: relative;
    }
    
    #header1a .language{
        margin-left: 30px;
    }
    
    #header1a .currency_header,
    #header1a .language_header{
        display: flex;
        flex-wrap: nowrap;
        cursor: pointer;
        font-size: 0.8rem;
        text-transform: uppercase;
    }
    
    #header1a .currency_toggle,
    #header1a .language_toggle{
        margin-left: 5px;
    }
    
    #header1a .currency_toggle i,
    #header1a .language_toggle i{
        font-size: 0.7rem;
    }
    
    #header1a .currency_inner_container,
    #header1a .language_inner_container{
        position: absolute;
        background-color: #FFFFFF;
        box-shadow: 0 0 5px #dddddd;
        z-index: 40;
        min-width: 400px;
        opacity: 0;
        visibility: hidden;
        transition: 0.4s;
        padding: 10px 20px 10px 20px;
        top: 75px;
        border-bottom: 2px solid #433737;
    }
    
    #header1a .language_inner_container{
        width: 350px;
    }
    
    #header1a .currency:hover .currency_inner_container,
    #header1a .language:hover .language_inner_container{
        opacity: 1;
        visibility: visible;
        top: 50px;
    }
    
    #header1a .currency:hover .currency_toggle i,
    #header1a .language:hover .language_toggle i{
        color: #433737;
    }
    
    #header1a .currency_inner,
    #header1a .language_inner{
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        text-align: center;
    }
    
    #header1a .language_inner{
        text-align: left;
    }
    
    #header1a .currency_item,
    #header1a .language_item{
        width: 12.2%;
        cursor: pointer;
        font-size: 0.8rem;
    }
    
    #header1a .language_item{
        width: 33.33%;
    }
    
    #header1a .currency_item:hover,
    #header1a .language_item:hover{
        color: #433737;
    }
    
    #header1b a{
        margin-left: 20px;
        transition: 0.4s;
        color: #929292;
    }
    
    #header1b a:first-child{
        margin-left: 0;
    }
}

#header2{
    background-color: #FFFFFF;
    width: 100%;
    height: 90px;
    transition: 0.4s;
    top: -90px;
    left: 0;
}

#header2_inner{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
}

@media only screen and (min-width:900px){
    #header2.header2_scrolled{
        position: fixed;
        z-index: 40;
        top: 0;
        box-shadow: 0 0 5px #dddddd;
    }
    #header2.header2_scrolled.header2_scrolled_free{
        top: 36px;
    }
    
    #header2_inner{
        max-width: 850px;
        margin: 0 auto;
    }
}

@media only screen and (min-width:1100px){
    #header2_inner{ max-width: 1000px; }
}

@media only screen and (min-width:1400px){
    #header2_inner{ max-width: 1200px; }
}

#header2 i{
    font-size: 1.2rem;
}

#header2_menu{
    display: none;
}

@media only screen and (min-width:900px){
    
    #header2a_header2_menu{
        display: flex;
        flex-wrap: nowrap;
        align-items: center;
    }
    
    #header2_menu{
        display: flex;
        margin-left: 50px;
    }
    
    #header2_menu .nav_pages .nav_pages_main{
        display: flex;
        flex-wrap: nowrap;
        line-height: 50px;
    }
    
    #header2_menu .nav_pages .nav_pages_main .nav_pages_main_toggle{
        margin-left: 5px;
    }
    
    #header2_menu .nav_pages .nav_pages_main .nav_pages_main_toggle i{
        font-size: 0.7rem;
    }
    
    #header2_menu #nav_pages_tabs .nav_pages_inner a:first-child{
        display: none;
    }
    
    #header2_menu .nav_pages{
        position: relative;
        margin-right: 40px;
    }
    
    #header2_menu .nav_pages .nav_pages_main a, #header2_menu .nav_pages .nav_pages_main .nav_pages_main_text{
        font-weight: 600;
        text-transform: uppercase;
        cursor: pointer;
        font-size: 0.8rem;
    }
    
    #header2_menu .nav_pages_inner{
        position: absolute;
        background-color: #FFFFFF;
        box-shadow: 0 0 5px #dddddd;
        z-index: 40;
        min-width: 200px;
        opacity: 0;
        visibility: hidden;
        transition: 0.4s;
        padding: 20px 10px 20px 20px;
        top: 75px;
        border-bottom: 2px solid #433737;
        
    }
    
    #header2_menu #nav_pages_tabs:hover .nav_pages_inner,
    #header2_menu #nav_pages_categories:hover .nav_pages_inner,
    #header2_menu #nav_pages_account:hover .nav_pages_inner{
        opacity: 1;
        visibility: visible;
        top: 50px;
    }
    
    #header2_menu .nav_pages:hover .nav_pages_main .nav_pages_main_toggle i{
        color: #433737;   
    }
    
    #header2_menu .nav_pages_inner a{
        line-height: 30px;
        font-weight: normal;
        display: block;
        font-size: 0.8rem;
        color: #929292;
    }
    
    #header2_menu .nav_pages_inner a:hover{
        color: #433737;
    }
    
    #header2_menu .nav_pages_subs_inner{
        display: none;
    }
    
    #header2_menu .nav_pages_subs_main{
        display: flex;
        justify-content: space-between;
    }
    
    #header2_menu .nav_pages_subs_main .nav_pages_subs_main_toggle{
        width: 30px;
        line-height: 30px;
        text-align: center;
        color: #929292;
        cursor: pointer;
    }
    
    #header2_menu .nav_pages_subs_main .nav_pages_subs_main_toggle:hover{
        color: #433737;
    }
    
    #header2_menu .nav_pages_subs_inner{
        padding-left: 20px;
    }
    
}

/* Header 2B */

#header2b{
    display: flex;
    flex-wrap: nowrap;
}

.logo_anchor{
    display: inline-block;
}

#logo{
    max-width: 120px;
}

#search_button{
    height: 40px;
    text-align: center;
    line-height: 40px;
    cursor: pointer;
    transition: 0.4s;
}

#search_button:hover{
    color: #433737;
}

#basket_info{
    position: relative;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    cursor: pointer;
    margin-left: 15px;
}

#basket_info i{
    transition: 0.4s;
}

#basket_info:hover i{
    color: #433737;
}

#sp_basket_info_count{
    position: absolute;
    top: 5px;
    right: 5px;
    color: #433737;
    line-height: 0;
    font-size: 0.8rem;
}

#mobile_menu_button{
    height: 40px;
    text-align: center;
    line-height: 40px;
    margin-left: 15px;
    cursor: pointer;
    transition: 0.4s;
}

#mobile_menu_button:hover{
    color: #433737;
}


@media only screen and (min-width:900px){
    
    #basket_info{
        margin-left: 20px;
    }
    
    #mobile_menu_button{
        display: none;
    }
}




/* Page Content */

.page_content{
    margin-top: 50px;
}

.page_content_normal{
    margin-top: 0;
}

.page_content a{
    transition: 0.4s;
}

.page_content a:hover{
    color: #433737;
}

#page_content_name{
    background-color: #e2e2e2;
    font-size: 1rem;
    line-height: 50px;
    margin-bottom: 20px;
}

.page_content_name_nomar{
    margin-bottom: 0 !important;
}

#page_content_name h1{
    font-size: 1rem;
    margin: 0;
    font-weight: normal;
}

@media only screen and (min-width:800px){
    #page_content_name, #page_content_name h1{
        font-size: 1.4rem;
    }    
}

/* Slideshow  */

.slider-wrapper{
    overflow: hidden;
}

.flexslider{
    -webkit-border-radius: 0px !important;
    -moz-border-radius: 0px !important;
    -o-border-radius: 0px !important;
    border-radius: 0px !important;
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
    -o-box-shadow: none !important;
    box-shadow: none !important;
}

.flex-caption{
    bottom: 20px !important;
    left: 20px !important;
    color: #212121 !important;
    background-color: rgba(255,255,255,0.3) !important;
    font: inherit !important;
    text-shadow: none !important;
    width: auto !important;
    padding: 10px;
    max-width: calc(100% - 70px);
}



/* ======================== */
/* Slick ================== */
/* ======================== */

.slick-slider{position:relative;display:block;box-sizing:border-box;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-touch-callout:none;-khtml-user-select:none;-ms-touch-action:pan-y;touch-action:pan-y;-webkit-tap-highlight-color:transparent}.slick-list{position:relative;display:block;overflow:hidden;margin:0;padding:0}.slick-list:focus{outline:0}.slick-list.dragging{cursor:pointer;cursor:hand}.slick-slider .slick-list,.slick-slider .slick-track{-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0);-o-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.slick-track{position:relative;top:0;left:0;display:block;margin-left:auto;margin-right:auto}.slick-track:after,.slick-track:before{display:table;content:''}.slick-track:after{clear:both}.slick-loading .slick-track{visibility:hidden}.slick-slide{display:none;float:left;height:100%;min-height:1px}[dir=rtl] .slick-slide{float:right}.slick-slide img{display:block}.slick-slide.slick-loading img{display:none}.slick-slide.dragging img{pointer-events:none}.slick-initialized .slick-slide{display:block}.slick-loading .slick-slide{visibility:hidden}.slick-vertical .slick-slide{display:block;height:auto;border:1px solid transparent}.slick-arrow.slick-hidden{display:none}



/* =========================== */
/* Featured Products + Blogs = */
/* =========================== */

#featured_products, #featured_blogs, #related_products{
    margin-top: 50px;
}

#featured_products_title, #featured_blogs_title, #related_products_title{
    font-size: 1rem;
    line-height: 50px;
}

#featured_products_inner, #featured_blogs_inner, #related_products_inner{
    width: 100%;
    margin-top: 10px;
}

.featured_product_item, .featured_blog_item, .related_product_item{
    outline: none;
}

.featured_product_image_container, .featured_blog_image_container, .related_product_image_container{
    width: 100%;
    position: relative;
    overflow: hidden;
}

.featured_product_image, .featured_blog_image, .related_product_image{
    width: 100%;
    display: block;
}

.featured_product_image_extra, .featured_blog_image_extra, .related_product_image_extra{
    position: absolute;
    bottom: -50px;
    left: 10px;
    right: 10px;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    transition: 0.4s;
}

.featured_blog_image_extra{
    justify-content: center;
}

.featured_product_image_container:hover .featured_product_image_extra,
.featured_blog_image_container:hover .featured_blog_image_extra,
.related_product_image_container:hover .related_product_image_extra{
    bottom: 10px;
}

.featured_product_image_extra a, .featured_blog_image_extra a, .related_product_image_extra a{
    background-color: #FFFFFF;
    line-height: 40px;
    padding: 0 5px;
    box-shadow: 0 0 5px #dddddd;
    transition: 0.4s;
}

.featured_blog_image_extra a{
    padding: 0 10px;
}

.featured_product_details, .featured_blog_details, .related_product_details{
    margin-top: 10px;
}

.featured_blog_item_tag_container{
    display: flex;
    flex-wrap: wrap;
}

.featured_blog_item_tag{
    background-color: #433737;
    color: #FFFFFF;
    padding: 0 5px;
    font-weight: normal;
    font-size: 0.8rem;
    margin: 0 5px 5px 0;
}

.featured_blog_item_tag:hover{
    color: #FFFFFF;
    background-color: #292929;
}

.featured_product_details_name, .featured_blog_details_name, .related_product_details_name{
    font-weight: normal;
    transition: 0.4s;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.featured_product_details_name:hover, .featured_blog_details_name:hover, .related_product_details_name:hover{
    color: #433737;
}

.featured_product_details_price, .related_product_details_price{
    font-weight: bold;
    color: #433737;
    margin-top: 5px;
}

.featured_products_arrow, .featured_blogs_arrow, .related_products_arrow{
    position: absolute;
    top: -55px;
    height: 40px;
    line-height: 40px !important;
    width: 40px;
    border-radius: 50%;
    border: 1px solid #dddddd;
    text-align: center;
    transition: 0.4s;
    cursor: pointer;
}

.featured_products_arrow:hover, .featured_blogs_arrow:hover, .related_products_arrow:hover{
    border-color: #433737;
    background-color: #433737;
    color: #FFFFFF;
}

.featured_products_arrow_right, .featured_blogs_arrow_right, .related_products_arrow_right{
    right: 0;
}

.featured_products_arrow_left, .featured_blogs_arrow_left, .related_products_arrow_left{
    right: 50px;
}

@media only screen and (min-width:800px){
    
    #featured_products, #featured_blogs, #related_products{
        margin-top: 100px;
    }
    
    #featured_products_title, #featured_blogs_title, #related_products_title{
        font-size: 1.4rem;
    }
    
    .featured_product_item, .featured_blog_item, .related_product_item{
        margin: 0 10px;
    }
    
    .featured_product_image_extra a, .related_product_image_extra a{
        padding: 0 10px;    
    }
}




/* ======================== */
/* Newsletter ============= */
/* ======================== */


#newsletter_main_container{
    margin-top: 100px;
    text-align: center;
}

#newsletter_title{
    font-size: 1rem;
    line-height: 50px;
}

#newsletter_subtitle{
    color: #929292;
    line-height: 30px;
}

.newsletter_container{
    border: 2px solid #dddddd;
    background-color: #FFFFFF;
    display: flex;
    flex-wrap: wrap;
    max-width: 500px;
    margin: 15px auto 0 auto;
    padding: 0 20px;
    justify-content: space-between;
}

.newsletter_container_double{
    max-width: 500px;
}

#newsletter_email, #newsletter_name{
    background-color: #FFFFFF;
    border: none;
    height: 50px;
    outline: none !important;
    width: 100%;
    border-bottom: 1px solid #dddddd;
}

#newsletter_button{
    background-color: #FFFFFF;
    border: none;
    outline: none !important;
    height: 52px;
    text-transform: uppercase;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    text-align: left;
    color: #292929;
}

#newsletter_button:hover{
    color: #433737;
}

@media only screen and (min-width:800px){
    #newsletter_title{
        font-size: 1.4rem;
    }
    .newsletter_container{
        flex-wrap: nowrap;
    }
    
    #newsletter_email, #newsletter_name, #newsletter_button{
        border-bottom: none;
    }
    
    #newsletter_button{
        text-align: right;
    }
}




/* ======================== */
/* Footer ================= */
/* ======================== */

footer{
    margin-top: 100px;
    background-color: #e2e2e2;
    padding: 40px 0 0 0;
}

#footer_container{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer_item{
    width: 100%;
}

@media only screen and (min-width:800px){
    .footer_item{
        width: 45%;
    }
}

#footer_item1{
    margin-bottom: 50px;
}

.footer_item2_item{
     margin-bottom: 50px;
}

.footer_item2_item_title{
    font-weight: bold;
    margin-bottom: 20px;
    font-size: 1rem;
}

.footer_item2_links a{
    display: block;
    line-height: 30px;
    font-weight: normal;
    font-size: 0.8rem;
}

.footer_item2_links a:hover{
    color: #433737;
}

@media only screen and (min-width:600px){
    
    #footer_item2{
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        max-width: 400px;
    }
    
    .footer_item2_item{
        width: 45%;
    }
    
}

@media only screen and (min-width:1400px){
    
    #footer_item2{
        max-width: 500px;
    }
    
    .footer_item2_item{
        width: 30%;
    }
    
}

#footer_item2_account .nav_pages_main{
    display: none;
}


#footer_social{
    margin-top: 30px;
}

#footer_social_title{
    font-weight: bold;
    margin-bottom: 20px;
    font-size: 1rem;
}

#footer_social_inner{
    display: flex;
    flex-wrap: wrap;
}

#footer_social_inner a{
    margin-right: 15px;
    font-weight: normal;
}

#footer_bottom{
    border-top: 1px solid #cacaca;
    line-height: 50px;
}

#copyright a{
    margin-left: 5px;
    padding-left: 5px;
    border-left: 1px solid #cacaca;
}





/* ========================== */
/* Muliple Products Section = */
/* ========================== */

#multiple_products_container{
    margin-top: 50px;
}

#multiple_products_header{
    font-size: 1rem;
    line-height: 50px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
}

.multiple_products_header_item{
    width: 45%;
    border-bottom: 2px solid transparent;
    cursor: pointer;
}

.multiple_products_header_item_selected{
    border-color: #433737;
}

.multiple_products_header_item:hover{
    border-color: #433737;
}

@media only screen and (min-width:800px){
    #multiple_products_container{
        margin-top: 100px;
    }
    #multiple_products_header{
        font-size: 1.4rem;
        justify-content: left;
        text-align: left;
    }
    .multiple_products_header_item{
        width: auto; 
        margin-right: 40px;
    }
}

#multiple_products_inner_container{
    margin-top: 20px;
}

#multiple_products_popular, #multiple_products_offers{
    display: none;
}

.multiple_products_inner_container_item{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.multiple_products_product_item{
    width: 100%;
    margin-bottom: 20px;
}

@media only screen and (min-width:800px){
    .multiple_products_product_item{
        width: 45%;
    }
}

@media only screen and (min-width:900px){
    .multiple_products_product_item{
        width: 30%;
    }
}

@media only screen and (min-width:1200px){
    .multiple_products_product_item{
        width: 18.5%;
    }
}

.multiple_products_product_image_container{
    width: 100%;
    position: relative;
    overflow: hidden;
}

.multiple_products_product_image{
    width: 100%;
    display: block;
}

.multiple_products_product_image_extra{
    position: absolute;
    bottom: -50px;
    left: 10px;
    right: 10px;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    transition: 0.4s;
}

.multiple_products_product_image_container:hover .multiple_products_product_image_extra{
    bottom: 10px;
}

.multiple_products_product_image_extra a{
    background-color: #FFFFFF;
    line-height: 40px;
    padding: 0 5px;
    box-shadow: 0 0 5px #dddddd;
    transition: 0.4s;
}

.multiple_products_product_details{
    margin-top: 10px;
}

.multiple_products_product_details_name{
    font-weight: normal;
    transition: 0.4s;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.multiple_products_product_details_name:hover{
    color: #433737;
}

.multiple_products_product_details_price{
    font-weight: bold;
    color: #433737;
    margin-top: 5px;
}





/* =============================== */
/* MODALS ======================== */
/* =============================== */

/* Age Verification + Newsletter */

#simplemodal-container{
    width: 100% !important;
    max-width: 300px !important;
    background-color: #FFFFFF !important;
    height: auto !important;
}

#simplemodal-container h3{
    -webkit-margin-before: 0;
    -webkit-margin-after: 0;
}

#md-title{
    background: #433737;
    color: #FFFFFF;
    text-align: center;
    min-height: 30px;
    font-weight: bold;
    line-height: 30px;
}

#md-content{
    text-align: center;
    padding: 20px;
    color: #292929;
}

.md-content button{
    border: none;
    background: #433737;
    color: #FFFFFF;
    font-weight: normal;
    display: block;
    margin: 0 auto;
    margin-bottom: 20px;
    height: 30px;
    line-height: 28px;
    font-size: 0.8rem;
    width: 100px;
    cursor: pointer;
    text-transform: uppercase;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}


.md-content button:hover{
    background-color: #292929 !important;
    color: #FFFFFF !important;
}




/* =============================== */
/* Contact ======================= */
/* =============================== */

.contact_address h1{
    display: none;
}

#divAddress{
    font-style: normal;
    line-height: 25px;
}

.contact_form header{
    font-size: 1rem;
    line-height: 50px;
}

.contact_form label{
    display: block;
    width: 100%;
    margin-top: 10px;
    line-height: 30px;
}

.contact_form input, .contact_form textarea{
    border: 2px solid #dddddd;
    height: 40px;
    outline: none;
    width: 100%;
    padding: 0 10px;
}

.contact_form input{
    max-width: 350px;
}

.contact_form textarea{
    min-height: 200px;
    padding: 10px;
}

.contact_form span{
    float: left;
    width: 100%;
    color: red;
    line-height: 30px;
}

.contact_form input.contact_send_btn{
    float: right;
    width: auto;
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
    padding: 0 20px;
    background-color: #FFFFFF;
}

.contact_send_btn:hover{
    color: #433737;
}

@media only screen and (min-width:800px){
    #contact_main_container form{
        display: flex;
        flex-wrap: nowrap;
        justify-content: space-between;
        width: 100%;
    }
    .contact_address{
        width: 30%;
    }
    .contact_form{
        width: 65%;
    }
    .contact_form header{
        font-size: 1.4rem;
    }
}




/* =============================== */
/* Category Header =============== */
/* =============================== */

#category_header{
    width: 100%;
    max-width: 500px;
    margin: 0 auto 50px auto;
}

#category_header_image_container{
    display: block;
    width: 100%;
    margin: 0 auto 10px auto;
}

#category_header_image{
    display: block;
    max-width: 100%;
    margin: 0 auto;
}



/* =============================== */
/* Browse Sub Categories ========= */
/* =============================== */

#browse_subcategories{
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.browse_subcategories_item{
    text-align: center;
    margin-bottom: 20px;
    cursor: pointer;
    width: 45%;
}

@media only screen and (min-width:800px){
    .browse_subcategories_item{
        width: 30%;
    }
}

@media only screen and (min-width:1000px){
    .browse_subcategories_item{
        width: 18.5%;
    }
}

.browse_subcategories_image{
    max-width: 100%;
    margin: 0 auto;
}

/* =============================== */
/* Browse Toggle + Sort ========== */
/* =============================== */

#pager_sort_by{
    display: none;
}


#browse_top{
    border-top: 1px solid #dddddd;
    border-bottom: 1px solid #dddddd;
    height: 60px;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
}

#browse_top_left{
    display: flex;
    flex-wrap: nowrap;
    line-height: 60px;
}

.browse_toggle_item{
    font-size: 1.2rem;
    cursor: pointer;
}

#browse_toggle_list{
    margin-left: 10px;
}

.browse_toggle_item:hover, .browse_toggle_item_selected{
    color: #433737;
}


#browse_sort{
    position: relative;
    margin-top: 13px;
}

#browse_sort_top{
    border: 2px solid #dddddd;
    padding: 0 10px;
    font-weight: 600;
    line-height: 30px;
    text-transform: uppercase;
    cursor: pointer;
    background-color: #FFFFFF;
}

#browse_sort:hover #browse_sort_top{
    color: #433737;
}

#browse_sort_top i{
    margin-left: 5px;
}

#browse_sort_inner{
    position: absolute;
    top: 50px;
    z-index: 3;
    opacity: 0;
    visibility: hidden;
    background-color: #FFFFFF;
    box-shadow: 0 0 5px #dddddd;
    transition: 0.4s;
    border-bottom: 2px solid #433737;
    padding: 10px;
    min-width: 150px;
    right: 1px;
}

#browse_sort_inner a{
    line-height: 35px;
    font-weight: normal;
    display: block;
    font-size: 0.8rem;
     color: #929292;
     text-transform: capitalize;
}

#browse_sort_inner a:hover{
    color: #433737;
}

#browse_sort:hover #browse_sort_inner{
    top: 32px;
    opacity: 1;
    visibility: visible;
}





/* =============================== */
/* Browse Products =============== */
/* =============================== */

#browse_products{
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.browse_product_item{
    width: 100%;
    margin-bottom: 20px;
}

@media only screen and (min-width:800px){
    .browse_product_item{
        width: 45%;
    }
}

@media only screen and (min-width:900px){
    .browse_product_item{
        width: 30%;
    }
}

@media only screen and (min-width:1200px){
    .browse_product_item{
        width: 18.5%;
    }
}

.browse_product_image_container{
    width: 100%;
    position: relative;
    overflow: hidden;
}

.browse_product_image{
    width: 100%;
    display: block;
}

.browse_product_image_extra{
    position: absolute;
    bottom: -50px;
    left: 10px;
    right: 10px;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    transition: 0.4s;
}

.browse_product_image_container:hover .browse_product_image_extra{
    bottom: 10px;
}

.browse_product_image_extra a{
    background-color: #FFFFFF;
    line-height: 40px;
    padding: 0 5px;
    box-shadow: 0 0 5px #dddddd;
    transition: 0.4s;
}

.browse_product_details{
    margin-top: 10px;
}

.browse_product_details_name{
    font-weight: normal;
    transition: 0.4s;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.browse_product_details_name:hover{
    color: #433737;
}

.browse_product_details_price{
    font-weight: bold;
    color: #433737;
    margin-top: 5px;
}

.browse_product_details_hidden{
    display: none;
}


.browse_products_list .browse_product_item{
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
}

.browse_products_list .browse_product_image_container{
    width: 48%;
}

.browse_products_list .browse_product_image_extra{
    display: none;
}

.browse_products_list .browse_product_details{
    width: 48%;
}

.browse_products_list .browse_product_details_hidden{
    display: block;
}

.browse_product_details_hidden_description{
    display: none;
}

@media only screen and (min-width:600px){
    .browse_product_details_hidden_description{
        display: block;
        margin-top: 10px;
    }
}

.browse_product_details_hidden_buttons a{
    display: block;
    text-align: center;
    border: 2px solid #dddddd;
    margin-top: 10px;
    line-height: 40px;
    height: 40px;
}

@media only screen and (min-width:900px){
    
    .browse_products_list .browse_product_details_name{
        font-size: 1.4rem;
    }
    
    .browse_products_list .browse_product_image_container{
        width: 30%;
    }
    
    .browse_products_list .browse_product_details{
        width: 68%;
    }
    
    .browse_product_details_hidden_description{
        margin-top: 20px;    
    }
    
    .browse_product_details_hidden_buttons{
        display: flex;
        flex-wrap: nowrap;
        margin-top: 20px;
    }
    .browse_product_details_hidden_buttons a{
        display: inline-flex;
        padding: 0 20px;
    }
    .browse_product_details_hidden_buttons a:last-child{
        margin-left: 10px;
    }
}

/* ================================= */
/* Browse Products > Pager + Count = */
/* ================================= */

#browse_products_pager_count{
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

@media only screen and (min-width:800px){
    #browse_products_pager_count{
        justify-content: space-between;    
    }
}

#browse_products_count{
    line-height: 30px;
}

.results_pager_container{
    display: none;
}


.pagination{
    margin-block-start: 0em;
    margin-block-end: 0em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    padding-inline-start: 0px;
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

@media only screen and (min-width:800px){
    .pagination{
        justify-content: flex-end;
    }
}

.pagination a{
    border: 2px solid #dddddd;
    line-height: 30px;
    min-width: 30px;
    text-align: center;
    display: block;
    margin: 0 0 5px 5px;
}

.pagination .current a{
    color: #433737;
}








/* =============================== */
/* Breadcrumb ==================== */
/* =============================== */

.breadcrumbs{
    list-style-type: none;
    margin-block-start: 0em;
    margin-block-end: 0em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    padding-inline-start: 0px;
    display: flex;
    flex-wrap: wrap;
    font-size: 1rem;
}

.breadcrumbs li:after{
    content: '>';
    margin-left: 5px;
    margin-right: 5px;
}

.breadcrumbs li:last-child:after{
    display: none;
}







/* =============================== */
/* Details ======================= */
/* =============================== */

#details{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

#details_left{
    width: 100%;
}

#details_right{
    width: 100%;
    margin-top: 20px;
}

@media only screen and (min-width:800px){
    #details_left{
        width: 48%;
    }
    #details_right{
        width: 48%;
        margin-top: 0;
    }
}

#details_image_container{
    display: block;
    width: 100%;
}

#details_image{
    width: 100%;
    display: block;
}

#details_extra_images{
    margin-top: 10px;
}


#details_extra_images img{
    margin: 0 10px;    
    cursor: pointer;
    outline: none !important;
}

#details_name{
    font-size: 1rem;
    margin: 0;
}

@media only screen and (min-width:800px){
    #details_name{
        font-size: 1.4rem;
    }    
}

#details_code{
    margin-top: 20px;
    color: #929292;
}

#details_right .details_stock{
    margin-top: 10px;
    color: #929292;
}

#stock_notify a{
    background-color: #433737;
    color: #FFFFFF;
    line-height: 30px;
    padding: 0 10px;
    text-align: center;
    margin-top: 10px;
    display: block;
    font-weight: normal;
    font-size: 0.7rem;
}

#stock_notify a:hover{
    background-color: #292929;
}

@media only screen and (min-width:800px){
    #stock_notify a{
        display: inline-block;
        font-size: 0.8rem;
    }
}

#details_price_container{
    margin-top: 30px;
}

#details_rrp{
    margin-bottom: 10px;
    color: #929292;
    text-decoration: line-through;
    font-size: 1rem;
}

#details_price{
    font-size: 1.2rem;
    color: #433737;
    font-weight: 600;
}

@media only screen and (min-width:800px){
    #details_price{
        font-size: 1.6rem;
    }    
}

#details_price hr{
    display: none;
}

#details_price span{
    font-size: 1rem;
    font-weight: normal;
}

.price_ex_tax{
    margin-top: 10px;
    font-size: 1rem;
}

.price_breakdown a{
    cursor: text;
}

.price_breakdown a span{
    font-size: 0.8rem !important; 
}

.price_breakdown a:hover{
    color: #292929;
}

.details_basket{
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
    margin-top: 30px;
}

.wishlist_container{
    margin-right: 10px;
}

.wishlist_container a{
    cursor: pointer;
    width: 46px;
    height: 46px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #dddddd;
    background-color: #FFFFFF;
}

.wishlist_container a svg{
    font-size: 1.4rem;
    stroke: #292929;
    fill: transparent;
    transition: 0.2s;
    transform: scale(1);
    width: 30px;
    height: 30px;
}

#wishlist_logged_in_html a:hover svg,
#wishlist_not_logged_in_html a:hover svg{
    fill: #292929;
}

#wishlist_logged_in_html.wishlist_logged_in_html_activated a svg{
    fill: #292929;
    animation-name: wishlistAdd;
    animation-duration: 1s;
    animation-iteration-count: infinite;
}

@keyframes wishlistAdd{
  0%   {transform: scale(1);}
  50%  {transform: scale(1.5);}
  100% {transform: scale(1);}
}

#wishlist_not_logged_in_html.wishlist_not_logged_in_html_activated a svg{
    fill: #292929;
    animation-name: wishlistAdding;
    animation-duration: 1s;
    animation-iteration-count: infinite;
}

@keyframes wishlistAdding{
  0%   {transform: scale(1);}
  50%  {transform: scale(1.2);}
  100% {transform: scale(1);}
}


#wishlist_added_html a svg{
    fill: #292929;
}

#wishlist_added_html a:hover svg{
    fill: transparent;
}

#wishlist_added_html.wishlist_added_html_activated a svg{
    fill: transparent;
    animation-name: wishlistRemove;
    animation-duration: 1s;
    animation-iteration-count: infinite;
}

@keyframes wishlistRemove{
  0%   {transform: scale(1);}
  50%  {transform: scale(0.5);}
  100% {transform: scale(1);}
}

#txtQty{
    border: 2px solid #dddddd;
    background-color: #FFFFFF;
    height: 50px;
    width: 50px;
    text-align: center;
    font-size: 1rem;
    outline-color: #433737;
}


#details_basket_button{
    border: 2px solid #dddddd;
    background-color: #FFFFFF;
    height: 46px;
    text-align: center;
    text-transform: uppercase;
    font-weight: 600;
    padding: 0px 40px;
    margin-left: 10px;
    align-items: center;
    display: inline-flex;
}

#details_basket_button:hover{
    background-color: #433737;
    color: #FFFFFF;
    border-color: #433737;
}

#details_options{
    margin-top: 20px;
}

.details_options_item{
    margin-top: 10px;
}

.details_options_item label{
    display: block;
}

.details_options_item select{
    border: 2px solid #dddddd;
    height: 50px;
    line-height: 50px;
    outline-color: #433737;
    padding: 0 10px;
    cursor: pointer;
}


#share_panel{
    display: flex;
    flex-wrap: nowrap;
    border-top: 1px solid #dddddd;
    border-bottom: 1px solid #dddddd;
    margin-top: 30px;
    line-height: 50px;
}

#share_panel_text{
    font-weight: 600;
    text-transform: uppercase;
}

#share_panel a{
    border-radius: 2px;
    cursor: pointer;
    margin: 0 10px;
}

#share_panel a#share_facebook:hover{
    color: #3b5998;
}

#share_panel a#share_pinterest:hover{
    color: #BD081C;
}

#share_panel a#share_twitter:hover{
	color: #55ACEE;
}



.details_bulk{
    border-top: 1px solid #dddddd;
    border-bottom: 1px solid #dddddd;
    padding: 10px 0;
    margin-top: 30px;
}

.details_bulk_title{
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.details_bulk_item strong{
    text-transform: capitalize;
}


@media only screen and (min-width:800px){
    #details_content{
        margin-top: 100px;
        border-top: 1px solid #dddddd;
    }
}

#tab_container{
    margin-top: 30px;
}

#tab_menu_container{
    text-align: center;
}

.tab_menu_item{
    transition: 0.4s;
    font-size: 1rem;
    line-height: 40px;
    cursor: pointer;
    color: #929292;
}

.tab_menu_item:hover{
    color: #292929;
}

.tab_menu_item_selected{
    color: #292929;
}


@media only screen and (min-width:800px){
    
    #tab_menu_container{
        text-align: left;
        display: flex;
        flex-wrap: nowrap;
        justify-content: center;
    }
    
    .tab_menu_item{
        padding: 0 10px;
        margin: 0 10px;
        border-bottom: none;
        transition: 0s;
        font-size: 1.4rem;
    }
    
}



#tab_content_container{
    margin-top: 20px;
}

.tab_content_item{
    display: none;
}

.tab_content_item.tab_content_item_active{
    display: block;
}

#details_info{
    line-height: 30px;
}

.details_info_item strong{
    text-transform: uppercase;
}

.tab_content_item .details_stock_text{
    font-weight: bold;
    text-transform: uppercase;
}


#tab_content_item_3{
    text-align: center;
}

#reviews_zero{
    color: #929292;
    line-height: 30px;
}

#reviews_button_container a{
    border: 2px solid #dddddd;
    height: 50px;
    line-height: 50px;
    padding: 0 20px;
    text-transform: uppercase;
    font-weight: 600;
    display: inline-block;
    margin-top: 10px;
}

#reviews_button_container a:hover{
    color: #433737;
}


.review_item{
    border: 2px solid #dddddd;
    max-width: 500px;
    margin: 30px auto 0 auto;
    padding: 20px;
}

.review_item_header{
    display: flex;
    flex-wrap: nowrap;
    justify-content: center
}

.review_item_stars{
    margin-left: 10px;
    color: #433737;
}

.review_item_title{
    margin-top: 20px;
    text-align: center;
}

.review_item_title{
    width: 100%;
    font-weight: 600;
}

.review_item_main{
    text-align: justify;
    margin-top: 20px;
}

.review_item_customername{
    margin-top: 20px;
}


.reviews_item_reply_container{
    padding-top: 20px;
    margin-top: 20px;
}

.reviews_item_reply_title{
    font-weight: bold;
}

.reviews_item_reply_text{
    margin-top: 5px;
}

.reviews_item_reply_container{
    border: 2px solid #dddddd;
}

/* =============================== */
/* Stock Notify + Write Review === */
/* =============================== */

.stock_notify, 
.shop_product_review_form{
    max-width: 700px;
    margin: 0 auto;
}

.stock_notify center, 
.shop_product_review_form center{
    text-align: left;
}

.shop_product_review_form center{
    margin-bottom: 30px;
}

.stock_notify center p, .stock_notify center br,
.shop_product_review_form center p, .shop_product_review_form center br{
    display: none;
}

.stock_notify center label,
.shop_product_review_form label{
    font-weight: 600;
}

.stock_notify label,
.shop_product_review_form label{
    display: block;
    width: 100%;
    margin-top: 10px;
    line-height: 30px;
}

.stock_notify input, .stock_notify textarea,
.shop_product_review_form input, .shop_product_review_form textarea, .shop_product_review_form select{
    border: 2px solid #dddddd;
    height: 40px;
    outline: none;
    width: 100%;
    padding: 0 10px;
}

.stock_notify input,
.shop_product_review_form input, .shop_product_review_form select{
    max-width: 350px;
}

.stock_notify textarea,
.shop_product_review_form textarea{
    min-height: 200px;
    max-width: 700px;
    padding: 10px;
}

.stock_notify span,
.shop_product_review_form span{
    width: 100%;
    float: left;
}

.stock_notify_cancel, .stock_notify_submit,
.shop_review_form_cancel, .shop_review_form_submit{
    border: 2px solid #dddddd;
    height: 40px;
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
    padding: 0 20px;
    background-color: #FFFFFF;
    display: inline-block;
    line-height: 40px;
    margin-top: 10px;
}

.stock_notify_cancel:hover, .stock_notify_submit:hover,
.shop_review_form_cancel:hover, .shop_review_form_submit:hover{
    color: #433737;
}










/* =============================== */
/* Sitemap ======================= */
/* =============================== */

.sitemap_divider{
    display: none;
}

.fws_sitemap_container ul{
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
    list-style-type: none;
    margin-block-start: 0em;
    margin-block-end: 0em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    padding-inline-start: 0px;
    margin-bottom: 30px;
}

.fws_sitemap_container ul li a{
    border: 2px solid #dddddd;
    line-height: 40px;
    padding: 0 10px;
    display: inline-flex;
    margin: 10px 15px 0 0;
}

.fws_sitemap_container ul li a:hover{
    color: #433737;
}





/* =========================== */
/* Blog Roll ================= */
/* =========================== */

#blog_roll{
    margin-top: 50px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
}

.roll_blog_item{
    margin-bottom: 30px;
}

@media only screen and (min-width:600px){
    .roll_blog_item{
        width: 48%;
    }
}

@media only screen and (min-width:1100px){
    .roll_blog_item{
        width: 32%;
    }
}

.roll_blog_image_container{
    width: 100%;
    position: relative;
    overflow: hidden;
}

.roll_blog_image_container_link{
    width: 100%;
    display: block;
}

.roll_blog_image{
    width: 100%;
    display: block;
}

.roll_blog_image_extra{
    position: absolute;
    bottom: -50px;
    left: 10px;
    right: 10px;
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    transition: 0.4s;
}


.roll_blog_image_container:hover .roll_blog_image_extra{
    bottom: 10px;
}

.roll_blog_image_extra a{
    background-color: #FFFFFF;
    line-height: 40px;
    padding: 0 10px;
    box-shadow: 0 0 5px #dddddd;
    transition: 0.4s;
}


.roll_blog_details{
    margin-top: 10px;
}

.roll_blog_item_tag_container{
    display: flex;
    flex-wrap: wrap;
}

.blog_roll_item_info_tag{
    background-color: #433737;
    color: #FFFFFF;
    padding: 0 5px;
    font-weight: normal;
    font-size: 0.8rem;
    margin: 0 5px 5px 0;
}

.blog_roll_item_info_tag:hover{
    color: #FFFFFF;
    background-color: #292929;
}

.roll_blog_details_name{
    font-weight: normal;
    transition: 0.4s;
}

.roll_blog_details_name:hover{
    color: #433737;
}




.blog_view{
    margin-top: 20px;
}

.blog_view_top{
    display: flex;
    flex-wrap: wrap;
}

.blog_view_left, .blog_view_right{
    width: 100%;    
}

@media only screen and (min-width:1100px){
    .blog_view_left, .blog_view_right{
        width: 45%;
    }
    .blog_view_right{
        margin-left: 5%;
    }
}

#blog_view_image_container{
    width: 100%;
}

#blog_view_image{
    width: 100%;
}

.blog_view_title{
    line-height: 30px;
    display: block;
    font-size: 1.4rem;
    
}

.tags{
    display: flex;
    flex-wrap: wrap;
    margin-top: 5px;
}

.tag_item{
    background-color: #433737;
    color: #FFFFFF;
    font-weight: normal;
    padding: 0 5px;
    font-size: 0.8rem;
    margin-right: 10px;
    display: inline-block;
}

.tag_item:hover{
    background-color: #292929;
    color: #FFFFFF;
}

.blog_view_written{
    margin-top: 10px;
}

.blog_view_right_info{
    margin-top: 10px;
    font-size: 0.8rem;
}

.blog_view_bottom{
    margin-top: 30px;
    margin-bottom: 30px;
}

.blog_markup{
    max-width: 600px;
    margin: 100px auto 0 auto;
}


#comments_section, #comments_reply_section{
    max-width: 600px;
    margin: 0 auto;
}

#comments_section{
    margin-top: 100px;
}

#comments_section header{
    display: block;
    margin-top: 10px;
}

.blog_comments_author, .blog_comments_email,
.blog_comments_reply_author, .blog_comments__reply_email{
    width: 48%;
    padding: 0 10px;
    height: 50px;
    border: 2px solid #dddddd;
}

#comment_email_div, #comment_reply_email_div{
    width: 48%;
    float: right;
}

.blog_comments_email, .blog_comments__reply_email{
    width: 100%;
}

#comment_email_label, #comment_reply_email_label{
    display: none;
}

.blog_comments_content, .blog_comments_reply_content{
    width: 100%;
    padding: 5px 10px;
    border: 2px solid #dddddd;
    height: 100px;
}

.blog_comments_author:focus, .blog_comments_email:foccus, .blog_comments_content:focus,
.blog_comments_reply_author:focus, .blog_comments__reply_email:focus, .blog_comments_reply_content:focus{
    outline-color: #433737
}


.blog_comments_submit, .blog_comments_reply_submit{
    background-color: #FFFFFF;
    border: 2px solid #dddddd;
    color: #292929;
    text-transform: uppercase;
    width: auto;
    padding: 0 20px;
    margin-top: 10px;
    float: right;
    cursor: pointer;
    font-weight: 600;
    line-height: 48px;
    height: 50px;
}

.blog_comments_submit:hover, .blog_comments_reply_submit:hover{
    color: #433737;
}


.blog_article_no_comments{
    width: 100%;
    display: block;
    clear: both;
    max-width: 400px;
    margin: 100px auto 0 auto;
    text-align: center;
    box-sizing: border-box;
}

#comments_thanks{
    width: 100%;
    clear: both;
    max-width: 400px;
    margin: 100px auto 0 auto;
    text-align: center;
    box-sizing: border-box;
}

.blog_comments_container{
    clear: both;
    display: block;
    margin-top: 100px;
}

.blog_comments_title{
    text-align: center;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 10px;
}

.comment{
    width: 100%;
    display: block;
    clear: both;
    max-width: 400px;
    border: 2px solid #dddddd;
    padding: 10px;
    margin: 0 auto 0 auto;
    text-align: center;
    box-sizing: border-box;
}

.comment_author{
    margin-right: 5px;
    font-weight: 600;
    padding-right: 5px;
}

.comment_text{
    margin-top: 20px;
}

.blog_comments_reply_reply {
    border: 2px solid #dddddd;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100px;
    padding: 0 20px;
    margin: 10px auto 20px auto;
    cursor: pointer;
    display: block;
    text-align: center;
    font-weight: 600;
    line-height: 48px;
    height: 50px;
}


.comment_reply{
    border-top: 1px solid #dddddd;
    padding-top: 10px;
    margin-top: 20px;
}





/* Special Offers */

.Pager a, .Pager b{
    border: 2px solid #dddddd;
    line-height: 30px;
    min-width: 30px;
    text-align: center;
    display: inline-block;
    margin: 0 0 5px 5px;
}

.Pager b{
    color: #433737;
}





/* Checkout */

#softadd-overlay{ 
    opacity: 0.3 !important;
}

#softadd-container{
    box-shadow: none !important;
    -moz-box-shadow: none !important;
    -webkit-box-shadow: none !important;
    border-radius: 0px !important;
    background-color: #FFFFFF !important;
    color: #292929 !important;
    top: 50px !important;
}

#softadd-modal-title{
    background-color: #433737 !important;
    text-shadow: none !important;
    color: #FFFFFF !important;
    font-weight: bold !important;
    border-bottom: none !important;
}

.simplemodal-close{
    text-shadow: none !important;
    color: #FFFFFF !important;
}

button.simplemodal-close, button.success{
    background-color: #433737 !important;
    color: #FFFFFF !important;
    font-weight: bold !important;
    border: none !important;
    height: 40px !important;
    cursor: pointer;
    font-weight: normal !important;
    text-transform: uppercase !important;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

button.simplemodal-close:hover, button.success:hover{
    background-color: #292929 !important;
    color: #FFFFFF !important;
}

#softadd-feedback-failure, #softadd-feedback-fail-msg, #softadd-container span{
    color: #433737 !important;
}




/* ======================== */
/* Instagram ============== */
/* ======================== */

#instagram_grid{
    margin-top: 50px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.instagram_grid_item{
    width: 100%;
    margin-top: 30px;
}

@media only screen and (min-width:450px){
    .instagram_grid_item{
        width: 45%;
    }
}

@media only screen and (min-width:600px){
    .instagram_grid_item{
        width: 30%;
    }
}

@media only screen and (min-width:1000px){
    .instagram_grid_item{
        width: 22%;
        margin-top: 50px;
    }
}

.instagram_grid_image_container{
    display: block;
    overflow: hidden;
}

.instagram_grid_image_container img{
    width: 100%;
    display: block;
    transition: 0.4s;
}

.instagram_grid_image_container:hover img{
    transform: scale(1.1);
}

.instagram_grid_item_content{
    margin-top: 10px;
    line-height: 1em;
}

.instagram_grid_item_likes{
    font-weight: bold;
    margin-top: 5px;
    display: block;
}

.instagram_grid_item_likes i{
    color: #433737;
    margin-right: 5px;
}

.instagram_grid_item_caption{
    margin-top: 5px;
    font-weight: normal;
    max-height: 45px;
    line-height: 15px;
    overflow: hidden;
}


.basket_login, .basket_summary{
    width: 100%;
}



[data-editor-type="social-media-icons"] [data-editor-disabled="true"]{
    display: inline-flex;
}












