﻿/* 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: 15px;
    line-height: 1.4em;
    color: #424770;
}

:root {
    --app-height: 100vh;
}

body form {
    display: flex;
    flex-direction: row;
    align-items: center;
    background: #f8fbfd;
    position: relative;
}

::-webkit-input-placeholder {
    color: #cfd7e0;
}

::-moz-placeholder {
    color: #cfd7e0;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #cfd7e0;
}

input:-webkit-autofill,
select:-webkit-autofill {
    -webkit-text-fill-color: #30313D;
    transition: background-color 100000000s;
    -webkit-animation: 1ms void-animation-out 1s;
    -webkit-box-shadow: 0 0 0 30px white inset !important;
}

input::placeholder {
    color: #757680;
}

input:-ms-input-placeholder {
    color: #757680;
}

/* Header */
.header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    height: 80px;
    background: #fff url(/Web/logo.png) center center no-repeat;
    background-size: auto 65px;
    border-bottom: 1px solid #f3f3ff;
}

    .header span,
    .header #aProducts {
        font-size: 15px;
        font-weight: 500;
        color: #5E8E3E;
        letter-spacing: 0.3px;
        text-transform: uppercase;
        text-decoration: none;
    }

    .header #aProducts {
        padding: 30px 15px;
        display: none;
        position: absolute;
        right: 0;
    }

    .header a:hover {
        text-decoration: underline;
        cursor: pointer;
    }

    .header #aHomePage {
        left: 0;
        background: #fff url(/Assets/images/invoice.png) center no-repeat;
        background-size: 67px 58px;
    }

    .header #aBasket {
        right: 0;
        background: #fff url(/Assets/images/cart.svg) center no-repeat;
        background-size: 55px 55px;
    }

    .header #aHomePage,
    .header #aBasket {
        position: absolute;
        top: 0;
        width: 110px;
        height: 80px;
        margin-left: auto;
        margin-right: auto;
        text-align: right;
        padding: 8px;
        font-weight: 500;
        text-decoration: none;
    }

        .header #aHomePage span,
        .header #aBasket span {
            color: #95BF47;
            border-top: 2px solid #95BF47;
            border-radius: 50%;
            padding: 0 8px;
            font-weight: 700;
            display: none;
            font-size: 16px;
        }

        .header #aHomePage span {
            position: absolute;
            left: 6px;
            top: 6px;
        }

/* 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 {
        width: calc(100% - 500px);
    }

        #main.home #divMain {
            display: block;
            visibility: visible;
            opacity: 1;
        }

.mainForm {
    margin: 15px -30px;
    padding: 15px 30px;
    border-radius: 4px;
    border: 1px solid #e8e8fb;
    display: none;
}

#divMain {
    width: 98%;
    max-width: 500px;
    margin: 0 auto;
    padding: 20px 0 120px 0;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s, opacity 0.5s linear 0.5s;
    left: 0;
    right: 0;
}

#divPages *:not(h1,h2,h3,h4) {
    font-size: 13.5px;
    line-height: 19px;
}

#divPages *:empty {
    display: none;
}

#divPages p {
    margin: 7.5px 0;
    cursor: default;
}

#divPages ul {
    padding-left: 20px;
    cursor: default;
}

#divPages h1, #divPages h2, #divPages h3, #divPages h4 {
    margin: 17.5px 0 7.5px 0;
    cursor: default;
}

#divHomeMainForm, #divProductMainForm {
    padding-top: 10px;
}

#pProductDetailTitle {
    font-size: 16px;
    font-weight: bold;
}

#pProductDetailDescription {
    font-size: 14px;
    margin-top: 5px;
}

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: #e25950;
    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: #fa755a !important;
}

/* Buttons */
.btnTouchSpin {
    background: #b2c3fe;
    color: #fff;
    box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
    border-radius: 50%;
    border: 0;
    font-weight: 700;
    width: 40px;
    height: 40px;
    outline: none;
    cursor: pointer;
    transition: all 0.15s ease;
    opacity: 0.8;
}

    .btnTouchSpin:hover {
        transform: translateY(-1px);
        box-shadow: 0 7px 14px 0 rgba(50, 50, 93, 0.1), 0 3px 6px 0 rgba(0, 0, 0, 0.08);
    }

    .btnTouchSpin:active {
        background: #8ba4fe;
    }

.btnPay {
    background: #5469d4;
    color: #ffffff;
    font-family: Arial, sans-serif;
    border-radius: 4px;
    border: 0;
    padding: 12px 16px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    height: 47px;
    transition: all 0.2s ease;
    box-shadow: 0px 4px 5.5px 0px rgba(0, 0, 0, 0.07);
    width: 100%;
    margin-top: 10px;
    filter: contrast(115%);
}

    .btnPay span {
        color: #ffffff;
    }

    .btnPay:hover {
    }

    .btnPay:disabled {
        opacity: 0.5;
        cursor: default;
    }

#divBtnCheckout {
    margin: 10px 0px 0px 0px;
}

.btnBasket, .btnLnk, #btnProductDetailBasket {
    border: none;
    cursor: pointer;
    background: none;
    display: inline-flex;
    align-items: center;
}

.btnBasket {
    margin-left: auto;
}

    .btnBasket .iBasket {
        filter: invert(58%) sepia(46%) saturate(807%) hue-rotate(195deg) brightness(106%) contrast(99%);
        float: right;
    }

.btnProduct {
    border: none;
    cursor: pointer;
    background: none;
}

#btnProductDetailBasket {
    margin-right: 50px;
    padding-right: 5px;
}

.btnLnk:hover {
    text-decoration: none !important;
}

#divSubscriptionPaymentInfo {
    font-size: 9px !important;
    color: #6d6e78;
    margin-top: 5px;
    display: none;
    filter: blur(.1px);
    -webkit-filter: blur(.1px);
}

.iShipping {
    background: url(/Assets/images/shipping.svg) center no-repeat;
    padding: 1px 13px;
    margin-left: 5px;
    font-size: 13px;
    background-size: 20px;
    filter: invert(27%) sepia(11%) saturate(1750%) hue-rotate(196deg) brightness(98%) contrast(94%);
}

.iBasket {
    background: url(/Assets/images/basket.svg) center no-repeat;
    padding: 15px;
    margin-left: 7px;
    font-size: 16px;
    background-size: 30px;
}

    .iBasket.iBasketSelected {
        filter: invert(95%) sepia(37%) saturate(3817%) hue-rotate(21deg) brightness(97%) contrast(52%);
    }

.iCloseProducts, .iGoToBasket {
    font-size: 25px;
}

.btnLnk i {
    filter: invert(28%) sepia(94%) saturate(1771%) hue-rotate(197deg) brightness(92%) contrast(97%);
}

.btnBasket:hover .iBasket {
    transform: translateY(-1px);
}

.btnChange, .btnChange p {
    border: none;
    cursor: pointer;
    background: none;
    align-items: center;
    color: #0570de;
    font-weight: 500 !important;
    font-size: 13px !important;
}

    .btnChange:hover {
        text-decoration: underline;
    }

#btnProductDetailBasket .pProductPrice {
    font-size: 15px !important;
    text-align: right;
    line-height: 30px;
    float: left;
    margin-right: 5px;
}

#btnProductDetailBasket .pProductPrice, #btnProductDetailBasket .pProductPrice1 {
    color: #8ba4fe;
    font-weight: bold !important;
    font-size: 15px !important;
}

#btnProductDetailBasket .pProductPrice2 {
    color: #8ba4fe;
    font-weight: bold !important;
    font-size: 12px !important;
    text-align: center !important;
}

/* Spinner */
.spinner,
.spinner:before,
.spinner:after {
    border-radius: 50%;
}

.spinner {
    color: #ffffff;
    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: #5469d4;
        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: #5469d4;
        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: black;
    opacity: 0.5;
    z-index: 999;
}

.progress2 {
    opacity: 0.2;
}

#divProgressImg {
    background-color: transparent;
    filter: alpha(opacity=50) !important;
    z-index: 1000;
    position: fixed;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -40%);
    width: 50%;
}

#main.home #divProgressImg, .modal-content {
    left: calc(50% - 250px);
}

#divProgressImg img {
    align-items: center;
    text-align: center;
    margin: auto;
    height: 50px;
    margin-top: 20px;
}

#divProgressImg p {
    color: #ffffff;
    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 */
#divProducts {
    display: none;
    overflow: auto;
    height: calc(var( --app-height) - 80px);
}


.aProductDownload {
    color: #82b440 !important;
    font-weight: bold;
    display: -webkit-box;
}

#asProducts {
    position: fixed;
    top: 0;
    right: -500px;
    bottom: 0;
    width: 500px;
    height: var( --app-height);
    background: #fff;
    box-shadow: 0 2px 19px 4px rgba(0, 0, 0, 0.04);
    transition: right 0.3s ease-in-out;
}

#main.home + #asProducts {
    right: 0;
}

#asProducts .header {
    background: #fff;
}

#asProducts h1 {
    margin: auto 20px;
    font-weight: 400;
}

    #asProducts h1.ordernumber {
        color: #8ba4fe;
        font-weight: bold;
        font-size: 23px;
        display: none;
    }

#asProducts p {
    font-size: 16px;
    font-weight: 400;
}

.select {
    flex: 1;
    cursor: pointer;
    outline: none;
    border-radius: 5px;
    padding: 5px;
    border: 1px solid rgba(50, 50, 93, 0.1);
    font-size: 13px;
    background: white;
    width: 100%;
}

    .select: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;
    }

    .select::after {
        content: '';
        position: absolute;
        width: 9px;
        height: 5px;
        right: 20px;
        top: 50%;
        margin-top: -2px;
        background-image: url(/Assets/images/down.svg);
        pointer-events: none;
    }

#divDdls {
    width: 120px;
}

#divOrderBy {
    width: 115px;
}

.description {
    color: #484c61;
}

.divLineItem {
    display: flex;
    flex-direction: row;
    padding: 15px;
    align-items: center;
}

    .divLineItem .imgProduct {
        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: #424770;
        font-weight: 500;
    }

    .divLineItem .pProductPrice {
        font-size: 14px !important;
        padding-left: 10px;
        text-align: right;
        line-height: 30px;
        float: left;
    }

    .divLineItem .pProductPrice, .divLineItem .pProductPrice1 {
        color: #8ba4fe;
        font-weight: bold !important;
        font-size: 14px !important;
    }

    .divLineItem .pProductPrice2 {
        color: #8ba4fe;
        font-weight: bold !important;
        font-size: 10px !important;
        text-align: center !important;
    }

    .divLineItem .pProductQuantity {
        color: #8ba4fe;
        font-size: 14px !important;
    }

    .divLineItem .pProductPriceX {
        color: #8ba4fe;
        font-size: 11px !important;
    }

    .divLineItem .pInvoiceNumber {
        padding-right: 5px;
        white-space: nowrap;
    }

    .divLineItem .pInvoicePaid, .divLineItem .pInvoiceDateCreated, .divLineItem .pInvoiceTotal {
        font-style: italic;
        border-left: 1px solid #e8e8fb;
        padding-left: 5px;
        margin-left: 5px;
        text-align: center;
        font-size: 13px;
    }

    .divLineItem .pInvoiceDateCreated {
        min-width: 90px;
    }

    .divLineItem .pInvoiceTotal {
        min-width: 60px;
    }

.divLineItemForInvoiceHistory .pInvoicePaid {
    min-width: 55px;
}

.divLineItemForDivAllItems.divLineItem {
    border-bottom: 1px solid #f3f3ff;
}

.divLineItem2 {
    padding: 15px 0 0 0 !important;
}

    .divLineItem2:first-child {
        padding: 0 !important;
    }

.divLineItem3 {
    padding: 0 !important;
    margin: 0 30px 0 30px;
    color: #424770;
    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 #e8e8fb;
    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;
    height: 36px;
}

.divLineItem8 p {
    font-size: 14px;
}

.divLineItem8 > p {
    flex: auto;
}

#divTax div, #divTaxSuccess div, #divDiscount div, #divDiscountSuccess div {
    align-items: baseline;
}

.pTax {
    text-align: right;
}

.pPrice {
    color: #8ba4fe;
    font-weight: 500;
    padding-left: 5px;
}

    .pPrice p {
        color: #8ba4fe;
    }

.inTouchspin {
    width: 17px;
    font-size: 14px;
    text-align: center;
}

    .inTouchspin:disabled {
        background-color: #f8fbfd;
        opacity: 1;
        -webkit-text-fill-color: #313b3f;
    }

#divProductsGoToBasket {
    border-top: 1px solid #f3f3ff;
    display: none;
}

#btnGoToBasket {
    float: right;
}

#btnGoToBasket, #btnCloseProducts {
    padding: 9px;
}

#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%);
}

.pShippingPrice {
    padding-left: 5px;
}

.pShippingPrice2 {
    color: #8ba4fe;
    filter: brightness(90%);
}

#divAddressFilled {
    padding-left: 7.5px;
    margin-top: -5px;
}

#lblAddressFilled, #lblInvoiceAddress, #lblSubscriptionAddress {
    font-size: 13.5px;
    font-style: italic;
}

.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: #df1b41;
    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: #f8fbfd;
        font-style: italic;
        border: none !important;
        box-shadow: none !important;
        pointer-events: none;
        padding: 0;
        margin: 0;
        -webkit-box-shadow: 0 0 0 30px #f8fbfd inset !important;
    }

#lblCoupon, #lblShipping {
    font-size: 11.5px;
    flex: 1;
}

.detail {
    font-size: 13.5px;
    font-style: italic;
    line-height: 100%;
    padding-top: 3px;
}

.detailTitle {
    font-size: 11.5px;
}

.detailFirst {
    width: 49%;
    flex: 0 49%;
    margin-right: 5px;
}

.detailSecond {
    width: 48%;
    border-left: 1px solid #e8e8fb;
    padding-left: 10px;
}

#lblCouponInfo {
    font-style: italic;
    line-height: 100%;
    width: 48%;
    font-size: 11.5px;
    border-left: 1px solid #e8e8fb;
    padding-left: 10px;
}

#pCouponError, #pShippingError {
    margin-top: -0.1rem;
    color: #df1b41;
    font-weight: 400;
    font-size: 10.5px;
}

.pProductPriceTotal {
    color: #8ba4fe;
    margin-left: 10px;
    padding-left: 10px;
    border-left: solid 2px #e8e8fb;
    font-style: italic;
    font-weight: bold;
}

#divSubscriptionItems .pProductPrice p, #divSubscriptionItems .pProductPriceX, #divSuccessItems .pProductPrice p, #divSuccessItems .pProductPrice, #divSuccessItems .pProductPriceX {
    font-weight: normal !important;
}

#divSubscriptionItems .pProductTitle {
    font-size: 14px;
    color: #8ba4fe;
    font-weight: normal
}

    #divSubscriptionItems .pProductTitle span, #divSubscriptionItems .pShippingDescription {
        color: #8ba4fe;
    }

#divSubscriptionItems p {
    font-style: italic;
}

#divSubscriptionItems .iShipping {
    filter: invert(58%) sepia(46%) saturate(807%) hue-rotate(195deg) brightness(106%) contrast(99%);
}

.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 #e8e8fb;
    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(58%) sepia(46%) saturate(807%) hue-rotate(195deg) brightness(106%) contrast(99%);
}

.btnInvoice:disabled .iInvoice {
    display: none;
}

.btnInvoice:hover .iInvoice, .btnInvoiceHistory:hover .iInvoice, .btnInvoiceHistory:hover .iInvoiceDel {
    transform: translateY(-1px);
}

/* Footer */
footer {
    bottom: 0;
    display: flex;
    position: absolute;
    width: 100%;
    border-top: 1px solid #e8e8fb;
}

.footer-content-wrapper {
    width: 100%;
}

.footerCenter {
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    height: 20px;
    background: url(/Assets/images/easypie.svg) center center no-repeat;
    filter: invert(0%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(0%) contrast(30%);
    background-size: 55px;
}

.footerCenter2 {
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    height: 20px;
    background: url(/Assets/images/stripe.svg) center center no-repeat;
    filter: invert(0%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(0%) contrast(90%);
    background-size: 105px;
}

.footer-col {
    display: inline-block;
    padding: 5px;
    box-sizing: border-box;
    width: 100%;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

    .footer-col a {
        display: block;
        margin: 5px 0;
        font-size: 11px;
        text-decoration: none;
        color: #6b6c6e;
    }

    .footer-col p {
        margin: 5px 0;
        font-size: 11px;
        text-decoration: none;
        color: #6b6c6e;
        cursor: default;
    }

.divLinksContainer {
    display: none;
    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;
    }

#sPages .divLinks a {
    font-size: 20px;
    margin: 10px 5px;
}

/* 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: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #e8e8fb;
    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);
}

    .modal-content p {
        flex: 1;
        display: flex;
        align-items: center;
        color: #df1b41;
    }

.close {
    color: #aaaaaa;
    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: #000;
        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 #e8e8fb;
    margin-top: 9px;
    padding-top: 5px;
}

.separatorLeft {
    border-left: 1px solid #e8e8fb;
    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 #e8e8fb;
    }

    .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 #8ba4fe;
}

h1 {
    margin: 0 0 5px 0;
    font-size: 20px;
    font-weight: 500;
    cursor: default;
}

h2 {
    margin: 10px 0;
    color: #32325d;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    font-size: 13px;
    font-weight: 600;
    flex: 1;
    cursor: default;
}

input {
    flex: 1;
    border-style: none;
    outline: none;
    color: #313b3f;
}

.large-33 {
    width: 33.3%;
}

.pt0 {
    padding-top: 0px !important;
}

.pl5 {
    padding-left: 5px !important;
}

.pt10 {
    padding-top: 10px !important;
}

.mt5, .my5 {
    margin-top: 5px !important;
}

.mb5, .my5 {
    margin-bottom: 5px;
}

.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 {
    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;
}

p.tip {
    margin: 10px auto;
    padding: 35px 0 35px 30px;
    font-size: 14px;
    background: url(/Assets/images/tip.svg) left center no-repeat;
    background-size: 20px 20px;
}

.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: 1200px) {
    #asProducts {
        right: -450px;
        width: 450px;
    }

    #main.home {
        width: calc(100% - 450px);
    }

        #main.home #divProgressImg, .modal-content {
            left: calc(50% - 225px);
        }
}

@media only screen and (max-width: 1024px) {
    #asProducts {
        width: 500px;
        right: -500px;
        z-index: 1000;
        display: none;
    }

    .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;
    }

    #divProducts {
        height: calc(var( --app-height) - 135px);
    }

    #divProductsGoToBasket {
        display: block;
    }

    #divProgressImg {
        width: 90%;
    }

    #main.home + #asProducts {
        right: 0;
    }

    .header {
        background: #fff url(/Web/logo.png) center center no-repeat;
        background-size: auto 60px;
    }

        .header #aBasket {
            left: unset;
            margin-left: unset;
            margin-right: unset;
            padding-top: 3px;
            background: #fff url(/Assets/images/cart.svg) center top 8px no-repeat;
            background-size: 40px 40px;
            height: 50px;
        }

        .header #aBasket,
        .header #aHomePage {
            width: 100px;
        }

            .header #aBasket span,
            .header #aHomePage span {
                font-size: 14px;
                padding: 0 7px;
            }

        .header #aProducts {
            display: block;
            margin-top: 50px;
            padding: 5px 15px !important;
        }

    #main.home {
        width: 100%;
    }

        #main.home #divProgressImg, .modal-content {
            left: 50%;
        }

    #main.home, .progress {
        width: 100%;
    }

    .mainForm {
        margin: 0 -30px 15px -30px;
    }

    .modal-content {
        width: 80%;
    }

    p.tip {
        padding: 35px 0 20px 30px;
    }
}

@media only screen and (max-width: 560px) {
    .divLineItem2:first-child {
        padding: 10px 0 0 0 !important;
    }

    .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: 300px;
    }

    fieldset {
        margin-bottom: 15px;
    }

    .fltR {
        float: left;
    }

    .footer-col {
        top: unset;
        transform: unset;
    }

        .footer-col:not(:last-child) {
            border-bottom: 1px solid #f3f3ff;
        }

        .footer-col a, .footer-col p {
            font-size: 12px;
        }

    .imgProductWidth {
        width: 65px !important;
        height: 60px !important;
    }

    .mainForm {
        margin: 0 0 15px 0;
        padding: 0 10px 10px 10px;
    }

    .modal-content {
        width: 90%;
    }

    .mt20s {
        margin-top: 20px !important;
    }

    p.tip {
        padding: 35px 0 25px 30px;
    }

    .small-100 {
        width: 100%;
    }

    .slideshow {
        margin-right: -10px !important;
        margin-left: -10px !important;
    }

    #spHomePage {
        display: none;
    }
}

@media(max-width:500px) {
    #asProducts {
        width: 100%;
    }

    .mainForm {
        padding: 0 5px 10px 5px;
    }
}

@media(max-width:376px) {
    .divLineItemForDivBasketItems .pProductTitle {
        font-size: 14px;
    }
}

@media(max-width:365px) {
    #divBtnTouchspin {
        display: flex;
        flex-flow: column wrap;
        align-items: center;
        text-align: center;
    }

    .imgProductWidth {
        width: 55px !important;
        height: 50px !important;
    }
}

/* Slideshow */
.slideshow {
    margin-right: -30px;
    margin-left: -30px;
    margin-top: -10px;
}

.slideshow-container {
    max-width: 1000px;
    position: relative;
    margin: auto;
}

.slideshow-prev, .slideshow-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: lightgray;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

.slideshow-next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

    .slideshow-prev:hover, .slideshow-next:hover {
        background-color: rgba(0,0,0,0.8);
    }

.slideshow-text {
    color: #f2f2f2;
    font-size: 15px;
    font-weight: 500;
    padding: 8px 12px;
    position: absolute;
    bottom: 5px;
    width: 100%;
    text-align: center;
    background: rgba(0,0,0,0.5);
    cursor: default;
}

    .slideshow-text:empty, .slideshow-price:empty {
        display: none;
    }

.slideshow-price {
    color: #8ba4fe;
    font-size: 15px;
    font-weight: 500;
    padding: 8px 12px;
    position: absolute;
    top: 0;
}

    .slideshow-price .pProductPrice1 {
        color: #8ba4fe;
        font-weight: bold !important;
        font-size: 15px !important;
    }

    .slideshow-price .pProductPrice2 {
        color: #8ba4fe;
        font-weight: bold !important;
        font-size: 11px !important;
        text-align: center !important;
    }

.slideshow-img {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 350px;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}

.slideshow-btn {
    border: none;
    cursor: pointer;
    background: none;
    width: 100%;
}

.slideshow-dot-container {
    text-align: center;
    margin-top: 5px;
}

.slideshow-dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

    .slideshow-active, .slideshow-dot:hover {
        background-color: #717171;
    }

.slideshow-fade {
    animation-name: slideshow-fade;
    animation-duration: 1s;
}

#divSlideshowProduct .slideshow-btn {
    pointer-events: none;
}

#sProduct > p {
    cursor: default;
}

    #sProduct > p:empty {
        display: none;
    }

@keyframes slideshow-fade {
    from {
        opacity: .5
    }

    to {
        opacity: 1
    }
}

@media only screen and (max-width: 300px) {
    .slideshow-prev, .slideshow-next, .slideshow-text {
        font-size: 11px
    }
}
