/*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: 2;
    background-color: white;
    width: var(--width);
    height: 124px;
}

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


/* —————————————————————————————————————————————————— */
/* MOBILE 768px —————————————————————————————————————— */

@media only screen and (max-width:960px) {

    .grid-foot{
        display: none;
    }
}

