body {
    margin: 0;
    font-size: 14px;
    font-family: Arial /*'Maven Pro', sans-serif*/;
    font-weight: 500;
}
/* Ensure box-sizing for all elements */
*,
*::before,
*::after {
    box-sizing: border-box;
}

.icon-container {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 30px; /* Adjust size as needed */
    height: 30px; /* Adjust size as needed */
    background-color: #008a3a;
    color: white;
    border-radius: 10px; /* Adjust radius as needed */
}
/* Custom dropdown styling */
.custom-dropdown {
    width: 100%;
    border-radius: 4px;
    background-color: #fff;
}

    /* Style each option */
    .custom-dropdown option {
        padding: 10px; /* Ensure padding for options */
        border-bottom: 1px solid #eee; /* Border between options */
    }

        /* Remove border for the last option */
        .custom-dropdown option:last-child {
            border-bottom: none;
        }

    /* Focus state for better UX */
    .custom-dropdown:focus {
        border-color: #66afe9;
        outline: 0;
        box-shadow: 0 0 8px rgba(102, 175, 233, 0.6);
    }

.on-sale-label {
    background-color: red;
    color: white;
    padding: 0 5px;
    font-size: 11px;
    width: 55px;
    display: inline-block;
    margin-top: 5px; /* Adjust this to position the label properly */
}

.on-sale-label-product {
    background-color: red;
    color: white;
    padding: 0 5px;
    font-size: 11px;
    width: 55px;
    display: inline-block;
    margin-top: 5px; /* Adjust this to position the label properly */
}

#price-now, #price-now2 {
    position: relative; /* Ensure the label is positioned within this div */
}


/* Body content styles */
.category-content {
    max-width: 860px;
    font-size: 15px;
    line-height: 1.7;
    color: #333
}

    .category-content h1 {
        font-size: 20px;
        color: #1A3A8C;
        margin: 24px 0 10px;
        padding-bottom: 6px;
        border-bottom: 2px solid #e8edf8
    }

    .category-content h2 {
        font-size: 20px;
        color: #1A3A8C;
        margin: 24px 0 10px;
        padding-bottom: 6px;
        border-bottom: 2px solid #e8edf8
    }

    .category-content p {
        margin: 0 0 14px;
        font-size: 15px;
        line-height: 1.7;
        color: #333
    }

    .category-content a {
        color: #2E5FA3;
        text-decoration: none;
        font-weight: 500
    }

        .category-content a:hover {
            text-decoration: underline
        }

    .category-content ul {
        margin: 0 0 14px;
        padding-left: 20px
    }

    .category-content li {
        margin-bottom: 6px
    }

/* Brand links as pill buttons */
.brand-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 12px 0 20px
}

    .brand-links a {
        background: #e8edf8;
        padding: 6px 12px;
        border-radius: 4px;
        font-size: 13px;
        color: #1A3A8C;
        font-weight: 600;
        text-decoration: none
    }

        .brand-links a:hover {
            background: #d8e2f5
        }
#faq {
    background: #f8f9ff;
    border-left: 4px solid #1A3A8C;
    padding: 20px 24px;
    border-radius: 0 8px 8px 0;
    margin-top: 20px 
}

    #faq h2 {
        font-size: 20px;
        color: #1A3A8C;
        margin: 0 0 10px;
        padding-bottom: 6px;
        border: none
    }

    #faq h3 {
        font-size: 16px;
        color: #222;
        margin: 18px 0 6px
    }

    #faq p {
        margin: 0 0 14px;
        font-size: 15px;
        line-height: 1.7;
        color: #333
    }

    #faq a {
        color: #2E5FA3;
        text-decoration: none;
        font-weight: 500
    }

        #faq a:hover {
            text-decoration: underline
        }

.review-banner {
    background: url('/App_Themes/Images/Banners/review_header.jpg');
    width: 100%;
    height: 300px;
    color: #fff;
}

.review-banner-text {
    padding: 0 30px;
    font-size: 20px;
    width: 100%;
}

/* Mobile */
@media (max-width: 768px) {
    .review-banner {
        height: 300px; /* adjust as needed */
    }

    .review-banner-text {
        font-size: 16px;
    }
}

.on-sale-label {
    position: absolute;
    top: 0;
    right: 0;
    transform: translate(-20%, 0%);
}

.on-sale-label-product {
    position: absolute;
    transform: translate(-100%, 0%);
}

.switch {
    position: relative;
    display: inline-block;
    width: 30px;
    height: 14px;
}

    /* Hide default HTML checkbox */
    .switch input {
        display: none;
    }

/* The slider */
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #f89e28;
    -webkit-transition: .4s;
    transition: .4s;
}

    .slider:before {
        position: absolute;
        content: "";
        height: 13px;
        width: 13px;
        left: 2px;
        bottom: 1px;
        background-color: white;
        -webkit-transition: .4s;
        transition: .4s;
    }

input:checked + .slider {
    background-color: #f89e28;
}

input:focus + .slider {
    box-shadow: 0 0 1px #f89e28;
}

input:checked + .slider:before {
    -webkit-transform: translateX(16px);
    -ms-transform: translateX(16px);
    transform: translateX(16px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

    .slider.round:before {
        border-radius: 50%;
    }

.toggle-container {
    display: inline-flex;
    align-items: center;
}

.toggle-label {
    margin: 0 5px; /* Adjust the margin as needed */
}

.arrow-left, .arrow-right {
    position: absolute;
    top: 30%;
    transform: translateY(-50%);
    font-size: 24px;
    color: black;
    background-color: rgba(255, 255, 255, 0.7);
    width: 40px; /* Adjust size as needed */
    height: 40px; /* Adjust size as needed */
    border-radius: 50%; /* Make it circular */
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    user-select: none;
    z-index: 2;
    border: 1px solid #e3e9ef; /* Optional: add some shadow for better visibility */
}

.arrow-left {
    left: 10px;
}

.arrow-right {
    right: 10px;
}

#___ratingbadge_0 {
    z-index: 900 !important;
}


article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
    display: block
}

a {
    text-decoration: none
}

    a:hover {
        text-decoration: underline;
    }

/*a {
    background-color: transparent;
    color: #337ab7;
    text-decoration: none
}

    a:active, a:hover, a:focus {
        outline: 0;
        color: #23527c;
        text-decoration: underline
    }*/

b, strong {
    font-weight: 700
}

h1 {
    margin: .67em 0;
    font-size: 2emh
}

img {
    border: 0
}

/* vietnamese */
@font-face {
    font-family: 'Maven Pro';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/mavenpro/v33/7Au9p_AqnyWWAxW2Wk3GwmQIAFg.woff2) format('woff2');
    unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
    font-family: 'Maven Pro';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/mavenpro/v33/7Au9p_AqnyWWAxW2Wk3Gw2QIAFg.woff2) format('woff2');
    unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
    font-family: 'Maven Pro';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/mavenpro/v33/7Au9p_AqnyWWAxW2Wk3GzWQI.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* vietnamese */
@font-face {
    font-family: 'Maven Pro';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/mavenpro/v33/7Au9p_AqnyWWAxW2Wk3GwmQIAFg.woff2) format('woff2');
    unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
    font-family: 'Maven Pro';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/mavenpro/v33/7Au9p_AqnyWWAxW2Wk3Gw2QIAFg.woff2) format('woff2');
    unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
    font-family: 'Maven Pro';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/mavenpro/v33/7Au9p_AqnyWWAxW2Wk3GzWQI.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}



svg:not(:root) {
    overflow: hidden
}

hr {
    height: 0;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box
}

button, input, optgroup, select, textarea {
    margin: 0;
    font: inherit;
    color: inherit
}

button {
    overflow: visible
}

button, select {
    text-transform: none
}

button, html input[type=button], input[type=reset], input[type=submit] {
    -webkit-appearance: button;
    cursor: pointer
}

input {
    line-height: normal
}

table {
    border-spacing: 0;
    border-collapse: collapse
}

td, th {
    padding: 0
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

/*html {
    font-size: 12px;
    -webkit-tap-highlight-color: rgba(0,0,0,0)
}*/

.form-select {
    font-size: 14px;
}

/*#navbar-main {
    font-family: Arial;
}*/

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit
}

#mainMenuBar {
    margin: auto;
    left: 0;
    right: 0;
    z-index: 700;
    background-color: #f7f7f9;
}

img {
    vertical-align: middle
}

hr {
    border: 0;
    opacity: 0.05;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    font-family: inherit;
    font-weight: 500;
    line-height: 1.1;
    color: inherit
}

/*.h1, .h2, .h3, h1, h2, h3 {
    margin-top: 20px;
    margin-bottom: 10px
}*/

.h1, h1 {
    font-size: 36px
}

.text-left {
    text-align: left
}

.text-right {
    text-align: right
}

ol, ul {
    margin-top: 0;
    margin-bottom: 10px
}

.container {
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto
}

#header #top
/*, #utility-header #utility-top*/ {
    border-bottom: 1px solid #ccc;
    background-color: #2f3035;
}

    #header #top #topinner
    /*, #utility-header #utility-top #utility-topinner*/ {
        width: 1100px;
        margin: 0 auto;
        font-size: 12px;
        /*font-weight: 700;*/
        height: 27px;
        line-height: 27px;
        vertical-align: middle;
        color: #fff;
    }

        #header #top #topinner div:first-child,
        #utility-header #utility-top #utility-topinner div:first-child {
            float: left;
        }

        #header #top #topinner div:last-child,
        #utility-header #utility-top #utility-topinner div:last-child {
            float: right;
        }

        #header #top #topinner a {
            font-size: 12px !important;
        }

#header #main, #header-navigation-top {
    width: 1100px;
    margin: 0 auto;
}

    #header #main .main-inner {
        height: 80px;
    }

    /*#utility-header #utility-main {
    width: 1100px;
    margin: 5px auto;
}*/

    #header #main a
    /*,#utility-header #utility-main a*/ {
        color: #000;
    }


/*#utility-header #utility-main #utility-logo {
        padding-top: 5px;
        width: 28%;
        float: left;
        height: 68px;
        line-height: 68px;
    }*/

.inner-addon {
    position: relative;
}

    .inner-addon .fa {
        position: absolute;
        padding: 10px;
        pointer-events: none;
    }

.left-addon .fa {
    left: 0;
}

/*.right-addon .fa {
    right: 0;
}*/

.left-addon input {
    padding: 7px 30px;
}

/*.right-addon input {
    padding-right: 30px;
}*/

/*#header #main #search input[type="text"],*/
#header #main input[type="text"]
/*,#utility-header #utility-main #utility-search input[type="text"]*/ {
    border: 2px solid #ff8300;
    /*width: 290px;*/
    padding: 7px 30px;
    font-size: 14px;
    vertical-align: middle;
}

#header #main #search div div div:first-child
/*,#utility-header #utility-main #utility-search div div div:first-child*/ {
    padding-right: 5px;
}

#header #main #search div div div:last-child {
    padding-right: 10px;
}

/*#header #main #login {
    float: left;
    width: 18%;
    text-align: center;
    padding-top: 30px;
}*/

/*#utility-header #utility-main #utility-login {
    float: left;
    text-align: center;
    padding-top: 10px;
    width: 18%;
}*/

#header #main #basket, #header #main #reorder {
    padding: 10px;
}

    /*#utility-header #utility-main #utility-basket {
    padding-top: 15px;
}*/

    #header #main #basket #basket-inner
    /*,#utility-header #utility-main #utility-basket #utility-basket-inner*/ {
        margin: 0 auto;
    }

    #header #main #basket .basket-details {
        display: none;
        position: absolute;
        width: 500px;
        padding: 0 10px 10px 10px;
        border: 1px solid #0e86c8;
        background-color: #fff;
        margin-top: 15px;
        margin-left: -390px;
        z-index: 20;
        font-weight: 400;
        border-width: 1px;
        height: auto;
        line-height: normal;
        z-index: 110;
    }

/*#utility-header #utility-main #utility-basket .utility-basket-details {
    display: none;
    position: absolute;
    width: 500px;
    padding: 0 10px 10px 10px;
    border: 1px solid #0e86c8;
    background-color: #fff;
    margin-top: 10px;
    margin-left: -390px;
    z-index: 20;
}*/

.stick {
    position: fixed;
    top: 0;
    background-color: #fff;
    border-bottom: 1px solid #cecece;
}

#navigation {
    font-family: Arial,Helvetica,sans-serif;
    background-color: #eff0f3;
    height: 36px;
    z-index: 100;
    position: relative;
}


/*#navigation-inner {
    width: 1100px;
    margin: 0 auto;
    font-weight: 700;
    z-index: 50;
    font-size: 13px;
}

    #navigation-inner ul {
        list-style: none;
        margin: 0;
        padding: 0;
    }

        #navigation-inner ul a {
            display: block;
            text-decoration: none;
            padding: 10px 0;
            cursor: default;
            color: #00537d;
            cursor: pointer;
        }

        #navigation-inner ul li {
            float: left;
            border-right: 2px solid #fff;
            width: 135px;
            height: 36px;
        }

            #navigation-inner ul li:last-child {
                border-right: 0;
                width: 141px;
                height: 36px;
            }

            #navigation-inner ul li .menu-item {
                visibility: hidden;
                position: absolute;
                font-weight: 400;
                border-width: 1px;
                opacity: 0;
                transition: opacity 0.3s linear;
            }*/

#cartridgeInkBrands .menu-item {
    margin-left: -137px;
}

#cartridgeTonerBrands .menu-item {
    margin-left: -274px;
    display: block;
}

#printerTypes .menu-item {
    margin-left: -548px;
}

#officesuppliesTypes .menu-item {
    margin-left: -685px;
}

/*#navigation-inner ul li .container {
    background: #fff;
    position: absolute;
    top: 0;
    width: 1068px;
    text-align: left;
    height: 344px;
    z-index: 50;
    padding: 0;
}

    #navigation-inner ul li .container a {
        padding: 0;
    }

#navigation-inner ul #fr {
    width: 155px;
}

#navigation-inner ul li #brands,
#navigation-inner ul li #inkbrands,
#navigation-inner ul li #tonerbrands,
#navigation-inner ul li #labelbrands,
#navigation-inner ul li #printers,
#navigation-inner ul li #papers,
#navigation-inner ul li #officesupplies {
    border: 1px solid #0e86c8;
    height: 344px;
}

    #navigation-inner ul li #brands #brands-inner,
    #navigation-inner ul li #inkbrands #inkbrands-inner,
    #navigation-inner ul li #tonerbrands #tonerbrands-inner,
    #navigation-inner ul li #labelbrands #labelbrands-inner,
    #navigation-inner ul li #printers-inner,
    #navigation-inner ul li #papers-inner,
    #navigation-inner ul li #officesupplies-inner {
        padding: 20px;
    }

#navigation-inner ul li #findcartridges,
#navigation-inner ul li #findinkcartridges,
#navigation-inner ul li #findtonercartridges {
    background-color: #0e86c8;
    height: 344px;
}

    #navigation-inner ul li #findcartridges #findcartridges-inner,
    #navigation-inner ul li #findinkcartridges #findinkcartridges-inner,
    #navigation-inner ul li #findtonercartridges #findtonercartridges-inner {
        padding: 60px 10px;
        text-align: center;
        font-weight: 700;
        font-size: 24px;
        color: #fff;
    }

        #navigation-inner ul li #findcartridges #findcartridges-inner .dropdown,
        #navigation-inner ul li #findinkcartridges #findinkcartridges-inner .dropdown,
        #navigation-inner ul li #findtonercartridges #findtonercartridges-inner .dropdown {
            font-size: 12px;
            height: 35px;
            line-height: 35px;
            width: 100%;
            color: #000;
            font-weight: 400;
        }

#navigation-inner li:hover .menu-item,
#navigation-inner li:focus .menu-item,
#navigation-inner li.sfhover .menu-item {
    opacity: 1;
    visibility: visible;
}

#navigation-inner li:hover,
#navigation-inner li.sfhover {
    color: #fff;
    background-color: #0e86c8;
}

    #navigation-inner li:hover > .menulink {
        color: #fff;
        opacity: 1;
    }*/

.pointer {
    background-color: #fff;
    border: 1px solid #0e86c8;
    border-bottom: 0;
    border-right: 0;
    width: 20px;
    height: 20px;
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    position: relative;
    z-index: 100;
    top: -9px;
}

#cartridgeBrands .pointer {
    left: 60px;
}

#cartridgeInkBrands .pointer {
    left: 180px;
}

#cartridgeTonerBrands .pointer {
    left: 320px;
}

#printerTypes .pointer {
    left: 600px;
}

#officesuppliesTypes .pointer {
    left: 740px;
}

.basket-details .pointer
/*,.utility-basket-details .pointer*/ {
    left: 440px;
    top: -12px;
}

#basket-details {
    background-color: #E7ECF0;
    text-align: center;
    width: 188px;
    height: 60px;
}

.menulink {
    color: #fff;
    opacity: 1;
}

    .menulink:hover {
        color: #fff;
        opacity: 1;
    }



.emailsubscribebutton {
    background: -webkit-gradient( linear, left top, left bottom, color-stop(0.05, #22B573), color-stop(1, #01A55A) );
    background: -moz-linear-gradient( center top, #22B573 5%, #01A55A 100% );
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#22B573', endColorstr='#01A55A');
    background-color: #22B573;
    -webkit-border-top-left-radius: 5px;
    -moz-border-radius-topleft: 5px;
    border-top-left-radius: 5px;
    -webkit-border-top-right-radius: 5px;
    -moz-border-radius-topright: 5px;
    border-top-right-radius: 5px;
    -webkit-border-bottom-right-radius: 5px;
    -moz-border-radius-bottomright: 5px;
    border-bottom-right-radius: 5px;
    -webkit-border-bottom-left-radius: 5px;
    -moz-border-radius-bottomleft: 5px;
    border-bottom-left-radius: 5px;
    text-indent: 0;
    border: 1px solid #01A55A;
    display: inline-block;
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    font-style: normal;
    height: 32px;
    line-height: 32px;
    width: 120px;
    text-decoration: none;
    text-align: center;
}

    .emailsubscribebutton:hover {
        background: -webkit-gradient( linear, left top, left bottom, color-stop(0.05, #01A55A), color-stop(1, #22B573) );
        background: -moz-linear-gradient( center top, #01A55A 5%, #22B573 100% );
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#01A55A', endColorstr='#22B573');
        background-color: #01A55A;
    }

    .emailsubscribebutton:active {
        position: relative;
        top: 1px;
    }


.whitebutton {
    background: -webkit-gradient( linear, left top, left bottom, color-stop(0.05, #E9E9E9), color-stop(1, #FAFAFA) );
    background: -moz-linear-gradient( center top, #E9E9E9 5%, #FAFAFA 100% );
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#E9E9E9', endColorstr='#FAFAFA');
    background-color: #E9E9E9;
    -webkit-border-top-left-radius: 5px;
    -moz-border-radius-topleft: 5px;
    border-top-left-radius: 5px;
    -webkit-border-top-right-radius: 5px;
    -moz-border-radius-topright: 5px;
    border-top-right-radius: 5px;
    -webkit-border-bottom-right-radius: 5px;
    -moz-border-radius-bottomright: 5px;
    border-bottom-right-radius: 5px;
    -webkit-border-bottom-left-radius: 5px;
    -moz-border-radius-bottomleft: 5px;
    border-bottom-left-radius: 5px;
    text-indent: 0;
    border: 1px solid #FAFAFA;
    display: inline-block;
    color: #888888;
    font-size: 17px;
    font-weight: 700;
    font-style: normal;
    height: 32px;
    line-height: 32px;
    width: 120px;
    text-decoration: none;
    text-align: center;
}

    .whitebutton:hover {
        background: -webkit-gradient( linear, left top, left bottom, color-stop(0.05, #FAFAFA), color-stop(1, #E9E9E9) );
        background: -moz-linear-gradient( center top, #FAFAFA 5%, #E9E9E9 100% );
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FAFAFA', endColorstr='#E9E9E9');
        background-color: #FAFAFA;
    }

    .whitebutton:active {
        position: relative;
        top: 1px;
    }

.overlay-widget {
    position: fixed;
    top: calc(100% - 350px);
    right: 0px;
    z-index: 1000;
}

.mainPhotoProductPage {
    min-height: 128px
}

.mainPhotoProductPage2 {
    min-height: 300px
}

.image-center-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%; /* Make sure the container takes up the full height */
}

.image-center-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.short-image, .full-image {
    cursor: pointer;
}

.short-image {
    display: none;
    position: relative;
}

.bloglink {
    background-color: #fff;
    -webkit-border-top-left-radius: 5px;
    -moz-border-radius-topleft: 5px;
    border-top-left-radius: 5px;
    -webkit-border-top-right-radius: 5px;
    -moz-border-radius-topright: 5px;
    border-top-right-radius: 5px;
    -webkit-border-bottom-right-radius: 5px;
    -moz-border-radius-bottomright: 5px;
    border-bottom-right-radius: 5px;
    -webkit-border-bottom-left-radius: 5px;
    -moz-border-radius-bottomleft: 5px;
    border-bottom-left-radius: 5px;
    text-indent: 0;
    border: 1px solid #FF8300;
    display: inline-block;
    font-size: 17px;
    font-weight: 700;
    font-style: normal;
    height: 32px;
    line-height: 32px;
    width: 180px;
    text-decoration: none;
    text-align: center;
}

.editbasketbutton {
    background: -webkit-gradient( linear, left top, left bottom, color-stop(0.05, #eff0f4), color-stop(1, #cfd2e0) );
    background: -moz-linear-gradient( center top, #eff0f4 5%, #cfd2e0 100% );
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eff0f4', endColorstr='#cfd2e0');
    background-color: #eff0f4;
    -webkit-border-top-left-radius: 5px;
    -moz-border-radius-topleft: 5px;
    border-top-left-radius: 5px;
    -webkit-border-top-right-radius: 5px;
    -moz-border-radius-topright: 5px;
    border-top-right-radius: 5px;
    -webkit-border-bottom-right-radius: 5px;
    -moz-border-radius-bottomright: 5px;
    border-bottom-right-radius: 5px;
    -webkit-border-bottom-left-radius: 5px;
    -moz-border-radius-bottomleft: 5px;
    border-bottom-left-radius: 5px;
    text-indent: 0;
    border: 1px solid #cfd2e0;
    display: inline-block;
    color: #000;
    font-size: 12px;
    font-weight: 700;
    font-style: normal;
    height: 32px;
    line-height: 32px;
    width: 80px;
    text-decoration: none;
    text-align: center;
}

    .editbasketbutton:hover {
        background: -webkit-gradient( linear, left top, left bottom, color-stop(0.05, #cfd2e0), color-stop(1, #eff0f4) );
        background: -moz-linear-gradient( center top, #cfd2e0 5%, #eff0f4 100% );
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#cfd2e0', endColorstr='#eff0f4');
        background-color: #cfd2e0;
    }

    .editbasketbutton:active {
        position: relative;
        top: 1px;
    }


#printercatridge-finder-inner {
    width: 1100px;
    margin: 0 auto;
}

    #printercatridge-finder-inner #banners {
        min-height: 143px;
        padding: 10px;
    }

    #printercatridge-finder-inner #finders {
        padding: 10px 10px 0 10px;
    }

        #printercatridge-finder-inner #finders .finders-inner {
            /*border-radius: 5px;*/
            /*background: #000;*/
            padding: 15px 20px;
        }

/*#printercatridge-finder-inner #finders #finders-inner .dropdown {
                font-size: 16px;
                height: 45px;
                line-height: 45px;
                width: 100%;
            }*/

#tabProductDetails img {
    width: 100% !important;
}

.whatsinthebox ol, whatsinthebox ul {
    margin-left: 15px;
    padding: 0;
    margin-top: 0 !important;
    padding-top: 0 !important;
    margin-bottom: 0 !important;
}

.threepoint :hover {
    text-decoration: underline;
}

.trianglebk {
    position: relative;
    width: 100%;
    padding: 5px 0;
    background: #e1e1e1;
    color: #000;
    float: left;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

    .trianglebk:after {
        content: '';
        position: absolute;
        top: 100%;
        width: 0;
        height: 0;
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
        border-top: 10px solid #e1e1e1;
        clear: both;
    }

.trianglebl {
    position: relative;
    width: 100%;
    padding: 5px 0;
    background: #6FA2E0;
    color: #fff;
    float: left;
    display: flex;
    padding-left: 15px !important;
    align-items: center;
    margin-bottom: 10px;
}

    .trianglebl:after {
        content: '';
        position: absolute;
        top: 100%;
        width: 0;
        height: 0;
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
        border-top: 10px solid #6FA2E0;
        clear: both;
    }


.trianglewh {
    position: relative;
    width: 100%;
    padding: 5px 10px 5px 10px !important;
    background: #ffffff;
    color: #000000;
    float: left;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    box-shadow: 0px 0px 40px #dadada;
    border-radius: 5px;
    font-weight: bold;
}

    .trianglewh:after {
        content: '';
        position: absolute;
        top: 100%;
        width: 0;
        height: 0;
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
        border-top: 10px solid #ffffff;
        clear: both;
    }

.searchbutton {
    background: -webkit-gradient( linear, left top, left bottom, color-stop(0.05, #00537c), color-stop(1, #003761) );
    background: -moz-linear-gradient( center top, #00537c 5%, #003761 100% );
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00537c', endColorstr='#003761');
    background-color: #00537c;
    -webkit-border-top-left-radius: 5px;
    -moz-border-radius-topleft: 5px;
    border-top-left-radius: 5px;
    -webkit-border-top-right-radius: 5px;
    -moz-border-radius-topright: 5px;
    border-top-right-radius: 5px;
    -webkit-border-bottom-right-radius: 5px;
    -moz-border-radius-bottomright: 5px;
    border-bottom-right-radius: 5px;
    -webkit-border-bottom-left-radius: 5px;
    -moz-border-radius-bottomleft: 5px;
    border-bottom-left-radius: 5px;
    text-indent: 0;
    border: 1px solid #003761;
    display: inline-block;
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    font-style: normal;
    height: 36px;
    line-height: 36px;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    padding: 0 15px;
}

    .searchbutton:hover {
        background: -webkit-gradient( linear, left top, left bottom, color-stop(0.05, #003761), color-stop(1, #00537c) );
        background: -moz-linear-gradient( center top, #003761 5%, #00537c 100% );
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#003761', endColorstr='#00537c');
        background-color: #003761;
    }

    .searchbutton:active {
        position: relative;
        top: 1px;
    }


.checkoutbutton {
    background: -webkit-gradient( linear, left top, left bottom, color-stop(0.05, #00537c), color-stop(1, #003761) );
    background: -moz-linear-gradient( center top, #00537c 5%, #003761 100% );
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00537c', endColorstr='#003761');
    background-color: #00537c;
    -webkit-border-top-left-radius: 5px;
    -moz-border-radius-topleft: 5px;
    border-top-left-radius: 5px;
    -webkit-border-top-right-radius: 5px;
    -moz-border-radius-topright: 5px;
    border-top-right-radius: 5px;
    -webkit-border-bottom-right-radius: 5px;
    -moz-border-radius-bottomright: 5px;
    border-bottom-right-radius: 5px;
    -webkit-border-bottom-left-radius: 5px;
    -moz-border-radius-bottomleft: 5px;
    border-bottom-left-radius: 5px;
    text-indent: 0;
    border: 1px solid #003761;
    display: inline-block;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    font-style: normal;
    height: 32px;
    line-height: 32px;
    width: 80px;
    text-decoration: none;
    text-align: center;
}

    .checkoutbutton:hover {
        background: -webkit-gradient( linear, left top, left bottom, color-stop(0.05, #003761), color-stop(1, #00537c) );
        background: -moz-linear-gradient( center top, #003761 5%, #00537c 100% );
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#003761', endColorstr='#00537c');
        background-color: #003761;
    }

    .checkoutbutton:active {
        position: relative;
        top: 1px;
    }

.orangebutton {
    background: -webkit-gradient( linear, left top, left bottom, color-stop(0.05, #ffbe0d), color-stop(1, #ffbe0d) );
    background: -moz-linear-gradient( center top, #ffbe0d 5%, #ffbe0d 100% );
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffbe0d', endColorstr='#ffbe0d');
    background-color: #ffbe0d;
    -webkit-border-top-left-radius: 5px;
    -moz-border-radius-topleft: 5px;
    border-top-left-radius: 5px;
    -webkit-border-top-right-radius: 5px;
    -moz-border-radius-topright: 5px;
    border-top-right-radius: 5px;
    -webkit-border-bottom-right-radius: 5px;
    -moz-border-radius-bottomright: 5px;
    border-bottom-right-radius: 5px;
    -webkit-border-bottom-left-radius: 5px;
    -moz-border-radius-bottomleft: 5px;
    border-bottom-left-radius: 5px;
    text-indent: 0;
    border: 1px solid #ffbe0d;
    display: inline-block;
    color: #072342;
    font-size: 17px;
    font-weight: 700;
    font-style: normal;
    padding: 10px;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
}

    .orangebutton:hover {
        background: -webkit-gradient( linear, left top, left bottom, color-stop(0.05, #ffbe0d), color-stop(1, #ffbe0d) );
        background: -moz-linear-gradient( center top, #ffbe0d 5%, #ffbe0d 100% );
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffbe0d', endColorstr='#ffbe0d');
        background-color: #ffbe0d;
    }

    .orangebutton:active {
        position: relative;
        top: 1px;
    }


.orangebutton2 {
    background: -webkit-gradient( linear, left top, left bottom, color-stop(0.05, #febd69), color-stop(1, #febd69) );
    background: -moz-linear-gradient( center top, #febd69 5%, #febd69 100% );
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#febd69', endColorstr='#febd69');
    background-color: #febd69;
    -webkit-border-top-left-radius: 7px;
    -moz-border-radius-topleft: 7px;
    border-top-left-radius: 7px;
    -webkit-border-top-right-radius: 7px;
    -moz-border-radius-topright: 7px;
    border-top-right-radius: 7px;
    -webkit-border-bottom-right-radius: 7px;
    -moz-border-radius-bottomright: 7px;
    border-bottom-right-radius: 7px;
    -webkit-border-bottom-left-radius: 7px;
    -moz-border-radius-bottomleft: 7px;
    border-bottom-left-radius: 7px;
    text-indent: 0;
    border: 1px solid #febd69;
    display: inline-block;
    color: #000;
    font-size: 17px;
    font-weight: 700;
    font-style: normal;
    padding: 10px;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
}

    .orangebutton2:hover {
        background: -webkit-gradient( linear, left top, left bottom, color-stop(0.05, #febd69), color-stop(1, #febd69) );
        background: -moz-linear-gradient( center top, #febd69 5%, #febd69 100% );
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#febd69', endColorstr='#febd69');
        background-color: #febd69;
    }

    .orangebutton2:active {
        position: relative;
        top: 1px;
    }


.bluebutton {
    background: -webkit-gradient( linear, left top, left bottom, color-stop(0.05, #4382b5), color-stop(1, #4382b5) );
    background: -moz-linear-gradient( center top, #4382b5 5%, #4382b5 100% );
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#4382b5', endColorstr='#4382b5');
    background-color: #4382b5;
    -webkit-border-top-left-radius: 5px;
    -moz-border-radius-topleft: 5px;
    border-top-left-radius: 5px;
    -webkit-border-top-right-radius: 5px;
    -moz-border-radius-topright: 5px;
    border-top-right-radius: 5px;
    -webkit-border-bottom-right-radius: 5px;
    -moz-border-radius-bottomright: 5px;
    border-bottom-right-radius: 5px;
    -webkit-border-bottom-left-radius: 5px;
    -moz-border-radius-bottomleft: 5px;
    border-bottom-left-radius: 5px;
    text-indent: 0;
    border: 1px solid #4382b5;
    display: inline-block;
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    font-style: normal;
    padding: 2px;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
}

    .bluebutton:hover {
        background: -webkit-gradient( linear, left top, left bottom, color-stop(0.05, #4382b5), color-stop(1, #4382b5) );
        background: -moz-linear-gradient( center top, #4382b5 5%, #4382b5 100% );
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#4382b5', endColorstr='#4382b5');
        background-color: #4382b5;
    }

    .bluebutton:active {
        position: relative;
        top: 1px;
    }

.shipping-step {
    padding-top: 9px;
    border-bottom: 3px solid #33DBF4;
    height: 35px;
    margin-right: -15px;
    text-align: center;
}

.payment-step {
    padding-top: 9px;
    border-bottom: 3px solid #DE24B7;
    height: 35px;
    margin-left: -15px;
    margin-right: -15px;
    text-align: center;
}

.payment-step-inactive, .confirmation-step-inactive {
    padding-top: 9px;
    border-bottom: 3px solid #EFF0F4;
    height: 35px;
    margin-left: -15px;
    color: #B9B9B9;
    text-align: center;
}

.autocomplete-w1 {
    background: url(/images/shadow.png) no-repeat bottom right;
    position: absolute;
    top: 0;
    left: 0;
    margin: 6px 0 0 6px; /* IE6 fix: */
    _background: none;
    _margin: 1px 0 0 0;
}

.autocomplete {
    border: 1px solid #999;
    background: #fff;
    cursor: default;
    text-align: left;
    max-height: 350px;
    overflow: auto;
    margin: -6px 6px 6px -6px; /* IE6 specific: */
    _height: 350px;
    _margin: 0;
    _overflow-x: hidden;
}

    .autocomplete .selected {
        background: #f0f0f0;
    }

    .autocomplete div {
        padding: 2px 5px;
        white-space: nowrap;
        overflow: hidden;
    }

    .autocomplete strong {
        font-weight: 400;
        color: #3399ff;
    }

#utility-nav {
    position: fixed;
    left: 0;
    top: -90px;
    height: 50px;
    width: 100%;
    border-bottom: 1px solid #999;
    background-color: #fff;
    z-index: 99999999;
    text-align: center;
    -moz-box-shadow: 0 1px 5px #777;
    -webkit-box-shadow: 0 1px 5px #777;
    box-shadow: 0 1px 5px #777;
    -ms-filter: "progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=135, Color='#000000')";
    filter: progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=135, Color='#000000');
}

* + html #utility-block {
    padding-top: 20px;
}

#utility-wrap {
    width: 1100px;
    height: 50px;
    text-align: center;
    float: none;
    margin: 0 auto auto auto;
    position: relative;
}

.utility {
    height: 38px;
    width: 470px;
    position: absolute;
    left: 110px;
    top: 5px;
}

#exit {
    position: absolute;
    bottom: 7px;
    right: 7px;
    height: 14px;
    width: 50px;
    color: #000;
    cursor: pointer;
}

    #exit span {
        float: right;
    }

    #exit p {
        border: 1px solid #999;
        width: 12px;
        height: 12px;
        float: right;
        margin: 0 0 0 4px;
        font-size: 8px;
        text-align: center;
        line-height: 12px;
        background-color: #666;
        color: #fff;
    }

#footer {
    /*margin-top: 15px;*/
    text-align: left
}

    #footer .emailsubscribe {
        background-color: #0086c9
    }

        #footer .emailsubscribe #emailsubscribeinner {
            width: 1100px;
            margin: 0 auto;
            color: #fff;
            font-weight: 700;
            font-size: 24px;
            padding-left: 10px;
            text-align: center;
            padding: 15px
        }

    #footer #reviews {
        background-color: #f7f7f9;
    }

        #footer #reviews #reviewsinner {
            width: 1100px;
            margin: 0 auto;
            text-align: center;
            color: #000;
            padding: 15px
        }

    #footer .footermenu {
        background-color: #e6f7ff
    }

        #footer .footermenu #footermenuinner {
            width: 1100px;
            margin: 0 auto
        }

            #footer .footermenu #footermenuinner .menutitle {
                padding: 10px 0 10px 10px;
                font-size: 14px;
                font-weight: 700;
                color: #000
            }

            #footer .footermenu #footermenuinner .menulink {
                padding: 5px 0 5px 10px;
            }

            #footer .footermenu #footermenuinner .link {
                font-size: 12px;
                color: #000;
                text-decoration: none
            }

    #footer #disclaimer, #footer #footerbanner {
        width: 1100px;
        margin: 0 auto
    }

        #footer #disclaimer .notes {
            padding: 10px
        }

            #footer #disclaimer .notes a {
                color: #000;
                text-decoration: none
            }

        #footer #disclaimer #social {
            padding: 10px 0;
            vertical-align: middle
        }

    #footer #copyrightversion {
        padding-bottom: 30px
    }

/*#footer-top {
    background-color: #387f9f;
    height: 30px
}

    #footer-top #reviews {
        width: 1100px;
        margin: 0 auto;
        padding-left: 5px
    }*/

/*#footer-middle {
    background-image: url(/images/topnavigaton_v3_06.jpg);
    background-repeat: repeat;
    height: 310px;
    background-color: #888
}

    #footer-middle #footer-links {
        width: 1100px;
        margin: 0 auto
    }*/

/*#footer-links .links {
    clear: both;
    padding: 0;
    margin: 0
}

#footer-links .col {
    display: block;
    float: left;
    margin: 1% 0 1% 2%
}

    #footer-links .col:first-child {
        margin-left: 0
    }

#footer-links .group:before, #footer-links .group:after {
    content: "";
    display: table;
}

#footer-links .group:after {
    clear: both;
}

#footer-links .group {
    zoom: 1; 
}

#footer-links .span_1_of_4 {
    width: 23%;
    border-right: 1px solid #fff;
    height: 230px
}

    #footer-links .span_1_of_4:last-child {
        border-right: none;
        height: 0
    }*/

/*#footer-bottom {
    width: 900px;
    margin: 0 auto
}
#footer-bottom #awards {
    height: 100px;
    line-height: 100px;
    padding-top: 10px
}

    #footer-bottom #awards div {
        display: inline-block;
        vertical-align: middle;
        padding-right: 5px;
        height: 100px;
        line-height: 100px
    }

    #footer-bottom #notes {
        display: block;
        font-size: 12px;
        color: #000
    }*/

/*.col .payment-methods {
    border: 0;
    width: 456px
}*/



/*#copyright {
    float: left;
    padding: 6px
}*/

.dElement {
    display: inline;
}

    .dElement img {
        vertical-align: middle;
        display: table-cell;
    }

    .dElement span {
        vertical-align: middle;
        display: table-cell;
    }



@media (min-width:768px) {
    .container {
        width: 750px
    }
}

@media (min-width:992px) {
    .container {
        width: 970px
    }
}

@media (min-width:1200px) {
    .container {
        width: 1170px
    }
}


.col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-xs-1, .col-xs-10, .col-xs-11, .col-xs-12, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9 {
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px
}

.col-xs-1, .col-xs-10, .col-xs-11, .col-xs-12, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9 {
    float: left
}

.col-xs-12 {
    width: 100%
}

.col-xs-11 {
    width: 91.66666667%
}

.col-xs-10 {
    width: 83.33333333%
}

.col-xs-9 {
    width: 75%
}

.col-xs-8 {
    width: 66.66666667%
}

.col-xs-7 {
    width: 58.33333333%
}

.col-xs-6 {
    width: 50%
}

.col-xs-5 {
    width: 41.66666667%
}

.col-xs-4 {
    width: 33.33333333%
}

.col-xs-3 {
    width: 25%
}

.col-xs-2 {
    width: 16.66666667%
}

.col-xs-1 {
    width: 8.33333333%
}


@media (min-width:768px) {
    .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9 {
        float: left
    }

    .col-sm-12 {
        width: 100%
    }

    .col-sm-11 {
        width: 91.66666667%
    }

    .col-sm-10 {
        width: 83.33333333%
    }

    .col-sm-9 {
        width: 75%
    }

    .col-sm-8 {
        width: 66.66666667%
    }

    .col-sm-7 {
        width: 58.33333333%
    }

    .col-sm-6 {
        width: 50%
    }

    .col-sm-5 {
        width: 41.66666667%
    }

    .col-sm-4 {
        width: 33.33333333%
    }

    .col-sm-3 {
        width: 25%
    }

    .col-sm-2 {
        width: 16.66666667%
    }

    .col-sm-1 {
        width: 8.33333333%
    }
}

@media (min-width:992px) {
    .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9 {
        float: left
    }

    .col-md-12 {
        width: 100%
    }

    .col-md-11 {
        width: 91.66666667%
    }

    .col-md-10 {
        width: 83.33333333%
    }

    .col-md-9 {
        width: 75%
    }

    .col-md-8 {
        width: 66.66666667%
    }

    .col-md-7 {
        width: 58.33333333%
    }

    .col-md-6 {
        width: 50%
    }

    .col-sm-55, .col-lg-55, .col-md-55 {
        width: 48%
    }

    .col-sm-15, .col-lg-15, .col-md-15 {
        width: 3%
    }

    .col-sm-35, .col-lg-35, .col-md-35 {
        width: 30%
    }

    .col-sm-65, .col-lg-65, .col-md-65 {
        width: 40%
    }

    .col-md-5 {
        width: 41.66666667%
    }

    .col-md-4 {
        width: 33.33333333%
    }

    .col-md-3 {
        width: 25%
    }

    .col-md-2 {
        width: 16.66666667%
    }

    .col-md-1 {
        width: 8.33333333%
    }
}

@media (min-width:1200px) {
    .col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9 {
        float: left
    }

    .col-lg-12 {
        width: 100%
    }

    .col-lg-11 {
        width: 91.66666667%
    }

    .col-lg-10 {
        width: 83.33333333%
    }

    .col-lg-9 {
        width: 75%
    }

    .col-lg-8 {
        width: 66.66666667%
    }

    .col-lg-7 {
        width: 58.33333333%
    }

    .col-lg-6 {
        width: 50%
    }

    .col-sm-55, .col-lg-55, .col-md-55 {
        width: 48%
    }

    .col-sm-15, .col-lg-15, .col-md-15 {
        width: 3%
    }

    .col-lg-5 {
        width: 41.66666667%
    }

    .col-lg-4 {
        width: 33.33333333%
    }

    .col-lg-3 {
        width: 25%
    }

    .col-lg-2 {
        width: 16.66666667%
    }

    .col-lg-1 {
        width: 8.33333333%
    }
}

@media (min-width: 576px) {


    .order-sm-first {
        order: -1 !important;
    }

    .order-sm-0 {
        order: 0 !important;
    }

    .order-sm-1 {
        order: 1 !important;
    }

    .order-sm-2 {
        order: 2 !important;
    }

    .order-sm-3 {
        order: 3 !important;
    }

    .order-sm-4 {
        order: 4 !important;
    }

    .order-sm-5 {
        order: 5 !important;
    }

    .order-sm-last {
        order: 6 !important;
    }
}

@media (min-width: 768px) {



    .order-md-first {
        order: -1 !important;
    }

    .order-md-0 {
        order: 0 !important;
    }

    .order-md-1 {
        order: 1 !important;
    }

    .order-md-2 {
        order: 2 !important;
    }

    .order-md-3 {
        order: 3 !important;
    }

    .order-md-4 {
        order: 4 !important;
    }

    .order-md-5 {
        order: 5 !important;
    }

    .order-md-last {
        order: 6 !important;
    }
}

@media (min-width: 992px) {



    .order-lg-first {
        order: -1 !important;
    }

    .order-lg-0 {
        order: 0 !important;
    }

    .order-lg-1 {
        order: 1 !important;
    }

    .order-lg-2 {
        order: 2 !important;
    }

    .order-lg-3 {
        order: 3 !important;
    }

    .order-lg-4 {
        order: 4 !important;
    }

    .order-lg-5 {
        order: 5 !important;
    }

    .order-lg-last {
        order: 6 !important;
    }
}

table {
    background-color: transparent
}

.dropdown, .dropup {
    position: relative
}

.clearfix:after, .clearfix:before, .container-fluid:after, .container-fluid:before, .container:after, .container:before, .modal-header:after, .modal-header:before, .nav:after, .nav:before, .navbar-collapse:after, .navbar-collapse:before, .navbar-header:after, .navbar-header:before, .navbar:after, .navbar:before, .pager:after, .pager:before, .panel-body:after, .panel-body:before, .row:after, .row:before {
    display: table;
    content: " "
}

.clearfix:after, .container-fluid:after, .container:after, .modal-header:after, .nav:after, .navbar-collapse:after, .navbar-header:after, .navbar:after, .pager:after, .panel-body:after, .row:after {
    clear: both
}

.menu_overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    opacity: 0;
    top: 0;
    left: 0;
    visibility: hidden;
    z-index: 101;
    background-color: #fff;
    -webkit-transition: all 0.5s ease-out;
    -moz-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
}

.nav-open-popup {
    visibility: visible !important;
    opacity: .6 !important;
    background-color: #000;
    -webkit-transition: all 0.5s ease-in;
    -moz-transition: all 0.5s ease-in;
    -o-transition: all 0.5s ease-in;
    transition: all 0.5s ease-in;
    transition-delay: 0.2s;
}



/* Menu */
.navbar.navbar-default {
    z-index: 102 !important;
    margin-bottom: 0px;
}

.navbar-default .navbar-toggle {
    border: none;
    color: #00537d;
    font-size: 13px;
}

.navbar-topmenu .nav-item {
    padding: 15px;
}
/*.nav > li > a {
    padding: 15px 5px;
}*/
.navbar-default {
    min-height: 50px;
    /*background-color: #EFF0F4;*/
    background: linear-gradient(to right, #0e365a, #12628f);
    border-color: transparent;
    padding-top: 0;
    padding-bottom: 0;
}

    .navbar-default .navbar-nav > li > a {
        color: #fff;
        font-size: 14px;
        text-decoration: none;
        /*font-weight: bold;*/
    }

.navbar-topmenu .dropdown-menu > .menu-title {
    color: #ff8300;
    font-weight: bold;
    font-size: 15px;
    padding-left: 30px;
}

.navbar-topmenu .dropdown-menu > li > a {
    font-weight: bold;
    color: #00537d;
    white-space: normal;
}

    .navbar-topmenu .dropdown-menu > li > a:hover {
        color: #00537d;
    }

/*.dropdown-menu > hr {
    margin-top: 15px;
    margin-bottom: 15px;
}*/

.navbar-topmenu .dropdown-menu .all {
    text-decoration: underline;
    font-weight: bold;
    text-align: right;
}

.navbar-default .navbar-toggle {
    /*background-color: #ffffff;*/
}

.navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:focus, .navbar-default .navbar-nav > .open > a:hover {
    color: #00537d;
    background-color: #eff0f3;
}

.nav-item-width {
    width: 20%;
    text-align: center
}

.catImage {
    width: 150px;
}

@media screen and (max-width: 980px) {
    .catImage {
        width: 100%;
    }

    .nav-item-width {
        width: 100%;
        text-align: left;
    }

    .nav > li > a {
        display: block;
    }

    .navbar-default {
        position: fixed;
        background-color: transparent;
        right: 0;
        top: 110px;
    }

        .navbar-default .navbar-toggle:focus, .navbar-default .navbar-toggle:hover {
            background-color: #ffffff;
        }

    .navbar-topmenu .navbar.navbar-default .container-fluid {
        padding-right: 0px;
        padding-left: 0px;
    }

    /*.navbar-nav .caret {
        margin-top: 8px;
    }*/

    .navbar-topmenu .navbar-nav .dropdown-menu.show {
        list-style-type: disc;
        color: #23527c;
        padding-left: 5%;
    }


        .navbar-topmenu .navbar-nav .dropdown-menu.show a {
            font-weight: normal;
            font-size: 12px;
        }

    .navbar-default .navbar-collapse {
        background-color: #ffffff;
        box-shadow: 0 2px 10px rgba(0,0,0,.3);
        border: none;
        width: 100%;
        height: 100%;
        overflow-y: auto;
    }

    .navbar-default .navbar-toggle:focus, .navbar-default .navbar-toggle:hover {
        background-color: #ffffff;
    }

    .navbar-default .navbar-nav > li > a:focus, .navbar-default .navbar-nav > li > a:hover {
        /*color: #ffffff;*/
        background-color: #ffffff;
    }

    .navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:focus, .navbar-default .navbar-nav > .open > a:hover {
        /*color: #ffffff;*/
        background-color: #ffffff;
    }

    .navbar-default .navbar-nav > li > a {
        font-weight: normal;
        text-align: left;
        vertical-align: sub;
        /*padding-top: 8px;
        padding-bottom: 8px;*/
        border-bottom: 1px solid #e8e8e8;
    }

    .navbar-default .navbar-nav .open .dropdown-menu > li > a {
        color: #23527c;
        font-weight: normal;
        font-size: 12px;
    }

    .navbar-topmenu .container-fluid > .navbar-collapse {
        margin-left: 0px;
        margin-right: 0px;
        padding-top: 6px;
    }

    .navbar-topmenu .navbar-toggle {
        padding: 0;
    }

    .navbar-topmenu .nav-item {
        padding: 0px;
        min-height: 30px;
    }

    .navbar-topmenu .navbar-nav .dropdown-menu {
        border: none;
    }

    .navbar-topmenu .dropdown-menu > li {
        margin-left: 3%;
        float: left;
        width: 45%;
    }

    .navbar-topmenu .dropdown-menu > hr {
        display: none;
    }

    .navbar-topmenu .dropdown-menu .all {
        text-align: left;
    }

    .navbar-topmenu .dropdown-menu .img {
        display: none;
    }

    .navbar-topmenu .dropdown-menu > li {
        margin-left: 3%;
        float: left;
        width: 45%;
    }

        .navbar-topmenu .dropdown-menu > li:hover {
            background-color: #0e86c8 !important;
            transition-delay: 1s;
        }

        .navbar-topmenu .dropdown-menu > li > a:hover {
            color: #ffffff !important;
            background-color: #0e86c8 !important;
            transition-delay: 1s;
        }

    .navbar-topmenu .dropdown-menu > .pointer, .dropdown-menu > .menu-title {
        display: none;
    }

    .navbar-topmenu .dropdown-menu > li > a > img {
        display: none;
    }

    .container-fluid > .navbar-header {
        margin-right: -20px;
        margin-left: -20px;
    }

    .nav > li > a {
        padding: 5px 5px;
        color: #000 !important;
    }

    .navbar-default
    {
        min-height:0 !important;
    }

    .nav > li {
        width: 100%;
        float: left;
    }

        .nav > li > .link-text {
            width: 90%;
            float: left;
        }

        .nav > li > .link-caret {
            width: 10%;
            float: right;
        }

    .navbar-header {
        float: none;
    }

    .navbar-nav .open .dropdown-menu > li > a {
        padding: 10px 15px;
    }
}

@media screen and (min-width: 981px) {
    .msiteshow {
        display: none !important;
    }

    .container, .container-fluid {
        font-family: Arial;
        font-weight: 700;
    }

    .navbar-topmenu.navbar-collapse.collapse {
        /*display: block !important;*/
        width: 1110px;
        margin: auto;
        padding-right: 5px;
        padding-left: 5px;
        align-items: center;
        justify-content: center;
    }

    .navbar-toggle {
        display: none !important;
    }

    .navbar-topmenu .navbar-nav > li {
        /*border-right: 2px solid #fff;*/
        height: 50px;
        padding-right: 95px;
    }

        .navbar-topmenu .navbar-nav > li > a {
            /*padding-top: 8px;
            padding-bottom: 8px;*/
        }

        .navbar-topmenu .navbar-nav > li:hover {
            /*background-color: #fff !important;*/
            color:#fcb057;
        }

            .navbar-topmenu .navbar-nav > li:hover > a {
                /*color: #ffffff !important;*/
                /*transition-delay: 1s;*/
            }

    .navbar-default .navbar-nav > li > a:focus, .navbar-default .navbar-nav > li > a:hover {
        /*color: #ffffff;*/
        color:#fcb057;
    }

    .navbar-topmenu .dropdown-menu {
        padding: 20px;
        /*padding-right: 20px;*/
        height: 344px;
        margin-top: 0;
        width: 1068px;
        top: 100%;
        border: 1px solid #cec
    }

        .navbar-topmenu .dropdown-menu.ink-cartridges {
            left: 0px;
        }

        .navbar-topmenu .dropdown-menu.toner-cartridges {
            left: -208px;
        }

        .navbar-topmenu .dropdown-menu.label-tape {
            left: -434px;
        }

        .navbar-topmenu .dropdown-menu.brands {
            left: -620px;
        }

        .navbar-topmenu .dropdown-menu.printers {
            left: -804px;
        }

        .navbar-topmenu .dropdown-menu.stationery {
            left: -820px;
        }

        .navbar-topmenu .dropdown-menu > .pointer {
            top: -15px;
        }

        .navbar-topmenu .dropdown-menu > li {
            float: left;
            width: 16.6%;
            padding-top: 12px;
            padding-bottom: 12px;
            text-align: center;
        }

            .navbar-topmenu .dropdown-menu > li > a:hover {
                background-color: transparent;
            }

            .navbar-topmenu .dropdown-menu > li > a > span {
                display: none;
            }

    .ink-cartridges > .all {
        width: 100%;
    }

        .ink-cartridges > .all > a {
            padding-right: 72px;
            text-align: right;
        }


    .toner-cartridges > .all {
        width: 100%;
    }

        .toner-cartridges > .all > a {
            padding-right: 72px;
            text-align: right;
        }

    .stationery > .all {
        width: 100%;
    }

        .stationery > .all > a {
            padding-right: 72px;
            text-align: right;
        }

    .navbar-topmenu .dropdown .dropdown-menu {
        display: inherit;
        visibility: hidden;
        opacity: 0;
        -webkit-transition: all 0.5s ease-out;
        -moz-transition: all 0.5s ease-out;
        -o-transition: all 0.5s ease-out;
        transition: all 0.5s ease-out;
    }

    .navbar-topmenu .dropdown:hover .dropdown-menu {
        visibility: visible;
        opacity: 1;
        -webkit-transition: all 0.5s ease-in;
        -moz-transition: all 0.5s ease-in;
        -o-transition: all 0.5s ease-in;
        transition: all 0.5s ease-in;
        transition-delay: 0.2s;
    }

    .navbar-topmenu .dropdown-toggle {
        margin-bottom: 2px;
    }

    .navbar-topmenu .navbar .dropdown-toggle {
        margin-bottom: 0 !important;
    }
}

/*@media only screen and (min-width:1024px) and (max-height: 1366px) and (-webkit-min-device-pixel-ratio:1.5)
{
    .navbar-default {
        position: fixed;
        background-color: transparent;
        right: 0;
        top: 110px;
    }

        .navbar-default .navbar-toggle:focus, .navbar-default .navbar-toggle:hover {
            background-color: #ffffff;
        }

    .navbar.navbar-default .container-fluid {
        padding-right: 0px;
        padding-left: 0px;
    }

    .navbar-nav .caret {
        margin-top: 8px;
    }

    .navbar-nav .open .dropdown-menu {
        list-style-type: disc;
        color: #23527c;
        padding-left: 5%;
    }

    .navbar-default .navbar-collapse {
        background-color: #ffffff;
        box-shadow: 0 2px 10px rgba(0,0,0,.3);
        border: none;
        width: 100%;
        height: 100%;
        overflow-y: auto;
    }

    .navbar-default .navbar-toggle:focus, .navbar-default .navbar-toggle:hover {
        background-color: #ffffff;
    }

    .navbar-default .navbar-nav > li > a:focus, .navbar-default .navbar-nav > li > a:hover {
        
        background-color: #ffffff;
    }

    .navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:focus, .navbar-default .navbar-nav > .open > a:hover {
        
        background-color: #ffffff;
    }

    .navbar-default .navbar-nav > li > a {
        font-weight: normal;
        text-align: left;
        
        border-bottom: 1px solid #e8e8e8;
    }

    .navbar-default .navbar-nav .open .dropdown-menu > li > a {
        color: #23527c;
        font-weight: normal;
        font-size: 12px;
    }

    .container-fluid > .navbar-collapse {
        margin-left: 0px;
        margin-right: 0px;
    }

    .navbar-toggle {
        padding: 0;
    }

    .dropdown-menu > hr {
        display: none;
    }

    .dropdown-menu .img {
        display: none;
    }

    .dropdown-menu > li {
        margin-left: 3%;
        float: left;
        width: 45%;
    }

        .dropdown-menu > li:hover {
            background-color: #0e86c8 !important;
            transition-delay: 1s;
        }

        .dropdown-menu > li > a:hover {
            color: #ffffff !important;
            background-color: #0e86c8 !important;
            transition-delay: 1s;
        }

    .dropdown-menu > .pointer, .dropdown-menu > .menu-title {
        display: none;
    }

    .dropdown-menu > li > a > img {
        display: none;
    }

    .container-fluid > .navbar-header {
        margin-right: -20px;
        margin-left: -20px;
    }

    .nav > li > a {
        padding: 5px 5px;
    }

    .nav > li {
        width: 100%;
        float: left;
    }

        .nav > li > .link-text {
            width: 90%;
            float: left;
        }

        .nav > li > .link-caret {
            width: 10%;
            float: right;
        }

    .navbar-header {
        float: none;
    }

    .navbar-nav .open .dropdown-menu .dropdown-header, .navbar-nav .open .dropdown-menu > li > a {
        padding: 10px 15px;
    }
}

@media (hover:none){

}*/

input[disabled] {
    background: -webkit-gradient(linear,left top,left bottom,color-stop(.05,#cccccc),color-stop(1,#cccccc));
    border: 1px solid #999999;
    background-color: #cccccc;
    color: #666666;
}


.search-sidebar {
    padding-right: 0px;
    padding-left: 0px;
    padding-bottom: 15px;
}

    .search-sidebar .filters {
        padding: 15px;
        border: 1px solid #d3d3d3;
        background-color: #EFF0F3;
    }

        .search-sidebar .filters .filterToggle {
            display: none;
        }

        .search-sidebar .filters h3 {
            margin: 0;
            color: #000;
            font-size: 15px;
            font-weight: bold;
        }

        .search-sidebar .filters .filter-group {
            margin-top: 15px;
        }

            .search-sidebar .filters .filter-group h4 {
                margin-top: 0;
                font-size: 13px;
                padding-bottom: .2em;
                border-bottom: 1px solid #ddd;
                margin-bottom: .2em;
                color: #000;
                font-weight: bold;
            }


            .search-sidebar .filters .filter-group .filter-checkbox label {
                display: inline;
                color: #00376a;
                text-decoration: underline;
            }

.search-breadcrum {
    font-size: 13px;
    padding-left: 0px;
    padding-bottom: 15px;
}

.search-content {
}

@media (min-width: 1200px) {
    .col-lg-2half, .col-lg-6half {
        float: left;
    }

    .col-lg-2half {
        width: 20.83333333%;
    }

    .col-lg-6half {
        width: 54.16666667%;
    }
}

@media (min-width: 992px) {
    .col-lg-2half, .col-lg-6half {
        float: left;
    }

    .col-lg-2half {
        width: 20.83333333%;
    }

    .col-lg-6half {
        width: 54.16666667%;
    }
}

@media(max-width: 991px) {
    .search-header {
        padding-right: 15px;
        padding-left: 15px;
    }

    .search-breadcrum {
        padding-right: 15px;
        padding-left: 15px;
    }

    .search-sidebar {
        padding-right: 15px;
        padding-left: 15px;
    }

        .search-sidebar .filters .filterToggle {
            display: block;
        }
}

#filterCollapse.in,
#filterCollapse.collapsing {
    display: block !important;
}

/*.vertical-alignment-helper {
    display: table;
    height: 100%;
    width: 100%;
}*/

/*.modal-content {
    width: inherit;
    height: inherit;
    margin: 0 auto;
}

.modal-dialog-centered {
    display: table-cell;
    vertical-align: middle;
}
*/
.btn-checkout-transparent {
    background-color: transparent;
    -webkit-border-top-left-radius: 5px;
    -moz-border-radius-topleft: 5px;
    border-top-left-radius: 5px;
    -webkit-border-top-right-radius: 5px;
    -moz-border-radius-topright: 5px;
    border-top-right-radius: 5px;
    -webkit-border-bottom-right-radius: 5px;
    -moz-border-radius-bottomright: 5px;
    border-bottom-right-radius: 5px;
    -webkit-border-bottom-left-radius: 5px;
    -moz-border-radius-bottomleft: 5px;
    border-bottom-left-radius: 5px;
    text-indent: 0;
    border: 1px solid gray;
    display: inline-block;
    color: gray;
    font-size: 12px;
    font-style: normal;
    padding: 0 5px;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    float: right;
}

    .btn-checkout-transparent:hover {
        text-decoration: none;
        background-color: white;
        color: gray;
    }

.validator {
    display: inline;
    font-size: 12px;
    color: red;
    float: right;
}

.is-invalid {
    border-color: #F64E60 !important;
    padding-right: calc(1.5em + 1.3rem) !important;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23F64E60' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23F64E60' stroke='none'/%3e%3c/svg%3e") !important;
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.325rem) center;
    background-size: calc(0.75em + 0.65rem) calc(0.75em + 0.65rem);
}

/*ZEN DESK*/
/*#zendesk-widget-custom, #zendesk-widget-custom div {
    all: unset;
}

    #zendesk-widget-custom div.zd-icon-loader {
        display: none;
    }

        #zendesk-widget-custom div.zd-icon-loader div {
            box-sizing: border-box;
            display: block;
            position: absolute;
            width: 20px;
            height: 20px;
            border: 2px solid #fff;
            border-radius: 50%;
            animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
            border-color: #fff transparent transparent transparent;
        }

            #zendesk-widget-custom div.zd-icon-loader div:nth-child(1) {
                animation-delay: -0.45s;
            }

            #zendesk-widget-custom div.zd-icon-loader div:nth-child(2) {
                animation-delay: -0.3s;
            }

            #zendesk-widget-custom div.zd-icon-loader div:nth-child(3) {
                animation-delay: -0.15s;
            }*/

@keyframes lds-ring {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*#zendesk-widget-custom div.zd-icon-default svg {
    display: block;
}

#zendesk-widget-custom {
    color: #1a1a1a;
    font-size: 14px;
    line-height: 16px;
    border: medium none;
    background: transparent none repeat scroll 0% 0%;
    z-index: 999998;
    transform: translateZ(0px);
    position: fixed;
    animation: 750ms cubic-bezier(0.645, 0.045, 0.355, 1) 0s onLoadAnimation;
    height: 50px;
    max-height: 551px;
    min-height: 50px;
    margin: 10px 20px;
    left: 0;
    bottom: 0;
    font-family: system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Cantarell,Helvetica Neue,Arial,sans-serif;
}*/

@keyframes onLoadAnimation {
    0% {
        opacity: 0;
        transform: translateY(100%);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width:767px) {
    .order-sm {
        display: flex;
        flex-direction: column;
    }
}
/*
.btn-outline-primary.active.focus, .btn-outline-primary.active:focus, .btn-outline-primary.active:hover, .btn-outline-primary:active.focus, .btn-outline-primary:active:focus, .btn-outline-primary:active:hover, .open > .dropdown-toggle.btn-outline-primary.focus, .open > .dropdown-toggle.btn-outline-primary:focus, .open > .dropdown-toggle.btn-outline-primary:hover {
    color: #fff;
    background-color: #204d74;
    border-color: #122b40;
}

.btn-outline-primary.active, .btn-outline-primary:active, .open > .dropdown-toggle.btn-outline-primary {
    background-image: none;
}

.btn-outline-primary.active, .btn-outline-primary:active, .open > .dropdown-toggle.btn-outline-primary {
    color: #fff;
    background-color: #286090;
    border-color: #204d74;
}

.btn-outline-primary:hover {
    color: #fff;
    background-color: #286090;
    border-color: #204d74;
}
*/

.btn-outline-primary {
    border: 1px solid #337ab7;
    background-color: #ffffff;
}

    .btn-outline-primary:hover {
        color: #fff;
        background-color: #337ab7;
    }

.text-2line {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* number of lines to show */
    -webkit-box-orient: vertical;
}

.breadcrumbs .items {
    list-style: none none;
    padding-left: 0px;
}

    .breadcrumbs .items > li {
        display: inline-block;
        vertical-align: top;
    }

.autocomplete-suggestions {
    border: 1px solid #999;
    background: #FFF;
    overflow: auto;
}

.autocomplete-suggestion {
    padding: 2px 5px;
    white-space: nowrap;
    overflow: hidden;
}

.autocomplete-selected {
    background: #F0F0F0;
}

.autocomplete-suggestions strong {
    font-weight: normal;
    color: #3399FF;
}

.autocomplete-group {
    padding: 2px 5px;
}

    .autocomplete-group strong {
        display: block;
        border-bottom: 1px solid #000;
    }

/*.rptBrandContainer-div {
    min-height: 320px;
}*/
.rptBrandContainer-div {
    min-height: 350px;
}

    .rptBrandContainer-div .brandItem {
        font-size: 14px;
        font-weight: bold;
        text-align: center;
        color: #333;
        border-radius: 10px;
        border: 1px solid #ccc;
    }

    .rptBrandContainer-div:first-child .brandItem {
        box-shadow: 5px 0 15px rgba(0, 0, 0, 0.1); /* Shadow on the right side */
        transition: box-shadow 0.3s ease; /* Smooth transition for shadow */
    }

    /* On hover (when mouse is over the element) */
    .rptBrandContainer-div:hover .brandItem {
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2); /* Increased shadow effect */
    }

    /* On active state (when the block is clicked or tapped) */
    .rptBrandContainer-div:active .brandItem {
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3); /* Slightly different shadow when clicked */
    }

    /* On hover for all other brand containers */
    .rptBrandContainer-div:not(:first-child):hover .brandItem {
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Regular hover shadow effect */
    }

    /*.rptBrandContainer-div .brandItem {
        margin: 0 30px;
        font-size: 14px;
        font-weight: bold;
        text-align: center;
        color: #333;
    }*/


    .rptBrandContainer-div .brandItem {
        margin-bottom: 30px;
    }

        .rptBrandContainer-div .brandItem .topLink {
            font-size: 17px;
        }

        .rptBrandContainer-div .brandItem .bottomLink {
            display: inline-block;
            background-color: #ebebeb; /* Button background color */
            color: #004672; /* Text color */
            width: 90%;
            padding: 10px; /* Padding for button appearance */
            text-align: center; /* Center-align text */
            text-decoration: none; /* Remove underline */
            border-radius: 5px; /* Rounded corners */
            font-weight: bold; /* Bold text */
            transition: background-color 0.3s ease, transform 0.3s ease; /* Smooth transitions */
        }

        .rptBrandContainer-div .brandItem .topPrinterTitle {
            text-align: left;
        }

        .rptBrandContainer-div .brandItem .topPrinterList {
            text-align: left;
            padding-top: 5px;
            padding-bottom: 10px;
        }

            .rptBrandContainer-div .brandItem .topPrinterList a {
                display: block;
                padding-bottom: 5px;
                color: #0071BD;
                font-size: 12px;
            }

    .rptBrandContainer-div img {
        display: block;
        margin-left: auto !important;
        margin-right: auto !important;
    }

#cartridge-finder {
    background: radial-gradient(circle, #166b9d,#124870);
    padding: 10px;
}

#cartridge-finder-container {
    width: 1100px;
    margin: 0 auto;
}

    #cartridge-finder-container #main_finder select {
        width: 400px;
        height: 36px;
    }

.cf-label {
    font-size: 15px;
    color: #FFF;
    padding-bottom: 5px;
}

.border-bottom-dotted {
    border-bottom: 1px dashed #cecece;
    padding-bottom: 10px;
}

.gradient-bg {
    background: radial-gradient(circle, #124870, #166b9d);
    padding: 10px; /* Adjust as needed */
}

.ExpandODiv ul li {
    width: 25%;
    float: left;
}

.ExpandODiv ul {
    display: block;
}

    .ExpandODiv ul li {
        display: inline-block;
    }

.ExpandODiv2 ul li {
    width: 25%;
    float: left;
}

.ExpandODiv2 ul {
    display: block;
}

    .ExpandODiv2 ul li {
        display: inline-block;
    }

.screenshot {
    color: #0044CC;
    font-size: 12px;
}

.horizontal-image-list-rpt-img {
    border: 1px solid #DDD;
    width: 50px;
    height: 50px;
    border-radius: 5px
}

.comparisonbox {
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 100%; /* Adjust width as needed */
}

.comparisonbox-header {
    background-color: green;
    color: white;
    padding: 10px;
    font-size: 16px;
}

.comparisonbox-content {
    background-color: white;
    padding: 10px;
}

/*.panel-heading {
    padding: 0;
    border: 0;
}*/

.panel-title > a, .panel-title > a:active {
    display: block;
    padding: 15px 5px;
    color: #0089d8;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    word-spacing: 3px;
    text-decoration: none;
}

/*.panel-heading a:before {
    font-family: 'font awesome 5 free';
    content: "\f107";
    float: right;
    transition: all 0.5s;
}

.panel-heading.active a:before {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    transform: rotate(180deg);
}*/

.panel-body {
    padding: 0 5px;
}

.separator {
    background: #C6C6C6;
    width: 100%;
    height: 1px;
}

.dotbg {
    padding: 0;
    height: 100%;
    min-height: 250px;
    border-radius: 10px;
    /*border: 1px solid #cecece;*/
    box-shadow: 0px 0px 40px #dadada;
    /*margin: 0;
    background-repeat: no-repeat;
    background-position: top left;
    z-index: 1*/
}

.brand-container {
    background-color: #ffffff;
    border-radius: 20px;
    border: 1px solid #ccc;
    /* box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);*/
    justify-content: center;
    padding: 20px 10px;
    width:100%;
}

.brand2-container {
    background-color: #ffffff;
    border-radius: 20px;
    border: 1px solid #ccc;
    /* box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);*/
    justify-content: center;
}


.bestselling {
    display: flex; /* Ensures alignment */
    flex-wrap: wrap;
}

    .bestselling .col-lg-3:first-child .brand2-container {
        box-shadow: 5px 0 15px rgba(0, 0, 0, 0.1); /* Shadow on the right side */
        transition: box-shadow 0.3s ease; /* Smooth transition for shadow */
    }

    /* On hover (when mouse is over the element) */
    .bestselling .col-lg-3:first-child:hover .brand2-container {
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2); /* Increased shadow effect */
    }

    /* On active state (when the block is clicked or tapped) */
    .bestselling .col-lg-3:first-child:active .brand2-container {
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3); /* Slightly different shadow when clicked */
    }

    .bestselling .col-lg-3:hover .brand2-container {
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Regular hover shadow effect */
    }

.greybg {
    background-color: #f6f6f8;
    border-radius: 5px
}

.cartridge-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.cartridge-item {
    display: flex;
    align-items: center;
    margin-right: 10px; /* Adjust spacing between items */
    margin-bottom: 5px; /* Add spacing between rows if items wrap */
}

.image-container {
    position: relative;
    display: inline-block;
}

.colorDot {
    display: block;
}

.teardrop {
    border-top-left-radius: 8%;
    border-top-right-radius: 48%;
    border-bottom-left-radius: 48%;
    border-bottom-right-radius: 48%;
    background: rgb(0,160,201);
    background: -moz-linear-gradient(0deg, rgba(0,160,201,1) 0%, rgba(255,28,105,1) 49%, rgba(255,218,0,1) 86%);
    background: -webkit-linear-gradient(0deg, rgba(0,160,201,1) 0%, rgba(255,28,105,1) 49%, rgba(255,218,0,1) 86%);
    background: linear-gradient(0deg, rgba(0,160,201,1) 0%, rgba(255,28,105,1) 49%, rgba(255,218,0,1) 86%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#00a0c9", endColorstr="#ffda00", GradientType=1);
    margin: 10px 5px;
    width: 25px;
    height: 25px;
}

.teardropblack {
    border-top-left-radius: 8%;
    border-top-right-radius: 48%;
    border-bottom-left-radius: 48%;
    border-bottom-right-radius: 48%;
    background: black;
    margin: 10px 5px;
    width: 25px;
    height: 25px;
}

.teardropcyan {
    border-top-left-radius: 8%;
    border-top-right-radius: 48%;
    border-bottom-left-radius: 48%;
    border-bottom-right-radius: 48%;
    background: #219cd7;
    margin: 10px 5px;
    width: 25px;
    height: 25px;
}

.teardropyellow {
    border-top-left-radius: 8%;
    border-top-right-radius: 48%;
    border-bottom-left-radius: 48%;
    border-bottom-right-radius: 48%;
    background: yellow;
    margin: 10px 5px;
    width: 25px;
    height: 25px;
}

.teardropmagenta {
    border-top-left-radius: 8%;
    border-top-right-radius: 48%;
    border-bottom-left-radius: 48%;
    border-bottom-right-radius: 48%;
    background: magenta;
    margin: 10px 5px;
    width: 25px;
    height: 25px;
}

.quantity {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 13px;
    font-weight: bold;
    color: white; /* Change this to the desired color */
}

.quantity2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 13px;
    font-weight: bold;
    color: #000; /* Change this to the desired color */
}

.cartridge-text-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    line-height: 1; /* Reduce line height to minimize gap */
}

.cartridge-text {
    font-size: 14px;
    font-weight: bold;
}

.cartridge-ml {
    font-size: 14px;
}

.cartridge-unit {
    font-size: 12px;
}

.stickerTag {
    width: 100%;
    background-color: #07883D;
    height: 30px;
    text-align: center;
    color: #ffffff;
    padding-top: 3px;
}
/*.bestSellingInkToner .slick-next, .bestSellingInkToner .slick-prev {
    top: 100px;
}*/
@media (max-width: 980px) {
    .rptBrandContainer-div .brandItem {
        margin: 0 10px;
    }
}

.tiny-slider-container {
    position: relative;
    padding: 0 30px;
}

    .tiny-slider-container [data-controls] {
        position: absolute;
        top: 50%;
        width: 2.5rem;
        height: 2.5rem;
        margin-top: -1.375rem;
        transition: all .3s ease-in-out;
        border: 1px solid #e3e9ef;
        border-radius: 50%;
        background-color: #fff;
        font-size: 15px;
        /*line-height: 2.625rem;*/
        text-align: center;
        z-index: 10;
        color: #908F8F;
    }

    .tiny-slider-container [data-controls='prev'] {
        left: 0;
        outline: none;
    }

    .tiny-slider-container [data-controls='next'] {
        right: 0;
        outline: none;
    }

.top-inner a {
    text-decoration: none;
}

    .top-inner a:hover {
        text-decoration: underline;
    }

.main-inner a {
    text-decoration: none;
}

    .main-inner a:hover {
        text-decoration: underline;
    }

.zip-code select {
    min-height: 100px;
}

/*ZEN DESK*/
/*#zendesk-widget-custom, #zendesk-widget-custom div {
    all: unset;
}

    #zendesk-widget-custom div.zd-base-icon {
        min-width: 20px;
        min-height: 20px;
        height: 20px;
        width: 20px;
        vertical-align: middle;
        padding-right: 8px;
        display: inline-block;
        pointer-events: none !important;
    }

    #zendesk-widget-custom div.zd-icon-loader {
        display: none;
    }

        #zendesk-widget-custom div.zd-icon-loader div {
            box-sizing: border-box;
            display: block;
            position: absolute;
            width: 20px;
            height: 20px;
            border: 2px solid #fff;
            border-radius: 50%;
            animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
            border-color: #fff transparent transparent transparent;
        }

            #zendesk-widget-custom div.zd-icon-loader div:nth-child(1) {
                animation-delay: -0.45s;
            }

            #zendesk-widget-custom div.zd-icon-loader div:nth-child(2) {
                animation-delay: -0.3s;
            }

            #zendesk-widget-custom div.zd-icon-loader div:nth-child(3) {
                animation-delay: -0.15s;
            }*/

@keyframes lds-ring {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*#zendesk-widget-custom div.zd-icon-default svg {
    display: block;
}

#zendesk-widget-custom div.zd-button {
    background-color: #00466e;
    color: #ffffff;
    fill: #ffffff;
    padding: 13px 22px;
    border-radius: 13986px;
    bottom: 0;
    font-size: 15px;
    cursor: pointer;
    display: inline-block;
}

#zendesk-widget-custom div.zd-label {
    display: inline-block;
    font-size: 15px;
    line-height: 17px;
    font-weight: 700;
    vertical-align: middle;
    pointer-events: none !important;
}

#zendesk-widget-custom {
    color: #1a1a1a;
    font-size: 14px;
    line-height: 16px;
    border: medium none;
    background: transparent none repeat scroll 0% 0%;
    z-index: 999998;
    transform: translateZ(0px);
    position: fixed;
    animation: 750ms cubic-bezier(0.645, 0.045, 0.355, 1) 0s onLoadAnimation;
    height: 50px;
    max-height: 551px;
    min-height: 50px;
    margin: 10px 20px;
    left: 0;
    bottom: 0;
    font-family: system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Cantarell,Helvetica Neue,Arial,sans-serif;
}*/

@keyframes onLoadAnimation {
    0% {
        opacity: 0;
        transform: translateY(100%);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/*@media only screen and (max-width: 600px) {
    #zendesk-widget-custom div.zd-label {
        display: none;
    }

    #zendesk-widget-custom div.zd-base-icon {
        padding-right: 0;
    }
}*/

[v-cloak] {
    display: none;
}

.stickerImage {
    width: 50px;
    position: absolute;
    right: 5px;
}

.stickerCapacity {
    width: 100px;
    position: absolute;
    left: 10px;
    top: 10px;
}

.white-popup {
    position: relative;
    background: #FFF;
    padding: 20px;
    width: auto;
    max-width: 900px;
    margin: 20px auto;
}


/*filter search*/
.navbar-filter {
    padding-top: 0;
    padding-bottom: 0;
    border: 1px solid #ddd;
    background-color: #fff;
}

    .navbar-filter .container-fluid {
        padding-right: 0px;
        padding-left: 0px;
    }

    .navbar-filter .navbar-toggler {
        width: 100%;
        color: #000;
        font-size: 15px;
        font-weight: bold;
    }

        .navbar-filter .navbar-toggler i {
            float: right;
        }

    .navbar-filter ul {
        margin-left: 0px;
    }

    .navbar-filter .nav-item {
        border-right: 1px solid #ddd;
    }


    .navbar-filter li:last-child {
        border-right: none;
    }

    .navbar-filter .nav-link {
        padding: 0.2rem 0rem;
        color: #000000;
        font-size: 12px;
    }

    .navbar-filter .dropdown-item {
        font-size: 12px;
    }

    .navbar-filter .count {
        font-size: 12px;
        font-weight: normal;
        line-height: 20px;
        display: inline-block;
        padding-top: 3px;
    }

.selectedfilters .selectedfilters-item {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    color: #999;
    border-right: 1px solid #ddd;
    font-size: 12px;
}

.search-result.pagination {
    margin-left: 0px;
    justify-content: right;
}

    .search-result.pagination .page-link {
        color: #000000;
        text-decoration: none;
        font-size: 15px;
        padding: 0.375rem 0.65rem;
        min-width: 35px;
        text-align: center;
    }

        .search-result.pagination .page-link.aspNetDisabled {
            color: #C8C8C8;
        }

        .search-result.pagination .page-link.selected {
            border: 1px solid #E96C30;
            color: #E96C30;
            font-weight: bold;
            margin-right: 1px;
        }

.selectedfilters a:last-child {
    border-right: none;
}

.chevron-icon {
    transition: transform 0.3s ease;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1rem; /* Adjust size if needed */
}

/*@media (min-width: 992px) {*/
.navbar-filter .navbar-expand-lg .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
}
/*}*/

@media (max-width: 980px) {
    /*For Mobile devices*/
    .navbar-SortBy .navbar-collapse {
        display: flex !important;
        flex-basis: auto;
    }

    .navbar-nav-SortBy {
        padding: 0.25rem !important;
        margin: 0 !important;
    }

    .nav-item-SortBy {
        padding-right: 0.5rem !important;
        padding-left: 0.5rem !important;
    }

    .nav-link-SortBy {
        font-size: 15px;
        font-weight: bold;
    }

    .nav-item-filter {
        float: right;
    }
}

.customer-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.customer-section {
    flex-direction: row;
}

.modal-target {
    width: 220px;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

    .modal-target:hover {
        opacity: 0.7;
    }

/* The Modal (background) */
.modal_p {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1100; /* Sit on top */
    padding-top: 10%; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.8); /* Black w/ opacity */
}

/* Modal Content (image) */
.modal-content_p {
    margin: auto;
    display: block;
    /*width: 40%;*/
    /*top: 20%;*/
    opacity: 1 !important;
    /*max-width: 400px;*/
}

/* Caption of Modal Image */
.modal-caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 1200px;
    text-align: center;
    color: white;
    font-weight: 700;
    font-size: 1em;
    margin-top: 32px;
}

/* Add Animation */
.modal-content_p, .modal-caption {
    -webkit-animation-name: zoom;
    -webkit-animation-duration: 0.6s;
    animation-name: zoom;
    animation-duration: 0.6s;
}

@-webkit-keyframes zoom {
    from {
        -webkit-atransform: scale(0)
    }

    to {
        -webkit-transform: scale(1)
    }
}

@keyframes zoom {
    from {
        transform: scale(0)
    }

    to {
        transform: scale(1)
    }
}

/* The Close Button */
.modal-close {
    position: absolute;
    top: 20%;
    right: 30%;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    text-shadow: 0 0 3px #FF0000, 0 0 5px #0000FF;
}

    .modal-close:hover,
    .modal-close:focus {
        color: #bbb;
        text-decoration: none;
        cursor: pointer;
    }

.product-detail {
    position: relative;
    /*min-height: 390px;*/
    padding-left: 35px;
    padding-right: 35px;
    padding-bottom: 10px;
    padding-top: 10px;
}

.product-comparison {
    background-color: #EFF0F4;
    display: inline-block;
    position: absolute;
    bottom: 0px;
    border-radius: 5px;
    width: 88%;
}

.product-price {
    background-color: #f9f9f9;
    border-radius: 10px;
}

.product-description {
    padding-top: 50px;
}

.product-specification {
    padding-top: 30px;
    scroll-margin-top: 8rem;
}

    .product-specification .item {
        padding-top: 1rem;
        padding-bottom: 0.25rem;
        border-bottom: #C6C6C6 1px solid;
    }

.product-details {
    padding-top: 30px;
    scroll-margin-top: 8rem;
}

    .product-details .item {
        padding-top: 1rem;
        padding-bottom: 0.25rem;
        border-bottom: #C6C6C6 1px solid;
    }

.price-container {
}

    .price-container::before {
        content: '';
        display: inline-block;
        /*height: 100%;*/
        vertical-align: middle;
        margin-left: -0.5ch;
    }

    .price-container .child {
        /*display: inline-block;*/
        vertical-align: middle;
    }

.product-related-printer {
    padding-top: 20px;
    scroll-margin-top: 8rem;
}

.custom-dropdown {
    position: relative;
    width: 100%;
}

.dropdown-selected {
    display: flex;
    justify-content: space-between;
    padding: 7px;
    border: 1px solid #ccc;
    cursor: pointer;
    border-radius: 5px;
}

.dropdown-list {
    display: none; /* Hidden by default */
    position: absolute;
    z-index: 100;
    background-color: #fff;
    width: 100%;
    border: 1px solid #cecece;
}

.dropdown-list-show {
    display: block; /* Show when 'show' class is applied */
    position: absolute;
    z-index: 100;
    background-color: #fff;
    width: 100%;
    border: 1px solid #cecece;
}

.dropdown-item {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    cursor: pointer;
    border: 1px solid #e9ecef
}

    .dropdown-item:hover {
        background-color: #f0f0f0;
    }

.item-text {
    display: flex;
    width: 50px;
    padding-left: 10px;
}

.dropdown-toggle-icon {
    margin-left: 10px;
    font-size: 10px;
    display: flex;
    align-items: center;
}

.item-price {
    white-space: nowrap;
    flex: 1; /* Center aligned */
    text-align: center;
    /*font-weight:bold;*/
}

.item-discount {
    flex: 1; /* Right aligned */
    text-align: right;
    font-size: 13px;
    color: #008a3a;
}

.fs-title {
    font-size: 17px;
}

.product-name-in-floating {
    display: none; /* Initially hidden */
    padding: 10px 0;
}

@media (max-width: 575.98px) {
    .fs-title {
        font-size: 15px !important;
        line-height: 19px;
        text-align: center
    }

    .product-photo {
        width: 95%;
        margin-left: 10px;
    }

    .product-detail {
        padding-left: 10px;
        padding-right: 10px;
        min-height: 100%;
    }

    .product-comparison {
        width: 95%;
        position: inherit;
        margin-top: 10px !important;
    }

    .product-price {
        width: 95%;
        margin-left: 10px;
    }

    .product-comparison {
        margin-right: 0px;
    }

    .product-photo .modal-target {
        width: 90%;
    }


    .product-description {
        padding-top: 0px;
    }

    .product-specification {
        padding-top: 10px;
    }

        .product-specification .item {
            padding-top: 0rem;
            padding-bottom: 0rem;
        }


    .price-container .child {
        padding: 0rem !important
    }
}

.related-product-tiles {
    border: #C6C6C6 1px solid;
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 30px;
}

    .related-product-tiles .name-link {
        color: rgb(0, 68, 204);
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }

.gift-gadgets-banner {
    border: #e7e9eb 1px solid;
    background-color: #e7e9eb;
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 10px;
}

.LimitTitle {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.separator2 {
    background: #454545;
    width: 100%;
    height: 1px;
}

.box {
    float: left;
    height: 14px;
    width: 14px;
    border: 2px solid white;
    margin-top: 3px;
}

.black {
    background-color: #000000;
}

.cyan {
    background-color: #68eafd;
}

.magenta {
    background-color: #ed47c3;
}

.yellow {
    background-color: #fbdc5c;
}

.custom-tooltip {
    --bs-tooltip-bg: var(--bs-primary);
}


.ypologo-img {
    height: 80px;
    max-width: 150px;
    object-fit: contain;
}

.ypodivider {
    width: 1px;
    height: 60px;
    background-color: #dee2e6;
    opacity: 0.3;
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
    .ypologo-img {
        height: 60px;
        max-width: 120px;
    }

    .ypodivider {
        display: none; /* hide dividers on smaller screens */
    }
}

@media (max-width: 576px) {
    .ypologo-img {
        height: 50px;
        max-width: 100px;
        margin-bottom: 10px;
    }
}