/* MEDIA QUERIES*/
:root {
    --breackpoint-mobile: 576px;
    --breackpoint-tablet: 768px;
    --breackpoint-large-tablet: 1024px;
    --breackpoint-laptop: 1200px;
    --breackpoint-desktop: 1600px;
    --breackpoint-large-desktop: 1920px;
    --breackpoint-xl-desktop: 2560px;
}

/* MARGIN */
body{
    --container-space : 15vw;
}

/* INITIAL LIST STYLE*/
.nav ul {
    list-style: none;
    margin-bottom: 0;
}
.list-unstyled {
    list-style: none;
    margin: 0;
    padding: 0;
}
ul{
    list-style: none;
}

a:where(:not(.wp-element-button)) {
    text-decoration: none !important;
}
a:-webkit-any-link {
    color: inherit;
}

/* HIDE SCROLLBAR */
.hide-scrollbar {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.hide-scrollbar::-webkit-scrollbar {
    display: none;
}
.no-scroll {
    overflow: hidden;
}
strong {
    font-weight: 500;
}

/* BKG */
body.single{
    background-color: var(--wp--preset--color--sable);
}

/* PAGE QUARTIERS */
.page-les-quartiers .kk-star-ratings{
    display: none;
}
/* MEDIA QUERIES SAMPLES */
@media (max-width: var(--breackpoint-xl-desktop)) {
}
@media (max-width: var(--breackpoint-large-desktop)) {
}
@media (max-width: var(--breackpoint-desktop)) {
    body{
        --container-space : 10vw;
    }
}
@media (max-width: var(--breackpoint-laptop)) {
}
@media (max-width: var(--breackpoint-large-tablet)) {
}
@media (max-width: var(--breackpoint-tablet)) {
    body{
        --container-space : 1.33em;
    }
}
@media (max-width: var(--breackpoint-mobile)) {   
}