﻿/* material icons */

.mdi {
    font-size: 24px;
    line-height: 1;
}

/* general settings */

#custom-search-input button:focus,
select:focus,
button:focus,
a,
a:hover,
a:focus,
a:active,
ol,
ul,
dl {
    text-decoration: none;
    outline: none;
    list-style-type: none;
}

body {
    overflow-x: hidden;
}

a {
    color: #17a2b8;
}

    a:hover {
        color: #00576B;
    }

.shadow-layer {
    position: fixed;
    min-height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background: #212529;
    opacity: 0.3;
    cursor: pointer;
    z-index: 2;
    display: none;
    transition: all .3s ease;
}

.fly-in .shadow-layer {
    display: block;
}

@keyframes cd-fade-in {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

.generalMarginSupporter {
    margin: 15px 0;
}

section {
    overflow: auto;
}

.required {
    color: #F00;
}

.generalTitle {
    font-weight: 500;
    margin: 0 0 15px 0;
}

.link-rss {
    float: right;
}

.zin {
    left: 200%;
}

.page {
    min-height: 445px;
}

input {
    height: 38px;
}

/* Custom Checkbox & Radio Buttons */
.custom-radio .custom-control.label,
.custom-checkbox .custom-control-label {
    cursor: pointer;
}

.custom-radio .custom-control-input:checked ~ .custom-control-label::before,
.custom-checkbox .custom-control-input:checked ~ .custom-control-label::before {
    background-color: #F26526;
}

.custom-control-input:checked ~ .custom-control-label::before {
    color: #fff;
    background-color: #F26526;
}

/* Default Buttons */

.btn.focus,
.btn:focus {
    outline: 0;
    box-shadow: unset;
}

.btn-primary:not(:disabled):not(.disabled).active:focus,
.btn-primary:not(:disabled):not(.disabled):active:focus,
.show > .btn-primary.dropdown-toggle:focus {
    box-shadow: unset;
}

.btn-primary:not(:disabled):not(.disabled).active:focus,
.btn-primary:not(:disabled):not(.disabled):active:focus,
.show > .btn-primary.dropdown-toggle:focus {
    box-shadow: unset;
}

.btn-primary {
    background-color: #46638C;
    border-color: #46638C;
}

    .btn-primary:hover {
        background-color: #637DB1;
        border-color: #637DB1;
    }

.btn-info {
    background-color: #0091b5;
    border-color: #0091b5;
}

.btn-secondary {
    color: #292b2c;
    background-color: #fff;
    border-color: rgba(0, 0, 0, .3);
}

.btn,
.custom-checkbox {
    cursor: pointer;
}

.btn {
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

.btn-secondary {
    color: #fff;
    background-color: #1D1F20;
    border-color: #1D1F20;
}

    .btn-secondary:hover {
        color: #1D1F20;
        background-color: transparent;
    }

.btn-outline-secondary {
    color: #1D1F20;
    border-color: #1D1F20;
}

    .btn-outline-secondary:hover {
        background-color: #1D1F20;
        border-color: #1D1F20;
    }

.btn-outline-white {
    border: 2px solid #fff;
    color: #fff;
    background-color: transparent;
}

    .btn-outline-white:hover {
        color: #1D1F20;
        background-color: #fff;
    }

/* default card */

.card-success {
    background-color: #F26526 !important;
}

.card-danger {
    background-color: #dc3545 !important;
}

.card-warning {
    background-color: #ffc107 !important;
}

/* default backgrounds */

.bg-info,
.badge-info {
    background-color: #0091b5 !important;
}

.bg-primary,
.badge-primary {
    background-color: #425F99 !important;
}

.bg-dark,
.badge-dark {
    background-color: #364150 !important;
}

/* others */

.message-error,
.message-error ul li {
    color: #dc3545;
}

.field-validation-error {
    color: #eb100f;
    font-size: 13px;
}

i.rotate,
span.rotate {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
    transition: all 0.3s linear;
}

.noscroll {
    overflow: hidden !important;
    width: 100%;
}

.modal-open {
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 0 !important;
}

.navbar-nav .dropdown-menu {
    position: absolute;
    float: left;
}

/* canavs */

.c-offcanvas-content-wrap {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.c-offcanvas-bg.is-animating, .c-offcanvas-bg.is-open {
    background-color: rgba(0, 0, 0, 0.3);
}

.c-offcanvas--left,
.c-offcanvas--right {
    box-shadow: 0 0 24px rgba(0,0,0,0.3);
}

.c-offcanvas--right {
    width: 35%;
    transform: translate3d(100%, 0, 0);
}

.mobile-menu:not(.c-offcanvas--overlay),
.mobile-filters:not(.c-offcanvas--overlay) .flyout-cart,
.flycart-container:not(.c-offcanvas--overlay) .flyout-cart {
    display: none;
}

/*loading animation*/

#loading {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: fixed;
    display: block;
    opacity: 1;
    background-color: transparent;
    z-index: 99999;
    text-align: center;
}

.loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-style: solid;
    border-radius: 50%;
    border-color: transparent;
    animation: 1s pulse infinite;
    animation-delay: 500ms;
}

@keyframes pulse {
    0% {
        height: 0px;
        width: 0px;
        border-color: #28a745;
        border-width: 32px;
        opacity: 0;
    }

    40% {
        opacity: 1;
    }

    80% {
        height: 64px;
        width: 64px;
        border-width: 0px;
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}
/*back to top*/

#back-to-top {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    position: fixed;
    bottom: 15px;
    right: 15px;
    width: 45px;
    height: 45px;
    cursor: pointer;
    transition: all 0.3s ease-out;
    opacity: 0;
    z-index: 997;
    background: #fff;
    box-shadow: 0 0 5px rgba(41, 41, 41, .2);
    border-radius: 100%;
}

    #back-to-top .lnr {
        color: #292929;
        font-size: 20px;
        font-weight: 700;
    }

    #back-to-top:hover .lnr {
        color: #292929;
    }

    #back-to-top.show {
        opacity: 1;
    }
/*search*/

.headBottom {
    position: relative;
}

    .headBottom .formSearch {
        transition: all .3s ease;
    }

body:not(.is-ready) .search-box-button {
    width: 50px;
}

.search-box-button {
    height: 38px;
}

.search-results-list {
    display: none;
    position: absolute;
}

.advanced-search {
    display: none;
}

    .basic-search .col-form-label,
    .advanced-search .col-form-label {
        font-weight: 400;
    }
/*autocomplete*/

.advanced-search-results {
    display: none !important;
}

    .advanced-search-results .no-data {
        display: none;
        margin: 0 0 0 15px;
        padding: 20px 0 0 50px !important;
        font-size: 14px;
        text-align: left;
    }

        .advanced-search-results .no-data::before {
            font-size: 32px;
            left: 20px;
            top: 5px;
        }

    .advanced-search-results.open {
        display: flex !important;
        position: absolute;
        top: 52px;
        left: 15px;
        width: 100%;
        max-height: calc(100vh - 52px);
        overflow: auto;
        padding-left: 0;
        border: 1px solid rgba(0, 0, 0, .15);
        border-top: 0;
        border-bottom-left-radius: 4px;
        border-bottom-right-radius: 4px;
        background: #fff;
        box-shadow: 0px 5px 15px 1px rgba(0, 0, 0, .2);
        z-index: 1038;
    }

    .advanced-search-results ul {
        padding-left: 0;
    }

    .advanced-search-results .categories-container > ul {
        margin-bottom: 10px;
    }

    .advanced-search-results .title {
        margin-bottom: 10px;
        line-height: 1;
        font-weight: 300;
        font-size: 24px;
        color: #1D1F20;
    }

    .advanced-search-results .products-container .container-off,
    .advanced-search-results .blog-container .container-off {
        display: flex;
        flex-direction: column;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .advanced-search-results .products-container .product-in,
    .advanced-search-results .products-container .in-separator,
    .advanced-search-results .blog-container .in-separator,
    .advanced-search-results .blog-container .product-in {
        display: none;
    }

    .advanced-search-results .in-separator {
        color: #F26526;
        margin-right: 5px;
    }

    .advanced-search-results .categories-container .product-in,
    .advanced-search-results .manufacturers-container .product-in {
        margin-right: 5px;
        font-weight: 900;
    }

    .advanced-search-results .categories-container .product-title,
    .advanced-search-results .manufacturers-container .product-title {
        color: #F26526;
    }

    .advanced-search-results .categories-container .container-off,
    .advanced-search-results .manufacturers-container .container-off {
        display: inline-flex;
        font-weight: 300;
    }

    .advanced-search-results .product-title b {
        font-weight: 900;
    }

    .advanced-search-results .product-desc b {
        color: #212529;
    }

    .advanced-search-results .left-side,
    .advanced-search-results .right-side {
        padding: 0 15px 0 15px;
        margin: 15px 0;
    }

    .advanced-search-results .categories-container .list-group-item,
    .advanced-search-results .manufacturers-container .list-group-item,
    .advanced-search-results .blog-container .list-group-item {
        padding: 5px 0;
        border: 0;
    }

        .advanced-search-results .categories-container .list-group-item a,
        .advanced-search-results .manufacturers-container .list-group-item a,
        .advanced-search-results .blog-container .list-group-item a {
            display: inline-flex;
            align-items: center;
            width: 100%;
            line-height: 1;
            font-size: 14px;
            color: #212529;
        }

    .advanced-search-results img {
        width: auto;
        height: auto;
        padding-right: 0 !important;
        margin-right: 15px;
    }

    .advanced-search-results .right-side {
        padding-left: 0;
    }

    .advanced-search-results .products-title {
        padding-left: 15px;
    }

    .advanced-search-results .products-container .list-group-item {
        margin-bottom: 0;
        border-radius: 0;
        border: 0;
        padding: 5px 5px 5px 15px;
        overflow: hidden;
    }

    .advanced-search-results .products-container .product-title,
    .advanced-search-results .blog-container .product-title {
        font-weight: 300;
        font-size: 14px;
        color: #212529;
        text-overflow: ellipsis;
        white-space: nowrap;
        overflow: hidden;
    }

    .advanced-search-results .products-container .product-desc {
        color: #6c757d;
        max-height: 21px;
        font-size: 14px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .advanced-search-results .blog-container .product-desc {
        color: #6c757d;
        max-height: 21px;
        font-size: 14px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        max-width: 100%;
    }

ul.ui-autocomplete li:hover {
    cursor: pointer;
    background-color: #f7f7f9;
}

ul.ui-autocomplete {
    display: none !important;
    background-color: #fff;
    padding-left: 0;
    z-index: 9999;
    animation-name: autocomplete-desktop;
    animation-duration: .3s;
    -webkit-animation-name: autocomplete-desktop;
    -webkit-animation-duration: .3s;
    box-shadow: 0 0 16px rgba(0, 0, 0, 0.45);
    position: absolute !important;
}

@-webkit-keyframes autocomplete-desktop {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes autocomplete-desktop {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

ul.ui-autocomplete li {
    padding: 10px;
    border-top: 1px solid #f1f1f1;
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}

    ul.ui-autocomplete li img {
        padding-right: 5px;
        width: 100%;
        height: 100%;
    }
/*news*/

.news-body ul {
    list-style-type: inherit;
}

.share-link {
    padding-left: 10px;
    position: relative;
    top: 3px;
}

.news-item-page img {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
}
/*news home-page*/

.news-list-homepage .card-header {
    padding: 1.25rem 1.25rem;
    height: 100%;
    font-weight: 500;
}

    .news-list-homepage .card-header .h5 {
        font-weight: 500;
    }

.news-list-homepage .card-body {
    font-weight: 300;
}

.news-list-homepage .card-header .img-container {
    margin-bottom: 1.25rem;
}

.news-list-homepage .card .img-container,
.blog-list-homepage .card .img-container,
.blog-posts .card .img-container,
.news-items .card .img-container,
.blogpost-page .card .img-container,
.news-item-page .card .img-container {
    overflow: hidden;
}
/*blog home-page*/

.blog-list-homepage .card-header {
    padding: 1.25rem 1.25rem;
}

    .blog-list-homepage .card-header .img-container {
        margin-bottom: 1.25rem;
    }
/*checkout*/

.method-name label {
    margin-right: 0;
    font-size: 14px;
}

.checkout-attributes div {
    margin-bottom: 10px;
}

.recaptcha_input_area input {
    height: 30px;
    margin: 0;
}

.product-tags-list .btn {
    margin: 8px;
}

.add-more-external-records a {
    font-size: 14px;
}

.terms-of-service label,
.select-boxes label {
    margin: 0;
}

.filtered-items ul li:before {
    display: none;
}
/*external modal*/

.external-authentication {
    display: flex;
}

#action_modal_banner {
    position: relative;
    background: #FFF;
    padding: 20px;
    width: auto;
    max-width: 650px;
    margin: 20px auto;
}

#action_modal_form {
    position: relative;
    background: #FFF;
    padding: 20px;
    width: auto;
    max-width: 650px;
    margin: 20px auto;
}

.my-mfp-zoom-in .zoom-anim-dialog {
    opacity: 0;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    -webkit-transform: scale(0.8);
    -moz-transform: scale(0.8);
    -ms-transform: scale(0.8);
    -o-transform: scale(0.8);
    transform: scale(0.8);
}

.my-mfp-zoom-in.mfp-ready .zoom-anim-dialog {
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}

.my-mfp-zoom-in.mfp-removing .zoom-anim-dialog {
    -webkit-transform: scale(0.8);
    -moz-transform: scale(0.8);
    -ms-transform: scale(0.8);
    -o-transform: scale(0.8);
    transform: scale(0.8);
    opacity: 0;
}

.my-mfp-zoom-in.mfp-bg {
    opacity: 0;
    -webkit-transition: opacity 0.3s ease-out;
    -moz-transition: opacity 0.3s ease-out;
    -o-transition: opacity 0.3s ease-out;
    transition: opacity 0.3s ease-out;
}

.my-mfp-zoom-in.mfp-ready.mfp-bg {
    opacity: 0.8;
}

.my-mfp-zoom-in.mfp-removing.mfp-bg {
    opacity: 0;
}

.my-mfp-slide-bottom .zoom-anim-dialog {
    opacity: 0;
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
    -webkit-transform: translateY(-20px) perspective(600px) rotateX(10deg);
    -moz-transform: translateY(-20px) perspective(600px) rotateX(10deg);
    -ms-transform: translateY(-20px) perspective(600px) rotateX(10deg);
    -o-transform: translateY(-20px) perspective(600px) rotateX(10deg);
    transform: translateY(-20px) perspective(600px) rotateX(10deg);
}

.my-mfp-slide-bottom.mfp-ready .zoom-anim-dialog {
    opacity: 1;
    -webkit-transform: translateY(0) perspective(600px) rotateX(0);
    -moz-transform: translateY(0) perspective(600px) rotateX(0);
    -ms-transform: translateY(0) perspective(600px) rotateX(0);
    -o-transform: translateY(0) perspective(600px) rotateX(0);
    transform: translateY(0) perspective(600px) rotateX(0);
}

.my-mfp-slide-bottom.mfp-removing .zoom-anim-dialog {
    opacity: 0;
    -webkit-transform: translateY(-10px) perspective(600px) rotateX(10deg);
    -moz-transform: translateY(-10px) perspective(600px) rotateX(10deg);
    -ms-transform: translateY(-10px) perspective(600px) rotateX(10deg);
    -o-transform: translateY(-10px) perspective(600px) rotateX(10deg);
    transform: translateY(-10px) perspective(600px) rotateX(10deg);
}

.my-mfp-slide-bottom.mfp-bg {
    opacity: 0;
    -webkit-transition: opacity 0.3s ease-out;
    -moz-transition: opacity 0.3s ease-out;
    -o-transition: opacity 0.3s ease-out;
    transition: opacity 0.3s ease-out;
}

.my-mfp-slide-bottom.mfp-ready.mfp-bg {
    opacity: 0.8;
}

.my-mfp-slide-bottom.mfp-removing.mfp-bg {
    opacity: 0;
}

.mfp-wrap {
    z-index: 1051 !important;
}

.mfp-bg {
    z-index: 1051 !important;
}

.modal-padding-off {
    background-color: #ddd;
}

#ModalQuickView {
    overflow-x: hidden;
    overflow-y: auto;
    padding-right: 0 !important;
}

#ModalAddToCart {
    z-index: 9999;
}

    #ModalAddToCart .modal-content {
        overflow: auto;
        border: 0;
    }

    #ModalAddToCart .modal-header {
        color: #fff;
        padding: 15px;
    }

        #ModalAddToCart .modal-header .mdi-cart-plus {
            font-size: 16px;
        }

    #ModalAddToCart .btn-group .btn {
        font-weight: 500;
        cursor: pointer;
    }

    #ModalAddToCart .close {
        position: absolute;
        top: 15px;
        right: 15px;
        padding: 0;
        margin: 0;
        color: #ffffff;
        text-shadow: 0 1px 0 #000000;
    }

    #ModalAddToCart .cart-prod-title a {
        color: #F05E26;
    }

        #ModalAddToCart .cart-prod-title a:hover {
            color: #ca410b;
        }

    #ModalAddToCart .modal-padding-off {
        background-color: transparent;
    }

    #ModalAddToCart label.lbl-title {
        font-weight: 600;
        font-size: 14px;
    }

    #ModalAddToCart .modal-padding-off h5 {
        font-weight: 600;
        font-size: 18px;
    }

    #ModalAddToCart .cross-sell-container {
        max-height: 500px;
        overflow: auto;
        margin-top: 15px;
    }

        #ModalAddToCart .cross-sell-container .btn-group .btn.btn-primary .add-cart-text {
            display: none !important;
        }

        #ModalAddToCart .cross-sell-container .btn-group .btn.btn-primary .fa-shopping-cart {
            display: block !important;
        }

    #ModalAddToCart .cross-sells .card.gen .card-buttons {
        display: none;
    }
/*navbar*/

.navbar-nav .generalDropDown .dropdown-menu ul a:hover {
    color: #0a5596;
}

.dropdown-menu li {
    display: inline-flex;
    width: 100%;
}

.mainNav .dropdown-menu li:last-of-type {
    border-bottom: 1px solid rgba(0, 0, 0, .1);
    border-bottom-left-radius: .25rem;
    border-bottom-right-radius: .25rem;
}

.mainNav .dropdown-menu:not(.manufacturer-dropdown) li:nth-child(3),
.mainNav .dropdown-menu:not(.links-dropdown) li:nth-child(3),
.mainNav .manufacturer-dropdown li:first-child,
.mainNav .links-dropdown li:first-child {
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}

.mainNav .dropdown-menu li {
    border-left: 1px solid rgba(0, 0, 0, .1);
    border-right: 1px solid rgba(0, 0, 0, .1);
}

.mainNav .dropdown-menu {
    padding-top: 0;
    padding-bottom: 0;
}

.navbar-inner {
    min-height: 60px;
}

.navbar .brand {
    padding: 0 10px;
}

.brand img {
    margin-bottom: 5px;
}

.navbar .nav > li > a,
.navbar .nav.mainNav > li > a {
    padding-left: 7px;
    padding-top: 10px;
    padding-bottom: 10px;
}

.navbar-default .navbar-nav > .open > a,
.navbar-default .navbar-nav > .open > a:focus,
.navbar-default .navbar-nav > .open > a:hover {
    background-color: #4f4f50;
}
/*nav fixed - top -*/

.navUp .nav-item .nav-link .mdi {
    font-size: 24px;
}

.navUp li a {
    font-size: 14px;
    line-height: 20px;
}

nav .nav-item.list-inline {
    padding-top: 3px;
}

.navUp .dropdown-menu ul a {
    color: #373a3c;
    margin: auto;
}

.navbar-light .navbar-nav .nav-link {
    padding-top: 10px;
    padding-right: 4px;
    letter-spacing: 0.2px;
    display: flex;
    font-weight: 300;
    color: #1D1F20;
    transition: all .3s ease;
}

.navUp .dropdown-menu {
    margin-top: 0;
    background-color: #fff;
    min-width: 40px;
}

.navUp {
    z-index: 1031;
    height: 43px;
    border-bottom: 1px solid #ddd;
    background: #fff;
}
/*main - category nav - mainNav*/

.mainNav .nav-item .nav-link {
    padding-right: 1rem;
}

.mainNav a {
    color: #364150;
    font-size: 16px;
    font-weight: 400;
}

.mainNav .dropdown-menu a {
    font-weight: 400;
}

.generalDropDown {
    -webkit-transition: all 0.3s;
    -webkit-transition-timing-function: linear;
    transition: all 0.3s;
    transition-timing-function: linear;
}

.mainNav .dropdown-toggle::after {
    display: none;
}

.mainNav .nav-item.dropdown button {
    position: absolute;
    right: 0;
    font-size: 19px;
}

.navbar.mainNav .nav > li:hover > a {
    color: #0069d9;
}

.navbar.mainNav .navbar-toggler {
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    display: ruby;
    width: 100%;
    text-align: left;
    padding: 7px 13px;
    text-transform: uppercase;
    font-size: 19px;
}

.mainNav {
    clear: both;
    z-index: 998;
}

.fly-in .mainNav {
    z-index: 997;
}

.page-container.fixed {
    margin-top: 59px;
}

.mainNav.fixed {
    position: fixed;
    top: 42px;
}

.mainNav .badge {
    position: absolute;
    top: -10px;
    right: 5px;
    color: #fff;
    font-weight: 500;
    border-radius: 4px;
}

    .mainNav .badge::before {
        border: 4px solid transparent;
        position: absolute;
        content: "";
        right: 50%;
        bottom: -8px;
        z-index: 9999999;
    }

    .mainNav .badge-danger::before,
    .mainNav .badge.bg-danger::before {
        border-top: 5px solid #dc3545;
    }

    .mainNav .badge-primary::before,
    .mainNav .badge.bg-primary::before {
        border-top: 5px solid #425F99;
    }

    .mainNav .badge-info::before,
    .mainNav .badge.bg-info::before {
        border-top: 5px solid #0091b5;
    }

    .mainNav .badge-warning::before,
    .mainNav .badge.bg-warning::before {
        border-top: 5px solid #ffc107;
    }

    .mainNav .badge-success::before,
    .mainNav .badge.bg-success::before {
        border-top: 5px solid #28a745;
    }

.mainNav .dropdown-menu .badge {
    bottom: 0;
    top: unset;
}

.mainNav .navbar-nav .nav-item.dropdown .dropdown-toggle .arrow-down {
    font-size: 18px;
}

.mainNav .navbar-nav > .nav-item.dropdown > .dropdown-toggle .arrow-down {
    position: absolute;
    right: 0;
}

/* animate */

.delay-0-5s {
    -webkit-animation-delay: .5s;
    animation-delay: .5s;
}

.delay-1-5s {
    -webkit-animation-delay: 1.5s;
    animation-delay: 1.5s;
}

.delay-2-5s {
    -webkit-animation-delay: 2.5s;
    animation-delay: 2.5s;
}

.delay-3-5s {
    -webkit-animation-delay: 3.5s;
    animation-delay: 3.5s;
}

/*header*/

section .product-filters,
.category-page .categoryGrid,
header section {
    overflow: initial;
}

.page-separator {
    width: 100%;
    height: 1px;
    background: #dfdfdf;
    margin: 30px 0;
}

a.read {
    padding-left: 10px;
    font-weight: 700;
}

.mfp-content img {
    width: auto;
}

.img-wish {
    width: 100%;
    max-width: 500px;
}

ul.color-squares input {
    display: none;
}

.product-bundle .card:first-of-type {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border-bottom: 0;
}

.product-bundle .card:last-of-type {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-top: 0;
}

/* catalog selectors */

.catalog-selectors .sort-container {
    display: inline-flex;
    align-items: center;
}

    .catalog-selectors .sort-container label {
        font-size: 16px;
        font-weight: 400;
        white-space: nowrap;
    }

.catalog-selectors #items_statistics {
    font-size: 14px;
    color: #888;
}

    .catalog-selectors #items_statistics .number {
        margin: 0 5px;
    }

    .catalog-selectors #items_statistics .items-total {
        margin-left: 5px;
    }

/* featured product */

.featured-product .card-title {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.featured-product .prod-list .actual-price {
    font-size: 16px;
}

.featured-product .old-price {
    font-size: 14px;
}

.featured-product .prod-list {
    display: inline-flex;
}

.featured-product .card-body {
    position: relative;
    max-width: calc(100% - 125px);
    padding: 0 15px;
    overflow: hidden;
}

.featured-product .card-buttons {
    top: unset;
    bottom: -38px;
}

.featured-product:hover .card-buttons {
    bottom: 0;
}

.featured-product-container .card-buttons .btn-secondary {
    background-color: #fff;
    color: #17a2b8;
    border: 0;
    border-radius: 0;
}

    .featured-product-container .card-buttons .btn-secondary:hover {
        background-color: #fff;
        color: #1D1F20;
        border: 0;
        border-radius: 0;
    }

.featured-product .prod-list,
.featured-product .prod-list:hover {
    border: 0;
    box-shadow: none;
}

    .featured-product .prod-list > a {
        display: block;
        position: relative;
        width: 125px;
    }

        .featured-product .prod-list > a img {
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            max-width: 125px;
            max-height: 125px;
            margin: auto;
        }

        .featured-product .prod-list > a:before {
            content: "";
            display: block;
            padding-top: 100%;
        }

/*.featured-product-container:nth-child(2n+ 1):not(:first-child),
.featured-product-container:nth-child(2n):not(:nth-child(2)) {
    margin-top: 15px;
}*/
.featured-product:hover {
    box-shadow: unset !important;
}

.manufacturer-card,
.category-card {
    display: inline-table;
    overflow: hidden;
}

    .manufacturer-card .img-holder,
    .category-card .img-holder {
        overflow: hidden;
    }
/* mobile collapsing menu */
.logo-mobile {
    display: flex;
    height: 51px;
}

    .logo-mobile h1 {
        display: flex;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }

    .logo-mobile img {
        width: auto;
        height: 56px;
        padding-top: 5px;
        padding-bottom: 5px;
    }
/* language-mobile */

.header-links .language-list-mobile,
.header-links .tax-list-mobile,
.header-links .currency-list-mobile,
.header-links .store-list-mobile,
.header-links .currency-button,
.header-links .tax-button,
.header-links .language-button,
.header-links .store.button {
    display: none !important;
}

.option-list-mobile li {
    display: flex;
    background: #fff;
    justify-content: center;
    padding-top: 5px;
    padding-bottom: 5px;
    min-height: 51px;
}

    .option-list-mobile li a {
        color: #212529;
        align-self: center;
        font-size: 14px !important;
    }

.option-list-mobile img {
    align-self: center;
}

.option-list-mobile li:nth-child(even) {
    background-color: #f1f1f1;
}

.mobile-option-button {
    background: rgb(223, 225, 226);
    border-right: 1px solid #9da6b2;
    border-left: 1px solid #9da6b2;
    border-bottom: 1px solid #9da6b2;
    padding-top: 10px;
    padding-bottom: 10px;
    height: 51px;
    align-items: center;
    display: flex;
    justify-content: center;
    transition: .3s all ease-in-out;
}

    .mobile-option-button:before {
        pointer-events: none;
        position: absolute;
        z-index: -1;
        content: '';
        border-style: solid;
        -webkit-transition-duration: 0.3s;
        transition-duration: 0.3s;
        -webkit-transition-property: transform;
        transition-property: transform;
        left: calc(50% - 10px);
        bottom: 0;
        border-width: 10px 10px 0 10px;
        border-color: #e1e1e1 transparent transparent transparent;
    }

    .mobile-option-button.icon-change:before {
        -webkit-transform: translateY(10px);
        transform: translateY(10px);
        border-color: #212529 transparent transparent transparent;
    }

.options-container {
    padding: 15px;
    background: #f1f1f1;
}

.o-c-h {
    top: -52px;
    position: absolute;
}
/* impersonated */

#small-search-box-form .impersonated-container {
    display: none;
}

.impersonated-container {
    border: 1px solid #ffffff;
    border-radius: .25rem;
    padding: 5px;
    height: 30px;
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    color: #fff;
}
/* mobile - search */

#searchModal form {
    padding-top: 0;
    margin-bottom: 0;
}

#searchModal .modal-content {
    border: 0;
    border-radius: 0;
    background-color: #f7f7f7;
}

#searchModal .modal-dialog {
    margin: 0;
    max-width: 100%;
}

#searchModal form .administration {
    display: none;
}

#searchModal .search-box-text {
    height: 46px;
    border-radius: 0;
    border: 0;
    background: #f7f7f7;
}

#searchModal .search-box-button {
    width: 46px;
    height: 46px;
    display: flex;
    border-radius: 0;
    justify-content: center;
}

#searchModal .fa-search {
    font-size: 22px;
    color: #fff;
}

#searchModal .fa-pencil-square-o {
    font-size: 22px;
    color: rgba(0, 0, 0, .5);
}

#searchModal.modal.fade .modal-dialog {
    transition: unset;
    height: 52px;
    position: sticky;
    width: 100%;
    top: 0;
}

#searchModal.show .modal-content .input-group {
    animation-name: mobile-search;
    animation-duration: .3s;
    -webkit-animation-name: mobile-search;
    /* Safari 4.0 - 8.0 */
    -webkit-animation-duration: .3s;
}

@-webkit-keyframes mobile-search {
    0% {
        top: -52px;
    }

    100% {
        top: 0;
    }
}

@keyframes mobile-search {
    0% {
        top: -52px;
    }

    100% {
        top: 0;
    }
}

@-webkit-keyframes autocomplete {
    0% {
        left: -100%;
    }

    100% {
        left: 0;
    }
}

@keyframes autocomplete {
    0% {
        left: -100%;
    }

    100% {
        left: 0;
    }
}

#searchModal .nav-item.admin {
    display: none !important;
}

.register-block .text {
    padding-top: 7px;
}

.block-recently-viewed-products li {
    overflow: auto;
}

    .block-recently-viewed-products li a {
        display: flex;
        align-items: center;
    }

list settings .list__item,
.listClear {
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.card .btn i {
    font-size: 15px;
}

.list-group {
    padding-bottom: 25px;
}
/*polls*/

.progress {
    display: -webkit-box;
    overflow: hidden;
    font-size: .75rem;
    line-height: 1rem;
    background-color: #eceeef;
    border-radius: .25rem;
    width: 100%;
    text-align: right;
}

.card-title a {
    color: #1D1F20;
    text-decoration: none;
}

.card-title {
    color: #1D1F20;
}

.order-progress .list-inline-item:not(:last-child) {
    margin-right: 0px;
}

.order-progress .active-step a,
.order-progress .inactive-step a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

    .order-progress .active-step a.btn-info:hover {
        color: #fff;
    }

    .order-progress .active-step a.btn-secondary:hover,
    .order-progress .inactive-step a.btn-secondary:hover {
        color: #1d1f20;
    }

.progress-bar {
    color: #212529;
}
/*homepage*/

.home-page-polls {
    margin: 40px 0;
}

    .home-page-polls .list-group .list-group-item {
        background-color: rgb(255, 255, 255);
    }

    .home-page-polls fieldset,
    .home-page-polls fieldset .custom-control {
        display: inline-block;
    }

    .home-page-polls .custom-control-label {
        margin-right: -3px;
    }

.category-page .subCategoryList p,
.home-page-product-grid p {
    font-size: 12px;
    padding-top: 15px;
}

.login-page .inputs {
    padding-left: 3px;
}
/* reservations */

#hoursDiv input {
    visibility: hidden;
    width: 0;
}
/*productbox*/

.card.gen {
    border-radius: 0;
    border: 0;
}

    .card.gen img {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        width: auto;
        max-width: 100%;
        max-height: 100%;
        margin: auto;
    }

    .card.gen .picture {
        display: block;
        position: relative;
    }

        .card.gen .picture::before {
            content: "";
            display: block;
            padding-top: 100%;
        }

.change-percent {
    position: absolute;
    top: 0;
    left: -10px;
    padding: 5px;
    font-weight: 300;
    font-size: 16px;
    box-shadow: 2px 2px 4px 0 rgba(0,0,0,.2);
    transition: all .3s ease;
}

    .change-percent:before {
        content: "";
        position: absolute;
        left: 0;
        bottom: -10px;
        width: 10px;
        height: 10px;
        width: 0;
        height: 0;
        border-top: 10px solid #128c2d;
        border-left: 10px solid transparent;
        margin: 25px auto 0;
    }

.new-product-label {
    z-index: 1;
    position: absolute;
    top: 0;
    left: -10px;
    padding: 5px;
    font-weight: 300;
    font-size: 16px;
    box-shadow: 2px 2px 4px 0 rgba(0,0,0,.2);
    transition: all .3s ease;
}

    .new-product-label.with-promo {
        top: 45px;
    }

    .new-product-label:before {
        content: "";
        position: absolute;
        left: 0;
        bottom: -10px;
        width: 10px;
        height: 10px;
        width: 0;
        height: 0;
        font-weight: 700;
        border-top: 10px solid #02899c;
        border-left: 10px solid transparent;
        margin: 25px auto 0;
        transition: all .3s ease;
    }

.card.gen .card-body-content .card-title {
    padding-top: 10px;
}

    .card.gen .card-body-content .card-title a,
    .featured-product .card-body .card-title a {
        font-weight: 400;
        font-size: 16px;
    }

.card.gen .card-body {
    position: relative;
}

    .card.gen .card-body .card-body-content {
        z-index: 99;
        width: 100%;
        padding: 0;
        position: relative;
        background: #fff;
        border-radius: 0;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }

.card.gen:hover .card-buttons {
    opacity: 1;
    top: -38px;
}

.card-buttons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    z-index: 98;
    transition: all .3s ease;
}

    .card-buttons .btn-group {
        width: 100%;
        padding: 0;
        overflow: hidden;
    }

.card.gen .btn-group .btn-info {
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0px;
    text-transform: uppercase;
}

.card.gen .btn-group .btn .mdi {
    font-size: 24px;
}

.card.gen .btn-group .btn-info {
    display: flex;
    justify-content: center;
    width: 100% !important;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    z-index: 1;
    transition: all .3s ease;
}

.card.gen .btn-group .btn-secondary {
    display: flex;
    justify-content: center;
    width: auto;
    border-right: 0;
    color: #1D1F20;
    padding: 6px 10px;
    border-color: #fff;
    border-right-color: #fff;
    background-color: #fff;
}

    .card.gen .btn-group .btn-secondary:hover {
        background-color: #0091b5;
        border-color: #0091b5;
        color: #fff;
    }

.card.gen .btn-group .btn:first-child {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
    width: 100%;
}

.card.gen .add-cart-text {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.card.gen .actual-price {
    color: #373a3c;
    font-size: 18px;
    font-weight: 500;
}

.card.gen .btn-group .btn:last-child {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
    border-right-color: #1D1F20;
}

.card.gen .btn-group .btn:nth-child(2) {
    border-left: 0;
}

.card-buttons .btn-info {
    width: 100%;
    justify-content: center;
}

.card.gen .base-price-pangv {
    font-size: 14px;
}

.card.gen .btn-group .btn + .btn,
.card.gen .btn-group .btn + .btn-group,
.card.gen .btn-group .btn-group + .btn,
.card.gen .btn-group .btn-group + .btn-group,
.card.gen .btn-group-vertical .btn + .btn,
.card.gen .btn-group-vertical .btn + .btn-group,
.card.gen .btn-group-vertical .btn-group + .btn,
.card.gen .btn-group-vertical .btn-group + .btn-group {
    margin-left: 0;
    border-left: 0;
}
/*sidebar*/

.generalLeftSide .viewBox {
    margin: 15px 0 0 0;
}

.generalLeftSide .tags .view-all {
    margin-top: 16px;
}

.generalLeftSide li:hover::before {
    -webkit-transition: all 0.3s;
    -webkit-transition-timing-function: linear;
    transition: all 0.3s;
    transition-timing-function: linear;
    color: #0091b5;
}

.generalLeftSide li.active.last::before {
    color: #0091b5;
}

.generalLeftSide li:before {
    color: #ddd;
    content: "■";
    position: relative;
    right: 8px;
    font-size: 18px;
    margin-left: -7px;
    top: 2px;
    display: none;
}

.available-items li:before {
    display: none;
}

.tab-content ul,
.available-items ul {
    padding-left: 16px;
}

.product-details-page .product-tabs .nav-link,
#pills-mobile-tab .nav-item .nav-link {
    position: relative;
    color: #5F6D74;
    font-weight: 300;
    border: 0;
    text-transform: uppercase;
}

    .product-details-page .product-tabs .nav-link.active,
    #pills-mobile-tab .nav-item .nav-link.active {
        color: #1D1F20;
        font-weight: 400;
    }

        .product-details-page .product-tabs .nav-link.active::after,
        #pills-mobile-tab .nav-item .nav-link.active::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: #1D1F20;
        }

.product-details-page #product_tab_content {
    margin-top: 15px;
}

.product-details-page .short-description {
    font-weight: 300;
}

.product-contact-error,
.product-contact-send {
    display: none;
}

.blog-filter.filter-button {
    max-width: 155px;
}

.generalLeftSide li {
    list-style-type: none;
    font-size: 14px;
}

    .generalLeftSide li a {
        position: relative;
        color: #888;
        text-decoration: none;
        font-size: 14px;
        display: flex;
        margin-bottom: 10px;
    }

.generalLeftSide .block-category-navigation li.last.active > .sublist > li a::before {
    content: "";
    position: absolute;
    top: 7px;
    left: -15px;
    width: 6px;
    height: 6px;
    border-radius: 100%;
    background: #17a2b8;
}

.generalLeftSide li a .total {
    position: absolute;
    right: 15px;
    opacity: 0.5;
}

.generalLeftSide li.active.last > a .total, .generalLeftSide li a:hover .total {
    opacity: 1;
}

.generalLeftSide li a:hover {
    color: #F26526;
}

.generalLeftSide .product-filter {
    display: block;
    width: 100%;
}

.generalLeftSide .product-spec-group .title {
    color: #888;
    margin-bottom: 5px;
}

.generalLeftSide .product-spec-group .spec-link {
    font-size: 14px;
    color: #26A69A;
}

    .generalLeftSide .product-spec-group .spec-link:hover {
        text-decoration: underline;
    }

.generalLeftSide .product-spec-group .btn-group-sm .color-squares {
    margin: 0 3px 3px 0;
}

.generalLeftSide .generalTitle strong {
    font-weight: 400;
}

.generalLeftSide .block-poll .listbox .poll-display-text {
    font-size: 14px;
    font-weight: 400;
    text-align: left;
    margin-bottom: 15px;
    border-bottom: 1px solid;
}

.generalLeftSide .block-poll .listbox fieldset .custom-control {
    text-align: left;
}

.generalLeftSide .block-poll .buttons {
    display: flex;
    justify-content: flex-start;
}

.generalLeftSide .block-poll .list-group {
    flex: 0 0 100%;
    max-width: 100%;
}

.generalLeftSide .block-poll .poll-total-votes {
    font-size: 14px;
}

.product-price-filter .btn-sm {
    min-width: 185px;
    margin-bottom: 5px !important;
}
/*forum*/

.forum-edit-page .forum-post-text {
    min-height: 200px;
}

.forum-topic-page .forum-post {
    border-right: 1px solid #d9d9d9;
}

.forum-edit-page .card textarea.form-control {
    min-height: 200px;
}

.avatar {
    overflow: hidden;
    display: table-cell;
}
/*price*/

.overview-buttons .prices {
    font-weight: 500;
    font-size: 17px;
}

.product-price .your-price strong {
    font-weight: 500;
    font-size: 24px;
}

.overview-buttons .prices .actual-price,
.associatedItem .actual-price,
.catalog-product-price {
    font-size: 1.25rem;
    font-weight: 500;
}

.category-grid a h4 {
    padding-top: 15px;
    text-decoration: none;
}

.product-details-page .overview .product-price,
.product-details-page .overview .non-discounted-price {
    padding-left: 0;
}

.product-details-page .overview .old-price {
    font-size: 17px;
}

.overview-buttons {
    display: flex;
    flex-wrap: wrap;
}

    .overview-buttons .btn-secondary {
        display: flex;
        align-items: center;
        margin-right: 5px;
    }

.old-product-price span,
.old-price {
    text-decoration: line-through;
    color: #888;
    font-size: 18px;
    font-weight: 300;
    line-height: 25px;
}

.category-grid a:hover,
.category-grid a:hover h4 {
    text-decoration: none;
}

.tags .tag-pill a {
    color: #e8eceb;
}

.tags a:hover {
    text-decoration: none;
}
/*card - settings*/

.card {
    border: 0;
    border-radius: 0;
}

.card-subtitle.text-muted {
    margin: 15px 0;
}

.card .card-footer {
    border: 0;
}

    .card .card-footer .form-group {
        margin-bottom: 0;
    }

        .card .card-footer .form-group div {
            padding: 0;
            margin-left: 6px;
        }

            .card .card-footer .form-group div .btn {
                width: 100%;
                padding: 8px;
            }

.catalog-quantity {
    max-width: 46px;
    padding-left: 5px;
    padding-right: 5px;
    border-radius: 0;
    border: 0;
    text-align: center;
}

.account-order .card,
.headBottom,
.card .card-footer .form-group div input {
    width: 100%;
}

.card .card-footer,
.card .card-header,
ul.opc .order-summary-content h5 {
    background-color: transparent;
}

.generalMiddle {
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
    display: -webkit-box;
}

.social li {
    display: inline-flex;
    margin-right: 10px;
}
/*product*/

.product-details-page .product-bundle .img-fluid {
    overflow: hidden;
}

.product-details-page .add-to-cart-button {
    margin-bottom: 4px;
}

.product-details-page .associatedItem .btn-secondary {
    min-height: 38px;
    margin-left: 5px;
}

.prod-list {
    border: 1px solid transparent;
    box-shadow: unset;
    transition: all .3s ease;
}

    .prod-list:hover {
        border: 1px solid #0091b5;
        box-shadow: 0 2px 6px 0 rgba(0,0,0,0.12)
    }

    .prod-list a {
        overflow: hidden !important;
    }

    .prod-list .actual-price {
        font-weight: 500;
        font-size: 18px;
    }

    .prod-list img {
        max-width: 200px;
        max-height: 200px;
    }

    .prod-list .product-rating-box.list-group {
        padding-bottom: 0;
    }

    .prod-list .card-title {
        margin-bottom: 0;
    }

        .prod-list .card-title strong {
            font-weight: 500;
        }

    .prod-list .img-holder {
        position: relative;
        max-width: 200px;
        width: 200px;
    }

        .prod-list .img-holder .picture {
            display: block;
            position: relative;
            height: 0;
            width: 100%;
            padding-top: 100%;
        }

.product-details-page .overview-buttons .add-to-cart-button {
    border-top-left-radius: .25rem;
    border-bottom-left-radius: .25rem;
}

.product-details-page .sp-wrap {
    max-width: 100%;
    border: 0;
    background: 0;
}

.product-details-page .sp-thumbs {
    display: inline-flex;
    overflow-x: auto;
    width: 100%;
    padding: 1px;
    flex-wrap: nowrap;
    margin-top: 15px;
}

    .product-details-page .sp-thumbs a {
        margin-right: 5px;
    }

        .product-details-page .sp-thumbs a:link,
        .sp-thumbs a:visited {
            display: flex;
            width: 100px;
            min-width: 100px;
            min-height: 100px;
            height: 100px;
            padding: .25rem;
            background-color: #fff;
            border: 4px solid #fff;
            outline: 1px solid #ddd;
        }

.product-details-page .thumbnails {
    display: inline-flex;
    flex-wrap: wrap;
    margin: 15px 0;
}

    .product-details-page .thumbnails .thumb-popup-link {
        margin-right: 5px;
    }

    .product-details-page .thumbnails img {
        width: 100px;
        height: auto;
        border-radius: 0 !important;
    }

.product-details-page .overview .generalTitle {
    font-weight: 300;
}

.sp-lightbox {
    z-index: 99999 !important;
    background: rgba(0, 0, 0, .8) !important;
}

    .sp-lightbox .close {
        color: #fff;
        opacity: 1;
    }

        .sp-lightbox .close:after {
            content: "";
            position: absolute;
            display: flex;
            background: #fff;
            top: 15px;
            right: 15px;
            width: 3px;
            height: 20px;
            transform: rotate(45deg);
        }

        .sp-lightbox .close:before {
            content: "";
            position: absolute;
            display: flex;
            background: #fff;
            top: 15px;
            right: 15px;
            width: 3px;
            height: 20px;
            transform: rotate(-45deg);
        }

    .sp-lightbox img {
        border: 0 !important;
    }

    .sp-lightbox #sp-prev,
    .sp-lightbox #sp-next {
        background: transparent !important;
        border: 0 !important;
    }

.sp-large {
    display: block !important;
}

#sp-next:before {
    content: '';
    border: 13px solid transparent !important;
    border-left: 17px solid rgba(255, 255, 255, .7) !important;
    position: absolute !important;
    top: 16px !important;
    left: 10px !important;
}

#sp-prev:before {
    content: '';
    border: 13px solid transparent !important;
    border-right: 17px solid rgba(255, 255, 255, .7) !important;
    position: absolute !important;
    top: 16px !important;
    left: 7px !important;
}
/* product quickview */

.product-quickview .product-details-page {
    background: #fff;
    padding: 15px;
}

.product-quickview .close {
    right: 0;
    top: 0;
    z-index: 1;
    opacity: 1;
    width: 50px;
    height: 50px;
    cursor: pointer !important;
}

.product-quickview .quick-close {
    width: 50px;
    height: 50px;
    position: absolute;
    top: 0;
    right: 0;
}

    .product-quickview .quick-close:before {
        content: "";
        position: absolute;
        top: 25px;
        right: 15px;
        width: 15px;
        height: 3px;
        background: #212529;
        transform: rotate(45deg);
    }

    .product-quickview .quick-close:after {
        content: "";
        position: absolute;
        top: 25px;
        right: 15px;
        width: 15px;
        height: 3px;
        background: #212529;
        transform: rotate(-45deg);
    }

@media (min-width: 576px) {
    .product-quickview .modal-dialog.container {
        max-width: 540px;
    }

    .product-quickview {
        max-width: 960px;
    }
}

@media (min-width: 768px) {
    .product-quickview .modal-dialog.container {
        max-width: 720px;
    }

    .return-request-table thead th {
        min-width: 140px;
    }

    .product-quickview {
        max-width: 960px;
    }
}

@media (min-width: 901px) and (max-width: 1200px) {
    .card.gen .btn-group .btn-info {
        font-size: 12px;
    }

    .shopping-cart-container .shopping-cart tbody {
        display: flex;
        flex-wrap: wrap;
    }

    .shopping-cart-container .shopping-cart .quantity,
    .shopping-cart-container .shopping-cart .subtotal {
        display: unset;
        height: auto;
        position: unset;
        width: 100%;
    }

    .shopping-cart-container .shopping-cart tr {
        min-height: 330px;
        padding-bottom: 10px;
    }
}

@media (min-width: 992px) {
    .product-quickview .modal-dialog.container {
        max-width: 960px;
    }

    .product-quickview {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .product-quickview .modal-dialog.container {
        max-width: 1140px;
    }
}

/* Sitemap */

.sitemap-products-group {
    display: block;
    column-count: 3;
    -moz-column-count: 3;
    -webkit-column-count: 3;
    column-fill: balance;
    line-height: 2;
}
/*table - topic*/

.topic,
table {
    border-bottom: 2px solid rgba(55, 58, 60, 0.45);
}

.table > tbody > tr > td.topic-details {
    padding-left: 35px;
}

.table > tbody > tr.short-description > td,
.table > tbody > tr.full-description > td {
    vertical-align: top;
}

.table > tbody > tr > td {
    vertical-align: middle;
}
/*!important - to handle external js*/

.categoryGrid a.viewmode-icon,
.manufacturerGrid a.viewmode-icon {
    color: #888;
    font-size: 24px;
}

    .categoryGrid a.viewmode-icon:hover {
        color: #26A69A;
    }

    .categoryGrid a.viewmode-icon.selected:hover {
        color: #26A69A;
    }

    .categoryGrid a.viewmode-icon.selected {
        color: #26A69A;
    }

.list-title .card-title {
    font-weight: 300;
    font-size: 24px;
    width: 100%;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.categoryItems .card a,
.categoryGrid .card a {
    overflow: hidden;
}

.list-picture {
    position: relative;
    overflow: hidden;
}

    .list-picture a {
        display: block;
        position: relative;
        height: 0;
        width: 100%;
        padding-top: 65%;
    }

        .list-picture a img {
            position: absolute;
            max-width: 100%;
            max-height: 100%;
            left: 0;
            top: 0;
            right: 0;
            bottom: 0;
            margin: auto;
        }

.card-grey {
    background-color: rgba(221, 221, 221, 0.29);
    cursor: pointer;
}

.step-title .fa {
    bottom: 12px;
    position: relative;
}

/* vendor */

.vendor-page .info {
    margin: 15px 0 0 0;
    padding: 15px 0;
    border-top: 1px solid #dfdfdf;
}

    .vendor-page .info .col-form-label {
        font-weight: 700;
    }

/*card*/


.cartTable .sku,
.cartTable .attributes {
    font-size: 16px;
}

.cart-collaterals .title,
.generalLeftSide h6,
.generalLeftSide h5 {
    font-size: 21px;
}

.sku-number {
    display: block;
}

section.totals {
    border-left: 1px solid #eceeef;
}

.listWiew .card-body .btn-group {
    position: absolute;
    bottom: 20px;
}

.listWiew .card-body {
    min-height: 270px;
}

.method-name .custom-control-indicator {
    top: 10px;
}

.collapse.ok {
    position: absolute;
}

.card.generalNote {
    z-index: 10000;
    position: fixed;
    width: 100%;
    display: none;
    bottom: 0;
    margin: auto;
    padding: 15px 15px;
    border-radius: 0;
}

.eu-cookie-bar-notification {
    background: rgba(125, 174, 50, .9) !important;
}

#eu-cookie-bar-notification .ok-button {
    color: #212529 !important;
    font-weight: 500;
}

#eu-cookie-bar-notification .learn-more {
    background-color: #1D1F20;
    border-color: #1D1F20;
    text-decoration: none;
    transition: all .3s ease;
}

#eu-cookie-bar-notification .btn {
    display: inline-block;
}

#eu-cookie-bar-notification .learn-more:hover {
    background-color: transparent;
    border-color: #fff;
}

.card.gen a {
    overflow: hidden;
}

.generalNote a {
    color: #fff !important;
}

table th.latest-post {
    min-width: 150px;
}

.fa.fa-angle-down {
    position: absolute;
    right: 10px;
    margin-top: 0px;
    font-size: 32px;
}

.td-title {
    font-weight: 700;
}

.toolbar {
    text-align: right;
}

.tooltip-inner {
    max-width: 204px;
    color: #fff;
    text-align: center;
    background-color: #212529;
    border-radius: .25rem;
    padding: 2px;
}

    .tooltip-inner img {
        width: 200px;
    }
/*one page checkout*/

.opc .allow .card-grey {
    background-color: #61676c;
    color: #fff;
    cursor: pointer;
}

.opc .active .card-grey {
    background-color: #F26526;
    color: #fff;
    cursor: pointer;
    border: 0;
}

.opc .step-title .card-bodyquote {
    margin-bottom: 0;
}

.opc .card-grey {
    background-color: rgba(204, 204, 204, 0.17);
    color: rgba(129, 138, 145, 0.36);
    border: 0;
}

.payment-method ul,
.shipping-method ul,
.message-error ul,
.tabs ul,
.account-order .card ul,
ul.info,
ul.opc {
    padding-left: 0;
}

    ul.opc h5 {
        padding: 10px;
        background-color: #dddddd;
        text-transform: uppercase;
        margin-bottom: 2px;
        font-size: 15px;
    }

select.form-control:not([size]):not([multiple]) option {
    min-height: 25px;
}

.generalImg img {
    padding-right: 10px;
}

.cartCounter .btn {
    padding: 11px;
}

.cartCounter span {
    text-transform: uppercase;
    font-size: 11px;
}

.cartCounter {
    padding-top: 7px;
}

.order-summary-content .custom-control-description i {
    visibility: visible;
}

.order-summary-content .title h5 {
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
    color: #F26526;
}

.order-summary-content .remove-from-cart {
    padding: 1rem;
}

.order-summary-content .table thead th {
    border-bottom: 0;
    border-top: 0;
}
/*comment*/

.comment .card-footer {
    padding: 5px 10px;
}

.details .comments,
.quote {
    padding-left: 15px;
    font-style: italic;
}

.quote {
    background: #eee;
    border: 1px dashed #aaa;
}

valid mgs .input-validation-error {
    border-color: #d9534f;
}

.input-validation-error:focus {
    border-color: #d9534f;
}

.filtered-items ul {
    padding-left: 0;
}

/* order-details */

.order-details-page .shopping-cart th.product {
    width: 65%;
}

.order-details-page .btn-group .btn:last-of-type {
    margin-right: 0;
}

.order-details-page .shopping-cart .product {
    margin: 0;
}

    .order-details-page .shopping-cart .product em a {
        font-size: 18px;
    }

.order-details-page .totals table {
    background: #fff;
    border: 1px solid #eee !important;
    margin-bottom: 0;
}
/*fly shopping cart*/

.pageForSlide {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

    .pageForSlide.show {
        -webkit-transform: translate3d(-15%, 0, 0);
        transform: translate3d(-20%, 0, 0);
    }

.flyout-cart.no-data {
    height: auto !important;
}

.flyout-cart-nodata-text {
    font-size: 16px;
}

.flyout-cart-nodata-icon {
    width: 100%;
    color: rgba(0, 0, 0, .20);
}

    .flyout-cart-nodata-icon .lnr {
        font-size: 70px;
    }

.flyout-cart-header {
    position: relative;
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 16px;
    font-weight: 300;
    padding: 5px;
    background: #F26526;
    color: #fff;
    height: 52px;
}

.mini-shopping-cart {
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.out-items {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
}

.flyout-cart .items {
    padding: 0;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.flyout-cart .items-container {
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    min-height: 100px;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    max-width: 100%;
    width: 100%;
    z-index: 1;
}

.flyout-cart-header a {
    color: #fff;
    font-size: 16px;
}

.flyout-cart-header .close-cart {
    order: 2;
    padding-right: 10px;
}

    .flyout-cart-header .close-cart .c-button__text {
        display: flex;
        align-items: center;
        justify-content: center;
    }

.flyout-cart .product {
    margin-bottom: 0 !important;
}

.fly-close {
    z-index: 99999;
    position: absolute;
    right: 0;
    background: #0091b5;
    color: #fff;
    height: 43px;
    padding-left: 0;
    padding-right: 0;
    width: 9.333333%;
}

    .fly-close:before {
        content: "";
        position: absolute;
        top: 20px;
        right: 15px;
        width: 15px;
        height: 3px;
        background: #fff;
        transform: rotate(45deg);
    }

    .fly-close:after {
        content: "";
        position: absolute;
        top: 20px;
        right: 15px;
        width: 15px;
        height: 3px;
        background: #fff;
        transform: rotate(-45deg);
    }

.dropdowns-container.fly-in {
    margin-left: -5px;
}

.flyout-cart .cart-button,
.flyout-cart .btn-secondary.checkout-button {
    color: #fff;
    background: rgba(255, 255, 255, 0);
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: none;
    font-size: 14px;
    padding-left: 5px;
    padding-right: 5px;
    margin: 0 !important;
}

.mini-shopping-cart .flyout-cart-bottom .cart-button {
    margin-right: 5px !important;
}

.flyout-cart .cart-button:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.15);
}

.flyout-cart .btn-info:not(:disabled):not(.disabled).active,
.flyout-cart .btn-info:not(:disabled):not(.disabled):active,
.show > .btn-info.dropdown-toggle {
    color: #fff;
    border-color: #fff;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: none;
}

.flyout-cart .price strong {
    color: #1D1F20;
    font-size: 14px;
    line-height: 1;
    font-weight: 500;
    margin-left: 5px;
}

.flyout-cart .quantity strong {
    color: #1D1F20;
    font-size: 14px;
    font-weight: 500;
    margin-left: 5px;
}

.flyout-cart .attributes {
    font-weight: 300;
    font-size: 12px;
    color: #888;
}

.navUp .container.fly-in {
    padding-right: 21px !important;
}

.flyout-cart .name {
    margin-bottom: 5px;
}

    .flyout-cart .name a {
        color: #1D1F20;
        font-size: 16px;
        font-weight: 500;
        line-height: 1;
    }

.flyout-cart .price span,
.flyout-cart .quantity span {
    font-size: 14px;
    line-height: 1;
    font-weight: 300;
}

.flyout-cart {
    position: absolute;
    width: 100%;
    height: 100%;
    min-width: 300px;
    font-size: 14px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

    .flyout-cart .flyout-cart-bottom {
        padding: 15px;
        background-color: #1D1F20;
        min-width: 300px;
        width: 100%;
    }

        .flyout-cart .flyout-cart-bottom .totals {
            font-size: 14px;
            text-transform: uppercase;
            color: #fff;
            display: flex;
            flex-direction: column;
            padding: 0;
            align-items: flex-start;
        }

        .flyout-cart .flyout-cart-bottom strong {
            font-weight: 600;
            font-size: 18px;
            letter-spacing: 1px;
            text-align: left;
        }

    .flyout-cart .item {
        border-bottom: 1px solid #dddddd;
        padding: 15px !important;
    }

        .flyout-cart .item:last-of-type {
            border-bottom: none;
        }

.mini-shopping-cart .product {
    font-size: 12px;
}

span.product-quantity {
    min-width: 60px;
}

.group li:nth-child(2)::before,
.cartCounter .dropdown-toggle::after,
.ui-helper-hidden-accessible,
.generalLeftSide .block-recently-viewed-products li:before {
    display: none;
}

.pm-unread {
    font-weight: 700;
}

.generalNote {
    padding: 10px;
}

    .generalNote p {
        margin-bottom: 0;
        color: #FFF;
        text-align: center;
    }

    .generalNote a {
        text-decoration: underline;
    }

.generalAdToCart select {
    width: auto;
    max-width: 75px;
}

.enter-price-input {
    display: block;
}

.close {
    position: absolute;
    right: 7px;
    top: 4px;
    z-index: 1;
}

.administration {
    border-left: 0px;
}

.category-description ul {
    list-style-type: inherit;
}

.shipments {
    overflow: auto;
}

.attributes ul {
    margin-bottom: 0;
    padding-left: 0;
}

.product-details-page .attributes .selected-value label {
    border: 2px solid #0091b5;
}

.product-details-page .attributes table {
    overflow: hidden;
}
/*datapicker*/

.ui-datepicker {
    background-color: #fff;
    padding: 10px;
    border: 0.5px solid #a4a6a7;
}

.ui-datepicker-next {
    float: right;
}

.ui-datepicker-next,
.ui-datepicker-prev {
    font-weight: 700;
    cursor: pointer;
}

.ui-datepicker-calendar td {
    padding: 7px;
}

.associatedItem {
    border: 2px solid #eeeeee;
    padding: 15px;
}

.product-details-page .variant-name {
    font-size: 20px;
    font-weight: 500;
}

.product-details-page .associatedItem .qty-input {
    max-width: 62px;
}

.btn-group.dropdown a.nav-link.dropdown-toggle::after {
    display: none;
}

/* newsletter */

#newsletter-email {
    min-width: 100%;
    background: 0;
    color: #fff;
    /*border-color: #292929;*/
    border-radius: 0;
    margin-right: 5px;
    transition: 0.5s;
}

    #newsletter-email:focus {
        border: 0 solid transparent;
        box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.5);
    }

.input-group-prepend.newsletter-button-container .btn-secondary {
    color: #F26526;
    background-color: #f3f0f0;
    border-color: #f3f0f0;
}

    .input-group-prepend.newsletter-button-container .btn-secondary:hover {
        color: #fff;
        border-color: #d3d3d3;
        background-color: transparent;
    }

input#newsletter-email::placeholder,
input#newsletter-email::-webkit-input-placeholder,
input#newsletter-email:-ms-input-placeholder {
    color: #fff !important;
}

#newsletter-email,
.newsletter-button-container {
    height: 50px;
}

.newsletter-subscribe-unsubscribe {
    display: flex;
}

.newsletter-validation {
    position: absolute;
    bottom: -10px;
}

/*footer*/

footer {
    width: 100%;
    display: inline-block;
    height: auto;
    padding: 25px 0 0 0;
}

    footer .step-title .card-bodyquote .h5 {
        font-size: 18px;
    }

    footer .store-logo {
        max-width: 100%;
    }

footer {
    background-color: #f9f9f9;
    width: 100%;
    display: inline-block;
    height: auto;
}

    footer .step-title.card {
        background-color: #f9f9f9;
    }

    footer .footer-lower {
        margin: 25px 0 0 0;
        padding: 25px 0;
    }

    footer .viewBox ul {
        flex-direction: column;
        justify-content: center;
        flex-wrap: wrap;
        padding-left: 0;
        padding: 0;
    }

    footer .about-us.block {
        font-size: 14px;
    }

    footer .step-title .card-bodyquote {
        margin-bottom: 0;
    }

    footer .newsletter .btn i {
        margin-right: 0;
        padding-right: 0;
    }

    footer .newsletter-container {
        background: #ececec;
    }

    footer .block h2 {
        border-bottom: 1px solid #ececec;
    }

        footer .block h2 strong {
            font-weight: 300;
            text-transform: uppercase;
        }

    footer .block .list-group-item a,
    #newsletter-subscribe-block .strong.h3 {
        font-size: 14px;
        font-weight: 300;
        transition: all .3s ease;
    }

.newsletter-content {
    position: relative;
}

#newsletter-result-block {
    position: absolute;
    bottom: -25px;
}

footer .about-us.block .list-group-item span:first-child {
    font-weight: 600;
    color: #F26526;
    font-size: 20px;
    margin: 0 10px 0 0;
}

footer .list-group-item {
    margin: 0 0 8px 0;
}

footer .about-us.block .list-group-item {
    display: inline-flex;
    margin: 0 0 10px 0;
    font-weight: 400;
}

footer .block h2,
footer .block a {
    color: #292929;
}

    footer .block a:hover {
        color: #F26526;
    }

footer .newsletter-desc {
    font-weight: 300;
}

footer .shop-desc {
    font-weight: 300;
    font-size: 16px;
}

footer h5 {
    text-transform: uppercase;
    font-size: 15px;
    font-weight: bold;
}

footer .color-holder {
    min-height: 8px;
    top: 0;
    width: 100%;
    margin-bottom: 16px;
}

footer .list-group .list-group-item {
    background-color: transparent;
    padding: 0;
    border: 0;
    font-size: 14px;
    font-weight: 300;
}

.footer-lower {
    border-top: 1px solid #dfdfdf;
}

footer .social-icons a span {
    display: flex;
    font-size: 24px;
    transition: all .3s ease;
}

footer .mdi-facebook-box {
    color: #3b5999;
}

footer .mdi-twitter-box {
    color: #55acee;
}

footer .mdi-newspaper {
    color: #09b83e;
}

footer .mdi-youtube {
    color: #cd201f;
    font-size: 30px !important;
    line-height: 24px;
}

footer .mdi-instagram {
    color: #e4405f;
}

footer .mdi-linkedin-box {
    color: #3b5999;
}

footer .mdi-pinterest-box {
    color: #bd081c;
}

footer .socicon-facebook:hover {
    color: #3b5998;
}

footer .socicon-twitter:hover {
    color: #3b5998;
}

footer .socicon-rss:hover {
    color: #28a745;
}

footer .socicon-googleplus:hover {
    color: #dc4e41;
}

footer .socicon-linkedin:hover {
    color: #0077b5;
}

footer .socicon-youtube:hover {
    color: #b31217;
}

footer .socicon-instagram:hover {
    color: #517fa4;
}

footer .socicon-pinterest:hover {
    color: #bd081c
}

.socicon-facebook:before {
    content: "\e028";
}

.socicon-twitter:before {
    content: "\e08d";
}

.socicon-googleplus:before {
    content: "\e038";
}

.socicon-linkedin:before {
    content: "\e04c";
}

.socicon-youtube:before {
    content: "\e0a5";
}

.socicon-instagram:before {
    content: "\e044";
}

.socicon-rss:before {
    content: "\e071";
}

.socicon-pinterest:before {
    content: "\e063";
}
/*IE FIX*/

.card a {
    overflow: hidden;
}

.img-fluid {
    width: auto;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.add-to-cart-button {
    display: inline-flex;
    display: inline-block;
}

.overview-buttons .generalAdToCart > .form-group {
    display: flex;
}

.btn-section .btn {
    margin-bottom: 5px;
}
/*Safari*/

.step-title {
    width: 100%;
}

.wishlist-content .custom-control-description {
    padding-right: 0;
    margin-left: 0;
}

.wishlist-content .remove-from-cart {
    min-width: 25px;
}
/*media*/

@media screen and (max-width: 1400px) {
    .flyout-cart .count, .flyout-cart .count a {
        font-size: 16px;
    }
}

@media screen and (max-width: 1200px) and (min-width: 901px) {
    .shopping-cart tr {
        float: left;
        margin: 0 0 2% 2%;
        width: 33.1%;
    }

        .shopping-cart tr:nth-child(3n+1) {
            clear: both;
            /*margin-left: 0;*/
        }

    .shopping-cart .quantity .qty-input {
        width: 45px;
    }
}

@media screen and (min-width: 1200px) {
    .product-quickview {
        max-width: 1140px;
    }
}

@media screen and (max-width: 1200px) {
    .shopping-cart .remove-from-cart:nth-child(2) {
        position: absolute;
        right: 0;
        top: 0;
    }

    .prod-list .actual-price,
    .prod-list .old-price {
        font-size: 16px;
    }

    .c-offcanvas--right {
        width: 50%;
    }

    .pageForSlide.show {
        -webkit-transform: translate3d(-35%,0,0);
        transform: translate3d(-35%,0,0);
    }

    .deleteshoppingcartitem {
        position: absolute;
        top: 0;
        right: 0;
        font-size: 28px;
        z-index: 1;
    }

    .shopping-cart-page .remove-from-cart {
        height: 0 !important;
    }

    .remove-from-cart::before {
        background: transparent !important;
    }

    .return-product-container {
        width: calc(100% - 30px);
        margin-left: 15px;
    }

    .advanced-search-results .products-container .product-desc {
        max-width: 220px;
    }

    .order-details-page .quantity {
        font-size: 23px;
        color: #212529 !important;
    }

    .card.gen .btn-group .btn {
        padding-left: 8px;
        padding-right: 8px;
        display: flex;
        justify-content: center;
    }

    .order-details-page td.subtotal {
        justify-content: flex-end;
    }

    .shopping-cart td.product .product-name {
        font-size: 18px;
    }

    .shopping-cart .discount {
        font-size: 12px;
    }

    .order-details-page .shopping-cart .product {
        width: 100%;
        background: #eee;
        min-height: 52px;
    }

    .order-details-page .product-unit-price,
    .order-details-page .product-subtotal.price {
        font-size: 23px;
    }

    .order-details-page .shopping-cart tr {
        min-height: 160px;
    }

    .order-details-page .shopping-cart .unit-price {
        justify-content: flex-end;
        margin-bottom: 0;
    }

    .shopping-cart-container {
        box-shadow: unset !important;
    }

    .order-details-page .shopping-cart .product-subtotal.price {
        position: relative;
        left: unset;
        bottom: unset;
    }

    .shopping-cart .product-subtotal.price {
        position: absolute;
        left: 75px;
        bottom: 20px;
    }

    .order-details-page .quantity {
        font-size: 23px;
        color: #212529 !important;
    }

    .order-details-page .shopping-cart .product {
        width: 100%;
        background: #eee;
        min-height: 52px;
        padding: 10px !important;
    }

    .order-details-page .product-unit-price,
    .order-details-page .product-subtotal.price {
        font-size: 18px;
    }

    .shopping-cart .remove-from-cart.remove-os {
        width: 100% !important;
    }

        .shopping-cart .remove-from-cart.remove-os label {
            margin-left: auto !important;
            left: -25px !important;
        }

        .shopping-cart .remove-from-cart.remove-os p {
            width: 100%;
        }

    .shopping-cart .add-to-cart input[type='checkbox'].checkbox-u + label:after {
        left: -12px;
    }

    .shopping-cart .add-to-cart input[type='checkbox'].checkbox-u + label:before {
        left: 9px;
    }

    .shopping-cart {
        box-shadow: unset;
        border: 0;
    }

        .shopping-cart .quantity .qty-input {
            width: 45px;
        }

        .shopping-cart .remove-from-cart input[type='checkbox'] + label {
            width: 30px;
        }

        .shopping-cart td {
            padding: 15px;
        }

    .shopping-cart-page {
        clear: both;
    }

    .shopping-cart tbody {
        border: 0;
    }

    .shopping-cart thead {
        display: none;
    }

    .shopping-cart tr {
        margin: 0 0 10px;
        font-size: 0;
        letter-spacing: 0;
        border: 2px solid #fff;
        position: relative;
        text-align: center;
        overflow: hidden;
        background: #fff;
        box-shadow: 0 0 14px rgba(0, 0, 0, 0.06);
        padding-bottom: 65px;
        display: flex !important;
        flex-direction: column;
    }

    .shopping-cart td {
        font-size: 14px;
        letter-spacing: .2px;
        padding: 15px;
        border: none !important;
        text-align: center;
    }

    .shopping-cart tr,
    .shopping-cart td {
        display: block;
    }

    .shopping-cart tr {
        margin-right: 1px;
        min-height: 315px;
        border: 1px solid rgba(0, 0, 0, .25);
    }

    .shopping-cart .remove-from-cart,
    .shopping-cart .add-to-cart {
        height: 48px;
        align-items: center;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        border: none;
        text-align: center;
        display: -webkit-flex;
        display: -webkit-box;
        display: -moz-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        justify-content: center !important;
        margin-right: 0 !important;
        padding: 0;
        width: 50%;
    }

        .shopping-cart .remove-from-cart input[type='checkbox'] + label {
            margin: unset;
            top: 3px;
            margin-left: 3px;
            margin-bottom: auto !important;
        }

        .shopping-cart .remove-from-cart .remove {
            display: block;
            margin-bottom: 0;
            margin-left: 15px;
            left: 25px;
            z-index: 99;
            text-transform: uppercase;
            font-size: 16px;
            top: 10px;
            position: absolute;
        }

        .shopping-cart .remove-from-cart:before,
        .shopping-cart .add-to-cart:before {
            content: '';
            position: absolute;
            height: 48px;
            top: 0;
            left: 0;
            right: 0;
            background: #dfe1e2;
            z-index: 0;
        }

    .shopping-cart .product-picture {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        padding-right: 0;
        padding-left: 0;
        padding-top: 0;
        padding-bottom: 0;
        margin-bottom: 15px;
        margin-top: 15px;
    }

        .shopping-cart .product-picture a:before {
            content: '';
            display: block;
        }

        .shopping-cart .product-picture img {
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            margin: auto;
            max-width: 100%;
        }

        .shopping-cart .product-picture ~ td {
            padding: 10px;
        }

    .shopping-cart .product {
        display: flex;
        width: 100%;
        flex-direction: column;
        align-self: flex-start;
        padding: 0 10px 0 !important;
        padding-bottom: 10px !important;
    }

    .shopping-cart .quantity {
        left: 0;
        width: 45%;
        padding: 10px 0 10px 10px !important;
        color: #909090;
        text-transform: none;
        font-family: 'Lato', sans-serif;
        line-height: 18px;
        font-size: 18px;
    }

    .shopping-cart .quantity,
    .shopping-cart .subtotal {
        display: flex;
        align-items: center;
        height: 66px;
        margin: 0 !important;
        padding: 10px;
        text-align: center !important;
        border-top: 1px solid #ccc !important;
        position: absolute;
        bottom: 0;
        top: unset;
    }

    .order-details-page .shopping-cart tr {
        min-height: 160px;
    }

    .shopping-cart .subtotal {
        width: 60%;
        right: 0;
        padding-left: 5px !important;
        justify-content: flex-end;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

        .shopping-cart .subtotal .price span:first-of-type {
            font-size: 17px !important;
        }

        .shopping-cart .subtotal .price span:nth-of-type(2) {
            font-size: 26px !important;
        }

        .shopping-cart .subtotal .price span:nth-child(3) {
            font-size: 17px !important;
        }

    .shopping-cart tbody tr:nth-child(even) {
        background-color: #fff;
    }

    .shopping-cart .unit-price {
        display: flex;
        align-items: center;
        bottom: 66px;
        width: 100%;
        justify-content: center;
        padding-left: 0 !important;
        padding-top: 0 !important;
    }

    .shopping-cart .subtotal-text,
    .shopping-cart .unit-price-text {
        display: inline-block;
        margin-right: 5px;
        font-size: 20px;
    }

    .shopping-cart .subtotal .prod-total {
        font-size: 18px;
    }
}

@media (min-width: 992px) {
    .c-offcanvas-bg.c-offcanvas-bg--left {
        display: none;
    }

    .c-offcanvas-content-wrap.is-open:not(.c-offcanvas-content-wrap--left) {
        -webkit-transform: translate3d(-15%, 0, 0);
        transform: translate3d(-15%, 0, 0);
    }

    .c-offcanvas--left.mobile-menu {
        display: none;
    }

    footer .about-us.block li:last-child {
        border-right: 0;
    }

    .mainNav .navbar-nav > .nav-item .nav-link {
        display: inline-flex;
        align-items: center;
        padding: 8px 25px 8px 8px;
    }

    .mainNav .navbar-nav > .nav-item:first-child .nav-link {
        display: inline-flex;
        align-items: center;
        padding: 8px 25px 8px 0;
    }

    .mainNav .navbar-nav > .nav-item .dropdown-menu .nav-link {
        padding: 8px;
        font-size: 14px;
        white-space: nowrap;
    }

    .navUp.navbar-light .navbar-nav .nav-link:focus,
    .navUp.navbar-light .navbar-nav .nav-link:hover {
        color: #0091b5;
    }

    .mainNav .nav-item {
        position: relative;
        display: flex;
        flex-direction: column;
        cursor: pointer;
    }

        .mainNav .nav-item.dropdown .dropdown-menu .nav-item {
            flex-direction: row;
            margin-top: -1px;
        }

    .mainNav .category-icon {
        font-size: 26px !important;
        position: static !important;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .mainNav .navbar-nav > .nav-item > .category-icon {
        padding-top: 10px;
    }

    .mainNav .nav-item.dropdown .dropdown-menu .category-icon {
        padding-right: 15px;
        font-size: 20px !important;
    }

    .mainNav .navbar-nav > .nav-item > .nav-link .category-icon {
        padding-bottom: 5px;
    }

    .mainNav .navbar-nav {
        align-items: center;
        flex-wrap: wrap;
    }

    ul.ui-autocomplete {
        min-width: 350px;
    }

    .header-links .nav-item.col {
        flex-basis: unset;
        flex-grow: unset;
        flex: unset;
        padding: 0;
        max-width: unset;
        width: unset;
    }

    .header-links #topcartlink.nav-item.col {
        position: static;
    }

    .mainNav .dropdown-menu.first-level {
        border: 0;
        border-top: 1px solid rgba(0, 0, 0, .1);
        border-top-left-radius: 4px;
        border-top-right-radius: 4px;
    }

    .mainNav .dropdown-menu {
        min-width: 100%;
        border: 0;
        border-left: 0 solid transparent;
    }

    .navUp .dropdown-menu {
        border: 0;
        border-top: 6px solid transparent;
    }

        .navUp .dropdown-menu > ul {
            border: 1px solid #ddd;
            border-bottom-left-radius: .25rem;
            border-bottom-right-radius: .25rem;
        }

        .navUp .dropdown-menu ul li:last-child {
            border-bottom-left-radius: .25rem;
            border-bottom-right-radius: .25rem;
        }

    .mainNav .nav-item.dropdown:hover > .dropdown-menu {
        display: block;
        opacity: 1;
        visibility: visible;
        -webkit-transform: translateY(0px);
        -moz-transform: translateY(0px);
        -ms-transform: translateY(0px);
        -o-transform: translateY(0px);
        transform: translateY(0px);
    }

    .mainNav .nav-item.dropdown > .next-level {
        left: 100%;
        top: 0;
        position: absolute;
        border-top: 1px solid rgba(0,0,0,.1);
        transition: all .3s ease;
    }

    .wishlist-content .custom-control {
        min-width: 50px;
    }

    #ModalAddToCart .modal-dialog {
        min-width: 650px;
    }

    .header-links .admin-group {
        display: none !important;
    }

    #searchModal .admin-group {
        display: none !important;
    }

    #searchModal .search-box-button span:nth-child(3) {
        display: none !important;
    }

    header .collapse {
        display: none !important;
    }

    .wishlist-content th:first-of-type {
        width: 10%;
    }

    .register-block .register-button {
        margin-top: 1.25rem;
    }

    .first-level .dropdown:hover .next-level {
        display: block;
        position: absolute;
        top: 0;
        border-top: 1px solid rgba(0, 0, 0, .1);
        border-top-left-radius: 0;
        border-top-right-radius: 0;
    }

    .shopping-cart-page .card {
        padding-bottom: 0;
    }

    .subrow .quantity .td-title {
        position: relative;
        top: 6px;
    }

    .subrow .unit-price {
        position: relative;
        padding-top: 6px;
    }
}

@media screen and (max-width: 991px) and (min-width: 767px) {
    .shopping-cart tr {
        float: left;
        margin: 0 0 2% 2%;
        width: 49%;
    }

    .forum-topic-page .post-user {
        border-right: 1px solid #d9d9d9;
    }

    .shopping-cart tr:nth-child(2n+1) {
        clear: both;
        margin-left: 0;
    }
}

@media (max-width: 1024px) {
    #ModalAddToCart .cross-sell-container {
        display: none;
    }

    .featured-product .card-buttons {
        bottom: 0;
    }

    .card.gen .card-buttons {
        top: -38px;
        position: static;
    }

    .return-request-table thead .product,
    .return-request-table thead .reason {
        min-width: 165px;
    }

    body.fly-in {
        padding-right: unset;
    }

    .dropdowns-container.fly-in {
        margin-left: unset;
    }

    .navUp .container.fly-in {
        padding-right: 16px !important;
    }
}

@media (max-width: 991px) {
    .product-details-page .thumbnails img {
        width: 90px;
    }

    .newsletter-validation, .newsletter-result {
        bottom: -25px;
        font-size: 12px;
    }

    .flyout-cart .name {
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
        max-width: 150px;
    }

    .flyout-cart .flyout-cart-bottom strong {
        font-size: 15px;
    }

    .dropdowns-container .dropdown-menu {
        min-width: 40px;
        border: 1px solid rgba(0,0,0,.15);
    }

        .dropdowns-container .dropdown-menu .active a {
            color: #212529;
        }

        .dropdowns-container .dropdown-menu li a {
            color: #888;
            font-size: 12px;
            padding: 0 10px;
            text-align: center;
        }

    .filter-button .c-button__text {
        display: flex;
        align-items: center;
    }

    #leftSide.is-open {
        transform: translate3d(0,0,0);
    }

    #leftSide {
        transform: translate3d(-100%,0,0);
        visibility: visible;
    }

    .flyout-cart-header {
        font-size: 14px;
    }

    .flyout-cart .name a,
    .flyout-cart .price strong,
    .flyout-cart .price span, .flyout-cart .quantity span,
    .flyout-cart .quantity strong {
        font-size: 13px;
    }

    .mainNav {
        display: none;
    }

    .mobile-menu .dropdowns-container {
        border-top: 1px solid #212529;
        width: 100%;
        list-style-type: none;
        padding: 15px;
    }

        .mobile-menu .dropdowns-container .generalDropDown {
            display: flex;
            justify-content: center;
            width: 100%;
        }

    .c-offcanvas--right {
        width: 480px;
    }

    #topcartlink .c-button__text {
        flex-direction: column;
    }

    #pills-manufacturers .manufacturer-dropdown,
    #pills-links .links-dropdown {
        display: block;
        position: static;
        width: 100%;
        border: 0;
        padding: 0;
        border-radius: 0;
    }

    #pills-menu .navbar-nav {
        width: 100%;
        padding-left: 0;
    }

    #pills-mobile-tab {
        display: inline-flex;
        flex-wrap: nowrap;
        width: 100%;
    }

    #pills-mobile-tabContent.tab-content > .active {
        display: flex;
    }

    #pills-mobile-tab .nav-item .nav-link:not(.active)::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 2px;
        background: rgba(0,0,0,.15);
    }

    #pills-mobile-tab .nav-item {
        display: inline-block;
        width: 100%;
    }

        #pills-mobile-tab .nav-item .nav-link.active {
            color: #1D1F20;
            font-weight: 700;
        }

        #pills-mobile-tab .nav-item .nav-link {
            padding: 17px 12px;
            color: #888;
            font-size: 12px;
            font-weight: 400;
            background-color: transparent;
            justify-content: center;
        }

    .c-offcanvas--left {
        width: 320px;
        overflow: scroll;
        transform: translate3d(-320px, 0, 0);
        -webkit-transform: translate3d(-320px, 0, 0);
    }

    .c-offcanvas-content-wrap.c-offcanvas-content-wrap--left.is-open {
        -webkit-transform: translate3d(15%, 0, 0);
        transform: translate3d(15%, 0, 0);
    }

    .c-offcanvas-content-wrap.c-offcanvas-content-wrap--right.is-open {
        -webkit-transform: translate3d(-15%, 0, 0);
        transform: translate3d(-15%, 0, 0);
    }

    .header-links {
        width: 100vw;
    }

    .mobile-menu .nav-item.dropdown > .dropdown-menu {
        display: block;
        position: fixed !important;
        top: 53px !important;
        left: -100% !important;
        transform: translate(-100%,0) !important;
        -webkit-transform: translate(-100%,0) !important;
        height: 100vh;
        border-radius: 0;
        border: 0;
        padding: 0;
        transition: all .5s ease;
    }

        .mobile-menu .nav-item.dropdown > .dropdown-menu.next-level {
            top: 0 !important;
        }

        .mobile-menu .nav-item.dropdown > .dropdown-menu.show {
            transform: translate(0,0) !important;
            -webkit-transform: translate(0,0) !important;
            left: 0 !important;
        }

    .mobile-menu .navbar-nav .nav-item,
    .mobile-menu .manufacturer-dropdown .nav-item,
    .mobile-menu .links-dropdown .nav-item {
        position: relative;
        border-bottom: 1px solid rgba(0,0,0,.15);
    }

    .mobile-menu .nav-item .nav-link {
        display: flex;
        justify-content: space-between;
        padding: 14px 25px;
        color: #1D1F20;
        font-size: 14px;
    }

        .mobile-menu .nav-item .nav-link .arrow-down {
            color: #1D1F20;
            transform: rotate(-90deg);
        }

    .mobile-menu .nav-item .badge {
        left: 26px;
        top: 1px;
        position: absolute;
        font-weight: 300;
        padding: 2px 3px;
        color: #fff;
    }

    .mobile-menu .nav-item .dropdown-toggle::after {
        display: none;
    }

    [off-canvas*=left] {
        display: block;
        width: 320px;
        height: 100%;
        top: 0;
        left: 0;
        background-color: #fff;
        box-shadow: 0 0 24px rgba(0,0,0,0.3);
        transform: translate(-330px,0);
        z-index: 3;
    }

    .fly-in [off-canvas*=left] {
        transform: translate(0,0);
    }

    nav.offcanvas .navbar-toggler {
        padding: 0;
    }

    nav.offcanvas {
        display: inline-flex;
        flex-wrap: wrap;
        align-items: center;
        height: auto;
        background-color: #fff;
        border-bottom: 1px solid rgba(0,0,0,.15);
    }

    .advanced-search-results.open {
        top: 47px;
        z-index: 999999;
    }

    .page-container.fixed {
        margin-top: 0;
    }

    .navUp .edit.admin {
        display: none !important;
    }

    .card.gen .btn-group .btn:first-child {
        max-width: 100%;
        width: 100%;
    }

    .navUp .nav-link:hover {
        color: #007bff !important;
    }

    .mainNav.fixed {
        position: relative;
        top: 0;
    }

    .social li {
        display: inline-flex;
        margin-right: 10px;
    }

    .nav-pills .nav-link {
        border-bottom-right-radius: .25rem;
        border-top-right-radius: .25rem;
    }

    .mobile-search {
        margin-left: auto;
    }

    .navUp .container.fly-in {
        padding-right: 0 !important;
    }

    body.fly-in {
        padding-right: 0;
    }

    .shopping-cart .product-picture {
        top: 85px;
    }

    .modal-open {
        overflow: hidden;
    }

    footer .max-100 {
        max-width: 100% !important;
    }

    footer .list-pad {
        margin: 0 0 15px 0;
    }

    footer .step-title {
        width: 100%;
        border-left: 0;
        border-right: 0;
        border-bottom: 0;
        border-radius: 0;
    }

    #ModalAddToCart .modal-dialog {
        min-width: 700px;
    }

    .news-item-page img {
        padding: 0;
    }

    .order-summary-content .table-remove input {
        width: 50px;
        height: 50px;
        display: flex;
        left: -15px;
        top: -15px;
    }

    #searchModal .search-box-select {
        max-width: 180px;
        width: auto;
        height: 52px;
        border-top: 0;
        border-bottom: 0;
        border-left: 1px solid #9da6b2;
    }

    .footer .block {
        cursor: pointer;
        display: inline-block;
    }

    .block.active h5,
    .block:hover h5 {
        border-left: 3px solid #87c255;
    }

    .dropdown:hover .dropdown-menu,
    .dropdown .dropdown-menu {
        display: none;
    }

    .block h5 {
        cursor: pointer;
        border-left: 3px solid transparent;
        -webkit-transition: all 0.3s;
        -webkit-transition-timing-function: linear;
        transition: all 0.3s;
        transition-timing-function: linear;
    }

    .product-unit-price,
    .quantity .td-title,
    .subtotal span.product-subtotal {
        position: relative;
    }

    .social {
        padding-top: 15px;
    }

    .navbar-expand-md .navbar-nav .dropdown-menu.open {
        display: block;
        background-color: rgb(65, 69, 72);
    }

    .navbar-expand-md .navbar-nav .dropdown-menu.next-level.open {
        display: block;
        background-color: rgb(97, 103, 108);
        position: absolute;
        width: 100%;
    }

    .navUp li a {
        font-size: 12px;
    }

    .dropdown-menu {
        margin: 0;
    }

    .mainNav .nav-item:last-of-type {
        border: none;
    }

    .mainNav .nav-item {
        border-bottom: 1px solid #484c4e;
    }

    .generalDropDown select.custom-select {
        padding-right: 30px;
    }

    section.totals {
        border-top: 1px solid #eceeef;
        border-left: 0;
    }

    .generalMiddle {
        display: block;
    }

    .subrow span.product-subtotal {
        position: relative;
        bottom: 8px;
    }

    .subrow span.product-subtotal {
        position: relative;
        bottom: 8px;
    }

    #searchModal .search-box-text.form-control {
        box-shadow: none;
    }

    .header-links .nav-item {
        justify-content: center;
        align-items: center;
        text-align: center;
        padding: 0;
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 100%;
    }

    .header-links .cart-container,
    .header-links .wishlist-container {
        display: list-item
    }

    .mobile-top-menu {
        width: 100vw;
        padding-left: 10px;
    }

    .navUp {
        position: absolute;
        height: auto;
    }

    footer {
        padding: 0;
    }

        footer .step-title {
            text-align: center;
            border: 0;
        }

        footer .about-us .h5 {
            color: #212529;
        }

        footer .about-us .list-pad {
            text-align: center;
        }

    .product-simple-share .btn {
        display: inline-block;
        height: 38px;
    }

    #collapsing-navbar-2 .dropdown-menu {
        position: static;
        width: 100%;
    }

    .social li {
        display: inline-flex;
        margin-right: 10px;
    }

    .footer .block {
        cursor: pointer;
        display: inline-block;
    }

    .block.active h5,
    .block:hover h5 {
        border-left: 3px solid #87c255;
    }

    .dropdown:hover .dropdown-menu,
    .dropdown .dropdown-menu {
        display: none;
    }

    .block h5 {
        cursor: pointer;
        border-left: 3px solid transparent;
        -webkit-transition: all 0.3s;
        -webkit-transition-timing-function: linear;
        transition: all 0.3s;
        transition-timing-function: linear;
    }

    .product-unit-price,
    .quantity .td-title,
    .subtotal span.product-subtotal {
        /*position: relative;*/
    }

    .generalLeftSide {
        display: none;
        padding: 15px 0 15px 0;
    }

    #leftSide .generalLeftSide {
        display: block;
    }

    .navbar-expand-md .navbar-nav .dropdown-menu.open {
        display: block;
        background-color: rgb(65, 69, 72);
    }

    .navbar-expand-md .navbar-nav .dropdown-menu.next-level.open {
        display: block;
        background-color: rgb(97, 103, 108);
        position: absolute;
        width: 100%;
    }

    .dropdown-menu {
        margin: 0;
    }

    .mainNav .nav-item:last-of-type {
        border: none;
    }

    .mainNav .nav-item {
        border-bottom: 1px solid #484c4e;
    }

    .generalDropDown select.custom-select {
        padding-right: 30px;
    }

    section.totals {
        border-top: 1px solid #eceeef;
        border-left: 0;
    }

    .generalMiddle {
        display: block;
    }

    ul.ui-autocomplete {
        position: fixed !important;
        top: 52px;
        width: calc(100% - 51px) !important;
        max-width: calc(100% - 51px) !important;
        animation-name: autocomplete;
        animation-duration: .3s;
        -webkit-animation-name: autocomplete;
        -webkit-animation-duration: .3s;
        box-shadow: 0 0 16px rgba(0, 0, 0, 0.45);
    }

    .order-summary-content .shopping-cart-container .common-buttons {
        margin-bottom: 15px;
    }
}

@media (max-width: 767px) {
    .prod-list .img-holder {
        max-width: 180px;
        width: 180px;
    }

    .card-buttons .btn-group {
        display: none;
    }

    .advanced-search-results .products-container .product-desc {
        max-width: 200px;
    }

    .advanced-search-results .products-container .list-group-item {
        padding: 5px 0 5px 0;
    }

    .advanced-search-results .products-title {
        padding-left: 0;
    }

    .advanced-search-results .right-side {
        order: 1;
        border-left: 0;
        padding-left: 15px;
    }

    .advanced-search-results .left-side {
        order: 2;
    }

    .advanced-search-results .center-side {
        order: 3;
    }

    #ModalAddToCart .cross-sell-container {
        max-height: calc(100vh - 30px);
    }

    #ModalAddToCart .modal-body {
        max-height: 675px;
        overflow: hidden;
    }

    #ModalAddToCart .cross-sell-container .btn-group .btn.btn-primary .add-cart-text {
        display: block !important;
    }

    #ModalAddToCart .cross-sell-container .btn-group .btn.btn-primary .fa-shopping-cart {
        display: none !important;
    }

    .order-details-page .quantity .td-title {
        position: static;
    }

    #ModalAddToCart .modal-body .modal-border h4 a {
        font-size: 16px;
    }

    .shopping-cart .product-unit-price.price {
        font-size: 18px;
    }

    .shopping-cart .product-subtotal.price {
        font-size: 18px;
    }

    .shopping-cart tr {
        float: left;
        margin: 0 0 2% 0;
        width: 100%;
    }

        .shopping-cart tr:nth-child(n+1) {
            clear: both;
        }

    .shopping-cart .unit-price {
        bottom: 66px;
        min-width: 140px;
        display: flex;
        align-items: flex-end;
        width: 100%;
        justify-content: center;
        background: transparent;
    }

    .shopping-cart .product-picture {
        top: 80px;
        padding-top: 20px;
        background: transparent;
    }

    #ModalAddToCart .modal-dialog {
        min-width: 500px;
    }

    .product-details-page .overview {
        padding-left: 0;
        padding-right: 0;
    }

    .media-pad-off {
        padding-left: 0;
        padding-right: 0;
    }

    .modal-padding-off {
        padding-left: 0;
        padding-right: 0;
        border: 0;
    }

    .footer-lower {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    footer .block {
        cursor: pointer;
        display: inline-block;
    }

    .wishrow {
        margin: auto;
    }

    .wishlist-content .table > tbody > tr > td,
    .cartTable .table > tbody > tr > td {
        vertical-align: middle;
        width: 100%;
        display: block;
        text-align: center;
        padding: 2px;
        padding-bottom: 40px;
    }

        .wishlist-content .table > tbody > tr > td:first-of-type,
        .cartTable .table > tbody > tr > td:first-of-type {
            padding-bottom: 0;
            height: 46px;
        }

    .subrow {
        display: -webkit-inline-box;
    }

    .quantity {
        position: relative;
        top: -7px;
    }

    .product {
        margin-bottom: 10px;
    }

    .rate label {
        display: block;
    }

    .rate .custom-control + .custom-control {
        margin-left: 0;
    }

    .breadcrumb {
        display: none;
    }

    .product-quantity,
    .form-control.qty-input {
        max-width: 100px;
    }

    .order-summary .table > tbody > tr > td:first-of-type {
        height: auto;
    }

    .total-info .table > tbody > tr > td {
        vertical-align: middle;
        width: 50%;
        display: block;
    }

    .share-info a {
        font-size: 10px;
    }

    .subtotal,
    product-subtotal,
    .unit-price {
        top: -4px;
    }

    .quantity .td-title {
        position: relative;
        display: block;
    }

    .order-details-page .quantity .td-title {
        position: static;
    }

    .card.generalNote {
        position: fixed;
        width: 100%;
        display: none;
        right: 0;
        bottom: 0;
    }

    .language-list {
        margin-bottom: 0;
    }

    .page {
        min-height: 225px;
    }

    .forum-topic-page ul.user-stats {
        border-right: none;
    }

    .topic-posts .send-pm {
        border-bottom: 1px solid #dddddd;
    }

    .footer-lower {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    footer .block {
        cursor: pointer;
        display: inline-block;
    }

    .wishrow {
        margin: auto;
    }

    .wishlist-content .table > tbody > tr > td,
    .cartTable .table > tbody > tr > td {
        vertical-align: middle;
        width: 100%;
        display: block;
        text-align: center;
        padding: 2px;
        padding-bottom: 40px;
    }

        .wishlist-content .table > tbody > tr > td:first-of-type,
        .cartTable .table > tbody > tr > td:first-of-type {
            padding-bottom: 0;
            height: 46px;
        }

    .subrow {
        display: -webkit-inline-box;
    }

    .quantity {
        position: relative;
        top: -7px;
    }

    table .quantity {
        position: static;
        top: unset;
    }

    .custom-select {
        padding: .275rem 1.55rem .275rem .55rem;
    }

    .product {
        margin-bottom: 10px;
    }

    .rate label {
        display: block;
    }

    .rate .custom-control + .custom-control {
        margin-left: 0;
    }

    .breadcrumb {
        display: none;
    }

    .forum-media-header {
        max-height: 38px;
    }

    .order-summary .table > tbody > tr > td:first-of-type {
        height: auto;
    }

    .total-info .table > tbody > tr > td {
        vertical-align: middle;
        width: 50%;
        display: block;
    }

    .share-info a {
        font-size: 10px;
    }

    .subtotal,
    product-subtotal,
    .unit-price {
        top: -4px;
    }

    .quantity .td-title {
        position: relative;
        display: block;
    }

    .order-details-page .quantity .td-title {
        position: static;
    }

    .card.generalNote {
        position: fixed;
        width: 100%;
        display: none;
        right: 0;
        bottom: 0;
    }

    .language-list {
        margin-bottom: 0;
    }

    .page {
        min-height: 225px;
    }

    .forum-topic-page ul.user-stats {
        border-right: none;
    }

    .topic-posts .send-pm {
        border-bottom: 1px solid #dddddd;
    }

    .wishlist-content th:first-of-type {
        display: none;
    }
}

@media screen and (max-width: 767px) and (min-width: 575px) {
    .shopping-cart .product-picture img {
        top: -25px;
        margin: unset;
    }

    #ModalAddToCart.show {
        display: flex !important;
    }

    .featured-product .card-body {
        max-width: calc(100% - 100px);
    }

    .featured-product .prod-list img {
        max-width: 100px;
    }

    .featured-product-container .old-price,
    .featured-product-container .actual-price {
        font-size: 16px;
    }
}

@media (min-width: 767px) {
    .checkoutAttributes {
        padding-left: 0;
        padding-right: 0;
    }

    .navUp li a {
        font-size: 14px;
    }

        .navUp li a .fa,
        .navUp li a .far {
            font-size: 18px;
        }

    .available-items ul {
        padding-left: 0;
        margin-bottom: 5px;
    }

    .navUp li a span.fa {
        margin-right: 2px;
        margin-left: 2px;
    }

    .wishlist-content .remove-from-cart label {
        padding-left: 0 !important;
    }

    .wishlist-content .remove-from-cart label {
        padding-left: 0 !important;
    }

    #ModalAddToCart.show {
        display: flex !important;
        justify-content: center;
    }

    #ModalAddToCart {
        transition: unset;
    }

    .available-items ul {
        padding-left: 0;
        margin-bottom: 5px;
    }

    .navUp li a span.fa {
        margin-right: 5px;
        margin-left: 2px;
    }
}

@media (max-width: 575px) {
    .vendor-review-list .rating,
    .product-review-list .rating {
        top: 0;
        left: 0;
    }

    .prod-list .card-body {
        max-width: 185px;
    }

    .prod-list .img-holder {
        max-width: 100px;
        width: 100px;
    }

    .newsletter-title {
        width: 100%;
        text-align: center;
        font-size: 34px;
    }

    .newsletter-desc {
        width: 100%;
        text-align: center;
    }

    .product-details-page .product-tabs .nav-link {
        padding: 11px;
    }

    .card.gen .card-body-content .card-title {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

        .card.gen .card-body-content .card-title a {
            font-size: 14px;
        }

    .card.gen .actual-price {
        font-size: 14px;
        line-height: 1;
    }

    .card.gen .old-price {
        font-size: 14px;
        font-weight: 300;
        line-height: 1;
    }

    .catalog-selectors #items_statistics {
        order: 3;
    }

    .return-product-container {
        width: calc(100% - 30px);
        margin-left: 15px;
    }

    .featured-product-container {
        margin-top: 15px;
    }

    .card.gen .btn-group .btn-secondary {
        min-width: 38px !important;
    }

    .card.gen .btn-group .btn-secondary {
        height: 40px;
        padding-left: 5px;
        padding-right: 5px;
    }

    .header-links .nav-item {
        padding-left: 0;
        padding-right: 0;
    }

    .card.gen .btn-group .btn-secondary {
        font-size: 14px;
    }

    .card.gen .btn-group .btn-info {
        font-size: 14px;
    }

    .card.gen .btn-group .btn-info {
        height: 40px;
    }

    .card.gen .card-buttons {
        top: -45px !important;
    }

    .flyout-cart .count,
    .flyout-cart .count a {
        font-size: 16px;
    }

        .fly-close,
        .flyout-cart .count,
        .flyout-cart .count a {
            height: 34px;
        }

    .fly-cart-container .items {
        height: calc(100vh - 186px);
    }

    .wishlist-content .wishlist-add-to-cart-button {
        width: 100%;
    }

    #ModalAddToCart.show {
        display: flex !important;
    }

    #ModalAddToCart .modal-header h5 {
        font-size: 16px;
    }

    #ModalAddToCart .modal-body img {
        max-height: 200px;
        width: auto;
    }

    #ModalAddToCart .cross-sell-container img {
        max-height: unset;
        width: 100%;
    }

    #ModalAddToCart .modal-body .modal-border h4 a {
        font-size: 16px;
    }

    #ModalAddToCart .form-group {
        margin-bottom: 0;
    }

    #ModalAddToCart label {
        margin-bottom: 0;
    }

    .shopping-cart .product-picture a:before {
        padding: 0 !important;
    }

    .shopping-cart .product-picture img {
        margin: unset;
    }

    .wishlist-content .btn-section {
        flex-wrap: wrap;
    }

    .shopping-cart-page .common-buttons .btn {
        font-size: 11px;
        letter-spacing: .6px;
    }

    #ModalAddToCart .modal-dialog {
        min-width: auto;
    }

    #searchModal .search-box-select {
        max-width: 120px;
    }

    .subrow .qty-input {
        margin-top: 0;
        margin-left: 21px;
    }

    .subrow {
        margin-top: 10px;
        display: block;
    }

        .subrow span.product-subtotal {
            bottom: 0px;
        }

    .quantity .td-title {
        text-align: right;
        top: 6px;
    }

    .unit-price {
        margin-bottom: 10px;
    }

    .navbar .container {
        width: 100%;
    }

        .navbar .container ul li:nth-last-child(2) {
            float: right !important;
            text-align: right;
        }

    .comment {
        padding-bottom: 50px !important;
    }

    .subrow span.product-subtotal {
        position: relative;
        bottom: 0px;
    }

    .subrow .qty-input {
        margin-top: 0;
        margin-left: 21px;
    }

    .subrow {
        margin-top: 10px;
        display: block;
    }

    .quantity .td-title {
        text-align: right;
        top: 6px;
    }

    .unit-price {
        margin-bottom: 10px;
    }

    .navbar .container {
        width: 100%;
    }

        .navbar .container ul li:nth-last-child(2) {
            float: right !important;
            text-align: right;
            margin-left: auto;
        }

    .comment {
        padding-bottom: 50px !important;
    }
}

@media (max-width: 440px) {
    #ModalQuickView .modal-dialog {
        margin: 0;
    }

    .inbox-col,
    .admin-icon {
        display: none !important;
    }

    .product-quickview .quick-close,
    .product-quickview .close {
        right: -4px;
        top: -8px;
        opacity: 1;
    }

    .product-quickview .container {
        padding-left: 0;
        padding-right: 0;
    }

    .generalTitle {
        font-size: 24px;
    }

    .link-rss {
        position: relative;
        top: -5px;
    }
}

@media (max-width: 385px) {
    #searchModal .search-box-select {
        max-width: 90px;
        height: 52px;
        border-top: 0;
        border-bottom: 0;
        border-left: 1px solid #9da6b2;
    }

    .wishlist-content .btn-section .btn {
        width: 100%;
    }

    .shopping-cart td.product .product-name {
        font-size: 16px;
    }
}

@media (max-width: 372px) {
    .flyout-cart-header,
    .flyout-cart-nodata-text {
        font-size: 13px;
    }

    .c-offcanvas--left,
    .c-offcanvas--right {
        width: 285px;
    }

    .flyout-cart {
        min-width: 285px;
    }

    .card.gen .btn-group .btn-secondary {
        min-width: 36px !important;
    }

    .product-details-page .associatedItem .add-to-cart-button {
        margin-top: 0;
    }

    .shopping-cart .subtotal-text,
    .shopping-cart .unit-price-text {
        font-size: 18px;
    }

    .shopping-cart .discount {
        font-size: 14px;
    }

    .shopping-cart-page .common-buttons .update-cart-button,
    .shopping-cart-page .common-buttons .continue-shopping-button {
        width: 100%;
    }

    .shopping-cart .product-picture img {
        max-width: 100%;
    }

    .shopping-cart .subtotal {
        padding-left: 10px !important;
    }

    .shopping-cart .quantity .qty-input {
        width: 42px;
    }

    #searchModal .nav-item.edit {
        display: flex !important;
        justify-content: center;
        width: 60px;
    }

    .slider-wrapper.theme-custom {
        margin-top: 0;
    }

    .mfp-hide {
        display: none !important;
    }

    .mobile-menu-button {
        width: 61px;
    }
}
/* TOOLTIP */

.tooltip .tooltip-inner {
    padding: 10px 15px;
}
/* PRODUCT REVIEW RESPONSE */

blockquote.administration-response {
    display: block;
    font-size: 80%;
    color: #6c757d;
    margin-top: 10px;
    padding: 15px;
    border: 1px solid #0091b5;
    border-left: 20px solid #0091b5;
}

    blockquote.administration-response p {
        font-style: italic;
    }

h5.administration-response-header {
    color: #0091b5
}

/*=========================================================
====================== New Added CSS ======================
=========================================================*/

    .header-bottom .nav-item .nav-item.dropdown .nav-link,
    .header-bottom .nav-item .nav-item .nav-link {
        padding: 0;
    }

#GrandCarousel .carousel-control-prev, #GrandCarousel .carousel-control-next {
    background: #dfdcdc !important;
    border-radius: 0 !important;
}

.text-default-color {
    color: #F05E26;
}

a.text-default-color:hover {
    color: #d54505;
    transition: .4s;
}

.closeAllFilters, .clearAllfilters,
#slider-range .ui-slider-handle,
#slider-range .ui-slider-range {
    background-color: #f26526 !important;
    border-color: #f26526 !important;
}

#ajaxfilter-form .ajaxfilter-section {
    margin-bottom: 20px;
}

.ajax-filter-section .square.active {
    background-color: #f26526 !important;
}

#block-manufacturer-navigation span.mdi-arrow-right,
.generalLeftSide #block-category-navigation span.mdi-arrow-right {
    font-size: 16px;
    color: #F26526;
    line-height: 21px;
    padding-right: 5px;
}

.generalLeftSide #block-recently-viewed-products li.mb-1 {
    border-bottom: 1px solid #ddd;
}

.generalLeftSide .block-recently-viewed-products,
.generalLeftSide .block-manufacturer-navigation,
.generalLeftSide .block-category-navigation {
    border: 1px solid #ddd;
    border-top: 0;
    padding: 15px;
    margin-bottom: 20px;
}
.custom-container .generalLeftSide .block-category-navigation {
    max-width: none !important;
    position: unset !important;
    padding: 15px !important;
    margin: 20px 0 !important;
}
.custom-container .generalLeftSide #block-category-navigation ul.list,
.custom-container .generalLeftSide #block-category-navigation .sublist {
    display: block;
}
.custom-container .generalLeftSide #block-category-navigation ul li:hover > .sublist {
    position: unset;
    background-color: #fff;
}
.custom-container .generalLeftSide #block-category-navigation .sublist,
.custom-container .generalLeftSide #block-category-navigation ul li:hover > .sublist {
    padding: 5px;
}

.generalLeftSide #block-category-navigation ul li a .cat-name-container .cat-name::after,
.generalLeftSide .block-category-navigation li.last.active > .sublist > li a::before {
    content: none;
}
.generalLeftSide .block-category-navigation li.last.active > .sublist > li a {
    margin-bottom: 0;
}
.generalLeftSide .block-category-navigation li a {
    color: #888 !important;
}
.generalLeftSide .block-category-navigation li a:hover {
    color: #F26526 !important;
}
.block-category-navigation .viewBox .list>li>a>.mdi-arrow-right {
    display: none;
}
.generalLeftSide #block-recently-viewed-products h2.h5,
.generalLeftSide .block-manufacturer-navigation h2.h5,
.generalLeftSide .block-category-navigation h2.h5 {
    background-color: #F26526;
    padding: 10px;
    color: #fff;
    margin: -15px -15px 0 -15px;
}

.generalLeftSide .block .h5 strong {
    color: #fff !important;
    font-size: 14px !important;
}

.product-box .linearicons-bag2 {
    color: #fff;
}

.product-list.row .bottom.d-md-flex.d-none {
    flex-wrap: wrap;
    display: block !important;
}

#block-category-navigation ul li:hover > .sublist .sublist {
    top: 23px;
}

#ajaxfilter-form {
    margin-bottom: 20px !important;
    border: 1px solid #ccc;
    border-top: none;
    padding: 13px 10px 0 10px;
}

.generalLeftSide .closeAllFilters,
.generalLeftSide .clearAllfilters {
    font-size: 14px;
    margin: 0 !important;
    border-radius: 0 !important;
    text-align: left;
    padding: 10px;
    height: auto;
    font-weight: 600 !important;
}

.generalLeftSide .clearAllfilters {
    margin-right: 1px !important;
}

.ajax-filter-section .filter-section .title {
    font-size: 15px;
    font-weight: 600;
}

#NewProd.landing-page .product-box.landing .btn-product {
    border-bottom: none !important;
    margin: 15px 0 !important;
}

.swiper-container.landing-page .bottom .align-items-lg-center {
    display: block !important;
}

.home-page .marked-container {
    background: #f9f9f9;
}

.page.home-page .swiper-slide {
    text-align: center;
    margin-bottom: 1rem;
    background-color: #fff;
    box-shadow: 0 1px 16px rgba(0,0,0,.04);
}

    .page.home-page .swiper-slide a {
        display: block;
        color: #292929;
        font-size: 14px;
        font-weight: 600;
        line-height: 14px;
    }
        .page.home-page .swiper-slide a span {
            display: block;
            padding: 20px 5px;
            border-top: 1px solid #ddd;
        }
.product-box .product-info {
    border-top: 1px solid #ddd;
}
        .page.home-page .swiper-slide a:hover {
            color: #F26526;
            box-shadow: 0 0 10px rgba(0,0,0,.15);
            -webkit-transition: .3s ease;
            -moz-transition: .3s ease;
            -o-transition: .3s ease;
            transition: .3s ease;
        }

    .page.home-page .product-box.grid-box .title a:hover,
    .page.home-page .swiper-slide .product-box a.picture:hover {
        box-shadow: unset;
    }

.page.home-page .product-box.grid-box .title a {
    padding-top: 10px;
    padding-bottom: 10px;
}

.page.home-page .swiper-slide .product-box a.picture {
    padding: 0;
}

.FeaturedCategoryProducts .swiper-button-disabled {
    background: #e3e3e3 !important;
    cursor: not-allowed;
}

.home-page .FeaturedCategoryProducts .nav-link {
    background-color: transparent !important;
}

.home-page .product-column.category-img-container ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    background-color: #F26526;
    padding: 10px 15px;
    margin: 0;
    /*background: rgba(3, 2, 2, 0.6);*/
    background: rgba(242, 101, 38, 0.9);
    position: absolute;
    bottom: 0;
    width: calc(100% - 30px);
}

.FeaturedCategoryProducts.product-grid-row:hover .backdrop-menu {
    display: block;
}

.header-top .header-links .nav-item.dropdowns-container > div:first-child {
    margin-left: 0;
}

.home-page .product-column.category-img-container ul a {
    color: #fff;
}

    .home-page .product-column.category-img-container ul a:hover {
        color: #d3d1d1;
    }

.home-page .product-column.category-img-container ul li:not(:last-child) {
    margin-right: 15px;
}

    .home-page .product-column.category-img-container ul li:not(:last-child)::after {
        content: '|';
        padding-left: 15px;
        color: #191919;
    }

.FeaturedCategoryProducts .category-img-container a::before,
.FeaturedCategoryProducts .category-img-container a::after {
    z-index: -1 !important;
}

.home-page .marked-container .box-unvisible {
    margin-left: 2px !important;
}

.product-box:not(.landing) .picture-container {
    background-color: #fff !important;
}

.footer-lower .text-success {
    color: #f26526 !important;
}

footer .about-us.block .list-group-item span:first-child {
    font-size: 16px;
    margin-top: 4px;
}


.shopping-cart .remove-from-cart input[type='checkbox'].checkbox-u:checked + label:before,
.shopping-cart .remove-from-cart input[type='checkbox'].checkbox-u:checked + label:after {
    background: #cc0b0b !important;
}

.shopping-cart .remove-from-cart input[type='checkbox'].checkbox-u:checked + label {
    border: 1px solid #cc0b0b;
}





/*======= shopping cart =======*/
.shopping-cart-container .remove-from-cart .deleteshoppingcartitem:hover .linearicons-cross {
    color: #cc0b0b;
}

.page.shopping-cart-page .shopping-cart-container .shopping-cart thead th {
    background-color: #F26526;
    color: #fff;
}

.page.shopping-cart-page .shopping-cart-container .total-info thead th {
    color: #F26526;
}

/*======= Register form =======*/
.card-header-color,
.registration-page .card .card-header,
.page.account-page .card .card-header,
.custom-card-title,
.account-page.address-edit-page .generalTitle,
.reward-points-history .reward-history-title {
    background-color: #e7e7e7;
    border-radius: 0;
    color: #F26526;
    padding: 15px;
    font-size: 17px;
    display: flex;
    align-items: center;
}

.card-header .mdi {
    padding-right: 5px;
}

.custom-bg-color,
.registration-page .card-body,
.page.account-page .card-body,
.address-edit-page .edit-address.row {
    background-color: #f5f5f5;
}

.address-edit-page .edit-address.row {
    margin: 0;
    padding: 15px 5px;
}

.btn-custom-button,
.btn-outline-green,
.continue-shopping-button,
.btn-secondary.email-a-friend-wishlist-button,
.product-box .btn.btn-info {
    background-color: #F05E26 !important;
    border-color: #F05E26 !important;
    color: #fff !important;
    border: none !important;
    padding: 8px 20px;
}

    .btn-custom-button:hover,
    .btn-product:hover,
    .btn-outline-green:hover,
    .continue-shopping-button:hover,
    .btn-secondary.email-a-friend-wishlist-button:hover,
    .product-box .btn.btn-info {
        background-color: #ca410b !important;
        border-color: #ca410b !important;
        color: #fff;
        transition: 0.4s;
    }

.form-control:focus,
.custom-select:focus {
    border-color: #F78C21;
    border: 1px solid rgba(247, 140, 33, 0.1);
    box-shadow: 0 0 0 0.1rem rgba(247,140,33,.25);
}

.page.registration-result-page {
    background-color: #f9f9f9;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.registration-result-page span.mdi-account-check {
    border: 2px solid #28a745;
    border-radius: 50%;
    padding: 10px;
    margin-bottom: 15px;
}

.lbl-custom-label {
    font-size: 18px !important;
    color: #f26526 !important;
}

.page.account-page .blog-filter.filter-button {
    max-width: unset;
}

.page.category-page nav[aria-label="Page navigation"],
.category-page .ajax-products ul.pagination {
    border-top: 1px solid #dfdfdf;
    text-align: right;
    margin-top: 30px;
}

    .page.category-page nav[aria-label="Page navigation"] .pagination {
        margin: 15px 0 0 0;
        border-top: none;
    }

.category-page .featured-product-grid h2.h5.p-3 {
    background-color: #f26526;
    color: #fff;
    line-height: 1;
    margin: -5px 0 15px 0;
    font-size: 16px;
}

.product-grid .product-box.grid-box .btn-secondary {
    width: 40px;
    height: 40px;
    background-color: transparent;
    border: 0;
    color: #292929;
}

.product-grid.subCategoryList {
    padding: 0 15px 0 15px;
}


.free-shipping.label-warning {
    background-color: #F26526;
    color: #fff;
    font-size: 14px;
    padding: 6px 10px 6px 10px;
    //border-radius: 0;
    //line-height: 0;
}

.container.similar-products-grid.px-3 {
    margin-top: 30px;
}
/*=========== Shopping cart - checkout ==========*/
.checkout-page .opc .allow .card-grey {
    background-color: #28a745;
}

.checkout-page .opc .active .card-grey {
    background-color: #F26526;
}

.checkout-page .checkout-body {
    background-color: #f9f9f9;
    margin: 0 !important;
}

    .checkout-page .checkout-body #ordersummarypagecart {
        margin-top: 0 !important;
    }

#checkout-confirm-order-load .order-summary-content ul {
    padding: 0 15px !important;
}

#checkout-confirm-order-load .order-summary-content .title {
    color: #F26526;
}

#checkout-confirm-order-load .order-summary-content {
    margin-top: 15px;
}

.page.compare-products-page table,
.reward-points-page .reward-points-history table {
    border-bottom: none;
}

.page.compare-products-page tbody > tr > td {
    vertical-align: middle;
    border: 1px solid #dee2e6;
}

    .page.compare-products-page tbody > tr > td:first-child {
        background-color: #f26526;
        color: #fff;
    }

.page.wishlist-page .shopping-cart-container {
    background-color: #f5f5f5;
}

    .page.wishlist-page .shopping-cart-container thead th {
        background-color: #F05E26;
        color: #fff;
    }

    .page.wishlist-page .shopping-cart-container table .subtotal {
        text-align: left;
    }

    .page.wishlist-page .shopping-cart-container table tr {
        border-bottom: 1px solid #ddd;
    }

/*============ Contact/About us page ===========*/
.page.contact-page .generalMarginSupporter {
    margin: 0;
}

.page.contact-page .contact-details-div {
    background-color: #F05E26;
}

    .page.contact-page .contact-details-div ul li,
    .page.contact-page .contact-details-div ul li a {
        color: #fff;
    }

    .page.contact-page .contact-details-div span.lnr {
        padding-right: 5px;
    }

.page.topic-page .page-title h1 {
    color: #F26526;
}




/*============ 404 page not found ===========*/
.page.not-found-page {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -50px 0 30px 0;
}

    .page.not-found-page .not-found-page-title h2 {
        font-size: 54px;
        font-weight: 600;
        color: #F26526;
    }

    .page.not-found-page .topic-block-body ul {
        padding: 0;
    }

@media(min-width: 1024px) {
    aside.c-offcanvas.c-offcanvas--left.c-offcanvas--overlay.is-open {
        display: none;
    }

    .page.not-found-page .not-found-page-title h2 {
        font-size: 92px;
    }

    footer #footer-block-about-us .viewBox img {
        margin-left: -7px;
    }

    .category-page .featured-product-grid h2.h5.p-3 {
        font-size: 1.25rem;
    }

    .header-logo .store-logo img {
        max-width: 160px;
    }
}

@media(max-width: 600px) {
    #newsletter-email {
        min-width: unset;
    }

    .page.account-page .card .card-header.justify-content-md-between {
        display: block;
    }

    .page.account-page .justify-content-md-between .btn-outline-green {
        margin-top: 10px;
    }

    #ajaxfilter-form {
        padding-bottom: 0;
    }

    aside.c-offcanvas--right {
        width: 300px;
    }

    .flyout-cart .flyout-cart-bottom strong,
    .flyout-cart .flyout-cart-bottom .totals {
        font-size: 12px;
    }

    .page.category-page nav[aria-label="Page navigation"] .pagination {
        flex-wrap: wrap;
    }

        .page.category-page nav[aria-label="Page navigation"] .pagination li {
            margin-bottom: 10px;
        }
}

@media(min-width: 768px) {
    .page-container > .container {
        padding: 0;
    }

    .category-selectors .col-lg-auto.col-12 > .btn-group {
        display: none;
    }
}

@media(min-width: 1500px) {
    .container {
        max-width: 1350px;
    }
}

.pagination .first-page .page-link {
    color: #292929;
    margin: 0 5px 0 0;
    background-color: #fff;
    border-color: transparent;
    border-radius: 0;
}

    .pagination .first-page .page-link:hover {
        background-color: #f26526;
        color: #fff;
    }
.page.compare-products-page .table ul li {
    list-style: disc;
}

footer .footer-manufacturer {
    margin: 15px 0 0 0;
}
footer .footer-manufacturer h4 {
    font-size: 18px;
}
    footer .footer-manufacturer ul {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
    }
    footer .footer-manufacturer .list-group .list-group-item {
        margin: 0 15px 8px 0;
    }
        @media (min-width: 768px){
            footer .footer-manufacturer ul {
                display: flex;
                align-items: center;
                flex-wrap: wrap;
                flex-direction: row;
                justify-content: flex-start;
            }
        }
@media (min-width: 768px) and (max-width: 991px ){
    footer .footer-manufacturer ul {
        justify-content: center;
    }
}

.product-tabs #product_tab_content ul li {
    list-style: disc;
}

.page.login-page .external-authentication {
    align-items: center;
    flex-wrap: wrap;
    padding-left: 1.25rem;
}
    .page.login-page .external-authentication > .title {
        width: 100%;
        margin-bottom: 20px;
        font-size: 18px;
        font-weight: 600;
    }
    .page.login-page .external-authentication .google-login-block {
        margin-bottom: 3px;
    }

.form-group {
    position: relative;
}

.changePassForm .icon.fa {
    position: absolute;
    right: 12px;
    top: 49px;
}

.changePassForm .form-control {
    padding: .375rem 2.5rem .375rem .75rem;
}

.changePassForm-register .icon.fa {
    right: 27px;
}

.gender .custom-control-label::before,
.gender .custom-control-label::after,
.page.checkout-page .custom-control-label::before,
.page.checkout-page .custom-control-label::after {
    left: -20px !important;
}

.changePassForm-Login .fa {
    position: absolute;
    right: 25px;
    top: 9px;
}

.changePassForm-Login .form-control {
    padding: .375rem 2.2rem .375rem .75rem;
}