<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Public styles go here */
.loader {
    width: 15px;
    height: 15px;
    border: 2px solid #fff;
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
    margin-bottom: -1px;
    margin-right: 5px;
    display: inline-block;
}

.loader.loader-white {
    border: 2px solid #fff;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.payment-method {
    border: none;
    border-radius: 5px;
    margin-bottom: 5px;
    overflow: hidden;
}

.payment-header {
    padding: 7px 0;
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: 400;
}

.payment-header input[type="radio"] {
    margin-right: 10px;
    accent-color: #3a2b92;
    width: 18px;
    height: 18px;
}

input[type="checkbox"] {
    margin-right: 10px;
    accent-color: #3a2b92;
    width: 18px;
    height: 18px;
}

hr:not([size]) {
    height: 1px;
    background-color: #ccc;
    margin-block: 30px;
}

.payment-body {
    display: none;
    padding: 20px;
    background: #f8f8f8;
    border-radius: 5px;
    margin-top: 3;
}

.payment-method.active .payment-body {
    display: block;
}

.error-wrap {
    margin-top: 3px;
    font-size: 12px;
    color: red;
}


@media(max-width:767px) {

    .payment-header input[type="radio"] {
        margin-right: 8px;
        width: 16px;
        height: 16px;
    }

    .payment-method {
        margin-bottom: 3px;
    }

    .payment-body {
        padding: 10px;
        border-radius: 5px;
    }

    .payment-body .form-control {
        font-size: 14px;
    }
}

/*----------  Mini Cart  ----------*/
.minicart {
    width: 450px;
    position: fixed;
    top: 0;
    bottom: 0;
    right: -100%;
    background: #fff;
    height: var(--app-height);
    visibility: hidden;
    opacity: 0;
    display: flex;
    flex-direction: column;
    z-index: 9999999999;
    transition: all .5s ease-in-out;
}

.minicart.show {
    right: 0;
    visibility: visible;
    opacity: 1;
}

.minicart-header {
    padding: 20px;
    border-bottom: 1px solid #D1D1D1;
    position: relative;
    flex: 0 0 auto;
}

.mini-cart-title {
    color: #000;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.1;
}

.cart-close-btn {
    position: absolute;
    right: 20px;
    top: 20px;
    width: 25px;
    height: 25px;
    padding: 3px;
    background: transparent;
    cursor: pointer;
    border: 1px solid transparent;
}

.cart-close-btn:before,
.remove-from-cart-btn::before {
    content: '';
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: #000;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    margin: auto;
    bottom: 0;
}

.cart-close-btn:after,
.remove-from-cart-btn::after {
    content: '';
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: #000;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    margin: auto;
    bottom: 0;
}

.cart-items {
    padding: 30px 20px 0;
    height: 100%;
}

.cart-item {
    display: flex;
    gap: 0 15px;
    margin-bottom: 25px;
    position: relative;
}

.cart-item:last-child {
    margin-bottom: 0;
}

.cart-item-img {
    flex: 0 0 100px;
    width: 100px;
    aspect-ratio: 1/1;
    border-radius: 10px;
    background-color: #f9f9f9;
    overflow: hidden;
    border: 1px solid #f5f4f4;
}

.cart-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: darken;
}

.cart-product-details {
    align-content: center;
}

.cart-product-name {
    color: #000;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 7px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.cart-product-variation {
    font-size: 12px;
    font-weight: 400;
}

.remove-from-cart-btn {
    position: absolute;
    left: 75px;
    top: 7px;
    width: 20px;
    height: 20px;
    padding: 3px;
    background: #fff;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0px 4px 4px 0px #00000040;
    font-size: 0;
}

.remove-from-cart-btn::after,
.remove-from-cart-btn::before {
    height: 1px;
    width: 60%;
}

.get-quote-btn {
    width: 100%;
    text-align: center;
    padding: 0;
    background-color: #fff;
    flex: 0 0 auto;
    margin-top: 15px;
    padding: 15px;
}

.get-quote-btn .btn {
    border-radius: 0;
    height: 100%;
    width: 100%;
    background-color: #3a2b92;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    padding: 12px 30px;
}

.cart-product-price {
    font-weight: 600;
    color: #3a2b92;
    margin-bottom: 5px;
    font-size: 18px;
}

.cart-product-quantity-iner-wrap {
    display: inline-flex;
    gap: 0;
    border: 1px solid #ccc;
    margin-top: 10px;
}

.cart-product-qty-btn {
    background-color: transparent;
    border: none;
    padding: 3px 7px;
    cursor: pointer;
    font-size: 14px;
    color: #000000;
}

.cart-product-qty-input {
    width: 32px;
    text-align: center;
    padding: 3px;
    border: 1px solid #ccc;
    border-block: 0;
    font-size: 14px;
}

.cart-product-qty-input::-webkit-outer-spin-button,
.cart-product-qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.cart-product-qty-input[type='number'] {
    -moz-appearance: textfield;
}

.bodyFixed {
    overflow: hidden;
    padding-right: 15px;
}

.mini-cart-overlay {
    transition: .4s all ease-in-out;
    opacity: 0;
}

.bodyFixed .mini-cart-overlay {
    position: fixed;
    background: rgb(0 0 0 / 50%);
    inset: 0;
    z-index: 9999;
    backdrop-filter: blur(5px);
    opacity: 1;
}

.minicart .cart-empty-box {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.empty-cart-icon {
    width: 200px;
    margin-inline: auto;
}

.empty-cart-text {
    font-size: 20px;
    color: #000;
    font-weight: 500;
    text-align: center;
}

.cart-total {
    margin-top: 30px;
    padding-block: 20px;
    font-size: 20px;
    font-weight: 600;
    color: #000;
    border-top: 1px solid #6c6d6c;
    display: flex;
    justify-content: space-between;
}

@media(max-width:568px) {
    .minicart {
        width: 100%;
    }

    .minicart-header {
        padding: 15px;
    }

    .mini-cart-title {
        font-size: 20px;
    }

    .cart-close-btn {
        right: 15px;
        top: 15px;
        width: 20px;
        height: 20px;
    }

    .cart-item {
        margin-bottom: 15px;
    }

    .cart-item-img {
        flex: 0 0 90px;
        width: 90px;
    }

    .remove-from-cart-btn {
        left: 66px;
        top: 5px;
        width: 18px;
        height: 18px;
    }

    .minicart .cart-product-name {
        font-size: 14px;
    }

    .cart-total {
        margin-top: 30px;
        padding-block: 15px;
        font-size: 18px;
    }
}

/*----------  Checkout  ----------*/
.checkout-sec {
    padding-block: 80px;
    background: linear-gradient(180deg, rgb(224 79 74 / 5%), #fff);
}

.checkout-title {
    font-size: 48px;
    font-weight: 700;
}

.product-list-wrap {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 0 15px rgb(0 0 0 / 5%);
    padding: 30px;
}

.product-list-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 40px;
}

.product-list-wrap .cart-items {
    padding: 0;
}

.product-list-wrap .cart-items-wrapper {
    padding: 0;
    min-height: 50px;
    overflow: unset;
}

.product-list-wrap .cart-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e2e2e2;
}

.product-list-wrap .cart-item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
    margin-bottom: 0;
}

.checkout-wrap&gt;.row {
    --bs-gutter-x: 64px;
}

.form-block-wrap+.form-block-wrap {
    margin-top: 20px;
}

.form-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.place-order {
    font-size: 16px;
    padding: 12px 30px;
    background-color: #3a2b92;
    border: 1px solid #3a2b92 !important;
    color: #fff;
    border: none;
    transition: .4s all ease-in-out;
}

@media(hover: hover) {
    .place-order:hover {
        background-color: #fff;
        color: #3a2b92;
    }
}

.form-label {
    font-size: 14px;
    font-weight: 500;
}

.form-label-check {
    line-height: 1;
    font-size: 16px !important;
    display: flex;
    align-items: center;
    margin-top: 10px;
}

textarea.form-control {
    resize: none;
}

.form-control:focus {
    color: #212529;
    border-color: #000000;
    box-shadow: none;
}

.form-control.error.invalid {
    border-color: red;
}

@media (max-width:1199px) {
    .checkout-title {
        font-size: 42px;
    }
}

@media (max-width:992px) {
    .checkout-sec {
        padding-block: 60px;
    }

    .checkout-wrap&gt;.row {
        --bs-gutter-x: 45px;
    }

    .checkout-title {
        font-size: 36px;
    }
}

@media (max-width:767px) {
    .form-label {
        margin-bottom: 5px;
    }

    .form-label-check {
        margin-top: 5px;
    }

    .checkout-sec {
        padding-block: 40px;
    }

    .checkout-wrap&gt;.row {
        --bs-gutter-x: 30px;
    }

    .checkout-title {
        font-size: 30px;
    }

    .form-title {
        font-size: 18px;
    }

    .checkout-sec .sec-head {
        margin-bottom: 25px;
    }

    .product-list-wrap {
        border-radius: 10px;
        padding: 20px 15px;
        margin-top: 35px;
    }

    .product-list-title {
        font-size: 20px;
        margin-bottom: 25px;
    }
}


/*  */
.dg-contact-form-response {
    display: none;
}

.dg-contact-form-response.show {
    display: block;
}

.dg-contact-form-response.show .success {
    padding: 12px;
    text-align: center;
    margin: 15px 0 0;
    font-size: 13px;
    background-color: var(--green);
    border: 2px solid var(--green);
    color: var(--white);
    border-width: 2px;
    font-weight: 500;
    border-radius: 26px;
}

.dg-contact-form-response.show .error {
    padding: 12px;
    text-align: center;
    margin: 15px 0 0;
    font-size: 13px;
    background-color: var(--red);
    border: 2px solid var(--red);
    color: var(--white);
    border-width: 2px;
    font-weight: 500;
    border-radius: 26px;
}

.textarea.form-control {
    resize: none;
}

.cart-items-wrapper {
    position: relative;
    flex: auto;
    overflow-y: auto;
}

.cart-loader-wrap {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.7);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-loader {
    width: 40px;
    height: 40px;
    border: 3px solid #3a2b92;
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: cartRotation 1s linear infinite;
    display: inline-block;
}

@keyframes cartRotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}</pre></body></html>