/* Text color */

.text--black {
    color: #000000;
}

.text--dark-grey {
    color: #b0b0b0;
}

.text--grey {
    color: #c7c7c7;
}

.text--light-grey {
    color: #f9f9f9;
}

.text--white {
    color: #ffffff;
}

/* .text--black:hover{
    color: #b0b0b0;
} */

/* Background color */

.background--black {
    background-color: #000000;
}

.background--dark-grey {
    background-color: #b0b0b0;
}

.background--grey {
    background-color: #c7c7c7;
}

.background--light-grey {
    background-color: #f9f9f9 !important;
}

.background--white {
    background-color: #ffffff !important;
}

.background--transparent {
    background-color: transparent;
}

/* Box shadow */

.shadow {
    box-shadow: 0px 7px 7px -7px rgba(0, 0, 0, 0.12);
}

/* Label "NEW" */
a:hover label {
    color: initial;
}

/* Body background */

body {
    background-color: #f5f5f5;
}