/*GRID-------------------------*/


.grid-foot {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(1, 1fr);
    /* padding-top: 20px; */
    /* background-color: rgba(0, 204, 255, 0.5); */
    column-gap: var(--column-gap);
    position: fixed;
    bottom: 0px;
    z-index: 10;

    background-color: white;
    /* background-color:blueviolet; */
    /* opacity: 0.5; */
    
    width: var(--width);
    padding-bottom: 1rem;

}

.grid-foot-1-1 {
    grid-column: 1/ span 1;
    display: flex;
    border-top: 1px solid var(--color-line);
    padding-top: 1rem;
}


/* —————————————————————————————————————————————————— */
/* MOBILE 960px —————————————————————————————————————— */

@media only screen and (max-width:960px) {
    
    .grid-foot {
        /* display: none; */
        display: list-item;
        position: static;
        z-index:0;
    }
    
    .grid-foot-1-1 {
        display: inline-block;
        /* border-top: 1px solid var(--color-line); */
        /* padding-top: 1rem; */
    }
}