@import url('https://fonts.googleapis.com/css?family=Jura:400,700');

@font-face {
    font-family: 'BebasNeueRegular';
    font-style: normal;
    src: url('../fonts/bebasneue-regular.woff') format('woff'),
    url('../fonts/bebasneue-regular.woff2') format('woff2'),
    url('../fonts/bebasneue-regular.otf') format('opentype'),
    url('../fonts/bebasneue-regular.ttf') format('truetype');
}

:root {
    --background-color: #ffffff;
    --body-color: rgba(0,0,0,.87);
    --disabled-text-color: #9f9f9f;
    --primary-text-color: #737373;
    --secondary-text-color: #f315a0;
    --tertiary-text-color: #ffffff;
    --quaternary-text-color: #777;
    --disabled-color: #ccc;
    --tertiary-color: #b2b2b2;
    --content-primary-text-color: #2f322b;
    --link-primary-color: #444;
    --percushop-original-color: #d4036a;
    --back-color-secondary: #292b28;

    --font-primary: 'Jura', 'Helvetica', 'Arial', sans-serif;
    --font-secondary: 'BebasNeueRegular', 'Helvetica', 'Arial', sans-serif;

    --title-sub-header: 1.14285714rem;
}

body {
    font-family: var(--font-primary);
    color: var(--body-color);
}

body .pusher {
    background-color: var(--background-color) !important;
}

a {
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -ms-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
    text-decoration: none;
}

a.percu-effect:hover {
    color: var(--percushop-original-color) !important;
}

header {
    margin-bottom: 1rem;
}

header a:hover {
    color: var(--secondary-text-color) !important;
}

header #cart-col a.primary.button:hover {
    color: var(--tertiary-text-color) !important;
}

#jumbotron {
    margin-top: -1rem;
    border: 0;
    padding: 0;
    overflow: hidden;
    visibility: hidden;
    /* Reserve the slideshow's height before any image loads (hero banners are a fixed
       2500x1029). Previously the height came only from a JS read of the first image's
       rendered size at document.ready, before it had loaded, so the carousel collapsed
       to ~0px and only settled at window.load (~one autoplay cycle later) -> a 30s blank
       band. With the height held by CSS, the JS just reveals the carousel. */
    aspect-ratio: 2500 / 1029;
}

#jumbotron .slick-list, #jumbotron .slick-track {
    height: 100%;
}

#jumbotron .slick-list .slick-track .jumbotron-slide .background img {
    width: 100%;
}

#jumbotron .slick-list .slick-track .jumbotron-slide .zoom-in {
    width: 100%;
}

#jumbotron .jumbotron-slide {
    border: 0;
    padding: 0;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
}

#jumbotron .jumbotron-slide div.zs-img {
    background-size: contain !important;
}

#jumbotron .jumbotron-slide .static img {
    z-index: 10;
    position: absolute;
}

#brands {
    background-color: var(--back-color-secondary);
    margin-bottom: 1rem;
}

#brands .grid {
    align-items: center;
}

#brands img {
    max-height: 7rem;
}

.ui .menu {
    font-family: var(--font-primary);
}

#menu {
    font-family: 'Jura', 'Helvetica', 'Arial', sans-serif;
    min-height: auto;
    font-size:0.9rem;
}

#menu .row {
    padding: 0.5rem 0;
}

#menu .row .column {
    font-weight: normal;
    color: #cc8458;
    text-align: center;
    /*height: 20px;*/
}

#menu .row .column:first-child {
    color: #fff;
    text-align: left;
}

#menu .row .column:last-child {
    color: #fff;
    text-align: right;
}

#menu .row .column a, #menu .row .column a:hover, #menu .row .column a:active, #menu .row .column a:visited {
    color: #fff;
    margin-left: 2rem;
}

#menu .row .column .flags {
    margin-left: 0.6rem;
    position: relative;
    top: 0.3rem;
}

#menu .row .column .flags a {
    margin: 0;
    padding: 0;
}

#menu .row .column .flags img {
    width: 16px;
    height: auto;
}

#menu .row .column img {
    height: 10px;
}

.breadcrumb .active {
    text-transform: uppercase;
    color: var(--quaternary-text-color);
    font-weight: initial !important;
}

.breadcrumb a:link, .breadcrumb a:visited, .breadcrumb a:hover, .breadcrumb a:active {
    text-transform: uppercase;
    color: var(--secondary-text-color) !important;
}

#logo {
    width: initial;
    max-width: 252px;
    margin-bottom: 0;
}

#cart-col {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
}

#cart-col .item {
    margin-left: 6px;
    display: inline-block;
    font-size: 1.25rem;
    text-transform: uppercase;
    color: var(--primary-text-color);
}

#cart-col .disabled {
    color: var(--disabled-text-color);
}

#cart-col a {
    color: var(--primary-text-color);
}

#cart-col a.primary.button {
    color: var(--tertiary-text-color);
}

#cart-col #sylius-cart-button {
    cursor: pointer;
}

#cart-col #sylius-cart-button:hover {
    color: var(--secondary-text-color);
}

#cart-col .col-exchange {
    margin-left: 6px;
}

#cart-col .col-exchange img {
    width: 2rem;
    height: 2rem;
}

#navbar {
    border-top: 1px solid;
    border-bottom: 1px solid;
    border-left: 0;
    border-right: 0;
    border-radius: 0;
    border-color: var(--tertiary-color);
}

#navbar a {
    color: var(--content-primary-text-color);
}

#navbar .item {
    text-transform: uppercase;
    font-size: 1.25rem;
    border-color: var(--tertiary-color);
}

#navbar .item::before {
    background-color: var(--tertiary-color);
}

#mobile-navbar {
    display: none;
    margin-bottom: 0.5rem;
}

#mobile-navbar .bars.icon {
    margin-right: 0.5rem;
}

@media (max-width: 767px) {
    #navbar {
        display: none;
    }

    #mobile-navbar {
        display: block;
    }
}

.container .featured-block h1 {
    margin-top: 1.5rem;
}

.featured-block {
    margin-bottom: 5rem;
}

.featured-block .featured-taxon-footer {
    text-align: center;
    margin-top: 2rem;
}

.featured-block .featured-taxon-footer .show-more {
    border: 2px solid var(--content-primary-text-color);
    padding: 7px 15px 6px;
    color: var(--content-primary-text-color);
    font-size: 17px;
    text-transform: uppercase;
}

.featured-block .featured-taxon-footer .show-more:hover {
    background-color: var(--content-primary-text-color);
    color: var(--background-color);
}

.category-title {
    font-family: var(--font-secondary);
    font-size: 2.6rem;
    margin-bottom: 2rem;
    color: var(--content-primary-text-color);
}

html:lang(ja) .category-title {
    font-size: 2.4rem;
}

.grid .column .taxon-box, .grid .column .product-box, .grid .column .advertisement-box {
    margin-bottom: 0.5rem;
}

.taxon-box {
    border: 1px solid var(--tertiary-color);
}

.taxon-box .title {
    font-family: var(--font-secondary);
    font-size: 2rem;
    font-weight: bold;
    line-height: 1.1;
    letter-spacing: -0.5px;
    text-transform: uppercase;
    color: var(--link-primary-color);
}

html:lang(ja) .taxon-box .title {
    font-size: 1.8rem;
}

.taxon-box .content {
    padding-top: 2rem;
    display: flex !important;
    flex-direction: column;
}

.taxon-box .content .row:not(:last-of-type) {
    padding-bottom: 1rem;
}

.taxon-box .row.price.hardness {
    display: flex;
}

.taxon-box .row.hardness img {
    width: 0.8rem;
}

.taxon-box .column:nth-child(2) .row:last-of-type {
    margin-top: auto;
}

.taxon-box .excerpt {
    font-size: 1.1rem;
    color: var(--quaternary-text-color);
}

.taxon-box .brand-elite {
    width: 69px;
}

.taxon-box .brand-inaki {
    width: 39px;
}

.advertisement-box .column {
    margin: auto;
    background-repeat: no-repeat;
    background-position: center center;
}

.advertisement-box .column a img, .advertisement-box .column img {
    width: 100%;
}

div .sub {
    white-space: pre-line;
}

.product-box {
    border: 1px solid var(--tertiary-color);
    padding: 1rem;
}

.product-box div.content > a:link, .product-box div.content > a:hover, .product-box div.content > a:visited, .product-box div.content > a:active {
    color: var(--body-color);
}

.taxon-box div.excerpt > a:link, .taxon-box div.excerpt > a:hover, .taxon-box div.excerpt > a:visited, .taxon-box div.excerpt > a:active {
    color: var(--body-color);
}

div.product-box div.product-pricing {
    padding: 1rem;
    justify-content: space-between;
}

div.product-box div.product-pricing .col-price {
    width: 79% !important;
}

div.product-box div.product-pricing .col-exchange {
    width: 19% !important;
}

div.product-box div.product-pricing .col-exchange img {
    width: 2rem;
    height: 2rem;
}

div.product-box div.product-pricing.ui.grid>.column:not(.row), div.product-box div.product-pricing.ui.grid>.row>.column {
    display: flex;
}

div.product-box div.product-price, div.product-box div.product-exchange {
    background-color: var(--content-primary-text-color);
    color: white;
    height: 3rem;
    font-size: 1.7rem;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1rem;
}

h1#taxon-header {
    border-bottom: 0;
    font-family: var(--font-secondary);
    text-transform: uppercase;
}

html:lang(ja) h1#taxon-header {
    font-size: 2.5rem;
}

p.serie-description {
    font-family: var(--font-primary);
    font-size: var(--title-sub-header);
}

#taxons > .column {
    margin-bottom: 2.5rem;
}

#products > .column {
    margin-bottom: 2.5rem;
}

#products .product-name {
    margin-top: 1rem;
}

#products .product-name img {
    height: 1.2rem;
    margin-left: 0.5rem;
}

#products .product-name a {
    display: flex;
    font-family: var(--font-secondary);
    color: var(--link-primary-color);
    font-size: 1.3rem;
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

.detailed-product-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    border-top: 1px solid var(--tertiary-color);
    border-bottom: 1px solid var(--tertiary-color);
    margin-left: 1rem;
    margin-right: 1rem;
    padding-top: 1px;
    padding-bottom: 1px;
}

.detailed-product-header > img {
    height: 4rem;
}

.detailed-product-header .hardnesses img {
    width: 0.8rem;
}

.detailed-product-header #sylius-product-name {
    font-size: 3.5rem;
    font-family: var(--font-secondary);
    text-transform: uppercase;
    margin-top: 0.43rem;
    margin-bottom: 0.43rem;
    padding-bottom: 0;
    border-bottom: 0;
}

.detailed-product-header #sylius-product-name img {
    max-width: 1.3rem;
    margin-top: 0;
}

.detailed-product-header .serie-details {
    display: flex;
}

@media (max-width: 1200px) {
    .detailed-product-header #sylius-product-name {
        font-size: 2rem;
    }

    .detailed-product-header #sylius-product-name img {
        max-width: 0.8rem;
    }
}

.row.price.hardness a.exchange-btn {
    margin-right: 0.7rem;
}

.row.price.hardness a.exchange-btn img {
    width: 2rem;
    height: 2rem;
}

.serie-lowest-price {
    margin-right: 0.7rem;
    padding: 0.4rem 1rem;
    color: var(--tertiary-text-color);
    font-size: 1rem;
    line-height: 1;
    background: var(--content-primary-text-color);
}

#product-description {
    color: var(--quaternary-text-color);
    font-size: 1.4rem;
    line-height: 2rem;
}

#sylius-product-selecting-variant div.field > label {
    display: none;
}

#sylius-product-selecting-variant div.price-box {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    min-height: 2.575rem;
    background-color: var(--content-primary-text-color);
    color: var(--tertiary-text-color);
}

#sylius-product-selecting-variant div.price-box span#product-price {
    font-size: 1.5rem;
}

#sylius-product-selecting-variant div#price-variant-row .col-exchange img {
    width: 2rem;
    height: 2rem;
}

#sylius-product-selecting-variant div#price-variant-row .six.wide.column {
    padding-right: 0.5rem;
}

#sylius-product-selecting-variant div#price-variant-row .col-price {
    padding-right: 0.5rem;
    width: 83%;
}

#sylius-product-selecting-variant div#price-variant-row .variant-selector {
    padding-left: 0.5rem;
}

#sylius-product-selecting-variant div#price-variant-row .variant-selector > div {
    border: 1px solid #ccc;
}

#sylius-product-selecting-variant div#price-variant-row .col-exchange {
    background-color: var(--content-primary-text-color);
    width: 13%;
    display: flex;
    align-items: flex-end;
}

#sylius-product-selecting-variant div#only-variant-row > div.column > div {
    border: 1px solid #ccc;
}

#sylius-product-selecting-variant select {
    border: 0;
}

#sylius-product-selecting-variant div#quantity-buy-row .four.wide.column {
    padding-right: 0.5rem;
}

#sylius-product-selecting-variant div#quantity-buy-row .twelve.wide.column {
    display: flex;
    padding-left: 0.5rem;
}

#sylius-product-selecting-variant div#quantity-buy-row .twelve.wide.column button {
    background-color: var(--percushop-original-color);
    color: var(--tertiary-text-color);
    margin-right: 0;
    flex-grow: 1;
    text-transform: uppercase;
}

#sylius-product-selecting-variant div#quantity-buy-row .four.wide.column > div {
    border: 1px solid #ccc;
}

#sylius-product-selecting-variant input {
    border: 0;
}

#sylius-product-selecting-variant div.ui.grid:not(:first-child) {
    margin-top: 0;
}

span.hardness-tooltip::before {
    margin-bottom: 1.2rem !important;
}

span.hardness-tooltip::after {
    margin-bottom: 1.7rem !important;
}

#product-index .images-carousel-container span {
    position: absolute;
    top: 50%;
    display: block;
    width: 20px;
    height: 20px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    -moz-transition: all 100ms ease-in;
    -o-transition: all 100ms ease-in;
    -webkit-transition: all 100ms ease-in;
    transition: all 100ms ease-in;
    color: var(--disabled-color);
    font-size: 3rem;
    cursor: pointer;
}

#product-index .images-carousel-container span:hover {
    color: var(--tertiary-color);
}

#product-index .images-carousel-container span.left {
    left: -40px;
}

#product-index .images-carousel-container span.right {
    right: 0;
}

#product-index .images-carousel {
    overflow: hidden;
    margin: 0 auto;
}

@media (max-width: 767px) {
    .images-carousel-container {
        display: none !important;
    }
}

#product-index .header {
    margin-bottom: 2rem;
}

@media (max-width: 767px) {
    #product-detail .row.images {
        height: 11rem;
    }
}

@media (max-width: 1200px) {
    #product-index .images-carousel-container span.left {
        display: none !important;
    }

    #product-index .images-carousel-container span.right {
        display: none !important;
    }
}

.detail-image {
    margin-top: 1rem;
}

#product-detail .row.images a.image {
    align-items: center;
    display: flex;
}

#order-thank-you-icon {
    width: 10rem;
}

.serie-banner {
    width: 100%;
    margin:-1rem 0 2rem 0;
    padding:0;
    background-size: cover;
}

.serie-banner.serie-banner-marimba {
    height:175px;
    background: url('/imgs/banner-marimba.jpg') left -650px;
}

.serie-banner.serie-banner-vibraphone {
    height:175px;
    background: url('/imgs/banner-vibra.jpg') center -770px;
}

.serie-banner.serie-banner-timpani {
    height:175px;
    background: url('/imgs/banner-timbal.jpg') center -500px;
}

.serie-banner.serie-banner-xylophone {
    height:175px;
    background: url('/imgs/banner-xylophone.jpg') center top;
}

.serie-banner.serie-banner-lyre{
    height:175px;
    background: url('/imgs/banner-lyre.jpg') center -250px;
}

.serie-banner.serie-banner-multipercussion {
    height:175px;
    background: url('/imgs/banner-multi.jpg') left -200px;
}

.serie-banner.serie-banner-beginner {
    height:175px;
    background: url('/imgs/banner-beginner.jpg') center top no-repeat;
}

.payment-methods img {
    height: 4rem;
}

#footer .follow-us img {
    width: 32px;
    margin-right: 0.6rem;
}

#error-logo {
    width: 10rem;
}

#sylius-shipping-address > .ui.dividing.header span:last-child {
    font-weight: initial;
    font-size: 1rem;
    margin-left: 1rem;
}

#navbar.br-navbar a {
    font-size: 1.11rem;
}

#navbar.fi-navbar a {
    font-size: 1.11rem;
}

#sylius-shipping-methods .ui.fluid.stackable.items .item .content {
    width: 200%;
}

#sylius-shipping-methods .bad-postal-service .ui.radio.checkbox {
    visibility: hidden;
}

select {
	font-family: 'Helvetica Neue', 'Arial', sans-serif;
	font-weight: 300;
	color: #777;
}
