﻿/*General*/
* {
    text-transform: none !important;
    letter-spacing: initial !important;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.master-wrapper-content {
    width: 100%;
    padding: 0;
    margin: 0;
}

body, html {
    color: #2d2d2d;
}

a, button, input {
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

a {
    color: #2d2d2d;
}

p {
    font-size: 16px;
    color: #2d2d2d;
    font-weight: 300;
}

.news-pages-body .master-wrapper-content, .blog-pages-body .master-wrapper-content {
    padding: 0;
}

.master-wrapper-content {
    width: 100%;
}

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

div {
    display: block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.center-1 {
    margin: 0;
}

p {
    font-size: 18px;
    font-weight: 300;
    color: #494949;
    margin: 0 0 10px;
}

h1,
h2 {
    font-size: 30px;
    font-weight: 300;
    color: #494949;
}

.clear {
    height: 0;
    display: block;
    clear: both;
}

.flex-container {
    display: -ms-flexbox;
    /*IE*/
    /* Safari */
    display: -webkit-box;
    display: flex;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 1em;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.container-large {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1em;
}

.flex-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.flex-wrap {
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}

.flex-50 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
}

.flex-100 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
}

.italic-text {
    font-style: italic;
}

.bar-notification .content {
    color: #FFF;
    float: left;
    margin: 0 10px 0 0;
}

div#cboxTitle {
    display: none !important;
}

#cboxClose {
    position: absolute;
    top: 5px;
    right: 5px;
    bottom: unset;
    width: 20px;
    height: 20px;
    font-size: 0;
    background-image: url(/Themes/Brooklyn/Content/img/icons/close-popup.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.product-title a {
    pointer-events: none;
}

.title-rims .product-title a {
    pointer-events: initial;
}

.logo-title a {
    pointer-events: none;
}

.item-box .manufacturer-item .picture a {
    pointer-events: none;
}

.checkout-attributes textarea {
    min-height: 150px;
    width: 100%;
    max-width: 390px;
}
/*Pushy*/
/*! Pushy - v1.1.0 - 2017-1-30
* Pushy is a responsive off-canvas navigation menu using CSS transforms & transitions.
* https://github.com/christophery/pushy/
* by Christopher Yee */
/* Menu Appearance */
.pushy {
    position: fixed;
    width: 320px;
    height: 100%;
    top: 0;
    z-index: 9999;
    background: #ffffff;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    /* enables momentum scrolling in iOS overflow elements */
}

    .pushy a {
        display: block;
        color: #b3b3b1;
        padding: 15px 30px;
        text-decoration: none;
    }

        .pushy a:hover {
            color: #FFF;
        }

    .pushy ul:first-child {
        margin-top: 10px;
    }

    .pushy.pushy-left {
        left: 0;
    }

    .pushy.pushy-right {
        right: 0;
    }

.pushy-content {
    visibility: hidden;
}

.logo-business {
    padding: 20px;
}

.pushy a {
    display: block;
    position: relative;
    z-index: 0;
    width: auto !important;
    margin: 0 20px;
    border-bottom: 2px solid #eee;
    padding: 25px 5px 12px;
    line-height: 16px;
    color: #444;
    font-size: 14px;
    font-weight: bold;
}

.logo-business {
    display: none;
}
/* Menu Movement */
.pushy-left {
    -webkit-transform: translate3d(-320px, 0, 0);
    -ms-transform: translate3d(-320px, 0, 0);
    transform: translate3d(-320px, 0, 0);
}

.pushy-open-left #container,
.pushy-open-left .push {
    -webkit-transform: translate3d(320px, 0, 0);
    -ms-transform: translate3d(320px, 0, 0);
    transform: translate3d(320px, 0, 0);
}

.pushy-right {
    -webkit-transform: translate3d(320px, 0, 0);
    -ms-transform: translate3d(320px, 0, 0);
    transform: translate3d(320px, 0, 0);
}

.pushy-open-right #container,
.pushy-open-right .push {
    -webkit-transform: translate3d(-320px, 0, 0);
    -ms-transform: translate3d(-320px, 0, 0);
    transform: translate3d(-320px, 0, 0);
}

.pushy-open-left .pushy,
.pushy-open-right .pushy {
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.pushy-open-left .pushy-content,
.pushy-open-right .pushy-content {
    visibility: visible;
}

/* Menu Transitions */
#container,
.pushy,
.push {
    -webkit-transition: -webkit-transform 0.2s cubic-bezier(0.16, 0.68, 0.43, 0.99);
    transition: -webkit-transform 0.2s cubic-bezier(0.16, 0.68, 0.43, 0.99);
    -o-transition: transform 0.2s cubic-bezier(0.16, 0.68, 0.43, 0.99);
    transition: transform 0.2s cubic-bezier(0.16, 0.68, 0.43, 0.99);
    transition: transform 0.2s cubic-bezier(0.16, 0.68, 0.43, 0.99), -webkit-transform 0.2s cubic-bezier(0.16, 0.68, 0.43, 0.99);
}

.pushy-content {
    -webkit-transition: visibility 0.2s cubic-bezier(0.16, 0.68, 0.43, 0.99);
    -o-transition: visibility 0.2s cubic-bezier(0.16, 0.68, 0.43, 0.99);
    transition: visibility 0.2s cubic-bezier(0.16, 0.68, 0.43, 0.99);
}

/* Site Overlay */
.site-overlay {
    display: none;
}

.pushy-open-left .site-overlay,
.pushy-open-right .site-overlay {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 9998;
    background-color: rgba(0, 0, 0, 0.5);
    -webkit-animation: fade 500ms;
    animation: fade 500ms;
}

@keyframes fade {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-webkit-keyframes fade {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}
/* Submenu Appearance */
.pushy-submenu {
    /* Submenu Buttons */
    /* Submenu Icon */
}

    .pushy-submenu ul {
        padding-left: 15px;
        -webkit-transition: max-height 0.2s ease-in-out, visibility 0.2s ease-in-out;
        -o-transition: max-height 0.2s ease-in-out, visibility 0.2s ease-in-out;
        transition: max-height 0.2s ease-in-out, visibility 0.2s ease-in-out;
    }

        .pushy-submenu ul .pushy-link {
            -webkit-transition: opacity 0.2s ease-in-out;
            -o-transition: opacity 0.2s ease-in-out;
            transition: opacity 0.2s ease-in-out;
        }

    .pushy-submenu button {
        width: 100%;
        color: #b3b3b1;
        padding: 15px 30px;
        text-align: left;
        background: transparent;
        border: 0;
    }

        .pushy-submenu button:hover {
            color: #FFF;
        }

    .pushy-submenu > a,
    .pushy-submenu > button {
        position: relative;
    }

        .pushy-submenu > a::after,
        .pushy-submenu > button::after {
            content: '';
            display: block;
            height: 11px;
            width: 8px;
            position: absolute;
            top: 50%;
            right: 15px;
            background: url("../img/arrow.svg") no-repeat;
            -webkit-transform: translateY(-50%);
            -ms-transform: translateY(-50%);
            transform: translateY(-50%);
            -webkit-transition: -webkit-transform 0.2s;
            transition: -webkit-transform 0.2s;
            -o-transition: transform 0.2s;
            transition: transform 0.2s;
            transition: transform 0.2s, -webkit-transform 0.2s;
        }

/* Submenu Movement */
.pushy-submenu-closed ul {
    max-height: 0;
    overflow: hidden;
    visibility: hidden;
}

.pushy-submenu-closed .pushy-link {
    opacity: 0;
}

.pushy-submenu-open {
    /* Submenu Icon */
}

    .pushy-submenu-open ul {
        max-height: 1000px;
        visibility: visible;
    }

    .pushy-submenu-open .pushy-link {
        opacity: 1;
    }

    .pushy-submenu-open a::after,
    .pushy-submenu-open button::after {
        -webkit-transform: translateY(-50%) rotate(90deg);
        -ms-transform: translateY(-50%) rotate(90deg);
        transform: translateY(-50%) rotate(90deg);
    }

/*Header*/
.header-logo a {
    background-color: transparent;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
    background: #d50019;
    background: -webkit-linear-gradient(top, #d50019 0%,#f05258 100%);
    background: -webkit-gradient(linear, left top, left bottom, from(#d50019),to(#f05258));
    background: -o-linear-gradient(top, #d50019 0%,#f05258 100%);
    background: linear-gradient(to bottom, #d50019 0%,#f05258 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d50019', endColorstr='#f05258',GradientType=0 );
    -webkit-box-shadow: inset 0 0 20px 0 rgba(0, 0, 0, .15);
    box-shadow: inset 0 0 20px 0 rgba(0, 0, 0, .15);
}

input:checked + .slider:before {
    -webkit-transform: translateX(32px);
    -ms-transform: translateX(32px);
    transform: translateX(32px);
}

.header-2 .header-links li .switch {
    margin: 0 0 5px;
}

.switch {
    position: relative;
    display: inline-block;
    width: 68px;
    height: 24px;
}

    .switch input {
        display: none;
    }

.slider.round {
    border-radius: 5px;
    border: 2px solid #cecece;
}

.slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 35px;
    left: -1px;
    background-position: 0;
    bottom: 0px;
    background-image: url(/Themes/Brooklyn/Content/img/Icons/switch-icon.svg);
    -webkit-transition: .4s;
    transition: .4s;
    background-repeat: no-repeat;
    top: 0;
    z-index: 2;
}

input#CustomerShowPrice:checked + .slider {
    background-color: #8cc63f;
    background-image: url(/Themes/Brooklyn/Content/img/euro-icon-grey.png);
    background-position-y: 0px;
}

.slider.round:after {
    content: 'OFF';
    font-size: 11px;
    color: #FFF;
    font-weight: 700;
    position: relative;
    top: 2.5px;
    right: 4px;
    z-index: 0;
}

.header-actions a.ico-wishlist {
    display: none;
}

/*Cookie Message*/
.eu-cookie-bar-notification {
    width: 100%;
    max-width: unset;
    margin-left: 0;
    left: 0;
    right: 0;
    bottom: 0;
    top: auto;
    height: auto;
}

    .eu-cookie-bar-notification .text {
        padding: 0 10px;
    }

/*Login - Register Page*/
.registration-page .page-title {
    margin: 0 0 4em;
}

.registration-page .inputs label {
    width: 100%;
    text-align: center;
}

.login-page .inputs label {
    width: 100%;
}

.login-logo {
    padding: 25px 0;
    text-align: center;
}

    .login-logo img {
        display: inline-block;
        max-width: 100%;
        height: auto;
    }
/*Rims Product Page*/
.product-details-page .manufacturer-part-number {
    padding: 0;
    margin: 0 0 10px;
}

.product-details-page .overview .manufacturer-part-number .label {
    font-weight: 300;
}

.rims-product-page-specifications {
    padding: 60px 0 0;
}

.rims-product-container .product-specs-box .title {
    display: none;
}

.rims-product-container .product-specs-box .data-table .odd td {
    background-color: #e0e0e0;
}

.rims-product-container .product-specs-box .data-table td.spec-name {
    font-weight: 700;
}

.rims-product-container .product-specs-box .data-table td {
    padding: 15px;
}

.rims-product-specs-title {
    margin: 0 0 25px;
}

    .rims-product-specs-title h3 {
        text-align: center;
        color: #000;
        font-size: 20px;
    }

.product-picture-rims .picture a {
    pointer-events: none;
}

.product-details-page .calculator-button .calculator-btn {
    float: left;
}

.title-tyres h2.product-title {
    text-align: left;
}
/*Ribbons*/
.product-item {
    position: relative;
}

.ribbon-wrapper {
    position: absolute;
    right: -12px;
    z-index: 2;
    top: 9px;
}


.ribbon {
    width: 76px;
    text-align: center;
    background-color: #dc0305;
    margin: 0 0 7px auto;
    padding: 5px;
    position: relative;
}

    .ribbon span {
        color: #FFF;
        font-size: 18px;
        font-weight: 700;
    }

    .ribbon:before {
        content: '';
        display: block;
        width: 0px;
        height: 0px;
        border-left: 6px solid transparent;
        border-right: 6px solid transparent;
        border-top: 6px solid #570305;
        position: absolute;
        right: 1px;
        -moz-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        top: -5px;
    }

    .ribbon.new {
        width: 76px;
    }

    .ribbon.offer {
        width: auto;
    }

.product-details-page .title-tyres h2.product-title {
    padding: 0;
}

.item-box-rims .ribbon-wrapper, {
    top: 20px;
}

.item-box-tyres .ribbon-wrapper, .item-box-rims .ribbon-wrapper, .product-picture-rims .ribbon-wrapper {
    position: absolute;
    left: -11px;
    z-index: 2;
    top: 79px;
    right: auto;
}

.item-box-tyres .ribbon, .item-box-rims .ribbon, .product-picture-rims .ribbon {
    margin: 0 auto 7px 0;
}

    .item-box-tyres .ribbon:before, .item-box-rims .ribbon:before, .product-picture-rims .ribbon:before {
        left: 1px;
        right: auto;
        -moz-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
        top: -5px;
    }

.tyres-prices-text {
    font-size: 16px;
}
/*Homepage Sliders*/
.home-page-body .container {
    max-width: unset;
}

.home-page .jCarouselMainWrapper .nop-jcarousel {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 50px;
}

.homepage-carousel-2 {
    padding: 70px 0;
}

    .homepage-carousel-2 .slider-home-link-btn {
        text-align: center;
        padding: 1em 0;
    }

        .homepage-carousel-2 .slider-home-link-btn a.link-btn {
            font-size: 16px;
            font-weight: 300;
            color: #2D2D2D;
            display: inline-block;
            padding: 2px 15px;
            border: 2px solid #2D2D2D;
            background-color: #FFF;
            -webkit-transition: all .2s ease-in-out;
            -o-transition: all .2s ease-in-out;
            transition: all .2s ease-in-out;
        }

            .homepage-carousel-2 .slider-home-link-btn a.link-btn:hover {
                background-color: #2D2D2D;
                color: #FFF;
                -webkit-transition: all .2s ease-in-out;
                -o-transition: all .2s ease-in-out;
                transition: all .2s ease-in-out;
            }


.homepage-carousel-1 .owl-nav > * {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 60px;
    height: 100%;
    background-position: center;
    background-size: 20px;
    background-repeat: no-repeat;
    background-color: rgba(255,255,255,.5);
    -webkit-box-shadow: 0px -8px 20px -10px rgba(0,0,0,.5);
    box-shadow: 0px -8px 20px -10px rgba(0,0,0,.5);
    font-size: 0;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

    .homepage-carousel-1 .owl-nav > *:hover {
        background-color: rgba(255,255,255,.8);
    }

.homepage-carousel-1 .owl-nav > .owl-next {
    right: 0;
    background-image: url(/Themes/Brooklyn/Content/img/icons/home-next.png);
}

.homepage-carousel-1 .owl-nav > .owl-prev {
    left: 0;
    background-image: url(/Themes/Brooklyn/Content/img/icons/home-prev.png);
}
/*Homepage*/
.container-homepage {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 15px;
}
/*Category Page*/
.filtersPanel span.ui-accordion-header-icon.ui-icon {
    width: 20px;
    height: 20px;
    position: absolute;
    right: 0;
    margin: 5px 0 0;
    background-image: url(/Themes/Brooklyn/Content/img/Icons/filters-icon-down.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    cursor: pointer;
}

    .filtersPanel span.ui-accordion-header-icon.ui-icon.ui-icon-triangle-1-e {
        -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
        transform: rotate(180deg);
    }

    .filtersPanel span.ui-accordion-header-icon.ui-icon.ui-icon-triangle-1-s {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }

.product-selectors .product-viewmode {
    display: none;
}

.item-grid {
    padding: 0 10px;
}

.category-page .page-title, .account-page .page-title {
    position: static;
    margin: 0;
    text-align: left;
}

    .category-page .page-title h1 {
        font-size: 32px;
        text-align: left;
        padding: 0 5px 20px;
        margin: 0;
        border-bottom: 2px solid #2d2d2d;
        font-weight: 300;
    }

.checkbox-list > * {
    margin-bottom: 6px;
    margin-right: 3px;
    border: 2px solid #DDDDDD;
    width: auto;
    min-width: 32px;
}

.checkbox-list li.disabled {
    border-color: #8888883b;
}

.checkbox-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    padding: 8px 0;
    max-width: 207px;
    margin: 0 auto;
}

    .checkbox-list li label:before {
        display: none;
    }

    .checkbox-list li:nth-of-type(6n) {
        margin-right: 0;
    }

    .checkbox-list li {
        position: relative;
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

        .checkbox-list li.checked {
            background: #fcab10;
            background: -webkit-linear-gradient(left, #fcab10 0%,#fc8810 100%);
            background: -webkit-gradient(linear, left top, right top, from(#fcab10),to(#fc8810));
            background: -o-linear-gradient(left, #fcab10 0%,#fc8810 100%);
            background: linear-gradient(to right, #fcab10 0%,#fc8810 100%);
            filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fcab10', endColorstr='#fc8810',GradientType=1 );
            border: 0;
        }

            .checkbox-list li.checked label {
                color: #FFF;
            }

.accordion-toggle {
    width: 30px;
    height: 30px;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto 10px;
    background: url(/Themes/Brooklyn/Content/img/icons/filters-icon-up.svg) no-repeat;
    background-size: 25px;
    cursor: pointer;
    background-position: center;
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.closed-accordion .accordion-toggle {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.item-box-carousel .buttons input[type="text"], .item-grid .buttons input[type="text"] {
    width: 73px;
    height: 41px;
    position: relative;
    top: 4px;
    border: 2px solid #AFAFAF;
    font-size: 17px;
    color: #232020;
}

.buttons .ui-spinner {
    position: relative;
}

.buttons .ui-spinner-button {
    position: absolute;
    right: 0;
    border: 2px solid #AFAFAF;
    width: 24px;
    height: 21px;
}

    .buttons .ui-spinner-button.ui-spinner-down {
        bottom: -16px;
        border-bottom: 0;
        border-right: 0;
    }

    .buttons .ui-spinner-button.ui-spinner-up {
        top: -5px;
        border-top: 0;
        border-right: 0;
        border-bottom: 0;
    }

.overview .add-to-cart-panel > * {
    position: relative;
}

.overview-rims .add-to-cart-panel .ui-spinner-button {
    position: absolute;
    right: 0;
    border: 2px solid #AFAFAF;
    width: 24px;
    height: 21px;
}

    .overview-rims .add-to-cart-panel .ui-spinner-button.ui-spinner-down {
        bottom: 0;
        border-bottom: 0;
        border-right: 0;
        right: 6px;
    }

.overview-rims .add-to-cart-panel span.ui-icon.ui-icon-triangle-1-n {
    color: #333333;
    font-size: 11px;
    position: relative;
    top: -1px;
    right: -4px;
}

.overview-rims .add-to-cart-panel span.ui-icon.ui-icon-triangle-1-s {
    font-size: 11px;
    color: #333333;
    position: relative;
    top: -2px;
    right: -4px;
}

.overview-rims .add-to-cart-panel .ui-spinner-button.ui-spinner-up {
    top: 0;
    border-top: 0;
    border-right: 0;
    border-bottom: 0;
    right: 6px;
}

.product-details-page .buttons .ui-spinner-button.ui-spinner-down {
    bottom: 0;
    right: 5px;
}

.product-details-page .buttons .ui-spinner-button.ui-spinner-up {
    top: 0;
    right: 5px;
}

span.ui-icon.ui-icon-triangle-1-n {
    color: #333333;
    font-size: 11px;
    position: relative;
    top: -1px;
    right: 1px;
}

span.ui-icon.ui-icon-triangle-1-s {
    font-size: 11px;
    color: #333333;
    position: relative;
    top: -2px;
    right: 1px;
}

.pager li * {
    display: block;
    min-width: 25px;
    height: 25px;
    border: 0;
    border-width: 2px 1px;
    padding: 5px;
    text-align: center;
    font-family: 'Open Sans';
    font-weight: 400;
    font-size: 12px;
    color: #000;
    cursor: pointer;
    background-color: #d6d6d6;
    margin: 0 6px 0 0;
    background-size: 12px;
}

.pager li.current-page span {
    background: #fcab10;
    background: -moz-linear-gradient(left, #fcab10 0%, #fc8810 100%);
    background: -webkit-linear-gradient(left, #fcab10 0%,#fc8810 100%);
    background: linear-gradient(to right, #fcab10 0%,#fc8810 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fcab10', endColorstr='#fc8810',GradientType=1 );
    color: #FFF !important;
    border: 0;
}

.pager li.next-page * {
    background-image: url(/Themes/Brooklyn/Content/img/Icons/next-page.svg);
    background-color: #d6d6d6 !important;
    background-size: 5px !important;
}

.pager li.previous-page * {
    background-image: url(/Themes/Brooklyn/Content/img/Icons/previous-page.svg);
    background-color: #d6d6d6 !important;
    background-size: 5px !important;
}

.pager li.last-page * {
    background-image: url(/Themes/Brooklyn/Content/img/Icons/last-page.svg);
    background-color: #d6d6d6 !important;
    background-size: 10px !important;
}
/*Search Page*/


.search-page .price-range-inputs {
    display: none;
}

.search-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.search-page {
    padding: 0 0 80px;
}

.item-box-search span.ui-button-text {
    margin: 0 auto;
    width: 100%;
    display: block;
    text-align: center;
    padding: 0 2px 0 0;
}

.item-box-search .details-search h2.product-title {
    text-align: left;
    border-bottom: 1px solid #494949;
    padding: 0 0 10px;
    margin: 0 0 25px;
    font-size: 22px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -ms-flex-preferred-size: 80%;
    flex-basis: 80%;
    height: 80%;
}

.item-box-search .details-search .search-buttons-price + h2.product-title {
    height: auto;
}

.details-search .picture {
    max-width: 200px;
    -ms-flex-preferred-size: 20%;
    flex-basis: 20%;
}

    .details-search .picture img {
        max-width: 100%;
        display: block;
    }

.details-search .picture {
    max-width: 200px;
}

.search-page-body .page-title {
    position: static;
    border-bottom: 0;
    padding-bottom: 0;
    margin: 3em 0 2em;
}

.search-page-body .master-wrapper-content {
    padding: 0;
}

.item-box-search .details-search h2.product-title:hover a {
    color: #fcab10;
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.item-box-search .details-search h2.product-title a {
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.search-page .inputs label {
    width: 100% !important;
    margin: 0 0 10px;
    text-align: center;
}

.advanced-search .price-range {
    margin-left: 0;
}

.advanced-search {
    max-width: 855px;
    margin: 0 auto;
}

.search-page .fieldset {
    margin: 0 0 25px;
}

.flex-search-half {
    padding: 0 10px;
}

.search-page .product-selectors select {
    max-width: 250px;
}

.item-box-search {
    margin: 0 0 30px;
}

    .item-box-search .search-right-box {
        width: 100%;
        text-align: right;
    }

        .item-box-search .search-right-box .buttons {
            margin: 0 0 20px;
            text-align: right;
        }

/*.item-box-search .search-right-box .buttons .ui-spinner {
                display: none;
            }*/
/*Product Details Page*/
.tyres-picture img {
    max-width: 100%;
    display: block;
    height: auto;
}

.product-details-tyres {
    max-width: 934px;
    margin: 0 auto;
    min-height: 70vh;
    padding: 10em 0 0;
}
/*Category Page Tyres*/
.category-page-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 15px;
}


.category-page .product-sorting {
    display: none;
}

.manufacturer-page .product-sorting {
    display: none;
}

.category-page.search-page .product-sorting {
    display: block;
}

.search-page .product-selectors {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

@media(max-width:767px) {
    .category-page.search-page .product-sorting {
        margin: 0 0 19px;
    }
}


.item-box-tyres {
    margin: 0 1% 15px 0;
    border: 2px solid #DEDEDE;
    -ms-flex-preferred-size: 49%;
    flex-basis: 49%;
    margin: 0 0 15px 0;
}

    .item-box-tyres:nth-child(2n) {
        margin: 0 0 15px;
    }

.title-tyres {
    padding: 5px 15px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: 58px;
}

.item-box-tyres .picture img {
    max-width: 100%;
    display: block;
    height: auto;
}

.item-box-tyres .picture {
    max-width: 184px;
    background-color: #FFF;
}

.picture img {
    display: block;
    height: auto;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    max-height: 100%;
    max-width: 100%;
    width: auto;
}

.picture a {
    position: relative;
    display: block;
    /*pointer-events: none;*/
}

    .picture a:before {
        content: '';
        display: block;
        padding-top: 100%;
    }

.owl-carousel .owl-item .picture img {
    width: auto;
}

.manufacturer-item a {
    pointer-events: none;
}

.carousel-box-wrapper .picture a {
    pointer-events: none;
}

.search-results {
    margin: 30px auto 0;
    text-align: center;
    max-width: 964px;
    padding: 0 15px;
}

.search-page .product-selectors {
    max-width: 964px;
    margin: 0 auto;
    padding: 0 15px;
}

.title-tyres h2.product-title {
    color: #2D2D2D;
    font-size: 18px;
    font-weight: 700;
    padding: 0 0 0 25px;
    height: auto;
    margin: 0;
}

.manufacturer-part-number {
    padding: 0 0 0 25px;
}

    .manufacturer-part-number span {
        font-weight: 600;
        color: #000;
    }

.tyres-box-inner {
    background-color: #EDEDED;
    padding: 10px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.tyres-specs-top img {
    display: inline-block;
    width: 100%;
    vertical-align: middle;
}

.tyres-picture {
    -ms-flex-preferred-size: 17%;
    flex-basis: 17%;
}

.tyres-specs-wrapper {
    -ms-flex-preferred-size: 83%;
    flex-basis: 83%;
    padding-left: 45px;
    padding-top: 20px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

span.tyres-grey-span {
    font-size: 18px;
    color: #808080;
    font-weight: 700;
    margin-left: 20px;
}

.tyres-specs-top .flex-container {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    min-height: 24px;
}

    .tyres-specs-top .flex-container:before {
        content: '';
        display: block;
        height: 25px;
        position: absolute;
        width: 2px;
        left: -9px;
        background-color: #8E8E8E;
        top: 0px;
    }

    .tyres-specs-top .flex-container:first-child:before {
        display: none;
    }

.tyres-specs-top {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

    .tyres-specs-top .trans-icon {
        width: 25px;
        -ms-flex-preferred-size: 25px;
        flex-basis: 25px;
    }

        .tyres-specs-top .trans-icon img {
            width: 25px;
        }

    .tyres-specs-top .weather-icon img {
        width: 20px;
        margin: 0 5px;
    }

    .tyres-specs-top .small-specs-wrap img {
        width: 13px;
    }

.trans-wrap {
    -ms-flex-preferred-size: 100px;
    flex-basis: 100px;
}

.speed-wrap {
    -ms-flex-preferred-size: 192px;
    flex-basis: 192px;
}

.load-wrap {
    -ms-flex-preferred-size: 185px;
    flex-basis: 185px;
}

.weather-wrap {
    -ms-flex-preferred-size: 110px;
    flex-basis: 110px;
}

.small-specs-wrap {
    -ms-flex-preferred-size: 140px;
    flex-basis: 140px;
}

span.small-specs-text {
    margin-left: 0;
}

.small-specs-container {
    margin: 0 7px;
}

.title-rims .manufacturer-part-number {
    padding: 0;
}

.yellow-icon-wrap span.small-specs-text {
    font-size: 14px;
    color: #fcb116;
    font-weight: 700;
}

.fuel-icon-wrap span.small-specs-text {
    font-weight: 700;
    color: #4eb048;
    font-size: 14px;
}

span.small-specs-text {
    margin-left: 0;
    font-size: 14px;
}

.tyres-specs-bottom .buttons .ajax-cart-button-wrapper .product-box-add-to-cart-button, .tyres-specs-bottom .buttons input-type-button {
    width: 94px !important;
    height: 40px;
    border: 1px solid #6FB843;
    background-color: #6FB843;
    font-size: 0;
    background-image: url(/Themes/Brooklyn/Content/img/icons/cart-icon.svg);
    background-repeat: no-repeat;
    background-size: 28px;
    background-position: center;
}

.availability-icon img {
    width: 11px;
    display: inline-block;
    vertical-align: middle;
}

span.span-label {
    font-size: 13px;
    font-weight: 300;
    margin-left: 11px;
}

.availability-bottom span {
    display: block;
}

.tyres-specs-bottom-left, .tyres-specs-bottom-right {
    -ms-flex-preferred-size: 44%;
    flex-basis: 44%;
}

.tyres-specs-bottom {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.tyres-specs-bottom {
    max-width: 706px;
}

.availability-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 2px;
}

.availability-text-span {
    display: inline-block;
    padding: 3px;
    border: 2px solid #ddd;
    font-size: 9px;
    background-color: #FFF;
    margin-left: 10px;
    color: #636363;
    text-align: left;
}

.availability-wrapper {
    width: 100%;
}

.availability-bottom span {
    display: block;
    font-size: 11px;
    font-weight: 400;
    color: #636363;
}

.tyre-prices h4 {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 10px;
    text-align: right;
}

.tyre-prices span.price-text {
    font-size: 16px;
    font-weight: 300;
    text-align: right;
    display: block;
}

.tyres-specs-bottom-left, .tyres-specs-bottom-right {
    -ms-flex-preferred-size: 44%;
    flex-basis: 44%;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    min-height: 63px;
    max-width: 310px;
}

.tyres-specs-bottom-right {
    -ms-flex-preferred-size: 76%;
    flex-basis: 76%;
    max-width: unset;
}

.price-calc {
    display: none;
}

.first-price.price-calc.open {
    display: block;
}

.item-box-tyres .buttons {
    margin: 10px 0 0;
    text-align: center;
}

.with-icon .ajax-cart-button-wrapper {
    width: auto;
    margin: 0;
}

    .with-icon .ajax-cart-button-wrapper input[type="text"] {
        height: 42px;
        border: 2px solid #ddd;
        margin-right: 5px;
    }

.category-page-container .side-2 .category-filters-wrap {
    -webkit-box-shadow: 0 0 12px 0 rgba(0, 0, 0, .15);
    box-shadow: 0 0 12px 0 rgba(0, 0, 0, .15);
}

.category-page-container .center-2 {
    width: 80%;
}

.category-page .page-title {
    margin: 0 15px;
}

.availability-top:first-child {
    margin: 0 0 10px;
}

.availability-icon {
    margin: 0 0 0 10px;
}

.availability-top {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.availability-store {
    font-size: 12px;
    font-weight: 300;
    color: #000;
}

.availability-store {
    min-width: 60px;
}

    .availability-store.availability-store-thess {
        font-size: 11px;
    }
/*Homepage Carousels*/
.home-page {
    padding: 0 0 50px;
}

.home-page-product-grid, .recently-added-products-page {
    max-width: 1350px;
    margin: 0 auto;
}

.home-page .owl-carousel {
    max-width: 1200px;
    margin: 0 auto;
}

.home-page .owl-item {
    padding: 10px;
}


    .home-page .owl-item .item-box-carousel {
        padding: 10px 10px 15px;
        -webkit-box-shadow: 0 0 12px 0 rgba(0, 0, 0, .15);
        box-shadow: 0 0 12px 0 rgba(0, 0, 0, .15);
        -webkit-transition: all .2s ease-in-out;
        -o-transition: all .2s ease-in-out;
        transition: all .2s ease-in-out;
    }

        .home-page .owl-item .item-box-carousel:hover {
            -webkit-box-shadow: 8px 9px 20px 3px rgba(0, 0, 0, .15);
            box-shadow: 8px 9px 20px 3px rgba(0, 0, 0, .15);
            -webkit-transition: all .2s ease-in-out;
            -o-transition: all .2s ease-in-out;
            transition: all .2s ease-in-out;
        }

.home-page .owl-stage {
    padding: 20px 0;
}

.carousel-box-wrapper .details-bottom .flex-item {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.carousel-box-wrapper .tyres-specs-top .flex-container:before {
    display: none;
}

.carousel-box-wrapper .small-specs-container {
    margin: 0 4px;
    -ms-flex-preferred-size: 30px;
    flex-basis: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

    .carousel-box-wrapper .small-specs-container img {
        margin: 0 2px;
    }

.item-box-carousel .picture {
    border: 1px solid #EAEAEA;
}

.item-box-carousel .product-title {
    font-size: 18px;
    font-weight: 700;
    min-height: 48px;
    margin: 15px 0 30px;
}

.item-box-carousel .ajax-cart-button-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

    .item-box-carousel .ajax-cart-button-wrapper input[type="button"] {
        width: 100%;
        padding: 0 10px;
        color: #fff !important;
        display: block;
        height: 40px;
        max-width: 166px;
    }

.item-box-carousel .details {
    padding: 0 5px;
}

.item-box-carousel .buttons-carousel {
    margin: 0;
}

.item-box-carousel .details-bottom {
    margin: 0 0 15px;
}

.home-page .owl-nav > * {
    position: absolute;
    top: 50%;
}

    .home-page .owl-nav > *.disabled {
        opacity: 0.5;
    }

.home-page .owl-carousel .owl-prev {
    font-size: 0;
    width: 30px;
    height: 50px;
    background-image: url(/Themes/Brooklyn/Content/img/icons/home-prev.png);
    background-repeat: no-repeat;
    background-position: center;
    left: -5%;
}

.home-page .owl-carousel .owl-next {
    font-size: 0;
    width: 30px;
    height: 50px;
    background-image: url(/Themes/Brooklyn/Content/img/icons/home-next.png);
    background-repeat: no-repeat;
    background-position: center;
    right: -5%;
}

.home-page .page-title {
    margin: 0;
}

.home-page-product-grid .title strong, .home-page .recently-added-products-page .page-title h1 {
    font-size: 32px;
    font-weight: 300;
    margin: 0 0 30px;
}

.carousel-box-wrapper .prices {
    text-align: right;
}

    .carousel-box-wrapper .prices span.price.actual-price {
        color: #ED1C24;
        font-size: 22px;
        font-weight: 700;
    }

.prices-title span {
    font-size: 16px;
    font-weight: 600;
    color: #2D2D2D;
    display: block;
    margin: 0 0 10px;
}

.carousel-box-wrapper .small-specs-wrap {
    margin: 0 0 10px;
}

/*News Page*/
.news-list-page {
    padding: 0 0 10em;
}

.news-items {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

    .news-items .news-item {
        -ms-flex-preferred-size: 48%;
        flex-basis: 48%;
        border: 0;
        margin: 0 0 50px;
        padding: 0;
    }

        .news-items .news-item .news-title {
            display: block;
            font-weight: 400;
            color: #2D3189;
            font-size: 19px;
            text-transform: none;
            margin: 0 0 5px;
        }

            .news-items .news-item .news-title::after {
                display: none;
            }

.news-date {
    font-size: 11px;
    color: #2D2D2D;
    font-weight: 400;
}

.news-body {
    color: #2D2D2D;
    font-size: 16px;
    font-weight: 300;
}

.news-list-page .page-title h1 {
    color: #2D2D2D;
    font-size: 26px;
    font-weight: 400;
    margin: 0 0 50px;
}

.item-box-tyres .product-title a {
    pointer-events: none;
}
/*Page Not Found*/
.not-found-page img {
    max-width: 400px;
    width: 100%;
    display: block;
    min-height: 360px;
    max-height: 100%;
    margin: 0 auto;
}
/*Product Page Related*/
.related-products-grid {
    padding: 55px 0 0;
}

.product-grid.also-purchased-products-grid .item-box, .product-grid.related-products-grid .item-box, .product-grid.cross-sells .item-box {
    width: 100%;
    margin: 0 0 15px;
    border: 2px solid #DEDEDE;
    padding: 0;
}

    .product-grid.also-purchased-products-grid .item-box:hover, .product-grid.related-products-grid .item-box:hover, .product-grid.cross-sells .item-box:hover {
        -moz-box-shadow: unset;
        -webkit-box-shadow: unset;
        box-shadow: unset;
    }

.product-grid.also-purchased-products-grid .quick-view-button, .product-grid.related-products-grid .quick-view-button, .product-grid.cross-sells .quick-view-button {
    display: none;
}

.related-products-grid .item-box .with-icon input[type="button"] {
    background-color: #6FB843 !important;
    font-size: 0;
    width: 94px !important;
    background-image: url(/Themes/Brooklyn/Content/img/icons/cart-icon.svg) !important;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 30px;
    min-width: unset;
    height: 40px;
}

.related-products-grid .item-box .with-icon input[type="button"] {
    width: 94px !important;
    min-width: 0 !important;
    height: 41px !important;
}

.related-products-grid .quick-view-button {
    display: none !important;
}

.quick-view-button {
    display: none !important;
}

.related-products-grid .item-grid .buttons input[type="text"] {
    width: 73px;
    height: 41px;
    position: relative;
    top: 0;
    border: 2px solid #AFAFAF;
    font-size: 17px;
    color: #232020;
}

.product-grid.related-products-grid .item-box-related-rims {
    width: 49%;
    margin: 0 1% 15px 0;
}

.product-details-page .related-products-grid .buttons .ui-spinner-button.ui-spinner-down {
    bottom: -20px;
    right: 2px;
}

.product-details-page .related-products-grid .buttons .ui-spinner-button.ui-spinner-up {
    top: -19px;
    right: 2px;
}

.product-details-page .related-products-grid span.ui-icon.ui-icon-triangle-1-n {
    color: #333333;
    font-size: 11px;
    position: relative;
    top: 1px;
    right: -5px;
}

.product-details-page .related-products-grid span.ui-icon.ui-icon-triangle-1-s {
    font-size: 11px;
    color: #333333;
    position: relative;
    top: 0px;
    right: -5px;
}
/*Category Page Rims*/
.category-page .item-box .picture img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: auto;
    margin: auto;
    -webkit-transform: translateZ(0) scale(1.0, 1.0);
    max-width: 100%;
    max-height: 100%;
}

.category-page-rims .item-grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.item-box-rims {
    width: 49%;
    -ms-flex-preferred-size: 49%;
    flex-basis: 49%;
    border: 2px solid #dedede;
    margin: 0 1% 20px 0;
}

    .item-box-rims .picture img {
        max-width: 100%;
        display: block;
        height: auto;
    }

    .item-box-rims .picture {
        max-width: 187px;
        background-color: #FFF;
        padding: 10px;
        max-height: 184px;
    }

    .item-box-rims:nth-child(2n) {
        margin: 0 0 20px;
    }

.rims-box-inner {
    padding: 10px 5px 15px 10px;
    background-color: #EDEDED;
    min-height: 209px;
}

.title-rims h2.product-title {
    font-size: 18px;
    font-weight: 700;
    min-height: 48px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.title-rims {
    padding: 20px 15px 20px 30px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

    .title-rims .product-title-left {
        width: 60%;
        min-height: 72px;
    }

.logo-title {
    text-align: right;
}

    .logo-title img {
        max-width: 70px;
        display: block;
        height: auto;
    }


.title-rims .logo-title {
    text-align: right;
    width: 40%;
}


    .title-rims .logo-title img {
        max-width: unset;
        max-height: 40px;
        display: block;
        height: auto;
        width: 100%;
        -o-object-fit: cover;
        object-fit: cover;
    }

.rims-picture {
    -ms-flex-preferred-size: 43%;
    flex-basis: 43%;
}

.rims-specs-wrapper {
    -ms-flex-preferred-size: 57%;
    flex-basis: 57%;
    padding: 5px 5px 0px 10px;
}

.title-tyres .logo-title img {
    max-width: 110px;
    display: block;
    height: auto;
    max-height: 52px;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.first-price.tyre-prices h4, .first-price.tyre-prices span {
    text-align: left;
}

.first-price.rims-prices h4 {
    font-size: 13px;
    font-weight: 600;
    margin: 0 0 5px;
}

.rims-prices span.price-text {
    font-size: 14px;
    font-weight: 700;
    color: #ED1C24;
}

.rims-specs-bottom .buttons {
    margin: 0;
}

.rims-specs-wrapper .calculator-button {
    padding: 20px 0 0;
}

.item-box-rims .buttons .ajax-cart-button-wrapper {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.rims-prices {
    margin: 20px 0 10px;
    padding: 0 5px;
}

.product-grid, .product-list {
    margin: 0 0 15px;
}

.product-box-add-to-cart-button {
    background-color: #6FB843;
    border: 0;
    background-image: url(/Themes/Brooklyn/Content/img/icons/cart-icon.svg);
    font-size: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 30px;
    height: 40px;
    width: 80px !important;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

    .product-box-add-to-cart-button:hover {
        opacity: .7;
    }

.calculator-button .calculator-btn {
    display: block;
    width: 25px;
    height: 25px;
    background-color: transparent;
    border: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 18px;
    background-image: url(/Themes/Brooklyn/Content/img/icons/calculator-icon.svg);
    cursor: pointer;
}

.calculator-button input[type="checkbox"] {
    display: none;
}

.buttons input[type=number]::-webkit-inner-spin-button,
.buttons input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.plus-minus-input {
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

    .plus-minus-input .input-group-field {
        text-align: center;
        margin-left: 0.5rem;
        margin-right: 0.5rem;
        padding: 1rem;
    }

        .plus-minus-input .input-group-field::-webkit-inner-spin-button,
        .plus-minus-input .input-group-field ::-webkit-outer-spin-button {
            -webkit-appearance: none;
            appearance: none;
        }

    .plus-minus-input .input-group-button .circle {
        padding: 0.25em 0.8em;
    }

.productQuantityTextBox, .overview .qty-input {
    min-width: 73px;
    height: 40px;
    margin-right: 5px;
    -webkit-appearance: none;
    border: 2px solid #ADADAD;
    padding-right: 20px;
    float: none;
}

.master-column-catalogues .container {
    max-width: unset;
    padding: 0;
}

.our-catalogues-container {
    max-width: 630px;
    margin: 0 auto;
    padding: 0 15px;
}

span.pdf-icon {
    display: inline-block;
    margin: 0 20px 0 0;
}

.our-catalogues-banner {
    margin: 0 0 75px;
}

    .our-catalogues-banner img {
        max-width: 100%;
        display: block;
        height: auto;
    }

.our-catalogues-title {
    margin: 0 0 60px;
}

    .our-catalogues-title h1 {
        text-align: center;
        color: #707070;
        font-size: 30px;
        line-height: 41px;
    }

.our-catalogues-table table {
    width: 100%;
}

    .our-catalogues-table table tr th, .our-catalogues-table table tr td {
        padding: 20px;
        text-align: center;
        background-color: #FFF;
    }

        .our-catalogues-table table tr th:nth-child(2), .our-catalogues-table table tr td:nth-child(2) {
            background-color: #F8F8F8;
        }

.our-catalogues-table-inner table {
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
    border-radius: 6px;
    -moz-box-shadow: 0 0 10px 0 rgba(0,0,0,.15);
    -webkit-box-shadow: 0 0 10px 0 rgba(0,0,0,.15);
    box-shadow: 0 0 10px 0 rgba(0,0,0,.15);
    overflow: hidden;
}

.our-catalogues-table table tr th {
    color: #707070;
    font-size: 13px;
    line-height: 18px;
    font-weight: 400;
}

.our-catalogues-table table tr td:first-child {
    text-align: left;
}

.table-text {
    display: inline-block;
}

.table-text {
    display: inline-block;
    font-size: 14px;
    line-height: 19px;
    color: #707070;
}

.pdf-icon img {
    vertical-align: middle;
}

.master-column-catalogues .page-title {
    margin: 0;
}
/*News Page*/
.news-picture {
    min-height: 120px;
    width: 100%;
    max-width: 187px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.news-content {
    padding-left: 20px;
}

/*Product Page Tyres*/
.product-details-tyres .add-to-cart-panel input[type="text"] {
    min-width: 73px;
    width: 73px;
    height: 40px;
    margin-right: 5px;
    -webkit-appearance: none;
    border: 2px solid #ADADAD;
    padding-right: 20px;
    float: none;
}

.add-to-cart-panel {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.product-details-tyres .add-to-cart-panel .qty-label {
    display: none;
}

.product-details-tyres .tyres-box-inner .ajax-cart-button-wrapper {
    width: 95px !important;
}

.product-details-tyres .add-to-cart-panel input[type="button"] {
    border: 0;
}

.product-details-tyres .tyres-box-inner {
    padding: 10px 10px 15px;
}

/*Product Page Rims*/

.product-picture-rims .gallery .picture-wrapper:after {
    display: block;
    content: '';
    width: 100%;
    height: 30px;
    background-image: url(/Themes/Brooklyn/Content/img/rims-shadow.png);
    position: absolute;
    bottom: -49px;
    right: 25px;
    margin: 0 auto;
    background-blend-mode: multiply;
    background-color: #FFF;
    mix-blend-mode: multiply;
}

.product-wrapper {
    max-width: 1320px;
    margin: 0 auto;
    padding: 50px 15px;
}

.product-rims-wrapper {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.product-picture-rims {
    -ms-flex-preferred-size: 55%;
    flex-basis: 55%;
    position: relative;
}

.overview-rims {
    -ms-flex-preferred-size: 45%;
    flex-basis: 45%;
}

.gallery .picture-wrapper {
    position: relative;
    max-width: 70% !important;
    margin: auto;
}

.overview-rims .full-description p {
    line-height: 32px !important;
    font-size: 16px;
    font-weight: 300;
    color: #2D2D2D;
}

.overview-rims .product-name h1 {
    text-align: left;
    font-size: 32px;
    font-weight: 300;
    color: #41484C;
}

.overview-rims .full-description {
    clear: both;
    margin: 0;
    line-height: 28px;
}

.overview-rims .overview-buttons {
    margin: 0;
    border-bottom: 0;
    padding: 0;
    font-size: 0;
}

.overview-rims .overview {
    margin: 0 0 30px;
    padding: 0 35px;
}

.plus-minus-input .input-group-button .circle {
    padding: 0.25em 0.8em;
    position: absolute;
    right: 7px;
    width: 20px;
    background-size: 11px;
    height: 20px;
    background-color: unset;
    border: 0;
    border-left: 2px solid #ADADAD;
}

.tyres-box-inner .ajax-cart-button-wrapper {
    width: 175px !important;
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.input-group.plus-minus-input {
    position: relative;
}

.plus-minus-input .input-group-button .qtyminus {
    background-image: url(/Themes/Brooklyn/Content/img/icons/decrement-icon.svg);
    background-position: center;
    background-repeat: no-repeat;
    bottom: 1px;
    background-position-y: 7px;
}

.plus-minus-input .input-group-button .qtyplus {
    background-image: url(/Themes/Brooklyn/Content/img/icons/increment-icon.svg);
    background-position: center;
    background-repeat: no-repeat;
    top: 2px;
    border-bottom: 2px solid #ADADAD;
}

.overview .tyre-prices {
    margin: 0 0 20px;
}

.overview .prices {
    margin: 0 0 20px;
}

.overview h4 {
    color: #2D2D2D;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

.overview span.price-text {
    font-size: 16px;
    margin: 10px 0 0;
    color: #2D2D2D;
}

.overview .prices span {
    color: #ED1C24;
    font-size: 16px;
}

.one-column .product-name, .two-columns .product-name {
    margin: 30px 0 25px;
}

.add-to-cart-panel input[type="button"] {
    background-color: #6FB843;
    font-size: 0;
    width: 94px !important;
    background-image: url(/Themes/Brooklyn/Content/img/icons/cart-icon.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 30px;
    min-width: unset;
    height: 40px;
}




.overview .add-to-cart-panel, .variant-overview .add-to-cart-panel {
    position: relative;
    max-width: 180px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.overview-rims .availability-bottom span {
    color: #636363;
    font-size: 12px;
    font-weight: 400;
    display: inline-block;
}

.overview .availability-top {
    margin-right: 30px;
}

.block-category-navigation .title {
    background: #fcab10;
    background: -webkit-linear-gradient(left, #fcab10 0%,#fc8810 100%);
    background: -webkit-gradient(linear, left top, right top, from(#fcab10),to(#fc8810));
    background: -o-linear-gradient(left, #fcab10 0%,#fc8810 100%);
    background: linear-gradient(to right, #fcab10 0%,#fc8810 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fcab10', endColorstr='#fc8810',GradientType=1 );
    color: #FFF;
    font-size: 16px;
    font-weight: 600;
    padding: 15px 10px;
    border: 0 !important;
    position: relative;
    border-bottom: 2px solid #FFF !important;
}

.block.filter-block {
    border-bottom: 2px solid #CCCCCC !important;
    margin-bottom: 0 !important;
    padding-bottom: 15px;
    margin-top: 15px !important;
}

.filter-block a.toggleControl {
    padding: 0;
    color: #FFF;
}

.filters-wrapper.closed-accordion {
    overflow: hidden;
}

.block-category-navigation, .filter-block {
    border: 0 !important;
    margin: 0;
    overflow: hidden;
}

    .block-category-navigation .listbox {
        height: 0;
    }

    .filter-block a.toggleControl {
        background: url(/Themes/Brooklyn/Content/img/icons/filters-icon-up.svg) no-repeat right center;
        background-size: 25px;
    }

        .filter-block a.toggleControl.closed {
            background: url(/Themes/Brooklyn/Content/img/icons/filters-icon.svg) no-repeat right center;
            background-size: 25px;
        }

    .filter-block a.toggleControl {
        color: #444;
        font-weight: 400;
        border: 0;
        color: #1E1E1E;
        font-size: 14px;
        font-weight: 600;
    }

.closed-accordion .listbox {
    padding: 0;
    border: 0;
}

.block .listbox {
    border-top: 0;
}

.title.filter-title {
    background: #fcab10;
    background: -webkit-linear-gradient(left, #fcab10 0%,#fc8810 100%);
    background: -webkit-gradient(linear, left top, right top, from(#fcab10),to(#fc8810));
    background: -o-linear-gradient(left, #fcab10 0%,#fc8810 100%);
    background: linear-gradient(to right, #fcab10 0%,#fc8810 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fcab10', endColorstr='#fc8810',GradientType=1 );
    color: #FFF;
    font-size: 16px;
    font-weight: 600;
    padding: 15px 10px;
    border: 0 !important;
    position: relative;
}

.filters-wrapper {
    overflow: hidden;
}
/*Topics*/
.page-title h1 {
    font-size: 26px;
    font-weight: 400;
    color: #2d2d2d;
}

.page-title {
    margin: 6em 0 4em;
}



.topic-page p {
    margin: 0;
}
/*News Page*/
.news-pages-body .page-title, .blog-pages-body .page-title {
    position: static;
    border: 0;
    font-size: 26px;
    margin: 3em 0 4em;
}

.news-pages-body .news-item-wrapper .page-title {
    margin: 3em 0 0;
}

.news-item-wrapper {
    min-height: 39vh;
}

/*Cart Page*/
.shopping-cart-page .page-title {
    margin: 2em 0;
}

.shopping-cart-page {
    padding: 0 0 50px;
}

.order-summary-content .message-error {
    display: block;
    padding: 5px 0 0;
    color: #2a2a2a;
}

/*Means of Payment Page*/
section.means-of-payment {
    max-width: 990px;
    padding: 0 1em;
    margin: 0 auto;
}

.payment-text p {
    margin: 0 0 30px;
}

.payment-banks-wrap {
    margin-top: 50px;
}

.bank-line {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 15px;
    margin-bottom: 30px;
    border-radius: 27px;
    -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.25);
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.25);
    min-height: 99px;
}

.bank-img {
    -ms-flex-preferred-size: 260px;
    flex-basis: 260px;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

img.bank-logo {
    max-height: 80px;
}
/*Account Pages*/
.ui-datepicker-trigger, .customer-info-page input[type="submit"] {
    background-color: #dc0305;
    color: #FFF;
    font-size: 17px;
    padding: 5px 15px 9px;
    border: 0;
    margin: 0 4px;
}

.account-page .button-1:hover {
    opacity: .7;
}

.customer-card-inner {
    margin: 2em 0;
    text-align: center;
    overflow: auto;
}

.page.account-page.customer-info-page {
    font-size: 13px;
}

/*S1 CARD Page*/

.pager {
    font-size: 13px;
    padding: 0;
    margin: 0 10px;
    border: 0;
    text-align: right;
}

    .pager a:hover, .pager a:hover {
        -webkit-transition: .2s ease-in-out;
        -o-transition: .2s ease-in-out;
        transition: .2s ease-in-out;
    }

    .pager a:hover {
        color: #3ab3ff;
    }



/*Wishlist Page*/
.wishlist-page {
    min-height: 39vh;
    padding-bottom: 2em;
}

.add-to-wishlist-button {
    display: none;
}

.no-data {
    text-align: center;
}
/*Contact Page*/
.inputs label {
    width: 100%;
    display: block;
    text-align: center;
    margin: 0 0 10px;
}

.contact-page .form-fields {
    max-width: 600px;
    margin: 0 auto;
}

.inputs input[type="text"], .inputs input[type="password"], .inputs select, .inputs textarea {
    border: 0;
    -webkit-box-shadow: 1px 1px 6px 0 rgba(0, 0, 0, 0.25);
    box-shadow: 1px 1px 6px 0 rgba(0, 0, 0, 0.25);
}

.inputs {
    text-align: center;
}


/*Cart*/
.cart-collaterals .shopping-cart-info {
    width: 100%;
    text-align: left;
    max-width: unset;
    font-size: 18px;
    font-weight: 300;
    color: #494949;
}

.iconWrapper {
    position: relative;
    overflow: hidden;
    float: left;
    width: 21px;
    height: 21px;
    border-radius: 2px;
    background-color: white;
    padding: 25px;
    border-radius: 5px;
    border: solid 2px transparent;
    margin: 0 5px 5px 0;
    transition: border-color 0.4s ease-out;
    transform: scale(1, 1);
    /* transform: scale(4,4); */
}

.alert-circle.icon.filled {
    background-color: #0100c7;
}

.alert-circle.icon {
    margin-left: 2px;
    margin-top: 2px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: solid 1px #0100c7;
    transform: rotate(180deg);
}

.info-error p {
    text-align: left;
    padding-left: 24px;
}

.iconWrapper .icon {
    z-index: 1;
}

.icon {
    position: absolute;
}




    .icon:before, .icon:after {
        content: '';
        position: absolute;
        display: block;
    }

.alert-circle.icon:before {
    top: 3px;
    left: 7px;
    width: 2px;
    height: 7px;
    background-color: #333333;
}

.alert-circle.icon.filled:before, .alert-circle.icon.filled:after {
    background-color: white;
}

.alert-circle.icon:after {
    top: 11px;
    left: 7px;
    width: 2px;
    height: 2px;
    background-color: #333333;
}

.alert-circle.icon.filled:before, .alert-circle.icon.filled:after {
    background-color: white;
}

.alert-square.icon.filled {
    background-color: #dc0305;
}

.alert-square.icon {
    margin-left: 3px;
    margin-top: 3px;
    width: 17px;
    height: 16px;
    border: solid 1px #dc0305;
    border-radius: 2px;
}

    .alert-square.icon.filled:before, .alert-square.icon.filled:after {
        background-color: white;
    }

    .alert-square.icon:before {
        top: 2px;
        left: 6px;
        width: 2px;
        height: 7px;
        background-color: #333333;
    }

    .alert-square.icon.filled:before, .alert-square.icon.filled:after {
        background-color: white;
    }

    .alert-square.icon:after {
        top: 10px;
        left: 6px;
        width: 2px;
        height: 2px;
        background-color: #333333;
    }

.message-delivery p.delivery-info {
    padding-left: 25px;
    margin: 10px 0;
}
/*Footer*/
.footer {
    background-color: #212121;
    -webkit-box-shadow: none;
    box-shadow: none;
    text-align: center;
    color: #fff;
}

.footer-middle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    max-width: 1240px;
    padding: 0px 1em;
    width: 100%;
}

.footer-block {
    width: 100% !important;
    float: none;
    display: block;
    min-height: 175px;
    padding: 0;
}

.footer-phone {
    max-width: none;
    -ms-flex-preferred-size: 80%;
    flex-basis: 80%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
}

.phone-contact p {
    font-size: 25px;
    font-weight: 300;
    color: #fff;
}

.account-page .edit-address-button {
    margin: 0 4px 0 0;
}

p.big-text {
    font-size: 36px;
    font-weight: 700;
}

.footer-small {
    -ms-flex-preferred-size: 24%;
    flex-basis: 24%;
}

.footer-block a {
    color: #fff;
}

.footer-block .title + *:before {
    display: none;
}

.footer-topic ul {
    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-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    height: 100%;
    min-height: 170px;
}

.footer-topic li {
    padding: 0;
}


.footer-topic ul li a {
    font-size: 16px;
    font-weight: 300;
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

    .footer-topic ul li a:hover {
        -webkit-transition: all .2s ease-in-out;
        -o-transition: all .2s ease-in-out;
        transition: all .2s ease-in-out;
    }

.sub-category-item {
    margin: 20px 0 0;
}

.footer-lower-center {
    width: 100%;
    color: #212121;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    max-width: 1260px;
    padding: 0 1em;
}

.footer-lower > div > div.footer-store-theme {
    margin: 0;
    display: none;
}

.footer-lower {
    overflow: hidden;
    background-color: #fff;
    padding: 25px 0 20px;
    font-size: 12px;
    font-weight: 300;
}

    .footer-lower > div > div {
        display: block;
        margin: 0;
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    }

.footer-links li {
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.footer-icon img {
    margin-right: 5px;
    margin-top: 2px;
}

.footer-powered-by {
    text-align: left;
}

.footer-block .list li {
    padding: 6px 0;
}

    .footer-block .list li:first-child {
        padding: 5px 0 5px;
    }

.footer-copyright {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}

.footer-copyright {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    text-align: right;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.footer-designed-by {
    margin-right: 10px;
}

/*Media*/
@media (min-width:481px) {
    .eu-cookie-bar-notification .content {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .eu-cookie-bar-notification .text {
        margin-bottom: 0;
        line-height: 20px;
        padding: 0 10px;
    }
}

@media screen and (min-width:1281px) {

    /*General*/
    .side-2 {
        width: 21%;
    }
    /*Header*/
    .header-menu > ul {
        display: block;
        font-size: 0;
        width: 100%;
        text-align: left;
    }

    .header-menu {
        text-align: left;
    }

    .header-2 #headerMenuParent {
        padding: 0;
        text-align: left;
        width: 100%;
        display: block;
    }

    /*Homepage*/
    .home-page .topic-block {
        margin: 0;
    }
}

@media (max-width:1280px) and (min-width:1280px) {
    gallery .picture {
        float: left;
        width: 66%;
        margin: 0 1% 0 0;
    }
}

@media screen and (min-width:1001px) {
    /*Header*/
    .center-2 .inputs label {
        width: 100%;
        text-align: center;
    }

    .header-2 .header-links-wrapper {
        display: block;
    }

    .header-2 .header-actions a.ico-cart {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end;
    }


    span.cart-box-total, span.cart-box-qty {
        font-size: 14px;
        color: #FFF;
        font-weight: 700;
        margin: 0 3px 2px;
        letter-spacing: 3px !important;
    }
    /*Account Page*/
    .account-container {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    .account-page .page-title {
        margin: 0 0 20px;
    }
    /*Tyres Specs*/
    .tyres-specs-middle {
        width: 76%;
        margin: 10px 0 10px auto;
        text-align: center;
        font-size: 16px;
    }
    /*Search Box*/
    .store-search-box span.search-box-text {
        float: left;
        width: 92%;
    }

    .store-search-box input.search-box-text {
        width: 100% !important;
        height: 29px;
        font-size: 12px;
        color: rgba(255,255,255,0.6);
    }

    .header-2 .store-search-box form {
        border: 2px solid #cecece;
        width: 100%;
        background: rgb(239,239,239); /* Old browsers */ /* FF3.6-15 */
        background: -webkit-linear-gradient(top, rgba(239,239,239,1) 40%,rgba(255,255,255,1) 100%); /* Chrome10-25,Safari5.1-6 */
        background: -webkit-gradient(linear, left top, left bottom, color-stop(40%, rgba(239,239,239,1)),to(rgba(255,255,255,1)));
        background: -o-linear-gradient(top, rgba(239,239,239,1) 40%,rgba(255,255,255,1) 100%);
        background: linear-gradient(to bottom, rgba(239,239,239,1) 40%,rgba(255,255,255,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#efefef', endColorstr='#ffffff',GradientType=0 );
    }

    .header-2 .store-search-box input.search-box-text {
        height: 34px;
        color: #888;
    }

    .header-2 .store-search-box {
        position: static;
        width: 477px;
    }

    .store-search-box .search-box-button {
        width: 36px;
        height: 34px;
        background: rgba(0, 0, 0, 0) url(/Themes/Brooklyn/Content/img/search-icon.png) no-repeat center !important;
    }

    .header-logo {
        display: block;
        width: 20%;
        padding: 0 20px 0 0;
        vertical-align: middle;
        text-align: left;
    }

    .header-2 .header-options {
        display: block;
        width: 36%;
        float: none;
        vertical-align: middle;
        text-align: right;
    }

    .header-2 .store-search-box {
        display: block;
        float: none;
        vertical-align: middle;
    }

    .header-2 .header-options-wrapper {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .header-2 .store-search-box input.search-box-text::-webkit-input-placeholder {
        font-size: 13px;
        font-weight: 300;
        color: #cecece;
    }

    .header-2 .store-search-box input.search-box-text:-ms-input-placeholder {
        font-size: 13px;
        font-weight: 300;
        color: #cecece;
    }

    .header-2 .store-search-box input.search-box-text::-ms-input-placeholder {
        font-size: 13px;
        font-weight: 300;
        color: #cecece;
    }

    .header-2 .store-search-box input.search-box-text::placeholder {
        font-size: 13px;
        font-weight: 300;
        color: #cecece;
    }

    .header-2 .header-logo {
        width: 100%;
    }

    .header-2 .header-options-wrapper > div {
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    }

    .header-2 .header-menu > ul > li > a, .header-2 .header-menu > ul > li > span {
        color: #2d2d2d;
        font-size: 16px;
        font-weight: 600;
        padding: 5px 30px;
        -webkit-transition: all .2s ease-in-out;
        -o-transition: all .2s ease-in-out;
        transition: all .2s ease-in-out;
    }

    li.logo-business {
        text-align: center;
        padding: 10px 0;
        border-bottom: 1px solid #ddd;
    }

    .dropdown-content a {
        color: #2d2d2d;
        padding: 3px 16px;
        text-decoration: none;
        display: inline-block;
        font-size: 16px;
        text-align: left;
        width: 335px;
        line-height: 35px;
    }

        .dropdown-content a:hover {
            background-color: #2d2d2d;
            color: #fff;
        }

    .dropdown-content {
        display: none;
        position: absolute;
        background-color: #f9f9f9;
        min-width: 160px;
        -webkit-box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
        box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
        padding: 10px 0;
    }



    .dropdown {
        display: inline-block;
        width: 54px;
        height: 54px;
        margin: 0;
        vertical-align: middle;
    }

    #profile {
        display: inline-block;
        width: 54px;
        height: 54px;
        vertical-align: middle;
    }

    .header-actions {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-preferred-size: 200px;
        flex-basis: 200px;
        width: 100%;
        text-align: right;
        vertical-align: middle;
        font-size: 0;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    #profile {
        display: inline-block;
        width: 54px;
        height: 54px;
        vertical-align: middle;
        background-color: transparent;
        border: 0;
        border-left: 2px solid rgba(255, 255, 255, 0.18);
        background-image: url(/Themes/Brooklyn/Content/img/profile-icon.png);
        background-position: center;
        background-repeat: no-repeat;
    }

    .header-2 .header-actions a.ico-cart {
        background-color: #dc0305;
        background-image: url(/Themes/Brooklyn/Content/img/cart-icon.png);
        -ms-flex-preferred-size: 148px;
        flex-basis: 148px;
        background-position: center 30%;
        height: 54px;
    }

    .header-actions a.ico-wishlist {
        background-color: transparent;
        background-image: url(/Themes/Brooklyn/Content/img/wishlist-icon.png);
        background-repeat: no-repeat;
        border-left: 2px solid rgba(255, 255, 255, 0.18);
        background-position: center;
        width: 54px;
        height: 54px;
    }

    .header-2 .header-menu > ul > li:first-child > a {
        padding-left: 10px;
    }

    .header-2 .header-menu > ul > li > a:after, .header-2 .header-menu > ul > li > span:after {
        display: none;
    }

    .header-2 .header-menu > ul > li:hover > a {
        color: #fff;
        -webkit-transition: all .2s ease-in-out;
        -o-transition: all .2s ease-in-out;
        transition: all .2s ease-in-out;
    }

    .header-2 .header-menu > ul > li > .sublist-wrap, .header-2 .header-menu > ul > li > .dropdown {
        margin-top: -2px;
        background-color: #fcab10;
    }

    .header-menu .sublist-wrap {
        top: auto;
    }

    .header-menu .sublist-wrap {
        left: 0;
    }

    .header-menu .sublist li a {
        display: block;
        border-bottom: 0;
        padding: 5px 10px 5px;
        font-size: 14px;
        color: #212121;
        -webkit-transition: all .2s ease-in-out;
        -o-transition: all .2s ease-in-out;
        transition: all .2s ease-in-out;
    }

        .header-menu .sublist li a.hover {
            color: #fff;
        }

    header-menu .sublist li:hover a:hover {
        color: #fff;
    }

    .header-menu .sublist li:hover a {
        color: #fff;
    }

    .header-menu > ul > li:after {
        content: '|';
        display: block;
        height: 25px;
        width: 4px;
        position: absolute;
        font-size: 25px;
        color: #2d2d2d;
        right: 0;
        font-weight: 600;
        bottom: 12px;
    }

    .header-menu > ul > li:last-child:after {
        display: none;
    }

    .header-2 .header-lower {
        display: block;
        padding: 0;
    }

    .header-2 .header-actions-wrapper {
        width: 100%;
        max-width: 1240px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        padding: 0 1em;
    }

    .header-menu {
        display: block;
        text-align: left;
        position: relative;
        z-index: 1010;
        margin: 0;
        text-align: left;
    }

    .header-2 #headerMenuParent {
        padding: 0;
        text-align: left;
        width: 83%;
        display: block;
    }

    /*News*/
    .news-pages-body .page-title, .blog-pages-body .page-title {
        position: static;
        border: 0;
        font-size: 26px;
        margin: 3em 0 4em;
    }

    /*Category Page*/
    .category-page-body .master-wrapper-content {
        padding: 30px 0 0;
    }

    .item-box-rims .availability-bottom {
        min-height: 25px;
    }

    .product-selectors {
        position: relative;
        z-index: 2;
        text-align: left;
        width: 100%;
        margin: 0 0 10px;
    }

    .rims-specs-bottom .buttons .product-box-add-to-cart-button {
        width: calc(100% - 85px) !important;
        margin: 0 0 0 6px;
    }

    .tyres-specs-wrapper .first-price {
        margin: 0 15px;
        max-width: 150px;
    }

    .tyres-specs-bottom-right {
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
    }
    /*Login - Register Page*/
    .login-page .text {
        min-height: 275px;
    }
    /*Product Page Rims*/
    .gallery {
        display: inline-block;
        width: 100%;
        max-width: none;
        padding: 15px 25px 0 0;
        vertical-align: top;
    }

        .gallery .picture {
            float: left;
            width: 500px;
            margin: 0 1% 0 0;
        }

    /*Cart*/
    .cart-options {
        text-align: left;
        float: left;
        width: 33%;
    }
    /*Footer*/
    .footer-topic {
        -ms-flex-preferred-size: 20%;
        flex-basis: 20%;
    }

    .footer-phone .title {
        display: none;
    }

    .footer-block .list li {
        padding: 6px 0;
    }

    .footer-block .title {
        margin: 0;
    }

    .footer-block .list li:first-child {
        padding: 5px 0 5px;
    }

    .footer-block .title strong {
        color: #fff;
        font-weight: 300;
        display: none;
    }

    .footer-2 .footer-middle {
        padding: 45px 1em;
    }
}

@media (min-width:1281px) {
    .cart-options {
        width: 50%;
    }
}

@media (min-width:1001px) and (max-width:1280px) {
    .header-2 .header-menu > ul > li > a, .header-2 .header-menu > ul > li > span {
        font-size: 12px;
        padding: 5px 24px;
    }


    /*Category Page Tyres*/
    span.span-label {
        font-size: 11px;
        font-weight: 300;
        margin-left: 2px;
    }

    .tyre-prices h4 {
        font-size: 14px;
    }

    .tyres-specs-bottom-right {
        -ms-flex-preferred-size: 61%;
        flex-basis: 61%;
    }

    .tyres-specs-bottom-left {
        -ms-flex-preferred-size: 37%;
        flex-basis: 37%;
    }
}

@media (max-width:1199px) {

    /*Product Page Rims*/
    .overview-rims .full-description p {
        font-size: 14px;
    }

    .overview-rims .product-name h1 {
        font-size: 26px;
    }
    /*Footer*/
    .footer-phone {
        -ms-flex-preferred-size: 60%;
        flex-basis: 60%;
    }
}

@media (max-width:1310px) {
    .home-page-product-grid, .recently-added-products-page {
        max-width: 1000px;
    }
}

@media (min-width:1001px) and (max-width:1100px) {
    .home-page-product-grid, .recently-added-products-page {
        max-width: 880px;
    }
}

@media (max-width:1000px) {
    /*Header*/
    .header-menu > ul li {
        text-align: left;
    }

    .profile-title {
        display: inline-block;
        background-image: url(/Themes/Brooklyn/Content/img/profile-icon-responsive.png) !important;
        background-repeat: no-repeat !important;
        background-position: center !important;
    }

    nav.dropdown-content.pushy.pushy-left {
        display: block !important;
    }

    .store-search-box .search-box-button {
        width: 36px;
        height: 34px;
        background: rgba(0, 0, 0, 0) url(/Themes/Brooklyn/Content/img/search-icon.png) no-repeat center !important;
    }

    .responsive-nav-wrapper .shopping-cart-link {
        background-image: url(/Themes/Brooklyn/Content/img/cart-icon.png);
    }

    .responsive-nav-wrapper .wishlist-opener {
        background-image: url(/Themes/Brooklyn/Content/img/wishlist-icon-responsive.png);
        display: none;
    }

    .pushy a:hover {
        color: #fcab10;
    }

    /*Category*/
    .item-box-tyres .ribbon-wrapper, .item-box-rims .ribbon-wrapper {
        top: 139px;
    }

    .block.block-category-navigation {
        display: none;
    }

    .checkbox-list li label {
        padding: 6px 20px;
    }

    .checkbox-list {
        max-width: 211px;
    }

        .checkbox-list li:nth-of-type(6n) {
            margin-right: 3px;
        }

    .filter-block .title {
        border-bottom: 0;
    }
    /*Tyres*/
    .tyres-specs-middle {
        width: 100%;
        margin: 10px auto;
        text-align: center;
        font-size: 16px;
    }
    /*Product Page Rims*/
    .product-rims-wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .gallery .picture-thumbs {
        overflow: hidden;
        text-align: left;
        font-size: 0;
        text-align: center;
        margin: 20px 0 0;
    }

    .overview-rims {
        -ms-flex-preferred-size: 45%;
        flex-basis: 45%;
        max-width: 575px;
        margin: 0 auto;
    }

        .overview-rims .overview {
            padding: 0;
        }

        .overview-rims .product-name h1 {
            text-align: center;
        }

    .product-availability {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .overview-rims .full-description p {
        text-align: center;
    }

    .overview .prices > div {
        text-align: center;
    }

    .overview h4 {
        text-align: center;
    }

    .overview .first-price.tyre-prices h4, .overview .first-price.tyre-prices span {
        text-align: center;
    }

    .overview .add-to-cart-panel, .variant-overview .add-to-cart-panel {
        margin: 0 auto;
    }
    /*Homepage*/
    .home-page-product-grid, .recently-added-products-page {
        max-width: 700px;
        margin: 0 auto;
    }

    .homepage-carousel-2 {
        padding: 3em 0;
    }

    /*News Page*/
    .news-content {
        text-align: left;
    }
    /*Account Page*/
    .block.block-account-navigation {
        width: 250px;
        margin: 1em auto;
    }

    .side-2 {
        padding: 20px;
        text-align: center;
        margin: 0 0 10px;
    }

    .account-container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    /*Category Page Rims*/
    .item-box-rims input[type="button"] {
        -webkit-appearance: none;
        width: 100%;
        height: 45px;
    }
    /*Category Page Rims*/
    .category-page-container .center-2 {
        width: 100%;
    }

    .ps-container .filtersPanel {
        background: #fff;
        padding: 20px;
    }

    .side-2 {
        padding: 20px;
        text-align: center;
    }

    .category-page-container .side-2 .category-filters-wrap {
        -webkit-box-shadow: 0 0 12px 0 rgba(0, 0, 0, .15);
        box-shadow: 0 0 12px 0 rgba(0, 0, 0, .15);
        display: block;
        margin: 0 auto;
        max-width: 300px;
    }

    .block.block-category-navigation.closed-accordion {
        width: 100%;
    }

    .item-box-rims {
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        width: 100%;
        max-width: 455px;
        margin: 0 auto 30px;
    }

    .category-page-container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .side-2 .filters-wrapper {
        display: none;
    }

    .product-selectors .product-page-size {
        position: static;
        right: 0;
        padding: 8px 0;
    }

    .rims-specs-bottom-left.flex-container.flex-column {
        text-align: left;
    }

    .first-price.rims-prices h4 {
        text-align: left;
    }

    .rims-prices {
        text-align: left;
    }

    /*Category Page*/

    .category-page .item-grid {
        padding: 0;
    }

    .tyres-box-inner {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .category-page-container {
        padding: 0 5px;
    }

    .tyres-specs-wrapper {
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        padding-left: 0;
        padding-top: 0;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        margin: 15px 0 0;
    }

    .logo-title {
        text-align: right;
        -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
        order: -1;
    }

    .tyres-specs-top {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

        .tyres-specs-top .flex-container:before {
            display: none;
        }

    .tyres-specs-bottom-left, .tyres-specs-bottom-right {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .title-tyres {
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        padding: 15px 15px 0;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        min-height: 98px;
    }

    .tyres-specs-top .trans-wrap {
        -ms-flex-preferred-size: 51%;
        flex-basis: 51%;
        padding: 0 0 10px;
        border-bottom: 2px solid #DEDEDE;
        margin: 0 0 20px;
        min-height: 36px;
    }

    .tyres-specs-top span.tyres-grey-span {
        margin-left: 5px;
    }

    .tyres-specs-top .weather-wrap {
        -ms-flex-preferred-size: 30%;
        flex-basis: 30%;
        border-bottom: 2px solid #DEDEDE;
        padding: 0 0 9px;
        margin: 0 0 20px;
        min-height: 31px;
    }

    .tyres-specs-top .small-specs-wrap {
        -ms-flex-preferred-size: 70%;
        flex-basis: 70%;
        padding: 0 0 10px;
        border-bottom: 2px solid #DEDEDE;
        margin: 0 0 20px;
        min-height: 31px;
    }

    .tyres-specs-top .load-wrap, .tyres-specs-top .speed-wrap {
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
        padding: 0 0 10px;
        border-bottom: 2px solid #DEDEDE;
        margin: 0 0 20px;
        min-height: 32px;
    }

    .item-box-tyres {
        margin: 0 auto 15px;
        border: 2px solid #DEDEDE;
        max-width: 350px;
    }

    .first-price.tyre-prices {
        width: 100%;
        height: 60px;
        margin: 0 0 15px;
        padding: 0 0 10px;
        border-bottom: 2px solid #DEDEDE;
    }

    .tyre-prices h4 {
        font-size: 14px;
    }

    .tyre-prices span.price-text {
        font-size: 14px;
    }

    .availability-wrapper {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
        text-align: left;
    }

    .tyres-specs-bottom-left {
        -ms-flex-preferred-size: 40%;
        flex-basis: 40%;
        min-height: 133px;
    }

    .tyres-specs-bottom-right {
        -ms-flex-preferred-size: 63%;
        flex-basis: 63%;
    }

    .availability-top {
        margin-bottom: 5px;
    }

    .availability-bottom {
        text-align: left;
    }

    .item-box-tyres .picture {
        max-width: 148px;
        background-color: #FFF;
        margin: 0 auto 0 0;
    }

    .title-tyres h2.product-title {
        padding: 0 0 1px;
    }

    .manufacturer-part-number {
        padding: 0 0 10px;
        text-align: left;
    }

    .item-box-tyres .buttons {
        width: 100%;
    }
    /*Footer*/
    .footer-middle {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        padding: 2em 1em;
    }

    .footer-block {
        width: 100% !important;
        min-height: initial;
        text-align: left;
        max-width: 310px;
        margin: 0 auto;
    }

        .footer-block .title strong {
            display: block;
            position: relative;
            padding: 0 20px 8px 0;
            text-align: left;
            color: #fff;
            font-size: 17px;
            font-weight: 300;
            border-bottom: 1px solid;
        }

        .footer-block .title {
            padding: 20px 0 10px;
            font-size: 14px;
            color: #444;
            cursor: pointer;
            text-align: left;
            width: 100%;
            display: block;
        }

    .phone-contact {
        text-align: center;
    }

    #goToTop {
        bottom: 35px;
    }

    .footer-middle > div {
        -ms-flex-preferred-size: initial;
        flex-basis: initial;
        width: initial;
        border: 0;
    }

    .footer-block .title strong:before {
        display: none;
    }

    .footer-lower > div > div {
        display: block;
        margin: 0;
        -ms-flex-preferred-size: initial;
        flex-basis: initial;
    }
}

@media (max-width:1000px) and (min-width:768px) {
    .category-page .item-grid {
        padding: 0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -ms-flex-pack: distribute;
        justify-content: space-around;
    }

    .item-box-tyres {
        margin: 0 2% 15px;
        border: 2px solid #DEDEDE;
        max-width: 350px;
        -ms-flex-preferred-size: 45%;
        flex-basis: 45%;
    }

    .product-details-page .item-box-tyres {
        margin: 0 auto;
    }

    .product-grid.also-purchased-products-grid .item-box, .product-grid.related-products-grid .item-box, .product-grid.cross-sells .item-box {
        width: 100%;
        margin: 0 auto 20px;
        clear: both;
        float: none;
        max-width: 350px;
    }
}

@media (min-width:769px) {
    .product-selectors .product-page-size {
        position: static;
    }
}

@media (min-width:769px) and (max-width:1000px) {
    /*.product-box-add-to-cart-button {
		height: 43px;
		width: 120px;
		display: block;
	}*/

    .tyre-prices h4 {
        font-size: 14px;
    }

    .tyre-prices span.price-text {
        font-size: 14px;
    }

    .tyres-specs-top .weather-icon img {
        width: 12px;
        margin: 0 5px;
    }

    .small-specs-container {
        margin: 0 6px;
    }

    span.span-label {
        font-size: 11px;
        font-weight: 300;
        margin-left: 0px;
    }

    span.tyres-grey-span {
        font-size: 15px;
        color: #808080;
        font-weight: 700;
        margin-left: 10px;
    }
}

@media (min-width:769px) and (max-width:1000px) {
    .product-selectors {
        position: relative;
        z-index: 2;
        text-align: center;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

        .product-selectors > div {
            min-height: 92px;
        }
}

@media (max-width:800px) {
    /*Homepage*/
    .home-page-product-grid, .recently-added-products-page {
        max-width: 500px;
        margin: 0 auto;
    }

    .product-grid.also-purchased-products-grid .item-box, .product-grid.related-products-grid .item-box, .product-grid.cross-sells .item-box {
        width: 100%;
        margin: 0 auto 20px;
        clear: both;
        float: none;
        max-width: 350px;
    }
}



@media (max-width:768px) {
    /*Category Page Rims*/
    .category-page .page-title h1 {
        text-align: center;
    }

    .product-selectors > div {
        display: block;
        text-align: center;
    }

        .product-selectors > div > span:first-child {
            width: 100%;
            text-align: center;
        }

        .product-selectors > div > span {
            display: block;
            padding: 0 10px;
            width: 100%;
            text-align: center;
        }

    .title-rims h2.product-title {
        margin: 0 0 10px;
    }

    .title-rims {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }


    .rims-specs-wrapper {
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        width: 100%;
        max-width: 300px;
        margin: 20px 0 0;
    }

    .rims-box-inner {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .item-box-rims .picture {
        max-width: 187px;
        background-color: #FFF;
        padding: 10px;
        max-height: 184px;
        width: 100%;
        margin: 0 auto;
    }

    .rims-picture {
        -ms-flex-preferred-size: 43%;
        flex-basis: 43%;
        width: 100%;
        margin: 0 auto;
    }

    .item-box-rims:nth-child(2n) {
        margin: 0 auto 20px;
    }
    /*News List Page*/
    .news-items {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

@media (max-width:767px) {

    /*Means of Payment Page*/
    .bank-line {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        padding: 1em 15px 2em;
    }

    .bank-img {
        -ms-flex-preferred-size: 100px;
        flex-basis: 100px;
        text-align: center;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }


    .item-box-tyres:nth-child(2n) {
        margin: 0 auto 15px;
    }


    /*Footer*/
    .footer-lower-center {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
}

@media (max-width:600px) {


    .home-page .owl-item .item-box-carousel {
        max-width: 300px;
        margin: 0 auto;
    }

    .home-page .owl-carousel .owl-next {
        right: -25px;
    }

    .home-page .owl-carousel .owl-prev {
        left: -25px;
    }

    .home-page-product-grid, .recently-added-products-page {
        max-width: 350px;
        margin: 0 auto;
    }

    span.span-label {
        font-size: 11px;
        font-weight: 300;
        margin-left: 11px;
    }

    .tyres-specs-top .load-wrap, .tyres-specs-top .speed-wrap {
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
        padding: 0 0 10px;
        border-bottom: 2px solid #DEDEDE;
        margin: 0 0 20px;
        min-height: 36px;
    }
}

@media (max-width:480px) {
    /*Homepage*/
    .home-page .jCarouselMainWrapper .nop-jcarousel {
        padding: 0 20px;
    }

    .home-page-product-grid .title strong, .home-page .recently-added-products-page .page-title h1 {
        font-size: 22px;
        font-weight: 300;
        margin: 0 0 30px;
    }
    /*Product Page Rims*/
    .overview .availability-top {
        margin-right: 0;
    }

    .overview-rims .product-name h1 {
        text-align: center;
    }

    .product-availability {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    /*Account Pages*/
    .page-title h1 {
        font-size: 21px;
        font-weight: 400;
        color: #2d2d2d;
        margin: 0 0 20px;
    }
    /*Footer*/
    .footer-copyright {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        text-align: center;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
    }
}

@media (max-width:380px) {
    /*Homepage*/
    .home-page .jCarouselMainWrapper .nop-jcarousel {
        padding: 0;
    }

    .product-box-add-to-cart-button {
        width: 61px !important;
    }

    .item-box-carousel .buttons input[type="text"], .item-grid .buttons input[type="text"] {
        width: 58px;
    }
}

@media (max-width:360px) {
    .related-products-grid .item-box .with-icon input[type="button"] {
        width: 72px !important;
        min-width: 0 !important;
        height: 41px !important;
    }

    .product-details-page .tyres-specs-bottom {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}
