.cookies{
    display: none;
}
.cookies.show{
    display: block;
}
.cookies_container {
    width: 700px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    background-color: white;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 4px;
    align-items: center;
    justify-content: center;
}
.cookies_container .cookies_inside {
    padding: 15px 4px;
    border: 1px solid var(--Gray);
}
.cookies_container .cookies_inside .title{
    text-align: center;
    font-family: 'DaciaBlock';
    color: var(--Green);
    font-size: 19px;
    margin: 16px;
}
.cookies_container .cookies_inside .normaleText{
    font-family: 'ReadMedium';
    text-align: left;
    font-size: 13px;
    margin: 10px;
}
.cookies_container .cookies_inside .normaleText span{
    font-family: 'DaciaBlock';
    color: var(--Green);
}
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); 
    z-index: 999;
}
.cookies_btn_zone{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin: 35px 0 5px 0;
}
.cookies_btn{
    width: 162px;
    height: 31px;
    background-color: white;
    border: 1px solid var(--Green);
    color: var(--Green);
    font-family: 'ReadMedium';
    cursor: pointer;
}
.cookies_btn.close{
    background-color: var(--Green);
    color: white;
    font-family: 'ReadLight';
}


/* ________ ____--           --____ ________ */
/* ____ ----------carrosserie-----------____ */
/* ________ ____--           --____ ________ */
.miniBlog_zone{
    width: var(--rn-width1);
    margin: 60px auto;
}
.miniBlog_zone .minTitle{
    font-family: 'DaciaBlock';
    color: var(--Green);
    font-size: 25px;
}
.miniBlog_zone .normaleText{
    font-family: 'ReadMedium';
    font-size: 18px;
}