﻿.grid-container {
    display: grid;
    /*//grid-template-columns: 1fr 1fr 1fr;*/
    grid-template-rows: auto 1fr auto;
    overflow: hidden;
    /*Let the craziness begin !!! grid-template-areas: "header header header" "title title footer" "main main main";*/
    /*@media screen and (max-width: 500px) {
            grid-template-columns: 1fr;
            grid-template-rows: 0.3fr 1fr auto 1fr;
            grid-template-areas: "header" "title" "main" "footer";
        }*/
}

.grid-item {
    /*color: #fff;
        background: skyblue;
        padding: 3.5em 1em;
        font-size: 1em;
        font-weight: 700;*/
}

.header {
    /*background-color: darken(skyblue, 60%);*/
    grid-area: header;
    /*padding: 1em;*/
}

.title {
    color: $gray;
    /*background-color: lighten(skyblue, 25%);*/
    grid-area: title;
}

.main {
    /*grid-area: main;*/
    padding: 0;
    overflow-x: hidden;
    overflow-y: hidden;
}



.SinScrollH570 {
    overflow: hidden !important;
}

@media (max-width: 750px) {
    .SinScrollH570 {
        overflow: auto !important;
    }
}



.items {
    position: relative;
    width: 100%;
    overflow-x: scroll;
    overflow-y: hidden;
    white-space: nowrap;
    transition: all 0.2s;
    transform: scale(0.98);
    will-change: transform;
    user-select: none;
    cursor: pointer;
    padding-left: 15px;
}

    .items.active {
        background: rgba(255,255,255,0.3);
        cursor: grabbing;
        cursor: -webkit-grabbing;
        transform: scale(1);
    }

.item {
    display: inline-block;
    height: 120px !important;
    /*background: skyblue;
        margin: 2em 1em;*/
    /*width: auto;*/
    max-width:300px;
    padding: 0px;
    margin-left: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
    /*@media screen and (max-width: 500px) {
            min-height: 200px;
            min-width: 200px;
        }*/
    box-shadow: 0px 0px 1px rgba(0,0,0,0.125), 0px 1px 3px rgba(0,0,0,0.2);
    border-radius: 5px;
}

    .item .articulo {
        width: 180px;
        text-overflow: ellipsis;
        overflow: hidden;
        max-height: 40px;
        min-height: 40px;
        white-space: normal;
    }
    .item .descripcion {
        width: 180px;
        text-overflow: ellipsis;
        overflow: hidden;
        max-height: 40px;
        min-height: 40px;
        white-space: normal;
    }
    .item .precio {
        width: 180px;
        text-overflow: ellipsis;
        overflow: hidden;
        max-height: 40px;
        min-height: 40px;
        white-space: normal;
        font-size: 1.3rem;
    }

    .item .iconoNoDisponible {
        width: auto;
        height: 117px;
    }

    .item .imagenCont {
        max-width:120px;    
    }

    .item img {
        
        height: 120px;
        -moz-border-radius-bottomleft: 5px;
        -moz-border-radius-topleft: 5px;
        border-top-left-radius: 5px;
        border-bottom-left-radius: 5px;
    }


    