<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root {
    --theme-primary-color: #00AEEF;
    --red: #E3051B;
    --crimson-red: #CC1C1C;
    --white-smoke: #F5F5F5;
    --platinum-gray: #797979;
    --dark-charcoal: #111111;
    --light-sky-blue: #BBDEEF;
    --yellow: #FFC603;
    --success: #319F43;
    --magenta: #ED008C;
    --light-pink: #FBC2C2;
    --bluish-gray: #ABB2B8;
    --dark-gray: #2D2D2D;
    --light-gray:#5A5A5A;
    --neutral-gray: #EFEFEF;
}

body {
    font-family: 'Helvetica', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #000;
}
a {
    text-decoration: none;
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    margin: 0;
    font-weight: 700;
}
.form-select:focus,
.form-control:focus,
.form-check-input:focus {
    border-color: var(--theme-primary-color);
    outline: 0;
    box-shadow: 0 0 0 .25rem rgb(0 174 239 / 10%);
}
.form-check-input:checked {
    border-color: var(--theme-primary-color);
    background-color: var(--theme-primary-color);

}
/* Container Size */
.app-container {
    max-width: 1350px;
    padding: 0 15px;
    margin: 0 auto;
}

/* Background Color */
.bg-white-smoke {
    background-color: var(--white-smoke);
}
.bg-neutral-gray {
    background-color: var(--neutral-gray);
}
.bg-dark-gray-20 {
    background-color: #66666633;
}
.bg-primary-color {
    background-color: var(--theme-primary-color);
}

/* Color */
.primary-color {
    color: var(--theme-primary-color);
}
.dark-gray {
    color: var(--dark-gray);
}
.dark-charcoal {
    color: var(--dark-charcoal);
}
.platinum-gray {
    color: var(--platinum-gray);
}
.red-color {
    color: var(--red) !important;
}

/* Hover Color */
.primary-color-hover:hover {
    color: var(--theme-primary-color) !important;
}
a.primary-color:hover {
    text-decoration: underline;
}
.bg-primary-color-hover:hover {
    background-color: var(--theme-primary-color) !important;
}
/* Padding */
.p-10 {
    padding: 10px;
}
.pt-20 {
    padding-top: 20px;
}
.pt-10 {
    padding-top: 10px;
}
.px-10 {
    padding-left: 10px;
    padding-right: 10px;
}
.p-20 {
    padding: 20px;
}
.py-20 {
    padding-top: 20px;
    padding-bottom: 20px;
}
.px-30 {
    padding-left: 30px;
    padding-right: 30px;
}

/* Margin */
.mt-10 {
    margin-top: 10px;
}
.mt-12 {
    margin-top: 12px;
}
.mt-30 {
    margin-top: 30px;
}

/* Gap */
.gap-10 {
    gap: 10px;
}

/* Font Size */
.font-10 {
    font-size: 10px;
}
.font-14 {
    font-size: 14px;
}
.fs-22 {
    font-size: 22px;
}
.fs-30 {
    font-size: 30px;
}

.hover-underline:hover {
    text-decoration: underline;
}
.hover-underline-none:hover {
    text-decoration: none !important;
}

/* Line Height */
.line-height-18 {
    line-height: 18px;
}
.line-height-24 {
    line-height: 24px;
}

/* Button */
.primary-btn,
.primary-btn-outline,
.outine-btn,
.secondary-btn-outline {
    text-align: center;
    display: inline-block;
    line-height: 1;
}
.primary-btn {
    border-radius: 12px;
    padding: 14px 20px;
    background-color: var(--theme-primary-color);
    color: #fff;
    border: 1px solid var(--theme-primary-color);
}
.primary-btn-outline {
    background-color: transparent;
    color: var(--theme-primary-color);
    border: 1px solid var(--theme-primary-color);
    padding: 14px 30px;
    border-radius: 5px;
}
.outine-btn {
    padding: 10px 16px;
    border-radius: 6px;
    border: 1px solid #000;
    color: #000;
    font-size: 20px;
    width: 100%;
}
.secondary-btn-outline {
    background-color: var(--platinum-gray);
    color: #fff;
    border: 1px solid var(--platinum-gray);
    padding: 14px 30px;
    border-radius: 5px;
}
.outline-btn-icon {
    padding: 12px 18px;
    color: #000;
    border: 1px solid #000;
    width: fit-content;
    font-size: 20px;
}
.dark-gray-20-btn {
    border: 1px solid #00000080;
    background-color: #6666661A;
    padding: 13px 10px;
}
.primary-btn:hover {
    background-color: transparent;
    color: var(--theme-primary-color);
}
.primary-btn.hover-path-fill:hover svg path {
    fill: var(--theme-primary-color);
}
.outine-btn:hover,
.primary-btn-outline:hover {
    color: #fff;
    background-color: var(--theme-primary-color);
    border-color: var(--theme-primary-color);
}
.outline-btn-icon:hover {
    color: #fff;
    background-color: var(--theme-primary-color);
    border-color: var(--theme-primary-color);
}
.outline-btn-icon.hover-path-fill:hover path {
    fill: #fff;
}
.secondary-btn-outline:hover {
    background-color: transparent;
    color: var(--platinum-gray);
}
.dark-gray-20-btn:hover {
    background-color: transparent;
    border: 1px solid #00000080;
}

/* Border Radius */
.br-12 {
    border-radius: 12px;
}
.br-10 {
    border-radius: 10px;
}

/* Header */
.header-top a.primary-color-hover:hover path {
    stroke: var(--theme-primary-color);
}
header .primary-btn {
    padding: 12px 18px;
}
header .header-nav-section nav &gt; ul::after {
    content: "";
    flex: auto;
}
.header-top {
    font-size: 15px;
}
.cart-badge {
    height: 20px;
    width: 20px;
    background-color: var(--theme-primary-color);
}
.header-cart-wrapper {
    margin-right: 10px;
}
.header-search-form {
    width: 100%;
    max-width: 600px;
}
.header-search-form &gt; form &gt; div:first-child {
    border-radius: 12px;
    background-color: var(--white-smoke);
}
.header-search-form input,
.header-search-form button {
    background-color: transparent;
    border: 1px solid transparent;
    outline: none;
    padding: 18px 20px;
}
.header-search-form input {
    width: 100%;
    border-radius: 12px 0 0 12px;
}
.header-search-form button::before {
    content: "";
    position: absolute;
    width: 1px;
    top: 9px;
    bottom: 9px;
    left: 0;
    background-color: rgba(0, 0, 0, 0.1);
}
.header-search-form button:hover {
    background-color: var(--theme-primary-color);
}
.header-search-form button:hover svg path{
    stroke: #fff;
}
.header-search-form input:focus {
    border: 1px solid var(--theme-primary-color);
}
header .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
header .btn-close {
    opacity: 1;
}
.header-nav-section &gt; nav &gt; ul {
    padding: 10px 0;
    justify-content: space-between;
}
header .offcanvas-body li a,
.single-category-s2-list-body a {
    color: #000;
}
header .offcanvas-body ul.navbar-nav li.nav-item a:hover,
header .offcanvas-body ul.navbar-nav li.nav-item a.active,
.single-category-s2-list-body a:hover {
    color: var(--theme-primary-color);
}
.user-konto-menu{
    cursor: pointer;
}
.user-dropdown-menu {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 30px;
    background-color: #FFFFFF;
    list-style-type: none;
    padding: 20px 15px;
    margin-bottom: 0;
    width: 170px;
    border-radius: 10px;
    z-index: 11;
}
.user-dropdown-menu a {
    padding: 5px 5px;
    display: block;
}
.user-konto-menu.active .user-dropdown-menu{
    display: block;
}
.offcanvas-body &gt; ul &gt; li:not(:last-child) {
    border-bottom: 1px solid rgb(0 0 0 / 20%);
}
.offcanvas-footer {
    box-shadow: 0px 4px 6px 4px #0000001A;
}
.offcanvas-body &gt; ul &gt; li &gt; a {
    padding: 10px 0;
}
.offcanvas-body &gt; ul &gt; li.active &gt; a {
    color: var(--theme-primary-color) !important;
}
.offcanvas.offcanvas-end {
    z-index: 999999 !important;
}
.offcanvas .user-dropdown-menu {
    left: -55px;
}
.offcanvas-search-wrapper {
    display: none;
}
/* Divider */
.gradient-divider {
    background: linear-gradient(to right, var(--yellow), #DD1781, #1C90CC);
    width: 100%;
    height: 6px;
}

/* Footer */
.footer-section {
    padding: 60px 0;
}
.footer-nav {
    gap: 100px;
}
.footer-nav li {
    margin-bottom: 10px;
}
footer .company-details p{
    font-size: 20px;
    font-weight: 700;
}

/* Hero Section */
.hero-sec a.primary-color-hover:hover path {
    fill: var(--theme-primary-color);
}
.hero-sec a.primary-color-hover.hover-stroke:hover path {
    stroke: var(--theme-primary-color);
    fill: inherit;
}
.app-grid-1to3 {
    display: grid;
    grid-template-columns: 350px calc(100% - 380px);
    gap: 30px;
}
.app-grid-1to3.subpage-sidebar{
    display: grid;
    grid-template-columns: 280px calc(100% - 295px);
    gap: 15px;
}
.helpline-wrapper h2,
.slider-content .slider-content-title,
.offer-zone-wrapper h2,
.category-sec h2 {
    font-size: 30px;
}
.helpline-wrapper p,
.helpline-wrapper a,
.online-review-wrapper .ratings {
    font-size: 24px;
}
.online-review-wrapper .site-name {
    font-size: 16px;
    line-height: 40px;
}
.online-review-wrapper a,
.offer-zone-wrapper a,
.category-item h3,
.product-item .product-name,
.product-item .product-name h3,
.product-body &gt; div &gt; p,
.product-description {
    font-size: 20px;
}
.product-item .product-name h3 {
    font-size: 15px;
}
.product-description {
    font-size: 16px;
}
.online-review-wrapper .ratings,
.online-review-wrapper a {
    line-height: 30px;
}
.trust-pilot-btn {
    border: 2px solid var(--success);
    padding: 10px;
    color: #000;
    font-size: 20px;
}
.trust-pilot-btn:hover {
    background-color: var(--success);
    color: #fff;
}
.trust-pilot-btn:hover path {
    fill: #fff;
}
.helpline-wrapper h2,
.helpline-wrapper p,
.helpline-wrapper a {
    line-height: 48px;
}
.subpage-sidebar .helpline-wrapper a,
.subpage-sidebar .helpline-wrapper p{
    line-height: 36px;
}
.subpage-sidebar .helpline-wrapper p{
    font-size: 18px;
}
.all-brands-banner {
    padding: 12px 20px;
}
.brands-logo-wrapper img {
    max-width: 83px;
}
.hero-slider .item img {
    object-fit: cover;
    max-height: 300px;
    border-radius: 12px;
}
.slider-content {
    max-width: 560px;
    top: 35px;
    left: 0;
    right: 0;
    margin: 0 auto;
    padding: 30px;
    border-radius: 20px;
    background-color: var(--light-sky-blue);
    z-index: 2;
}
.slider-content .primary-btn {
    width: fit-content !important;
}
.hero-slider .owl-dots{
    margin: 0;
    position: absolute;
    bottom: 25px;
    left: 0;
    right: 0;
}
.hero-slider .owl-dots .owl-dot span {
    background: #fff;
    width: 12px;
    height: 12px;
}
.hero-slider .owl-dots .owl-dot.active span,
.hero-slider .owl-dots .owl-dot:hover span {
    background: var(--theme-primary-color);
}
.offer-zone-wrapper {
    padding: 20px;
}
.offer-zone-wrapper h3 {
    font-size: 22px;
}
.offer-zone-wrapper img {
    max-width: 242px;
}

/* Category */
.category-sec,
.promotional-products-sec {
    padding: 30px 0;
}
.app-grid-col-5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    column-gap: 20px;
    row-gap: 23px;
}
.app-grid-col-7{
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    column-gap: 20px;
    row-gap: 23px;
}
.app-grid-col-8{
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    column-gap: 20px;
    row-gap: 23px;
}
.mypage-links img {
    width: 80px;
}
.mypage-links .text-black {
    font-size: 14px;
    line-height: 15px;
}
.category-item,
.category-item img,
.category-item h3 {
    transition: all 300ms;
}
.category-item,
.product-item {
    border: 1.31px solid rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    overflow: hidden;
}
.category-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}
.category-item &gt; div:first-child {
    border-radius: 0 0 13px 13px;
}
.category-item &gt; div:last-child {
    padding: 18px 0;
}
.category-item:hover img {
    transform: scale(1.1);
}
.category-item:hover,
.product-item:hover {
    border-color: var(--theme-primary-color);
}
.category-item:hover h3,
.product-item:hover .product-name{
    color: var(--theme-primary-color);
}

/* Product Items */
.app-grid-col-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 20px;
    row-gap: 23px;
}
.product-item {
    padding: 16px;
    list-style-type: none;
}
.product-item .thumbnail img {
    display: block;
    margin: 0 auto;
}
.product-item .category-name {
    font-family: "Space Grotesk", serif;
    color: var(--bluish-gray);
    font-size: 12px;
    text-transform: uppercase;
}
.product-body &gt; div &gt; p {
    color: var(--red);
}
.product-item .delivery-time {
    font-size: 14px;
}
.quantity-field {
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    align-self: stretch;
}
.quantity-field .btn {
    padding: 0.375rem 0.5rem;
    color: var(--theme-primary-color);
    height: 100%;
}
.quantity-field .btn:hover {
    background-color: var(--theme-primary-color);
}
.quantity-field .btn:hover path {
    fill: #fff;
}
.quantity-field input {
    max-width: 50px;
    font-size: 20px;
    outline: none !important;
}
.product-item button.primary-btn {
    padding: 14px 32px;
    border-radius: 6px;
}

/* Computer Accessories */
.computer-accessories-page .single-category-s2-title {
    padding: 14px 16px;
}
.single-category-s2-lists {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
}
.single-category-s2-list-header {
    background-color: #C2ECFB;
    padding: 0 0 0 20px;
    border-radius: 8px;
    min-height: 60px;
    position: relative;
}
.single-category-s2-list-header h2,
.computer-product-list-sub-heading,
.office-product-heading,
.office-product-sub-head &gt; p:first-child,
.computer-product-list-sub-heading,
.fs-18 {
    font-size: 18px;
}
.single-category-s2-list-body {
    margin-top: 10px;
    padding: 10px 20px;
}
.single-category-s2-list-header img{
    object-fit: fill;
    /*position: absolute;
    right: 0;
    bottom: 0;
    height: 40px;
    width: 100px;*/
}
/*.single-category-s2-list-body a {
    line-height: 30px;
}*/
.single-category-s2-list-body &gt; ul &gt;li {
    margin-bottom: 6px;
}
.weekly-offer-title {
    padding: 20px;
    background-color: var(--theme-primary-color);
}
.computer-accessories-page .fs-20,
.fs-20 {
    font-size: 20px;
}

/* BreadCrumb style */
.breadcrumb-section nav {
    padding: 16px 20px;
    border: 1px solid var(--theme-primary-color);
    border-radius: 8px;
    width: fit-content;
}
.breadcrumb-section a {
    transition: color 0.3s;
    color: #000;
}
.breadcrumb-section a:hover {
    color: var(--theme-primary-color);
    text-decoration: underline;
}
.breadcrumb-section ol {
    flex-wrap: wrap;
}

/* All category list */
.all-category-list,
.computer-product-lists,
.product-sub-category-list {
    padding: 12px 20px;
}
.category-initial {
    background-color: var(--magenta);
    line-height: 1;
    font-size: 20px;
    height: 40px;
    width: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 15px;
    margin-bottom: 15px;
}
.manufacture-list-wrapper .col-list-item {
    column-count: 3;
    column-gap: 2rem;
}
.manufacture-list-wrapper .all-category-lists .category-item {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    display: block;
    border: 0;
}
.all-category-lists a{
    color:var(--light-gray);
}
.all-category-lists a:hover{
    color:var(--theme-primary-color);
}

.all-category-lists &gt; li:last-child a::after {
    display: none;
}
.all-category-lists {
    flex-wrap: wrap;
    gap: 14px;
}
/* Ink/Toner Page */
.ink-toner-content{
    line-height: 22px;
    color:var(--platinum-gray)
}
.product-list .category_title {
    background: var(--theme-primary-color);
    color: #fff;
    border-radius: 4px;
    padding: 8px 12px;
    margin: 15px 0;
}
.product-list .help2 {
    font-size: 14px;
}
#buy_cart_small_grey_b {
    background-color: #838580;
    border-color: #838580;
}
#buy_cart_small_grey_b:hover {
    background-color: transparent;
    color: #838580;
}
/* Product List */
.computer-product-lists .app-grid-col-4,
.product-list-grid {
    gap: 10px;
}
.computer-product-lists .product-name {
    font-size: 15px;
}
.product-item .product-cost {
    font-size: 12px;
}
.product-item .product-cost strong {
    font-size: 13px;
}
.computer-product-lists .product-item {
    padding: 12px;
}
.product-item2 button.primary-btn{
    font-size: 15px;
    padding: 8px;
    border-radius: 5px;
}
.product-item .product-body a{
    color: #000;
    display: block;
    line-height: 20px;
}
.product-item .product-body a:hover{
    color: var(--theme-primary-color);
}

/* Office Product Sub-Category */
.office-product-list {
    grid-template-columns: repeat(4, 1fr);
}
.office-product-list a {
    color: #9A1C07;
    border: 1px solid #9A1C0733;
    height: fit-content;
}
.office-product-list a.active,
.office-product-list a:hover {
    background-color:#9A1C0733;
}
.office-product-sub-head,
.step-active {
    background-color: var(--theme-primary-color);
}
.product-cost span{
    color: var(--red);
}

/* Mobile And Tab page */
.search-form-controls-wrapper {
    gap: 60px;
}
.search-form-controls-wrapper input,
.search-form-controls-wrapper select {
    max-width: 300px;
    width: 300px;
    padding: 14px 20px;
}
.warning-info,
.warning-danger,
.error,
.success,
.help {
    border-bottom: 2px solid #1C90CC;
    background-color: #C2ECFB;
    border-radius: 10px;
    padding: 5px 10px;
}
.warning-info .help {
    border: none;
    border-radius: 0;
    padding: 0;
    background-color: inherit;
}
.product_campaign {
    color: #c00;
    /*text-align: center;*/
    font-size: 12px;
    margin-top: 5px;
    max-width: 75%;
    margin-bottom: 5px;
}
.single-product-price-details .product_campaign{
    max-width: 160px;
    text-align: center;
    margin: 0 auto;
    margin-top: 10px;
    margin-bottom: 5px;
    font-weight: 400;
}
.single-product-price-details .product-detail-cost span {
    font-size: 15px;
    color: #5a5a5a;
    font-weight: 400;
}
.single-product-price-details .product-detail-cost .price_before,
.compatible-products .full-view-product .price-info .price_before{
    text-decoration: line-through;
}
.single-product-price-details .product-footer &gt; div:first-child {
    align-self: stretch;
}
.product-detail-cost .price_now,
.compatible-products .full-view-product .price-info .price_now{
    color: #c00000;
}
.success {
    border-bottom: 2px solid #63954b;
    color: #013f0b;
    background-color: #DDFDD5;
}
.warning-info p,
.error p,
.warning-danger p,
.success p,
.help p {
    margin: 0;
}
.warning-info p:not(:last-child),
.warning-danger p:not(:last-child),
.error p:not(:last-child),
.success p:not(:last-child),
.help p:not(:last-child) {
    margin-bottom: 8px;
}
.warning-danger,
.error {
    border-bottom: 2px solid var(--crimson-red);
    background-color: var(--light-pink);
}
.full-view-products &gt; li:not(:last-child) {
    margin-bottom: 16px;
}
.full-view-product.product-item .full-view-product-des &gt; ul {
    font-size: 12px;
}
.full-view-product .price-inc {
    color: #565656;
    font-size: 12px;
    font-weight: 400;
}
.error a {
    color: #000;
    text-decoration: underline;
}
.error a:hover {
    text-decoration: none;
}

/* Single Product Page */
.single-product-item {
    /*max-width: 850px;*/
    margin: 0 auto;
}
.product-detail-cost {
    padding: 10px 20px;
}
.product-description-wrapper li .nav-link {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 8px 16px;
    font-size: 18px !important;
}
.product-description-wrapper li .nav-link.active {
    background-color: #fff;
}
.product-detail-sec #productTabContent {
    border-top-left-radius: 0;
}
.wishlist-btn:hover svg path,
.wishlist-btn.active svg path{
    fill: var(--red);
}
.wishlist-btn.active .wishlist-outline-icon{
    display: none;
}
.wishlist-btn.active .wishlist-fill-icon{
    display: block;
}
.wishlist-btn .wishlist-fill-icon{
    display: none;
}
.single-product-item .product-img {
    width: 300px;
    height: 275px;
    object-fit: contain;
}
#pb_sel_lister {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin: 10px 0;
    gap: 10px;
}
#pb_sel_lister .product-item {
    padding: 10px;
}
.single-product-header-content &gt; div {
    width: 33.33%;
}
.single-product-header-content .notes &gt; p:first-child {
    margin-top: 10px;
}
#productTabContent table {
    width: 100%;
}
#productTabContent #tab-extra-info table td {
    padding: 6px 10px;
}
#productTabContent #tab-extra-info table td.value {
    width: 55%;
    background: #f4f3f6;
}
#productTabContent .product-link-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
#productTabContent .product-link-list &gt; ul li:not(:last-child) {
    margin-bottom: 10px;
}
div#productTabContent * {
    font-size: 16px;
    font-weight: 600;
}
#tab-product-image #pv_details_product_image img{
    display: block;
    margin: 0 auto;
    height: auto;
    max-width: 100%;
}
/* Login Page */
.login-form {
    max-width: 550px;
    margin: 0 auto;
}
.form-wrapper.right-btn form {
    max-width: 650px;
    margin: 0 auto;
}

.login-form .link-wrapper .primary-btn {
    border-radius: 5px;
    padding: 14px 20px;
    width: 100%;
}
.social-login-google-btn,
.social-login-facebook-btn {
    outline: none;
    background-color: transparent;
    padding: 7px 20px;
    border-radius: 6px;
}
.social-login-google-btn {
    border: 1px solid #FF3D00;
    color: #FF3D00;
}
.social-login-facebook-btn {
    border: 1px solid #1877F2;
    color: #1877F2;
}
.social-login-facebook-btn:hover {
    background-color: rgb(24 119 242 / 30%);
}
.social-login-google-btn:hover {
    background-color: rgb(255 61 0 / 30%);
}

/* Delivery Address Information */
.mypage-links-wrapper a {
    border: 1px solid #9A1C0733;
}
.mypage-links-wrapper a:hover,
.mypage-links-wrapper a.active {
    border-color: #9A1C07;
    background-color: #9A1C0733;
}

/* Order Page */
.order-link.primary-btn-outline {
    padding: 16px 20px;
}
.order-link.primary-btn-outline:hover,
.order-link.active {
    color: #fff !important;
    background-color: var(--theme-primary-color);
}

/* Shopping Cart */
.shopping-cart-btns a {
    padding: 14px 30px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 700;
}
table.table-cell-10 td,
table.table-cell-10 th  {
    padding: 10px;
}
.cart-list-table thead th,
.secondary-color-table thead th {
    background-color: #dbdbdb;
    border-color: rgba(0, 0, 0, 0.2);
}
.cart-list-table td,
.cart-list-table table,
.secondary-color-table td,
.secondary-color-table table {
    border-color: rgba(0, 0, 0, 0.2);
}
.cart-list-table .cart-product-img {
    padding: 20px 10px;
    border: 1px solid rgba(0, 0, 0, 0.5);
}
.reset-btn:hover path {
    fill: var(--theme-primary-color);
}
.cart-product-item {
    min-width: 150px;
}
.min-w-140 {
    min-width: 140px;
}
.w-fit-content {
    width: fit-content !important;
}

/* Order Complaints */
.step-progress-wrapper,
.step-progress-dotted-wrapper {
    gap: 38px;
}
.step-progress-wrapper .step-progress,
.step-progress-dotted-wrapper .step-progress-dotted {
    width: 32px;
    height: 32px;
    z-index: 2;
    background-color: #fff;
    border: 1px solid var(--theme-primary-color);
}
.step-progress-dotted-wrapper .step-progress-dotted {
    border-color: #D1D5DB;
}
.step-progress-wrapper .step-progress:not(:last-child)::after,
.step-progress-dotted-wrapper .step-progress-dotted:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -39px;
    top: 50%;
    transform: translateY(-50%);
    height: 2px;
    background-color: #D1D5DB;
    width: 38px;
}
.step-progress-wrapper .step-progress.step-active {
    background-color: var(--theme-primary-color);
}
.step-progress-dotted-wrapper .step-dotted-active {
    border-color: var(--theme-primary-color);
}
.step-active::before {
    content: "";
    position: absolute;
    inset: 4px;
    background-image: url('data:image/svg+xml,%3Csvg%20width%3D%2221%22%20height%3D%2220%22%20viewBox%3D%220%200%2021%2020%22%20fill%3D%22none%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Cpath%20d%3D%22M4.66797%2010.832L8.0013%2014.1654L16.3346%205.83203%22%20stroke%3D%22white%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3C/path%3E%3C/svg%3E');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}
.step-dotted-active::before {
    content: "";
    position: absolute;
    inset: 8px;
    border-radius: 50%;
    background-color: var(--theme-primary-color);
}

/* Error */
/*.error {
    color: #58151c;
    background-color: #f8d7da;
    border: 1px solid #f1aeb5;
    border-radius: 0.375rem;
    padding: 1rem;
}*/

/* Status */
.failed-rounded-status,
.success-rounded-status {
    width: 20px;
    height: 20px;
    background-color: var(--red);
    border-radius: 50%;
}
.success-rounded-status {
    background-color: var(--success);
}

/* New Order */
.colored-radio {
    background-color: #f4f4f4;
}
.colored-radio select.form-select{
    background-color: transparent;
}

/* Company Info */
.company-info-links a {
    background-color: #ececec;
    color: #000;
    border: none;
}
.company-info-links a:hover,
.company-info-links li.selected a {
    background-color: var(--magenta);
    color: #fff;
}

/* Form */
.form-wrapper h2 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 20px;
}
.form-wrapper .form-control &gt; .form-check:not(:last-child) {
    margin-bottom: 8px;
}
.form-grey-bg{
    background-color: #E9E9E9;
    padding: 5px 5px;
    border-radius: 10px;
}
.header-section .price-change-container {
    border-radius: 10px;
}
.change-details-form #email_invoice-input{
    margin-bottom: 4px;
}
form,
form label,
form .form-control,
form .form-select {
    font-size: 14px !important;
}
button[name="create_new_address"].dark-gray-20-btn {
    padding: 10px;
}

/* checkout form */
.checkout-form-container .form-check-label {
    display: block;
}
.checkout-form-container .amount_cont {
    float: right;
    display: block;
}

/* banner card */
.banner-card{
    border: 1px solid rgb(0, 0, 0, 0.5);
    border-radius: 10px;
    padding: 20px;
}
.alpha-list {
    list-style-type: none;
    padding: 0;
    display: inline-flex;
    column-gap: 5px;
}
.a-txt{
    color: #ff0004;
}
.srch-main2 #model-search {
    width: 100%;
    padding: 10px 20px;
    border-radius: 30px;
}
.srch-main2 form {
    max-width: 450px;
    margin: 0 auto;
    position: relative;
}
.srch-main2 .srch-icn2 {
    position: absolute;
    right: 10px;
    top: 0px;
    height: 45px;
    width: 45px;
    line-height: 45px;
    cursor: pointer;
}
/* Contact Form */
.contactform .fs-20{
    font-size: 16px;
    line-height: 16px;
}
.form-container,
.checkout-form-container{
    max-width: 640px;
    margin: 0 auto;
}
.social-login-btn-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
.manufacture-list-wrapper .hidden {
    display: none !important;
}
.fs-15{
    font-size: 15px;
}
.fs-16{
    font-size: 16px;
}

.full-view-product .price-info .price_before {
    color: #5e5e5e;
    font-weight: 500;
    font-size: 15px;
}
.add-to-cart-btn{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}
.single-product-item.product-detail-sec .product-description {
    font-size: 15px;
    font-weight: 600;
}
.single-product-item.product-detail-sec .product-description img {
    margin: auto;
    display: inline-block;
    margin-right: 3px;
}
.single-product-header-content &gt; .single-product-price-details {
    width: 20%;
    display: inline-block;
}
.single-product-header-content &gt; .thumbnail {
    width: 35%;
    display: inline-block;
}
.single-product-header-content &gt; .product-description {
    width: 45%;
    display: inline-block;
}
#g_id_signin iframe {
    width: 100% !important;
    margin-right: 0 !important;
    margin-left: 0 !important;
}
.haAclf{
    display: block !important;
}
.manufacture-list-wrapper .lister-section-wrap {
    flex-wrap: wrap;
    flex-direction: row;
    gap: 10px;
}
.product-detail-cost .price_now {
    font-size: 40px;
}
.compatible-products .product-thumnail img {
/*    width: 150px;*/
    max-width: 300px;
    height: auto;
}
.compatible-products.single-product-compatible .full-view-product.product-item .full-view-product-des &gt; ul {
    font-size: 15px;
    font-weight: 600;
}
.compatible-products.single-product-compatible .full-view-product.product-item .full-view-product-footer &gt; div:last-child,
.compatible-products.single-product-compatible .full-view-product.product-item .full-view-product-footer &gt; div:last-child form,
.compatible-products.single-product-compatible .full-view-product.product-item .full-view-product-footer &gt; div:last-child .quantity-field,
.compatible-products.single-product-compatible .full-view-product.product-item .full-view-product-footer &gt; div:last-child button.primary-btn {
    width: 100%;
}
.app-grid-col-4 .product-header {
    height: 200px;
    align-content: center;
    justify-self: center;
    margin-bottom: 15px;
}
/*.compatible-products .full-view-product .price-inc{
    color: inherit;
    font-size: inherit;
}*/
.weekly-offer-product-widget a .thumbnail img {
    width: 100%;
}
#servicepoint-container {
    margin-bottom: 8px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}
#servicepoint-container select {
    display: block;
    width: 100%;
    padding: .375rem 2.25rem .375rem .75rem;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--bs-body-color);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: var(--bs-body-bg);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e"), var(--bs-form-select-bg-icon, none);
    background-repeat: no-repeat;
    background-position: right .75rem center;
    background-size: 16px 12px;
    border: var(--bs-border-width) solid var(--bs-border-color);
    border-radius: var(--bs-border-radius);
    transition: border-color .15sease-in-out, box-shadow .15sease-in-out;
}
#servicepoint-container select:focus {
    border-color: var(--theme-primary-color);
    outline: 0;
    box-shadow: 0 0 0 .25rem rgb(0 174 239 / 10%);
}
.form-check-input[type=radio] {
    border-color: #8d8989;
}
.lister-section-wrap .category-initial {
    min-width: 40px;
}
/* Responsive */
@media screen and (max-width: 1330px) {
    .mypage-links-wrapper.app-grid-col-7,
    .mypage-links-wrapper.app-grid-col-8 {
        grid-template-columns: repeat(4,1fr);
    }
}
@media screen and (max-width: 1270px) {
    .header-nav-section &gt; nav &gt; ul::after {
        content: "";
        flex: auto;
    }
    .product-item button.primary-btn {
        padding: 14px 20px;
    }
    #pb_sel_lister .product-item button.primary-btn {
        padding: 8px;
    }
    .product-item {
        padding: 12px;
    }
    .app-grid-col-5,
    .app-grid-col-7,
    .app-grid-col-8 {
        grid-template-columns: repeat(4,1fr);
    }

    .flex-wrap-product-grid .product-footer {
        flex-wrap: wrap;
        justify-content: center !important;
    }
    .flex-wrap-product-grid .product-footer &gt; p {
        text-align: center;
    }
}
@media screen and (max-width: 1250px) {
    .brands-logo-wrapper img {
        max-width: 60px;
    }
}
@media screen and (max-width: 1150px) {
    .mypage-links-wrapper.app-grid-col-7,
    .mypage-links-wrapper.app-grid-col-8{
        grid-template-columns: repeat(3,1fr);
    }
}
@media screen and (max-width: 1100px) {
    .app-grid-col-4 {
        grid-template-columns: repeat(3,1fr);
    }
    .slider-content .slider-content {
        padding: 24px;
    }
    .slider-content-sub-heading,
    .slider-content-desc,
    .offer-zone-wrapper p {
        font-size: 14px;
    }
    .slider-content-title {
        font-size: 24px;
    }
    .slider-content {
        top: 50px;
        left: 50px;
    }
    .offer-zone-wrapper h2 {
        font-size: 22px;
    }
    .offer-zone-wrapper h3,
    .offer-zone-wrapper a,
    .cart-product-item .fs-18,
    .cart-list-table .fs-20,
    .cart-list-table .fs-4 {
        font-size: 16px !important;
    }
    .single-category-s2-lists {
        grid-template-columns: repeat(2,1fr);
        gap: 16px;
    }
    .office-product-list {
        grid-template-columns: repeat(3,1fr);
    }
    .search-form-controls-wrapper {
        gap: 16px;
    }
    .search-form-controls-wrapper input,
    .search-form-controls-wrapper select {
        width: 260px;
    }
    .cart-product-item {
        flex-direction: column !important;
        align-items: start !important;
    }
}
@media screen and (max-width: 1024px) {
    .single-product-header-content {
        flex-wrap: wrap;
        align-items: center !important;
    }
    .single-product-header-content .single-product-item-image,
    .single-product-header-content .product-description,
    .single-product-price-details &gt; div {
        width: calc(50% - 8px);
    }
    .single-product-header-content .single-product-price-details {
        width: 100%;
        flex-direction: row !important;
    }
    #pb_sel_lister {
        grid-template-columns: repeat(3, 1fr);
    }
    .full-view-product .action-wrapper {
        display: flex;
        flex-wrap: wrap;
        flex-basis: min-content;
    }
    .single-product-compatible .full-view-product {
        flex-wrap: wrap;
    }
    .single-product-compatible .full-view-product .full-view-product-footer {
        flex-direction: row !important;
        width: 100%;
    }
    .compatible-products.single-product-compatible .full-view-product.product-item .full-view-product-footer &gt; div:last-child,
    .compatible-products.single-product-compatible .full-view-product.product-item .full-view-product-footer &gt; div:last-child form,
    .compatible-products.single-product-compatible .full-view-product.product-item .full-view-product-footer &gt; div:last-child .quantity-field {
        width: auto;
    }
}
@media screen and (max-width: 991px) {
    .app-container {
        padding-left: 24px;
        padding-right: 24px;
    }
    .product-item button.primary-btn,
    .quantity-field input,
    div.office-product-sub-head p.mb-0,
    .delivery-address-details .fs-18 {
        font-size: 14px;
    }
    .product-item .product-name,
    .product-item .product-name h3,
    .product-body &gt; div &gt; p,
    .product-description,
    .delivery-address-sec .column-main .fs-20,
    .delivery-address-details .fs-20,
    .secondary-color-table .fs-20,
    table .fs-20,
    .orderComplaints-reason .fs-18,
    .new-order-wrapper .fs-20 {
        font-size: 16px;
    }
    .product-item .product-name h3 {
        font-size: 15px;
    }
    header .site-logo {
        max-width: 140px;
    }
    .header-search-form input,
    .header-search-form button {
        padding: 10px 16px;
    }
    .footer-section {
        padding: 32px 0;
    }
    footer .company-details p{
        font-size: 16px;
        font-weight: 400;
        line-height: 22px;
    }
    .app-grid-1to3,
    .app-grid-1to3.subpage-sidebar {
        grid-template-columns: 260px calc(100% - 282px);
        gap: 22px;
    }
    /* .app-grid-1to3 &gt; div:first-child {
        padding: 8px 6px;
    } */
    .app-grid-1to3 &gt; div:first-child .p-20,
    .all-category-list {
        padding: 12px;
    }
    .helpline-wrapper svg {
        width: 20px;
        height: 20px;
    }
    .app-grid-col-4 {
        column-gap: 16px;
    }
    .app-grid-col-5,
    .app-grid-col-7,
    .app-grid-col-8 {
        grid-template-columns: repeat(3, 1fr);
    }
    .all-brands-banner h2.fs-2 {
        font-size: 24px !important;
    }
    .all-brands-banner .fs-4,
    .all-brands-banner .outine-btn,
    .cart-price-summary .fs-20,
    .cart-price-summary .fs-22,
    .delivery-options .fs-20,
    .delivery-options .fs-22 {
        font-size: 18px !important;
    }
    .brands-logo-wrapper img {
        max-width: 50px;
    }
    .slider-content-sub-heading,
    .slider-content-desc {
        font-size: 12px;
    }
    .slider-content .slider-content-title {
        font-size: 22px;
    }
    .slider-content .primary-btn {
        font-size: 14px;
        border-radius: 8px;
    }
    .slider-content {
        max-width: 330px;
        padding: 20px;
    }
    .hero-slider .owl-dots {
        bottom: 0;
    }
    .offer-zone-wrapper img {
        max-width: 200px;
    }
    .offer-zone-wrapper div.gap-10 {
        gap: 6px;
    }
    /*.category-sec .app-grid-col-5 .category-item {
        display: none;
    }
    .category-sec .app-grid-col-5 .category-item:nth-child(-n+6) {
        display: block;
    }*/
    .product-img {
        max-width: 200px;
        /*height: fit-content;*/
    }
    .login-form .link-wrapper .primary-btn,
    .login-form .link-wrapper .secondary-btn-outline,
    .login-form .link-wrapper .primary-btn-outline {
        padding: 12px 19px;
        font-size: 15px;
        width: auto;
    }
    .delivery-address-sec .dark-gray-20-btn {
        padding: 10px;
    }
    .w-lg-full {
        width: 100%;
    }
    .cart-price-summary .fs-30 {
        font-size: 20px;
    }
    #pb_sel_lister,
    #productTabContent .product-link-list {
        grid-template-columns: repeat(2, 1fr);
    }
    .delivery-options {
        padding: 0 !important;
    }
    .cart-summary .delivery-options-wrapper &gt; .border-opacity-50.border,
    .cart-summary .cart-price-summary {
        padding: 10px !important;
    }
    .cart-summary h2.fs-5 {
        font-size: 18px !important;
    }
    .cart-summary .fs-6,
    .cart-summary p,
    .order_summary {
        font-size: 14px !important;
    }
    .order_summary h2.fs-5 {
        font-size: 16px !important;
    }
    .cart-list-table table{
/*        width: 50%;*/
        overflow: hidden;
    }
    .cart-list-table thead th{
        padding: 3px;
        font-size: 12px;
    }
    .cart-list-table .table-cell-10 td.fs-6, 
    .cart-list-table .table-cell-10 td a {
        font-size: 12px !important;
    }
    .cart-list-table .cart-product-img {
        display: none;
    }
    .cart-list-table .quantity-field input {
        font-size: 12px !important;
        width: 100%;
        margin: 0;
    }
    .cart-list-table .quantity-field .btn svg {
        width: 12px;
        height: 12px;
    }
    .cart-list-table .update_cart_delete_row {
        width: 12px;
    }
    .cart-list-table svg {
        height: 12px;
        width: 12px;
    }
    .cart-list-table .product-title {
        /*max-width: 40px;
        width: 100%;*/
        word-break: break-word;
    }
    .cart-list-table table.table-cell-10 td,
    .cart-list-table table.table-cell-10 th{
        padding: 6px;
    }
    .cart-list-table .quantity-field .btn{
        padding: 0px;
    }
    .cart-list-table .quantity-field {
        display: block !important;
    }
    .cart-list-table .cart-product-item {
        min-width: 80px;
        max-width: 185px;
    }
    .cart-summary .cart-price-summary .fs-6,
    .cart-summary .delivery-options .fs-6{
        font-size: 12px !important;
    }
}
@media screen and (min-width: 992px) and (max-width: 1024px){
    .single-product-price-details &gt; div {
        display: flex !important;
        flex-direction: row !important;
        width: 100%;
    }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
    .trust-pilot-btn {
        padding: 8px;
    }
    .helpline-wrapper h2 {
        font-size: 16px;
    }
    .online-review-wrapper .site-name {
        font-size: 14px;
        line-height: 34px;
    }
    .online-review-wrapper img {
        width: 18px;
        height: 18px;
    }
    .helpline-wrapper p,
    .helpline-wrapper a,
    .online-review-wrapper .ratings,
    .online-review-wrapper a,
    .all-category-lists a {
        font-size: 14px;
    }
    .category-initial {
        min-width:50px;
        height:50px;
    }
    .helpline-wrapper h2,
    .helpline-wrapper p,
    .helpline-wrapper a,
    .online-review-wrapper .ratings,
    .online-review-wrapper a {
        line-height: 24px;
    }
    .single-product-price-details &gt; div{
        width: calc(80% - 8px);
        margin: 0 auto;
        text-align: center;
    }
    .manufacture-list-wrapper .col-list-item{
        column-count: 2;
    }
}
@media screen and (min-width: 768px) and (max-width: 1100px) {
    .header-search-form{
        max-width: 385px;
    }
    .header-section .site-logo{
        max-width: 200px;
    }
}
@media screen and (max-width: 880px) {
    .mypage-links-wrapper.app-grid-col-7,
    .mypage-links-wrapper.app-grid-col-8 {
        grid-template-columns: repeat(2,1fr);
    }
}
@media screen and (max-width: 800px) {
    .slider-content .slider-content-title {
        font-size: 22px;
    }
    .slider-content .primary-btn {
        padding: 12px 18px;
    }
    .slider-content {
        top: 20px;
        left: 20px;
    }
    .offer-zone-wrapper img {
        max-width: 185px;
    }
    .flex-wrap-product-grid,
    .office-product-list {
        grid-template-columns: repeat(2, 1fr);
    }
    .order-link.primary-btn-outline {
        padding: 12px 16px;
        font-size: 14px;
    }
}
@media screen and (max-width: 767px) {
    .app-container {
        padding-left: 16px;
        padding-right: 16px;
    }
    .header-cart-wrapper {
        margin: 0;
    }
    .header-cart-wrapper nav.navbar {
        margin-left: 18px;
    }
    header .py-20 {
        padding-top: 16px;
        padding-bottom: 16px;
    }
    .header-search-form input,
    .header-search-form button {
        padding: 8px 12px;
    }
    .footer-nav {
        margin-top: 20px;
        gap: 10px;
    }
    footer .company-details {
        padding: 20px 0 0 0;
    }
    .app-grid-1to3,
    .app-grid-1to3.subpage-sidebar {
        grid-template-columns: 100%;
        gap: 12px;
    }
    /* .app-grid-1to3 &gt; div:first-child {
        padding: 10px;
    } */
    .helpline-wrapper h2,
    .helpline-wrapper p,
    .helpline-wrapper a {
        line-height: 30px;
    }
    .helpline-wrapper p,
    .helpline-wrapper a {
        font-size: 18px;
    }
    .helpline-wrapper svg {
        width: 24px;
        height: 24px;
    }
    .app-grid-col-4,
    .app-grid-col-5,
    .app-grid-col-7,
    .app-grid-col-8 {
        grid-template-columns: repeat(2,1fr);
        gap: 16px;
    }
    .category-item h3,
    .product-description-wrapper li .nav-link,
    #productTabContent .fs-20,
    #productTabContent .fs-18 {
        font-size: 16px !important;
    }
    .category-item img {
        height: auto;
    }
    .category-item &gt; div:last-child {
        padding: 16px 0;
    }
    .outline-btn-icon,
    .promotional-products-sec .outline-btn-icon {
        font-size: 14px;
        padding: 10px 12px;
    }
    .hero-sec .app-grid-1to3 &gt; div:first-child {
        order: 2;
    }
    .product-item .category-name {
        font-size: 10px;
    }
    .breadcrumb-section nav{
        padding: 10px 15px;
    }
    .breadcrumb-section a,
    .breadcrumb-section span  {
        font-size: 14px;
    }
    .search-form-controls-wrapper input,
    .search-form-controls-wrapper select {
        width: 300px;
    }
    .row &gt; label.col-12 {
        padding-left: 0;
        padding-right: 0;
    }
    /*.header-section .offcanvas.offcanvas-end{
        right: 95px;
    }*/
    .header-section .app-container &gt; .header-search-form{
        margin-bottom: 10px;
    }
    form .row-gap-2 {
        row-gap: .2rem !important;
    }
    .full-view-product .product-thumnail img {
        max-width: 100px;
    }
    .single-product-price-details &gt; div{
        width: calc(80% - 8px);
        margin: 0 auto;
        text-align: center;
    }
    .full-view-product .price-info .fs-20 {
        font-size: 18px !important;
    }
    .manufacture-list-wrapper .col-list-item{
        column-count: 1;
    }
    .social-login-btn-wrapper{
        display: block;
    }
    .social-login-btn-wrapper #g_id_signin{
        margin-top: 5px;
    }
    .social-login-btn-wrapper .social-login-facebook-btn{
        max-width: 230px;
        margin-left: 10px;
    }
    .single-product-header-content &gt; .thumbnail {
        width: 100%;
        display: block;
        margin-bottom: 15px;
    }
    .full-view-product .product_campaign{
        max-width: 100%;
    }
    .app-grid-col-4 .product-header{
        height: 130px;
    }
    .login-form .link-wrapper .primary-btn {
        align-self: stretch;
    }
    #g_id_signin iframe {
        max-width: 230px;
        width: 199px !important;
        margin: 0 auto !important;
    }
    .social-login-btn-wrapper .social-login-facebook-btn {
        margin: 0 auto;
    }
    #servicepoint-container {
        flex-wrap: wrap;
    }
}
@media screen and (max-width: 575px) {
    .offer-zone-wrapper img {
        max-width: 242px;
        margin: 0 auto 10px auto;
        display: block;
    }
    .quantity-field {
        width: 100%;
        margin: auto;
        justify-content: space-between !important;
    }
    .quantity-field .btn {
        padding: 14px;
    }
    .quantity-field input {
        margin: 3px;
        max-width: 55px;
    }
    .slider-content {
        top: 28px;
    }
    .single-category-s2-lists {
        grid-template-columns: repeat(1, 1fr);
    }
    .computer-product-lists,
    .product-sub-category-list,
    .cart-price-summary {
        padding: 10px !important;
    }
    .office-product-list {
        gap: 10px !important;
    }
    .full-view-product img {
        max-width: 130px;
    }
    .full-view-product .fs-20,
    .cart-product-item .fs-18,
    .cart-list-table .fs-20,
    .cart-list-table .fs-4 {
        font-size: 14px !important;
    }
    .full-view-product .full-view-product-des li,
    .order-link.primary-btn-outline,
    .fs-mobile-12 {
        font-size: 12px;
    }
    .order-link.primary-btn-outline {
        line-height: 16px;
    }
    .warning-info p,
    .error,.error p,
    .warning-danger p {
        font-size: 14px;
    }
    .cart-price-summary .fs-20,
    .cart-price-summary .fs-22,
    .delivery-options .fs-20,
    .delivery-options .fs-22 {
        font-size: 16px !important;
    }
    .cart-price-summary .fs-30 {
        font-size: 18px;
    }
    .product-description-wrapper li .nav-link {
        padding: 12px;
    }
    .login-form .link-wrapper .primary-btn-outline {
        flex: 1 1 100%;
    }
    .login-form .link-wrapper .primary-btn,
    .login-form .link-wrapper .secondary-btn-outline {
        flex: 1 1 48%;
    }
    .delivery-options {
        padding: 0;
    }
    .w-md-full {
        width: 100%;
    }
    .shopping-cart-btns a {
        padding: 14px 10px;
    }
    .single-product-header-content {
        align-items: start !important;
    }
    .single-product-header-content .single-product-item-image,
    .single-product-header-content .product-description,
    #productTab li,
    #productTab li button{
        width: 100%;
    }
    .single-product-header-content img {
        display: block;
        margin: 0 auto;
    }
    .single-product-header-content .single-product-price-details {
        flex-direction: column !important;
    }
    .single-product-price-details &gt; div,
    .single-product-price-details .product-detail-cost,
    .full-view-product.product-item .primary-btn {
        width: 100%;
    }
    #productTabContent .product-link-list {
        grid-template-columns: 1fr;
    }
    .header-cart-wrapper {
        margin-right: 0;
    }
    .compatible-products.single-product-compatible .full-view-product.product-item .full-view-product-footer &gt; div:last-child .quantity-field,
    .compatible-products.single-product-compatible .full-view-product.product-item .full-view-product-footer &gt; div:last-child button.primary-btn {
        width: auto;
        margin: 0;
        align-self: stretch;
    }
    .compatible-products.single-product-compatible .full-view-product .full-view-product-footer {
        flex-direction: column !important;
    }
    .compatible-products.single-product-compatible .product-detail-cost {
        width: 100%;
        text-align: center;
        padding: 20px;
    }
    .compatible-products.single-product-compatible .full-view-product.product-item .full-view-product-footer &gt; div:last-child {
        width: 100%;
    }
    .compatible-products.single-product-compatible .full-view-product.product-item .full-view-product-footer &gt; div:last-child form {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr);
        width: 100%;
    }
}
@media screen and (max-width: 410px) {
    .slider-content {
        padding: 16px;
        border-radius: 12px;
        max-width: 285px;
    }
    div.office-product-sub-head p.mb-0 {
        font-size: 12px;
    }
    .mypage-links {
        padding: 8px;
    }
    .mypage-links img {
        max-width: 100px;
    }
    .mypage-links p {
        font-size: 15px;
    }
    #pb_sel_lister {
        grid-template-columns: 1fr;
    }
    .compatible-products.single-product-compatible .full-view-product.product-item .quantity-field .btn{
        padding: 10px;
    }
}
@media screen and (max-width: 359px) {
    .mypage-links img {
        max-width: 80px;
    }
    .mypage-links p {
        font-size: 14px;
    }
    .search-form-controls-wrapper input, .search-form-controls-wrapper select {
        max-width: 280px;
    }
    .full-view-product img {
        max-width: 110px;
    }
}
/*  SLIDESHOW  */
.slider-img {
    height: 100%;
    width: 100%;
}
.mySlides {
    display: none;
    height: 100%;
}
.mySlides.show{
    display: block;
}
img {vertical-align: middle;}
.slideshow-container {
    max-width: 1000px;
    width: 100%;
    position: relative;
    margin: auto;
    height: 190px;
    padding: 0;
}
.fade {
    -webkit-animation-name: fade;
    -webkit-animation-duration: 1.5s;
    animation-name: fade;
    animation-duration: 1.5s;
}
@-webkit-keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}
@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

.qty-spinner {
  display: inline-block;
  vertical-align: middle;
  margin-left: 4px;
  width: 16px;
  height: 16px;
  border: 2px solid #ccc;
  border-top: 2px solid #3498db;
  border-radius: 50%;
  animation: qty-spin 0.7s linear infinite;
}
@keyframes qty-spin {
  0% { transform: rotate(0deg);}
  100% { transform: rotate(360deg);}
}

@media (max-width: 576px){
    .home-slider{
        display: none;
    }
}
</pre></body></html>