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

Store Name  : Designer Posh Watches
Store URL   : http://www.designerposhwatches.co.uk/

Author      : Daniel Widdup
Author email: dwiddupdev@gmail.com

======================================================================================================================= */


html,
body,plac
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;
    vertical-align: baseline;
    box-sizing: border-box;
    
}

*:not(.slick-track):not(.slick-list){transition: all .2s;}


html {
    scroll-behavior: smooth;
}

.disable_scroll {
    overflow: hidden;
}

img {
    vertical-align: bottom;
}

:root {
    --highlightRed: #BD0000;
    --backRed: #CF3236;
    --black: #000;
    --upsellBlack: #1D1D1D;
    --text: #1B252F;
    --background: #FFF;
    --navText: #FFF;
    --aside: #1D1D1D;
    --placeholder: #5d5d5d;
    --modalBackground: #ebebeb;
    --redShadow: #CF323660;
}

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

a:hover {
    color: var(--backRed);
}

#fwsbar {
    display: none;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10000000;
}

#fwsBarclone {
    min-height: 27px;
    background: var(--backRed);
}

#fwsBarclone#fwsBar {
    display: block;
}

body {
    height: 100vh;
    font-family:Manrope, Helvetica, Arial, sans;
    /*font-family: Roboto, Helvetica, Arial, sans !important;*/
    font-size: .9em;
    background: var(--background);
}

textarea {
    font-family: Manrope, Helvetica, Arial, sans !important;
    padding: 10px;
    width: 100%;
    height: 200px;
    box-sizing: border-box;
    border: 1px solid var(--text);
}


#fws_content h2 {
    text-align: center;
}

@media only screen and (min-width: 830px) {
    #fws_content h2 {
        text-align: left;
    }
}

input {
    border: 1px solid var(--text);
    height: 40px;
    width: 100%;
    box-sizing: border-box;
    padding: 0 10px;
}

input::placeholder {
    font-style: italic;
    text-transform: lowercase;
}

input:focus {
    outline: none;
}

h2,
#page_container h1{
    font-size: 21px;
    margin-bottom: 16px;
    color: var(--backRed);
    letter-spacing: 1px;
    font-weight: 300;
}

#page_container h1 {
    margin: 0 auto;
    margin-top: 9rem;
    width: fit-content;
    font-size: 1.6rem;
}

h3 {
    font-weight: 300;
}

p {
    font-size: 12px;
    text-align: center;
    line-height: 1.5;
}

p a {
    color: var(--backRed);
    text-decoration: underline;
}

p a:hover {
    color: var(--highlightRed);
    text-decoration: underline;
}

select,
label {
    letter-spacing: 1px;
}

@media only screen and (min-width: 530px) {
   #page_container h1 {
        margin-top: 12rem;        
    }
}

@media only screen and (min-width: 830px) {
    h2 {
        margin-top: 20px;
    }
    
    input,
    button,
    select {
        height: 47px;
    }
    
    p {
        font-size: 14px;
        text-align: left;
    }
}

@media only screen and (min-width: 1030px) {
    h2 {
        font-size: 28px;
    }   
}

#general_overlay{
    position: fixed;
    top: 0; right: 0; left: 0; bottom: 0;
    /*background-color: rgba(0,0,0,0.7);*/
    z-index: 99;
    visibility: hidden;
    opacity: 0;
    transition: 0.4s;
}

#general_overlay.general_overlay_active{
    visibility: visible;
    opacity: 1;
}

.border_top_main {
    border-top: 1px solid var(--text);
}

a.add_to_cart_btn {
    width: 100%;
    color: var(--background);
    background: var(--backRed);
    padding: 0.75rem 1.5rem 0.8rem;
    border: 0.125rem solid transparent;
    cursor: pointer;
    box-sizing: border-box;
    text-transform: uppercase;
    font-size: .75rem;
    display: flex;
    justify-content: center;
    letter-spacing: 1px;
}

.scroll_to_top_btn {
    opacity: 0;
    position: fixed;
    bottom: 8rem;
    right: 1.25rem;
    background: var(--backRed);
    padding: 10px;
    border-radius: 50%;
    /*animation: fadeIn .3s ease;*/
    z-index: 10;
    color: var(--background);
}

.scroll_to_top_btn:hover {
    color: #FFF !important;
    background: var(--highlightRed);
}

#details_info_payment_gateways {
    display: flex;    
    justify-content: space-between;
    margin-top: 1em
}

#details_info_payment_gateways img {
    max-width: 35px;   
}

@keyframes fadeIn {
    0% {
        opacity: 0;   
    }
    
    100% {
        opacity: 1;
    }
}

@media only screen and (min-width: 400px) {   
    #details_info_payment_gateways img {
        max-width: 50px;   
    }
}

@media only screen and (min-width: 830px) {
   .
}

@media only screen and (min-width: 1020px) {
    a.add_to_cart_btn {        
        font-size: 14px;
    }
}

.page_grid img {
    width: 100%;
    height: auto;
    margin: 2rem 0;
}

/*****************************************************************************
*********** Maintenance styling *********************************************
**************************************************************************/

.modal_overlay {
    background: rgba(0, 0, 0, .8);
    height: 100vh;
    width: 100vw;
    position: fixed;
    top: 0;
    z-index: 2000;
    backdrop-filter: blur(3px);
    display: flex;
    justify-content: center;    
}

.maintenence_modal {
    background: #1d1d1d;
    height: fit-content;
    max-width: 400px;
    border-radius: 10px;        
    padding: 20px;
    box-shadow: #CF323660 0px 10px 50px;
    margin-top: 14vh;
    margin: 14vh 20px 0 20px;
    color: #FFF;
    position: relative;
}

.maintenence_modal p {
    font-size: 16px;
    font-weight: lighter;
    text-align: center;
}

.maintenence_modal h2 {
    text-align: center;
    margin-top: 15px;
}

.maintenence_modal img {
    position: absolute;
    max-width: 30px;
    top: 10px;
    right: 10px;    
}          

#modalTime {
    color: #CF3236;
    font-weight: bold;
    font-size: 25px;
}
            


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

nav {
    background: var(--black);
    display: flex;
    flex-direction: column;
    position: fixed;
    right: 0;
    top: 0;
    left: 0;
    z-index: 999;
    box-shadow: var(--redShadow) 0px 10px 10px -10px;
    /*box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;*/
}

nav a {
    transition: .2s;
    cursor: pointer;
    font-weight: normal;
}

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

.main_body {
    margin-top: 205px;
}

#logo {    
    width: 100%;
    max-width: 90px;
    height: auto;
}

#smallLogo {
    width: 60px;
}

div[data-editor-type='customer-accounts'] {
    width: 35px;
}

@media only screen and (min-width: 328px) {      
   
    .main_body {
        margin-top: 188px;
    }
}

@media only screen and (min-width: 530px) {   
    
    #logo {
        width: 100%;
        max-width: 270px;
    }
    
    .main_body {
        margin-top: 188px;
    }
}


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

.nav_tabs_right {
    display: flex;
    gap: 5px;
    order: 2;
    justify-content: flex-end;
}

.nav_link_item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    width: 30px;
}

.nav_link_item.hamburger {
    width: 85px;
    align-items: flex-start;
}

.nav_item_text {
    display: none;
}

.main_nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 8px 10px 12px 10px;
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

.nav_categories {
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 2em;
    border-top: 1px solid var(--backRed);
    margin-top: 10px;
    position: relative;
}

.main_nav_link {
    padding: 18px 0 14px 0;
    border-bottom: 4px solid var(--black);
    display: flex;
    align-items: center;
    font-size: 15px;
    letter-spacing: 1px;
}

#deskAllBrands_arrow,
#deskSunglasses_arrow {
    position: relative;
    top: 2px;
}

.no_products_found_title {
    font-size: 1.5rem;
    text-align: center;
}

.no_products_found_title span {
    font-weight: bold;
    color: var(--highlightRed);
}

.no_products_found_title_text {
    text-align: center;
    margin-bottom: 30px;
}

.main_nav_link:hover,
.dropDown_selected {
    color: var(--highlightRed);
    border-bottom: 4px solid var(--backRed) !important;
}

#navCats {
    display: none;
}

.input_form {
    display: flex;
    align-items: center;
    height: 31px;
    background: var(--black);
    border: 1px solid var(--backRed);
    padding: 5px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

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

.quick_search_button:hover {
    color: var(--highlightRed);
}

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

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

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

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

#cartLink:hover #sp_basket_info_count {
    color: var(--highlightRed);
}

#sp_basket_info_count {
    position: absolute;
    top: 9px;
    font-size: smaller;
}

#cartLink {
    position: relative;
}

.mobile_nav {
    position: absolute;
    top: 130px;
    left: 0;
    height: calc(100vh - 73px);
    width: 100%;
    background: var(--black);
    display: none;
    animation: slideDown .5s ease;
}

@media only screen and (max-width: 318px) {
    .mobile_nav {
        top: 150px;
    }
}

.mobile_nav_page,
.mobile_nav_page_sub {
    display: flex;
    flex-direction: column;
    width: 100%;
    font-size: 14px;
    letter-spacing: 1px;
    overflow: auto;
    padding-bottom: 40px;
}

.mobile_nav_page::-webkit-scrollbar {
  width: 6px;
}

/* Track */
.mobile_nav_page::-webkit-scrollbar-track {
  background: transparent;
}

/* Handle */
.mobile_nav_page::-webkit-scrollbar-thumb {
  background: var(--backRed);
}

/* Handle on hover */
.mobile_nav_page::-webkit-scrollbar-thumb:hover {
  background: var(--highlightRed);
}

.mobile_nav_page_sub { 
    display: none;   
    background: var(--black);
    height: 100vh;
    position: absolute;
    left: 0;
    top:0 ;
}

.mobile_nav_page span,
.mobile_nav_page_sub span{
    background: var(--offBlack);
    width: 100%;
    padding: 15px 30px;
    text-transform: uppercase;
    color: var(--navText);
}

.mobile_nav_page_sub span {
    display: flex;
    align-items: center;
    max-height: 47px;
    cursor: pointer;
}

.mobile_nav_page a,
.mobile_nav_page_sub a {
    width: 100%;
    padding: 15px 30px;
    border-bottom: 1px solid var(--upsellBlack);
    display: flex; 
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
    max-height: 47px;
}

.close_mob_nav,
.close_desk_nav {
    animation: slideUp .5s ease !important;    
}

#accountLinkLoggedIn.nav_link_item {
    color: var(--backRed);
}

#accountLinkLoggedIn.nav_link_item:hover {
    color: var(--highlightRed);
}
 
.desktop_nav {
    display: none;
    animation: slideDown .5s ease;
    height: calc(100vh - 161px);
    width: 100%;
    position: absolute;
    top: 63px;
    z-index: 20;
    background: var(--upsellBlack);
    padding: 2rem 3.375rem 2rem;
}

.desktop_nav h3 {
    font-weight: lighter;
    font-size: 1.2rem;
    text-transform: capitalize;
    color: var(--navText);
    margin-bottom: 1.5rem;
    width: 100%;
    letter-spacing: 1px;
    text-decoration: underline;
    text-underline-offset: 5px;
    text-decoration-thickness: 2px;
    text-decoration-color: var(--highlightRed);
}

.desktop_nav_inner {
    display: none;
    flex-direction: column;
    width: 100%;
    animation: slideDown .5s ease;
    max-width: 1360px;
    margin: 0 auto;
    letter-spacing: 1px;
    padding: 0 1.5rem;
}

.desktop_nav_inner_section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;

    height: 320px;
    flex-wrap: wrap;
    min-width: 50%;
}

.desktop_nav_inner_section_column {
    display: flex;
    flex-direction: column;
    width: 25%;
}

.desktop_nav_inner_section:not(:last-of-type) {
    border-bottom: 1px dashed var(--backRed);
    padding-bottom: 10px;
    margin-bottom: 15px;
    width: 100%;
}

#allBrandsDesk,
#sunglassesDesk {
    padding: 0 10px 90px 0;
    /*display: flex;
    flex-wrap: wrap;*/
}

#allBrandsDesk a,
#sunglassesDesk a {
    font-size: .9rem;
    line-height: 30px;
    min-width: 25%;
    font-weight: 600;
}

/*#sunglassesDesk a {
    display: flex;
    justify-content: center;
}*/


@keyframes slideDown {
    0% {
        height: 0;
    }   
    100% {
        height: calc(100vh - 65px);
    }
}

@keyframes slideUp {
    0% {
        height: calc(100vh - 65px);
    }   
    100% {
        height: 0;
    }
}

.slideIn {
    display: flex !important;
    animation: slideIn .5s ease;
    position: absolute;
    top: 0;
    z-index: 10;
}

@keyframes slideIn {
    0% {
        left: 100vw; /* off screen */
    }   
    
    100% {
        left: 0;
    }
}

.slideOut {
    display: flex !important;
    animation: slideOut 1s ease;
    position: absolute;
    top: 0;
    z-index: 10;
}

@keyframes slideOut {
    0% {
        left: 0; 
        display: flex !important;
    }   
    
    100% {
        left:  100vw;/* off screen */
        display: none;
    }
}

.back_icon {
    position: relative;
    left: -7px;
}

.has_children {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--upsellBlack);
    color: var(--navText);
    padding: 15px 30px;
    max-height: 47px;
    cursor: pointer;
}

.has_children:hover {
     color: var(--highlightRed);
}

.sub_category_cont {
    display: none;
}

.has_children a {
   border-bottom : 0;
   padding: 0;
   width: fit-content;
}

.is_cat_child {
    justify-content: flex-start !important;
}

.mobile_nav_page_sub a.is_cat_child {
    background: var(--upsellBlack);
    border-bottom: 1px solid var(--black);
}

.is_cat_child svg {
    color: var(--backRed);
    margin-right: 6px;
}

.has_overflow {
    overflow: auto;
    padding-bottom: 200px;
}

.desktop_nav.has_overflow {
    padding-bottom: 0;
}

/* width */
.has_overflow::-webkit-scrollbar {
  width: 6px;
}

/* Track */
.has_overflow::-webkit-scrollbar-track {
  background: transparent;
}

/* Handle */
.has_overflow::-webkit-scrollbar-thumb {
  background: var(--backRed);
}

/* Handle on hover */
.has_overflow::-webkit-scrollbar-thumb:hover {
  background: var(--highlightRed);
}


@media only screen and (min-width: 530px) {
    .mobile_nav {
        top: 145px;
        height: calc(100vh - 90px);        
    }
    
    .main_nav {       
        padding: 8px 20px 12px 20px;        
    }
    
    .nav_tabs_right {
        gap: 15px;        
    }

    @keyframes slideDown {
        0% {
            height: 0;
        }   
        100% {
            height: calc(100vh - 90px);
        }
    }
    
    @keyframes slideUp {
        0% {
            height: calc(100vh - 90px);
        }   
        100% {
            height: 0;
        }
    }
}


@media only screen and (min-width: 830px) {
    .main_nav {
        flex-wrap: nowrap;
        padding: 12px 40px 0px 40px;
        gap: 64px;
    }
    
    .nav_item_text {
        display: block !important;
    }
    
    .nav_link_item.hamburger {
        display: none;
    }
    
    .nav_tabs_left {
        width: auto;
        order: 1;
    }
    
    .nav_tabs_center {
        order: 2;
    }
    
    .nav_tabs_right {
        width: 300px;
        order: 3;
    }
    
    input[name="txtQuickSearch"] {
        max-width: 400px;
    }
    
    .input_form {
        max-width: 400px;
        height: 40px;
    }
    
    #navCats {
        display: flex;
    }
    
    #logo{
        width: 270px;
    }
    
    .main_body {
        margin-top: 220px;
    }
}

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

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


/* SLIDER ==============================================================*/

.slider-wrapper {    
    position: relative;
    top: -17px; /* was 9px*/
    /*aspect-ratio: 1920 / 600;*/
    height: 34vw;
}

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

.flexslider {
    float: none !important;
    -webkit-border-radius: 0 !important; 
    -moz-border-radius: 0 !important; 
    -o-border-radius: 0 !important; 
    border-radius: 0 !important; 
    -webkit-box-shadow: none !important; 
    -moz-box-shadow: none !important; 
    -o-box-shadow: none !important; 
    box-shadow: none !important; 
    margin: 0 !important;
    /*min-height: 30vw;*/
    
}

.slider-wrapper.theme-default #slider.flexslider .slides img {
    max-height: none !important;
}

@media only screen and (min-width: 530px) {
    .slider-wrapper {    
        top: -0px; /* was -28px */
    }
}


@media only screen and (min-width: 830px) {
    .slider-wrapper {    
        top: -2px; /* was -2px */
    }
}


/* END SLIDER ===========================================================*/

/* ASIDE UPSELLS */

.upsells {
    background: var(--upsellBlack);  
    position: relative;
    top: -23px; /* was 10px*/
    height: 50px;
    overflow: hidden;
}

.upsells p {
    font-size: 12px !important;
    letter-spacing: 1px;
}

.upsells_inner {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0px 40px;
    overflow: hidden;
    color: var(--background);
    box-sizing: border-box;
}

.upsells_inner span {
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    white-space: nowrap;
    width: 200px;
}

.upsells_inner span svg {
    height: 30px;
    color:var(--backRed);
}

.slick-track {
    display: inline-flex;
}

.popular_brands_container .slick-slide {
    pointer-events: auto !important;
}

.slick-slide:not(.slick-slide.slick-active) {
    opacity: 0;
    pointer-events: none;
}

@media only screen and (min-width: 530px) {    
    
     .upsells_inner {   
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-around;
        padding: 16px 40px;
    }
    
    .upsells_inner span {
        justify-content: flex-start;
        gap: 20px;
    }
        
    .upsells_inner a {        
        flex-direction: column;
        justify-content: space-around;
        gap: initial;
    }
    
    .upsells_inner span svg {
        height: 50px;
        color:var(--backRed);
    }
    
    .upsells p {
        font-size: 14px !important;
    }
    
    .upsells {        
        top: -4px;
        height: auto;
        overflow: auto;
    }
    
    
}

@media only screen and (min-width: 680px) {    
    .upsells_inner span {
        justify-content: center;
        flex-direction: column;
        gap: 10px;
    }
}

@media only screen and (min-width: 830px) {
    .upsells {    
        top: -6px;
    }   
    
    
}

/* END ASIDE UPSELLS*/

/* MAIN STYLING*/

.bottom_button_right {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    margin-top: 1rem;
}

a.main_link {
    text-decoration: underline;
    color: var(--text);    
    font-size: 12px;
}

a.main_link:hover {
    color: var(--highlightRed);  

}

.container,
#generic_content_section {
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
}

#generic_content_section {
    margin-top: 220px;
    margin-bottom: 3rem;
}

@media only screen and (min-width: 530px) {
   .container,
    #generic_content_section {
        max-width: 540px;
    }
    
}

@media only screen and (min-width: 830px) {
   .container,
    #generic_content_section {
        max-width: 740px;
    }
    
    a.main_link {          
        font-size: 14px;
    }
}

@media only screen and (min-width: 1020px) {
   .container,
    #generic_content_section {
        max-width: 1400px;
        padding: 0 3.25rem;
    }
}


/* welcome text*/

.welcome_text {
    width: 100%;
    max-width: 580px;
    color: var(--text); 
    text-align: center;
    margin: 0 auto;
    padding-top: 20px;
    margin-bottom: 35px;
}

.welcome_text p {
    text-align: center;
}

.welcome_text a {
    text-decoration: underline;
    color: var(--backRed);    
    text-align: right;
    letter-spacing: 1px;
}

.welcome_text a:hover {
    color: var(--highlightRed);
    
}

@media only screen and (min-width: 830px) {
   .welcome_text {
        max-width: 45rem;
       
    }
}

@media only screen and (min-width: 1020px) {
   .welcome_text {        
        margin-bottom: 3.1rem;
    }
}

/* IMAGE CATS ======================================================== */

.cats_with_images {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 15px 0;
    transition: .1s ease;
    overflow: hidden;
    min-height: 465px;
    margin-top: 30px;
}

a.cat_image_item:hover {
    color: var(--text) !important;
}

.image_category_name {
    line-height: 1.25;
    position: relative;
    display: flex;
    align-items: center;    
    text-align: left;
    font-size: 17px;
    letter-spacing: 1px;
}

.cat_image_item {
    color: var(--text);
    max-width: 48%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1.5rem;
}

.cat_image_item img {
    opacity: 1;
    transition: .2s ease;
    width: 100%;
    aspect-ratio: 1 / 1;
    height: auto;
    margin-bottom: .5rem;
    border: 2px solid var(--backRed);
}

.cat_image_item:hover .cat_image {
    opacity: .4;
}

.hover_arrow {
    display: none;
    position: absolute;
    left: 0;
    opacity: 0;
    color: var(--backRed);
    width: 100%;
    transition: .2s ease-in-out;
}


@media only screen and (max-width: 370px) {
    .image_category_name  {
        font-size: 13px;
    }
}

@media only screen and (min-width: 530px) {
    
   
}

@media only screen and (min-width: 1020px) {
   .cat_image_item {    
        max-width: 22%;      
        text-align: left;
    }
    
    .image_category_name {
        width: 100%;
    }
    
    .hover_arrow {
        display: block;
    }
    
    .cat_image_item:hover .hover_arrow {
        opacity: 1;
        transform: translateX(calc(100% - 30px));
    }
    
    .cats_with_images {
        height: 330px;
        min-height:330px;
        margin-top: 70px;
    }
    
    
}

/* POPULAR BRANDS */

.popular_brands_container {
    background: var(--aside);
    padding: 1.5rem 0 2.5rem;
    color: var(--navText);    
    height: 422px;
    overflow: hidden;  
}

.popular_brands_container h2 {
    text-align: center;
    padding: 0 1rem;
    margin-bottom: 3rem;
    margin-top: 0;
    color: var(--background);
}

.top_brands_slider {
    overflow: hidden;
    position: relative;
    min-height: 29vw;
    /*display: flex;
    overflow-x: auto;*/
}

.top_brands_slider img {
    border-left: 3px solid var(--backRed);
    border-right: 3px solid var(--backRed);
    border-top: 3px solid var(--highlightRed);
    border-bottom: 3px solid var(--highlightRed);
    /*width: 100%;
    height: auto;*/
}

.shop_all_brands_link {
    width: 100%;
    display: flex; 
    justify-content: center;
}

.shop_all_brands_link a {
    font-size: 12px;
    text-decoration: underline;
    text-underline-offset: 0.1875rem;
    text-decoration-thickness: 0.0625rem;
    cursor:pointer;
    margin-top: 15px;
    letter-spacing: 1px;
}

.top_brands_slider .slick-slide:not(.slick-slide.slick-active) {
    opacity: 1;
}

.left_arrow,
.right_arrow {
    position: absolute;
    width: 35px;
    height: 35px;
    cursor: pointer;
    bottom: 5px;
}

.left_arrow {
    left: 10px;
}

.right_arrow {
    right: 10px;
}

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

.slick-dots {
    display: flex;
    width: 75%;
    justify-content: center;
    padding: 10px 0;
    margin: 32px auto 0 auto;
    flex-wrap: wrap;
}

.slick-dots li button {
    height: auto;   
}

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

.slick-dots li button:before {
    font-family: 'slick';
    font-size: 6px;
    line-height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: var(--placeholder);
    content: '';
    text-align: center;
    opacity: .25;
    color: black;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {    
    background: var(--background);    
}

.brands_slider_item {
    margin: 0 2vw;
    position: relative;
    width: fit-content !important;
}

.brands_slider_item img {
    aspect-ratio: 300 / 400;
}


@media only screen and (min-width: 530px) {
    .slick-dots {
        margin: 0;
        margin-top: 32px;
        width: 100%;
    }    
    
    .slick-dots li button:before {
        width: 20px;
        height: 20px;        
    }
    
    .left_arrow,
    .right_arrow {        
        bottom: 2px;
    }
    
    .brands_slider_item {
        margin: 0 1vw;        
    }
    
    .popular_brands_container {   
        height: 615px;
        overflow: hidden;       
    }
       
}


@media only screen and (min-width: 1020px) {
   .popular_brands_container {
        padding: 2.5rem 0 3.6rem;
    }
    
    .popular_brands_container a {
        font-size: 14px;
    }
    
    .left_arrow,
    .right_arrow {
        width: 55px;
        height: 55px;
    }
    
    .slick-dots {        
        padding-top: 40px;
        margin-bottom: 15px;
    }
    
    .left_arrow,
    .right_arrow {        
        bottom: 7px;
    }
    
    .popular_brands_container {  
        height: 700px;            
    }
    
}

/* BANNER STUFF ====================================================*/

.main_banner_cont .uc_banner {
    border-top: 1px solid var(--offBlack);
}

/* FEATURED PRODUCTS ===================================================================*/

.featured_products_main h2 {
    margin-top: 20px;
}

.featured_products_main {
    text-align: center;
    position: relative;
    color: var(--text);
    height: 750px;
    overflow: hidden;
}

.featured_products_main.new_in {
    /*height: auto;*/
}

.new_in .featured_products {
    /*min-height: 49vh !important;*/
}

.featured_products_main p {
    text-align: center !important;
}

.featured_products,
.related_products { /* Slick slider cont*/
    margin-bottom: 40px;
    margin-top: 15px;
    overflow: hidden;
    padding: 10px 0;
    /*height: 62vh;*/
    /*display: flex;
    overflow: auto !important;*/
}

.new_in .featured_products {
    /*min-height: 110vw;*/
    overflow: hidden;
}

.new_in {
    overflow: hidden;
    min-height: 59vh;
}

.related_products {
    position: relative;
}

.related_prods_cont {
    border-top: 1px solid var(--text);
    padding-top: 24px;
}


.related_prods_cont h2 {
    text-align:center;
}

.featured_product_item {
    padding: 1rem;
    margin: 0 2vw;
    height: auto;
    box-shadow: var(--redShadow) 0 2px 5px;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.featured_product_item .brand {
    font-size: .65rem;
    color: var(--placeholder);
    margin-bottom: .4rem;
    line-height: 1.5;
    width: 100%;
    font-weight: bold;
}

.featured_product_item a picture {
    margin: 0 auto;
    margin-bottom: .65rem;
}

.featured_product_item a img {
    width: 100%;
    height: auto;
}

.featured_product_item h3 {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 1.9rem;
    letter-spacing: 1px;

}

.featured_product_item .price {
    font-size: 1rem;
    line-height: 1.5;
    font-weight: bold;
    width: 100%;
}

.featured_product_item .add_to_cart_btn {
    margin-top: 1rem;
}

.slick-active { 
    z-index: 10;
}

.featured_products .slick-dots li.slick-active button:before,
.related_products .slick-dots li.slick-active button:before,
.popular_brands_container .slick-dots li.slick-active button:before {    
    background: var(--backRed);  
    opacity: 1;
} 

.featured_products .left_arrow,
.featured_products .right_arrow {
    bottom: 290px;
    z-index: 10;
}

.related_products .left_arrow,
.related_products .right_arrow {
    bottom: 17px;
    z-index: 10;
}

.featured_products .slick-dots li,
.related_products .slick-dots li{
    margin: 0 2px;
}

.featured_products .slick-slide:not(.slick-slide.slick-active),
.related_products .slick-slide:not(.slick-slide.slick-active){
    opacity: 1;
}

.product_item_section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.featured_product_image {
    position: relative;   
    aspect-ratio: 1 / 1;
}

.overlay_container {
    position: absolute;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
}

.product_view_details_overlay {   
    opacity: 0;
    box-shadow: 0 6px 24px var(--redShadow);
    color: var(--highlightRed);
    padding: 2vh ;
    background: var(--background);
    height: fit-content;
    margin-top: 11vh;
    text-transform: uppercase;
    transform: scale(1.1);
    transition: .3s ease;
    font-size: 12px;
}

.featured_product_image:hover .product_view_details_overlay {
    opacity: 1;
    transform: scale(1);
}

.product_offer_overlay {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 10px;
    padding: 0px 8px;
    text-transform: uppercase;
    color: var(--background);
    letter-spacing: 2px;
    line-height: 24px;
    z-index: 3;
}

.product_offer_overlay.offer {
    background: var(--backRed);
}

.product_offer_overlay.new {
    background: var(--black);
}

.product_offer_overlay.hot {
    background: var(--highlightRed);
}

@media only screen and (min-width: 530px) {
    .featured_products .slick-dots li,
    .related_products .slick-dots li {
        margin: 0 5px;
    }
    
    .featured_product_item a img {        
        min-height: auto;
    }
    
    .featured_products_main,
    .new_in .featured_products {       
        /*height: auto;*/
    }
    
}

@media only screen and (min-width: 830px) {
   .featured_products,
    .related_products { /* Slick slider cont*/        
        min-height: 35vh;
    }
    
    .new_in .featured_products {
        min-height: 29vh;
    }
}


@media only screen and (min-width: 1020px) {
   .featured_products_main h2 {
        margin-top: 50px;
    }
    
    .featured_products_main {
        height: 780px;
    }
    
    .featured_products,
    .related_products { /* Slick slider cont*/
        margin-top: 24px;
    }
    
    .featured_product_item .price {
        font-size: 21px;
        
    }
}

/* BLOGS ===========================================================*/

aside.blog_container {
    background: var(--aside);
    color: var(--background);
    padding: 24px 0 36px 0 ;
    min-height: 132vh;
    /*display: none;*/
}

.featured_blog_item a {
    white-space: wrap;
    color: var(--text);
    letter-spacing: 1px;
}

.featured_blog_item a:hover {
    color: var(--backRed);
}

a.featured_blog_image_container {
    margin: 0 auto;
    min-height: 13vw;
}

.featured_blog_title {
    text-align: center;    
    color: var(--background);
    letter-spacing: 1px;
}

.featured_blog_item_abstract {
    margin-bottom: 1rem;
    text-align: left;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.featured_blog_item_cont {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.6rem;
    width: 100%;
    min-height: 29vw;
}

.featured_blog_info_name {
    font-size: 20px;
    line-height: 1.25;
    margin: 12px 0 24px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.featured_blog_info_view {
    text-decoration: underline;
    text-underline-offset: 0.1875rem;
}

.featured_blog_item {
    background: var(--background);
    color: var(--text);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    flex-grow: 1;
    min-height: 390px;
}

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

.featured_item_upper img {
    aspect-ratio: 266 / 149;
}

.featured_blog_image_container img {
    width: 100%;
    height: auto;
    aspect-ratio: 1920 / 1080
}

@media only screen and (min-width: 500px) {
    .featured_blog_image_container img {   
        min-height: auto;
    }
    
    /*aside.blog_container {        
        display: block;    
    }*/
}

@media only screen and (min-width: 830px) {
    .featured_blog_item {        
        width: 33%;
    }
    aside.blog_container {    
        min-height: auto;
    }  
}

@media only screen and (min-width: 1020px) {
    aside.blog_container {    
        padding: 40px 0 74px 0 ;
    }  
    
    .featured_blog_info_name {
        font-size: 25px;
    }
    
    h2.featured_blog_title {
        margin-bottom: 32px;
    }
    
    .featured_blog_item_cont {        
        flex-wrap: nowrap;        
    }
    
    .featured_blog_item_abstract {        
        min-height: 63px;
    }
}


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

.newsletter_cont {
    display: flex;
    justify-content: center;
    align-items: center;
    /*border-top: 1px solid var(--text);*/
    /*margin-top: 20px;*/
    color: var(--text);
    background: var(--modalBackground);
}

.newsletter_outer {
    max-width: 900px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px;    
}

.newsletter_outer h3 {
    font-size: 30px;
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.newsletter_inner {
    display: flex;
    align-items: center;
    max-width: 500px;
    width: 100%;
}

.newsletter_inner.with_name {
    flex-direction: column
}

.newsletter_inner.with_name input#newsletter_name {
    border-bottom: none;
}
.newsletter_inner.with_name input#newsletter_email {
    border-top: 1px dashed;
    margin-bottom: 5px;
}

.newsletter_inner.no_name input#newsletter_email {
    border-right: none;
}

.newsletter_inner button {
    background: var(--backRed);
    color: var(--background);
    height: 40px;
    cursor: pointer;
    padding: 0 28px;
    
}

.newsletter_inner.with_name button {
    width: 100%;
}

.newsletter_inner button:hover {
    background: var(--highlightRed);
}

@media only screen and (min-width: 830px) {
    .newsletter_cont {
        padding-top: 50px;
        padding-bottom: 25px;
        /*margin-top: 50px;*/
    }
    
    .newsletter_inner {        
        width: 500px;
    }
    
    .newsletter_inner.with_name {
        flex-direction: row
    }
    
    .newsletter_inner button {
        height: 47px;
        width: fit-content;
    }
    
    .newsletter_inner.with_name button {
        width: 75px;
    }
    
    .newsletter_inner.with_name input#newsletter_name {
        border-right: none;
        border-bottom: 1px solid var(--offBlack);
    }
    .newsletter_inner.with_name input#newsletter_email {
        border-left: 1px dashed;
        border-top: 1px solid var(--offBlack);
        margin-bottom: 0;
    }
}

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


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

footer {
    background: var(--upsellBlack);
    color: var(--navText);
    font-size: 12px;
}

.pre_footer {
    max-width: 1440px;
    margin: 0px auto;
}

.pre_footer a {
    font-size: 14px;    
}

footer h4 {
    font-size: 15px;
    margin-bottom: 16px;
    font-weight: lighter;
    letter-spacing: 1px;
}

.social_media_section h4 {
    margin-bottom: 16px;
}

.footer_inner_section,
.pre_footer .uc_banner {
    display: flex;
    justify-content: center;
    padding: 30px 20px;
    border-top: 1px solid var(--backRed);
}

.footer_inner_section.col {
    flex-direction: column;
}

.footer_inner_section.col:first-of-type {
    border-top: none;
}

.footer_inner_section.accepts {
    display: flex;
    flex-wrap: wrap;
}

.footer_inner_section.accepts img {
    max-width: 40px;
    filter: grayscale(1); 
    min-height: 25px;
}

.footer_inner_section.accepts img:hover {
    filter: grayscale(0);
}

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

.footer_page_list a {
    line-height: 30px;
    font-size: 14px;
    cursor: pointer;
    letter-spacing: 1px;
    font-weight: 600;
}

.footer_page_list span {
    line-height: 27px;    
}

.footer_page_list.contact a {
     font-size: 12px;
     font-weight: bold;
     color: var(--backRed);
     line-height: 27px;
     
     display: flex; 
     align-items: center;
     gap: 3px;
}

.footer_page_list.contact a svg {
    height: 20px;
}

.footer_page_list.contact a:hover {
     text-decoration: underline;
}

.social_media_section {
    display: block;
}

.social_media_icons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    max-width: 200px;
}

.social_icon {
    width: 30px;
    height: 39px;
}

.copy_cont {
    display: flex;
    flex-direction: column;
    gap: 2px;
    justify-content: center;
    align-items: center;
}

.copy_cont a {
    text-transform: capitalize;
}

.copy_cont a:first-of-type {
        display: none;
    }

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

@media only screen and (min-width: 830px) {
    footer,
    .footer_page_list.contact a{
        font-size: 14px;
    }
    
    footer h4 {
        font-size: 21px;
    }
    
    .pre_footer {
        padding: 0 25px;
    }
    
    .footer_outer_section, 
    .pre_footer .uc_banner {
        border-top: 1px solid var(--backRed);
        display: flex;        
        align-items: center;
        justify-content: space-between;
    }
    
    .footer_outer_section:first-of-type {
        border-top: none;
        margin-top: 0;
    }
    
    .footer_outer_section.footer_pages {
        align-items: flex-start;
    }  
    
    .footer_outer_section.accepts {
        flex-direction: row-reverse;
    }
    
    .footer_page_list a {
        font-size: 14px;        
    } 
        
    .footer_inner_section {
        padding: 25px 0;
        border-top: none;
    }
    
    .copy_cont {
        flex-direction: row;
        white-space: nowrap;
    }
    
    .copy_cont a,
    .footer_shopname {
        border-left: 1px solid var(--background);
        padding-left: 4px;
        margin-left: 4px;
    }
    
    
    
    .social_media_section {
        display: block;
    }
    
    .social_media_section h4 {
        margin-bottom: 8px;
    }

}

/* REVIEW STARS FOOTER ======================================================*/

.review_footer {
    background: var(--black);
    color: var(--navText);    
    padding: 10px 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.review_section {
    display: flex;
    align-items: center;
    flex-direction: column;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.review_stars {
    color: var(--backRed);
    
}

.terms_container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    letter-spacing: 1px;
}

.terms_section {
    display: flex;
    align-items: center;
    gap: 10px;
}

.language_mobile_display,
.currency_mobile_display {
    position: relative;
    top: -2px;
}

.currency_mobile_display {
    top: 0px;
}

@media only screen and (min-width: 830px) {
    .review_footer {        
        flex-direction: row;        
    }
    
    .review_section {        
        flex-direction: row;  
        gap: 7px;
        margin-bottom: 0;
    }
    
    .terms_container {        
        flex-direction: row;        
    }
    
}


/* THE MODAL STYLING ======================================================== */

.simplemodal-container {
    background-image: url('https://cdn.freewebstore.com/origin/762225/logoonly.png') !important;
    background-repeat: no-repeat !important;
    background-size: contain !important;
    background-position: center !important;
    background-blend-mode: color-burn !important;
    background: var(--modalBackground);
    text-align: center;
    padding: 0 20px 10px 20px;
    height: auto !important;
    width: auto !important;
    max-width: 500px;
    top: 10vh !important;
    left: 0 !important;
    right: 0 !important;
    margin: 0 auto;
}

.md-content h3 {
    font-weight: bold;
    color: var(--text);
    text-decoration: underline;
    text-decoration-color: var(--highlightRed);
    text-decoration-thickness: 2px;
    font-size: 20px;
    margin-bottom: 20px;
}

.md-modal p {
    text-align: center !important;
    font-size: 14px;
}

.md-modal .md-ok {
    background: var(--backRed);
    color: var(--navText);
    padding: 10px 20px !important;
    margin-top: 20px;
    height: 40px !important;
}

button.md-mk {
    padding: 10px 20px !important;
    height: 40px !important;
}

.md-content center {
    background: var(--highlightRed);
    margin: 20px 0 10px 0;
    padding: 10px;
    color: var(--navText);
}

#modal-feedback button:hover {
    background: var(--highlightRed);
    cursor: pointer;
}

/* ==============================================================================*/

/* LANGUAGES STYLING ============================================================*/

#header1a_language,
#footer_currency {
    position: relative;
}

#footer_currency {
    
}

#header1a_language .language_mobile_desktop,
#footer_currency .currency_mobile_desktop {
    color: var(--background);
}

#header1a_language #footer_main_item_title_language{
    color: #FFF;
    display: inline;
    cursor: pointer;
}

#header1a_language #footer_main_item_title_language .language_mobile_display_code img{
    width: 20px;
    position: relative;
    top: 2px;
}

@media only screen and (min-width: 800px){
    #header1a_language #footer_main_item_title_language,
    #footer_currency {
        border-left: 1px solid var(--backRed);
        padding-left: 10px;
    }
}

@media only screen and (min-width: 1250px){
    /*#header1a_language .language_mobile_display{
        display: none;
    }*/
    
    #header1a_language .language_mobile_desktop,
    #footer_currency .currency_mobile_desktop {
        display: inline-block;
    }
}

#footer_main_item_title_currency {
    cursor: pointer;
}

#header1a_language #language_container,
#footer_currency #currency_container {
    transition: 0.4s;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    background-color: var(--modalBackground);
    /*max-height: 350px;*/
    width: 250px;
    bottom: 30px;
    left: -140px;
    box-shadow: 0 50px 100px -20px var(--redShadow), 0 30px 60px -30px var(--redShadow);
    z-index: 100;
}

#header1a_language #language_container {
    left: -40px;
}



#header1a_language #language_container.header1a_language_container_active,
#footer_currency #currency_container.header1a_language_container_active {
    opacity: 1;
    visibility: visible;
    bottom: 50px;
}

#header1a_language #language_container::before,
#footer_currency #currency_container::before {
    content: '';
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 15px solid var(--modalBackground);
    position: absolute;
    bottom: -15px;
    right: 110px;
}

@media only screen and (min-width: 830px) {
    #header1a_language #language_container,
    #footer_currency #currency_container {
        left: -205px;
    }
    
    #header1a_language #language_container::before,
    #footer_currency #currency_container::before {        
        right: 10px;
    }
}

#header1a_language #language_container_title,
#footer_currency #currency_container_title {
    font-weight: bold;
    font-size: 1rem;
    text-align: center;
    color: var(--text);
    margin: 20px 0 15px 0;
}

#header1a_language #language_container #language_item_container,
#footer_currency #currency_item_container {
    max-height: 300px;
    overflow: auto;
    display: flex;
    flex-wrap: wrap;
    padding: 0 0 0 20px;
}

#header1a_language #language_item_container .language_item,
#footer_currency #currency_item_container .currency_item {
    width: 100%;
    color: var(--text);
    line-height: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
}

#header1a_language #language_item_container .language_item img,
#footer_currency #currency_item_container .currency_item img{
    border-radius: 4px;
    margin-right: 10px;
    width: 22px;
}

#header1a_language #language_item_container .language_item span,
#footer_currency #currency_item_container .currency_item span{
    /*position: relative;*/
    top: -3px;
}

#header1a_language #language_item_container .language_item i {
    margin-right: 5px;
}

/* width */
#language_item_container::-webkit-scrollbar,
#currency_item_container::-webkit-scrollbar{
  width: 6px;
}

/* Track */
#language_item_container::-webkit-scrollbar-track,
#currency_item_container::-webkit-scrollbar-track {
  background: var(--background);
  border-radius: 2px 2px 0 0;
}

/* Handle */
#language_item_container::-webkit-scrollbar-thumb,
#currency_item_container::-webkit-scrollbar-thumb {
  background: var(--backRed);
  border-radius: 2px 2px 0 0;
}

/* Handle on hover */
#language_item_container::-webkit-scrollbar-thumb:hover,
#currency_item_container::-webkit-scrollbar-thumb:hover {
  background: var(--highlightRed);
}

.currency_item_selected {
    
}

/*================================================================================*/

/********************************************************************************/
 /* *************BREADCRUMBS STYLING *********************************************/
/*********************************************************************************/

.breadcrumbs {
    display: flex;
    list-style: none;    
    padding: 16px 1.5rem;
    font-size: 12px;
    margin: 0 auto;
    letter-spacing: 1px;
    padding-top: 40px;
}

.breadcrumbs li:not(:first-of-type)::before {
    content: '>';
    padding: 0 3px;
}

.breadcrumbs a {
    color: var(--text);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.breadcrumbs a:hover {
    color: var(--highlightRed);
}

@media only screen and (min-width: 530px) {   
    .breadcrumbs {
        max-width: 540px;
    }
}

@media only screen and (min-width: 830px) {
   .browse_products_container .featured_product_item {
       max-width: 155px;
   }
   
   .breadcrumbs {
        max-width: 740px;
    }
}

@media only screen and (min-width: 1020px) {
    .breadcrumbs {
        padding: 30px 52px;
        font-size: 14px;        
        max-width: 1400px;
    }        
}

/********************************************************************************/
 /* *************BROWSE STYLING *********************************************/
/*********************************************************************************/
.browse_prods_main a {
    color: var(--text);
}

.browse_prods_main a.add_to_cart_btn,
.featured_product_item a.add_to_cart_btn {
    color: var(--background);
    background: var(--upsellBlack);
}

.browse_prods_main a.add_to_cart_btn:hover,
.featured_product_item a.add_to_cart_btn:hover {
    color: var(--black);
    background: var(--highlightRed);
}

.cat_header_exp {
    border-bottom: 1px solid var(--text);
    
}

.cat_header_exp h1 {
    font-size: 25px;
    text-align: center;
    padding: 0 24px;
    margin-bottom: 1.4rem;
    max-width: 1000px;
    margin: 0 auto;
    color: var(--backRed);
}

.cat_header_exp p {
    text-align: left;
    padding: 20px 1.5rem 16px 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.browse_products_container .featured_product_item {
    width: 45%;
    margin-bottom: 80px;
    padding: 5px;
}

.browse_products_container .featured_product_item a.featured_product_image {
    transition: all .4s ease;
}

.browse_products_container .featured_product_item a.featured_product_image:hover {
    transform: scale(1.06);
}

.browse_products_container .product_price {
    font-size: 1rem;
}

#sortByDest {
    text-transform: capitalize;
    /*width: 100%;*/
    /*border-bottom: 1px solid var(--text);*/
}

#sortByDest {
    display: flex;
    list-style: none;
    justify-content: center;
    padding: 20px;
}

#sortByDest label {
    font-weight: bold;
}

.browse_products_container {
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 20px;
}

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

.pagination {
    list-style: none;
    display: flex;
    align-items: center;
    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;
}

.pagination li.current a {
    font-weight: bold;
    color: var(--highlightRed);
    
}

.pager_arrow_previous a,
.pager_arrow_next a {
    border: 1px solid var(--text);
    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(--text);
    color: var(--background) !important;
    font-weight: normal;
}

.results_search_term {
    font-weight: bold;
    color: var(--highlightRed);
}

#sortByDest select {
    border-radius: 0;
    border: 1px solid var(--text);
    padding: 6px;
    height: 31px;
}

.results_text {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 20px;
    white-space: nowrap;
    width: 100%;
    text-align: center;
    letter-spacing: 1px;
}

#sortByDest select:focus {
    outline: none;
}

.main_results_container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
}

.results_text_inner {    
    width: 100%;
    max-width: 650px;
    white-space: initial;
}

.results_sort_wrapper {
    border-bottom: 1px solid var(--text);
}

@media only screen and (min-width: 420px) {
    .browse_products_container .featured_product_item {
        width: 45%;
        margin-bottom: 80px;
        padding: 1rem;
    }
}

@media only screen and (min-width: 530px) {   
    .browse_products_container .featured_product_item {
        width: 40%;
    }
        
    .results_text {
        justify-content: flex-start;
        /*border-bottom: 1px solid var(--text);*/
        padding: 0px 20px;
        width: 50%;
        text-align: left;
    }
       
    #sortByDest {
        justify-content: flex-end;
        width: 50%;     
    }
    
    .cat_header_exp p {
        text-align: center;
    }
    
    .results_sort_wrapper {
        display: flex;
        align-items: center;
        justify-content: space-between; 
    }
}

@media only screen and (min-width: 830px) {   
    .results_text {
        justify-content: flex-start;
    }
    .browse_products_container .featured_product_item {
        max-width: 240px;
    }
    .browse_products_container .product_price {
        font-size: 23px;
    }
}


@media only screen and (min-width: 1020px) {
    .cat_header_exp h1 {
        font-size: 30px;
        padding: 12px 52px;
    }
    
    .pagination li.current a {
        font-size: 16px;
    }    
    
    .pagination {
        margin: 0 0 40px 0;   
    }
    
    .results_text_inner {
        width: 100%;
        max-width: 650px;
        padding-bottom: 0px;
    }
    
}


/************************************************************************************/
/************************************* BLOG *****************************************/
/************************************************************************************/

.pre_blog_header {
    
}

.pre_blog_header h1 {
    font-size: 25px;
    padding-top: 20px;
    padding-bottom: 15px;
    letter-spacing: 1px;
}

.pre_blog_header p {
    text-align: left;
    font-size: 15px;
    padding-bottom: 1.1rem;
}

.blog_view_image img {
    width: 100%;
}

.blog_main_content_container,
#comments_section,
.comment_message,
.blog_comments_container {    
    width: 100%;
    max-width: 530px;
    margin: 0 auto;
}

.blog_main_content_container p {
    line-height: 27px;
    font-size: 12px;
    padding: 0 15px;    
    text-align: left;
}

.blog_author_container {
    border-top: 1px solid var(--text);
    border-bottom: 1px solid var(--text);
    padding: 16px;
    margin-top: 15px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.blog_author_credentials {
    line-height: 15px;
}

.blog_author_credentials h2 {
    font-weight: bold;
    font-size: 16px;
    margin: 0 !important;
}

.blog_author_credentials span {
    font-size: 10px;
    letter-spacing: 1px;
}

.blog_share_container {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
}

.blog_social_share_icons {
    display: none;
    align-items: center;
    gap: 5px;
}

.blog_social_share_icons svg {
    height: 24px;
    width: 24px;
    color: var(--text);    
}

.blog_social_share_icons svg:hover {    
    color: var(--highlightRed);
    cursor: pointer;
}

.blog_share_text {
    display: none;
    letter-spacing: 1px;
}

.blog_share_icon {
    width: 24px;
    height: 24px;
    cursor: pointer;
    color: var(--text);
}

.blog_share_icon a:hover {    
    color: var(--highlightRed);
}

.show_mobile_share_box {
    position: absolute;
    top: -51px;
    display: flex !important;
    left: -90px;
    border: 1px solid #cf3236;
    padding: 5px;
    -webkit-box-shadow: 1px 4px 10px 0px rgba(207,50,54,0.77);
    -moz-box-shadow: 1px 4px 10px 0px rgba(207,50,54,0.77);
    box-shadow: 1px 4px 10px 0px rgba(207,50,54,0.77);
    gap: 15px;
    background: var(--background);
}

#comments_section,
#comments_reply_section{
    padding: 20px 15px;    
    border-top: 1px solid var(--text);
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#comments_reply_section { 
    border: none;
    padding: 0 15px;
    margin-top: 0;
}

#comments_section input.blog_comments_submit,
#comments_reply_section input#comment_reply_submit {
    border: none;
    background: var(--backRed);
    color: var(--background);
    cursor: pointer;
    transition: .2s ease;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

#comments_section input.blog_comments_submit:hover,
#comments_reply_section input#comment_reply_submit:hover {    
    background: var(--highlightRed);    
}

#comments_section header {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 10px;
    letter-spacing: 1px;
    color: var(--backRed);
}

#comments_section input:focus,
#comments_reply_section input:focus {
    border: 1px solid var(--highlightRed);
}

#comment_content,
.blog_comments_reply_content {
    resize: none;
    height: 120px;
    padding: 10px;
    border: 1px solid var(--text);
}

#comment_content:focus,
.blog_comments_reply_content:focus {
    outline: none;
    border: 1px solid var(--highlightRed);
}

#comment_email_label,
#comment_reply_email_label {
    font-size: 12px;
    font-weight: bold;
    text-align: end;
    padding-top: 3px;
    letter-spacing: 1px;
}

#comment_email_label::before,
#comment_reply_email_label::before {
    content: "*";
}

.comment_message {
    color: var(--highlightRed);
    font-weight: bold;
    font-size: 1.2rem;
    padding: 0 15px;
}

.no_comments_styling {
    border-top: 1px solid var(--backRed);
    padding: 20px 15px;
}

.thank_you_styling { 
    padding: 20px 15px;
    border-top: 1px solid var(--backRed);
    margin-top: 20px;
}

.comment {
    padding: 0 15px;
}

.comment_item {    
    padding: 10px 0;
}

.comment:not(:first-of-type) {
    border-top: 1px dashed var(--backRed);
}

.comment_author {
    font-weight: bold;
    margin-bottom: 5px;
    display: flex;
    flex-direction: column;
    letter-spacing: 1px;
}

.comment_date {
    font-weight: normal;
    font-size: 11px;
    font-style: italic;
}

.comment_replies {
    padding-left: 20px;
    border-left: 1px dashed var(--backRed);
}

.blog_comments_reply_reply {
    background: var(--backRed);
    padding: 8px 15px;
    margin: 15px;
    position: relative;
    left: calc(100% - 90px);
    color: var(--background);
    letter-spacing: 1px;
}

.blog_comments_reply_reply:hover {
    background: var(--highlightRed);
    color: #FFF;
    
}

.blog_comments_title {
    text-align: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 15px;
    padding-top: 20px;
    border-top: 1px solid var(--text);
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-decoration-color: var(--backRed);
    text-underline-offset: 3px;
    letter-spacing: 1px;
}

@media only screen and (min-width: 530px) {   
    .blog_main_content_container,
    #comments_section,
    .comment_message,
    .blog_comments_container {        
        max-width: 550px;
    }
    
    .blog_share_text {
        display: block;
    }
    
    .blog_social_share_icons {
        display: flex;
        align-items: center;
        gap: 5px;
    }
    
    .blog_share_icon {
        display: none;
    }
}



@media only screen and (min-width: 830px) {   
     .blog_main_content_container,
     #comments_section,
     .comment_message,
     .blog_comments_container  {        
        max-width: 670px;
    }
    
}


@media only screen and (min-width: 1020px) {
    .pre_blog_header h1 {
        font-size: 30px;
    }
    
    .pre_blog_header p {
        font-size: 17px;
    }
    
    .blog_main_content_container,
    #comments_section,
    .comment_message,
    .blog_comments_container {        
        max-width: 600px;
    }
    
}


/************************************************************************************/
/************************** PRODUCT DETAILS STYLING *********************************/
/************************************************************************************/

.product_images_container {
    display: flex;
    flex-direction: column-reverse;
    justify-content: center;

    gap: 20px;
    width: auto;
    max-height: revert;
    height: 100% !important;
    margin-bottom: 20px
}

#mainProductImage {
    width: 100%;
    max-width: 540px;
    height: auto;
    position: relative;
    transition: none !important;
}

.extra_images_container {
    display: flex;
    flex-direction: row;
    gap: 10px;
    overflow: auto;
    cursor: pointer;
}

.extra_images_container img {
    /*border: 1px solid var(--text);*/
    width: 80px;
    height: 80px;
}

.extra_images_container::-webkit-scrollbar {
    display: none;
}



.main_prod_inner {
    position: relative;
    overflow: hidden;
   /* border: 1px solid var(--text);   */ 
}

.button_image {
    color: var(--text);
    position: absolute;
    cursor: pointer;
    top: 45%;
    z-index: 10;
}

.wishlist_icon {
    color: var(--highlightRed);
    position: absolute;
    cursor: pointer;
    z-index: 10;
    top: 10px;
    right: 10px;
}

.wishlist_icon svg {
    width: 30px;
    height: 30px;
}

.button_image_zoom {
    display: block;
    color: var(--highlightRed);
    position: absolute;
    cursor: pointer;
    right: 10px;
    bottom: 10px;   
    z-index: 10;
}

.button_image svg,
.button_image_zoom svg {
    width: 40px;
    height: 40px;
}

.button_image_left {
    left: 10px;
}

.button_image_right {
    right: 10px;
}

.extra_item_selected {
   /* border: 2px solid var(--highlightRed) !important;*/
}

.zoomed_in {
    transform: scale(1.8);
    cursor: move;
}

.product_details_container {
    letter-spacing: 1px;
}

.product_details_container p {
    text-align: left;
} 

.product_details_container h1 {
    margin-bottom: 15px;
}

.product_brand {
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--backRed);
}

.product_price {
    font-size: 1rem;
    font-weight: bold;
    line-height: 27px;
}

.RRP_container {
    display: flex;
    align-items: baseline;
    gap: 6px;
    flex-wrap: wrap;
}

.RRP_container.results {
    width: 100%;
    position: relative;
}

.RRP_price {
    color: var(--highlightRed);
    text-decoration: line-through;
}

.offer_saving {
    position: absolute;
    position: absolute;
    top: -15px;
    font-size: 10px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--placeholder);
}

#prod_title_review_stars {
    margin-top: 10px;
    margin-bottom: 15px;
}

.item_stock_text strong {
    font-weight: bold;
}

.prod_qty_input {
    display: flex;
    align-items: center;
   margin-bottom: 10px;
}

.prod_qty_input button svg{
    height: 40px;
    width: 40px;
    color: var(--background);
}

#txtQty {
    border: none;
    border-top: 1px solid var(--backRed);
    border-bottom: 1px solid var(--backRed);
    height: 40px !important;
    text-align: center;
    font-size: large;
}

#txtQty:focus {
    outline: none;
    border-color: var(--highlightRed);
}

.prod_qty_input button {
    background: var(--backRed);
    height: 40px;
}

.prod_qty_input button:hover,
.add_to_cart_btn:hover {
    background: var(--highlightRed);
    cursor: pointer;    
}

.add_to_cart_btn.details {
    font-size: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 32px;
    text-transform: capitalize;
}

.add_to_cart_btn.details svg {
    position: relative;
    top: -2px;
}

#fixedAddToCartBtn {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 900;
}

.add_to_cart_container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
}

.prod_details_share_icons {
    display: none;
    align-items: center;
    gap: 5px;
}

.prod_details_share_icons svg {
    height: 35px;
    width: 35px;
    color: var(--text);    
}

.prod_details_share_icons svg:hover {    
    color: var(--highlightRed);
    cursor: pointer;
}

.prod_share_container {
    display: flex;
    justify-content: center;
    margin: 20px 0;
    font-size: 12px;
    font-weight: bold;
    transition: 0s;    
    position: relative;
}

.prod_share_container a {
    transition: 0s;
}

.prod_share_icon {    
    cursor: pointer;
    color: var(--text) !important;
    display: flex;
    align-items: center;
    gap: 8px;
}

.prod_share_icon svg {
    width: 24px;
    height: 24px;
}

.prod_share_icon:hover .prod_share_icon svg {    
    color: var(--highlightRed) !important;
}

.prod_share_icon:hover .share_prod_text {
    color: var(--text) !important;
    text-decoration: underline;
    text-decoration-color: var(--highlightRed);
    text-underline-offset: 2px;
}

.show_mobile_share_box {
    position: absolute;
    top: -51px;
    display: flex !important;
    left: 90px;
    border: 1px solid #cf3236;
    padding: 5px;
    -webkit-box-shadow: 1px 4px 10px 0px rgba(207,50,54,0.77);
    -moz-box-shadow: 1px 4px 10px 0px rgba(207,50,54,0.77);
    box-shadow: 1px 4px 10px 0px rgba(207,50,54,0.77);
    gap: 15px;
    background: var(--background);
}

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

.prod_details_main .product_price {
    font-size: 25px;
}
.price_breakdown a {
    display: none;
}

.price_ex_tax,
.prod_details_main hr {
    display: none;
}

.upsells.upsells_inner {
    margin-top: 15px;
    max-width: unset;
    
}

#prod_details_upsells {
    position: relative;
    
}

#prod_details_upsells::after {
    content: "";
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 20px solid var(--upsellBlack);
    position: absolute;
    right: calc(50% - 20px);
    bottom: 12px;
}

/*
.prod_details_description_wrapper {
    background: var(--modalBackground);
    position: relative;
    top: -30px;
    z-index: -1;
    padding-bottom: 1rem;
}

.prod_details_description_wrapper::after {
    content: "";
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 20px solid var(--modalBackground);
    position: absolute;
    right: calc(50% - 20px);
    bottom: -20px;
}
*/

.prod_details_description {
    padding-top: 2.65rem;
}

@media only screen and (max-width: 529px) {
    .prod_details_description {
        padding-top: 10px;
    }
}

.prod_details_description h3 {
    text-align: center;
    font-weight: bold;
    font-size: 1.6rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.prod_details_description p {
    margin-bottom: 1.5rem;
}

.prod_details_description table {
    border-collapse: collapse;
    width: 100% !important;
    font-size: 12px;
    letter-spacing: 1px;
}

.prod_details_description table tbody tr {
    border-bottom: 1px solid var(--text);
}

.prod_details_description table tbody tr td {
    padding: 10px 0;
}

.prod_details_description table tbody tr td:first-of-type {
    font-weight: bold;
    text-transform: uppercase;
}

#softadd-container {
    border-radius: 0 !important;
    padding: 0;
}


#softadd-container,
#softadd-modal-title {
    background-color: var(--modalBackground) !important;
    border-bottom: none !important;
    padding: 0 !important;
    text-shadow: none !important;
    font-weight: bold !important;
    color: var(--text) !important;
    text-align: center;
}

#softadd-modal-title {
    font-weight: bold;
    color: var(--text) !important;
    text-decoration: underline;
    text-decoration-color: var(--highlightRed);
    text-decoration-thickness: 2px;
    font-size: 20px;
    margin-bottom: 20px;
    background-color: transparent !important;
    letter-spacing: 1px;
}

#softadd-modal-content {
    padding: 20px !important;
    flex-direction: column;
    align-items: center;
}

#softadd-modal-data p {
    text-align: center !important;
    line-height: unset !important;
}

#softadd-modal-data div button {
    width: 210px !important;
    text-transform: capitalize !important;
    color: var(--navText) !important;
    background: var(--backRed) !important;
    font-weight: normal !important;
    cursor: pointer;
    letter-spacing: 1px;
}

#softadd-modal-data div button:hover {
    background: var(--highlightRed) !important;
}

#softadd-modal-data {
    min-height: unset !important;
}

#softadd-container .close a {
    color: var(--backRed) !important;
    font-weight: normal !important;
    text-shadow: none !important;
}

#softadd-container .close a:hover {
    
    color: var(--highlightRed) !important;
    
}

@media only screen and (min-width: 530px) {   
    .prod_qty_input {        
        max-width: 150px;
    }
    
    .prod_share_container {
        justify-content: flex-start;
    }   
    
}


@media only screen and (min-width: 830px) {  
    .prod_details_main {
        flex-direction: row;
        gap: 30px;
    }  
    
    .product_images_container {
        flex-direction: row;   
        max-height: 540px;
    }
    
    .extra_images_container {
        flex-direction: column;        
    }
    
    .product_details_container {
        margin-top: 0;
    }
    
    .extra_images_container {
        min-width: 80px;
    }
    
    .upsells.upsells_inner {
        margin-top: 40px;
    }
}

@media only screen and (min-width: 950px) {        
     
}

@media only screen and (min-width: 1020px) {
    .extra_images_container img {
        width: 93px;
        height: 93px;
    }
    
    .extra_images_container {
        min-width: 93px;
    }
    
    .prod_details_main {
        justify-content: center;
    }
    
}

/*************************************************************************/
/********** PROD REVIEWS *******************************************/
/*************************************************************************/

.reviews_container {
    /*padding-top: 2.65rem;*/
    padding-bottom: 2rem;
    font-size: 1.56rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    /*max-width: 600px;*/
}

.reviews_container h2,
.related_prods_cont h2 {
    text-align: center;
}

.related_prods_cont .product_item_section {
    align-items: flex-start;
}

.no_reviews_text {
    font-size: 18px;
    text-align: center;
}

a.no_review_button {
    font-size: 15px;
    color: var(--text);
    margin-top: 10px;
    text-underline-offset: 2px;
}

a.no_review_button:hover {
    color: var(--highlightRed);
    text-decoration: underline;
}

.review_item {
    border-top: 1px solid var(--text);
    margin-top: 1.5rem;
    padding-top: 1rem;
    width: 100%;
}

.review_item h4 {
    font-weight: bold;
    font-size: 13px;
    margin-bottom: 8px;
}

.review_item_date {
    font-weight: normal;
    font-style: italic;
}

.review_stars {
    margin-bottom: 8px;
}

.review_title {
    font-size: 14px;
    font-weight: bold;
}

.review_comments {
    font-size: 14px;
    margin-top: 6px;
}

.fws_review_image {
    border-radius: 0 !important;
}

.fws_review_images_container {
    margin-top: 20px;
}

#prod_title_review_stars {
    color: var(--backRed);
    min-height: 23px;
}

.unfilled_star {
    color: var(--redShadow);
}

.reviews_item_reply_container {
    font-size: 14px;
    margin-left: 20px;
    border-left: 2px solid var(--backRed);
    margin-top: 20px;
    background: var(--redShadow);
    padding: 10px;
}

.reviews_item_reply_title {
    font-weight: bold;
    margin-bottom: 5px;
}

.no_reviews_link {
    color: var(--text);    
    text-decoration-color: var(--backRed)
}

.no_reviews_link:hover {
    color: var(--highlightRed);
    text-decoration: underline;
}

#softadd-feedback-success a {
    text-decoration: none;
}

#softadd-feedback-success span{
    color: var(--highlightRed) !important;
    letter-spacing: 1px;
}

@media only screen and (min-width: 830px) {  
    .review_stars {
        margin-bottom: 0;
    }
}


/***********************************************************************/
/******************* contact address ***********************************/
/***********************************************************************/

.highlight_header{
    width: 100%;
}

.highlight_header_center{
    text-align: center;
}

.highlight_header span:nth-child(odd){
    font-weight: bold;
}

.highlight_header span:nth-child(even){
    font-weight: 300;
}

.featured_products_title_inner, .popular_products_title_inner{
    display: inline-block;
    position: relative;
}

.featured_products_title_inner span, .popular_products_title_inner span{
    background-color: #fff;
    position: relative;
    z-index: 2;
}

.featured_products_title_inner span:first-child, .popular_products_title_inner span:first-child{
    padding-left: 12px;
}

.featured_products_title_inner span:last-child, .popular_products_title_inner span:last-child{
    padding-right: 10px;
}

.featured_products_title_inner::before,
.popular_products_title_inner::before{
    content: '';
    width: 122%;
    height: 1px;
    border-top: 1px solid #BD0000;
    position: absolute;
    top: 47%;
    left: -11%;
}


#contact_container{
    margin-top: 50px;
}

#contact_container_form{
    margin-bottom: 50px;
}

#divAddress strong{
    display: none;
}

.contact_form header{
    display: none;
}

.contact_form label{
    display: block;
    width: 100%;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.8rem;
    margin-bottom: 5px;
}

.contact_form label em{
    color: #cf3236;
    font-style: normal;
}

.contact_form input, .contact_form textarea{
    margin-bottom: 20px;
    background-color: #ebebeb;
    border: none;
    width: 100%;
    letter-spacing: 2px;
    font-size: 0.7rem;
    -webkit-appearance: none;
}

.contact_form input{
    height: 40px;
    line-height: normal;
    padding: 0 10px;
}

.contact_form textarea{
    padding: 10px;
}

.contact_send_btn{
    text-transform: uppercase;
    height: 40px;
    border-radius: 0px;
    font-size: 1rem !important;
    letter-spacing: 5px !important;
    font-weight: bold;
    margin-top: 10px;
    background-color: #1d1d1d !important;
    color: #FFF;
    transition: 0.4s;
}

.contact_send_btn:hover{
    background-color: #cf3236 !important;
}

.contact_form span {
    float: left;
    width: 100%;
    margin-top: 10px;
    letter-spacing: 2px;
    font-size: 0.7rem;
    color: #cf3236;
}

.contact_container_address_item{
    margin-bottom: 20px;
}

.contact_container_address_item_address{
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.8rem;
    margin-bottom: 10px;
    line-height: 40px;
    display: flex;
    width: 100%;
}

.contact_icon {
    width: 40px;
    height: 40px;
    text-align: center;
    background-color: #cf3236;
    color: #FFF;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
}

.contact_icon svg {
    height: 30px;
    width: 30px;
}

.contact_container_address_item_address span{
    background-color: #ebebeb;
    padding: 0 10px;
    line-height: 40px;
    width: calc(100% - 40px);
    text-transform: capitalize;
}

.contact_container_address_item_text{
    font-size: 0.8rem;
    line-height: 20px;
    
}

.contact_container_address_item_text a {
    color: var(--backRed);
}

.contact_container_address_item_text_dpw{
    color: #cf3236;
}

.contact_container_address_item_text_additional{
    font-size: 0.7rem;
}

@media only screen and (min-width:800px){
    
    #contact_container{
        display: block;
        overflow: hidden;
    }
    
    #contact_container_form{
        width: 65%;
        float: left;
    }
    
    .contact_form label{
        font-size: 0.9rem;    
    }
    
    .contact_form input{
        line-height: normal;
        height: 50px;
        padding: 0 20px;
        font-size: 0.9rem;
        max-width: 500px;
    }
    
    .contact_form textarea{
        font-size: 0.9rem;
    }
    
    .contact_send_btn{
        float: right;
        width: 150px !important;
    }
    
    #contact_container_address{
        width: 30%;
        float: right;
        text-align: right;
    }
    
    .contact_container_address_item{
        margin-bottom: 40px;
    }
    
    .contact_container_address_item_address{
        justify-content: flex-end;
        width: inherit;
    }
    
    .contact_icon {
        order: 2;
    }
    
    .contact_container_address_item_address span{
        width: inherit;
    }
    
    .contact_container_address_item_text{
        font-size: 0.9rem;
    }
}

.container.contact {
    max-width: 550px;
}

.contact_notify {
    padding-top: 20px !important;
}

.contact_address {
    margin-bottom: 20px !important;
    padding: 0 !important;
    padding-bottom: 30px !important;
    
    max-width: 500px;
}

.contact_address_inner {
    width: 100%;
    padding-top: 10px;
    margin-top: 10px;
    background: var(--modalBackground);
    background-image: url('https://cdn.freewebstore.com/origin/762225/logoonly.png') !important;
    background-repeat: no-repeat !important;
    background-size: contain !important;
    background-position: center !important;
    background-blend-mode: soft-light !important;
}

.contact_address_item {
    margin-bottom: 20px;
}

.company_name {
    
}

.contact_address_item_left {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
    text-align: center;
}

.contact_address_item_left .pre {
    color: var(--backRed);
}

.contact_address_item_left .text {
}

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

.contact_address_item_right a {
    color: var(--backRed);
    font-weight: bold;
}

.contact_address_item_right span {
    font-size: smaller;
}

@media only screen and (min-width: 530px) {  
    .contact_address {
        padding: 0 1.5rem !important;
    }
    
    .contact_address_item_left {        
        text-align: left;
    }
    
    .contact_address_item_right {        
        align-items: flex-end;
    }
    
    .contact_address_inner {
        padding: 20px 20px 0 20px;        
    }
    
    
}



@media only screen and (min-width: 950px) {        
     
}

@media only screen and (min-width: 1020px) {
    
    
}



/*************************************************************************/
/********** STOCK NOTIFICATION *******************************************/
/*************************************************************************/

.stock_notify,
.shop_product_review_form,
.contact_notify,
.contact_address {
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center
}

.stock_notify div,
.shop_product_review_form div,
.contact_notify div {
    float: none !important;
}

.stock_notify h3,
.shop_product_review_form h3,
.contact_notify header,
.contact_address h1 {
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    padding: 0 24px;
    padding-top: 1rem;
    padding-bottom: 1.4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact_address h1 {
    font-size: 25px;
    font-weight: bold;
}

.stock_notify center,
.shop_product_review_form center,
.contact_notify center {
    line-height: 20px;
}

.stock_notify center label,
.shop_product_review_form center label,
.contact_notify center label {
    font-weight: bold;
    display: unset;
}

.stock_notify label[for="txtYourName"],
.stock_notify label[for="txtYourEmail"],
.stock_notify label[for="txtComments"],
.shop_product_review_form label[for="txtYourName"],
.shop_product_review_form label[for="txtYourEmail"],
.shop_product_review_form label[for="txtComments"],
.shop_product_review_form label[for="ddlScore"],
.shop_product_review_form label[for="txtReviewTitle"],
.shop_product_review_form label,
.contact_notify label {
    font-weight: bold;
    display: block;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    margin-bottom: 5px;
    text-transform: capitalize;
}

.stock_notify img,
.shop_product_review_form img {
    max-width: 250px;
    margin: 0 auto;
    margin-bottom: 1rem;
    box-shadow: var(--redShadow) 0 2px 5px;

}

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

.stock_notify input,
.stock_notify textarea,
.contact_notify input,
.contact_notify textarea,
.shop_product_review_form input,
.shop_product_review_form textarea,
.shop_product_review_form select{
    max-width: 500px;
    margin-bottom: .8rem;
}

.map_iframe {
    max-width: 605px;
    margin-bottom: 2rem;
}

.shop_product_review_form select {
    border: 1px solid var(--text);
    height: 40px;
    width: 100%;
    box-sizing: border-box;
    padding: 0 10px;
}

.dropzone {    
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    margin-bottom: .8rem;
}

.stock_notify textarea,
.shop_product_review_form textarea,
.contact_notify textarea{
    resize: none;
}

.stock_notify input:focus,
.stock_notify textarea:focus,
.contact_notify input:focus,
.contact_notify textarea:focus,
.shop_product_review_form input:focus,
.shop_product_review_form textarea:focus,
.shop_product_review_form select:focus{
    outline: none;
    border: 1px solid var(--highlightRed);
}

.stock_notify div:has(a.stock_notify_submit),
.shop_product_review_form div:has(a.shop_review_form_submit),
.contact_notify div:has(a.contact_notify_submit) {
    order: 0;    
    width: 100%;
}

a.stock_notify_submit,
a.shop_review_form_submit,
a.contact_notify_submit {
    background: var(--backRed);
    height: 40px;
    cursor: pointer;
    padding: 0 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 400px;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
    color: var(--background);
    letter-spacing: 1px;
}

a.stock_notify_submit:hover,
a.shop_review_form_submit:hover,
a.contact_notify_submit:hover {
    background: var(--highlightRed);
    color: var(--background);
}

.stock_notify div:has(a.stock_notify_cancel),
.shop_product_review_form div:has(a.shop_review_form_cancel),
.contact_notify div:has(a.contact_notify_cancel) {
    order: 1;
}

a.stock_notify_cancel,
a.shop_review_form_cancel,
a.contact_notify_cancel {
    color: var(--backRed);
    margin-bottom: 2rem;
    letter-spacing: 1px;
}

a.stock_notify_cancel:hover,
a.shop_review_form_cancel:hover,
a.contact_notify_cancel:hover {
    color: var(--highlightRed);
    text-decoration: underline;
}

#panel_success {    
    text-align: center;
    margin: 25px 0;
    padding-top: 20px;
    letter-spacing: 1px;
}

#panel_success h1 {
    font-weight: bold;
    font-size: 1.8rem;
    color: var(--text);
    margin-bottom: 20px;
}

#panel_success a {    
    color: var(--backRed);
    margin: 0 auto;
    text-transform: capitalize;
}

#panel_success a:hover {    
    color: var(--highlightRed);
    text-decoration: underline;
}

#panel_success p {    
    text-align: center;
     margin-bottom: 20px;
}

.stock_notify_submit.stock_notify_form_submit_disabled {
    display: flex !important;
}

#fb_error,
.fb_error_item {
    color: var(--highlightRed);
    font-weight: bold;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.input_error {
    border: 2px solid var(--highlightRed);
}

.shipping_returns_container strong {
    font-weight: 800;
    color: var(--highlightRed);
}

.shipping_returns_container p {
    text-align: left !important;
}

.shipping_returns_container h2 {
    text-align: center;    
    letter-spacing: 1px;
    margin-top: 0;
    margin-bottom: 40px;
}



#details_more_box_item_christmas_title {
    color: var(--highlightRed);
    font-weight: bold;
    font-size: large;
    margin-bottom: 1em;
}

#details_more_box_item_christmas_content {
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--highlightRed);
    padding-left: 1rem;
}

@media only screen and (min-width: 530px) {
   .stock_notify,
   .shop_product_review_form,
   .contact_notify {
        max-width: 540px;
    }
    
    .shipping_returns_container {
        padding-top: 0;
    }
    
    .shipping_returns_container h2 {        
        margin-bottom: 30px;
    }
}

@media only screen and (min-width: 830px) {
   .stock_notify,
   .shop_product_review_form,
   .contact_notify {
        max-width: 740px;
    }
}

@media only screen and (min-width: 1020px) {
    .stock_notify h3,
    .shop_product_review_form h3,
   .contact_notify header {
        font-size: 20px;        
    }
    
   .stock_notify,
   .shop_product_review_form,
   .contact_notify {
        max-width: 1400px;
        padding: 0 3.25rem;
    }
    
    .contact_address h1 {
        font-size: 30px;
    }
}

/*************************************************************************/
/********** BLOG *******************************************/
/*************************************************************************/

.featured_blog_container {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding-bottom: 3rem;
}

.browse_item {
    display: flex;
    flex-direction: column;
    box-shadow: var(--redShadow) 0 2px 5px;   
    background: var(--modalBackground);
    max-width: 1000px;
    margin: 0 auto;
}

.browse_item_info {
    padding: 0 10px 10px 10px;
    width: 100%;    
}

.browse_item_info h3 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    letter-spacing: 1px;
}

.browse_item_info_header {
    margin-top: .8em;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.featured_blog_title {
    font-size: 25px;
    text-align: center;
    padding: 0 24px;
    padding-top: 1rem;
    padding-bottom: 1.4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.browse_item_image {
    width: 100%;
   
}

.browse_item_info_name {
    color: var(--text);
    font-size: 15px;
    font-weight: bold;
    white-space: unset;
    margin-bottom: .8em;
}

.browse_item_info_name:hover {
    color: var(--highlightRed);
}

.blog_secondary_info {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-top: 1.5em;
    margin-bottom: 10px;
}

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

.blog_author {
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--highlightRed);
}

.blog_date {
    font-size: 10px;
    line-height: 15px;
    font-style: italic;
    letter-spacing: 1px;
}

.blog_comments_count {
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 2px;
}

.blog_comments_count_number {
    color: var(--highlightRed);
    font-weight: bold;
}

.blog_tags {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;    
}

.featured_blog_tag {
    font-size: smaller;
    background: var(--backRed);
    border-radius: 2px;
    padding: 2px;
    letter-spacing: 1px;
    color: var(--background);
}

.featured_blog_tag:hover {
    font-size: smaller;
    background: var(--highlightRed);
    color: var(--background);
    border-radius: 2px;
    padding: 2px;
}

.blog_abstract {
    display: none;
}

.blog_abstract p {
    font-size: 12px;
    width:100%;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

@media only screen and (min-width: 530px) {
   
    
}

@media only screen and (min-width: 830px) {
   .browse_item_image {
        width: 350px;
    }
    
    .browse_item {
        flex-direction: row;        
    }
    
    .browse_item_info_name {
        font-size: 20px;
    }
    
    .blog_date {
        font-size: 12px;        
    }
}

@media only screen and (min-width: 1020px) {
    .featured_blog_title {
        font-size: 30px;
    }
    
    .browse_item_info_header {
        justify-content: flex-start;
    }
    
    .blog_secondary_info {        
        margin-top: 0.8em;
        border-top: 1px solid var(--backRed);
        padding-top: 0.8rem;
        align-items: flex-start;
    }
    
    .blog_abstract {
        display: block;
    }

}

/*************************************************************************/
/********** SPCEIAL OFFERS *******************************************/
/*************************************************************************/

.special_offers_container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1350px;
    margin: 0 auto;
}

.special_offers_container .featured_product_item {
    max-width: 230px;
    margin-bottom: 80px;
}

.sale_header {
    background: var(--backRed);
    color: #FFF;
    font-weight: bold;
    text-align: center;
    letter-spacing: 1px;
    font-size: 3rem;
    line-height: 90px;    
    margin-bottom: 2rem;  
    text-shadow: 0px 3px 0px var(--text),
             0px 14px 10px rgba(0,0,0,0.15),
             0px 18px 2px rgba(0,0,0,0.1),
             0px 34px 30px rgba(0,0,0,0.1);
    background-image: url(https://cdn.freewebstore.com/origin/762225/logoonly.png),url(https://cdn.freewebstore.com/origin/762225/logoonly.png);
    background-repeat: no-repeat, no-repeat;
    background-size: contain;
    background-blend-mode: color-burn;
    background-position: left, right;
                     
}

.sale_text {
    max-width: 500px;
    margin: 0 auto;
    margin-bottom: 3rem;
}


@media only screen and (min-width: 530px) {   
    .special_offers_container .featured_product_item {
        max-width: 180px;
    }
    
    .sale_header {        
        font-size: 5rem;    
        line-height: 140px;
    }
}

@media only screen and (min-width: 830px) {
   
}

@media only screen and (min-width: 1020px) {
    

}

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

#instagrid{
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 20px;
}

.instagrid_item{
    width: 48%;
    margin-bottom: 20px;
    position: relative;
    box-shadow: 0 5px 20px #ddd;
    transition: 0.4s;
    top: 0;
    left: 0;
}

.instagrid_item:hover{
    box-shadow: 0 3px 20px #ddd;
    top: -5px;
}

.instagrid_item_container{
    background-color: #fff;
    padding: 10px;
}

.instagrid_image_container{
    width: 100%;
    display: block;
    overflow: hidden;
    
}

.instagrid_item img{
    width: 100%;
    display: block;
    -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;
}

.instagrid_likes{
    margin-top: 10px;
    font-weight: 300 !important;
    font-size: 1rem;
    line-height: 25px;
    color: #cf3236;
}

.instagrid_likes span{
    font-weight: normal;
}

.instagrid_caption{
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    font-weight: 300 !important;
    font-size: 0.8rem;
    line-height: 20px;
    color: #1b252f;
    -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;
}

.instagrid_caption:hover{
    color: #1b252f;
}


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

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

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

#reviews_page {
    display: flex; 
    flex-wrap: wrap;
    gap: 20px 10px;
    justify-content: space-around;
}

#reviews_page i svg {
    color: var(--highlightRed);
}

.reviews_page_item {
    width: 100%;
    background: var(--modalBackground);
    padding: 10px;
}

.reviews_page_item_header {
    margin-bottom: 1em;
    
}

.reviews_page_item_header_name {
    color: var(--backRed);
    letter-spacing: 1px;
}

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

.reviews_page_item_content {
    margin-bottom: 1em;
}

.reviews_page_item_table {
    border: 1px solid var(--backRed);
    width: 100%;
    border-collapse: collapse;
}


.reviews_page_item_table td{
    border: 1px solid var(--backRed);
    padding: 5px;
}

.reviews_page_item_table tr:nth-child(odd) {
  font-weight: bold;
}

.reviews_page_item_link {
    color: var(--backRed);
}

.reviews_page_item_link:hover {
    color: var(--highlightRed);
    text-decoration: underline;
}

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

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

#optionsSelect select {
    border-radius: 0;
    border: 1px solid var(--backRed);
    padding: 6px;
    height: 40px;
    margin-top: 5px;
}

ul.card_accepts {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin: 40px 0;
}

ul.card_accepts li {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    font-weight: bold;
    text-align: center;
    max-width: 150px;
}

ul.card_accepts li img {
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border-radius: 6px;
}

#generic_content_section p strong {
    color: var(--backRed);
    font-weight: bold;
    margin-top: 1rem;
    font-size: 1rem;
}

#generic_content_section ul {    
    margin: 1rem 0;
    list-style: inside;
}

#generic_content_section ul li::marker {    
    color: var(--backRed);
}


.fws_sitemap_container a {
    color: var(--text);
    white-space: break-spaces;
}

.fws_sitemap_container a:hover {
    color: var(--highlightRed);
}

.fws_sitemap_container li {
    display: flex;
    margin-bottom: 5px 
}

.ruk_count {
    color: #cf3236 !important;
}

/* new accordion stuff */


.accordion {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 30px;
}

.accordion-title {
  font-weight: bold;
  color: var (--text);
}

.accordion-icon {
  display: flex;
  align-items: center;
  justify-self: center;
  position: relative;
  width: 16px;
  height: 16px;
  transition: 0.3s ease-out;
}

.accordion-icon::before,
.accordion-icon::after {
  position: absolute;
  content: "";
  height: 16px;
  width: 2px;
  background: var(--text);
  transition: 0.3s ease-out;
}

.accordion-icon::before {
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.accordion-icon::after {
  transform: rotate(90deg);
  right: 7px;
  opacity: 1;
}

.accordion-content {
  padding: 30px;
  margin-top: 18px;
  border: 1px solid var(--highlightRed);
  
}

.accordion-content.generic p {
    text-align: left;
}

summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--modalBackground);
  height: 60px;
  padding: 0 20px;
}

details {
  transition: 0.3s ease;
}

details.margin18 {
    margin-top: 18px;
}

details::details-content {
  opacity: 0;
  max-height: 0;
  overflow-y: clip;
  transition: 1s ease;
}

details[open]::details-content {
  opacity: 1;
  max-height: 100000px;
}

details summary {
  cursor: pointer;
}

details summary:hover {
  color: var(--highlightRed);
}

details[open] .accordion-icon {
  transform: rotate(-180deg);
}

details[open] .accordion-icon::before {
  opacity: 0;
}

details[open] .accordion-content {
  height: auto;
  opacity: 1;
}

.this_is_a_new_class {
    color: red;
}

.accordion details strong {
    color: var(--backRed);
    font-weight: bold;    
    font-size: 1rem;
    display: block;
}

.accordion-content.generic p:not(:last-of-type) {
    margin-bottom: 1em;
}

.accordion-content.generic ul {
    list-style-position: inside;
    margin-bottom: 1em;
}

.accordion-content.generic ul li::marker {
    color: var(--backRed);
}

/* Why Us */

#details_more_box_item4{
    padding: 0 !important;
}

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

.why_us img {
    width: 100%;
    height: auto;
}

.why_us_item{
    text-align: center;
    position: relative;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 3px;
    min-height: 100px;
    width: 100%;
    line-height: 25px;
}

.why_us_item img{
    display: block;
}

.why_us_item_content{
    font-weight: bold;
    width: 100%;
    padding: 20px;
    font-size: 1rem;
    box-sizing: border-box;
}

.why_us_item_content_hidden{
    padding: 30px 25px;
}

.why_us_item_text{
    font-weight: bold;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #FFF;
    background-color: rgba(0,0,0,0.5);
    left: 0; right: 0;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 35px;
}

.why_us_item2a{ order: 2; }
.why_us_item2b{ order: 1; }
.why_us_item2c{ order: 4; }
.why_us_item2d{ order: 3; }
.why_us_item2e{ order: 5; }
.why_us_item2f{ order: 6; }
.why_us_item2g{ order: 7; }
.why_us_item2h{ order: 8; }



@media only screen and (min-width: 530px){
    .accordion {
      margin-bottom: 50px;
    }
}

@media only screen and (min-width:800px){
    
    .why_us_item{
        width: 50%;
    } 
     .why_us{
        flex-direction: row;
    }
    
    .why_us.reverse{
        flex-direction: row-reverse;
    }
    
    .why_us_item_content{
        padding: 0;
    }
    
    .why_us_item_content_hidden{
        padding: 10px 25px;
    }
    
     
    .why_us_item2a{ order: 2; }
    .why_us_item2b{ order: 1; }
    .why_us_item2c{ order: 3; }
    .why_us_item2d{ order: 4; }
    .why_us_item2e{ order: 6; }
    .why_us_item2f{ order: 5; }
    .why_us_item2g{ order: 7; }
    .why_us_item2h{ order: 8; }
    
}

@media only screen and (min-width:1000px){
    
    .why_us_item{
        font-size: 1rem;
        line-height: 30px;
    }
    
    .why_us_item_content{
        font-size: 1rem;
    }
    
    .why_us_item_content_hidden{
        font-size: 0.8rem;    
    }
    
}

@media only screen and (min-width:1040px){
    .why_us_item{
        width: 25%;
    } 
    
    .why_us_item2a{ order: 1; }
    .why_us_item2b{ order: 2; }
    .why_us_item2c{ order: 3; }
    .why_us_item2d{ order: 4; }
    .why_us_item2e{ order: 6; }
    .why_us_item2f{ order: 5; }
    .why_us_item2g{ order: 8; }
    .why_us_item2h{ order: 7; }
   
   
}





















