body {
    font-family: 'Montserrat', 'Helvetica', 'Arial', sans-serif;
    margin-top: -1px;;
}

button {
    font-family: 'Montserrat', 'Helvetica', 'Arial', sans-serif;
}

*::selection {
    background-color: #009fa8;
    color: #fff;
}

/* Header Dektop */
.navi {
    position: sticky;
    position: -webkit-sticky;
    top: 0;
    padding-top: 3rem;
    padding-bottom: 2rem;
    border-width: 2px;
}

.flex {
    display: flex;
}

.flex-wrap {
    flex-wrap: wrap;
}

.items-center {
    align-items: center;
}

.justify-between {
    justify-content: space-between;
}

.logo a {
    display: block;
}

.logo svg {
    transition: all .3s ease;
    min-width: 200px;
    max-width: 200px;
}

.logo-icon {
    color: #000000;
    fill: currentColor;
}

.navi-links {
    flex: 1;
    align-self: flex-end;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-left: 2rem;
    position: relative;
    top: .5rem;
}

.navi-links a,
.navi-links button {
    background-color: inherit;
    display: inline-block;
    padding: 1rem 1.5rem;
    color: #000;
    font-weight: 500;
    font-size: 1.5rem;
    line-height: 1;
    transition: all .3s ease;
    letter-spacing: 0;
}

html[lang="fr"] .navi-links a,
html[lang="pt"] .navi-links a,
html[lang="fr"] .navi-links button,
html[lang="pt"] .navi-links button {
    font-size: 1.25rem;
    padding: 1rem 1.25rem;
}

.navi-links button {
    background-color: rgba(255, 255, 255, 0);
}

.navi-links a:hover,
.navi-links a.active,
.navi-links button:hover {
    background-color: #e7e7e7;
}

#language-select {
    position: relative;
    padding-right: 2.5rem;
}

.navi-links svg {
    color: #009fa8;
}

.navi-links .primary,
.navi-links .secondary {
    color: inherit;
    fill: currentColor;
}

#language-select svg {
    position: absolute;
    width: 2.5rem;
    top: calc(50% - 1.25rem);
    right: 0;
}

.language-dropdown {
    pointer-events: none;
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #fff;
    padding: .5rem 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .25);
    border-bottom: 2px solid #e7e7e7;
    transition: all .3s ease;
    transform-origin: center top;

    transform: perspective(100rem) translateY(-.25rem) rotateX(-10deg);
    opacity: 0;
    z-index: 996;
}

.language-dropdown a {
    text-transform: uppercase;
    padding: 0.75rem 1.25rem;
    transform: all .3s ease;
    background-color: #fff;
    display: block;
    text-align: right;
    font-size: 1rem;
}

.language-dropdown a:hover {
    background-color: #e7e7e7;
}

#language-select:hover > .language-dropdown {
    pointer-events: initial;
    display: block;
    opacity: 1;
    transform: perspective(100rem) translateY(0) rotateX(0);
}

@media screen and (max-width: 79.75em) {
    .navi-links a,
    .navi-links button {
        font-size: 1rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

.nav-mobile {
    display: none;
}

@media screen and (max-width: 61.75em) {
    .navi {
        display: none;
    }

    .nav-mobile {
        display: flex;
    }
}

/* Navigation Mobile */

.nav-mobile {
    border-bottom: 2px solid #e7e7e7;
    position: sticky;
    position: -webkit-sticky;
    justify-content: center;
    align-items: center;
    top: 0;
    width: 100%;
    z-index: 1000;
    background-color: #fff;
    height: 54px;
}

.nav-mobile .logo {
    display: block;
    padding: .9375rem 0 .75rem;
    line-height: 1;
}

.nav-mobile .logo svg {
    min-width: 120px;
    max-width: 120px;
}

@media screen and (min-width: 40em) {
    .nav-mobile .logo svg {
        /* min-width: 240px; */
    }
}

.offcanvas {
    transition: all .3s ease;
    transform: translateX(100%);
    position: fixed;
    top: 54px;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #e7e7e7;
    pointer-events: none;
    z-index: 1001;
}

body.nav-open .offcanvas {
    transform: translateX(0);
    pointer-events: initial;
}

.offcanvas-nav > div {
    padding: 0 .5rem;
}

.offcanvas-link {
    display: block;
    text-transform: uppercase;
    padding: 1rem .5rem;
    color: #000;
    border-bottom: 1px solid #ccc;
    font-weight: bold;
}

.offcanvas-nav .offcanvas-languages {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-transform: uppercase;
    font-weight: bold;
    padding: 1rem;
    cursor: pointer;
}

.offcanvas-nav .offcanvas-languages span {
    display: flex;
    align-items: center;
}

.offcanvas-nav .offcanvas-languages svg {
    transform-origin: center;
    min-width: 2rem;
    margin: -.5rem -0.5rem -.5rem 0;
}

.offcanvas-languages.is-open svg {
    transform: rotate(180deg);
}

.offcanvas-search-form {
    padding: .5rem;
    background-color: #ccc;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.offcanvas-search-form input {
    border: none;
    background-color: transparent;
    color: #000;
    box-shadow: none;
    padding: .5rem;
    padding-right: .5rem;
    margin: 0;
    font-weight: bold;
    font-size: 1rem;
}

.offcanvas-search-form input:focus {
    background-color: #e7e7e7;
}

.offcanvas-search-form button {
    background-color: transparent;
    padding: .25rem;
    line-height: 1;
}

.offcanvas-search-form svg {
    width: 1.5rem;
    color: #000;
}

.offcanvas-more {
    position: relative;
}

.offcanvas-more button {
    position: absolute;
    right: 0;
    top: calc(50% - 1.5rem);
    padding: .75rem;
    height: 3rem;
    width: 3rem;
    background-color: transparent;
    cursor: pointer;
}

.offcanvas-more button span {
    height: 2px;
    background-color: #000;
    position: absolute;
    top: calc(50% - 1px);
    left: 1rem;
    width: 1rem;
    transform-origin: center;
    transition: all .3s ease;
}

.offcanvas-more button span:nth-child(1) {
    transform: rotate(90deg);
}

.offcanvas-more button.is-open span:nth-child(1) {
    transform: rotate(0);
}

.offcanvas-more-items {
    display: none;
    background-color: #ccc;
}

.offcanvas-more-items .offcanvas-link {
    border-color: #fff;
    padding-left: 1rem;
}

#burger {
    position: absolute;
    right: 0;
    padding: .75rem;
    height: 3rem;
    width: 3rem;
    cursor: pointer;
}

#burger span {
    position: absolute;
    height: 3px;
    background-color: #009fa8;
    width: 1.5rem;
    transform-origin: center;
    transition: all .3s ease;
}

#burger span:nth-child(1) {
    top: .9375rem;
}

#burger span:nth-child(2),
#burger span:nth-child(3) {
    top: 1.40625rem;
}

#burger span:nth-child(4) {
    top: 1.90625rem;
}

body.nav-open #burger span:nth-child(1),
body.nav-open #burger span:nth-child(4) {
    top: 1.5rem;
    left: 50%;
    width: 0;
}

body.nav-open #burger span:nth-child(2) {
    transform: rotate(45deg);
}

body.nav-open #burger span:nth-child(3) {
    transform: rotate(-45deg);    
}

body.search-open,
body.nav-open {
    overflow: hidden;
}

body.search-open #search-layer {
    pointer-events: initial;
    opacity: 1;
}

#search-layer {
    position: relative;
    pointer-events: none;
    opacity: 0;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1100;
    transition: all .3s ease;
    background-color: rgba(0, 0, 0, .85);
}

#search-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    fill: currentColor;
    color: #fff;
    width: 3.5rem;
    padding: .5rem;
    cursor: pointer;
}

.search-form {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    margin-top: 10rem;
    padding: 2rem;
}

.search-form input {
    box-shadow: none;
    background-color: transparent;
    border: none;
    border-bottom: 2px solid #fff;
    margin-bottom: 0;
    padding: 1rem 0;
    font-size: 1.5rem;
    color: #fff;
    transition: all .3s ease;
    box-sizing: border-box;
}

.search-form input::placeholder { 
    color: #e7e7e7;
    opacity: 1;
}
  
.search-form input:-ms-input-placeholder {
    color: #e7e7e7;
}
  
.search-form input::-ms-input-placeholder {
    color: #e7e7e7;
}

.search-form input:focus {
    border-color: #009fa8;
    background-color: transparent;
}

#search {
    align-self: flex-end;
    position: relative;
    bottom: .375rem;
    padding: .5rem 1rem;
    font-size: 0;
}

#search:hover {
    background-color: inherit;
}

#search svg {
    height: 1.5rem;
    width: 1.5rem;
}

/* Header Mobile */

/* Premiumbanner */
.premiumbanner {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;

    min-height: 500px;

    margin-bottom: 5rem;
}


.premiumbanner-image {
    position: absolute;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;

    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.premiumbanner-pokemon {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    position: relative;

    min-height: 500px;

    margin-bottom: 5rem;
    background-color: ##f9da00;
}


.premiumbanner-pokemon-image {
    position: absolute;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;

    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}


.premiumbanner-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.premiumbanner h1 {
    margin: 0 0 1.5rem;

    font-family: 'BitterItalic', Helvetica, Roboto, Arial, sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 4.2rem;
    line-height: 4.4rem;
    color: #000000;

    text-transform: uppercase;
    text-align: center;
}

.premiumbanner p {
    font-family: 'BitterItalic', Helvetica, Roboto, Arial, sans-serif;
    font-size: 2.0rem;
    margin: 0 0 2rem;
    display: block;
    text-align: center;
    color: #000000 !important;
}

.premiumbanner-cta {
    border: none;
    outline: none;
    background-color: transparent;
    font-size: 1.5rem;
    text-align: center;
    font-weight: 500;

    color: #000000;
    border: 1px solid #000000;
    padding: 1rem 5rem;
    transition: all .3s ease;
}

.premiumbanner-cta:hover {
    background-color: #000000;
    color: #fff;
}

.premiumbanner-cta::after,
.home-teaser-cta::after {
    content: "»";
    margin-left: .5rem;
}

@media (max-width: 1580px) {
    .premiumbanner {
        min-height: 400px;
    }

    .premiumbanner h1 {
        font-size: 3.5rem;
        margin-bottom: 1rem;
    }

    .premiumbanner p {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .premiumbanner-cta {
        font-size: 1.25rem;
    }
}

@media (max-width: 1067px) {
    .premiumbanner {
        padding-top: calc(45% + 1rem);
    }

    .premiumbanner-image {
        bottom: auto;
        padding-bottom: 45%;
    }

    .premiumbanner h1 {
        font-size: 3rem;
        margin-bottom: 1rem;
    }

    .premiumbanner p {
        font-size: 1.125rem;
        max-width: 35rem;
    }

    .premiumbanner-cta {
        background-color: #000000;
        color: #fff;
    }
}

@media (max-width: 576px) {
    .premiumbanner {
        padding-top: calc(60% + 1rem);
        margin-bottom: 2rem;
    }

    .premiumbanner-image {
        padding-bottom: 60%;
    }

    .premiumbanner h1 {
        font-size: 2.2rem;
        line-height: 1.125;
    }

    .premiumbanner-cta {
        padding: .75rem 1rem;
        width: 100%;
    }
    .premiumbanner-pokemon {
        margin-bottom: 2rem;
        height: 100%;
    }
    
}

/* Home */
.row.home .container {
    margin-left: -0.9375rem;
    margin-right: -0.9375rem;
}

.uppercase {
    text-transform: uppercase;
}

.divider {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 500;
    color: #009fa8;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    white-space: nowrap;
}

.divider::before,
.divider::after {
    content: "";
    flex: 1;
	border-top: 2px solid #000;
}
.divider::before {
	margin-right: 2rem;
}
.divider::after {
	margin-left: 2rem;
}

@media screen and (max-width: 576px) {
    .divider {
        font-size: 1.25rem;
    }
    .divider::before {
        margin-right: 1rem;
    }
    .divider::after {
        margin-left: 1rem;
    }
}




.home-intro {
    margin-bottom: 3rem;
}

.home-claim {
    text-align: center;
    font-weight: 500;
    font-size: 3rem;
}

@media screen and (max-width: 576px) {
    .home-claim {
        font-size: 2rem;
        line-height: 1.25;
    }
}

.home p {
    font-size: 1.125rem;
    color: #333333;
}

.home-models {
    margin-bottom: 1rem;
    padding: 0 .5rem;
}

.home-models .watch-item {
    margin-left: -0.5rem;
    margin-right: -0.5rem;
    margin-bottom: .75rem;
}

.watch-item {
    border: 3px solid #009fa8;
    padding: 1rem 1rem .5rem;
}

@media screen and (max-width: 66.75rem) {
    .watch-item {
        margin-bottom: 1.875rem;
    }

    .filter-kachel-listing-li .watch-item {
        margin-bottom: 0;
    }
}

.watch-item h4 {
    text-align: center;
    font-size: 1rem;
    font-weight: 500;
    color: #009fa8;
    margin: 0 -.75rem;
    line-height: 1;
    white-space: nowrap;
}

@media screen and (max-width: 400px) {
    .watch-item h4 {
        font-size: 0.85rem;
    }
}

.watch-item-image {
    position: relative;
    display: block;
    max-width: 210px;
    margin: 1.5rem auto;
}

.watch-item-image img {
    transform: scale(.9);
    transition: all .3s ease;
}

.watch-item-image img:hover {
    transform: scale(1);
}

.watch-item-cta {
    font-weight: 500;
    display: none;
    justify-content: center;
    align-items: center;
    padding: .75rem 1rem;
    line-height: 1;
    border: 1px solid #009fa8;
    color: #009fa8;
    text-align: center;
    font-size: 1.125rem;
    transition: all .3s ease;
}

.watch-item-cta:hover {
    background-color: #009fa8;
    color: #fff;
}

.watch-item-cta::after {
    content: "»";
    margin-left: .25rem;
}

.home-teaser-row {
    display: flex;
    flex-wrap: wrap;
}

.home-teaser-column {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.home-teaser-wrapper {
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.home-teaser {
    display: block;
    overflow: hidden;
    margin-bottom: 1rem;
}

.home-teaser-image {
    display: block;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    
    padding-bottom: 56.822%;
    transition: transform .3s ease;
}

.home-teaser-image:hover {
    transform: scale(1.075);
}

.home-teaser--tall .home-teaser-image {
    padding-bottom: 136%;
}

.home-teaser--wide .home-teaser-image {
    padding-bottom: 27.7%;
}

.home-teaser-image.bottom-center {
    background-position: bottom center;
}

.home-teaser-image.right-center {
    background-position: right center;
}

@media screen and (max-width: 640px) {
    .home-teaser--wide .home-teaser-image,
    .home-teaser-image {
        padding-bottom: 56.822%;        
    }
}

.home-teaser-title {
    display: block;
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1;
    color: #009fa8;
    margin: 0 0 .5rem;
}

.home-teaser-content p {
    font-size: 1.125rem;
    margin-bottom: 0;
}


@media screen and (max-width: 576px) {
    .home-teaser-title {
        font-size: 1.125rem;
    }

    .home-teaser-content p {
        font-size: 1rem;
    }
}

footer {
    background-color: #e7e7e7;
}

footer > div {
    padding: 2rem 0;
}

.footer-top {
    /* border-top-right-radius: 6px;
    border-top-left-radius: 6px; */
    border-bottom: 2px solid #fff;
}

.footer-bottom {
    padding-bottom: .5rem;
}

.footer-copyright {
    text-align: center;
    font-size: .85rem;
    opacity: .5;
    padding: 1rem 0;
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.footer-col {
    padding: 0 2rem;
    font-size: 1rem;
}

.footer-col h4 {
    text-transform: uppercase;
    font-size: inherit;
    color: #009fa8;
    font-weight: 500;
    margin: 0 0 .5rem;
    line-height: 1.25;
}

.footer-col a {
    display: block;
    color: #333;
    padding: 0.125rem 0;
}

.footer-col .footer-link-icon {
    display: flex;
    align-items: baseline;
    justify-content: flex-start;
}

.footer-link-icon img {
    width: 1.5rem;
    max-height: 1rem;
    padding-right: 0.5rem;
}

.footer-col a:hover {
    text-decoration: underline;
}

.footer-legal {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-legal a {
    display: block;
    padding: .5rem 1rem;
    color: #333;
}

.footer-legal a:hover {
    text-decoration: underline;
}

@media screen and (max-width: 66.75em) {

    .footer-mobile {
        background-color: #e7e7e7;
        padding: .5rem;
    }
    
    .footer-social {
        display: flex;
        justify-content: space-around;
        align-items: baseline;
        padding: 0 4rem .5rem;
        border-bottom: 1px solid #ccc;
    }
    
    .footer-social a {
        display: block;
        padding: .5rem;
    }
    
    .footer-social img {
        height: 1.25rem;
        max-width: 1.5rem;
    }
    
    .footer-links {
        border-bottom: 1px solid #ccc;
        display: flex;
        flex-direction: column;
        padding: .5rem 0;
    }
    
    .footer-links a {
        width: 100%;
        color: #888;
        text-align: center;
        display: block;
        padding: 0.5rem 0;
    }
}


/* Watch Kollektion */

li.filter-kachel-listing-li {
    padding-bottom: 0;
    margin-bottom: 1.25rem;
}

.neu {
    position: absolute;
    top: .75rem;
    right: 1.25rem;
    font-size: 1rem;
    font-weight: bold;
    line-height: 1;
}

@media screen and (max-width: 640px) {
    .neu {
        font-size: 0.75rem;
        top: 0.5rem;
        right: 1.25rem;
    }
}

.filter-icon {
    margin-right: 1rem;
    max-width: 30px;
}

.filter-h4 {
    font-size: 1.25rem;
    margin: 0;
    padding: 0;
    font-weight: 500;
}

.filter-h5 {
    font-weight: 500;
    font-size: .875rem;
    display: flex;
    align-items: center;
    line-height: 1.5;
    margin: 0;
    padding: .5rem 0;
    margin-left: 0.5rem;
}

.filter-h5 img {
    transition: all .75s ease;
    margin-left: .5rem;
}

.filter-h5:hover img {
    transform: rotate(360deg);
}

.filter-bar {
    padding: .5rem 0;
}

.filter-options {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 1.5rem;
}

.filter-options .dropdown {
    top: auto;
    padding: 0 .5rem;
    flex: 1;
}

.filter-options .filter-select {
    margin: 0;
    height: auto;
    background-size: 1rem;
    background-position: 95%;
    font-weight: 500;
    line-height: 2;
    padding: .25rem 1rem;
}

.filter-options .filter-select .multiSel {
    max-height: initial;
}

.filter-trigger {
    cursor: pointer;
    height: 2rem;
    width: 2rem;
    margin-left: auto;
    transition: all .2s ease;
}

.filter-context.active .filter-trigger {
    transform: scaleY(-1);
}

@media screen and (max-width: 1040px) {
    .filter-context {
        width: 100%;
        flex: 0 0 100%;
    }

    .filter-options {
        padding-left: 0;
        margin: 0 -.5rem;
        flex-wrap: wrap;
        align-items: center;
    }

    .filter-options .dropdown {
        flex: 0 0 50%;
        width: 50%;
        margin-top: 1rem;
    }
}

@media screen and (max-width: 640px) {
    .filter-options {
        display: none;
        width: 100%;
        flex: 0 0 100%;
        margin: 1rem 0 0;
    }

    .filter-context {
        cursor: pointer;
    }

    .filter-options .dropdown {
        padding: 0;
        margin-bottom: 1rem;
        flex: 0 0 100%;
        width: 100%;
    }

    .filter-h4 {
        font-size: 1.125rem;
    }

    .filter-h5 {
        margin-left: 0;
    }
}

.header-text-box-special h1 {
    color: #fff;
    font-size: 3.5rem;
    font-weight: bold;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.16);
}

.header-text-box-special h4 {
    color: #fff;
    font-size: 1.5rem;
    line-height: 1.25;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.16);
}

.specials-header {
    min-height: 300px;
    position: relative;
    display: flex;
    align-items: center;
    color: #fff;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.specials-header h1 {
    color: inherit;
    font-size: 3.5rem;
    font-weight: bold;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.16);
}

.specials-header p {
    font-size: 1.25rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

.specials-header-illustration {
    position: absolute;
    right: 0;
    z-index: 0;
}

@media screen and (max-width: 768px) {
    .specials-header h1 {
        line-height: 1.25;
        font-size: 2.5rem
    }

    .specials-header p {
        font-size: 1rem;
    }
}

@media screen and (max-width: 1250px) {
    .specials-header-illustration {
        display: none;
    }
}
