<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.menuv2{
    width: 100%;
    background-color: #fafafaf5;
    height: 55px;
}

.menuv2_content {
    position: relative;
    display: flex;
}

.nos_rayon {
    display: block;
    padding: 15px;
    background-color: #d82e30;
    color: white;
    border: none;
    cursor: pointer;
}

.nav_cats {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #f9f9f9;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
}

.nav_cats ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.nav_cats li {
}

.nav_cats li button {
    display: block;
    padding: 15px;
    width: 100%;
    background-color: #e2e2e2;
    color: black;
    border: none;
    text-align: left;
    cursor: pointer;
    font-weight: 600;
}
.mega_menu {
    display: none;
    position: absolute;
    top: 0;
    left: 100%;
    margin-left: 0px; /* Aligns with li */
    background-color: #f9f9f9;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1;width: 75vw;
}

.mega_menu_content {
    padding: 20px;
    justify-content: center;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
    margin-left: 0px;
}

.mega_menu_content h3 {
    margin-top: 0;
}

.mega_menu_content ul {
    list-style-type: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* justify-content: right; */
    width: max-content;
    margin: auto;
    text-align: justify;
}

.mega_menu_content ul li {
    width: 100%; /* Make the list items take full width */ 
    margin-bottom: 10px;
}

.mega_menu_content ul li a {
    color: #333;
    text-decoration: none;
    font-weight: 900;
}

.mega_menu_content ul li a:hover {
    text-decoration: underline;
}

.nos_rey:hover .nav_cats {
    display: block;
}

.nav_cats li:hover .mega_menu {
    display: block;
    top: 0;
}
.titlemenue a{

    color: #d82e30;
    font-size: larger;
    font-weight: 700;
}
.titlemenue{
    text-decoration: none;
}
.btn .nos_rayon:hover{
    color: white;
}
@media screen and (max-width: 600px){
    .menuv2{
        display: none;
    }
}</pre></body></html>