body {
    font-family: var(--linx-font-family-base);
    font-size: var(--linx-font-size);
    /*color: var(--linx-color-text);*/
    line-height: 1.41;
    background-color: var(--linx-bg-color);
  }
  body.app-dark {
    background-color: var(--linx-bg-dark);
  }

  a {
    color: var(--linx-color-link);
    text-decoration: underline;
    font-weight: 500;
    transition: all 0.3s;
  }
  /* a:hover, a:focus {
    color: var(--linx-color-link);
    text-decoration: underline;
  } */

  .h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    font-family: var(--linx-font-family-primary);
    font-weight: bold;
  }

  h1, .h1 {
    font-size: 2.5rem;
  }

  h2, .h2 {
    font-size: 1.875rem;
  }

  h3, .h3 {
    font-size: 1.5rem;
  }

  h4, .h4 {
    font-size: 1.375rem;
  }

  h5, .h5 {
    font-size: 1rem;
  }

  .bg-dark {
    background-color: var(--linx-bg-dark) !important;
    color: #fff;
  }

  .bg-dark-secondary {
    background-color: var(--linx-bd-dark-sec) !important;
  }

  .bg-primary {
    background-color: var(--linx-color-primary) !important;
  }

  .bg-secondary {
    background-color: var(--linx-color-secondary) !important;
  }

  .bg-warning {
    background-color: var(--linx-color-tertiary) !important;
  }

  .bg-info {
    background-color: var(--linx-color-secondary) !important;
  }

  .light-bg {
    background: #F3F3F3;
  }

  .text-primary {
    color: var(--linx-color-primary) !important;
  }

  .text-secondry {
    color: var(--linx-color-secondary) !important;
  }

  .text-warning {
    color: var(--linx-color-tertiary) !important;
  }

  .form-label {
    font-weight: bold;
    line-height: 1.26;
  }

  .form-control {
    border: 1px solid #C5C5C5;
    border-radius: var(--linx-border-sm-radius);
    padding: 0.625rem 1rem;
    font-size: var(--linx-font-size);
    /*background-color: transparent;*/
  }

  .datepicker-control {
    position: relative;
  }
  .datepicker-control::after {
    content: "\f073";
    position: absolute;
    right: 15px;
    top: 13px;
    font-family: var(--linx-icons-font);
    font-weight: 900;
    color: #c5c5c5;
  }
  .datepicker-control .form-control {
    padding-right: 2rem;
  }

  .was-validated .form-control:invalid, .form-control.is-invalid {
    border-color: red;
    background-image: none;
    padding: 0.5625rem 1rem;
    border-width: 2px;
  }
  .was-validated .form-control:invalid:focus, .form-control.is-invalid:focus {
    border-color: red;
    box-shadow: 0 0 0 0.25rem rgba(255, 0, 0, 0.25);
  }
  /* .was-validated .form-control:invalid::-webkit-input-placeholder, .form-control.is-invalid::-webkit-input-placeholder {
    color: red;
  }
  .was-validated .form-control:invalid::-ms-input-placeholder, .form-control.is-invalid::-ms-input-placeholder {
    color: red;
  }
  .was-validated .form-control:invalid::placeholder, .form-control.is-invalid::placeholder {
    color: red;
  } */

  .was-validated .form-control:valid, .form-control.is-valid {
    border-color: #c5c5c5;
    background-image: none;
  }
  .was-validated .form-control:valid:focus, .form-control.is-valid:focus {
    border-color: #86b7fe;
    box-shadow: 0 0 0 0.25rem rgba(134, 183, 254, 0.25);
  }

  .was-validated .form-check-input:valid:checked, .form-check-input.is-valid:checked {
    background-color: #a1c181;
  }

  .was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label {
    color: var(--linx-color-text);
  }

  .small-text {
    font-size: var(--linx-font-sm-12);
  }

  .color-link {
    color: var(--linx-color-link);
  }

  .btn {
    --bs-btn-font-size: var(--linx-font-size);
    --bs-btn-font-weight: 700;
    --bs-btn-border-radius: 37px;
    --bs-btn-padding-y: 0.544rem;
    --bs-btn-padding-x: 2.88rem;
  }
  .btn:hover {
    text-decoration: none;
  }

  .btn-xsm {
    --bs-btn-font-size: 12px;
    line-height: 0.945rem;
    --bs-btn-padding-y: 0.05rem;
    --bs-btn-padding-x: 0.74rem;
  }

  .btn-sm {
    --bs-btn-padding-y: 0.213rem;
    --bs-btn-padding-x: 1.32rem;
  }

  .btn-md {
    --bs-btn-padding-y: 0.45rem;
    --bs-btn-padding-x: 0.45rem;
  }

  .btn-lg {
    --bs-btn-font-size: 16px;
    --bs-btn-padding-y: 0.594rem;
  }

  .btn-xlg {
    --bs-btn-font-size: 27px;
    --bs-btn-padding-y: 0.73rem;
  }

  .btn.btn-icon {
    --bs-btn-border-radius: 50%;
    --bs-btn-padding-x: 0;
    --bs-btn-padding-y: 0;
    width: 40px;
    height: 40px;
    line-height: 38px;
  }
  .btn.btn-icon.btn-md {
    width: 37px;
    height: 37px;
    line-height: 35px;
  }
  .btn.btn-icon:hover {
    text-decoration: none;
  }

  .btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: var(--linx-color-primary);
    --bs-btn-border-color: var(--linx-color-primary);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--linx-color-primary);
    --bs-btn-hover-border-color: var(--linx-color-primary);
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: var(--linx-color-primary);
    --bs-btn-active-border-color: var(--linx-color-primary);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: var(--linx-color-primary);
    --bs-btn-disabled-border-color: var(--linx-color-primary);
  }

  .btn-secondary {
    --bs-btn-color: #fff;
    --bs-btn-bg: var(--linx-color-secondary);
    --bs-btn-border-color: var(--linx-color-secondary);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--linx-color-secondary);
    --bs-btn-hover-border-color: var(--linx-color-secondary);
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: var(--linx-color-secondary);
    --bs-btn-active-border-color: var(--linx-color-secondary);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: var(--linx-color-secondary);
    --bs-btn-disabled-border-color: var(--linx-color-secondary);
  }

  .btn-warning {
    --bs-btn-color: #fff;
    --bs-btn-bg: var(--linx-color-tertiary);
    --bs-btn-border-color: var(--linx-color-tertiary);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--linx-color-tertiary);
    --bs-btn-hover-border-color: var(--linx-color-tertiary);
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: var(--linx-color-tertiary);
    --bs-btn-active-border-color: var(--linx-color-tertiary);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: var(--linx-color-tertiary);
    --bs-btn-disabled-border-color: var(--linx-color-tertiary);
  }

  .btn-dark {
    --bs-btn-color: #fff;
    --bs-btn-bg: var(--linx-color-text);
    --bs-btn-border-color: var(--linx-color-text);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--linx-color-text);
    --bs-btn-hover-border-color: var(--linx-color-text);
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: var(--linx-color-text);
    --bs-btn-active-border-color: var(--linx-color-text);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: var(--linx-color-text);
    --bs-btn-disabled-border-color: var(--linx-color-text);
  }

  .btn-outline-warning {
    --bs-btn-color: var(--linx-color-text);
    --bs-btn-border-color: var(--linx-color-tertiary);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--linx-color-tertiary);
    --bs-btn-hover-border-color: var(--linx-color-tertiary);
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: var(--linx-color-tertiary);
    --bs-btn-active-border-color: var(--linx-color-tertiary);
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: var(--linx-color-tertiary);
    --bs-btn-disabled-opacity: 1;
  }

  .btn-outline-dark {
    --bs-btn-color: var(--linx-color-text);
    --bs-btn-border-color: var(--linx-color-text);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--linx-color-text);
    --bs-btn-hover-border-color: var(--linx-color-text);
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: var(--linx-color-text);
    --bs-btn-active-border-color: var(--linx-color-text);
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: var(--linx-color-text);
    --bs-btn-disabled-opacity: 1;
  }

  .btn-outline-primary {
    --bs-btn-color: var(--linx-color-primary);
    --bs-btn-border-color: var(--linx-color-primary);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--linx-color-primary);
    --bs-btn-hover-border-color: var(--linx-color-primary);
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: var(--linx-color-primary);
    --bs-btn-active-border-color: var(--linx-color-primary);
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: var(--linx-color-primary);
    --bs-btn-disabled-opacity: 1;
  }

  .link-btn {
    background-color: transparent;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    border: none;
    text-decoration: none;
  }
  .link-btn:disabled, .link-btn.disabled {
    pointer-events: none;
    opacity: 0.65;
  }

  .badge {
    --bs-badge-font-size: 0.75rem;
    --bs-badge-padding-y: 0.438rem;
    --bs-badge-padding-x: 1.143rem;
    --bs-badge-border-radius: 40px;
  }

  .table > :not(caption) > * > * {
    padding: 0.313rem 0.5rem;
  }
  .table.rm-table-p-start tr > td, .table.rm-table-p-start tr > th {
    padding-left: 0;
  }
  .table tr:last-child > td {
    border-bottom: 0;
  }

  .nav-link {
    --bs-nav-link-font-weight: 400;
  }

  .head-spacing {
    padding-top: 109px;
  }

  #page-loader {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 9999;
  }
  #page-loader img {
    width: 80px;
  }

  .section-loading {
    position: relative !important;
  }
  .section-loading::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    background: rgba(217, 217, 217, 0.25) url(../images/loader.svg) no-repeat center;
  }

  .content-loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    background: rgba(217, 217, 217, 0.25);
  }
  .content-loading.cart-loader {
    max-width: 586px;
    right: 0px;
    left: auto;
  }

  .ui-autocomplete.ui-widget-content {
    background-color: var(--linx-bg-dark);
    border-top: 1px solid #828282;
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
    font-weight: 800;
    line-height: 30px;
    z-index: 1050;
    border: none;
    min-width: 180px;
    font-family: "Plus Jakarta Sans", sans-serif;
    max-height: 500px;
    overflow: auto;
    padding-top: 2px;
  }
  .ui-autocomplete.ui-menu .ui-menu-item-wrapper {
    padding: 10px 12px;
    border-top: 1px solid #828282;
  }
  .ui-autocomplete .ui-state-active, .ui-autocomplete.ui-widget-content .ui-state-active {
    border: none;
    border-top: 1px solid #828282;
    background-color: var(--linx-bg-dark);
    color: #fff;
    font-weight: 800;
    margin: auto;
  }

  .navbar-brand {
    --bs-navbar-brand-margin-end: 2rem;
  }
  .navbar-brand .img-brand {
    max-width: 300px;
  }

  .app-navbar {
    --bs-navbar-color: #fff;
    --bs-navbar-hover-color: #fff;
    --bs-navbar-padding-y: 0;
    background-color: var(--linx-bg-dark);
    /* .sub-menu {
        position: absolute;
        left: 0;
        right: 0;
        width: 100%;
        padding-top: 43px;
        padding-bottom: 43px;
        background-color: $bg-dark;
        opacity: 0;
        visibility: hidden;

        @include transition;

        &.active {
            opacity: 1;
            visibility: visible;
        }
    }

    .sub-menu-list {
        $sub-item-color: rgba(#ffffff, 0.60);
        $sub-item-active-color: #fff;

        position: relative;
        max-width: 300px;
        width: 100%;
        list-style-type: none;
           padding-left: 0;
        color: $sub-item-color;
        font-size: 16px;
        font-weight: 800;

        .sub-menu-item {
            a {
                position: relative;
                color: $sub-item-color;
                text-decoration: none;
                border-top: 1px solid #828282;
                display: block;
                line-height: 30px;
                padding: 10px 20px 10px 0;

                &::after {
                    content: "\f105";
                    position: absolute;
                    right: 5px;
                    height: 30px;
                    top: 0;
                    bottom: 0;
                    margin: auto;
                    font-family: $icons-font;
                    font-weight: 900;
                }
            }

            &:hover, &:focus {
                color: $sub-item-active-color;

                a {
                    color: $sub-item-active-color;
                }
            }

            .sub-menu-list {
                color: $sub-item-active-color;
                position: absolute;
                left: 300px;
                width: 356px;
                max-width: 356px;
                height: 100%;
                top: 0;
                padding-left: 56px;
                visibility: hidden;
                opacity: 0;

                @include transition;

                a {
                    color: $sub-item-active-color;
                }
            }

            &:hover > .sub-menu-list {
                visibility: visible;
                opacity: 1;
            }
        }
    }

    .menu-item-box {
        color: #fff;
        margin-bottom: 12px;
        border-radius: 15px;

        a {
            font-size: 25px;
            display: flex;
            justify-content: center;
            align-items: center;
            color: #fff;
            min-width: 226px;
            height: 200px;
            text-decoration: none;
            padding: 1rem;
        }

    } */
  }
  .app-navbar .navbar-nav > .nav-item > .nav-link {
    --bs-nav-link-padding-y: 2.782rem;
    line-height: 20px;
    max-height: 109px;
    text-decoration: none;
  }
  .app-navbar .has-sub-menu {
    /* & > .sub-menu {
        position: absolute;
        left: 0;
        right: 0;
        width: 100%;
        padding-top: 43px;
        padding-bottom: 43px;
        background-color: $bg-dark;
        opacity: 0;
        visibility: hidden;

        @include transition;
    }

    &:hover > .sub-menu {
        opacity: 1;
        visibility: visible;
    } */
  }
  .app-navbar .has-sub-menu > .nav-link {
    position: relative;
    padding-right: 25px;
  }
  .app-navbar .has-sub-menu > .nav-link:after {
    content: "\f107";
    position: absolute;
    right: 5px;
    height: 15px;
    top: 0;
    bottom: 0;
    margin: auto;
    font-family: var(--linx-icons-font);
    font-weight: 900;
  }

  .sub-menu {
    position: fixed;
    right: 0;
    width: 100%;
    padding-top: 43px;
    padding-bottom: 43px;
    background-color: var(--linx-bg-dark);
    z-index: 1030;
    transition: all 0.3s;
  }
  .sub-menu .sub-menu-list {
    position: relative;
    max-width: 300px;
    width: 100%;
    list-style-type: none;
    padding-left: 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
    font-weight: 800;
  }
  .sub-menu .sub-menu-list .sub-menu-item a {
    position: relative;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    display: block;
    line-height: 30px;
    padding: 10px 20px 10px 0;
    font-weight: 800;
  }
  .sub-menu .sub-menu-list .sub-menu-item a::after {
    content: "\f105";
    position: absolute;
    right: 5px;
    height: 30px;
    top: 0;
    bottom: 0;
    margin: auto;
    font-family: var(--linx-icons-font);
    font-weight: 900;
  }
  .sub-menu .sub-menu-list .child-sub-menu .sub-menu-item a::after {
    content: ""; /* Set content to empty string */
  }
  .sub-menu .sub-menu-list .sub-menu-item:hover, .sub-menu .sub-menu-list .sub-menu-item:focus {
    color: #fff;
  }
  .sub-menu .sub-menu-list .sub-menu-item:hover a, .sub-menu .sub-menu-list .sub-menu-item:focus a {
    color: #fff;
  }
  .sub-menu .sub-menu-list .sub-menu-item.active a {
    color: #fff;
  }
  .sub-menu .sub-menu-list .sub-menu-item .sub-menu-list {
    color: #fff;
    height: 100%;
    top: 0;
    transition: all 0.3s;
  }
  .sub-menu .sub-menu-list .sub-menu-item .sub-menu-list a {
    color: #fff;
  }
  .sub-menu .sub-menu-list.parent-sub-menu > .sub-menu-item > a, .sub-menu .sub-menu-list.has-item-border > .sub-menu-item > a {
    border-top: 1px solid #828282;
  }
  .sub-menu .sub-menu-list.child-sub-menu > .sub-menu-item > a {
    padding: 0 20px 0 0;
    margin-bottom: 18px;
  }
  .sub-menu .menu-item-box {
    color: #fff;
    margin-bottom: 12px;
    border-radius: 15px;
  }
  .sub-menu .menu-item-box a {
    font-size: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    min-width: 226px;
    text-decoration: none;
    padding: 1rem;
  }

  .navbar-nav .show > .nav-link, .navbar-nav .nav-link.active {
    --bs-navbar-active-color: #fff;
  }

  .head-group.input-group {
    max-width: 190px;
  }
  /* .head-group.input-group .form-control {
    border-top-left-radius: var(--linx-border-lg-radius) !important;
    border-bottom-left-radius: var(--linx-border-lg-radius) !important;
    background-color: rgba(255, 255, 255, 0.16);
    border-color: #fff;
    border-right: 0;
    color: #fff;
    box-shadow: none;
  } */
  /* .head-group.input-group .input-group-text {
    border-top-right-radius: var(--linx-border-lg-radius) !important;
    border-bottom-right-radius: var(--linx-border-lg-radius) !important;
    background-color: rgba(255, 255, 255, 0.16);
    border-color: #fff;
    border-left: 0;
    margin-left: 0 !important;
    color: #fff;
  } */

  .cart-icon {
    position: relative;
    font-size: 20px;
  }
  .cart-icon .cart-item-number {
    font-size: 10px;
    position: relative;
    background-color: orange;
    top: -12px;
    right: 10px;
    color: #000;
    display: inline-block;
    width: 19px;
    height: 19px;
    border-radius: 50%;
    text-align: center;
    line-height: 19px;
    font-weight: bold;
  }

  .mob-search {
    display: none;
  }

  .app-main {
    padding-top: 20px;
    /*padding-bottom: 20px;*/
    background: #F3F3F3;
  }
  .app-main.has-banner {
    padding-top: 0;
  }

  .reg-container {
    width: 100%;
    max-width: 618px;
    margin-left: auto;
    margin-right: auto;
  }

  .cb-emember-me .form-check-input {
    margin-top: 5.5px;
  }

  .app-card {
    background-color: #fff;
    padding: 60px 65px;
    border: 1px solid #fff;
    border-radius: var(--linx-border-radius);
  }
  .app-card.card-g-sm {
    padding: 16px 34px;
  }
  .app-card.reg-container {
    background-color: #fff;
  }

  .has-action-btn {
    position: relative !important;
  }
  .has-action-btn .action-btn {
    position: absolute;
    right: 10px;
    top: 8px;
  }

  .page-title {
    margin-bottom: 1.375rem;
  }

  .app-block {
    border: 1px solid #E0E0E0;
    border-radius: var(--linx-border-sm-radius);
    padding: 17px 23px 12px;
    margin-bottom: 19px;
  }
  .app-block .block-title {
    margin-bottom: 0.75rem;
  }
  .app-block.block-p-lg {
    padding: 52px 53px 55px;
  }
  .app-block.block-p-lg .block-title {
    margin-bottom: 1.375rem;
  }

  .block-g-sm .app-block {
    margin-bottom: 6px;
  }

  .app-order-bullets {
    list-style-type: none;
    counter-reset: number-counter;
  }
  .app-order-bullets > li {
    position: relative;
    padding-left: 41px;
    margin-bottom: 18px;
  }
  .app-order-bullets > li::before {
    counter-increment: number-counter;
    content: counter(number-counter);
    font-weight: 700;
    color: #000;
    width: 28px;
    height: 28px;
    position: absolute;
    left: 0;
    top: -4px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: #E0E0E0;
  }

  .products-gutter {
    --bs-gutter-y: 0.75rem;
    --bs-gutter-x: 0.75rem;
  }

  .all-products-gutter {
    --bs-gutter-x: 1.313rem;
    --bs-gutter-y: 1.5rem;
  }

  .checkout-gutter {
    --bs-gutter-y: 0.563rem;
    --bs-gutter-x: 3.5rem;
  }

  .product {
    border-radius: 20px;
    overflow: hidden;
  }
  .product .product-img {
    width: 100%;
    height: 255px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    background: white;
    text-align: -webkit-center;
  }
  .product .product-info {
    position: relative;
    padding: 22px 21px 20px 19px;
    background-color: #fff;
  }
  .product .product-info .product-title a {
    font-size: 15px;
    font-weight: 800;
    line-height: 1.356;
    text-decoration: none;
    color: #101d23;
  }
  .product .product-info .product-price {
    font-size: 15px;
    font-weight: 800;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .product .product-info .btn-icon-add-to-cart, .product .product-info .btn-icon-out-of-stock {
    margin-left: 6px;
  }

  .product-img {
    position: relative;
    background-color: #EAEAEA;
    overflow: hidden;
  }
  .product-img.product-sm {
    width: 75px;
    height: 75px;
    border-radius: 10px;
  }
  .product-img.product-md {
    width: 113px;
    height: 113px;
    min-width: 113px;
    border-radius: 10px;
  }
  .product-img.product-lg {
    width: 100%;
    height: 384px;
    border-radius: var(--linx-border-radius);
  }
  .product-img .fav-icon {
    position: absolute;
    top: 10px;
    left: 11px;
    background-color: #fff;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    text-align: center;
    font-size: 16px;
    line-height: 32px;
    color: var(--linx-color-primary);
    cursor: pointer;
  }
  .product-img .fav-icon.pos-bottom-right {
    top: auto;
    left: auto;
    right: 17px;
    bottom: 16px;
  }

  .products .product {
    display: flex;
    flex-direction: column;
    height: 100%;
  }
  .products .product .product-info {
    display: flex;
    flex-direction: column;
    flex: 1 0 0%;
  }
  .products .product .product-info .product-view {
    margin-top: auto;
  }

  .product-img .product-badge, .product-info .product-badge {
    position: absolute;
    right: 14px;
    top: 13px;
    font-weight: 800;
    --bs-badge-padding-y: 0.407rem;
    --bs-badge-padding-x: 0.796rem;
  }

  .load-more {
    margin-top: 43px;
    margin-bottom: 20px;
    text-align: center;
  }
  .load-more a {
    font-size: 15px;
    font-weight: 800;
    color: #101D23;
  }

  .order-product-title {
    font-weight: bold;
    color: #000;
  }
  .order-product-title a {
    font-weight: bold;
    text-decoration: none;
    color: #000;
  }

  .order-product-price {
    font-weight: bold;
    margin-bottom: 4px;
  }

  .order-product-qty {
    color: #8E8E8E;
  }

  .single-product {
    margin-bottom: 78px;
  }
  .single-product .product-info {
    padding: 62px 45px 52px;
    border-radius: var(--linx-border-radius);
    min-height: 100%;
  }
  .single-product .product-info .product-price {
    font-size: 25px;
    font-weight: 800;
  }
  .single-product .product-info .product-btns .btn {
    --bs-btn-padding-x: 1.413rem;
  }

  .quantity {
    display: inline-block;
    background-color: #F5F5F5;
    /*color: var(--linx-color-text);*/
    padding: 12px 23px;
    line-height: 1.38;
    border-radius: 22.5px;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    position: relative;
    z-index: 1000;
  }
  .quantity .input-quantity {
    border: none;
    outline: none;
    font-size: 14px;
    font-weight: 800;
    width: 90px;
    margin-left: 6.5px;
    margin-right: 6.5px;
    text-align: center;
    display: inline-block;
    /*color: var(--linx-color-text);*/
    background-color: #F5F5F5;
    padding-left: 0;
    padding-right: 0;
    -moz-appearance: textfield;
  }
  .quantity .input-quantity::-webkit-outer-spin-button, .quantity .input-quantity::-webkit-inner-spin-button {
    -webkit-appearance: none;
            appearance: none;
  }
  .quantity .quantity-btn {
    cursor: pointer;
  }
  .quantity .quantity-btn:active {
    color: var(--linx-color-text);
  }
  .quantity.qty-sm {
    border: 1px solid #C5C5C5;
    color: black;
    border-radius: var(--linx-border-sm-radius);
    font-size: 12px;
    padding: 2px 12px 3px;
    background-color: transparent;
  }
  .quantity.qty-sm .input-quantity {
    color: #000;
    font-size: 12px;
    width: 60px;
    margin-left: 3px;
    margin-right: 3px;
    background-color: transparent;
  }

  .cat-gutter {
    --bs-gutter-y: 2.25rem;
    --bs-gutter-x: 2.25rem;
  }
  .categories .category .category-img {
    width: 100%;
    position: relative;
    background-color: #eaeaea;
    border-radius: 20px;
    overflow: hidden;
  }
  .categories .category .category-img img {
    height: 100%;
    width: -webkit-fill-available;
  }
  .categories .category .category-img .category-info {
    position: absolute;
    color: #fff;
    bottom: 35px;
    padding-left: 38px;
    padding-right: 38px;
    width: 100%;
  }
  .categories .category .category-img .category-info .category-title {
    font-family: var(--linx-font-family-base);
    font-weight: 800;
    background-color: rgba(var(--linx-rgba-color-primary), 0.75);
    margin-bottom: 0;
    border: 1px solid #101D23;
    border-radius: 47px;
    line-height: 32px;
    padding: 0.5rem;
    text-align: center;
  }

  .slick-track {
    display: flex;
  }
  .slick-track .slick-slide {
    height: auto;
  }
  .slick-track .slick-slide .product {
    display: flex;
    flex-direction: column;
    height: 100%;
  }
  .slick-track .slick-slide .product .product-info {
    display: flex;
    flex-direction: column;
    flex: 1 0 0%;
  }
  .slick-track .slick-slide .product .product-info .product-view {
    margin-top: auto;
  }

  .hero-banner {
    /*background-image: url('../images/home-banner.jpg');*/
    padding-top: 15px;
    padding-bottom: 0;
    background-color: var(--linx-bg-dark);
    color: #fff;
    background-repeat: no-repeat;
    background-size: cover;
    margin-bottom: 20px;
  }
  .hero-banner .hero-info {
    /*max-width: 537px;*/
  }
  .hero-banner .hero-info .hero-title-sm {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 800;
  }
  .hero-banner .hero-info .hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.24;
  }

  .home-page-title {
    font-size: 45px;
    font-weight: 800;
    margin-bottom: 20px;
  }

  .banner-section {
    background-color: var(--linx-bg-dark);
    color: #fff;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-bottom: 20px;
  }
  .banner-section.checkout-banner {
    /*background-image: url('../images/checkout-banner.jpg');*/
    background-color: var(--linx-bg-dark);
    background-size: cover;
    background-position: center;
    padding-top: 15px;
    padding-bottom: 15px;
    margin-bottom: 20px;
  }

  .category-slider-wrapper {
    margin-bottom: 79px;
  }
  .category-slider-wrapper .category-slider-head {
    margin-bottom: 21px;
  }
  .category-slider-wrapper .category-slider-head .view-all-products a {
    font-size: 1.375rem;
    font-weight: bold;
    color: var(--linx-color-text);
  }
  .category-slider-wrapper .category-slider .category-slide {
    padding-right: 21px;
  }

  .breadcrumb-nav {
    margin-bottom: 18px;
    --bs-breadcrumb-divider: ">";
  }
  .breadcrumb-nav .breadcrumb {
    --bs-breadcrumb-item-padding-x: 0.2rem;
    --bs-breadcrumb-divider-color: rgba(16, 29, 35, 0.65);
    --bs-breadcrumb-item-active-color: rgba(16, 29, 35, 0.65);
  }
  .breadcrumb-nav .breadcrumb a {
    color: rgba(16, 29, 35, 0.65);
    text-decoration: none;
    font-weight: 400;
  }

  .slider-nav {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 133px;
    margin: auto;
    display: flex !important;
    align-items: center;
    justify-content: flex-start;
    cursor: pointer;
    z-index: 10;
    pointer-events: none;
  }
  .slider-nav.slick-disabled {
    display: none !important;
  }
  .slider-nav .slider-nav-icon {
    display: inline-block;
    width: 39px;
    height: 39px;
    background-color: #FFFFFF;
    border-radius: 50%;
    line-height: 39px;
    text-align: center;
    font-size: 20px;
    z-index: 10;
    pointer-events: auto;
  }
  .slider-nav.slider-nav-prev {
    left: 0;
  }
  .slider-nav.slider-nav-next {
    right: 0;
    justify-content: end;
  }

  .color-box {
    color: #fff;
    font-size: 22px;
    border-radius: var(--linx-border-radius);
    padding: 15px;
    min-height: 175px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  .color-box .box-text-lg {
    font-size: 27px;
    font-weight: bold;
  }

  .v-nav-tabbing {
    padding: 74px 45px;
    border-radius: var(--linx-border-radius);
    background-color: #233d4d !important;
    color: #fff;
  }
  .v-nav-tabbing .nav-link {
    --bs-nav-link-padding-x: 0;
    --bs-nav-link-padding-y: 0.65rem;
    color: #BABABA;
    --bs-nav-link-font-size: 16px;
  }
  .v-nav-tabbing .nav-link.active {
    color: #FFFFFF;
  }
  .v-nav-tabbing .nav-link:hover, .v-nav-tabbing .nav-link:focus {
    text-decoration: none;
  }

  .go-back-wrapper {
    margin-bottom: 21px;
  }
  .go-back-wrapper a {
    font-weight: bold;
    text-decoration: none;
    color: #000000;
  }
  .go-back-wrapper a .go-back-btn {
    margin-right: 13px;
  }
  .go-back-wrapper .go-back-btn {
    font-size: 16px;
    color: var(--linx-color-text);
    width: 39px;
    height: 39px;
    line-height: 39px;
    background-color: #fff;
    border-radius: 50%;
    display: inline-block;
    text-align: center;
  }

  .checkout-form .checkout-y-gutter {
    --bs-gutter-y: 0.625rem;
  }
  .checkout-form .form-label {
    margin-bottom: 2px;
  }
  .checkout-form .form-check-input:checked {
    background-color: var(--linx-color-secondary);
    border-color: var(--linx-color-secondary);
  }
  .checkout-form .form-check {
    font-weight: bold;
  }

  .payment-logos {
    margin-top: 20px;
  }
  .payment-logos .checkout-payments li {
    margin-right: 0.5rem;
  }

  .order-summery {
    padding-top: 25px;
  }
  .order-summery .table > :not(caption) > * > * {
    padding: 0.625rem 0.5rem;
  }

  .table tr.no-border td {
    border-bottom: none;
  }

  .table-label-lg {
    font-size: 27px;
    font-weight: bold;
  }

  .order-confirm-info {
    margin-bottom: 39px;
  }
  .order-confirm-info .order-confirm-start h2 {
    font-size: 34px;
  }
  .order-confirm-info .order-confirm-start p {
    font-size: 18px;
    color: #000;
  }
  .order-confirm-info .order-confirm-end .color-box {
    min-width: 232px;
    width: 100%;
  }

  .order-confirm-card {
    margin-bottom: 42px;
  }
  .order-confirm-card .app-card-header {
    border-bottom: 1px solid #C5C5C5;
  }
  .order-confirm-card .app-card-header .page-title {
    font-size: 20px;
  }

  .need-assistance {
    background-color: var(--linx-bg-dark);
    /*background-image: url('../images/need-assistance.jpg');*/
    background-size: cover;
    color: #fff;
    padding-top: 69px;
    padding-bottom: 82px;
    border-radius: var(--linx-border-radius);
    margin-bottom: 20px;
  }
  .need-assistance .assistance-title {
    font-size: 34px;
    margin-bottom: 40px;
  }
  .need-assistance .assistance-list .assistance-item .assistance-icon {
    color: #fff;
    width: 51px;
    height: 51px;
    min-width: 51px;
    text-align: center;
    line-height: 49px;
    border-radius: 50%;
    margin-right: 28px;
    background-color: rgba(255, 255, 255, 0.3);
  }
  .need-assistance .assistance-list .assistance-item .assistance-value a {
    color: #fff;
    font-weight: 400;
    text-decoration: none;
  }

  .app-footer {
    padding-top: 40px;
    padding-bottom: 20px;
    background-color: var(--linx-bg-dark);
    color: #fff;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .app-footer a {
    color: #fff;
    font-weight: 400;
  }
  .app-footer .footer-newsletter {
    max-width: 273px;
  }
  .app-footer .footer-newsletter .newsletter-title {
    line-height: 1.37818;
  }
  .app-footer .footer-newsletter .form-control {
    border-color: #606060;
    color: #D9D9D9;
  }
  .app-footer .footer-newsletter .form-control:focus {
    background-color: transparent;
    box-shadow: none;
  }
  .app-footer .footer-nav .footer-nav-title {
    font-size: 18px;
  }
  .app-footer .footer-nav .footer-nav-list .footer-list-item {
    line-height: 1.575;
    color: #fff;
  }
  .app-footer .footer-nav .footer-nav-list .footer-list-item .footer-list-link {
    text-decoration: none;
    font-weight: 400;
  }
  .app-footer .footer-payments li {
    margin-right: 0.5rem;
  }
  .app-footer .copyrights-text {
    font-size: 10px;
  }

  .sidebar-cart {
    pointer-events: none;
    visibility: hidden;
    position: fixed;
    top: 109px;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1030;
  }
  .sidebar-cart .cart-overlay {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 10;
    background-color: rgba(217, 217, 217, 0.56);
    transition: all 0.3s;
  }
  .sidebar-cart .sidebar-cart-wrapper {
    background-color: #fff;
    padding: 75px 50px;
    width: 100%;
    height: 100%;
    max-width: 586px;
    overflow-y: auto;
    right: 0;
    position: absolute;
    top: 0;
    z-index: 100;
    visibility: hidden;
    transform: translateX(105%);
    transition: all 0.3s;
  }
  .sidebar-cart .cart-close {
    font-size: 24px;
    width: 52px;
    height: 52px;
    text-align: center;
    line-height: 50px;
    border-radius: 50%;
    background-color: #E2E0E0;
    position: absolute;
    left: 15px;
    top: 14px;
    cursor: pointer;
  }
  .sidebar-cart .sidebar-cart-title {
    font-size: 34px;
  }
  .sidebar-cart .sidebar-cart-note {
    font-weight: bold;
  }
  .sidebar-cart .cart-products {
    margin-top: 15px;
    margin-bottom: 21px;
  }
  .sidebar-cart .cart-products .cart-product {
    border-bottom: 1px solid #E4E4E4;
    padding-bottom: 8px;
    margin-bottom: 8px;
    /* .cart-product-img {
        margin-right: 23px;
    } */
  }
  .sidebar-cart .cart-products .cart-product .cart-product-info {
    margin-left: 23px;
    color: #000;
  }
  .sidebar-cart .cart-products .cart-product .cart-product-info .cart-product-title {
    margin-bottom: 4px;
  }
  .sidebar-cart .cart-products .cart-product .cart-product-info .cart-product-title a {
    font-weight: 700;
    text-decoration: none;
    color: #000;
  }
  .sidebar-cart .cart-products .cart-product .cart-product-info .cart-product-trash {
    color: red;
    text-decoration: none;
  }
  .sidebar-cart .cart-label {
    font-weight: 700;
    color: #000000;
  }
  .sidebar-cart .cart-label-sm {
    font-weight: 400;
    font-size: 10px;
  }
  .sidebar-cart .cart-label-lg {
    font-weight: 700;
    font-size: 27px;
  }

  .show-cart {
    overflow: hidden;
  }
  .show-cart .sidebar-cart {
    visibility: visible;
    pointer-events: auto;
  }
  .show-cart .sidebar-cart .sidebar-cart-wrapper {
    visibility: visible;
    transform: translateX(0);
  }
  .show-cart .sidebar-cart .cart-overlay {
    visibility: visible;
    opacity: 1;
  }

  .order-history-header .page-title {
    margin-right: auto;
  }
  .order-history-header .order-status {
    display: flex;
    align-items: center;
  }

  .order-summery-table tr td:nth-child(3), .order-summery-table tr th:nth-child(3) {
    text-align: right;
  }

  @media (min-width: 768px) {
    .app-main {
      min-height: calc(100vh - 660px);
    }
    /* .categories .category .category-img {
      height: 333px;
    } */
    .products {
      margin-bottom: 36px;
    }
  }
  @media (min-width: 992px) {
    .app-main {
      min-height: calc(100vh - 465px);
    }
    .show-cart {
      padding-right: 17px;
    }
    .show-cart .app-navbar {
      right: 17px;
    }
    .order-divider {
      border-left: 1px solid #E4E4E4;
    }
    .sub-menu {
      left: 0;
      opacity: 0;
      visibility: hidden;
      top: 109px;
      max-height: calc(100% - 109px);
      overflow-y: auto;
    }
    .sub-menu.active {
      opacity: 1;
      visibility: visible;
    }
    .sub-menu .sub-menu-list .sub-menu-item .sub-menu-list {
      position: absolute;
      left: 300px;
      width: 356px;
      max-width: 356px;
      height: 100%;
      top: 0;
      padding-left: 56px;
      visibility: hidden;
      opacity: 0;
    }
    .sub-menu .sub-menu-list .sub-menu-item:hover > .sub-menu-list {
      visibility: visible;
      opacity: 1;
    }
    .menu-item-box a {
      height: 200px;
    }
    .menu-item-box.box-md a {
      height: 150px;
    }
    /* .categories .category .category-img {
      height: 290px;
    } */
    .app-footer {
      /*background-image: url('../images/footer-bg.jpg');*/
      background-position: left top;
      color: #fff;
    }
    .app-footer .footer-newsletter .newsletter-title {
      padding-right: 50px;
    }
  }
  @media (min-width: 1200px) {
    /* .categories .category .category-img {
      height: 351px;
    } */
  }
  @media (min-width: 1400px) {
    /* .categories .category .category-img {
      height: 412px;
    } */
  }
  @media (max-width: 991px) {
    .navbar-brand .img-brand {
      width: 100px;
    }
    body.nav-activated {
      overflow: hidden;
    }
    .head-spacing {
      padding-top: 48px;
    }
    .app-navbar {
      --bs-navbar-padding-y: 0.68rem;
    }
    .app-navbar.navbar-expand .navbar-collapse {
      display: none !important;
    }
    .app-navbar .navbar-nav > .nav-item {
      margin-left: 5px;
    }
    .app-navbar .navbar-nav > .nav-item > .nav-link {
      --bs-nav-link-padding-y: 0;
      --bs-navbar-nav-link-padding-x: 0;
    }
    .app-navbar .navbar-nav > .nav-item:not(.item-normal-bg) > .nav-link {
      background: rgba(255, 255, 255, 0.3);
      border-radius: 50%;
      width: 31px;
      height: 31px;
      line-height: 31px;
      font-size: 0.848rem;
      text-align: center;
    }
    .app-navbar .navbar-nav > .nav-item > .cart-icon {
      margin-right: -10px;
      min-width: 35px;
    }
    .sub-menu {
      max-width: 286px;
      padding-top: 0;
      padding-left: 14px;
      padding-right: 14px;
      top: 62px;
      bottom: 0;
      transform: translateX(105%);
    }
    .sub-menu.active {
      transform: translateX(0);
    }
    .sub-menu.active:not(.active-sublist) {
      overflow-y: auto;
      overflow-x: hidden;
    }
    .sub-menu .submenu-action-btns {
      color: #fff;
      font-size: 22px;
      padding-top: 25px;
      padding-bottom: 31px;
    }
    .sub-menu .submenu-action-btns .back-to-submenu {
      opacity: 0;
      visibility: hidden;
    }
    .sub-menu.active-sublist .submenu-action-btns .back-to-submenu {
      opacity: 1;
      visibility: visible;
    }
    .sub-menu .sub-menu-list {
      font-size: 12px;
    }
    .sub-menu .sub-menu-list.parent-sub-menu {
      margin-bottom: 25px;
    }
    .sub-menu .sub-menu-list.parent-sub-menu > .sub-menu-item {
      position: relative;
      padding-right: 30px;
      border-top: 1px solid #828282;
    }
    .sub-menu .sub-menu-list.parent-sub-menu > .sub-menu-item::after {
      content: "\f105";
      position: absolute;
      font-family: var(--linx-icons-font);
      font-weight: 900;
      right: 0;
      height: 19px;
      top: 0;
      bottom: 0;
      margin: auto;
      width: 20px;
      text-align: right;
      padding: 0 5px;
      z-index: 50;
    }
    .sub-menu .sub-menu-list.parent-sub-menu > .sub-menu-item > a {
      border-top: none;
    }
    .sub-menu .sub-menu-list.parent-sub-menu > .sub-menu-item > a::after {
      content: none;
    }
    .sub-menu .sub-menu-list .sub-menu-item a {
      line-height: 19px;
      padding: 6px 20px 6px 0;
    }
    .sub-menu .sub-menu-list .sub-menu-item a:after {
      height: 19px;
    }
    .sub-menu .sub-menu-list .sub-menu-item .sub-menu-list {
      position: fixed;
      width: 286px;
      left: 0;
      top: 85px;
      bottom: 0;
      padding: 0 26px 26px;
      background-color: var(--linx-bg-dark);
      z-index: 100;
      overflow-y: auto;
      transform: translateX(105%);
      height: calc(100vh - 150px);
    }
    .sub-menu .sub-menu-list .sub-menu-item.show-sublist .sub-menu-list {
      transform: translateX(0);
    }
    .sub-menu .sub-menu-list .sub-menu-item.child-sub-menu > .sub-menu-item > a {
      margin-bottom: 12px;
    }
    .sub-menu .menu-item-box a {
      font-size: 16px;
      line-height: 1.5;
      padding: 1.094rem 1rem;
      height: auto;
    }
    .mob-search {
      display: block;
      position: absolute;
      left: 0;
      right: 0;
      z-index: 1030;
      background-color: var(--linx-bg-dark);
      padding: 8px 12px;
      top: 62px;
      opacity: 0;
      visibility: hidden;
      transform: translateY(-10%);
      transition: all 0.3s;
    }
    .mob-search .head-group {
      width: 100%;
      max-width: 100%;
    }
    .mob-search.active {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }
    .app-card {
      padding: 40px 22px;
    }
    .v-nav-tabbing {
      padding: 40px 20px;
    }
    .app-order-block {
      margin-bottom: 37px;
    }
    .app-block.block-p-lg {
      padding: 1.75rem 1.5rem;
    }
    .ui-autocomplete.ui-widget-content {
      font-size: 12px;
      max-width: 92%;
    }
    .ui-autocomplete.ui-menu .ui-menu-item-wrapper {
      line-height: 19px;
      padding-top: 6px;
      padding-bottom: 6px;
    }
    .app-footer {
      padding-top: 57px;
      padding-bottom: 61px;
    }
    .app-footer .footer-newsletter {
      margin-left: auto;
      margin-right: auto;
      margin-bottom: 85px;
      max-width: 200px;
      text-align: center;
    }
    .sidebar-cart {
      top: 62px;
    }
    .sidebar-cart .cart-close {
      width: 33px;
      height: 33px;
      font-size: 18px;
      line-height: 31px;
      left: 27px;
      top: 23px;
    }
    .sidebar-cart .sidebar-cart-wrapper {
      padding: 54px 27px;
    }
    .sidebar-cart .cart-products .cart-product .cart-product-img {
      width: 82px;
      height: 82px;
      min-width: 82px;
    }
    .sidebar-cart .cart-products .cart-product .cart-product-info {
      font-size: 12px;
      margin-left: 13px;
    }
    .sidebar-cart .cart-products .cart-product .cart-product-info .cart-product-title {
      margin-bottom: 12px;
    }
    .sidebar-cart .cart-products .cart-product .cart-product-info .cart-price-and-action {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .sidebar-cart .cart-products .cart-product .cart-product-info .cart-price-and-action .cart-price {
      margin-bottom: 0 !important;
    }
    .sidebar-cart .cart-products .cart-product .cart-product-info .cart-action-btns .quantity {
      margin-right: 5px;
    }
    .sidebar-cart a.cart-label {
      font-size: 12px;
    }
    .sidebar-cart .cart-label-sm {
      max-width: 158px;
    }
    .sidebar-cart .cart-label-lg {
      font-size: 20px;
    }
    .quantity.qty-sm {
      font-size: 10px;
    }
    .quantity.qty-sm .input-quantity {
      font-size: 10px;
    }
    .product-img .product-md {
      width: 82px;
      height: 82px;
    }
    .btn:not(.btn-xsm):not(.btn-sm):not(.btn-md):not(.btn-lg):not(.btn-xlg) {
      --bs-btn-font-size: 12px;
      --bs-btn-padding-y: 0.44rem;
    }
    .btn-sm {
      --bs-btn-padding-y: 0.15rem;
      --bs-btn-padding-x: 1rem;
      font-size: 12px;
    }
    .btn-xlg {
      font-size: 16px;
    }
    .product .product-img.product-lg {
      margin-bottom: 15px;
      height: 650px;
    }
  }
  @media (max-width: 1199px) {
    .categories .category .category-img .category-info {
      padding-left: 24px;
      padding-right: 24px;
    }
    .quantity .input-quantity {
        width: 50px;
    }
  }
  @media (max-width: 767px) {
    .btn.btn-icon.btn-md {
      width: 21px;
      height: 21px;
      line-height: 19px;
    }
    .btn-md {
      --bs-btn-font-size: var(--linx-font-sm);
      --bs-btn-padding-y: 0.344rem;
      --bs-btn-padding-x: 0.344rem;
      line-height: 1;
    }
    h1, .h1 {
      font-size: 1.5rem;
    }
    h2, .h2 {
      font-size: 1.25rem;
    }
    h4, .h4 {
      font-size: 1.125rem;
    }
    .hero-banner {
      /*background-image: url('../images/home-banner-mobile.jpg');*/
      padding-top: 45px;
      padding-bottom: 10px;
      margin-bottom: 15px;
    }
    .hero-banner .hero-info {
      text-align: center;
      /*max-width: 248px;*/
      margin: auto;
    }
    .hero-banner .hero-info .hero-title-sm {
      font-size: 14px;
    }
    .hero-banner .hero-info .hero-title {
      font-size: 27px;
    }
    .banner-section.checkout-banner {
      /*background-image: url(../images/checkout-banner-mobile.jpg);*/
      padding-top: 24px;
      padding-bottom: 23px;
    }
    .banner-section.checkout-banner .banner-title {
      margin-top: 12px;
    }
    .order-summery {
      padding-top: 0;
    }
    .app-card.card-g-sm {
      padding-top: 52px;
      padding-bottom: 52px;
    }
    .block-title {
      margin-bottom: 1rem;
    }
    .app-block {
      margin-bottom: 30px;
      padding: 1.75rem 1.5rem;
    }
    .app-block .block-info {
      line-height: 1.46;
    }
    .block-g-sm .app-block {
      margin-bottom: 18px;
    }
    .go-back-wrapper {
      font-size: 10px;
    }
    .go-back-wrapper .go-back-btn {
      width: 25px;
      height: 25px;
      line-height: 25px;
      font-size: 11px;
    }
    .product {
      border-radius: 10px;
    }
    .product .product-img {
      height: 95px;
      border-top-left-radius: 10px;
      border-top-right-radius: 10px;
    }
    .product .product-img.product-lg {
      height: 306px;
      border-radius: var(--linx-border-radius);
      margin-bottom: 15px;
    }
    .product .product-info {
      padding: 9px 9px 14px;
    }
    .product .product-info .product-title a {
      font-size: 10px;
      font-weight: 700;
      line-height: 1.26;
      display: inline-block;
    }
    .product .product-info .product-price {
      font-size: 10px;
      margin-bottom: 10px;
    }
    .product .product-info .product-points {
      font-size: 8px;
      line-height: 1;
      padding: 4px 6px;
    }
    .product .product-info .btn-icon-add-to-cart, .product .product-info.btn-icon-out-of-stock {
      margin-left: 5px;
    }
    .single-product {
      margin-bottom: 60px;
    }
    .single-product .product-info {
      padding: 54px 24px 55px;
    }
    .single-product .product-info .product-price {
      font-size: 16px;
      margin-bottom: 26px;
    }
    .single-product .product-info .product-btns .btn {
      --bs-btn-padding-x: 1.37rem;
    }
    .single-product .product-info .product-btns .btn.btn-lg {
      --bs-btn-font-size: 12px;
      --bs-btn-padding-y: 0.375rem;
    }
    .quantity {
      font-size: 12px;
      padding: 7px 14px;
    }
    .quantity .input-quantity {
      font-size: 12px;
      margin-left: 0;
      margin-right: 0;
      width: 50px;
      pointer-events: none;
    }
    .product-img .product-badge, .product-info .product-badge {
      --bs-badge-padding-y: 0.22rem;
      --bs-badge-padding-x: 0.476rem;
      font-size: 6px;
    }
    .category-slider-wrapper {
      margin-bottom: 48px;
    }
    .category-slider-wrapper .category-slider-title {
      font-size: 16px;
    }
    .category-slider-wrapper .category-slider-head {
      font-size: 12px;
    }
    .category-slider-wrapper .category-slider-head .view-all-products a {
      font-size: 12px;
    }
    .category-slider-wrapper .category-slider .category-slide {
      padding-right: 4px;
    }
    .slider-nav {
      width: 34px;
    }
    .slider-nav .slider-nav-icon {
      width: 23px;
      height: 23px;
      line-height: 23px;
      font-size: 12px;
    }
    .products-gutter {
      --bs-gutter-y: 0.50rem;
      --bs-gutter-x: 0.50rem;
    }
    .cat-gutter {
      --bs-gutter-y: 0.375rem;
      --bs-gutter-x: 0.375rem;
    }
    .all-products-gutter {
      --bs-gutter-y: 0.563rem;
      --bs-gutter-x: 0.563rem;
    }
    .home-page-title {
      font-size: 20px;
      margin-bottom: 25px;
    }
    .categories {
      margin-bottom: 0;
    }
    /* .categories .category .category-img {
      height: 167px;
      border-radius: 18px;
    } */
    .categories .category .category-img img {
      -o-object-position: 0 25%;
         object-position: 0 25%;
    }
    .categories .category .category-img .category-info {
      padding-left: 3px;
      padding-right: 3px;
      bottom: 10px;
    }
    .categories .category .category-img .category-info .category-title {
      font-size: 12px;
      line-height: 15px;
      padding: 0.164rem;
    }
    .color-box {
      font-size: 12px;
      padding: 21px 15px;
      min-height: auto;
    }
    .color-box .box-text-lg {
      font-size: 22px;
    }
    .order-confirm-info {
      margin-bottom: 54px;
    }
    .order-confirm-info .order-confirm-start h2 {
      font-size: 20px;
      margin-bottom: 20px;
    }
    .order-confirm-info .order-confirm-start p {
      font-size: 14px;
      max-width: 225px;
      margin: auto;
      margin-bottom: 24px;
    }
    .order-confirm-info .order-confirm-end .color-box {
      font-size: 12px;
      max-width: 232px;
      margin: auto;
    }
    .order-confirm-info .order-confirm-end .color-box .box-text-lg {
      font-size: 22px;
    }
    .order-confirm-card {
      margin-bottom: 23px;
    }
    .need-assistance {
      /*background-image: url("../images/need-assistance-mobile.jpg");*/
      padding: 76px 26px 65px;
    }
    .need-assistance .assistance-title {
      font-size: 20px;
      margin-bottom: 24px;
    }
    .need-assistance .assistance-list .assistance-item {
      margin-bottom: 20px;
    }
    .need-assistance .assistance-list .assistance-item .assistance-icon {
      margin-right: 12px;
      width: 44px;
      height: 44px;
      min-width: 44px;
      line-height: 40px;
    }
    .need-assistance .assistance-list .assistance-item .assistance-icon img {
      width: 23px;
    }
    .need-assistance .assistance-list .assistance-item .assistance-label {
      font-size: 14px;
    }
    .order-history-header {
      flex-wrap: wrap;
    }
    .order-history-header .page-title {
      margin-bottom: 4px !important;
      width: 100%;
    }
    .sidebar-cart .btn-eligible {
      padding-left: 12px;
      padding-right: 12px;
    }
    .sidebar-cart a.cart-label {
      font-size: 11px;
    }
    .app-footer {
      /*background-image: url(../images/mobile-footer-bg.jpg);*/
      background-position: center;
    }
    .app-footer .footer-newsletter {
      min-height: 225px;
    }
    .app-footer .footer-container {
      padding-left: 30px;
      padding-right: 30px;
    }
    /* .app-footer .footer-container .footer-logo-wrapper {
      text-align: center;
      margin-bottom: 39px;
    } */
    /* .app-footer .footer-container .footer-logo-wrapper .footer-logo {
      max-width: 227px;
    } */
    /* .app-footer .footer-container .footer-nav-wrapper {
      margin-bottom: 32px;
      margin-top: 48px;
    } */
    .app-footer .footer-container .footer-nav-wrapper .row {
      --bs-gutter-x: 1rem;
      margin-right: -18px;
    }
    /* .app-footer .footer-container .footer-payments {
      margin-bottom: 36px;
    } */
    /* .app-footer .footer-container .copyrights-text {
      margin-left: -27px;
      margin-right: -27px;
    } */
    .app-footer .footer-nav {
      font-size: 12px;
    }
    .app-footer .footer-nav .footer-nav-title {
      font-size: 16px;
    }
  }
  @media (max-width: 440px) {
    .app-footer {
      background-position: top center;
    }
  }

  .input-group .form-control:focus {
    color: #212529;
    background-color: #fff;
    border-color: #86b7fe;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(13,110,253,.25)
  }

  .input-group .form-control.is-invalid:focus {
    border-color: red;
    box-shadow: 0 0 0 0.25rem rgba(255, 0, 0, 0.25);
  }

  /* .input-group .btn, .input-group .input-group-text {
    border-top-right-radius: 7px;
    border-bottom-right-radius: 7px;
  } */

  /* .input-group .input-group-text {
    background-color: var(--linx-color-primary);
    border: 1px solid var(--linx-color-primary);
    color: #fff;
  } */

  .pagination {
    margin-top: 15px;
    --bs-pagination-color: #233d4d;
    --bs-pagination-border-color: #233d4d;
    --bs-pagination-active-color: #fff;
    --bs-pagination-active-border-color: #233d4d;
    --bs-pagination-active-bg: #233d4d;
    --bs-pagination-hover-color: #fff;
    --bs-pagination-hover-border-color: #233d4d;
    --bs-pagination-hover-bg: #233d4d;
    --bs-pagination-focus-color: #fff;
    --bs-pagination-focus-border-color: #233d4d;
    --bs-pagination-focus-bg: #233d4d;
    --bs-pagination-focus-box-shadow: none;
    --bs-pagination-disabled-color: #233d4d;
    --bs-pagination-disabled-border-color: #233d4d;
    --bs-pagination-border-radius: 40px;
  }

  .pagination a {
    text-decoration: none;
  }

  .image_preview_container .image_preview {
    margin-top: 16px;
  }

  .image_preview_container .imagePreview {
    margin-right: 16px;
  }

  .form-control[type=file]::-webkit-file-upload-button {
    visibility: hidden;
  }

  .form-control[type=file] {
    padding: 4px;
    position: relative;
    height: 43px;
    padding-left: 85px;
    line-height: 30px;
  }

  .form-control[type=file]::before {
    content: "Choose File";
    background-color: var(--linx-bd-dark-sec);
    display: inline-block;
    padding: 0.544rem 2.88rem;
    color: #fff;
    border-radius: 7px;
    line-height: 14px;
    border: 1px solid var(--linx-bd-dark-sec);
    position: absolute;
    left: 4px;
    top: 4px;
  }
  /*# sourceMappingURL=style.css.map */
.app-logo {
    width: 100px !important;
}
.footer-logo {
    width: 100px !important;
}
@media (max-width: 991px) {
    .app-logo {
        width: 70px !important;
    }
    .footer-logo {
        width: 70px !important;
    }
}
.input-group .form-control.no-border:focus {
    box-shadow: none;
    border: 1px solid #C5C5C5;
}
.slick-track{
    margin-left: 0;
}
.color-black {
    color: black;
}

.text-white {
    color: white;
}
.text-red {
    color: red;
}
.background-danger {
    background-color: red;
}
.fa-regular.fa-trash-can {
    color: red;
}
#passwordHelpBlock {
    font-weight: bold;
}
.globalSearch{
    background-color: white !important;
    color: black !important;
}
.product-img img {
    height: 100%;
    width: auto;
}
.single-product .product-info .product-btns {
    position: absolute;
    bottom: 0;
    left: 0;
    margin: 30px;
}
.assistance-icon.call-us {
    background-color: #e27a56 !important;
}
.assistance-icon.email-us {
    background-color: #a1c181 !important;
}

.payment-card-container {
    padding: 3px 6px 3px 6px !important;
    background-color: darkgray;
}
.payment-card-icon {
    height: 40px;
}
.payment-card-container span {
    font-size: 1.3vw;
    color: white;
    font-weight: 500;
}
.payment-card-container button {
    height: 30px;
    padding-top: 0;
    padding-bottom: 0;
    margin-top: 5px;
    margin-bottom: 5px;
}
.stock-label {
    color: red;
    font-weight: 600;
}
.btn-eligible {
    font-size: smaller;
}
.btn-redeem-points {
    font-size: smaller;
}
.checkout-gutter .app-card {
    padding: 30px 35px;
}
.checkout-gutter .go-back-wrapper {
    margin-bottom: 0;
}
.order-qty-missmatch {
    background-color: red;
    padding: 5px;
    color: white;
}
/* .quantity.recommanded-product .input-quantity {
    width: auto;
} */
.globalSearchForm .input-group {
    width: 190px;
}
.delivery_address_section {
    width: 270px;
    cursor: pointer;
}
.delivery_address_section.delivery-addreess-input-group {
    width: auto;
}
.address-card {
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 15px;
    cursor: pointer;
}
.address-card:hover {
    background-color: #f8f9fa;
}
.address-card .card-text {
    margin-bottom: 0;
}
.address-card.selected {
    background-color: var(--linx-color-secondary);
}
.address-card.selected .card-text {
    color: white;
}
.delivery_address_section_text {
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.delivery_address_section_text.disabled {
    color: #999;
    background-color: #f5f5f5;
    border-color: #ccc;
}
.delivery-addreess-input-group.is-invalid,
.delivery-addreess-input-group.is-invalid .input-group-text,
.delivery-addreess-input-group.is-invalid .form-control {
    border-color: red;
    background-image: none;
    border-width: 2px;
}
.delivery-addreess-input-group.is-invalid .input-group-text {
    border-right: none;
    border-radius: 7px !important;
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}
.delivery-addreess-input-group.is-invalid .form-control {
    border-left: none;
    border-radius: 7px !important;
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
}
.pac-container {
    z-index: 9999 !important;
}
.pac-container .pac-item{
    cursor: pointer !important;
}
@media screen and (max-width: 768px) {
    .setmarg {
        margin-top: auto !important;
    }
}
label.required:after {
    content:"*";
    color:red;
}

/* changes for dashboard start */
.banners-facebook-container {
    margin-bottom: 5px;
}
.hero-banner {
    margin-bottom: 5px;
}
.home-page-title {
    font-size: 30px;
    margin-bottom: 10px;
}
.categories .category .category-img .category-info {
    bottom: 5px;
    padding-left: 0;
    padding-right: 0;
}
.categories .category .category-img .category-info .category-title {
    font-size: small;
    line-height: unset !important;
}
@media (min-width: 1400px) {
    /* .categories .category .category-img {
       height: 200px;
    } */
}
.dashboard-cat-col {
    width: 20% !important;
}
.subcategory-heading-list {
    font-size: 19px !important;
}
@media (max-width: 991px) {
    .subcategory-heading-list {
        font-size: 16px !important;
    }
    .banner-section {
        /* padding-top: 45px; */
    }
}
@media (max-width: 576px) {
    .dashboard-cat-col {
      width: 50% !important;
    }
    .home-page-title {
        font-size: 20px;
    }
    .subcategory-heading-list {
        font-size: 14px !important;
    }
    .app-navbar {
        padding: 0;
    }
    .breadcrumb-nav {
        margin-top: 10px;
    }
    .page-title {
        margin-top: 15px;
        margin-bottom: 15px;
    }
}
.w-70 {
    width: 70% !important;
}
/*.categories .category .category-img {
    height: 200px;
}*/
@media screen and (max-width: 991px) {
    .categories .category .category-img {
        height: 150px;
    }
}
.bg-orange {
    background-color: orange;
}
.vw-10 {
    width: 10vw !important;
}

a.disabled {
    pointer-events: none; /* Disable pointer events */
    opacity: 0.5; /* Optionally reduce opacity to indicate disabled state */
}
.delivery-date-card {
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 15px;
    cursor: pointer;
}
.delivery-date-card:hover {
    background-color: var(--linx-color-secondary);
    color: white;
}
.product .product-info .product-points {
    text-wrap: wrap;
}
.cart-icon {
    display: inline-flex;
    align-items: center;
    position: relative;
}
.vat-message-display-header {
    position: fixed;
    top: 0;
    z-index: 1040;
    left: 0;
    right: 0;
    color: #FFFFFF;
    background-color: var(--linx-bg-dark);
    font-size: larger;
    padding-bottom: .25rem !important;
    padding-top: 0.25rem !important;
    padding-right: 3rem !important;
}
.checkout-banner .navbar-brand.all-screen-vat-message-enabled {
    margin-top: 12px;
}
.fixed-top.all-screen-vat-message-enabled {
    top: 12px;
}
@media (max-width: 991px) {
    .vat-message-display-header {
        position: relative;
        top: 0;
        z-index: 1040;
        left: 0;
        right: 0;
        color: #FFFFFF;
        background-color: var(--linx-bg-dark);
        font-size: small;
        padding-top: 0.25rem !important;
        padding-right: 0.5rem !important;
    }
}
div.categories {
    margin-top: 20px;
}
.form-check-input.product-checkbox {
    width: 1.5em;
    height: 1.5em;
    margin-top: unset;
}
.global-add-to-cart {
    position: fixed !important;
    width: 50px !important;
    height: 50px !important;
    right: 20px !important;
    bottom: 20px !important;
    padding-top: 10px !important;
}
.global_add_to_cart.disabled {
    color: gray;
    border-color: gray;
}
