:root {
    --white-color: #fff;
    --black-color: #000;
    --text-color: #767976;
}

* {
    box-sizing: inherit;
}

html {
    font-size: 62.5%;
    line-height: 1.6rem;
    font-family: 'Roboto', sans-serif;
    box-sizing: border-box;
}

/*  */

.pd-top-60 {
    padding-top: 60px;
}

/* Responsive */

.grid__row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -5px;
    margin-right: -5px;
}

.grid__row-header {
    display: flex;
    flex-wrap: wrap;
    margin-left: -27px;
    margin-right: -27px;
}

.grid__column-5 {
    padding-left: 27px;
    padding-right: 27px;
    width: 20%;
}

/* Menu */


.grid__column-25,
.grid__column-menu-right,
.grid__column-menu-left {
    padding-left: 16px;
    padding-right: 16px;
    width: 25%;
}

/* Product */

.product__new {
    position: absolute;
    background-color: #fff;
    font-size: 1.3rem;
    width: 50px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    left: 20px;
    color: #666;
}

.product__sale {
    position: absolute;
    background-color: #fff;
    font-size: 1.3rem;
    width: 50px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    left: 20px;
    color: rgb(255, 0, 0);
}

