:root {
    --H_MENU_HEIGHT: 50px;
    --FADE_TO: 0.6;
    --FADE_DURRATION: 2.0s;
}

html, body {
    margin: 0px;
    width: 100%;
    min-height: 100vh;
    scrollbar-gutter: stable;
}


h1 {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 20px;
    font-family: "Times New Roman", serif;
    font-weight: bold;
    margin: 0px 0px 0px 0px;
    line-height: 100%;
}

audio {
    max-width: 100%;
}


.h_menu_con
{
    position: fixed;
    background-color: #444444;
    height: var(--H_MENU_HEIGHT);
    width: 100%;
    box-shadow: 0px 4px 8px 0px rgba(0,0,0,0.4);
    margin: 0px auto;
    top: 0px;

    display: flex;
    justify-content: space-between;

    transition: top 0.8s;

    z-index: 100;
}


.h_menuImg {
    outline: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity var(--FADE_DURRATION);
}

.h_menu  {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 950px;
    width: 100vw;
    margin: 0px auto;
}



.ghostburger,
.hamburger
{
    outline: none;
    text-decoration: none;
    box-sizing: border-box;

    width: 38px;
    height: 38px;
    padding: 7px;

    margin: 6px;
    border-radius: 6px;
    border-style: solid;
    border-width: 2px;
    border-color: transparent;

    border-color: transparent;
    background-color: transparent;
    transition: border-color 0.2s, background-color 0.2s, color 0.2s, opacity var(--FADE_DURRATION);
}

.ghostburger {
    opacity: 0;
}


.h_menu_item {
    outline: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    box-sizing: border-box;
    width: 140px;
    height: 40px;
    margin: 5px;
    color: #ffffff;
    text-decoration: none;
    border-radius: 10px;
    border-width: 1px;
    border-style: solid;
    border-color: transparent;

    text-decoration: none;
    font-family: Arial, sans-serif;
    font-size: 14px;
    font-weight: 900;

    transition: border-color 0.2s, opacity var(--FADE_DURRATION);
}

.h_menu_cart {

    outline: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    box-sizing: border-box;
    min-width: 80px;
    height: 40px;
    margin: 5px;
    color: #ffffff;
    text-decoration: none;
    border-radius: 10px;
    border-width: 1px;
    border-style: solid;
    /* border-color: #707070; */
    border-color: transparent;

    /* background-color: #555; */
    text-decoration: none;
    font-family: Arial, sans-serif;
    font-size: 14px;
    font-weight: 900;

    transition: border-color 0.2s, opacity var(--FADE_DURRATION);
}


/* To be overridden/amended on individual pages */
.content {
    display: grid;
    grid-template-areas: "left center right";
    grid-template-columns: 1fr 730px 1fr;

    min-height: 100vh;
    max-width: 100%;

    margin: 0px auto;
    padding: 44px 10px 50px 10px;

    text-align: justify;
    /* font-family: Arial, sans-serif; */
    font-family: ui-sans-serif,system-ui,sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 150%;
}

.left,
.right {
    margin-left: 10px;
    margin-top: 0px;
    max-width: 400px;
}


/* To be overridden/amended on individual pages */
.h_menu_spacer
{
    height: var(--H_MENU_HEIGHT);
    width: 100%
}



.footer
{
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 20px 20px;
    width: 100vw;
    background-color: #111;
    color: #ddd;
}

.footer_cr {
    display: flex;
    justify-content: start;
    align-items: center;
    margin: 8px;
    font-family: Arial, sans-serif;
    font-size: 14px;
}

.footer_links {
    display: flex;
    justify-content: start;
    align-items: center;
    flex-wrap: wrap;
    color: #ddd;
    text-decoration: none;
}

.footer_links > a {
    margin: 8px;
    font-family: Arial, sans-serif;
    font-size: 13px;
    color: #ddd;
    text-decoration: none;
}

.footer_links > a:hover {
    color: #fff;
    text-decoration: underline;
}



.backdrop {
    position: fixed;
    z-index: 1000000;
    width: 100%;
    height: 100vh;
    top: 0px;
    background-color: #888888cc;
    backdrop-filter: blur(0px);
    opacity: 0;
    left: -100%;
    overflow-y: scroll;
}

.mob_menu {
    position: relative;
    min-height: 100vh;

    float: left;
    top: 0px;
    background-color: #222222;
    color: #ffffff;
    left: -100%;
    border-right: 0px solid #aaaaaa;
    width: 80%;
    max-width: 325px;
    box-shadow: 4px 0px 8px 0px rgba(0,0,0,0.4);

}


.mob_menu_item {
    outline: none;
    color: #ffffff;
    text-decoration: none;
    display: flex;
    align-items: center;

    height: 30px;
    margin: 10px 0px 10px 0px;
    padding: 0px 20px 0px 10px;
    font-weight: 600;

    font-size: 15px;
    font-family: Arial, sans-serif;

    border-left-width: 0px;
    border-left-style: solid;
    border-left-color: transparent;
    transition: opacity var(--FADE_DURRATION);
}

.v_sub_item {
    padding-left: 30px;
}

.mob_menuImg {
    outline: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    transition: opacity var(--FADE_DURRATION);
}

.wg_success {
    border-radius: 4px;
    color: #000000;
    border: 1px solid #008800;
    background-color: #eeffee;
    padding: 10px 30px;
    margin-top: 1em;
    margin-bottom: 1em;
    text-align: left;

    text-align: justify;
    font-family: Arial, sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 150%;
}

.wg_danger {
    padding: 10px 30px;
    margin-top: 1em;
    margin-bottom: 1em;
    text-align: left;

    color: #000000;
    border-radius: 4px;
    border: 1px solid #ff0000;
    background-color: #ffeeee;

    text-align: justify;
    font-family: Arial, sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 150%;
}

.wg_info {
    padding: 10px 30px;
    margin-top: 1em;
    margin-bottom: 1em;
    text-align: left;

    color: #000000;
    border-radius: 4px;
    border: 1px solid #0043E0;
    background-color: #E5EDFF;

    text-align: justify;
    font-family: Arial, sans-serif;

    font-weight: 500;
    line-height: 150%;
}

.mid_share_item {
    padding: 5px;
    box-sizing: border-box;
    border: 1px solid transparent;
    height: 50px;
    border-radius: 25px;
}

.mid_share {
    width: 100%;
    max-width: 350px;
    display: flex;
    justify-content: space-between;
    padding: 10px 0px;
}

.side_share {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 10px 0px;
}

.side_share_item {
    padding: 4px;
    box-sizing: border-box;
    border: 1px solid transparent;
    width: 40px;
    margin: 0px 4px;
    border-radius: 24px;
}


.lbar_con {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    left: 0;
    position: fixed;
    height: 100%;
    width: 300px;
    padding: 16px;
    line-height: 1.25;
}

.lbar {
    overflow: hidden;
    /* Chromium is not properly displaying box-shadows here when "border-radius" > 0.*/
    border-radius: 5px;
    border-width: 1px;
    border-style: solid;
    border-color: #ccc;
    background-color: #f8f8f8;
    color: #222;
}

.lbar_item {
    outline: none;

    color: #333;
    text-decoration: none;
    display: flex;
    align-items: center;

    margin: 0px;
    padding: 6px 10px 6px 20px;

    font-weight: 600;

    font-size: 15px;
    font-family: Arial, sans-serif;

    border-left-width: 0px;
    border-left-style: solid;
    border-left-color: transparent;
    transition: opacity var(--FADE_DURRATION);
}

.lbar_sub_item {
    padding-left: 40px;
}


.img_center {
    display: block;
    max-width: 100%;
    margin: 0 auto;
}

.img_left {
    float: left;
    display: block;
    margin-right: 20px;
    max-width: 100%;
}

.img_right {
    float: right;
    display: block;
    margin-left: 20px;
    max-width: 100%;
}


/* Intended for links within written text. */
p > a
{
    text-decoration: underline;
    color: #3333ff;
}

/* Intended for links within written text. */
p > a:hover:focus,
p > a:hover
{
    outline: none;
    text-decoration: none;
}

/* Intended for links within written text. */
p > a:not(:hover):focus
{
    outline: none;
    color: #ffffff;
    background-color: #3377ff;
}


.h_menuImg:hover,
.mob_menuImg:hover,
.h_menuImg:focus,
.mob_menuImg:focus
{
    filter: sepia(75%);
}


.h_menuImg:active,
.mob_menuImg:active
{
    opacity: var(--FADE_TO);
    transition: opacity 0s;
}


.h_menu_cart.currentHref,
.h_menu_item.currentHref {
    border-color: #999999;
}


.hamburger:focus,
.hamburger:hover
{
    cursor: pointer;
    border-color: #877454;
}

.hamburger:active {
    opacity: var(--FADE_TO);
    transition: opacity 0s;
}

.h_menu_cart:hover,
.h_menu_cart:focus,
.h_menu_item:hover,
.h_menu_item:focus
{
    border-color: #877454;
}

.h_menu_cart:active,
.h_menu_item:active
{
    opacity: var(--FADE_TO);
    transition: opacity 0s;
}

.lbar_item.currentHref {
    background-color: #ddd;
}


.lbar_item:hover,
.lbar_item:focus {
    cursor: pointer;
    text-decoration: underline;

}

.mob_menu_item:hover,
.mob_menu_item:focus
{
    cursor: pointer;
    background-color: #333333;
}


.mob_menu_item.currentHref {
    background-color: #444444;
}


.lbar_item:active,
.mob_menu_item:active
{
    opacity: var(--FADE_TO);
    transition: opactiy 0s;
}


.mid_share_item:hover,
.side_share_item:hover {
    cursor: pointer;
    border-color: #aaaaaa;
}

.th1_btn1
{
    box-sizing: border-box;
    border-width: 1px;
    border-radius: 5px;
    font-weight: bold;

    display: flex;
    align-items: center;
    justify-content: center;

    border-style: solid;
    outline: none;
    background-color: #0067cd;
    border-color: #0067cd;
    color: #ffffff;
    transition: border-color 0.2s, background-color 0.2s, color 0.2s, opacity var(--FADE_DURRATION);

    margin: 10px;
    height: 40px;
    width: 150px;
    font-size: 16px;
}

.th1_inpt1
{
    box-sizing: border-box;
    border-width: 1px;
    border-radius: 5px;
    border-style: solid;
    outline: none;
    background-color: #f8f8f8;
    border-color: #bbbbbb;
    color: #000000;

    width: 100%;
    margin: 10px;
    padding: 5px 10px;
    font-size: 12px;
}


.th1_btn1:hover
{
    cursor: pointer;
    border-color: #0067cd;
    background-color: #ffffff;
    color: #333333;
}

.th1_btn1:focus
{
    border-color: #0067cd;
    background-color: #ffffff;
    color: #0067cd;
}

.th1_btn1:active
{
    opacity: var(--FADE_TO);
    transition: opacity 0s;
}



.th1_inpt1:hover:not(:focus)
{
    border-color: #877454;
    background-color: #f8f8ff;
}

.th1_inpt1:focus
{
    border-color: #877454;
    color: #000000;
}


/* download buttons */
.download_file {
    line-height: 100%;
    padding: 16px;
    width: 200px;
    height: 26px;
    margin: 0px 20px;
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    border-width: 1px;
    border-style: solid;
    font-weight: 600;
    font-size: 14px;
    font-family: Arial, sans-serif;
    text-decoration: none;
    color: #ffffff;
    border-color: #0067cd;
    background-color: #0067cd;
    transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, color 0.1s ease-in-out;
}

.download_file > img {
    height: 1em;
    margin: 0em 0.5em;
    transition: filter 0.1s ease-in-out;
}

.download_file:hover {
    color: #333333;
    background-color: #ffffff;
}

.download_file:hover > img {
    filter: invert(0.8);
}


/* media selectors */
@media (max-width: 599px) {
    .h_menu_item {display: none;}
}

@media (min-width: 600px) {
    .hamburger {display: none;}
    .ghostburger {display: none;}
}


@media (min-width: 1394px) {
    .mid_share {display: none;}
}


@media (max-width: 1393px), (max-height: 799px) {
    .lbar_con {display: none;}
}

@media (max-width: 1393px) {
    /* To be overridden/amended on individual pages */
    .content {
        grid-template-columns: 1fr;
        max-width: 930px;
        padding: 44px 16px 50px 16px;
    }

    .left,
    .right {
        display: none;
    }

}

@media (min-width: 1394px) {
    .mid_sm {
        display: none;
    }
}


@media (max-width: 650px) {
    .img_right {
        float: none;
        margin: auto;
    }
}


@keyframes makeAppear {
    0%   { opacity: 0; left: -100%; backdrop-filter: blur(0px);}
    1%   { opacity: 0; left:    0%; backdrop-filter: blur(0px);}
    30%  { opacity: 1; left:    0%; backdrop-filter: blur(2px);}
    100% { opacity: 1; left:    0%; backdrop-filter: blur(2px);}
}

@keyframes makeHide {
    0%   { opacity: 1; left:    0%; backdrop-filter: blur(2px);}
    70%  { opacity: 1; left:    0%; backdrop-filter: blur(2px);}
    99%  { opacity: 0; left:    0%; backdrop-filter: blur(0px);}
    100% { opacity: 0; left: -100%; backdrop-filter: blur(0px);}
}

@keyframes lSlideIn {
    0%   { left: -100%; }
    30%  { left: -100%; }
    100% { left:    0%; }
}

@keyframes lSlideOut {
    0%   { left:    0%; }
    70%  { left: -100%; }
    100% { left: -100%; }
}


/* checkout tag */
.CO_checkout {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    margin: 0px 0px 50px 0px;
}

.CO_checkout_heading {
    font-weight: 600;
    width: 100%;
    text-align: center;
    padding-top: 0px;
    padding-bottom: 8px;
}

.CO_checkout_footer {
    width: 100%;
    text-align: center;
    padding-top: 8px;
    font-weight: 500;
    font-size: 14px;
    color: #0000ff;
}


.CO_currency {
    padding: 0px;
    width: 300px;
    height: 100px;
    margin: 5px;
    overflow: hidden;
}

.CO_buy {
    width:100%;
    height:100%;
    padding:4px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    border-radius: 6px;
    border-width: 1px;
    border-style: solid;
    color: #111111;
    border-color: #888888;
    background-color: #ffffff;
}

.CO_buy:hover {
    border-color: #0000ff;
    cursor: pointer;
}

.CO_buy > img {
    width: 90%;
}

.CO_price {
    padding: 4px;
    width: 200px;
    height: 26px;
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    border-width: 1px;
    border-style: solid;
    font-weight: 600;
    font-size: 14px;
    font-family: Arial, sans-serif;
    text-decoration: none;
    color: #ffffff;
    border-color: #ff3000;
    background-color: #ff3000;
}

.CO_price_slashed {
    color: #333;
    border-color: #eee;
    background-color: #eee;
}

.CO_price_slashed::after {
    color: #f61111;
    position: absolute;
    content: '';
    width: 10.5em;
    border-top: 3px solid;
    transform: skewY(-2deg);
    opacity: 0.45;
}


.CO_right_lg {
    margin-top: 16px;
}

@media (max-width: 1393px) {
    .CO_right_lg {
        display: none;
    }
}



/* acive sales side */
.ASS_stip_holder {

    box-sizing: content-box;
    display: grid;
    grid-gap: 15px;
    width: 100%;
}


.ASS_sales_head {
    width: 300px;
    font-size: 16px;
    font-weight: 600;
    margin: 0 auto;
    text-align: center;
}

.ASS_strip_sale {
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    border-style: solid;
    border-width: 1px;
    border-color: #aaa;
    border-radius: 5px;
    text-decoration: none;
    width: 100%;
    margin: 0 auto;
    padding: 5px 20px;
    width: 300px;
    background-color: #f8f8f8;
    transition: background-color 0.1s ease-in-out;
}


.ASS_strip_prod {
    font-size: 16px;
    font-weight: 600;
    display: flex;
    justify-content: center;
    color: #000;
    width: 100%;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-decoration-color: #ffffff;
    transition: text-decoration-color 0.25s;
}

.ASS_strip_desc {
    font-size: 16px;
    font-weight: 500;
    display: flex;
    justify-content: center;
    color: #444;
    width: 100%;
}

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

.ASS_price {
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 16px;
    font-family: Arial, sans-serif;
    margin: 0 10px;
}

.ASS_sale {
    padding: 10px;
    color: #f61111;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-decoration-color: #ffffff;
    transition: text-decoration-color 0.25s;
}

.ASS_strip_sale:hover,
.ASS_strip_sale:hover .ASS_strip_prod {
    text-decoration-color: #888;
    border-color: #d61111;
}


.ASS_slashed {
color: #333;
padding: 10px;
}

.ASS_slashed::after {
color: #f61111;
position: absolute;
content: '';
width: 5.0em;
border-top: 2px solid;
transform: skewY(-2deg);
opacity: 1;
}

.ASS_end_date {
display: flex;
justify-content: center;
font-weight: 600;
font-size: 14px;
color: #000;
}


/* acitve sales center */
.ASC_strip_holder {
    box-sizing: content-box;
    display: grid;
    grid-gap: 15px;
    padding: 0 0 0 0;
}

.ASC_strip_sale {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    box-sizing: border-box;
    border-style: solid;
    border-width: 1px;
    border-color: #aaa;
    border-radius: 5px;
    text-decoration: none;
    max-width: 700px;
    width: 100%;
    margin: 0px auto;
    padding: 5px 10px;
}


.ASC_prod_name {
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: start;
    text-align: left;
    color: #000;
}

.ASC_price {
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 16px;
    font-family: Arial, sans-serif;
    margin: 0 10px;
}

.ASC_sale {
    color: #f61111;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-decoration-color: #ffffff;
    transition: text-decoration-color 0.25s;
}

.ASC_strip_sale:hover,
.ASC_strip_sale:hover .ASC_sale {
    text-decoration-color: #f61111;
    border-color: #f61111;
    background-color: #fff;
}


.ASC_slashed {
color: #333;
}

.ASC_slashed::after {
color: #f61111;
position: absolute;
content: '';
width: 5.0em;
border-top: 3px solid;
transform: skewY(-2deg);
opacity: 0.65;
}

.ASC_end_date {
font-weight: 600;
font-size: 14px;
color: #000;
}

.ASC_sale_head {
font-size: 18px;
font-weight: 600;
margin: 0px;
text-align: center;
}




/* Combo Deals */
.CD_card_holder {
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    max-width: 500px;
    margin: 20px auto;
}


.CD_card {
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    overflow: hidden;
    text-decoration: none;
    transition: border-color 0.25s, background-color 1.5s;
    text-align: center;
    border-style: solid;
    border-width: 1px;
    border-color: transparent;
    border-radius: 5px;
    max-width: 300px;
    margin: 0 auto;
    height:  175px;
    padding: 10px;
}

.CD_card > img {
    display: block;
    margin: auto;
    max-width: 100%;
    max-height: 100%;
    filter: drop-shadow(0 0 2px #777);
}

.CD_checkout {
    max-width: 700px;
    margin: 0 auto;
}