/* Overall */
* {
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: none;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
    font-size: 14px;
    line-height: 1.4em;
    color: var(--color1);
}

:root {
    --app-height: 100vh;
    --color1: #424770;
    --color2: #cfd7e0;
    --color3: #757680;
    --color4: #5E8E3E;
    --color5: #30313D;
    --color6: #e25950;
    --color7: #fa755a;
    --color8: #131521;
    --color9: #6d6e78;
    --color10: #0570de;
    --color11: #ffffff;
    --color12: #484c61;
    --color13: #fdfdfd;
    --color14: #313b3f;
    --color15: #df1b41;
    --color16: #6b6c6e;
    --color17: #fefefe;
    --color18: #aaaaaa;
    --color19: #000000;
    --color20: #e8e8fb;
    --color21: #f3f3ff;
}

body form {
    display: flex;
    flex-direction: row;
    align-items: center;
    background: var(--color13);
    position: relative;
}

::-webkit-input-placeholder {
    color: var(--color2);
}

::-moz-placeholder {
    color: var(--color2);
    opacity: 1;
}

:-ms-input-placeholder {
    color: var(--color2);
}

input:-webkit-autofill,
select:-webkit-autofill {
    -webkit-text-fill-color: var(--color5);
    transition: background-color 100000000s;
    -webkit-animation: 1ms void-animation-out 1s;
    -webkit-box-shadow: 0 0 0 30px white inset !important;
}

input::placeholder {
    color: var(--color3);
}

input:-ms-input-placeholder {
    color: var(--color3);
}

/* Header */
.header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    height: 60px;
    background: var(--color11);
    border-bottom: 1px solid var(--color21);
}

    .header span {
        font-size: 15px;
        font-weight: 500;
        color: var(--color4);
        letter-spacing: 0.3px;
        text-transform: uppercase;
        text-decoration: none;
    }

    .header a:hover {
        text-decoration: underline;
        cursor: pointer;
    }

    .header #aStore {
        left: 0;
        right: 0;
        height: 60px;
        width: auto;
        margin-left: auto;
        margin-right: auto;
        padding: 5px;
    }

        .header #aStore img {
            height: 50px;
            width: auto;
            max-width: 225px;
        }

    .header #aHomePage {
        left: 0;
    }

    .header #aBasket {
        right: 0;
    }

        .header #aHomePage img,
        .header #aBasket img {
            height: 34px;
            position: absolute;
        }

    .header #aHomePage img {
        left: 20px;
    }

    .header #aBasket img {
        right: 20px;
    }

    .header #aHomePage,
    .header #aBasket {
        filter: invert(0%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(0%) contrast(20%);
        background-size: auto 35px;
        position: absolute;
        top: 0;
        width: 75px;
        height: 60px;
        margin-left: auto;
        margin-right: auto;
        text-align: right;
        padding: 13px;
        font-weight: 500;
        text-decoration: none;
        text-align: center;
    }

        .header #aHomePage:hover,
        .header #aBasket:hover {
            filter: invert(0%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(0%) contrast(70%);
        }

        .header #aHomePage span,
        .header #aBasket span {
            font-size: 14px;
            line-height: 42px;
        }

/* Main */
#main {
    width: 100%;
    height: 100%;
    text-align: center;
    transition: width 0.3s ease-in-out;
    position: relative;
    min-height: 100vh;
    min-height: var( --app-height);
}

    #main.home #divMain {
        display: block;
        visibility: visible;
        opacity: 1;
    }

.mainForm {
    margin: 15px -30px;
    padding: 10px 30px 20px 30px;
    border-radius: 4px;
    border: 1px solid var(--color20);
    display: none;
}

#divMain {
    width: 98%;
    max-width: 600px;
    margin: 0 auto;
    padding: 20px 0 150px 0;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s, opacity 0.5s linear 0.5s;
    left: 0;
    right: 0;
}

section {
    display: flex;
    flex-direction: column;
    position: relative;
    text-align: left;
}

#s404 {
    text-align: center;
}

/* Stripe */
.element {
    box-sizing: border-box;
    height: 40px;
    padding: 12.5px;
    border: 1px solid transparent;
    border-radius: 4px;
    background-color: white;
    box-shadow: 0 1px 3px 0 #e6ebf1;
    -webkit-transition: box-shadow 150ms ease;
    transition: box-shadow 150ms ease;
}

.element-errors {
    display: none;
    margin: 0 auto 0 auto;
    padding-left: 20px;
    color: var(--color6);
    transition-property: opacity, transform;
    transition-duration: 0.35s;
    transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
    background: url(/Assets/images/error.svg) center left no-repeat;
    background-size: 15px 15px;
    font-size: 13.5px;
}

#payment-element {
    margin-bottom: 24px;
}

.StripeElement--invalid {
    border-color: var(--color7) !important;
}

/* Buttons */
.btnPay {
    background: var(--color13);
    border-radius: 4px;
    border: 2px solid var(--color12);
    font-weight: bold;
    cursor: pointer;
    height: 45px;
    transition: all 0.2s ease;
    box-shadow: 0px 4px 5.5px 0px rgba(0, 0, 0, 0.25);
    width: 100%;
    margin-top: 10px;
}

    .btnPay:hover {
        border: 2px solid var(--color8);
    }

        .btnPay:hover span {
            color: var(--color8);
        }

    .btnPay:disabled {
        opacity: 0.5;
        cursor: default;
    }

    .btnPay span {
        font-size: 15px;
    }

#divBtnCheckout {
    margin: 10px 0px 0px 0px;
}

#divSubscriptionPaymentInfo {
    font-size: 9px !important;
    color: var(--color9);
    margin-top: 5px;
    display: none;
    filter: blur(.1px);
    -webkit-filter: blur(.1px);
}

.iShipping {
    margin-left: 5px;
    filter: invert(27%) sepia(11%) saturate(1750%) hue-rotate(196deg) brightness(98%) contrast(94%);
}

    .iShipping img {
        height: 15px;
    }

.btnChange, .btnChange p {
    border: none;
    cursor: pointer;
    background: none;
    align-items: center;
    color: var(--color10);
    font-weight: 500 !important;
    font-size: 13px !important;
    text-decoration: none;
}

    .btnChange:hover {
        text-decoration: underline;
    }

#btnChangeAddress, #btnCopyCheckoutLink {
    padding-bottom: 5px;
    margin-bottom: 10px;
    padding-top: 5px;
    border-bottom: 1px dashed var(--color20);
}

    #btnCopyCheckoutLink:active {
        color: var(--color19);
    }

/* Spinner */
.spinner,
.spinner:before,
.spinner:after {
    border-radius: 50%;
}

.spinner {
    color: var(--color8);
    font-size: 22px;
    text-indent: -99999px;
    margin: 0px auto;
    position: relative;
    width: 22px;
    height: 22px;
    box-shadow: inset 0 0 0 2px;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
}

    .spinner:before,
    .spinner:after {
        position: absolute;
        content: "";
    }

    .spinner:before {
        width: 10.4px;
        height: 20.4px;
        background: var(--color13);
        border-radius: 20.4px 0 0 20.4px;
        top: -0.2px;
        left: -0.2px;
        -webkit-transform-origin: 10.4px 10.2px;
        transform-origin: 10.4px 10.2px;
        -webkit-animation: loading 2s infinite ease 1.5s;
        animation: loading 2s infinite ease 1.5s;
    }

    .spinner:after {
        width: 10.4px;
        height: 10.2px;
        background: var(--color13);
        border-radius: 0 10.2px 10.2px 0;
        top: -0.1px;
        left: 10.2px;
        -webkit-transform-origin: 0px 10.2px;
        transform-origin: 0px 10.2px;
        -webkit-animation: loading 2s infinite ease;
        animation: loading 2s infinite ease;
    }

/*Loading*/
.progress {
    display: none;
    position: absolute;
    width: 100%;
    top: 0px;
    left: 0px;
    height: 100%;
    background-color: var(--color19);
    opacity: 0.5;
    z-index: 999;
}

#divProgressImg {
    background-color: transparent;
    filter: alpha(opacity=50) !important;
    z-index: 1000;
    position: fixed;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -40%);
    width: 50%;
}

    #divProgressImg img {
        align-items: center;
        text-align: center;
        margin: auto;
        height: 50px;
        margin-top: 20px;
    }

    #divProgressImg p {
        color: var(--color11);
        font-style: italic;
    }

#pLoading {
    font-size: 45px;
}

#pWait {
    font-size: 25px;
}

@-webkit-keyframes loading {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes loading {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

/* Products */
.aProductDownload {
    font-weight: 500;
    line-height: 35px;
    border: 1px solid var(--color12);
    border-radius: 3px;
    padding: 3px 10px;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0px 4px 5.5px 0px rgba(0, 0, 0, 0.07);
}

    .aProductDownload:hover {
        color: var(--color8) !important;
        border: 1px solid var(--color8);
    }

.select {
    flex: 1;
    cursor: pointer;
    outline: none;
    padding: 5px;
    border: 1px solid rgba(50, 50, 93, 0.1);
    font-size: 12px;
    background: var(--color13);
    width: 100%;
    padding-right: 25px;
    -webkit-border-radius: 0;
}

    .select:hover {
        box-shadow: rgba(50, 50, 93, 0.1) 0 0 0 2px;
    }

    .select:focus {
        border: 1px solid rgba(60, 60, 60, 0.5);
        box-shadow: rgba(60, 60, 60, 0.5) 0 0 0 2px;
    }

#divDdls {
    float: right;
}

.description {
    color: var(--color12);
}

.divLineItem {
    display: flex;
    flex-direction: row;
    padding: 15px;
    align-items: center;
}

    .divLineItem .imgProduct {
        border: 1px solid rgba(18, 18, 18, 0.05);
        border-radius: 5px;
    }

    .divLineItem .imgProductWidth {
        width: 85px;
        height: 75px;
        object-fit: cover;
        margin: auto 10px auto 0;
    }

    .divLineItem .imgProductWidth0 {
        width: 0px !important;
    }

    .divLineItem .label {
        flex: 1;
        text-align: left;
    }

    .divLineItem:not(.divLineItem7):not(.divLineItem1) .label p, .divLineItem:not(.divLineItem7):not(.divLineItem1) > p {
        cursor: default;
    }

    .divLineItem .pProductTitle {
        color: var(--color1);
        font-weight: 500;
        text-decoration: none;
    }

    .divLineItem .pProductPrice {
        font-size: 14px !important;
        padding-left: 10px;
        text-align: right;
        line-height: 30px;
        float: left;
    }

    .divLineItem .pProductPrice, .divLineItem .pProductPrice1 {
        color: var(--color8);
        font-size: 14px !important;
        text-align: center !important;
    }

    .divLineItem .pProductPrice2 {
        color: var(--color8);
        font-size: 10px !important;
        text-align: center !important;
    }

    .divLineItem .pProductQuantity {
        color: var(--color8);
        font-size: 14px !important;
    }

    .divLineItem .pProductPriceX {
        color: var(--color8);
        font-size: 11px !important;
    }

    .divLineItem .pInvoiceNumber {
        padding-left: 5px;
        white-space: nowrap;
    }

    .divLineItem .pInvoicePaid, .divLineItem .pInvoiceOrder, .divLineItem .pInvoiceDateCreated, .divLineItem .pInvoiceTotal {
        font-style: italic;
        border-left: 1px solid var(--color20);
        padding-left: 5px;
        margin-left: 5px;
        text-align: center;
        font-size: 13px;
    }

    .divLineItem .pInvoiceOrder {
        min-width: 90px;
    }

    .divLineItem .pInvoiceDateCreated {
        min-width: 90px;
    }

    .divLineItem .pInvoiceTotal {
        min-width: 80px;
    }

    .divLineItem .pInvoicePaid {
        min-width: 60px;
    }

    .divLineItem .divTrackingLinks {
        margin-right: 10px;
        max-width: 100%;
    }

        .divLineItem .divTrackingLinks a {
            border-left: 1px solid var(--color20);
            padding-left: 10px;
            text-decoration: none;
        }

            .divLineItem .divTrackingLinks a:hover {
                text-decoration: underline;
            }

    .divLineItem .divTrackingProducts {
        border-left: 1px solid var(--color20);
        max-width: 100%;
    }

.divLineItem2 {
    padding: 12px 0 0 0 !important;
}

    .divLineItem2:first-child {
        padding: 0 !important;
    }

.divLineItem3 {
    padding: 0 !important;
    margin: 0 30px 0 30px;
    color: var(--color1);
    font-weight: 500;
    font-style: italic;
}

    .divLineItem3 p {
        font-size: 14px;
    }

    .divLineItem3 #pTotalTitle, .divLineItem3 #pTotalTitleSuccess {
        font-size: 15px;
    }

.divLineItem4 {
    padding: 5px 0 0 0 !important;
    border-top: 1px solid var(--color20);
    margin-top: 5px;
}

.divLineItem5 {
    padding: 3px 0 0 0 !important;
    font-weight: normal;
}

    .divLineItem5 p {
        font-size: 13px;
    }

.divLineItem.divLineItem6 {
    padding: 0 0 10px 0 !important;
}

    .divLineItem.divLineItem6:last-child {
        padding: 0 !important;
    }

.divLineItem6 p {
    font-size: 14px;
}

.divLineItem7 {
    padding: 2px 0;
    cursor: pointer;
}

    .divLineItem7:has(> .inShipping:checked) {
        cursor: default;
    }

    .divLineItem7 p {
        font-size: 13px;
    }

.divLineItem.divLineItem8 {
    padding: 0 !important;
    min-height: 35px;
}

.divLineItem8 p {
    font-size: 14px;
}

.divLineItem8 > p {
    flex: auto;
}

.divLineItem.divLineItem9 {
    margin: 0 0 7px 0 !important;
    padding: 0 !important;
    flex-wrap: wrap;
}

#divTax div, #divTaxSuccess div, #divDiscount div, #divDiscountSuccess div {
    align-items: baseline;
}

.pTax {
    text-align: right;
}

.pPrice {
    color: var(--color8);
    font-weight: 500;
    padding-left: 5px;
}

    .pPrice p {
        color: var(--color8);
    }

.inTouchspin {
    width: 17px;
    font-size: 14px;
    text-align: center;
}

    .inTouchspin:disabled {
        background-color: var(--color13);
        opacity: 1;
        -webkit-text-fill-color: var(--color14);
    }

#divBasketShippingItemsContainer {
    transition: height 0.75s ease 0s;
    margin-bottom: 5px;
}

#divShippingItems {
    border-radius: 5px;
    border: 1px solid rgba(50, 50, 93, 0.1);
    margin: 3px 0;
    padding: 5px 10px;
}

.inShipping {
    flex: none;
    margin-right: 5px;
    pointer-events: none;
    accent-color: royalblue;
    filter: brightness(150%);
}

.inCheck {
    accent-color: royalblue;
    filter: brightness(150%);
    transform: scale(1.2);
    vertical-align: middle;
}

.pShippingPrice {
    padding-left: 5px;
}

.pShippingPrice2 {
    color: var(--color8);
    font-weight: 500;
}

#divAddressFilled {
    padding-left: 7.5px;
    margin-top: -5px;
}

.lblAddress {
    font-size: 12.5px;
    font-style: italic;
    display: grid;
}

    .lblAddress label {
        font-size: 12.5px;
        line-height: 1.3em;
    }

.inField {
    border-radius: 5px;
    margin-bottom: 3px;
    padding: 7.5px;
    border: 1px solid rgba(50, 50, 93, 0.1);
    font-size: 12.5px;
    background: white;
    width: 100%;
}

    .inField:focus {
        border: 1px solid rgba(5, 115, 225, 0.5);
        box-shadow: rgba(5, 115, 225, 0.3) 0 0 0 3px,rgba(0, 0, 0, 0.08) 0 1px 1px 0;
    }

    .inField.danger {
        border: 1px solid rgb(223,27,65);
        box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.03), 0px 3px 6px rgba(0, 0, 0, 0.02), 0 0 0 1px rgba(223,27,65,1);
    }

.lblField {
    font-size: 11.5px;
}

.pField {
    margin-top: -0.1rem;
    color: var(--color15);
    font-weight: 400;
    font-size: 10.5px;
}

#divCouponCode {
    padding-top: 5px;
    margin-bottom: -5px;
}

#divCouponField {
    display: flex;
    margin-bottom: 3px;
}

#inCoupon {
    border-radius: 5px;
    margin-top: 2px;
    padding: 7.5px;
    border: 1px solid rgba(50, 50, 93, 0.1);
    font-size: 12.5px;
    background: white;
    width: 49%;
    flex: 0 49%;
    margin-right: 5px;
}

    #inCoupon:focus {
        border: 1px solid rgba(5, 115, 225, 0.5);
        box-shadow: rgba(5, 115, 225, 0.3) 0 0 0 3px,rgba(0, 0, 0, 0.08) 0 1px 1px 0;
    }

    #inCoupon.danger, #divShippingItems.danger {
        border: 1px solid rgb(223,27,65);
        box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.03), 0px 3px 6px rgba(0, 0, 0, 0.02), 0 0 0 1px rgba(223,27,65,1);
    }

    #inCoupon.disabled {
        background: var(--color13);
        -webkit-text-fill-color: var(--color1);
        opacity: 1;
        font-style: italic;
        border: none !important;
        box-shadow: none !important;
        pointer-events: none;
        padding: 0;
        margin: 0;
        -webkit-box-shadow: 0 0 0 30px var(--color13) inset !important;
    }

#lblCoupon, #lblShipping {
    font-size: 11.5px;
    flex: 1;
}

.detail {
    font-size: 13.5px;
    font-style: italic;
    line-height: 100%;
    padding-top: 3px;
}

.detail2 {
    line-height: 1.4em;
}

.detailTitle {
    font-size: 11.5px;
}

.detailFirst {
    width: 49%;
    flex: 0 49%;
    margin-right: 5px;
}

.detailSecond {
    width: 48%;
    border-left: 1px solid var(--color20);
    padding-left: 10px;
}

#lblCouponInfo {
    font-style: italic;
    line-height: 100%;
    width: 48%;
    font-size: 11.5px;
    border-left: 1px solid var(--color20);
    padding-left: 10px;
}

#pCouponError, #pShippingError {
    margin-top: -0.1rem;
    color: var(--color15);
    font-weight: 400;
    font-size: 10.5px;
}

.pProductPriceTotal {
    color: var(--color8);
    margin-left: 10px;
    padding-left: 10px;
    border-left: solid 2px var(--color20);
    font-style: italic;
    font-weight: 500;
    min-width: 55px;
    text-align: right;
}

#divSubscriptionItems .pProductPrice p, #divSubscriptionItems .pProductPriceX, #divSuccessItems .pProductPrice p, #divSuccessItems .pProductPrice, #divSuccessItems .pProductPriceX {
    font-weight: normal !important;
}

#divSubscriptionItems .pProductTitle {
    font-size: 14px;
    color: var(--color19);
    font-weight: normal;
}

    #divSubscriptionItems .pProductTitle span, #divSubscriptionItems .pShippingDescription {
        color: var(--color19);
    }

#divSubscriptionItems p {
    font-style: italic;
}

#divSubscriptionItems .iShipping {
    filter: brightness(0%);
}

.btnInvoice, .btnInvoiceHistory {
    border: none;
    cursor: pointer;
    background: none;
    display: inline-flex;
    align-items: center;
    min-width: 144px;
}

.btnInvoiceHistoryDel {
    border: none;
    cursor: pointer;
    background: none;
    display: inline-flex;
    align-items: center;
    font-style: italic;
    border-left: 1px dashed var(--color20);
    padding-left: 5px;
    margin-left: 5px;
    text-align: center;
    font-size: 13px;
}

.btnInvoice:disabled {
    cursor: default;
}

.iInvoice {
    background: url(/Assets/images/link.svg) center no-repeat;
    background-size: 20px;
    padding: 15px;
}

.iInvoiceDel {
    background: url(/Assets/images/del.svg) center no-repeat;
    background-size: 20px;
    padding: 15px;
}

.btnInvoice .iInvoice, .btnInvoiceHistory .iInvoice {
    filter: invert(0%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(0%) contrast(30%);
}

.btnInvoice:disabled .iInvoice {
    display: none;
}

.btnInvoice:hover .iInvoice, .btnInvoiceHistory:hover .iInvoice, .btnInvoiceHistoryDel:hover .iInvoiceDel {
    transform: translateY(-1px);
}

.btnInvoice:hover .iInvoice, .btnInvoiceHistory:hover .iInvoice {
    filter: invert(0%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(0%) contrast(70%);
}

.btnInvoice:hover:enabled p, .btnInvoiceHistory:hover p, .btnInvoiceHistoryDel:hover p {
    color: var(--color19);
}

/* Footer */
footer {
    bottom: 0;
    display: flex;
    position: absolute;
    width: 100%;
    border-top: 1px solid var(--color20);
    padding: 0 150px;
}

.footer-content-wrapper {
    width: 100%;
    padding: 15px 0 5px 0;
}

.footerCenter {
    filter: invert(0%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(0%) contrast(100%);
}

.footerCenter2 {
    filter: invert(0%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(0%) contrast(25%);
    margin-left: 0 !important;
}

.footerCenter, .footerCenter2 {
    font-size: 0 !important;
}

    .footerCenter img, .footerCenter2 img {
        height: 17px;
        width: auto;
    }

.footer-col {
    justify-content: center;
    display: flex;
    box-sizing: border-box;
    width: 100%;
    position: relative;
}

    .footer-col a {
        display: block;
        margin: 6px 0 6px 15px;
        font-size: 9px;
        float: left;
        text-decoration: none;
        color: var(--color16);
    }

    .footer-col p {
        margin: 5px 0;
        font-size: 9px;
        float: left;
        text-decoration: none;
        color: var(--color16);
        cursor: default;
    }

.flexCenter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.divLinksContainer {
    justify-content: center;
}

.divLinks {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}

    .divLinks a {
        padding: 0 3px;
        margin: 5px 1px;
        line-height: 14px;
        font-size: 14px;
    }

.tduh:hover, .tduh a:hover {
    text-decoration: underline;
}

/* Recaptcha */
.gRecaptcha {
    margin: 0 auto;
    padding: 10px 0;
}

.grecaptcha-badge {
    visibility: hidden;
}

/* Modal */
.modal {
    display: none;
    position: absolute;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.5);
}

.modal-content {
    display: flex;
    background-color: var(--color17);
    margin: auto;
    padding: 20px;
    border: 1px solid var(--color20);
    border-radius: 5px;
    width: 50%;
    max-width: 550px;
    position: fixed;
    top: 45%;
    transform: translate(50%, -40%);
    border: 1px solid rgb(223,27,65);
    box-shadow: 0 0 10px rgba(223, 27, 65, 0.4);
    right: 50%;
}

    .modal-content p {
        flex: 1;
        display: flex;
        align-items: center;
        color: var(--color15);
    }

.close {
    color: var(--color18);
    float: right;
    font-size: 28px;
    font-weight: bold;
    display: flex;
    align-items: center;
    padding: 0 10px 0 10px;
    margin-top: -5px;
}

    .close:hover,
    .close:focus {
        color: var(--color19);
        text-decoration: none;
        cursor: pointer;
    }

/* Text Truncate */
.text-truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    width: 100%;
    overflow-wrap: break-word
}

.text-truncate-1 {
    -webkit-line-clamp: 1
}

.text-truncate-2 {
    -webkit-line-clamp: 2
}

.text-truncate-3 {
    -webkit-line-clamp: 3
}

.text-truncate-4 {
    -webkit-line-clamp: 4
}

.text-truncate-5 {
    -webkit-line-clamp: 5
}

/* Separator */
.separatorTop {
    border-top: 1px solid var(--color20);
    margin-top: 9px;
    padding-top: 5px;
}

.separatorLeft {
    border-left: 1px solid var(--color20);
    padding-left: 10px;
}

.separator {
    align-items: center;
    text-align: center;
    vertical-align: middle;
    display: flex;
    justify-content: center;
    font-size: 13px;
    line-height: 20px;
}

    .separator::before, .separator::after {
        content: '';
        flex: 1;
        border-bottom: 2px solid var(--color20);
    }

    .separator::before {
        margin-right: .25em;
    }

    .separator::after {
        margin-left: .25em;
    }

/* General */
a {
    cursor: pointer;
}

    a.disabled, select.disabled {
        pointer-events: none;
        cursor: default;
    }

.cursord {
    cursor: default;
}

.d-none {
    display: none !important;
}

.d-block {
    display: block !important;
}

.d-flex-column {
    display: flex !important;
    flex-direction: column;
}

.d-flex-row {
    display: flex !important;
    flex-direction: row;
}

.flexA {
    flex: auto;
}

.fltL {
    float: left;
}

.fltR {
    float: right;
}

.fs10, .fs10fsti {
    font-size: 10px !important;
}

.fs11, .fs11fsti {
    font-size: 11px !important;
}

.fs12 {
    font-size: 12px !important;
}

.fs13 {
    font-size: 13px !important;
}

.fs13_5, .fs13_5fwn {
    font-size: 13.5px !important;
}

.fs14, .fs14fwn, .fs14fsti, .fs14fstifwn {
    font-size: 14px !important;
}

.fsti, .fs10fsti, .fs11fsti, .fs14fsti, .fs14fstifwn {
    font-style: italic !important;
}

.fwn, .fs14fwn, .fs14fstifwn, .fs13_5fwn {
    font-weight: normal !important;
}

.h-scroll {
    overflow-x: auto;
}

.hidden {
    display: none;
}

hr {
    border-top: 1px solid var(--color8);
}

h1 {
    margin: 20px 0 5px 0;
    font-size: 24px;
    font-weight: 400;
    cursor: default;
    text-align: center;
}

h2 {
    border-bottom: 1px dashed var(--color20);
    padding-bottom: 5px;
    margin: 10px 0;
    color: var(--color8);
    text-transform: uppercase;
    letter-spacing: 0.4px;
    font-size: 13px;
    font-weight: 600;
    flex: 1;
    cursor: default;
}

h3 {
    border-bottom: 1px dashed var(--color20);
    padding-bottom: 3px;
    margin: 8px 0;
    color: var(--color8);
    letter-spacing: 0.4px;
    font-size: 12px;
    font-weight: 600;
    flex: 1;
    cursor: default;
}

input {
    flex: 1;
    border-style: none;
    outline: none;
    color: var(--color14);
}

.aContinueShopping {
    margin: 30px auto 20px auto;
    border: solid 1px;
    padding: 5px 10px;
    transform: skewX(-15deg);
    height: 33px;
    text-decoration: none;
}

    .aContinueShopping:hover {
        color: var(--color19);
        border: solid 2px black;
    }

.large-33 {
    width: 33.3%;
}

.pt0 {
    padding-top: 0px !important;
}

.pl5 {
    padding-left: 5px !important;
}

.pt10 {
    padding-top: 10px !important;
}

.m0 {
    margin: 0 !important;
}

.mauto {
    margin: auto;
}

.mt3, .my3 {
    margin-top: 3px !important;
}

.mt5, .my5 {
    margin-top: 5px !important;
}

.mb5, .my5 {
    margin-bottom: 5px;
}

.mb10, .my10 {
    margin-bottom: 10px !important;
}

.mb15, .my15 {
    margin-bottom: 15px;
}

.mb25, .my25 {
    margin-bottom: 25px;
}

.mt-3 {
    margin-top: -3px !important;
}

.mt-5 {
    margin-top: -5px !important;
}

.mr5 {
    margin-right: 5px !important;
}

.mla {
    margin-left: auto;
}

.ml5 {
    margin-left: 10px !important;
}

.mt8 {
    margin-top: 8px !important;
}

.ml10 {
    margin-left: 10px !important;
}

.mr10 {
    margin-right: 10px !important;
}

.mt10, .my10 {
    margin-top: 10px !important;
}

.mt15, .my15 {
    margin-top: 15px !important;
}

.mt25, .my25 {
    margin-top: 25px !important;
}

.mx5 {
    margin-left: 5px !important;
    margin-right: 5px !important;
}

.noscroll {
    width: 100%;
    height: 100%;
    overflow: hidden;
    width: 100%;
}

.nopointer {
    pointer-events: none;
}

.overflow-hidden {
    overflow: hidden;
}

.tac {
    text-align: center;
}

/* Media Queries */
@media(min-width:1201px) {
    .text-truncate-xl-3 {
        -webkit-line-clamp: 3
    }

    .text-truncate-xl-4 {
        -webkit-line-clamp: 4
    }

    .text-truncate-xl-5 {
        -webkit-line-clamp: 5
    }
}

@media only screen and (max-width: 1024px) {
    .divLineItem {
        display: flex;
        flex-direction: row;
        padding: 10px 7.5px;
    }

    .divLineItem7 {
        padding: 5px 0;
    }

    .divLineItem .image {
        width: 40px;
        height: 40px;
    }

    .divLineItem .label {
        margin: 0;
    }

    .divLineItem p {
        margin-top: 0;
    }

    #divProgressImg {
        width: 90%;
    }

    .header #aBasket,
    .header #aHomePage {
        width: 60px;
        background-size: auto 30px;
    }

        .header #aHomePage img {
            left: 13px;
        }

        .header #aBasket img {
            right: 13px;
        }

    footer {
        padding: 0 50px;
    }

    #main.home {
        width: 100%;
    }

        #main.home #divProgressImg {
            right: 50%;
        }

    #main.home, .progress {
        width: 100%;
    }

    .mainForm {
        margin: 0 -30px 15px -30px;
    }

    .modal-content {
        width: 80%;
    }
}

@media only screen and (max-width: 760px) {
    .mainForm {
        margin: 0 0 15px 0;
        padding: 0 10px 15px 10px;
    }
}

@media only screen and (min-width: 560px) {
    .divLineItem .pInvoiceOrder {
        width: 90px;
    }

    .divLineItem .pInvoiceDateCreated {
        width: 90px;
    }

    .divLineItem .pInvoiceTotal {
        width: 60px;
    }

    .divLineItem .pInvoicePaid {
        width: 60px;
    }

    .btnInvoice, .btnInvoiceHistory {
        width: 144px;
    }
}

@media only screen and (max-width: 560px) {
    #divDdls {
        margin-bottom: 15px;
    }

    .divLinks a {
        padding: 0 5px;
        margin: 6px 0;
        font-size: 18px;
    }

    .divLinksContainer p {
        margin: 6px 0;
    }

    #divMain {
        margin-bottom: 0;
        padding-top: 20px;
        padding-bottom: 250px;
    }

    fieldset {
        margin-bottom: 15px;
    }

    .fltR {
        float: left;
    }

    footer {
        padding: 0 15px;
    }

    .footer-col {
        top: unset;
        transform: unset;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

        .footer-col a, .footer-col p {
            font-size: 8px;
        }

    .footerCenter, .footerCenter2 {
        width: 100%;
        margin-left: 0 !important;
    }

    .imgProductWidth {
        width: 65px !important;
        height: 60px !important;
    }

    .modal-content {
        width: 90%;
    }

    .mt20s {
        margin-top: 20px !important;
    }

    p.tip {
        padding: 35px 0 25px 30px;
    }

    .select {
        font-size: 14px;
    }

    .small-100 {
        width: 100%;
    }
}

@media(max-width:500px) {
    .mainForm {
        padding: 0 5px 15px 5px;
    }

    .divLineItem .pProductTitle, .divLineItem .pProductPrice, .divLineItem .pProductQuantity, .divLineItem .pProductPriceTotal, .divLineItem .fs14fstifwn {
        font-size: 13px !important;
    }

    .iShipping img {
        height: 13px;
    }
}

@media(max-width:365px) {
    .imgProductWidth {
        width: 55px !important;
        height: 50px !important;
    }
}
