/* ====================================================================================================================== 
		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:

#000000 == #395B64 == var(--pri);
#ffffff == #A5C9CA == var(--sec);
#306743 == #2C3333 == var(--text);
#ffffff == #E7F6F2 == var(--back);
   

======================================================================================================================= */
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@300;400;600&display=swap');

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video,
button{
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    font-family: Zilla Slab, Helvetica, Arial, sans; 
    vertical-align: baseline;
    box-sizing: border-box;
    transition: all .2s;
}

:root {
    --pri: #000000;
    --sec: #ffffff;
    --text: #306743;
    --back: #ffffff;
}

::-moz-selection{
  color:  var(--back);
  background: var(--pri);
}
::selection {
  color:  var(--back);
  background: var(--pri);
}

html {
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    box-sizing: content-box;
    display: inline-flex;
    color: var(--back);
    font-weight: bold;
    white-space: nowrap;
}

body {
    background: var(--back) !important;
    height: 100vh;  
    color: var(--text);
}

.has_max {
    max-width: 1150px;
}

input {
    box-sizing: border-box;
    border: none;
    font-family: Zilla Slab, Helvetica, Arial, sans;
    font-size: 1rem;
    line-height: 1.75rem;
    width: max-content;
}

div[data-editor-type="search"] {
    width: 100%;
}

input:focus,
select:focus {
    outline: none;
}

select {
    font-weight: normal;
    font-size: 1rem;
    line-height: 1.75rem;
    appearance: none;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iMTYiIGhlaWdodD0iMTYiPjxkZWZzPjxwYXRoIGlkPSJjaGV2cm9uRG93bkljb24tejY4YjJzc3VmYSIgZD0iTTEzLjUzIDQuMTk3bC01LjcyNyA1LjcyLTUuNzI2LTUuNzItLjk0Ljk0IDYuNjY2IDYuNjY2IDYuNjY3LTYuNjY2eiIvPjwvZGVmcz48ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxtYXNrIGlkPSJjaGV2cm9uRG93bkljb24tNGtsZDZ6N2k0YiIgZmlsbD0iI2ZmZiI+PHVzZSB4bGluazpocmVmPSIjY2hldnJvbkRvd25JY29uLXo2OGIyc3N1ZmEiLz48L21hc2s+PGcgZmlsbD0iIzAyMTgyOCIgbWFzaz0idXJsKCNjaGV2cm9uRG93bkljb24tNGtsZDZ6N2k0YikiPjxwYXRoIGQ9Ik0wIDBoMTZ2MTZIMHoiLz48L2c+PC9nPjwvc3ZnPg==);
    background-position: calc(100% - 1rem) 50%;
    background-repeat: no-repeat;
    border: solid 0.0625rem var(--pri);
    border-radius: 0.625rem;
    color: var(--text);
    display: block;
    padding: 0.5625rem 3rem 0.5625rem 1rem;
    transition: border-color 0.15s ease-in 0s, background-color 0.15s ease-in 0s;
    width: 100%;
}

button {
    margin: 0;
    padding: 0;
    border: none;
    cursor: pointer;
}

h1,
h2,
h3 {
    font-weight: bold;
    line-height: 1.75rem;    
}

h1, h2 {
    margin-top: 1.5rem;
    font-size: 1.5rem;
}

h2:has(span) {
    display: flex;
    flex-direction: column;
}

.aside_styling h3 {
    font-size: 1.5rem;
    line-height: 2rem;
    margin: 0px 0px 1rem;
}

main {
    display: flex;
    flex-direction: column;
    background: #FFF;
}

.button_primary {
    margin-top: 1.5rem;
    height: 48px;
    width: 100%;
    max-width: 195px;
    background: var(--pri);
    color: var(--back);
    border-radius: .625rem;
    border: 2px solid var(--pri); 
    display: flex;
    align-items: center;
    justify-content: center; 
}

.lone_border {
    border-top: 1px solid var(--sec);
}

.button_primary:hover {
    background: transparent;
    color: var(--pri);
    border-radius: .625rem;
}

.container {
    padding: 0 16px;    
    margin: 0 auto;
    width: 100%;
    margin-top: 1rem;
}

.banner_container {
    padding: 0 16px;    
    margin: 0 auto;
    width: 100%;
}

.container.prod_detail_wrapper {
    padding: 0;
}

@media only screen and (max-width: 600px) {
    #logo {
        width: 80px;
        height: 40px;
    }
}

@media only screen and (min-width: 750px) {
    .container {
        margin-top: 2vh;
    }   
    
    .prod_details_image img {
        border-radius: 1.25rem;        
    }
    
    .container.prod_detail_wrapper {
         padding: 0 16px;
    }
}

@media only screen and (min-width: 1024px) {
    .container,
    .container.prod_detail_wrapper {
        padding: 0 24px;
    }   
}

@media only screen and (min-width: 1440px) {
    .container,
    .banner_container {
        max-width: 1150px;
    }      
}

#fws_content div[data-editor-type="page-content"] {
    margin: 1rem 0 4rem;
}

#fws_content a {
    color: var(--pri);
}

.background_image_container {
    background: ;    
    -webkit-background-size: ;
	-moz-background-size: ;
	-o-background-size: ;
	background-size: ;   
}

/***************** scrollbar ******************************/

/* width */
::-webkit-scrollbar {
  width: 10px;  
}

/* Track */
::-webkit-scrollbar-track {
  background: var(--back);
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--pri);  
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: var(--sec);
  border-radius: 2px;
}

/**********************************************************/

@media only screen and (min-width: 1024px) {
    h1, h2 {
        font-size: 2rem;
        line-height: 2.5rem;
    }   
}


/* NAVIGATION =========================================================================================*/

nav {
    background: var(--pri);
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
    z-index: 501;
}

nav a { 
    font-size: .95em;
    transition: .2s;
}

nav a:hover {
    color: var(--sec);
    /*filter: drop-shadow(2px 2px var(--text));*/
}

nav a:hover nav a svg {
    color: var(--back);    
}

.nav_tabs_left {
    width: 45%;
}

.nav_tabs_left a:hover {
    filter: none;
}

.nav_tabs_center {
    width: 100%;
    order: 3;
}

.nav_tabs_right {
    display: flex;
    gap: 15px;
    width: 45%;
    order: 2;
    justify-content: flex-end;
    align-items: end;
}

.nav_link_item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    color: var(--back);
    border-bottom: 2px solid transparent;
}

.nav_link_item:hover {
    color: var(--sec);
}

.nav_link_item.nav_item_hovered {
    border-bottom: 2px solid var(--back);
}

.nav_item_text {
    display: none;
}

.main_nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 12px 8px;

}

.nav_categories {
    display: flex;
    gap: 20px 40px;
    justify-content: center;
    flex-wrap: wrap;
    padding: 10px 20px 12px 20px;
}

#navCats {
    display: none;
}

.input_form {
    display: flex;
    align-items: center;
    height: 48px;
    background: var(--pri);
    border: 1px solid var(--sec);
    border-radius: 0.625rem;
    padding: 5px;
    margin: 0 auto;
    width: 100%;
    
}

.quick_search_button {
    color: var(--back);   
    height: 100%;  
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quick_search_button:hover  {
    color: var(--text);
    text-shadow: 2px 2px var(--text);
}

input[name="txtQuickSearch"] {
    height: 100%;
    width: 100%;
    background: transparent;
    color: var(--back);
}

input[name="txtQuickSearch"]:focus {
    color: var(--pri) !important;
}

input[name="txtQuickSearch"]::placeholder {
    color: var(--sec);
}

.input_form:has(> input[name="txtQuickSearch"]:focus) {
    background: var(--sec);
}

#sp_basket_info_count {
    position: absolute;
    color: var(--back);
    font-size: smaller;
    top: 11px;
}

#cartLink {
    position: relative;
}

@media only screen and (min-width: 830px) {
    .nav_tabs_left {
        width: auto;
        order: 1;
    }
    
    .nav_tabs_center {
        width: auto;
        order: 2;
    }
    
    .nav_tabs_right {        
        width: auto;
        order: 3;
    }
    
    input[name="txtQuickSearch"] {        
        max-width: 400px;        
    }
    
     .input_form {
        max-width: 400px;        
    }
    
    .main_nav {
        flex-wrap: nowrap;
    }   
}

@media only screen and (min-width: 1024px) {    
    
    .main_nav {
        padding: 16px 100px 0px 100px; 
    }  
    
    .nav_categories {
        padding: 10px 50px 12px 50px; 
    }
   
    .nav_item_text {
        display: block !important;
    }
    
    .nav_link_item.hamburger {
        display: none;
    }
    
    #navCats {
        display: flex;
    }
}

@media only screen and (min-width: 1400px) {
   input[name="txtQuickSearch"] {        
        max-width: 670px;        
    }
    
    .input_form {
        max-width: 670px;        
    }
}

/* Mobile Nav */

.mobile_nav {
    width: 100%;
    height: 100vh;
    background: var(--back);
    z-index: 1000;
    position: fixed;
    left: 100%;
    transition: left .5s ease-in;
    overflow: auto;
    overflow-x: hidden;
}

.close_mobile_nav_icon {
    color: var(--text);
    cursor: pointer;
    position: absolute;
    z-index: 50;
    right: 16px;
}

.close_mobile_nav_icon:hover {
   color: var(--text);
   filter: none;
}

.mobile_nav_active {
    left: 0;
}

.mobile_nav_header,
.mobile_nav_header_two {
    padding: 24px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 6px 8px -4px;
    position: relative;
}

.mobile_nav_header_two {
    box-shadow: rgba(0, 0, 0, 0.2) 0px 6px 8px -4px, rgba(0, 0, 0, 0.2) 0px -1px 8px -4px;
    margin: 1em 0;
}

.mobile_nav_header h3,
.mobile_nav_header_two h3 {
    font-size: 1.25rem;
    line-height: 1.75rem;
}

.mobile_cat_list {
    display: flex;
    flex-direction: column;
    margin: 1rem 0;
    padding-bottom: 200px;
}

.mobile_cat_list.secondary {
    position: fixed;
    top: 76px;
    left: 100%;
    transition: left .5s ease-in;
    overflow: auto;
    z-index: 1001;
    background: var(--back);
    width: 100%;
    height: calc(100vh - 76px);
}

.mobile_nav_active {
    left: 0 !important;
}

#mobileNavTitle {
    height: 28px;
    display: flex;
    align-items: center;
}

#primaryMobNavTitle {
    position: relative;
    opacity: 1;
    transition: .5s ease-in;  
    white-space: nowrap;
}

#secondaryMobNavTitle {
    position: absolute;
    left: 50%;    
    opacity: 0;
    transition: .5s ease-in;
    white-space: nowrap;
}

#secondaryMobNavTitle svg {
    position: relative;
    top: 4px;
    margin-right: 1.125rem;
    cursor: pointer;
}

.mob_header_pri_active {
    right: 150%;
    opacity: 0 !important;
    transition: .5s ease-in;    
}

.mob_header_sec_active {
    left: 10px !important;
    opacity: 1 !important;
}

.mobile_cat_list_item {
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--text);
    cursor: pointer;
    font-size: 1rem;
    line-height: 1.75rem;
}

.mobile_cat_list_item:hover {
    color: var(--text);
    background: var(--sec);
    filter: none;
}

.mobile_subcat_list_item {
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--text);
    cursor: pointer;
    font-size: 1rem;
    line-height: 1.75rem;
    font-weight: bold;
}

.mobile_tercat_list_item {
    font-size: 1rem;
    line-height: 1.75rem;
    text-decoration: none;
    box-sizing: border-box;
    padding: 0.5rem 2rem;
    color: var(--text);
    font-weight: normal;
}

.mobile_tercat_list_item.underline {
    text-decoration: underline;
    text-underline-offset: 8px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all .2s ease;
}

.mobile_tercat_list_item.underline:hover {
    color: var(--pri);
}

.mobile_tercat_list_item:hover {
    color: var(--text);
    filter: none;
}

/********* main nav drop ***************************/

.dropdown_nav_main {
    display: none;
    flex-wrap: wrap;
    position: absolute;
    height: fit-content;
    width: 100%;
    background: var(--pri);
    border-top: 1px solid var(--sec);
    z-index: 100000;    
    padding: 10px 20px 30px 20px;
    gap: 30px 20px;
}

.dropdown_nav_main .mobile_tercat_list_item,
.dropdown_nav_main .mobile_subcat_list_item {
    color: var(--back);
}

.dropdown_nav_main .mobile_tercat_list_item.underline:hover {
    color: var(--sec);
}

.section_border_top {
    border-top: 1px solid var(--sec);
    margin-top: 4rem !important;
}

.dd_main_nav_section {
    display: flex;
    flex-direction: column;
}

.dd_overlay {
    position: fixed;
    display: none;
    height: 200%;
    width: 100%;
    background: rgba(0, 0, 0, .3);
    z-index: 500;
    top: -400px;
}

.currency_overlay {
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, .3);
    z-index: 5000;
    align-items: center;
    justify-content: center;
}

.currency_select_modal {
    position: absolute;
    top: 30%;
    background: var(--back);
    width: 100%;
    max-width: 360px;
    border-radius: 0.625rem;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 0.5rem 0.1875rem;
}

.currency_select_modal h3 {
    color: var(--text);
}

.option_hidden {
    display: none;
}

.language_info,
.language_info span{
    display: flex;
    align-items: center;
    gap: 5px;
}

.currency_info,
.currency_info span{
    display: flex;
    align-items: center;
    gap: 5px;
}

.currency_info a {
    color: var(--pri);
    text-decoration: underline;
    cursor: pointer;
    font-weight: normal;
}

.currency_select_main {
    padding: 20px;
}

.currency_select_main a{
    height: 40px;
    width: 100%;
    max-width: revert;
    cursor: pointer;
}

@media only screen and (max-width: 1023px) {
    .dropdown_nav_main {
        display: none !important;        
    }
}


/* END NAVIGATION ======================================================================================*/

/*Main landing section****************************************************************************************/

.colored_banner {
    background: var(--sec);
}

.main_landing {
   padding: 0 16px; 
}

.main_landing_inner {
    display: flex;
    flex-direction: column;
    align-items:center;
}

.landing_inner_top {
    height: 45vw;
    max-height: 360px;
}

.landing_inner_bottom {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: 50px;
}

.landing_inner_bottom .de_text-tool[data-editor-type="page-content"] {
    display: -webkit-box;
    -webkit-line-clamp: 10;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.flexslider {
    float: revert !important;
    margin: 1rem 0 !important;
}

.slider-wrapper {
    position: relative;
    top: 0;
}

#slider,
.flexslider img,
.flexslider,
.slides {
    max-width: 560px;    
    border-radius: 0.625rem;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 0.25rem 0.5rem 0px;
}


/*.flexslider .slides > li {
    display: revert !important;
}*/



@media only screen and (min-width: 900px) {
    .main_landing_inner {
        flex-direction: row-reverse;
        justify-content: space-around;
        gap: 2vh;
    }
    
    .landing_inner_bottom {
        width: 45%;
        margin-top: 0;
    }
    
    .landing_inner_bottom h1,
    .landing_inner_bottom h2 {
        margin-top: 0;
    }
    
    .landing_inner_top {
        /*min-width: 61vh;*/
        min-height: revert;
        max-height: revert;
        height: revert;
    }
    
    /*.main_landing_inner.blog .landing_inner_top {
        min-width: auto;
    }*/
}

@media only screen and (min-width: 1024px) {
    .main_landing {
       padding: 0 24px; 
       height: 315px;
    }
}

/** end main landing section ***********************************************************************************/



/* CATEGORIES WITH IMAGES **************************************************************/

section.container h2 {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 1.125rem;
    line-height: 2rem;
    position: relative;
}

.slider_nav_buttons {
    position: absolute;
    top: -12%;
    right: 0;
    display: flex;
    align-items: center;    
}

.slider_nav_buttons svg {
    padding: 5px;
    border-radius: 50%;
}

.slider_nav_buttons svg:hover {
    cursor: pointer;
    background: var(--sec);
}

.slider_section {
    display: flex;
    gap: 15px;
    width: 100%;
    overflow: auto;
    scrollbar-width: none;
    padding-top: 5px;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    min-height: 20vh;
}

.category_image_link,
.product_image_link {
    color: var(--text);
    display: flex;
    flex-direction: column;
    text-align: center;
    border-radius: 0.625rem;
    scroll-snap-align: start;
    overflow: hidden;
}

.category_image_link:hover {
    box-shadow: rgba(0, 0, 0, 0.2) 0px -0.125rem 0.25rem 0px;
}

.category_image_link img {
    height: auto;
    width: 100%;
    max-width: 260px;
    aspect-ratio: 4 / 3;
    border-radius: 0 0 0.625rem 0.625rem;
    transform: scale(1.4);
}

.product_image_link img {
    width: 100%;
    /*max-width: 215px;*/
    aspect-ratio: 1 / 1;
    border-radius: 0.625rem;
}

.product_image_link h3 {
    margin-top: 1rem;
    margin-bottom: 0.25rem;
    white-space: break-spaces;
    text-align: left;
}

.slider_item_outer {
    min-width: 170px;
    max-width: 215px;
    position: relative;
}

.search_product_outer {
    position: relative;
    /*min-width: 170px;*/
    max-width: 44%;
    position: relative;
}

@media only screen and (min-width: 565px) {
    .search_product_outer {
        min-width: 170px;
        max-width: 250px;
    }
}

.search_product_outer .price_breakdown {
    display: flex;
    gap: 10px;
    font-size: smaller;
}


.product_overlay {
    position: absolute;
    top: 0.9375rem;
    left: 0px;
    padding: 0px 0.5rem;
    font-size: 0.75rem;
    line-height: 1.25rem;
    background: var(--pri);
    color: var(--back);
    border-radius: 0px 0.375rem 0.375rem 0px;
}

.slider_product_info {
    font-size: 0.875rem;
    line-height: 1.75rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
}

.slider_product_info p {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
}

.category_image_link p {
    font-size: 1rem;
    line-height: 1.75rem;
    background: var(--back);
    padding: 0rem 0.5rem;
    height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.625rem 0.625rem 0 0;
    z-index: 10;
    white-space: break-spaces;
}

.arrow_disabled {
    pointer-events: none;
    color: #A3A3A3;
}

.add_to_basket_icon {
    position: absolute;
    right: 0;
}

.add_to_basket_icon svg {
    color: var(--text);
    fill: none;
}

.add_to_basket_icon svg:hover {
    color: var(--sec);
    fill: var(--sec);
}

@media only screen and (min-width: 600px) {
   .slider_item_outer {
        min-width: 215px;
    }
    
    .slider_section {
        min-height: 28vh;
    }
}

@media only screen and (min-width: 900px) {
    section.container h2 {
        margin-bottom: 1.5rem;
        font-size: 1.25rem;
        line-height: 1.75rem;
    }    
}

@media only screen and (min-width: 1024px) {
    section.container {
        margin-top: 2em;
    }
}

@media only screen and (pointer: coarse) {
    .slider_section {
        scrollbar-width: none;
    }
    
    .slider_section::-webkit-scrollbar {
        display: none;
    }
    
    .slider_nav_buttons {
        display: none !important;
    }
}

/* END CATEGORIES WITH IMAGES **********************************************************/

/**** BLOG CONTENT *************************************************************************/

.featured_blog_outer {
    margin-top: 3rem;
    position: relative;
    display: flex;
    flex-direction: column;
    background: var(--sec);
    border-radius: 0.625rem;
    padding: 0 16px 16px 16px;
}

.featured_blog_outer:last-of-type {
    margin-bottom: 3rem;
}

.featured_blog_outer a img {
    box-shadow: rgba(0, 0, 0, 0.2) 0px 0.25rem 0.5rem 0px;
    border-radius: 0.625rem;
    overflow: hidden;
    height: auto;
    aspect-ratio: 16 / 9;
    position: relative;
    top: -20px;
    width: 100%;
}

.featured_blog_info h3 {
    display: flex;
    flex-direction: column;
    margin: 1.25rem 0px;
    font-size: 1.25rem;
    line-height: 1.75rem;    
}

.featured_blog_info h3 span:first-of-type {
    font-size: 14px;
    font-weight: normal;    
    line-height: 18px !important;
}

.featured_blog_info h3 span:last-of-type {
    font-style: italic;
    font-size: 14px;
    font-weight: normal;
    line-height: 18px !important;
}

.featured_blog_info p {
    margin: 1.25rem 0px; 
}

.continue_reading_link {
    color: var(--pri);
    text-decoration: underline;
    text-underline-offset: 2px;
    
    display: flex;
    align-items: center;
}

.continue_reading_link svg {
    position: relative;
    top: 1px;    
    left: 2px;
}

.continue_reading_link:hover {
    color: var(--back);
}

.featured_blog_tags,
.blog_roll_item_tags {
    display: flex;
    flex-wrap: wrap;
    gap: 3px 5px;
}

.blog_roll_item_tags:has(a.blog_item_tag) {
    margin-top: 1em;
}

.featured_blog_tag_item,
.blog_item_tag {
    padding: 0px 0.5rem;
    font-size: 0.75rem;
    line-height: 1.25rem;
    background: var(--pri);
    color: var(--back);
    border-radius: 0.375rem;
}

@media only screen and (min-width: 750px) {
    .featured_blog_outer {
        flex-direction: row;
        gap: 20px;
        align-items: flex-start;        
    }
    
    .featured_blog_outer:not(:first-of-type) {
        margin-top: 6rem;       
    }
    
    .featured_blog_outer:nth-of-type(even) {
        flex-direction: row-reverse;
    }
    
    .featured_blog_img,
    .featured_blog_info {
        width: 50%;
    }    
    
    
}

/**** END BLOG CONTENT **********************************************************************/

/* NEWSLETTER ============================================================================*/

.aside_styling {
    background: var(--sec);
}

.newsletter_outer {
    display: flex; 
    justify-content: center;
    margin-top: 2em;
}

.newsletter_inner {
    padding: 2rem 1rem;
    width: 100%;
    max-width: 328px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.newsletter_inner p {
    font-size: 1.25rem;
    line-height: 1.75rem;
    margin-bottom: 0.75rem;
    font-weight: normal;
    text-align: center;
}

.newsletter_form {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 10px 20px;
}

.newsletter_form input {
    height: 48px;
    width: 100%;
    background: #FFF;
    border: 1px solid var(--pri);
    border-radius: .625rem;
    padding: 0 10px;
}

.newsletter_form input:focus {
    color: var(--pri) !important;
    outline: 2px solid var(--pri) !important;
    outline-offset: 2px;
}

.newsletter_form input::placeholder {
    color: var(--sec);
}

.newsletter_form button {
    height: 48px;
    width: 100%;
    background: var(--pri);
    color: var(--back);
    border-radius: .625rem;
    border: 2px solid var(--pri);
}

.newsletter_form button:hover {
    background: transparent;
    color: var(--pri);
    border-radius: .625rem;
}

.newsletter_form.with_name {
    flex-direction: column;
    align-items: flex-end;
    max-width: 300px;
}

.newsletter_with_name_outer {
    display: flex;
    flex-direction: column;
    align-items: center; 
}

.newsletter_with_name_text,
.with_name_text {
    text-align: center !important;
}

@media only screen and (min-width: 800px) {
    .newsletter_inner {
        max-width: 640px;
    }
    
    .newsletter_form {
        flex-direction: row;
    }
    
    .newsletter_form button {
        max-width: 190px;
    }
    
    .newsletter_form.with_name button {
        max-width: 100%;
    }
    
    .newsletter_with_name_text,
    .with_name_text {
        text-align: start !important;
    }
    
    .newsletter_with_name_outer {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }
    
    .newsletter_outer  {
        margin-top: 4em;
    }
}

/* END NEWSLETTER ========================================================================*/



/* FOOTER =============================================================================================*/

.pre_footer {
    background: var(--back);
    padding: 12px 20px 12px 20px;     
}

.pre_footer_section {
    border-bottom: 1px solid var(--pri);
    display: flex;
    flex-direction: column;
}

.pre_footer_item {
    padding: 36px 0;
    display: flex;
    justify-content: center;
    flex-direction: column;
    font-size: 18px;
}

.pre_footer_item:not(:last-of-type) {
    border-bottom: 1px solid var(--pri);
}

.pre_footer_item_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: bold;
}

.pre_footer_item_inner {
    display: none;
    flex-direction: column;
    line-height: 30px;
    font-size: 16px;
    width: 100%;
    margin-top: 15px;
}

.pre_footer_item_inner.active {
    display: flex;
}

.pre_footer_item_inner a { 
    color: var(--text);
    font-weight: normal;
}

.pre_footer_item_inner a:hover {
    color: var(--pri);
    text-decoration: underline;
}

.footer_nav_icon {
    display: flex;
    align-items: center;
    color: var(--text);
}

.footer_nav_icon:hover {
    color: var(--pri);
    cursor: pointer;
}

.copyright_footer {
    background: var(--text);
    color: var(--back);
    padding: 12px 20px 12px 20px; 
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: .6rem;
}

.terms_container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.copy_cont {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-top: 10px;
}

.copyright_footer a {  
    text-decoration: underline;
    font-weight: normal;
}

.rounded_img {
    border-radius: 4px;
}

.social_icon_container {
    align-items: center;
}

.social_icon_container p {
    margin: 16px 0;
}

.social_icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 38px;
}

.social_media_icon {
    color: var(--text);
    width: 36px;
    height: 36px;
}

.social_media_icon:hover {
    color: var(--pri);
}

.store_pages {
    order: 2;
}

.custom_pages {
    order: 3;   
}

.social_icon_container {
    order: 1;
}

@media only screen and (min-width: 580px) {
    .terms_container,
    .copy_cont {
        flex-direction: row !important;
        justify-content: center !important;
    }
}

@media only screen and (min-width: 830px) {
    .copyright_footer {
        padding: 12px 100px 12px 100px;         
        flex-direction: row;
    }
    
    .copy_cont {
        margin-top: 0;
    }
    
    .pre_footer {
        padding: 12px 100px 0px 100px; 
    }  
    
    .pre_footer_section {        
        white-space: nowrap;
        justify-content: space-around;
    }

}

@media only screen and (min-width: 1000px) {
   .footer_nav_icon {
       display: none;
   }  
   
   .pre_footer_item_inner {
       display: flex;
   }
   
   .pre_footer_item[data-editor-type='currency'] {
       padding: 18px 0 ;
   }
   
   .pre_footer_item {
       border-bottom: none !important;
   }
   
   .pre_footer_section {
        align-items: baseline;
        flex-direction: row;
        display: flex;
        gap: 180px;
   }
   
   .store_pages {
        order: 1;
    }
    
    .custom_pages {
        order: 2;   
    }
    
    .social_icon_container {
        order: 3;
    }
}


/*********************************************************************************/
/************** simple modal styling *********************************************/
/*********************************************************************************/

.simplemodal-container {
    z-index: 20000 !important;
    background: var(--back) !important;
    height: fit-content !important;
    width: 100% !important;
    max-width: 500px !important;
    top: 20% !important;
    border-radius: .625rem !important;
    padding: 0 10px 20px 10px !important;
}

#softadd-container #softadd-modal-title {
    background: var(--back) !important;
    border-bottom: 0 !important;
    text-shadow: none !important;
    color: var(--pri) !important;
    font-size: 22px !important;
    margin: 30px 0 0 0 !important;
    font-weight: bold !important;
}

#modal-feedback {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: calc(100% - 17px);
}

.md-content,
#md-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}

#md-content center {
    font-size: larger;    
}

#softadd-feedback-success button.success {
    background: transparent;
    color: var(--back);
}

.md-content button,
#softadd-feedback-success a,
.simplemodal-close {
    margin: 20px auto 0 auto;
    height: 40px;
    width: 100%;
    max-width: 195px;
    background: var(--pri);
    color: var(--back);
    border-radius: .625rem;
    border: 2px solid var(--pri);
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: capitalize;
}

#softadd-modal-content .close {
    display: none !important;
}

#softadd-modal-data {
    min-height: auto !important;
    margin-bottom: 15px !important;
}

#softadd-feedback-failure {
    height: fit-content !important;
}

#softadd-modal-data div button {
    width: 100% !important;
}

.md-content button:hover,
#softadd-feedback-success a:hover,
#softadd-feedback-success a:hover > button.success,
.simplemodal-close:hover {
    background: transparent;
    color: var(--pri) !important;    
}

#md-title {
    color: var(--pri);
    font-size: 30px;
    margin: 10px 0;
}


/***************************************************************************/
/**************** prod details *********************************************/
/***************************************************************************/

.breadcrumbs_container {
    display: grid;
    gap: 32px 12px;
    grid-template-columns: repeat(12, 1fr);
    margin: 0px auto;
    padding-left: 16px;
    padding-right: 16px;
}

.breadcrumbs_inner {
    grid-column: 1 / -1;
}

.breadcrumbs_inner_wrapper {
    position: relative;
}

#breadCrumbWrapper[data-visible='true']::before {
    content: "";
    position: absolute;
    width: 2rem;
    height: 100%;
    left: 0px;
    top: 0px;
    background-image: linear-gradient(to left, rgba(255, 255, 255, 0.3), rgb(255, 255, 255) 100%);
}

ul.breadcrumbs {
    list-style: none;
    display: flex;
    align-items: center;
    font-size: .75rem;
    white-space: nowrap;
    overflow: scroll;
    scrollbar-width: none;    
} 

ul.breadcrumbs li:not(:last-of-type) :after {
    content: "/";
    margin: 0 5px;
    color: var(--text);
}

ul.breadcrumbs li a {
    color: var(--sec);
    font-weight: normal;
}

ul.breadcrumbs li a:hover {
    color: var(--pri);
}

ul.breadcrumbs li:last-of-type > a {
    color: var(--pri);
    font-weight: bold;
}

.main_prod_container,
.prod_additional_wrapper {
    margin-top: 1em;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.prod_additional_wrapper.reviews {
    flex-direction: column-reverse;
}

.prod_image_container {
    display: flex;
    gap: 14px;
    width: 100%;
}

.prod_details_image {
    position: relative;
    width: 100%;
}

.prod_details_image img,
.prod_details_image a[data-lightbox="lightbox_images"] {
    /*width: 100%;*/
    height: 100%;
}

.prod_details_image a[data-lightbox="lightbox_images"] {
    display: flex;
    justify-content: center;
}


.additional_images {
    display: none;
    flex-direction: column;
    gap: .75rem;
    overflow: auto;
    padding: 5px 10px 5px 5px;
}

.additional_images img {
    border-radius: .625rem;
    opacity: .5;
    cursor: pointer;
    max-width: 140px;
    width: 100%;
}

.additional_image_selected {
    opacity: 1 !important;
    outline: 1px solid var(--pri);
    outline-offset: 4px;
}

.add_image_btn {
    background: var(--back);
    height: 44px;
    width: 44px;
    color: var(--text);
    position: absolute;
    top: 45%;
    border-radius: 50%;    
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.add_image_btn:active {
    transform: scale(.9);
}

.add_image_btn.left {
    left: 1rem;
}

.add_image_btn.right {
    right: 1rem;
}

.prod_details_img_counter {
    display: none;
    position: absolute;
    bottom: 1rem;
    background: var(--back);
    color: var(--text);    
    border-radius: 0.625rem;
    padding: 0px 0.5rem;
    font-size: 0.75rem;
    left: 50%;
    transform: translateX(-50%);
    line-height: 28px;
    font-weight: bold;
}

.wishlist_container {
    position: absolute;
    right: 1rem;
    bottom: 1rem;        
}

.wishlist_icon {    
    background: var(--back);
    height: 44px;
    width: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.wishlist_icon:active {
    transform: scale(.9);
}

.wishlist_container svg {
    width: 30px;
    height: 30px;
    color: var(--pri);
}

.prod_text_container,
.additional_details {    
    padding: 0 16px;
}

.prod_text_container h1 {
    font-weight: normal;
    font-size: 24px;
    line-height: 1.33;
    margin: 0px 0px 0.75rem;
}

.prod_text_container p,
.additional_details p {
    font-size: 1rem;
    line-height: 1.75rem;
    margin: 1em 0;
    display: flex;
    flex-direction: column;
}

.prod_text_container span span {
    font-weight: bold;
}

.prod_details_brand {
    margin-bottom: 20px;   
}

.prod_details_brand span {
    color: var(--sec);
    text-decoration: underline;
}

.prod_details_price {
    position: relative;
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 20px;
    display: flex;
    gap: 12px;
    width: 100%;
}

.prod_details_price:has(.prod_details_rrp) {
    color: #d9253b;
}

.prod_details_rrp {
    color: var(--sec);
    text-decoration: line-through;
    text-decoration-color: var(--pri);
}

.review_stars {
    margin-bottom: 20px;
    color: var(--text);
}

.out_of_stock_btn,
.add_To_Cart_Btn,
.no_review_button {
    height: 48px;    
    background: var(--pri);
    color: var(--back);
    border-radius: .625rem;
    border: 2px solid var(--pri);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
}

.out_of_stock_btn {
    margin-top: 2.25rem;
}

.out_of_stock_btn:hover,
.add_To_Cart_Btn:hover,
.no_review_button:hover {
    background: transparent;
    color: var(--pri);
    border-radius: .625rem;
}

.bulk_cont_outer {
    line-height: 1.5rem;
    background: var(--sec);
    padding: 1em;
    border-radius: .625rem;
    border: 2px solid var(--pri);  
     margin-top: 1rem;
}

.bulk_cont {
    display: flex;
    flex-direction: column;
    text-transform: capitalize;
    font-weight: normal;   
}


.share_icons {
    margin-top: .5rem;
}

#share_panel svg {
    height: 35px;
    width: 35px;    
}

#share_panel a {
    color: var(--pri);
}

#share_panel a#share_facebook:hover { color: #0866ff; } 
#share_panel a#share_pinterest:hover { color: #e60023; } 
#share_panel a#share_twitter:hover { color: #000000; } 

.share_icons a {
    cursor: pointer;
}

.add_to_cart_wrapper {
    margin-top: 2.25rem;
    display: flex;
    flex-direction: column;
}

.cart_input {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
    margin-bottom: 1em;
}

.cart_input input {
    text-align: center;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 0.625rem;
    border: 1px solid var(--text);
}

.cart_input input:focus {
    outline: 2px solid var(--pri);
    outline-offset: 2px;
}

.prod_additional_wrapper h2 {
    text-align: left !important;
}

.additional_details p {
    margin-top: 10px;
}

.additional_details,
.overall_rating_wrapper {
    width: 100%;
}

.product_desc,
.review_wrapper {
    padding: 0 16px;
}

.prod_options {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.prod_option_item  {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.review_wrapper {
    width: 100%;
}

.overall_rating_wrapper {
    padding: 0 16px;
}

@media only screen and (min-width: 750px) {
    .overall_rating_wrapper {
        padding: 0;
    }
    
    ul.breadcrumbs {
        margin-left: 0;
    } 
    
    .main_prod_container,
    .prod_additional_wrapper {
        margin-top: 2em;
        flex-direction: row;
        align-items: flex-start;
    }
    
    .prod_additional_wrapper.reviews {
        flex-direction: row;
    }

    
    .prod_text_container h1 {
        font-size: 28px;
        line-height: 1.29;
    }
    
    .prod_text_container,
    .additional_details,
    .overall_rating_wrapper {
        width: 50%;        
    }
    
    .additional_details {
        position: sticky;
        top: 16px;
    }
    
    .prod_image_container {
        position: sticky;
        top: 16px;
    }
    
    .additional_details,
    .overall_rating_wrapper,
    .overall_rating_wrapper {
        min-width: 331px;
    }
}

@media only screen and (min-width: 1024px) {
    .additional_images {
        display: flex;
    }
    
    .prod_text_container,
    .additional_details,
    .overall_rating_wrapper {
        width: 45%;        
    }   
    
    .prod_image_container {
        aspect-ratio: 743 / 600;
        max-width: 745px;
    }   
    
    .product_desc,
    .review_wrapper {
        max-width: 736px;
    }
    
}

@media only screen and (min-width: 1440px) {
    .prod_image_container {
        max-height: 600px;
    }
}


/* REVIEWS */

.overall_product_rating {
    border: 1px solid var(--sec);
    border-radius: .625rem;
    padding: 1.5rem;    
}

.overall_product_rating div {
    font-size: 1rem;
    line-height: 1.75rem;
}

#reviewSidePanel_rating {
    font-size: 32px;
    font-weight: bold;
}

.overall_product_rating h2 {
    margin-top: 0;
    margin-bottom: 20px !important;
}

.review_count {
    color: var(--text);
}

.review_item:not(:last-of-type) {
    margin-bottom: 1em;
    padding-bottom: 1em;
    border-bottom: 1px solid var(--sec);
}

.review_item h4 {
    font-weight: bold;
    margin-bottom: 1em;
}

.review_comments {
    margin: 1em 0;
}

.review_title,
.reviews_item_reply_title {
    text-transform: capitalize;
    font-style: italic;
    font-size: smaller;
    font-weight: bold;
}

.reviews_item_reply_text {
    margin-top: 10px;
}

.reviews_item_reply_container {
    background: var(--back);
    border: 2px solid var(--sec);
    border-radius: .625rem;
    padding: 15px;    
    margin-top: 1rem;    
}


.review_wrapper h2 {
    margin-top: 0;
}

.review_stars_item_date {
    display: flex;
    align-items: center;
    gap: 5px;
}

.unfilled_star {
    color: var(--back) !important;
}

.review_stars_item_date svg,
.review_stars svg,
#reviewSidePanelStars svg,
.product_stars svg {
    color: #fbd033;
}

.review_stars_item_date svg {
    height: 15px;
    width: 15px;
}

#review_form h3 {
    font-size: 2rem;
    margin: 1.5rem 0;
}

#review_form p {
    margin-bottom: 1.5rem;
}

#review_form center label {
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 0 !important;
}

#review_form label[for="txtYourName"] {
    margin-top: 1rem !important;
}

#review_form label {
    display: block;
    width: 100%;
    max-width: 500px;
    margin: 20px auto 10px auto;
}

#drop-target {
    width: 100%;
    max-width: 500px;
    margin: 10px auto 20px auto;
}

#comments_reply_section textarea,
#comments_reply_section input,
#comments_section textarea,
#comments_section input,
.contact_form textarea,
.contact_form input,
#review_form input,
.review_content {
    font-weight: normal;
    font-size: 1rem;
    line-height: 1.75rem;
    appearance: none;
    background-position: calc(100% - 1rem) 50%;
    background-repeat: no-repeat;
    border: solid 0.0625rem var(--pri);
    border-radius: 0.625rem;
    color: var(--text);
    display: block;
    padding: 0.5625rem 3rem 0.5625rem 1rem;
    transition: border-color 0.15s ease-in 0s, background-color 0.15s ease-in 0s;
    width: 100%;
    max-width: 500px;
    margin: 0 auto 5px auto;
}

#comments_reply_section textarea,
#comments_reply_section input,
#comments_section textarea,
#comments_section input {
    margin: 0 0 10px 0;
    width: 100%;
    max-width: revert;
}

textarea:focus {
    outline: 0;
}

#comment_email_label,
#comment_reply_email_label {
    font-style: italic;
    font-size: smaller;
    text-align: right;
}

#comments_reply_section textarea,
#comments_reply_section input,
#comments_section textarea,
.contact_form textarea,
.review_content,
.contact_form {
    box-sizing: border-box;
}

#review_form select {
    width: 100%;
    max-width: 500px;
    margin: 0 auto 20px auto;
}

#review_form center {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 500px;
    margin: 0 auto;
}

.blog_comments_reply_submit,
.blog_comments_submit,
.contact_notify_submit,
.shop_review_form_submit,
#panel_success a {   
    height: 48px;    
    background: var(--pri);
    color: var(--back) !important;
    border-radius: .625rem;
    border: 2px solid var(--pri);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    cursor:pointer;
    width: 100%;
    margin: 0 auto;
    max-width: 500px;
}

.blog_comments_submit,
.blog_comments_reply_submit {
    padding: 9px 16px !important;
}

#notify_form div[style='float:left'],
#notify_form div[style='float:right'],
#review_form div[style='float:left'],
#review_form div[style='float:right'] {
    float: none !important;
}

.blog_comments_reply_submit:hover,
.blog_comments_submit:hover,
.contact_notify_submit:hover,
.shop_review_form_submit:hover,
#panel_success a:hover {
    background: transparent;
    color: var(--pri) !important;
    border-radius: .625rem;
}

.shop_review_form_cancel,
.contact_notify_cancel {
    width: 100%;
    margin: 0 auto 1rem auto;
    max-width: 500px;
    font-weight: bold;
    text-decoration: underline;
    color: var(--pri);    
    display: flex;
    align-items: center;
    justify-content: center;
}

.shop_review_form_cancel:hover,
.contact_notify_cancel:hover {
    color: var(--sec);
    text-decoration: none;
}

#review_form .fb_error_item {
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
}

#panel_success {
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

#panel_success h1 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

#panel_success p {
    margin-bottom: 1rem;
}

.reviews_main_title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    gap: 10px;
}

.write_review_btn {
    color: var(--pri);
    text-decoration: underline;
    font-size: smaller;
}

.write_review_btn:hover {
    color: var(--sec);
    text-decoration: none;
}

@media only screen and (min-width: 750px) {
    .reviews_item_reply_container {
        margin-left: 2rem; 
    }
    
    .overall_rating_wrapper {
        position: sticky;
        top: 16px;
    }
}

/* SEARCH */

.cat_banner_desc {
    margin-top: 2rem;
}

.cat_banner_img{
    box-shadow: rgba(0, 0, 0, 0.2) 0px 0.25rem 0.5rem 0px;
    border-radius: 0.625rem;
    width: 100%;
}

.result_details {
    margin-top: 1rem;
    padding-bottom: 1rem;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 6px 8px -4px;
}

.result_details_inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 16px;
    text-align: center;
}

#result_count {
    margin-bottom: 1rem;
}

.no_products_found_cont {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.no_products_found_title span {
    font-size: 30px;
}

.browse_products_container {
    margin: 1rem 0 4rem;    
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.results_pager_container {
    width: 100%;
    padding-top: 20px;
}

.pagination {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 3px;
    justify-content: center;
    margin: 0 0 20px 0;    
}

.pagination li:hover {
    font-weight: bold;
}

.pagination li a {
    height: 20px;
    width: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
}

.pagination li.current a {
    font-weight: bold;
    color: var(--pri);
    background: var(--sec);
    border-radius: 50%;    
}

.pager_arrow_previous a,
.pager_arrow_next a {
    border: 2px solid var(--pri);
    background: var(--pri);
    color: var(--back) !important;
    border-radius: 50%;
    padding: 6px;
}

.pager_arrow_previous {
    margin-right: 15px;
}

.pager_arrow_next {
    margin-left: 15px;
}

.pager_arrow_previous a:hover,
.pager_arrow_next a:hover {
    background: var(--back);
    color: var(--pri) !important;
}

.selector_input {
    text-transform: capitalize;
}


@media only screen and (min-width: 750px) {
    .result_details_inner {
        flex-direction: row;
        text-align: left;
    }
    
    #result_count {
        margin-bottom: 0;
    }
}


@media only screen and (min-width: 900px) {
    .result_details {
        margin-top: 3rem;
    }
}

.contact_address {
    background: var(--back);
    border: 1px solid var(--sec);
    border-radius: .625rem;
    height: fit-content;
    padding: 20px 20px 0 20px;
    line-height: 20px;
    width: 100%;
    max-width: 500px;

}

.contact_form {
    width: 100%; 
    max-width: 500px;
}

.contact_address h1 {
    font-size: larger;
}

.contact_notify {
    max-width: 500px;
    margin-bottom: 4rem;
}

.contact_notify label {
    margin-top: 10px;
    display: block;
}

.contact_notify header,
#comments_section header {
    text-align: center;
    font-size: larger;
    margin-bottom: 2rem;
}

#google_map {
    border-radius: .625rem;
    width: 100%;
    max-width: 800px;
    max-height: 300px;
    margin-bottom: 4rem;
}

.container.contact_flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    gap: 2rem;
}

.contact_flex #panel_success {
    max-width: revert;
    margin-bottom: 4rem;
}

.special_offer_container {
    margin: 1rem 0 4rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

@media only screen and (min-width: 1090px) {
    .contact_address {
        width: fit-content;
    }
    
    #google_map {
        order: 2;
        margin-bottom: 0;
    }
    
    .contact_form,
    #panel_success {
        order: 3;
    }
    
    .contact_notify {
        margin-bottom: 4rem;
    }
}

/* BLOG */ 

.landing_inner_top #blog_featured_image {
    width: 100%;
    max-width: 545px;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 0.25rem 0.5rem 0px;
    border-radius: 0.625rem;
    position: relative;
    top: 15px;
}

.main_landing_inner.blog {
    border-radius: .625rem;
    background: var(--sec);
    padding: 0 15px;
}

.main_landing_inner.blog .featured_blog_tags,
#share_panel.blog {
    margin-top: 1.75rem;
}

.main_landing_inner.blog .featured_blog_tags {
    justify-content: center;
}

.main_landing_inner.blog .landing_inner_bottom h1 {
    font-size: larger;
    line-height: 1.5rem;
}

#fws_content a.featured_blog_tag_item,
#fws_content a.blog_item_tag {
    color: var(--back);
}

.blog_details {
    font-size: 14px;
    font-weight: normal;
    line-height: 18px !important;
}

.blog_details.date {
    font-style: italic;
}

.blog_content {
    margin: 0 auto;
    margin-top: 3rem;
    max-width: 600px;    
    line-height: 30px;
    font-size: larger;
}

#comments_section,
.blog_comments_container {
    margin: 3rem auto;
    max-width: 600px;    
}

.blog_comments_container {
    border-top: 1px solid var(--sec);
    padding-top: 3rem;
}

.comment {
    display: flex;
    flex-direction: column;
}

#comments_section {
    border-top: 1px solid var(--sec);
    padding-top: 3rem;
}

.blog_comments_title {
    text-align: center;
    font-size: larger;
    margin-bottom: 2rem;
}

.comment_item {
    padding: 10px;
    max-width: 90%;
    margin-bottom: 1rem;
}

.comment_item.comment_first {
    border: 1px solid var(--pri);
    border-radius: .625rem .625rem .625rem 0;
    align-self: flex-start;
    background: var(--sec);
}

.comment_item.comment_reply {
    border: 1px solid var(--sec);
    border-radius: .625rem .625rem 0 .625rem;
    align-self: flex-end;
    background: var(--back);
}

.comment_author {
    margin-bottom: 1rem;    
}

.comment_date {
    font-style: italic;
    font-size: smaller;
}

.comment_text {
    font-size: larger;
}

.blog_comments_reply_reply:not(:last-of-type) {
     border-bottom: 1px dashed var(--sec);
     width: 100%;
     margin-bottom: 2rem;
     padding-bottom: 10px;
}

.blog_comments_reply_reply {
    display: flex;
    justify-content: flex-end;
}

#comments_reply_section,
#comments_thanks {
    border-bottom: 1px dashed var(--sec);
    width: 100%;
    padding-bottom: 10px;
    max-width: 600px;
    margin: 2rem auto;
}

@media only screen and (min-width: 900px) {
    .main_landing_inner.blog {
        padding: 0;
    }
    
    .main_landing_inner.blog .landing_inner_top {
        height: fit-content;
        margin-right: 15px;
    }
    
    .main_landing_inner.blog .landing_inner_bottom {
        margin-left: 15px;
        text-align: left;
        align-items: flex-start;
    }
    
    .main_landing_inner.blog .featured_blog_tags {
        justify-content: flex-start;
    }
}

/* INSTAGRAM */

.instgram_title {
    font-size: 20px;
    text-align: center;
    margin-bottom: 3rem;
}

.instagram_container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-around;
    margin-bottom: 3rem;
}

.instagrid_item {
    max-width: 250px;
    border-radius: .625rem;
    background: var(--back);
    height: fit-content;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;    
}

.instagrid_item:hover {
    transform: scale(1.05);
    box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
}

.instagrid_item img {
    max-width: 250px;
    border-radius: .625rem .625rem 0 0;
}

.instagrid_caption {
    width: 100%;
    white-space: normal;
    margin-top: 10px;
    line-height: 25px;
    padding: 0 10px 10px 10px;
    box-sizing: border-box;
    word-break: break-word;
}

/* Core Pages styling */

.fws_sitemap_container .sitemap_divider:first-of-type {
    display: none;
}

.fws_sitemap_container ul {
    margin-bottom: 24px;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 15px 10px;
}

.fws_sitemap_container ul li a {
    color: var(--back) !important;
    background: var(--pri);
    padding: 6px 8px 3px 8px;;
    border-radius: 4px;
}

.fws_sitemap_container ul li a:hover {
    background: var(--sec);
    color: var(--pri) !important;
}

#fws_content strong {
    font-weight: bold;
}

#fws_content table {
    border: 1px solid var(--pri);
    border-radius: .625rem;
    border-collapse: collapse;
}

#fws_content table td {
    border: 1px solid var(--pri);
    padding: 10px;
}

.results_sortby_container {
    display: none;
}

.uc_banner {
    line-height: 25px;
}

.uc_banner img {
    border-radius: .625rem;
    width: 100%;
    height: auto;
}

.blog_roll h1 {
    text-align: center;
}

.blog_roll_item_container {
    margin-top: 2.5rem;
}

.blog_roll_item {
    display: flex;
    flex-direction: column;    
    gap: 5px;
    width: 100%;   
    margin-bottom: 2rem;
}

.blog_roll_item_info a {
    white-space: normal;
}

.blog_roll_item_image img {
    width: 100%;
    border-radius: 0.625rem;
}

.blog_roll_item a.button_primary {
    color: var(--back) !important;
    align-self: flex-end;
}

.blog_roll_item_info_name {
    color: var(--text) !important;
}

.blog_roll_item_additional {
    font-size: smaller;
}

.blog_roll_item_additional em {
    font-style: italic;
}

.blog_roll_item_abs {
    margin-top: 1rem;
}

.blog_roll_item_info {
    display: flex;
    flex-direction: column;
    
}

.blog_content img {
    border-radius: .625rem;
}

@media only screen and (max-width: 500px) {
    .blog_roll_item a.button_primary {
        width: 100%;
        max-width: revert;
    }
    
    .blog_content img {
        width: 100%;
    }
}

@media only screen and (min-width: 900px) {
    
    .blog_roll_item_image,
    .blog_roll_item_info {
        max-width: 48%;   
        width: 100%;
    }
    
    .blog_roll_item {
        flex-direction: row;   
        gap: 20px;
    }
    
    .blog_roll_item {
        margin-bottom: 4rem;
    }
    
    .blog_roll_item_info_name {
        color: var(--text) !important;
        font-size: x-large;
    }
}

.header_banner {
    width: 100%;
    border-radius: .625rem;
}

#prodDescription strong {
    font-weight: bold;
}

#prodDescription ul {
    padding: 0 20px;
}














	
    
      