.cart-button,
.storenav-button {
    position: absolute;
    margin: 0 16px;
    font-size: 16px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 16px;
    font-family: var(--first-font);
    font-weight: bold;
    color: #fff;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -o-transition: .3s;
    transition: .3s
}

.storenav-button {
    left: 16px;
}

.cart-button {
    right: 122px;
}

.cart-button:hover,
.storenav-button:hover {
    color: var(--first-color) !important;
}

.cart-notification {
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    background: var(--first-color);
    color: #fff;
    font-size: 12px;
    text-align: center;
    line-height: 20px;
    width: 20px;
    -webkit-transform: translate(10px, -10px);
    -moz-transform: translate(10px, -10px);
    -ms-transform: translate(10px, -10px);
    -o-transform: translate(10px, -10px);
    transform: translate(10px, -10px);
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}

@media only screen and (max-width:992px) {

    .cart-button,
    .storenav-button {
        border: none;
        transform: none;
        top: auto;
        bottom: 13px;
        z-index: 2;
    }
}

.storenav-close {
    display: none;
    position: absolute;
    top: 16px;
    right: 16px;
    cursor: pointer;
    color: #fff;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -o-transition: .3s;
    transition: .3s
}

.donate-button {
    position: absolute;
    top: 50%;
    right: 32px;
    transform: translateY(-50%);
}



.cart-button:hover,
.storenav-button:hover,
.storenav-close:hover {
    color: grey
}

@media screen and (max-width: 1200px) {
    .cart-button {
        right: 16px;
    }

    .donate-button {
        display: none !important;
    }
}

#storenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 3;
    top: 0;
    left: 0;
    background: var(--first-color);
    overflow: hidden;
    padding-top: 60px;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -o-transition: .5s;
    transition: .5s
}

#storenav.active-1 {
    width: 250px
}

#storenav.active-2 {
    width: 500px
}

#storenav.active-3 {
    width: 750px
}

#storenav ul {
    list-style: none;
    margin-left: 0;
    width: 250px
}

#storenav a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 25px;
    color: #fff;
    display: block;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -o-transition: .3s;
    transition: .3s
}

#storenav a:hover {
    color: grey
}

[class*=storenav-sub-] {
    position: absolute;
    top: 0;
    left: 250px;
    padding-top: 60px;
    height: 100%;
    width: 250px;
    opacity: 0;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -o-transition: .5s;
    transition: .5s
}

.storenav-sub-1 {
    background-color: var(--second-color)
}

[class*=storenav-sub-].active {
    z-index: 1;
    opacity: 1
}

@media screen and (max-width:750px) {
    .storenav-close {
        display: block;
        font-size: 25px
    }

    .storenav-close+ul {
        display: none;
    }
}

.offers {
    background-color: #ff2e28;
    float: right
}

.offers:hover a {
    background-color: #ff2e28 !important;
    color: #fff !important
}

.offers ul {
    right: 0
}

.offers .offers-link {
    color: #fff !important;
    font-weight: 700;
    line-height: 40px !important;
    height: 40px
}

.offers-link::before {
    font-family: "Font Awesome 5 Free";
    margin-right: 3px;
    font-weight: 900;
    text-rendering: optimizeLegibility;
    content: "\f02b"
}

.basket-des {
    display: block
}

.basket-mob {
    display: none
}

.basket-mob a {
    margin-right: 0
}

@media only screen and (max-width:768px) {
    #normalnav {
        width: 100%;
        position: relative
    }

    .basket-des {
        display: none !important
    }

    .basket-mob {
        display: inline-block;
        position: relative;
        float: left
    }
}

@media only screen and (min-width:768px) {
    .basket-mob .cart-notification {
        display: none
    }
}

.cart-count {
    display: none
}

#soft-cart {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    top: 0;
    right: 0;
    background-color: #efefef;
    border-left: #ccc;
    overflow-x: hidden;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
    box-sizing: border-box
}

#soft-cart.active {
    height: 100%;
    width: 360px
}

#soft-cart h3 {
    text-align: center;
    white-space: nowrap
}

.cart-close {
    display: none;
    position: absolute;
    font-size: 25px;
    top: 16px;
    right: 16px;
    cursor: pointer;
    color: #fff;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -o-transition: .3s;
    transition: .3s
}

.cart-close:hover {
    color: grey
}

.cart-card {
    display: flex;
    align-items: stretch
}

.cart-card>div {
    margin: 5px
}

.cart-item-image {
    flex-grow: 1;
    text-align: center
}

.cart-item-name {
    flex-grow: 3;
    text-align: left
}

.cart-item-qty {
    flex-grow: 1;
    text-align: right
}

.cart-item-image img {
    max-width: 75px;
    max-height: 75px
}

.cart-menu-header {
    background: var(--first-color);
    padding: 16px;
    font-family: var(--first-font);
    color:  var(--second-color);
    font-size: 28px;
    font-weight: bold;
}

a.checkouttbn {
    position: absolute;
    bottom: 0;
    width: 100%;
    left: 0;
    text-align: center;
    color: #fff !important;
    background: var(--pos-button);
    padding: 20px 10px !important
}

@media screen and (max-width:750px) {
    .cart-close {
        display: block
    }
}

ul#divshopcart {
    width: 100%
}

#soft-cart h4 {
    color: #655d5d
}

#soft-cart ul {
    padding: 16px;
    width: unset
}

#soft-cart ul li {
    padding-bottom: 5px;
    margin-bottom: 5px;
    border-bottom: 1px solid #ccc
}

#soft-cart ul li a {
    display: unset;
    color: var(--second-color);
    padding: 0;
    font-size: initial
}

#soft-cart ul li a:hover {
    color: var(--link-color-hover)
}

.display-grid-item-holder {
    padding: 1%
}

.display-grid-item {
    padding: 8px;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -o-transition: .3s;
    transition: .3s
}

@media only screen and (max-width:1200px) {
    .display-grid-item {
        width: 33.3%
    }
}

@media only screen and (max-width:900px) {
    .display-grid-item {
        width: 50%
    }

    .display-name-holder h2 {
        font-size: 16px
    }
}

.display-grid-item:hover {
    background-color: #efefef
}

.image-holder-wrap {
    background-color: #fff;
    border: 1px solid #b2b2b2;
    width: 100%;
    display: table;
    position: relative
}

.image-holder {
    background: #fff none repeat scroll 0 0;
    display: table-cell;
    height: 248px;
    overflow: hidden;
    padding: 10px;
    text-align: center;
    vertical-align: middle
}

.image-holder a {
    display: inline-block;
    width: 100%
}

.image-holder img {
    width: 100%;
    max-height: none;
    max-width: none
}

.display-name-holder {
    height: 68px;
    padding: 8px;
    text-align: center;
    overflow: hidden
}

.display-name-holder h2 {
    font-size: 17px;
    margin: 0;
    line-height: 21px
}

.display-name-holder h2 a {
    color: var(--first-color)
}

.display-name-holder h2 a:hover {
    color: #666 !important;
    text-decoration: none
}

.display-button-holder {
    overflow: hidden;
    padding: 8px;
    text-align: center
}

.display-button-holder .display-price {
    float: left;
    font-size: 16px;
    padding: 7px;
    padding-left: 0;
    font-weight: 700
}

.display-button-holder input {
    background-color: var(--second-color);
    color: #fff !important;
    margin-top: 0;
    padding: 8px 12px;
    width: auto;
    border: 0;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 700;
    -webkit-transition: background-color .3s;
    -moz-transition: background-color .3s;
    -o-transition: background-color .3s;
    transition: background-color .3s
}

.display-button-holder input:hover {
    cursor: pointer;
    color: #fff !important;
    background-color: #666;
    background-image: none;
    text-decoration: none
}

.cust-menu-heading {
    background: var(--first-color);
    color: #fff;
    padding: 8px;
    font-size: 18px;
    margin-bottom: 0
}

.cust-cat-menu ul,
.cust-top-menu ul {
    margin-left: 0;
    margin-bottom: 16px;
    font-size: 16px
}

.cust-cat-menu ul li,
.cust-top-menu ul li {
    list-style: none
}

.cust-cat-menu ul li a,
.cust-top-menu ul li a {
    padding: 2px 8px;
    display: block;
    border-top: 1px solid #fff;
    background-color: var(--second-color);
    color: #fff
}

.cust-cat-menu ul li a:hover,
.cust-top-menu ul li a:hover {
    background-color: var(--first-color);
    text-decoration: none
}

.cat-has-sub>i.dropsubmenuclass {
    float: right;
    bottom: 23px;
    position: relative;
    color: #fff;
    right: 7px
}

.cat-has-sub>ul {
    display: none
}

.cat-has-sub a:hover {
    border-bottom-color: #fff !important
}

.cat-has-sub:hover>ul {
    display: block !important;
    margin-bottom: 0
}

.cust-cat-menu ul li ul li a {
    background: #b2b2b2;
    color: #000
}

.cust-cat-menu ul li ul li a:hover {
    color: #fff
}

#lblbreadcrumbstop {
    display: block;
}

#lblbreadcrumbstop a {
    display: inline-block;
    color: #666;
    font-size: 16px;
    font-weight: bold;
}

#lblbreadcrumbstop a::after {
    color: grey !important;
    margin: 0 12px;
    content: "\f0da";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased
}

#lblbreadcrumbstop a:last-child:after {
    display: none
}

.category-panel {
    display: inline-block;
    padding-right: 32px
}

.current-selection {
    margin-bottom: 16px
}

.current-link {
    display: block;
    padding: 8px 0;
    font-size: 16px;
    font-weight: 700
}

.current-link a {
    color: var(--first-color);
    text-decoration: none !important;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -o-transition: .3s;
    transition: .3s
}

.current-link a:hover {
    color: var(--second-color) !important
}

.current-link i {
    display: inline-block;
    float: right;
    color: #666;
    padding: 2px 0;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -o-transition: .3s;
    transition: .3s
}

.accordion-category,
.accordion-checkout {
    padding: 16px
}

.accordion-category h3,
.accordion-checkout h3 {
    color: var(--first-color);
    margin: 0
}

.accordion-category.active h3,
.accordion-category:hover h3,
.accordion-checkout.active h3,
.accordion-checkout:hover h3 {
    color: var(--second-color)
}

.accordion-category:after,
.accordion-category:before,
.accordion-checkout:after,
.accordion-checkout:before {
    background-color: var(--first-color)
}

.accordion-category.active:after,
.accordion-category.active:before,
.accordion-category:hover:after,
.accordion-category:hover:before,
.accordion-checkout.active:after,
.accordion-checkout.active:before,
.accordion-checkout:hover:after,
.accordion-checkout:hover:before {
    background-color: var(--second-color)
}

.accordion-category+.panel,
.accordion-checkout+.panel {
    padding: 0 16px
}

.accordion-category.active+.panel,
.accordion-checkout.active+.panel {
    padding: 0 16px 16px 16px
}

@media only screen and (min-width:768px) {
    .accordion-category h3 {
        color: var(--first-color) !important
    }

    .accordion-category:after,
    .accordion-category:before {
        display: none
    }

    .accordion-category+.panel {
        padding: 0 16px 16px 16px;
        max-height: fit-content !important
    }
}

.current-link i:hover {
    color: var(--second-color)
}

.delivery-table {
    font-family: inherit;
    border-collapse: collapse;
    width: 100%
}

.delivery-table td,
.delivery-table th {
    border: 1px solid #ddd;
    padding: 8px
}

.delivery-table tr:nth-child(even) {
    background-color: #f2f2f2
}

.delivery-table th {
    padding-top: 12px;
    padding-bottom: 12px;
    text-align: left;
    background-color: var(--first-color);
    color: #fff
}

.orderTotals-header {
    padding: 5px 6px;
    font-weight: 700;
    background-color: #000;
    color: #fff
}

.order-table-column {
    padding: 5px 6px
}

#productsearch {
    display: block;
    margin-bottom: 15px
}

#prodcategories {
    display: block;
    margin-bottom: 15px
}

#prodmanufacturers {
    display: block;
    margin-bottom: 15px
}

#prodcolours {
    display: block;
    margin-bottom: 15px
}

#prodsizes {
    display: block;
    margin-bottom: 15px
}

.divnotification {
    background-color: rgba(0, 128, 0, 1);
    color: #fff;
    padding: 15px;
    position: absolute;
    right: 6%;
    bottom: 6%;
    text-align: center;
    z-index: 300;
    -moz-box-shadow: 5px 5px 5px 0 #b2b2b2;
    -webkit-box-shadow: 5px 5px 5px 0 #b2b2b2;
    box-shadow: 5px 5px 5px 0 #b2b2b2
}

.divnotification a {
    color: #ff0
}

.product {
    position: relative;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    position: relative;
    cursor: pointer;
    width: 20%;
    text-align: center;
    margin: auto;
    margin: 16px
}

.page-break {
    max-width: 980px;
    height: 1px;
    background: var(--first-color);
    clear: both;
    margin: auto;
    margin-bottom: 19px
}

.products-slick-slides {
    max-width: 1200px;
    margin: auto
}

.products-slick-slides .slick-next,
.products-slick-slides .slick-prev {
    color: var(--third-color)
}

.products-slick-slides .slick-prev {
    left: -20px;
    z-index: 1
}

.products-slick-slides .slick-next {
    left: auto;
    right: -20px
}

.products-slick-slides .slick-track {
    text-align: center
}

.products-slick-slides .slick-slide.product {
    width: 175px !important;
    margin: 10px;
    display: inline-block;
    float: none
}

.products-slick-slides .slick-slide.product a.image img {
    object-fit: cover;
    height: 100%
}

.products-slick-slides .slick-slide.product i.icon {
    top: 8px;
    left: 8px;
    font-size: 24px
}

.products-slick-slides .slick-slide.product i.icon i {
    font-size: 12px
}

.products-slick-slides .slick-slide.product .title {
    height: 55px;
    padding: 4px 8px
}

.product .recommended-price {
    font-family: inherit;
    font-size: 16px;
    padding: 8px;
    background-color: var(--second-color);
    color: #fff;
    font-weight: 700;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin-top: -2px;
    position: relative
}

.product .recommended-price::after {
    content: "Inc. VAT";
    font-weight: 300;
    font-size: 12px;
    line-height: 16px
}

.product .product-list-price span {
    color: var(--first-color) !important
}

.product-list-price {
    position: absolute;
    right: 0;
    bottom: 0;
    background-color: var(--first-color);
    color: #fff;
    padding: 6px 8px;
    font-family: inherit
}

.product:hover {
    -webkit-box-shadow: 0 8px 16px 0 rgba(0, 0, 0, .2);
    -moz-box-shadow: 0 8px 16px 0 rgba(0, 0, 0, .2);
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, .2);
    -webkit-transform: scale(1.01);
    -moz-transform: scale(1.01);
    -ms-transform: scale(1.01);
    -o-transform: scale(1.01);
    transform: scale(1.01)
}

.product-rating {
    width: 100%;
    display: inline-flex;
    margin-bottom: 10px;
    align-items: center
}

.product .icon {
    position: absolute;
    top: 24px;
    left: 24px;
    color: var(--second-color);
    font-size: 36px
}

.product .icon::after {
    content: "\f3ed";
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) rotateY(180deg);
    -moz-transform: translate(-50%, -50%) rotateY(180deg);
    -ms-transform: translate(-50%, -50%) rotateY(180deg);
    -o-transform: translate(-50%, -50%) rotateY(180deg);
    transform: translate(-50%, -50%) rotateY(180deg)
}

.product .icon i {
    color: #fff;
    line-height: 29px;
    font-size: 16px;
    position: absolute;
    z-index: 1;
    top: 48%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}

.product .image {
    display: block;
    width: 100%;
    padding-top: 100%;
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    overflow: hidden;
    background: #fff
}

.product .image img {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    max-width: 100%;
    max-height: 100%
}

.product .title h3 {
    font-size: 16px;
    margin: 0;
    color: #fff;
    max-height: 38px;
    width: 90%;
    overflow: hidden;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}

@media only screen and (max-width:1310px) {
    .product .recommended-price {
        min-height: 57.6px
    }

    .product .recommended-price .price-break {
        display: block
    }
}

@media only screen and (max-width:677px) {
    .product {
        margin: 8px !important
    }

    .product .title {
        padding: 4px !important
    }

    .product .title h3 {
        font-size: 12px;
        max-height: none
    }

    .product .recommended-price {
        font-size: 12px;
        line-height: 16px;
        min-height: 40px;
        padding: 4px
    }
}

.product .title {
    background: var(--first-color);
    padding: 8px;
    text-align: center;
    height: 75px;
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

.products-slick-slides {
    width: 96%;
    display: block;
    margin: auto !important;
    padding: 14px 0
}

.products-slick-slides .slick-next:before,
.products-slick-slides .slick-prev:before {
    color: var(--first-color);
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -o-transition: .3s;
    transition: .3s
}

@media only screen and (max-width:768px) {
    .products-slick-slides .slick-next {
        right: -10px
    }

    .products-slick-slides .slick-prev {
        left: -10px
    }

    .products-slick-slides {
        width: 94%
    }
}

@media only screen and (max-width:677px) {
    .products-slick-slides {
        width: 90%
    }
}

div.dxizControl_Mulberry.dx-contentBox {
    margin: auto !important;
    height: 360px !important;
    margin-bottom: 16px
}

div.dxiz-clipPanel.dxiz-inside {
    margin-top: 0 !important;
    height: 100% !important;
    width: 100% !important
}

.product-wrapper {
    clear: both;
    overflow: auto;
    margin: 12px auto;
    max-width: 980px
}

.productprice {
    float: right
}

.productmanufacturer {
    font-size: 12pt;
    margin: -10px 5px 10px 5px;
    display: block;
    color: #666
}

.noresults {
    font-size: 9pt;
    color: #666
}

.dxiz-wrapper {
    overflow: hidden
}

.zoomNavigatorWrapper {
    width: 100%;
    float: left;
    margin-top: 16px
}

.dxisControl.dxis-zoomNavigator {
    width: 100% !important
}

.dxis-nbBottom {
    width: 100% !important;
    max-width: 460px;
    overflow: hidden;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

.dxisControl .dxis-nbSlidePanelWrapper {
    width: 85% !important;
    left: 50% !important;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%)
}

.dxiz-wrapper>img {
    position: absolute;
    width: 100%;
    height: auto
}

.dxis-nextBtnHorOutsideWrapper {
    height: 100%;
    background-color: #fff !important
}

@media only screen and (max-width:1025px) {
    .dxis-nbBottom {
        margin: auto
    }
}

.product-gallery-holder {
    float: left;
    width: 50%
}

#imageZoom.dxizControl_Mulberry.dx-contentBox {
    max-width: 100%
}

#imageZoom.dxizControl_Mulberry.dx-contentBox #imageZoom_I.dxeImage_Mulberry {
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}

.product-detail-holder {
    padding-left: 16px;
    width: 50%
}

#prodattributes {
    max-width: 300px
}

div.dxizControl_Mulberry.dx-contentBox {
    margin: auto !important;
    height: 360px !important;
    overflow: hidden
}

#zoomNavigator.dxisControl_Mulberry.dxis-zoomNavigator {
    max-width: 100%;
    margin-top: 16px
}

#zoomNavigator.dxisControl_Mulberry.dxis-zoomNavigator,
.dxis-nbBottom {
    width: 100% !important
}

.dxis-nbSlidePanelWrapper {
    width: 85% !important
}

select {
    -webkit-appearance: none;
    appearance: none;
    -moz-appearance: none;
    padding: 6px 35px 6px 10px;
    background-color: #fff;
    background-image: url(../Administration/images/dropdown-arrow.gif);
    background-position: right center;
    background-repeat: no-repeat;
    cursor: pointer;
    min-width: 180px;
    font-family: inherit;
    border: 1px solid #b2b2b2;
    font-size: inherit
}

@media only screen and (max-width:1024px) {
    .product-wrapper {
        width: 100%;
        margin: 0;
        min-width: 100%
    }

    .product-detail-holder {
        float: left;
        width: 100%;
        padding: 8px;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        margin-top: 0;
        max-width: none
    }

    .product-gallery-holder {
        width: 100%;
        overflow: hidden;
        padding: 8px;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box
    }

    .product-long-description-holder {
        margin-top: 5%
    }

    .dxeImage,
    .dxiz-inside {
        margin-left: 0 !important
    }
}

.product-detail-holder {
    display: inline;
    float: left;
    max-width: 60%
}

.product-long-description-holder {
    clear: both;
    float: left;
    margin-top: 1%;
    padding-top: 1%;
    border-top: 1px solid #b2b2b2
}

.product-price {
    color: #ed1b2d;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    margin-top: -3px
}

.spacer {
    width: 100%;
    float: left;
    height: 10px;
    display: block
}

#prodattributes {
    padding: 8px;
    background-color: #efefef;
    margin-bottom: 15px
}

#prodattributes input[type=text] {
    max-width: 65px
}

.attribute-holder {
    float: none;
    margin-bottom: 4px;
    width: 100%;
    display: block
}

.attribute-detail td {
    float: none;
    padding: 2px
}

.numericOnly {
    width: unset !important
}

.alteration-textbox {
    height: 100px;
    display: block;
    width: 98%;
    margin: 1%;
    min-height: 100px
}

.product-sorting {
    float: left;
    margin: 0 auto 10px
}

.product-page-size {
    float: right;
    margin: 0 auto 10px
}

.product-selectors::after {
    clear: both;
    content: ".";
    display: block;
    font-size: 0;
    height: 0;
    line-height: 0;
    visibility: hidden
}

.product-selectors {
    margin-bottom: 10px
}

.tab {
    overflow: hidden;
    border-bottom: 1px solid #ccc;
    font-size: 0
}

.tab::before {
    content: '';
    margin-bottom: 0;
    display: none
}

.tab .tablinks {
    background-color: grey;
    border-right: 1px solid #fff;
    outline: 0;
    cursor: pointer;
    padding: 0 15px;
    transition: .3s;
    line-height: 40px;
    font-size: 16px;
    display: inline-block
}

.tab .tablinks:hover {
    background-color: var(--first-color);
    color: #fff
}

.tab .tablinks.active {
    background-color: var(--second-color);
    color: #fff
}

.tab .tablinks i {
    font-size: 90%;
    margin-right: 4px;
    line-height: 40px
}

.tabcontent {
    display: none;
    padding: 20px;
    border: 1px solid #ccc;
    border-top: none;
    margin-bottom: 20px;
    -webkit-animation: fadeEffect 1s;
    animation: fadeEffect 1s
}

#popupcontent .tabcontent {
    padding: 0;
    margin-bottom: 0
}

.tab button {
    background-color: inherit;
    float: left;
    border: none;
    outline: 0;
    cursor: pointer;
    padding: 14px 16px;
    transition: .3s;
    font-size: 17px;
    font-family: inherit
}

.tab button:hover {
    background-color: #ddd
}

.tab button.active {
    background-color: #ccc
}

.tab {
    overflow: hidden;
    width: 100%;
    margin-top: 20px;
    float: left;
    color: #fff
}

.tab div {
    background-color: var(--fourth-color);
    float: left;
    outline: 0;
    cursor: pointer;
    padding: 14px 16px;
    transition: .3s;
    font-size: 17px
}

@media only screen and (max-width:667px) {
    .tab div {
        width: 100%
    }
}

.tab div:hover {
    background-color: #ccc;
    color: #000
}

.tab div.active {
    background-color: var(--first-color)
}

.tabcontent {
    display: none;
    padding: 6px 12px;
    border: 1px solid #ccc;
    float: left;
    width: 100%
}

.tabcontent {
    animation: fadeEffect 1s
}

@keyframes fadeEffect {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

.cart-container {
    max-width: 1366px;
    margin: auto;
    padding: 16px
}

.content-holder-small {
    max-width: 900px;
    margin: 0 auto
}

.cart-header {
    text-align: center
}

.cart-table-full-wrapper {
    width: 100%;
    display: table;
    margin: 16px 0;
    border-collapse: collapse
}

.cart-table-half-wrapper-left {
    width: 48%;
    border: 1px solid #b2b2b2;
    display: table;
    margin-bottom: 20px;
    margin-right: 1.5%;
    border-collapse: collapse;
    display: inline-table
}

.cart-table-half-wrapper-right {
    width: 48%;
    border: 1px solid #b2b2b2;
    display: table;
    margin-bottom: 20px;
    margin-left: 1.5%;
    border-collapse: collapse;
    display: inline-table;
    float: right
}

.cart-table-update-wrapper {
    width: 100%;
    border: 1px solid #b2b2b2;
    display: table;
    margin-bottom: 20px;
    border-collapse: collapse
}

.cart-table-row {
    display: table;
    text-align: left;
    width: 100%
}

.cart-table-row:nth-last-child(4n) {
    border-top: 1px solid #ccc
}

.cart-table-row:last-child {
    border-bottom: 0 solid #b2b2b2
}

.cart-table-row p {
    margin-bottom: 0
}

.cart-cell-blank3,
.cart-cell-blank4,
.cart-cell-delivery,
.cart-cell-deliverydesc,
.cart-cell-head,
.cart-cell-head-price,
.cart-cell-head-products,
.cart-cell-head-qty,
.cart-cell-head-remove,
.cart-cell-head-total-unit-price,
.cart-cell-price,
.cart-cell-products,
.cart-cell-qty,
.cart-cell-remove,
.cart-cell-topay,
.cart-cell-topaydesc,
.cart-cell-total,
.cart-cell-total-unit-price,
.cart-cell-totaldesc {
    display: table-cell;
    padding: 8px;
    vertical-align: middle;
    text-align: right;
    width: 10%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

.cart-cell-remove input {
    vertical-align: middle
}

.cart-cell-head,
.cart-cell-head-price,
.cart-cell-head-products,
.cart-cell-head-qty,
.cart-cell-head-remove,
.cart-cell-head-total-unit-price {
    background-color: var(--first-color);
    color: #fff;
    font-weight: 700
}

.cart-cell-head-products,
.cart-cell-products {
    width: 55%;
    text-align: left
}

.cart-cell-head {
    text-align: left
}

.cart-cell-blank3 {
    width: 70%
}

.cart-cell-delivery,
.cart-cell-deliverydesc,
.cart-cell-topay,
.cart-cell-topaydesc,
.cart-cell-total,
.cart-cell-totaldesc {
    text-align: right
}

.order-exceeded {
    padding: 0 4px;
    background-color: red;
    color: #fff;
    text-transform: uppercase;
    line-height: 200%
}

#btnsend {
    float: right
}

.second-button {
    background-color: var(--first-color);
    color: var(--second-color);
    float: right
}

#btnupdate,
.update-cart-button {
    margin: 0 8px;
    display: none;
    max-width: 140px
}

.second-button:hover {
    background-color: var(--second-color) !important;
    color: var(--first-color) !important
}

.grey-button {
    background-color: #d3d3d3;
    color: grey;
    display: none;
    float: right
}

.grey-button:hover {
    background-color: grey !important;
    color: #d3d3d3 !important
}

.order-total {
    color: var(--first-color);
    font-size: 20px;
    font-family: inherit
}

.cart-cell-products a {
    vertical-align: middle;
    font-family: inherit;
    font-size: 18px;
    display: block;
    color: var(--second-color);
}

.cart-cell-products img {
    float: right;
    margin-right: 10px;
    height: 60px
}

.cart-cell-detail {
    display: table-cell;
    width: 50%;
    vertical-align: middle;
    padding: 8px;
    text-align: left
}

.cart-cell-detail p,
.cart-cell-full p {
    font-weight: 700
}

.cart-cell-data {
    display: table-cell;
    width: 50%;
    vertical-align: middle
}

.cart-cell-full {
    display: table-cell;
    vertical-align: middle;
    padding: 8px;
    text-align: left;
    width: 100%
}

@media only screen and (max-width:677px) {
    .cart-cell-blank3 {
        display: none
    }

    .cart-table-row:nth-last-child(1),
    .cart-table-row:nth-last-child(2),
    .cart-table-row:nth-last-child(3),
    .cart-table-row:nth-last-child(4) {
        width: 100%;
        border-bottom: 0
    }

    .cart-table-row:nth-last-child(4n) {
        border-top: none
    }

    .cart-cell-price,
    .cart-cell-products,
    .cart-cell-qty,
    .cart-cell-remove {
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        display: inline-block;
        width: 100% !important;
        text-align: center
    }

    .cart-cell-qty {
        padding: 0
    }

    .cart-cell-price,
    .cart-cell-qty,
    .cart-cell-total,
    .cart-cell-totaldesc {
        width: 50% !important;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        display: inline-block
    }

    .cart-cell-products a {
        font-size: 20px;
        line-height: 24px
    }

    .cart-cell-products img {
        display: block;
        float: none;
        margin: auto;
        width: 30%;
        height: auto;
        max-height: 150px
    }

    .cart-cell-delivery,
    .cart-cell-topay,
    .cart-cell-total {
        text-align: center
    }

    .cart-cell-price::before,
    .cart-cell-price:last-child::before,
    .cart-cell-products::before,
    .cart-cell-qty::before,
    .cart-cell-remove::before,
    .cart-cell-total-unit-price::before,
    .cart-cell-total-unit-price:last-child::before,
    .cart-cell-total::before {
        margin: 8px;
        font-weight: 700
    }

    .cart-cell-remove::before {
        content: "Remove"
    }

    .cart-cell-qty::before {
        content: "Qty"
    }

    .cart-cell-price::before {
        content: "Unit Price"
    }

    .cart-cell-price:last-child::before {
        content: "Total Price"
    }

    .cart-cell-total-unit-price::before {
        content: "Total Unit Price"
    }

    .cart-buttons {
        text-align: center
    }

    #btnsend {
        margin: 8px auto;
        float: none;
        width: 100%
    }

    #btnupdate,
    .update-cart-button {
        position: fixed;
        top: 0;
        left: 0;
        z-index: 3;
        margin: 0
    }
}

@media only screen and (max-width:677px) {
    .cart-table-row {
        display: block;
        border-bottom: var(--first-color) solid 1px
    }

    .cart-table-row:first-child {
        display: none
    }

    .cart-cell-blank3 {
        display: none
    }

    .cart-table-row:nth-last-child(1),
    .cart-table-row:nth-last-child(2),
    .cart-table-row:nth-last-child(3),
    .cart-table-row:nth-last-child(4) {
        width: 100%;
        border-bottom: 0
    }

    .cart-cell-price,
    .cart-cell-products,
    .cart-cell-qty,
    .cart-cell-remove,
    .cart-cell-total-unit-price {
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        display: inline-block;
        width: 100% !important;
        text-align: center
    }

    .cart-cell-qty {
        padding: 0
    }

    .cart-cell-delivery,
    .cart-cell-deliverydesc,
    .cart-cell-price,
    .cart-cell-qty,
    .cart-cell-total,
    .cart-cell-totaldesc {
        width: 50% !important;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        display: inline-block
    }

    .cart-cell-products a {
        font-size: 20px;
        line-height: 24px
    }

    .cart-cell-products img {
        display: block;
        float: none;
        margin: auto auto 5px;
        width: 150px;
        max-height: 80px;
        object-fit: contain
    }

    .cart-cell-delivery,
    .cart-cell-topay,
    .cart-cell-total {
        text-align: left
    }

    .cart-cell-price::before,
    .cart-cell-price:last-child::before,
    .cart-cell-products::before,
    .cart-cell-qty::before,
    .cart-cell-remove::before,
    .cart-cell-total-unit-price::before,
    .cart-cell-total-unit-price:last-child::before,
    .cart-cell-total::before {
        margin: 8px;
        font-weight: 700
    }

    .cart-cell-remove::before {
        content: "Remove"
    }

    .cart-cell-qty::before {
        content: "Qty"
    }

    .cart-cell-price::before {
        content: "Unit Price"
    }

    .cart-cell-price:last-child::before {
        content: "Total Price"
    }

    .cart-cell-total-unit-price::before {
        content: "Total Unit Price"
    }

    .cart-buttons {
        text-align: center
    }

    #btnsend {
        margin: 8px auto;
        float: none;
        width: 100%
    }

    #btnupdate,
    .update-cart-button {
        position: fixed;
        top: 0;
        left: 0;
        z-index: 3;
        margin: 0
    }
}

.reg-table-full-wrapper {
    width: 100%;
    border: 1px solid #b2b2b2;
    display: table;
    margin-bottom: 20px;
    border-collapse: collapse
}

.reg-table-row {
    display: table;
    border-bottom: 1px solid #b2b2b2;
    text-align: left;
    width: 100%
}

.reg-table-row:nth-child(odd) {
    background-color: #efefef
}

.reg-table-row:last-child {
    border-bottom: 0 solid #b2b2b2
}

.reg-table-row p {
    margin-bottom: 0
}

.reg-cell-head {
    background-color: var(--first-color);
    display: table-cell;
    color: #fff;
    padding: 8px;
    text-align: left;
    vertical-align: middle
}

.reg-cell-detail {
    display: table-cell;
    width: 50%;
    vertical-align: middle;
    padding: 8px;
    text-align: left
}

.cart-cell-full p,
.reg-cell-detail p {
    font-weight: 700
}

.reg-cell-data {
    display: table-cell;
    width: 50%;
    vertical-align: middle;
    padding: 4px
}

.reg-cell-data input {
    margin-top: 0
}

.reg-table-row select {
    margin: 4px 0;
    min-width: 221px
}

.reg-table-row select[disabled=disabled] {
    min-width: 217px
}

.reg-table-row input[type=checkbox] {
    margin: 10px 0
}

.checkout-log-in {
    max-width: 300px;
    margin: 16px auto;
    text-align: center
}

.checkout-log-in p {
    text-align: left;
    margin: 0
}

.checkout-header {
    margin: 10px 0
}

.checkout-label {
    display: inline-block;
    font-weight: 700;
    margin-bottom: 5px
}

.checkout-sub-label {
    margin-bottom: 5px
}

.address-line {
    margin-bottom: 5px;
    display: inline-block
}

.world-pay {
    width: 100%;
    text-align: center;
    margin: 16px auto 16px auto;
    max-width: 300px
}

.checkout-button,
.checkout-input {
    display: block;
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin-bottom: 10px;
    max-width: 300px
}

.checkout-log-in .largecta,
.checkout-log-in input {
    display: block;
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin-bottom: 8px
}

.largecta.disabled {
    background-color: #d3d3d3;
    color: grey
}

.largecta:hover.disabled {
    color: grey !important
}

.login-table-full-wrapper {
    width: 100%;
    border: 1px solid #b2b2b2;
    display: table;
    margin-bottom: 20px;
    border-collapse: collapse
}

.grey-button {
    background-color: #d3d3d3 !important;
    color: grey !important
}

.login-table-row {
    display: table;
    text-align: left;
    width: 100%
}

.login-cell-head {
    background-color: var(--first-color);
    display: table-cell;
    color: #fff;
    padding: 8px;
    text-align: left;
    vertical-align: middle
}

.login-cell-detail {
    display: table-cell;
    width: 50%;
    vertical-align: middle;
    padding: 8px;
    text-align: left
}

.cart-cell-full p,
.login-cell-detail p {
    font-weight: 700
}

.login-cell-data {
    display: table-cell;
    width: 50%;
    vertical-align: middle
}

.section {
    clear: both;
    padding: 0;
    margin: 0
}

.greypadding {
    background-color: #efefef;
    padding: 10px
}

.prod-img-grid {
    width: 100%;
    max-height: 100px;
    padding: 0 0 10px 0
}

.display-grid-brand {
    float: left;
    width: 28%;
    background-color: #f8fbf0;
    border: 2px solid #e6ead8;
    margin: 1%;
    padding: 1%;
    min-height: 250px
}

.display-grid-brand:hover {
    background-color: #efefef
}

.brand-logo-holder {
    float: right;
    width: 100px
}

.display-grid-brandimage {
    background-color: #fff;
    display: block;
    height: 130px;
    margin: 10px auto 0 auto;
    width: 100%
}

.display-grid-brandlogo {
    height: 130px
}

.display-grid-brand img {
    width: 100%;
    height: auto
}

@media only screen and (max-width:1024px) {
    .product-wrapper {
        width: 100%;
        margin: 0;
        min-width: 100%
    }

    .product-detail-holder {
        float: left;
        width: 100%;
        padding: 8px 8px 8px 20px;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        margin-top: 0;
        max-width: none
    }

    .product-gallery-holder {
        width: 100%;
        overflow: hidden;
        padding: 8px;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box
    }

    .product-gallery-holder #imageZoom,
    .product-gallery-holder #zoomNavigator {
        margin: 0 auto
    }

    .product-long-description-holder {
        margin-top: 5%
    }

    .dxeImage,
    .dxiz-inside {
        margin-left: 0 !important
    }
}

.display-mobile {
    display: none !important
}

@media only screen and (max-width:667px) {
    .display-mobile {
        display: inline-block !important
    }
}

@media only screen and (max-width:677px) {
    .alignright {
        display: block;
        height: inherit;
        margin: 10px 2%;
        width: 96%
    }

    .alignleft {
        display: block;
        height: inherit;
        margin: 10px 2%;
        width: 96%
    }

    .divnotification {
        width: 100%;
        top: 290px;
        right: 0;
        height: auto;
        max-height: 72px;
        box-sizing: border-box
    }

    .trusted-logo img {
        width: 75px
    }

    .prod-grid-item {
        float: left;
        width: 90%
    }

    .prod-grid-image {
        height: inherit;
        margin: 0 auto;
        width: 100%
    }

    .cart-table-half-wrapper-left,
    .cart-table-half-wrapper-right {
        width: 100%
    }

    .contenthome {
        margin-top: 10px
    }

    .product-long-description-holder {
        width: 90%;
        padding-right: 5%;
        padding-left: 5%;
        margin-top: 5%;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box
    }

    .bookingstageholder table {
        font-size: 10px
    }

    .captionholderhome {
        bottom: 1%
    }

    .captionholderhome h3 {
        font-size: 8px
    }

    .captionholderhome p {
        font-size: 12px
    }
}

.benefits-cta {
    text-align: center;
    max-width: 900px;
    margin: 16px auto;
    padding: 16px;
    background-color: var(--second-color)
}

.benefits-cta h2 {
    color: var(--first-color)
}

.benefits-cta h3 {
    color: #fff
}