:root {
    --color-primary: #2d7feb;
    --color-primary-light: #5a9aed;
    --color-primary-dark: #1665ca;
    --color-secondary: #49ba19;
    --color-secondary-light: #51CF1C;
    --color-secondary-dark: #40A216;
    --color-tertiary: #E3E9EE;
    --color-tertiary-light: #F2F5F7;
    --color-tertiary-dark: #D3DDE4;
    --color-grey-light-1: #faf9f9;
    --color-grey-light-2: #f4f2f2;
    --color-grey-light-3: #f0eeee;
    --color-grey-light-4: #ccc;
    --color-grey-dark-1: #333;
    --color-grey-dark-2: #777;
    --color-grey-dark-3: #999
}

* {
    margin: 0;
    padding: 0
}

table {
    margin: 0 auto;
}

*, *::before, *::after {
    -webkit-box-sizing: inherit;
    box-sizing: inherit
}

html {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 62.5%
}

@media only screen and (max-width: 68.75em) {
    html {
        font-size: 56.25%
    }
}

@media only screen and (max-width: 37.5em) {
    html {
        font-size: 50%
    }
}

body {
    font-family: 'Rubik', sans-serif;
    font-weight: 400;
    line-height: 2.4rem;
    color: var(--color-grey-dark-2);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility
}

p {
    font-size: 1.4rem;
    padding: 0 0 2rem 0
}

h2 {
    color: var(--color-grey-dark-1);
    font-size: 2.2rem;
    font-weight: 500;
    margin-bottom: 2rem
}

h3 {
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--color-grey-dark-1);
    margin-bottom: 2rem
}

@media only screen and (max-width: 37.5em) {
    h3 {
        margin-bottom: 3rem
    }
}

.h3-brand {
    color: var(--color-grey-dark-1);
    font-size: 2.2rem;
    font-weight: 500;
    margin-bottom: 2rem
}

h4 {
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--color-grey-dark-1)
}

h4 a:link, h4 a:visited {
    color: var(--color-grey-dark-1);
    text-decoration: none
}

h4 a:hover, h4 a:active {
    color: var(--color-grey-dark-1);
    text-decoration: underline
}

.product-block__number {
    margin-bottom: 2rem
}

h5 {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--color-grey-dark-1);
    margin-bottom: 1rem
}

section {
    margin: 4rem 0;
    padding: 3rem
}

@media only screen and (max-width: 68.75em) {
    section {
        margin: 2rem 0
    }
}

@media only screen and (max-width: 50em) {
    section {
        margin: 1rem 0
    }
}

.header_bg {
    background-color: var(--color-primary);
    width: 100%;
    height: 13rem;
    position: absolute;
    top: 8rem;
    z-index: -1
}

@media only screen and (max-width: 50em) {
    .header_bg {
        top: 12rem
    }
}

.container {
    max-width: 120rem;
    margin: auto
}

.header {
    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;
    height: 8rem
}

.header a {
    cursor: pointer
}

@media only screen and (max-width: 50em) {
    .header {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        height: auto
    }
}

.mopedsport-logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 20rem;
    height: 5rem;
    margin-left: 1rem
}

@media only screen and (max-width: 50em) {
    .mopedsport-logo {
        width: 18rem
    }
}

.header-search {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 40%;
    flex: 0 1 40%;
    font-size: 1.4rem;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

@media only screen and (max-width: 50em) {
    .header-search {
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3;
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        margin: 1rem 0 1.5rem 0
    }
}

.header-search__input {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    padding: 1rem;
    border: 1px solid var(--color-grey-dark-2);
    border-radius: 6px;
    width: 90%;
    -webkit-transition: all .2s;
    transition: all .2s;
    margin-right: -3.25rem
}

@media only screen and (max-width: 50em) {
    .header-search__input {
        width: 100%;
        margin: auto 1rem
    }
}

/*
.header-search__input:focus, .header-search__input:hover {
    outline: none;
    width: 100%
}
*/

.header-search__input::placeholder,
.header-search__input::-webkit-input-placeholder {
    font-weight: 100;
    color: var(--color-grey-dark-2)
}

.header-search__button {
    border: none;
    background: transparent
}

.header-search__button:focus {
    outline: none
}

.header-search__button:active {
    -webkit-transform: translateY(2px);
    transform: translateY(2px)
}

.header-search__icon {
    height: 2rem;
    width: 2rem;
    fill: var(--color-primary)
}

@media only screen and (max-width: 50em) {
    .header-search__icon {
        margin-left: -6rem
    }
}

.header-search__icon:hover {
    fill: var(--color-primary-dark)
}

.user-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

@media only screen and (max-width: 50em) {
    .user-nav {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2
    }
}

.user-nav__box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 2rem;
    padding: 1rem;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 1.2rem
}

.user-nav__box.mobile {
    display: none;
}

@media only screen and (max-width: 50em) {
    .user-nav__box {
        padding: 0
    }
    .user-nav__box.mobile {
        display: flex;
    }
    .user-nav__box.desktop {
        display: none;
    }
}

.user-nav__box:hover.user-nav__box svg {
    fill: var(--color-primary-dark)
}

.user-nav__box:hover.user-nav__box span {
    color: var(--color-primary);
    text-decoration: underline
}

.user-nav__link {
    text-decoration: none;
    cursor: pointer;
    color: var(--color-grey-dark-2)
}

.user-nav span {
    padding: 0 1rem;
    -webkit-transition: all .2s;
    transition: all .2s
}

@media only screen and (max-width: 50em) {
    .user-nav span {
        padding-left: 0;
        padding-right: 1.5rem
    }
}

.user-nav__icon {
    width: 2rem;
    height: 2rem;
    cursor: pointer;
    fill: var(--color-primary);
    -webkit-transition: all .2s;
    transition: all .2s;
    margin-left: 7px;
}

.user-nav__icon:hover {
    fill: var(--color-primary-dark)
}

.main-nav {
    position: relative
}

.main-nav__list {
    list-style-type: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 6rem
}

.main-nav__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 6rem
}

.main-nav__item.open .main-nav__mega-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.main-nav__link:link, .main-nav__link:visited {
    font-size: 1.8rem;
    font-weight: 500;
    text-transform: uppercase;
    text-decoration: none;
    color: #fff;
    -webkit-transition: all .2s;
    transition: all .2s;
    border-bottom: 1px solid transparent;
    padding-bottom: .1rem
}

@media only screen and (max-width: 50em) {
    .main-nav__link:link, .main-nav__link:visited {
        font-size: 1.2rem
    }
}

.main-nav__link:active, .main-nav__link.active {
    border-bottom: 3px solid rgba(255, 255, 255, 1);
}

.main-nav__link:hover {
    border-bottom: 3px solid rgba(255, 255, 255, .5);
}

.hero {
    height: 45rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

@media only screen and (max-width: 37.5em) {
    .hero {
        display: block;
        height: auto
    }
}

.hero-slideshow {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 66.66%;
    flex: 1 1 66.66%;
    background-color: var(--color-tertiary-light)
}

@media only screen and (max-width: 37.5em) {
    .hero-slideshow {
        height: 30rem
    }
}

.hero-right {
    display: flex;
    flex-direction: column;
    flex: 1 1 33.34%;
    border-radius: 0 16px 6px 0;
    background-color: var(--color-tertiary-light);
}

.hero-search {
    display: flex;
    flex-direction: column;
}

.hero-banner {
    overflow: hidden;
    display: flex;
    flex: 1;
    /*color: white;*/
    /*font-size: 2.8rem;*/
    /*font-weight: 700;*/
    /*text-shadow: 0 0 5px #000;*/
    min-height: 180px;
}

.hero-banner p {
    display: flex;
    flex: 1;
    padding: 0;
}

.hero-banner a {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: center;
    background: white url("https://www.mopedsport.nl/content/63975/pa%20bij%20bromfietsen.jpg") 50% 50% no-repeat;
    background-size: 100% auto;
    padding: 0 !important;
}

.hero-banner * {
    text-decoration: none;
}

@media only screen and (max-width: 37.5em) {
    .hero-right {
        border-radius: 0
    }
}

.hero-search__heading {
    text-align: center;
    width: 100%;
    background-color: var(--color-secondary);
    padding: 2rem 1rem 2.5rem 1rem;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 75%, 50% 100%, 0 75%);
    clip-path: polygon(0 0, 100% 0, 100% 75%, 50% 100%, 0 75%);
    border-radius: 0 6px 0 0
}

.hero-search__heading h2 {
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 3rem;
    color: #fff
}

.hero-search__content {
    font-size: 1.4rem;
    font-weight: 400;
    width: 100%;
    padding: 2rem
}

.hero-search__btn {
    margin-top: 2rem
}

.hero-subpage {
    height: 17.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #fff;
    position: relative
}

.hero-subpage .hero-slideshow-caption {
    width: 50rem;
    right: -1rem;
    left: auto;
    bottom: 5rem
}

.hero-subpage .crossfade-nav {
    position: absolute;
    left: auto;
    right: 1rem;
    bottom: 1rem
}

.has-shadow {
    -webkit-box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.05);
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.05)
}

.breadcrumbs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 3rem;
    line-height: 2rem;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 1.6rem;
    margin-top: 2rem;
    padding-left: 2rem;
    overflow: hidden
}

.breadcrumbs__icon {
    width: 2.2rem;
    height: 2.2rem;
    fill: var(--color-primary)
}

.breadcrumbs__icon:hover {
    fill: var(--color-primary-dark)
}

.breadcrumbs a:link, .breadcrumbs a:visited {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    color: var(--color-primary);
    text-decoration: none;
    -webkit-transition: all .2s linear;
    transition: all .2s linear;
    white-space: nowrap
}

.breadcrumbs a:hover, .breadcrumbs a:active {
    text-decoration: underline
}

.breadcrumbs-active {
    white-space: nowrap;
    overflow: hidden
}

.content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 3rem 2rem;
    position: relative
}

@media only screen and (max-width: 50em) {
    .content {
        display: block;
        padding-bottom: 0
    }
}

.content__sidebar {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 28rem;
    flex: 0 0 28rem;
    margin-top: -1rem
}

.content__sidebar h4 {
    margin-top: 1rem;
    margin-bottom: 1rem
}

.content__main {
    width: 100%;
}

.content .filters__button {
    margin-bottom: 2rem
}

@media only screen and (min-width: 50em) {
    .content .filters__button {
        display: none
    }
}

@media only screen and (max-width: 50em) {
    .content .filters {
        display: none
    }
}

#filterblock {
    padding: 1rem 2rem 2rem 2rem;
    border-radius: 6px;
    background-color: var(--color-tertiary-light);
    margin-bottom: 3rem;
    margin-top: 1rem
}

@media only screen and (min-width: 50em) {
    #filterblock {
        background-color: #fff;
        padding: 2rem 2rem 2rem 1rem;
        margin-bottom: 0;
        margin-top: -3rem
    }
}

.btn-large {
    text-decoration: none;
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    padding: 1.5rem 3rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: var(--color-primary-light);
    border: none;
    border-radius: 6px;
    cursor: pointer;
    -webkit-transition: all .2s;
    transition: all .2s;
    text-decoration: none;
}

.btn-large:hover {
    background-color: var(--color-primary-dark);
    -webkit-box-shadow: 0 1rem 2rem rgba(20, 20, 20, 0.15);
    box-shadow: 0 1rem 2rem rgba(20, 20, 20, 0.15)
}

.btn-large:focus {
    outline: none
}

.btn-large__icon {
    height: 2rem;
    width: 2rem;
    margin-right: 1rem;
    fill: #fff
}

.btn-small {
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    padding: 1rem 2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: var(--color-primary);
    border: none;
    border-radius: 6px;
    cursor: pointer;
    -webkit-transition: all .2s;
    transition: all .2s
}

.btn-small:hover {
    background-color: var(--color-primary-dark);
    -webkit-box-shadow: 0 1rem 2rem rgba(20, 20, 20, 0.15);
    box-shadow: 0 1rem 2rem rgba(20, 20, 20, 0.15)
}

.btn-small:focus {
    outline: none
}

.btn-small__icon {
    height: 2rem;
    width: 2rem;
    margin-right: 1rem;
    fill: #fff
}

.btn-secondary {
    background: var(--color-secondary)
}

.btn-secondary:hover {
    background-color: var(--color-secondary-light);
    -webkit-box-shadow: 0 1rem 2rem rgba(20, 20, 20, 0.15);
    box-shadow: 0 1rem 2rem rgba(20, 20, 20, 0.15)
}

.home-text-section__text-block a, .home-text-section__text-block a *, .btn-text:link, .btn-text:visited {
    color: var(--color-primary);
    text-decoration: none;
    display: inline-block;
    font-size: 1.6rem !important;
    -webkit-transition: all .2s;
    transition: all .2s;
    font-style: normal !important;
}

.home-text-section__text-block a:hover, .btn-text:hover, .btn-text:active {
    text-decoration: underline
}

.home-text-section__text-block a::before, .btn-text::before {
    content: "";
    display: inline-block;
    height: 1.6rem;
    width: 1.6rem;
    margin-right: .5rem;
    color: currentColor;
    background-image: url(../img/svg/chevron-right.svg);
    background-size: cover;
    background-position: center 3px
}

.icon-back::before {
    background-image: url(../img/svg/chevron-left.svg);
    background-size: cover
}

.icon-print::before {
    height: 1.6rem;
    width: 1.6rem;
    margin-right: 1rem;
    background-image: url(../img/svg/print.svg);
    background-size: 130%;
    background-position: center 0
}

.btn-text-small:link, .btn-text-small:visited, .btn-text-small:hover, .btn-text-small:active {
    font-size: 1.4rem
}

.btn-text-smallest:link, .btn-text-smallest:visited, .btn-text-smallest:hover, .btn-text-smallest:active {
    font-size: 1.2rem
}

.btn-text-small::before, .btn-text-smallest::before {
    background: none;
    margin: 0;
    width: auto
}

.home-category__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.home-category__block {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16rem;
    flex: 0 0 16rem;
    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;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 3rem
}

@media only screen and (max-width: 37.5em) {
    .home-category__block {
        /*margin-bottom: 1rem*/
    }
}

.home-category__block__image-box {
    height: 13rem;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

@media only screen and (max-width: 37.5em) {
    .home-category__block__image-box {
        height: 11rem
    }
}

.home-category__block:not(:last-child) {
    margin-right: 3rem
}

.home-category img {
    max-height: 13rem;
    max-width: 100%;
}

@media only screen and (max-width: 37.5em) {
    .home-category img {
        max-height: 11rem
    }
}

.home-new {
    margin-top: -3rem;
    background: var(--color-tertiary-light);
    border-radius: 6px
}

.home-new__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.home-new .btn-large, .home-sale .btn-large {
    margin: 0 auto
}

.product-block {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16rem;
    flex: 0 0 16rem;
    margin-bottom: 3rem;
    margin-right: 3rem
}

@media only screen and (max-width: 37.5em) {
    .product-block {
        margin-bottom: 1rem
    }
}

.product-block__photo {
    background: #fff;
    height: 16rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 6px
}

@media only screen and (max-width: 37.5em) {
    .product-block__photo {
        height: 14rem
    }
}

.product-block__photo img {
    max-height: 100%;
    max-width: 100%
}

.product-block__info {
    padding: 2rem 0;
    position: relative;
    width: 190px;
}

@media only screen and (max-width: 37.5em) {
    .product-block__info {
        padding-top: 1rem;
        width: 100%;
    }
}

.product-block__name h4 {
    display: block;
    font-size: 1.4rem;
    line-height: 2.1rem;
    font-weight: 500;
    color: var(--color-grey-dark-1);
    max-width: 95%;
    text-overflow: ellipsis;
    overflow: hidden
}

.product-block .fixed-height {
    display: block;
    height: 10.3rem;
    overflow: hidden;
}

@media only screen and (max-width: 37.5em) {
    .product-block .fixed-height {
        height: auto;
    }
    .product-block__name h4 {
        width: auto;
    }
}

.product-block__number {
    display: block;
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--color-grey-dark-4)
}

.product-block__price {
    display: block;
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--color-grey-dark-1);
}

.product-block__price {
    white-space: nowrap;
}

.product-block__price.offer {
    font-size: 1.8rem;
    font-weight: 500;
    color: red;
    white-space: normal;
}

.product-block__price.offer span {
    white-space: nowrap;
}

.product-block__price.offer span:first-child {
    font-size: 1.6rem;
    font-weight: normal;
    color: var(--color-grey-dark-2);
    text-decoration: line-through;
}

.product-block__info .product-block__price {
    height: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.product-block__info .price-stock {
    display: flex;
    flex-direction: row;
    justify-content: start;
}

.product-block__info .price-stock .product-block__price {
    margin: -4px 4px 0 0;
}

.product-block__info .product-block__price.offer span:first-child {
    font-size: 1.4rem;
    display: block;
}

.product-block__btn {
    padding: .5rem 1.5rem;
    background: var(--color-primary-light);
    border: none;
    border-radius: 6px;
    /*position: absolute;*/
    right: 0;
    bottom: 1.5rem;
    cursor: pointer;
    -webkit-transition: all .2s;
    transition: all .2s
}

.product-block__btn:hover {
    background: var(--color-primary-dark);
    -webkit-box-shadow: 0 1rem 2rem rgba(20, 20, 20, 0.15);
    box-shadow: 0 1rem 2rem rgba(20, 20, 20, 0.15)
}

.product-block__btn:focus {
    outline: none
}

.product-block__btn.active {
    background-color: var(--color-secondary);
}

.product-block__btn__icon {
    height: 2rem;
    width: 2rem;
    fill: #fff
}

.center {
    margin: auto;
    text-align: center
}

.margintop {
    margin-top: 3rem
}

.fullwidth {
    width: 100%
}

.home-sale {
    padding: 3rem
}

.home-sale__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.home-text-section {
    background: var(--color-tertiary-light);
    border-radius: 6px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

@media only screen and (max-width: 37.5em) {
    .home-text-section {
        display: block
    }
}

.home-text-section__text-block {
    width: 33.33%
}

@media only screen and (max-width: 68.75em) {
    .home-text-section__text-block {
        width: 100%;
        margin-bottom: 3rem
    }

    .home-text-section__text-block h3 {
        margin-bottom: 1rem
    }
}

.home-text-section__text-block:not(:last-child) {
    margin-right: 4rem
}

.brands h3 {
    margin-bottom: 0;
}

.brands__container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.brands__icon-box {
    display: flex;
    width: 20rem;
    min-height: 15rem;
    justify-content: center;
    align-items: center;
}

.brands__icon-box img {
    width: 120px;
    display: block;
}

@media only screen and (max-width: 37.5em) {
    .brands__icon-box {
        width: 13rem;
        height: 8rem
    }
    .brands__icon-box img {
        width: 80px;
        display: block;
    }
}

footer {
    margin-top: 10rem
}

@media only screen and (max-width: 50em) {
    footer {
        margin-top: 5rem
    }
}

footer h5 {
    color: #fff
}

.footer-top {
    font-size: 1.4rem;
    color: #fff;
    width: 100%;
    background-color: var(--color-primary)
}

.footer-top .container {
    max-width: 120rem;
    margin: auto;
    padding: 3rem
}

.footer-top__columns {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    padding-right: 5rem
}

.footer-top__columns:nth-child(4) {
    padding-right: 0
}

@media only screen and (max-width: 50em) {
    .footer-top__columns {
        margin-bottom: 4rem
    }

    .footer-top__columns:nth-child(1) {
        -webkit-box-flex: 0;
        -ms-flex: 0 1 50%;
        flex: 0 1 50%
    }

    .footer-top__columns:nth-child(2) {
        -webkit-box-flex: 0;
        -ms-flex: 0 1 50%;
        flex: 0 1 50%
    }

    .footer-top__columns:nth-child(3) {
        -webkit-box-flex: 0;
        -ms-flex: 0 1 50%;
        flex: 0 1 50%
    }

    .footer-top__columns:nth-child(4) {
        -webkit-box-flex: 0;
        -ms-flex: 0 1 50%;
        flex: 0 1 50%
    }
}

@media only screen and (max-width: 50em) {
    .footer-top__columns {
        padding-right: 1rem
    }
}

.footer-top a.text-link:link, .footer-top a.text-link:visited {
    text-decoration: none;
    display: inline-block;
    color: white;
    -webkit-transition: all .2s linear;
    transition: all .2s linear
}

.footer-top a.text-link:hover, .footer-top a.text-link:active {
    text-decoration: underline
}

.wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: top;
    -ms-flex-align: top;
    align-items: top;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

@media only screen and (max-width: 37.5em) {
    .wrap {
        display: block
    }
}

.one {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 200px;
    flex: 0 1 200px
}

.two {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.three {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 200px;
    flex: 0 1 200px;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end
}

.four {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%
}

.list {
    list-style-type: none
}

.footer-top__columns a:link, .footer-top__columns a:visited, .list__item a:link, .list__item a:visited {
    display: inline-block;
    text-decoration: none;
    color: white;
    -webkit-transition: all .2s linear;
    transition: all .2s linear
}

.footer-top__columns a:hover, .footer-top__columns a:active, .list__item:hover a, .list__item:active a {
    text-decoration: underline
}

.footer-bottom {
    background-color: #fff;
    width: 100%
}

.payment-logos {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 1rem 3rem
}

.payment-logos__icon {
    margin: 0 2rem
}

.payment-logos__icon-ideal {
    width: 4rem;
    height: 5rem
}

.payment-logos__icon-mastercard {
    width: 4rem;
    height: 5rem
}

.payment-logos__icon-visa {
    width: 6rem;
    height: 5rem
}

.payment-logos__icon-paypal {
    width: 8rem;
    height: 5rem
}

.footer-newsletter {
    color: var(--color-grey-dark-2);
    font-size: 1.4rem
}

.footer-newsletter__input {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    border: none;
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 6px;
    width: 100%;
    -webkit-transition: all .2s;
    transition: all .2s;
    display: block;
    border: 1px solid var(--color-primary)
}

.footer-newsletter__input:focus, .footer-newsletter__input:hover {
    outline: none;
    border: 1px solid var(--color-grey-dark-2);
    -webkit-box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.15);
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.15)
}

.footer-newsletter__input::-webkit-input-placeholder {
    font-weight: 100;
    color: var(--color-grey-light-4)
}

.footer-newsletter__button {
    border: none
}

.footer-newsletter__button:focus {
    outline: none
}

.content {
    font-size: 1.4rem
}

.content .list {
    list-style-type: disc;
    padding-left: 2rem;
    padding-bottom: 3rem
}

.article-page {
    display: block;
    width: 75%;
    margin: auto
}

@media only screen and (max-width: 37.5em) {
    .article-page {
        width: 100%
    }
}

.products-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    align-items: stretch;
}

.products-container .product-block {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 18rem;
    flex: 0 0 18rem;
    margin-bottom: 3rem;
    margin-right: 3rem
}

.product-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    padding-top: 1rem;
    padding-bottom: 1rem
}

.product-row__photo {
    width: 19rem;
    height: 12rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

@media only screen and (max-width: 37.5em) {
    .product-row__photo {
        width: 10rem
    }
}

.product-row__photo img {
    max-width: 100%;
    max-height: 100%
}

.product-row__name-number {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding-left: 1rem;
    position: relative
}

@media only screen and (max-width: 50em) {
    .product-row__name-number {
        -webkit-box-flex: 1;
        -ms-flex: auto;
        flex: auto
    }
}

.stock-icon {
    font-size: 240%;
    user-select: none
}

.product-row .stock-icon {
    position: absolute;
    right: 0;
    top: -2px
}

.product-row .stock-icon.out-of-stock {
    top: 0
}

@media only screen and (max-width: 37.5em) {
    .product-row .stock-icon {
        right: -.5rem
    }
}

.product-row__price {
    padding-left: 1rem;
}

.product-row__button-box {
    /*width: 10rem;*/
    /*padding-left: 1rem;*/
    /*position: relative;*/
}

.product-row__button-box .product-block__btn {
    /*position: absolute;*/
    /*bottom: auto;*/
    /*right: .5rem*/
}

.product-row:not(:last-child) {
    border-bottom: 1px solid var(--color-grey-light-3)
}

.in-stock {
    color: var(--color-secondary)
}

.out-of-stock {
    color: red
}

.low-stock {
    color: orange
}

.product-view-options {
    font-size: 1.4rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-bottom: 2rem;
    margin-bottom: 3rem;
    border-bottom: 1px solid var(--color-grey-light-4)
}

.product-view-options__sort {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.product-view-options__results {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1
}

@media only screen and (max-width: 37.5em) {
    .product-view-options__results {
        display: none
    }
}

.product-view-options__style {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.product-view-options__style.js-customer {
    margin-top: 1rem;
}

.product-view-options__style a {
    margin-left: .8rem;
    padding: .6rem;
    text-decoration: none
}

.product-view-options__style a svg {
    fill: var(--color-grey-light-4)
}

.product-view-options__style a.active {
    border: 1px solid var(--color-grey-light-4);
    fill: var(--color-primary);
    border-radius: 6px
}

.product-view-options__style a.active svg {
    fill: var(--color-primary)
}

.product-view-options__style__icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 2rem;
    height: 2rem;
    fill: var(--color-primary)
}

.product-view-options__style__icon:hover {
    fill: var(--color-primary-dark)
}

.product-detail {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-bottom: 6rem;
    border-bottom: 1px solid var(--color-grey-light-4)
}

@media only screen and (max-width: 37.5em) {
    .product-detail {
        display: block
    }
}

.product-detail__photo-box {
    width: 50%
}

@media only screen and (max-width: 37.5em) {
    .product-detail__photo-box {
        width: 100%
    }
}

.product-detail__photo {
    max-width: 100%;
    max-height: 100%
}

.product-detail__info {
    width: 50%;
    margin-left: 3rem;
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

@media only screen and (max-width: 37.5em) {
    .product-detail__info {
        width: 100%;
        margin-top: 3rem;
        margin-left: 0
    }
}

.product-detail .stock-icon-price-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 3rem
}

.product-detail .stock-icon {
    margin-right: 1rem
}

.product-detail .product-block__price {
    font-size: 2.2rem
}

.product-detail__buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.product-detail__addcart {
    padding-left: 1rem;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1
}

.product-detail__addcart .btn-small {
    width: 100%
}

.product-detail__addcart.active button {
    background-color: var(--color-secondary);
}

input[type=number] {
    font-family: inherit;
    font-size: inherit;
    font-size: 1.4rem;
    color: var(--color-grey-dark-2);
    background-color: white;
    border-radius: 6px;
    border: 1px solid var(--color-grey-light-4);
    padding: .5rem .5rem .5rem 2rem;
    height: 4rem;
    text-align: right
}

input[type=number]:focus {
    outline: 0
}

input:readonly {
    text-align: center;
    margin: 10px;
    padding: 5px;
    color: Green;
    border: 5px solid red
}

input[type="text"][disabled] {
    color: red
}

.content .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    margin-bottom: 10rem;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start
}

@media only screen and (max-width: 37.5em) {
    .content .container {
        display: block
    }
}

.content .container__box {
    border-radius: 6px;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1
}

.content .container .nopadding {
    padding: 0
}

.content .container .container__box.grey {
    background-color: var(--color-tertiary-light);
    padding: 3rem
}

.content .container .container__box.white {
    background-color: #fff;
    padding: 0 3rem
}

@media only screen and (max-width: 37.5em) {
    .content .container .container__box.white {
        padding: 0
    }
}

.content .container .container__box.white-w-border {
    background-color: #fff;
    border: 1px solid var(--color-grey-light-3);
    padding: 3rem
}

.content .container .map {
    width: 100%;
    height: 40rem;
    border: 0;
    margin-bottom: 3rem
}

@media only screen and (max-width: 37.5em) {
    .content .container .map {
        margin-top: 5rem
    }
}

.content .container .checkbox-label {
    font-size: 1.2rem;
    color: var(--color-grey-dark-2)
}

.content .container .checkmark {
    margin-top: 2px
}

.content .container label {
    font-size: 1.4rem;
    font-family: inherit;
    font-weight: 300;
    color: var(--color-grey-dark-1)
}

.content .container input[type=text], .content .container input[type=password], .content .container input[type=tel], .content .container input[type=email], .content .container input[type=url], .content textarea, .hero-search input {
    font-size: 1.4rem;
    width: 100%;
    padding: 1rem;
    margin: .5rem 0 1.5rem 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 6px;
    border: 1px solid var(--color-grey-light-4);
    -webkit-transition: all .2s;
    transition: all .2s
}

.content .container input[type=tel] {
    width: 20rem;
    display: block
}

.content .container input.postcode {
    width: 10rem;
    display: block
}

.content .container input:focus, .content .container textarea:focus {
    outline: none;
    border: 1px solid var(--color-grey-dark-3);
    -webkit-box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.05);
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.05);
    -webkit-transition: all .2s;
    transition: all .2s
}

.content .container input:hover, .content .container textarea:hover {
    border: 1px solid var(--color-grey-dark-3)
}

.content .container textarea {
    font-size: 1.4rem;
    width: 100%;
    padding: 1rem;
    margin: .5rem 0 1.5rem 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 6px;
    border: 1px solid var(--color-grey-light-4);
    -webkit-transition: all .2s;
    transition: all .2s
}

.content .container ::-webkit-input-placeholder {
    color: var(--color-grey-light-4)
}

.content .container .submit-and-forgotpassword-box {
    margin-top: 2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.content .container .submit-and-forgotpassword-box .btn-large {
    -webkit-box-flex: 0;
    -ms-flex: 0;
    flex: 0;
    margin-right: auto
}

.login .container__box:last-child {
    margin-left: 3rem
}

@media only screen and (max-width: 37.5em) {
    .login .container__box:last-child {
        margin-left: 0;
        margin-top: 3rem
    }
}

form.myaccount {
    margin-top: 1rem
}

form.contactform {
    margin-top: 1rem;
    width: 85%
}

@media only screen and (max-width: 50em) {
    form.contactform {
        width: 100%
    }
}

.badge {
    border-radius: 100%;
    background-color: var(--color-primary);
    width: 2rem;
    height: 2rem;
    display: inline-block;
    line-height: 2.1rem;
    margin-left: .5rem;
    text-align: center;
    color: #fff;
    font-size: 1rem
}

.account-box {
    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-flex: 1;
    -ms-flex: 1 1 33.34%;
    flex: 1 1 33.34%;
    background: var(--color-tertiary-light);
    border-radius: 16px 16px 6px 6px;
    margin-top: 1rem;
    margin-right: 3rem
}

@media only screen and (max-width: 50em) {
    .account-box {
        margin-right: 0;
        margin-bottom: 3rem
    }
}

.account-box__heading {
    text-align: left;
    width: 100%;
    background: var(--color-secondary);
    padding: 2rem 1rem 2rem 2rem;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 75%, 50% 100%, 0 75%);
    clip-path: polygon(0 0, 100% 0, 100% 75%, 50% 100%, 0 75%);
    border-radius: 6px 6px 0 0
}

@media only screen and (max-width: 50em) {
    .account-box__heading {
        padding: 1rem .5rem 1rem 2rem
    }
}

.account-box__heading h2 {
    font-size: 2rem;
    font-weight: 700;
    line-height: 3rem;
    color: #fff
}

.account-box__content {
    font-size: 1.4rem;
    padding: 3rem;
    position: relative
}

@media only screen and (max-width: 50em) {
    .account-box__content {
        padding: 1rem 2rem
    }
}

.account-box__list {
    list-style-type: none
}

.account-box__item {
    margin-bottom: 1.4rem
}

.account-box__link:link, .account-box__link:visited {
    font-size: 1.4rem;
    text-decoration: none;
    color: var(--color-grey-dark-2);
    -webkit-transition: all .2s;
    transition: all .2s
}

.account-box__link:hover, .account-box__link:active {
    color: var(--color-primary)
}

.account-box .btn-text.logout {
    margin-top: 2rem;
    font-size: 1.2rem
}

@media only screen and (max-width: 50em) {
    .account-box .btn-text.logout {
        position: absolute;
        top: -1rem;
        right: 3rem
    }
}

.shoppingcart-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    color: var(--color-grey-dark-1);
    font-size: 1.4rem;
    font-weight: 500;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--color-grey-light-4)
}

.shoppingcart-header__quantity {
    width: 8rem;
    text-align: right
}

@media only screen and (max-width: 37.5em) {
    .shoppingcart-header__quantity {
        width: 6rem
    }
}

.shoppingcart-header__price {
    width: 8rem;
    text-align: right
}

@media only screen and (max-width: 37.5em) {
    .shoppingcart-header__price {
        width: 6rem
    }
}

.shoppingcart-header__subtotal {
    width: 10rem;
    text-align: right;
    padding-right: 1rem
}

@media only screen and (max-width: 37.5em) {
    .shoppingcart-header__subtotal {
        width: 8rem
    }
}

.shoppingcart-footer-subtotal {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    color: var(--color-grey-dark-2);
    font-size: 1.4rem;
    padding-right: 1rem;
    height: 3rem
}

.shoppingcart-footer-subtotal__label {
    width: 13rem
}

.shoppingcart-footer-subtotal__value {
    width: 9rem;
    text-align: right;
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--color-grey-dark-1)
}

.shoppingcart-footer-total {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    color: var(--color-grey-dark-2);
    font-size: 1.4rem;
    padding: 2rem 1rem;
    margin-top: 1rem;
    background-color: var(--color-tertiary-light);
    border-radius: 6px
}

.shoppingcart-footer-total__label {
    width: 22rem;
    color: var(--color-grey-dark-1);
    font-weight: 500;
    font-size: 1.6rem;
    text-align: right;
}

.shoppingcart-footer-total__value {
    width: 9rem;
    text-align: right;
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--color-grey-dark-1)
}

.shoppingcart-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    padding-top: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--color-grey-light-3);
    align-items: center;
}

.shoppingcart-row__photo {
    width: 13rem;
    height: 8rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

@media only screen and (max-width: 37.5em) {
    .shoppingcart-row__photo {
        width: 10rem
    }
}

.shoppingcart-row__photo img {
    max-width: 100%;
    max-height: 100%
}

.shoppingcart-row__name-number {
    font-size: 1.2rem;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding-left: 1rem
}

@media only screen and (max-width: 50em) {
    .shoppingcart-row__name-number {
        padding-left: 0
    }
}

.shoppingcart-row__quantity {
    position: relative;
    text-align: right;
    width: 9rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end
}

@media only screen and (max-width: 37.5em) {
    .shoppingcart-row__quantity {
        width: 6rem
    }
}

.shoppingcart-row__price {
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--color-grey-dark-1);
    text-align: right;
    width: 8rem;
    padding-left: 1rem
}

@media only screen and (max-width: 37.5em) {
    .shoppingcart-row__price {
        width: 6rem
    }
}

.shoppingcart-row__subtotal {
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--color-grey-dark-1);
    text-align: right;
    padding-right: 1rem;
    width: 10rem;
    padding-left: 1rem
}

@media only screen and (max-width: 37.5em) {
    .shoppingcart-row__subtotal {
        width: 8rem
    }
}

.product-block input[type=number],
.product-row input[type=number],
.shoppingcart-row input[type=number] {
    padding: 1rem 0 1rem 1rem;
    height: 3rem;
    width: 5rem
}

.icon-trash {
    position: absolute;
    top: 4px;
    right: 5rem;
    width: 2rem;
    height: 2rem;
    fill: var(--color-primary)
}

.icon-trash:hover {
    fill: var(--color-primary-dark);
    cursor: pointer
}

.shoppingcart-buttons {
    margin-top: 5rem;
    -ms-flex-line-pack: justify;
    align-content: space-between;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.shoppingcart-buttons a {
    margin-right: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-decoration: none;
    font-size: 1.4rem;
    color: var(--color-primary)
}

.team-page {
    display: block
}

.team-page__introduction {
    width: 75%;
    margin: auto;
    margin-bottom: 3rem
}

@media only screen and (max-width: 37.5em) {
    .team-page__introduction {
        width: 100%;
        margin-bottom: 1rem
    }
}

.team-page__members {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 3rem
}

.team-page__photos {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start
}

.team-page__photos img {
    width: 45.5%;
    display: block;
    margin-right: 3rem;
    margin-bottom: 3rem;
    border-radius: 6px
}

@media only screen and (max-width: 37.5em) {
    .team-page__photos img {
        width: 100%
    }
}

.team-member {
    width: 25rem;
    margin-right: 3rem;
    margin-bottom: 3rem
}

@media only screen and (max-width: 37.5em) {
    .team-member {
        width: 18rem
    }
}

.team-member__photo-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    border-radius: 6px;
    overflow: hidden
}

.team-member__photo {
    width: 100%;
    height: auto;
    display: block
}

.team-member__info {
    padding-top: 1rem
}

.team-member__info__name {
    display: block;
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--color-grey-dark-1)
}

.team-member__info__jobtitle {
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--color-grey-dark-2)
}

.pagination {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 1.2rem;
    width: 100%;
    padding: 3rem;
    margin-top: 3rem;
    border-top: 1px solid var(--color-grey-light-4)
}

.pagination__icon {
    width: 2.5rem;
    height: 2.5rem;
    fill: var(--color-primary)
}

.pagination__icon:hover {
    fill: #fff
}

.pagination__icon-left {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg)
}

.pagination a {
    color: var(--color-primary);
    float: left;
    width: 3.4rem;
    height: 3.4rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-decoration: none;
    -webkit-transition: all .2s;
    transition: all .2s;
    border-radius: 6px;
    margin: 0 .5rem
}

.pagination a.active {
    color: var(--color-primary);
    border: 1px solid var(--color-grey-light-4)
}

.pagination a:hover:not(.active) {
    color: #fff;
    background-color: var(--color-primary);
    border: 1px solid var(--color-primary)
}

fieldset {
    border: 2px solid var(--color-grey-light-3);
    border: none;
    border-radius: 6px;
    background-color: var(--color-tertiary-light);
    padding: 1rem 3rem 2rem 3rem;
    margin-bottom: 3rem
}

legend {
    margin-left: -2rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--color-grey-dark-3);
    color: #fff;
    background-color: var(--color-secondary);
    padding: .5rem 2rem;
    border-radius: 6px
}

.modal {
    z-index: 100;
    display: none;
    padding-top: 12rem;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: none;
    background-color: rgba(0, 0, 0, 0.5);
    -webkit-transition: all 1s;
    transition: all 1s
}

.modal-content {
    margin: auto;
    background-color: #fff;
    position: relative;
    padding: 0;
    outline: 0;
    width: 50%;
    border-radius: 16px 16px 6px 6px
}

@media only screen and (max-width: 37.5em) {
    .modal-content {
        width: 80%
    }
}

.modal-header {
    background-color: var(--color-tertiary-light);
    padding: 2rem 3rem;
    border-radius: 6px 6px 0 0;
    color: #fff
}

.modal-header h1 {
    font-weight: 500;
    color: var(--color-grey-dark-1)
}

.modal-body {
    padding: 3rem
}

.modal-btn-container {
    margin-top: 2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-line-pack: justify;
    justify-content: space-between;
}

table.previous-orders {
    width: 100%;
    font-size: 1.4rem;
    color: var(--color-grey-dark-2);
    border-spacing: 0;
    border-collapse: collapse
}

table.previous-orders th {
    text-align: left;
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--color-grey-dark-1);
    padding: 1rem;
    border-bottom: 1px solid var(--color-grey-light-4);
    white-space: nowrap
}

table.previous-orders td {
    padding: 1rem;
    border-bottom: 1px solid var(--color-grey-light-3);
    white-space: nowrap
}

table.previous-orders .align-right {
    text-align: right
}

@media only screen and (max-width: 37.5em) {
    .remove-on-mobile {
        display: none
    }
}

.custom-select {
    position: relative;
    margin: 4px 0
}

.custom-select select {
    display: none
}

.custom-select .select-selected {
    background-color: white;
    border-radius: 6px;
    border: 1px solid var(--color-grey-dark-2)
}

.checkbox-label.parent .fold:after,
.custom-select .select-selected:after {
    position: absolute;
    content: "";
    top: 18px;
    right: 10px;
    width: 0;
    height: 0;
    border: 6px solid transparent;
    border-color: var(--color-grey-light-4) transparent transparent transparent
}

.checkbox-label.parent .fold:after {
    border: solid 10px transparent;
    border-color: var(--color-primary) transparent transparent transparent;
}

.checkbox-label.parent.active .fold:after,
.custom-select .select-selected.select-arrow-active:after {
    border-color: transparent transparent var(--color-grey-light-4) transparent;
    top: 11px
}

.checkbox-label.parent.active .fold:after {
    border-color: transparent transparent var(--color-primary) transparent;
}

.checkbox-label.parent .fold:after {
    top: 7px;
}

.checkbox-label.parent.active .fold:after {
    top: 0;
}

.custom-select .select-items div, .custom-select .select-selected {
    color: var(--color-grey-dark-2);
    padding: .5rem 3rem .5rem 1rem;
    padding: .7rem 1rem;
    border: 1px solid var(--color-grey-light-4);
    cursor: pointer
}

.custom-select .select-items div, .custom-select .select-selected:first-child {
    border-color: transparent
}

.custom-select .select-items {
    position: absolute;
    background: var(--color-tertiary);
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
    border: 0;
    white-space: nowrap;
}

.custom-select .select-hide {
    display: none
}

.custom-select .select-items div:hover, .custom-select .same-as-selected {
    background-color: var(--color-grey-light-4);
    background: var(--color-tertiary-dark)
}

.custom-select-form {
    width: 50%;
    font-size: 1.4rem
}

.custom-select-form .select-items div, .custom-select-form .select-selected {
    padding: .5rem 3rem .5rem 1rem;
    padding: .7rem 1rem
}

.custom-select-small {
    position: relative;
    margin-left: 1rem;
    width: 50%
}

.custom-select-small .select-selected:after {
    top: 15px
}

.custom-select-small .select-selected.select-arrow-active:after {
    top: 8px
}

.custom-select-small .select-items div, .custom-select-small .select-selected {
    padding: .5rem 3rem .5rem 1rem
}

.product-view-options__sort .custom-select-small {
    width: 15rem
}

.product-view-options__results .custom-select-small {
    width: 7rem
}

.custom-select-language {
    width: 100%
}

.custom-select-language .select-selected {
    border: none
}

.main-nav__mega-menu {
    display: none;
    font-size: 1.2rem;
    font-weight: 400;
    text-transform: none;
    position: absolute;
    background-color: #fff;
    width: 100%;
    max-width: 120rem;
    top: 6rem;
    left: 0;
    z-index: 99;
    padding: 2rem 3rem;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-transition: all .2s;
    transition: all .2s
}

.main-nav__mega-menu__column {
    width: 20%;
    margin-bottom: 1rem;
    padding-right: 1rem
}

@media only screen and (max-width: 37.5em) {
    .main-nav__mega-menu__column {
        min-width: 50%;
        margin-bottom: 2rem
    }
}

.main-nav__mega-menu h4 {
    color: var(--color-primary);
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: .5rem
}

.main-nav__mega-menu a {
    color: var(--color-grey-dark-2);
    text-decoration: none;
    font-size: 1.6rem
}

.main-nav__mega-menu a:hover {
    color: var(--color-primary);
    text-decoration: underline
}

.custom-radio-buttons {
    margin-bottom: 3rem
}

.custom-radio-buttons .container {
    display: block;
    position: relative;
    padding-left: 2.5rem;
    margin-bottom: .2rem;
    cursor: pointer;
    font-size: 1.4rem;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.custom-radio-buttons .container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0
}

.custom-radio-buttons .dot {
    position: absolute;
    top: 2px;
    left: 0;
    height: 1.6rem;
    width: 1.6rem;
    border: 1px solid var(--color-grey-light-4);
    border-radius: 50%
}

.custom-radio-buttons .container input:checked ~ .dot {
    background-color: var(--color-primary);
    border: 1px solid var(--color-primary)
}

.custom-radio-buttons .dot:after {
    content: "";
    position: absolute;
    display: none
}

.custom-radio-buttons .container input:checked ~ .dot:after {
    display: block
}

.custom-radio-buttons .container .dot:after {
    top: 4px;
    left: 4px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: white
}

.checkbox-label {
    display: block;
    position: relative;
    padding-left: 2.5rem;
    margin-bottom: .2rem;
    cursor: pointer;
    font-size: 1.6rem;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.checkbox-label input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0
}

.checkmark {
    position: absolute;
    top: 2px;
    left: 0;
    height: 1.6rem;
    width: 1.6rem;
    border: 1px solid var(--color-grey-light-4);
    border-radius: 3px
}

.container input:checked ~ .checkmark {
    background-color: var(--color-primary);
    border: 1px solid var(--color-primary)
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none
}

.container input:checked ~ .checkmark:after {
    display: block
}

.container .checkmark:after {
    left: 5px;
    top: 1px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg)
}

.crossfade > figure {
    cursor: pointer;
    animation: slideshow 30s linear infinite 0s;
    backface-visibility: hidden;
    background-size: cover;
    background-position: center center;
    color: transparent;
    height: 100%;
    left: 0px;
    opacity: 0;
    position: absolute;
    top: 0px;
    width: 100%;
    z-index: 0;
}

@media only screen and (max-width: 37.5em) {
    .crossfade > figure {
        background-size: 100%;
        background-repeat: no-repeat
    }
}

.hero-slideshow-caption {
    background-color: var(--color-secondary);
    border-radius: 6px;
    min-height: 1rem;
    position: absolute;
    left: -1rem;
    bottom: 6rem;
    /*padding: 2rem 2rem 1.5rem 3rem;*/
    padding: 1rem 1rem 0.25rem 1rem;
    max-width: 60%;
    text-decoration: none;
}

@media only screen and (max-width: 37.5em) {
    .hero-slideshow-caption {
        /*padding: 1rem 1rem 1rem 2.5rem;*/
        max-width: 75%
    }
}

.hero-slideshow-caption span {
    color: #fff;
    font-size: 3rem;
    font-weight: 700
}

@media only screen and (max-width: 50em) {
    .hero-slideshow-caption span {
        font-size: 2.4rem
    }
}

@media only screen and (max-width: 37.5em) {
    .hero-slideshow-caption span {
        font-size: 2.2rem
    }
}

.crossfade-nav {
    position: absolute;
    left: 2rem;
    bottom: 1rem
}

.crossfade-nav__list {
    list-style-type: none;
    display: flex;
}

.crossfade-nav__item {
    padding: 0 .5rem;
}

.crossfade-nav__link {
    font-size: 2rem;
    font-weight: 500;
    text-transform: uppercase;
    text-decoration: none;
    color: #fff;
    animation: slideshow__nav 30s linear infinite 0s;
}

.w-100 {
    width: 100%
}

.checkbox-label.child {
    margin: 0 15px;
    background-color: var(--color-grey-light-1);
}

.checkbox-label.parent .fold {
    font-size: 15px;
    float: right;
    margin-left: 5px;
    opacity: .8;
    padding: 0 12px;
}

.loading {
    min-width: 100px;
    min-height: 100px;
    background: transparent url(../img/loader.gif) 50% 34px no-repeat;
    background-size: 32px 32px;
    opacity: .5;
}

.alert {
    background-color: lightyellow;
    -webkit-box-shadow: 0 1rem 2rem rgba(20, 20, 20, 0.15);
    box-shadow: 0 1rem 2rem rgba(20, 20, 20, 0.15);
    padding: 1em;
}

#img_preview {
    cursor: pointer;
}

#img_preview .modal-body {
    text-align: center;
}

#img_preview img {
    max-width: 100%;
    max-height: 666px;
}

#confirm_basket .product-detail__buttons {
    max-width: 50%;
}

.d-block {
    display: block;
}

.d-flex {
    display: flex;
}

.p-0 {
    padding: 0;
}

.py-0 {
    padding-top: 0;
    padding-bottom: 0;
}

@media print {
    .np, .breadcrumbs, .hero-subpage, .main-nav, .header, .hero, .content__sidebar, .shoppingcart-buttons, footer {
        display: none !important;
    }
}

.brands__slideshow {
    height: 150px;
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    transform: translate3d(0, 0, 0);
}

.brands__slideshow > div {
    width: 9000px;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    transform: translate3d(0, 0, 0);
    animation: moveSlideshow 60s linear infinite;
}

@keyframes moveSlideshow {
    100% {
        transform: translateX(-100%);
    }
}

.product-row input[type=number] {
    /*width: 60px;*/
    margin: 0 10px;
    /*padding: 0.1rem 0.2rem;*/
    height: 3.325rem;
}

.product-block input[type=number] {
    width: 50%;
    margin: 0 5px 0 0;
    height: 3.325rem;
}

.product-block .product-block__btn {

}

.no-products-container {
    margin: 3rem 3rem 6rem 3rem;
    text-align: center;
}

.xdebug-var-dump {
    font-size: 12pt;
}

.stock_subscribe {
    color: var(--color-grey-dark-4);
    text-decoration: none;
    align-content: center;
    justify-content: end;
    user-select: none;
}

.product-row .stock_subscribe {
    position: absolute;
    top: 35px;
    right: 0;
    width: 200px;
    text-align: right;
    display: flex;
}

#menuitem_1_outlet a {
    background-color: red;
    padding: 10px 20px;
    border-radius: 10px;
}

#menuitem_1_outlet a.main-nav__link:hover {
    border-bottom: 0;
    text-decoration: none;
    color: red;
    background-color: white;
}