﻿/* Generic */
body {
    font-family: "Roboto",sans-serif;
    color: #373737
}

a {
    color: #373737
}

    a:hover, a:visited, a:focus, a:link {
        text-decoration: none !important;
        color: #373737
    }

h3 {
    font-weight: 300;
}

p {
    font-size: 15px;
}

button:focus {
    outline: 0 !important;
}

html, body {
    height: 100vh;
}

a:focus, input:focus {
    outline: 0;
}

a:hover {
    text-decoration: none;
}

a.normal:hover {
    text-decoration: underline !important;
}

.img_float {
    float: right;
    max-width: 500px;
    margin: 20px;
    margin-right: 0px;
}
/*End of Generic*/
/*Header*/
header {
    border-bottom: 1px solid #b4b4b4;
    position: fixed;
    top: 0px;
    width: 100%;
    background: rgba(255,255,255,0.98);
    z-index: 9;
    align-items: center;
    display: flex;
    height: 70px;
    justify-content: space-around;
}

.logo {
    justify-content: center;
    flex: 1 1 15%;
    display: flex;
}
/*Menú Superior*/
.menu {
    justify-content: center;
}

    .menu .searcher {
        /*margin-left: auto;*/
        margin-left: 15%;
        display: flex;
        align-self: center;
        margin-top: 10px;
        position: relative;
    }

.store {
    display: flex;
    justify-content: flex-end;
    flex: 1 1 15%;
    font-weight: 600;
    height: 70px;
    align-items: center;
    padding-right: 20px;
    position: relative;
    transition: all 0.2s ease-in-out;
}

.store-price {
    margin-right: 10px;
    position: relative;
    height: 70px;
    line-height: 80px;
}

    .store-price:after {
        content: "";
        position: absolute;
        width: 1px;
        height: 20px;
        top: 30px;
        border-right: 1px solid #b4b4b4;
        padding-left: 15px;
    }

.store-items {
    margin-left: 20px;
    height: 70px;
    line-height: 80px;
}

    .store-items i {
        font-size: 16px;
        padding-left: 5px;
    }

.store:hover {
    cursor: pointer;
}

.cart-list {
    position: absolute;
    visibility: hidden;
    display: block;
    width: 100%;
    opacity: 0;
    background: #fff;
    flex: none;
    top: 70px;
    right: 0px;
    border-left: 1px solid #b4b4b4;
    transition: visibility 0s linear 0.5s,opacity 0.5s linear;
}

    .cart-list article {
        display: flex;
        width: 100%;
        height: 100%;
        align-items: center;
        justify-content: space-between;
        font-size: 12px;
        border-bottom: 1px solid #b4b4b4;
        transition: all 0.2s ease-in-out;
    }

        .cart-list article div {
            padding: 5px;
        }

            .cart-list article div span {
                display: block;
            }

            .cart-list article div:nth-child(2) {
                flex: 1;
            }

        .cart-list article:last-child {
            border-bottom: none;
        }

        .cart-list article:hover {
            background-color: #f4f4f4;
        }

.remove {
    font-size: 14px;
    padding: 10px !important
}

.store-items {
    position: relative;
}

    .store-items span, .store-items i {
        z-index: 1;
    }

.store-items-false-div {
    position: absolute;
    top: 0px;
    bottom: 1px;
    right: -20px;
    left: -15px;
    z-index: -10;
}

.ui-effects-transfer {
    animation: fadingOut 1.6s forwards;
    background-color: aqua;
    background-size: contain;
    opacity: 0.8;
    z-index: 11;
}

@keyframes fadingOut {
    0% {
        opacity: 0.8
    }

    100% {
        opacity: 0;
    }
}

@media(max-width:1190px) {
    .store-items-false-div {
        left: -20px;
    }
}

.cart-list article:hover div.remove {
    color: #e2850c
}

.cart-list button {
    display: block;
    width: 100%;
    padding: 10px;
    border: none;
    font-size: 11px;
}

@media(max-width:768px) {
    .img_float {
        float: none;
        max-width: 100%;
        margin: 20px 0;
    }

    .cart-list article div:nth-child(3) {
        display: none;
    }

    .cart-list article {
        justify-content: flex-start;
    }
}

@media(min-width:585px) {
    .store:hover .cart-list {
        visibility: visible;
        opacity: 1;
        transition-delay: 0s;
    }
}

.menu a {
    margin: 0 5px;
    position: relative;
}

    .menu a:first-child {
        margin-left: auto;
    }

    .menu a:last-child {
        margin-right: 0px;
    }

.menu {
    flex: 1 1 70%;
    display: flex;
    height: 70px;
    line-height: 80px;
}

    .menu a.actived {
        font-weight: 600;
    }

        .menu a.actived:before {
            content: "";
            position: absolute;
            border-bottom: 2px solid #373737;
            width: 100%;
            height: 2px;
            top: 68px;
        }

    .menu a:hover {
        text-shadow: 0.6px 0 0 currentColor;
        color: #373737
    }

    .menu a.actived:hover {
        text-shadow: none;
    }

    .menu a:hover:before {
        content: "";
        position: absolute;
        border-bottom: 2px solid #373737;
        width: 100%;
        height: 2px;
        top: 68px;
    }
/*Cerca Superior*/
#search {
    position: fixed;
    display: none;
    justify-content: center;
    align-items: center;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -webkit-transform: translate(0px, -0px) scale(0, 0);
    -moz-transform: translate(0px, -100%) scale(0, 0);
    -o-transform: translate(0px, -100%) scale(0, 0);
    -ms-transform: translate(0px, -100%) scale(0, 0);
    transform: translate(0px, -100%) scale(0, 0);
    opacity: 0;
    z-index: 9;
}

    #search.open {
        display: flex;
        -webkit-transform: translate(0px, 0px) scale(1, 1);
        -moz-transform: translate(0px, 0px) scale(1, 1);
        -o-transform: translate(0px, 0px) scale(1, 1);
        -ms-transform: translate(0px, 0px) scale(1, 1);
        transform: translate(0px, 0px) scale(1, 1);
        opacity: 1;
    }

.inner-search {
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1;
}

.search-bck {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;
}

#search .btn {
    width: 50%;
    margin-top: 30px;
}

#search input[type="search"] {
    width: 95%;
    border: 1px solid #fff;
    color: rgb(255, 255, 255);
    background: rgba(0, 0, 0, 0);
    font-size: 8vw;
    font-weight: 300;
    text-align: center;
    margin: 0px auto;
    margin-top: -51px;
    padding-left: 30px;
    padding-right: 30px;
    outline: none;
}

.searcher input {
    height: 42px;
    line-height: normal;
    border-radius: 40px;
    padding: 15px;
    padding-right: 40px;
    font-size: 12px;
    background-color: #f1f3f5;
    border: none;
    color: #8c9196;
    position: relative;
    min-width: 200px;
}

.searcher button {
    height: 20px;
    display: flex;
    align-self: center;
    right: 10px;
    position: absolute;
    background-color: transparent;
    border: none;
    width: auto;
    padding: 0;
    margin: 0;
}

.header_searcher_submit svg {
    fill: #8c9196;
    width: 15px;
}

.searcher-m {
    display: none;
    width: 60px;
}
/*End of Header*/
/*Sidebar*/
.sidebar {
    display: flex;
    justify-content: center;
    flex: 1 1 10%;
    z-index: 2;
}

.categories {
    position: fixed;
    display: flex;
    align-self: flex-start;
    flex-direction: column;
}

    .categories h3 {
        margin-top: 0px;
        font-size: 22px;
    }

footer {
    display: flex;
    padding: 20px 0;
    justify-content: center;
    position: fixed;
    align-self: flex-end;
    font-size: 12px;
    background-color: #fff;
}

.footer-content {
    display: flex;
    flex-direction: column;
}

.social-media {
    flex-direction: row;
    display: flex;
}

    .social-media i {
        padding: 10px;
        font-size: 13px;
        margin-right: 10px;
        margin-bottom: 20px;
        background-color: #464646;
        border-radius: 50px;
        display: flex;
        justify-content: center;
        transition: all 0.2s ease-in-out;
        width: 32px;
        color: #fff;
    }

        .social-media i:hover {
            background-color: #ddd;
        }

.newSocialLnk {
    padding-left: 11px;
    padding-top: 3px;
    font-size: 14px;
}


/*End of Sidebar*/

/*Llistat*/
.popular {
    display: none;
}

.current-title {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0px;
    align-items: flex-end;
}

    .current-title h2 {
        margin-bottom: 0px;
    }

.view-control {
    display: flex;
    align-items: flex-end;
}

    .view-control select {
        width: auto;
    }

    .view-control .pagination {
        margin: 0px;
        margin-left: 10px !important;
        height: 34px
    }


        .view-control .pagination div.jplist-holder {
            display: flex;
        }

        .view-control .pagination button {
            margin: initial !important;
            position: relative;
            display: flex;
            align-items: center;
            margin: 0 2px !important;
            color: #000;
            background-color: #fff;
            border: 1px solid #dee2e6;
        }

.jplist-selected {
    background-color: #e2850c !important;
    border-color: #e2850c !important;
    color: #fff !important;
}

.view-control span {
    font-size: 12px;
    font-weight: bold
}

@media(max-width:618px) {
    .current-title {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
    }

        .current-title h2 {
            margin-bottom: 20px;
        }

    .view-control {
        width: 100%;
        justify-content: space-between;
    }

        .view-control select {
            width: 100%;
        }
}

@media (max-width:485px) {
    .view-control span {
        display: none;
    }
}
/*Main content*/
.main-frame {
    display: flex;
    padding-top: 100px;
    height: 100vh;
}

.contingut {
    flex: 1 1 75%;
    display: flex;
    flex-wrap: wrap;
}

.content {
    flex: 1;
    margin: 0 20px;
}

.main-content {
    margin: 20px;
    display: flex;
    flex: 2;
    flex-direction: column;
    order: 2;
    min-width: 300px;
}

.main-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
    order: 1;
}

.main {
    display: flex;
    flex: 2 1 100%;
    min-height: 450px;
    justify-content: space-around;
    margin-bottom: 20px;
    /*flex-wrap: wrap;*/
}

.main-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    margin: 0 20px;
    /*margin-top: 20px;*/
    order: 3;
    min-width: 200px;
}

.main-prize {
    color: #e2850c;
    font-size: 36px;
    font-weight: 500;
    position: relative;
    display: flex;
    align-items: center;
}

    .main-prize div:first-child {
        flex: 1 0 75%;
    }

    .main-prize input[type="number"] {
        flex: 1 0 25%;
        border-radius: 2px;
        box-shadow: none;
        position: relative;
    }

    .main-prize input[type=number]::-webkit-inner-spin-button,
    .main-prize input[type=number]::-webkit-outer-spin-button {
        opacity: 1;
        height: 32px;
        position: absolute;
        right: 0px;
        top: 0px;
    }


.disccount {
    position: absolute;
    font-size: 12px;
    color: #000;
    font-weight: 600;
    bottom: -10px;
}

.prize-before {
    color: #999;
    font-weight: 300;
    font-size: 14px;
    margin-left: 5px;
    text-decoration: line-through;
}

.box {
    max-width: 250px;
    position: relative;
}
/*Llista Compra*/
div.row.table-info {
    margin-left: 0px;
    margin-right: 0px;
}

.table-info .col-md-6 {
    padding-left: 0px;
    padding-right: 0px;
}

.table-responsive {
    border: none;
}

.revisa-text {
    flex: 1;
    font-size: 13px;
    order: 1;
}

@media(max-width:768px) {
    div.row.table-info .table {
        width: 100%;
    }

        div.row.table-info .table th, div.row.table-info .table td {
            display: block;
        }

        div.row.table-info .table th {
            background-color: #f9f9f9
        }

        div.row.table-info .table td {
            background-color: #fff;
        }

    .revisa-text {
        flex: 1 0 100%;
        order: 3;
        margin-top: 20px;
        border-top: 1px solid #eee;
        padding-top: 20px;
    }

    .table-striped > tbody > tr:nth-of-type(odd) {
        background-color: none;
    }
}

.main-list .item {
    display: flex;
    align-items: center;
    padding: 10px;
    justify-content: space-around;
    border-bottom: 1px solid #f2f2f2
    /*flex-wrap: wrap;*/
}

    .main-list .item h4 {
        font-size: 20px;
    }

    .main-list .item div.prix {
        font-size: 20px;
        font-weight: bold;
        color: #e2850c;
    }

    .main-list .item article {
        margin-right: 10px;
    }

    .main-list .item:nth-child(even) {
        background-color: #fcfcfc;
    }

    .main-list .item .main-details {
        flex: none;
        margin: 0px;
        order: inherit;
    }

    .main-list .item .main-prize input[type="number"] {
        max-width: 100px;
        margin-bottom: 30px;
    }

    .main-list .item .main-details .main-prize div {
        flex: none;
    }

    .main-list .item .main-content {
        min-width: inherit;
        order: inherit
    }

.main-list button.btn_resume:hover {
    background: #fff;
    -webkit-box-shadow: inset 0px 0px 0px 1px rgba(189,189,189,1);
    -moz-box-shadow: inset 0px 0px 0px 1px rgba(189,189,189,1);
    box-shadow: inset 0px 0px 0px 1px rgba(189,189,189,1);
}

.main-list .item .main-details .main-prize {
    justify-content: flex-end;
    flex-direction: column;
    align-items: flex-end;
    order: inherit;
}

    .main-list .item .main-details .main-prize .disccount {
        font-size: 20px;
        font-weight: bold;
        color: #e2850c;
    }

    .main-list .item .main-details .main-prize .product-quantity {
    }

.main-list a {
    color: #e2850c;
}

@media(max-width:768px) {

    .main-list .item {
        flex-wrap: wrap;
    }

        .main-list .item .main-details {
            flex-basis: 100%;
            display: flex;
            flex-direction: row;
        }

            .main-list .item .main-details .main-prize, .main-list .item .main-details button.btn_resume {
                flex-direction: row;
                align-items: flex-end;
            }

    .main-details button.btn_resume {
        margin-bottom: 0px !important;
    }

    .main-list .item .main-details .main-prize, .main-list .item .main-details .disccount {
        position: relative;
    }

    .main-list .item .main-prize input[type="number"] {
        margin-bottom: 0px;
    }

    .main-list .item .main-details .main-prize {
        flex: 0 0 70%;
        order: 2;
    }

    .main-list .item .main-details .disccount {
        display: none !important;
    }
}

.breadcrumbs {
    margin-bottom: 20px;
    font-size: 13px;
}

.form-control {
    box-shadow: none !important;
    border-radius: 2px !important;
}

label {
    display: inline;
}
/*TABS*/
.share {
    display: flex;
    font-size: 12px;
    margin: 20px 0;
    align-items: center;
    order: 2
}

    .share div, .share a {
        margin-right: 10px;
    }

    .share a {
        text-decoration: none;
    }

        .share a:hover {
            color: #000;
        }

.circle {
    background-color: #f0f0f0;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 25px;
    width: 35px;
    height: 35px;
    font-size: 14px;
    color: #999999
}

.main-info {
    order: 1;
}

.intro {
    font-size: 15px;
    font-weight: 300;
}

.nav-tabs {
    order: 2;
}

.dades, .pam {
    display: none;
}

.tab-content {
    order: 3;
}

.main-title {
    order: 0;
}

.tab-pane div {
    padding: 20px 10px;
    color: #373737;
    font-size: 12px;
}

.nav-tabs li {
    font-size: 11px;
    margin-top: 20px;
}

.divider {
    height: 1px;
    width: 100%;
    background-color: #ddd;
    margin: 10px 0;
}

.envio {
    font-size: 11px;
}

    .envio div {
        position: relative;
        padding-left: 30px;
        margin: 10px 0;
    }

    .envio i {
        color: #adb5bd;
        font-size: 18px;
        position: absolute;
        left: 0px;
        top: 0px;
    }

button {
    display: block;
    margin: 10px 0;
    border-radius: 3px;
    width: 100%;
    padding: 10px;
    border: none;
    font-size: 11px;
}


    button.btn_add {
        background-color: #e2850c;
        color: #fff;
        transition: all 0.2s ease-in-out;
    }

    button.btn_download {
        background-color: #fff;
        border: 1px solid #ddd;
        color: #333;
        transition: all 0.2s ease-in-out;
        margin-bottom: 0px;
    }

    button.btn_resume {
        background-color: #f4f4f4;
        color: #666;
        transition: all 0.2s ease-in-out;
    }

    button.btn_download:hover {
        background-color: #fafafa;
    }

    button.btn_add:hover {
        background-color: #fd9309;
        color: #fff;
    }

    button.btn_resume:hover {
        background-color: #f8f8f8;
    }

.nav-tabs > li > a {
    text-decoration: none;
    color: #555;
}

    .nav-tabs > li > a:hover {
        border-color: #f8f8f8 #f8f8f8 #ddd;
    }

.nav > li > a:focus, .nav > li > a:hover {
    text-decoration: none;
    background-color: #f8f8f8;
}
/*MENU MÒBIL*/
/*Hamburger Menu*/
.hamburger {
    display: none !important;
    padding: 0px;
}

.hamburger-inner, .hamburger-inner:after, .hamburger-inner:before {
    position: absolute;
    width: 20px;
    height: 2px;
}

    .hamburger-inner, .hamburger-inner:after, .hamburger-inner:before {
        background-color: #373737;
    }

.hamburger--slider-r .hamburger-inner {
    top: auto;
}

    .hamburger--slider-r .hamburger-inner:before {
        top: 5px;
    }

    .hamburger--slider-r .hamburger-inner:after {
        top: 10px;
    }

.hamburger--slider-r.is-active .hamburger-inner {
    margin-top: -7px;
}

    .hamburger--slider-r.is-active .hamburger-inner:after {
        top: 20px;
    }

.hamburger-box {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.tab-navigation {
    display: none;
    justify-content: space-between;
    height: 60px;
    top: 75px;
    align-items: center;
    margin-top: -5px;
    border-bottom: 1px solid #b4b4b4;
    position: fixed;
    left: 0;
    right: 0;
    z-index: 8;
}

    .tab-navigation div {
        text-align: center;
        width: 100%;
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-right: 1px solid #fff;
        background-color: #8c9196;
        color: #fff;
        transition: all ease-in-out 0.2s;
    }

        .tab-navigation div:last-child {
            border-right: none;
        }

        .tab-navigation div.actived {
            background-color: #fff;
            color: #373737;
            border-bottom: 1px solid #b4b4b4;
            font-weight: 600;
        }

@media (max-width: 992px) {
    .tab-navigation {
        display: flex;
    }


    header {
        padding: 0px 20px;
    }

    .logo, .store {
        flex: 1;
    }

    .store {
        justify-content: flex-end;
        padding-right: 0px;
    }

    .cart-list {
        right: -20px;
    }

    .inner-store {
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50px;
        width: 40px;
        padding: 10px;
        background-color: #e2850c;
        color: #fff;
    }

    .hamburger {
        display: flex !important;
        justify-content: flex-start;
        flex: 1;
    }

    .menu {
        display: none;
    }
}

#toTop {
    background-color: rgba(53,53,53,0.8);
    border-radius: 4px 4px 0 0;
    bottom: 0;
    color: #fff;
    display: none;
    height: 35px;
    position: fixed;
    right: 20px;
    text-align: center;
    text-transform: uppercase;
    width: 48px;
    z-index: 10;
}

    #toTop:before {
        line-height: 35px;
        content: '\f106';
        -webkit-font-smoothing: antialiased;
        font-family: 'Font Awesome\ 5 Free';
        font-size: 22px;
        font-weight: 900;
    }

@media (max-width:1190px) {
    .menu {
        flex: 1 1 50%;
    }

        .menu a:first-child {
            margin-left: inherit;
        }

    .searcher-m i {
        padding-left: 5px;
        padding-top: 6px;
    }

    .searcher-m {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 70px;
        position: relative;
    }

        .searcher-m:after {
            height: 70px;
            top: 0px;
            content: "";
            position: absolute;
            width: 2px;
            border-right: 1px #b4b4b4 solid;
            right: 0px;
        }

    .menu .searcher {
        display: none;
    }

    .store-price {
        display: none;
    }


    .main-frame {
        padding: 0px 20px;
        padding-top: 100px;
    }

    .sidebar {
        flex: 1 1 20%;
        justify-content: flex-start;
    }


    .main-title {
        flex: 2 1 100%;
    }



    .main-content {
        order: 3;
        margin: 0px;
        margin-top: 20px;
    }

    .main-details {
        order: 2;
        margin-right: 0px;
    }



    .main {
        flex-wrap: wrap;
    }

    .box {
        min-width: inherit;
    }

    .main-image {
        margin: 0 auto;
        margin-right: auto;
        margin-top: 20px;
    }
}

.tab-navigation {
    display: none;
}

    .tab-navigation div:hover {
        cursor: pointer;
    }

.menu-mobile, .menu-cuenta {
    display: none;
}

.categories-tab.actived footer {
    display: none !important;
}

.pagination {
    display: flex;
}

    .pagination button {
        margin-left: 2px;
    }

.main-title {
    margin-top: -20px !important;
}

.shop-items {
    display: none;
}

@media(max-width:1190px) {
    .main-content {
        flex: auto;
    }

    .main-title {
        margin-top: 0px !important;
    }
}

@media(max-width:992px) {

    footer {
        padding-left: 20px;
        display: none;
    }

    .mcd-menu-movile div.searcher {
        position: relative
    }

        .mcd-menu-movile div.searcher input {
            height: 61px;
            border-radius: 0px;
            width: 100%;
            padding: 20px;
        }

        .mcd-menu-movile div.searcher button {
            top: 20px;
        }

    .main-frame {
        padding: 0px;
        padding-top: 100px;
    }

    .sidebar {
        position: fixed;
        width: 100%;
        height: 100vh;
        background-color: #fff;
        flex: none;
        justify-content: space-between;
        padding-top: 130px;
        display: none;
    }


    .categories, .menu-mobile, .menu-cuenta {
        width: 100%;
        position: relative;
    }

    .main-frame {
        padding-top: 0px;
        display: block;
    }

    .contingut {
        padding-top: 100px;
        display: block;
    }

    .categories h3 {
        display: none;
    }

    .breadcrumbs {
        margin-bottom: 0px;
    }

    .flex {
        display: flex;
        opacity: 0;
        transition: 0.2s all ease-in-out;
        animation: fadein 0.2s forwards;
    }

    @keyframes fadein {
        from {
            opacity: 0;
        }

        to {
            opacity: 1;
        }
    }
}

@media(max-width:585px) {

    .sidebar {
        overflow: scroll;
        overflow-x: hidden;
    }

    .main-content {
        margin: 20px auto;
    }

    header {
        padding: 0px;
    }

    .hamburger {
        flex: none;
        padding-left: 20px;
    }

    .store {
        flex: none;
    }

    .logo {
        flex: 1;
        justify-content: center;
    }

    .cart-list {
        display: none
    }

    .store {
        justify-content: flex-end;
        border-left: 1px solid #b4b4b4;
        padding-right: 20px;
    }

    .shop-items {
        display: flex;
        width: 20px;
        height: 20px;
        position: absolute;
        background-color: #e2850c;
        color: white;
        border-radius: 30px;
        padding: 2px;
        bottom: 50%;
        left: 50%;
        font-size: 10px;
        padding-top: 5px;
        justify-content: center;
        align-items: center;
    }

    .store-price {
        margin-right: 0px;
    }

    .store-items span{
        display: none;
    }

    .searcher-m:after {
        border-right: none;
    }

    .searcher-m i {
        padding-left: inherit;
    }

    .searcher-m {
        border-left: 1px #b4b4b4 solid;
        display: none;
    }
}

@media(max-width:485px) {
    .main-image {
        flex: 1 1 100%;
        margin-bottom: 20px;
    }

    .main-details {
        margin: 20px 0;
    }
}

/*BANNER*/
.main-banner {
    position: relative;
    height: 485px;
    /* margin-bottom: 20px;*/
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    width: 100%;
}

.highlights {
    padding: 0 20px;
}

    .highlights h2 {
        display: none;
        text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.8);
    }

        .highlights h2:first-child {
            display: block;
        }


.main-banner div {
    text-align: left;
}

.main-banner h3 {
    color: #5b5b5f;
    font-weight: 300;
    font-size: 30px;
    margin-bottom: 0px;
    margin-top: 40px;
}

.main-banner h2 {
    margin-top: 0px;
    color: #000;
    font-weight: 400;
    font-size: 58px;
}

    .main-banner h2.bold {
        margin-top: 0px;
        margin-left: 10px;
        color: #000;
        font-weight: 600;
        font-size: 58px;
    }

.banner {
    position: absolute;
    margin-top: -30px;
    background-image: url("../img/home.jpg");
    background-size: cover;
    background-position: center;
    top: 0px;
    bottom: 0px;
    right: 0px;
    left: 0px;
    z-index: -1;
    overflow: hidden;
}

.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f9f9f9;
    position: absolute;
    left: 0px;
    right: 0px;
    top: 0px;
    bottom: 0px;
}

.top-bar-left {
    flex: 0 1 45%;
    text-align: center;
}

.top-bar-right {
    display: flex;
    padding: 20px;
    padding-left: 50px;
    margin: 0;
    align-items: center;
    flex: 0 1 55%;
    border-left: 1px solid #fff;
    background: #f8f8f8;
}

.main-top-bar {
    width: 100%;
    position: relative;
    height: 150px;
}

@media(max-width:1190px) {
    .top-bar {
        right: -20px;
    }

    .banner {
        right: -20px;
    }
}

@media(max-width:768px) {
    .top-bar-right {
        display: none;
    }

    .top-bar-left {
        flex: 0 1 100%;
        justify-content: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

@media(min-width:1601px) {
    .banner {
        background-repeat: no-repeat;
        background-color: #000;        
    }
}

@media(max-width:1200px) {
    div.categories h3 {
        font-size: 18px;
    }

    .main-banner h2 {
        font-size: 50px;
    }

    .main-banner h3, .main-banner h2 {
        margin-left: auto;
    }

    .main-banner {
        height: 400px;
    }
}

@media(max-width:992px) {
    .top-bar {
        right: 0px;
    }

    .banner {
        right: 0px;
    }

    .main-banner h2 {
        font-size: 45px;
    }

    .main-banner h3 {
        margin-top: 20px;
    }

    .main-banner {
        height: 460px;
    }
}
/*Triangle*/
.triangle {
    z-index: 1;
    position: absolute;
    top: -5px;
    left: -5px;
}

    .triangle:before {
        content: "";
        width: 0;
        height: 0;
        position: absolute;
        top: 0;
        left: 0;
        border-style: solid;
        border-width: 5rem 5rem 0 0;
        border-color: #e2850c transparent transparent transparent;
        z-index: -1;
    }

    .triangle span {
        font-size: 11px;
        font-weight: bold;
        color: #FFF;
        font-family: 'Roboto Condensed', sans-serif;
        text-transform: uppercase;
        text-align: center;
        line-height: 15px;
        transform: rotate(-45deg);
        -webkit-transform: rotate(-45deg);
        width: 60px;
        display: block;
        position: absolute;
        top: 10px;
        left: -12px;
    }

.triangleXL {
    z-index: 1;
    position: absolute;
    top: -5px;
    left: -5px;
}

    .triangleXL:before {
        content: "";
        width: 0;
        height: 0;
        position: absolute;
        top: 0;
        left: 0;
        border-style: solid;
        border-width: 7rem 7rem 0 0;
        border-color: #e2850c transparent transparent transparent;
        z-index: -1;
    }

    .triangleXL span {
        font-size: 14px;
        font-weight: bold;
        color: #FFF;
        font-family: 'Roboto Condensed', sans-serif;
        text-transform: uppercase;
        text-align: center;
        line-height: 18px;
        transform: rotate(-45deg);
        -webkit-transform: rotate(-45deg);
        width: 60px;
        display: block;
        position: absolute;
        top: 15px;
        left: -7px;
    }
/*SMALL SIZE*/
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, 100px);
    grid-gap: 2.5rem;
    margin-top: 20px;
    justify-content: space-around;
}
    /*.grid article{margin-right:30px;}
.grid article:last-child{margin-right:0px;}*/
    .grid:after {
        content: "";
        flex: auto;
    }

@media (max-width:768px) {
    .grid {
        grid-gap: 1.5rem;
    }
}

@media(max-width:585px) {
    .grid {
        grid-gap: 1rem;
    }
}

article:hover {
    cursor: pointer;
    transition: all 0.5s ease-in-out;
}

article a {
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
}

article {
    width: 90px;
    /* margin:20px;
  margin-left:0px;*/
    position: relative;
    transition: all 0.5s ease-in-out;
}

.portrait {
    height: 120px;
    overflow: hidden;
    background-color: #fff;
}



.title {
    min-height: 30px;
    top: 0px;
    max-height: 30px;
    font-size: 12px;
    transition: all 0.5s ease-in-out;
    margin: 5px 0;
    font-weight: 600;
    line-height: 1.25;
    display: -webkit-box;
    /* -webkit-line-clamp: 2;*/
    -webkit-box-orient: vertical;
    overflow: hidden;
}

article:hover .title {
    max-height: 200px;
    /* -webkit-line-clamp: 10;*/
}

.prize {
    color: #e2850c;
    font-weight: 600;
    font-size: 14px;
}
/*Cookies*/
#cookies {
    position: fixed;
    left: 0px;
    right: 0px;
    bottom: 0px;
    width: 100%;
    text-align: center;
    min-height: 75px;
    background: rgba(28,35,41,0.9);
    /* background: repeating-linear-gradient( -55deg, #161718, #161718 10px, #292929 10px, #292929 20px ); */
    color: #fff;
    z-index: 11;
    -webkit-box-shadow: -1px 2px 25px -1px rgba(0,0,0,0.26);
    -moz-box-shadow: -1px 2px 25px -1px rgba(0,0,0,0.26);
    box-shadow: -1px 2px 25px -1px rgba(0,0,0,0.26);
}

.cookies {
    width: 100%;
    position: absolute;
    top: 50%;
    padding: 20px;
    transform: translateY(-50%);
    font-family: "Raleway", sans-serif !important;
    font-size: 12px;
    /* text-shadow: 2px 2px 4px #000000; */
}

    .cookies a {
        color: #e2850c !important;
        text-decoration: none;
    }
