.fc_manufacturing_reports_menu {
    display: flex;
    justify-content: center;
    border-bottom: 2px solid #DC093B;
    gap: clamp(10px, 2vw, 30px);
}

.fc_manufacturing_reports_menu .mfg_submenu {
    display: none;
    list-style: none;
    padding: 0;
}

.fc_manufacturing_reports_menu ul.mfg_submenu li::before {
    content: none;
}

.fc_manufacturing_reports_menu .term {
    position: relative;
    height: 100%;
}

.fc_manufacturing_reports_menu .term > a {
    padding: 20px 10px;
    text-decoration: none;
    color: black;
    height: 100%;
    display: block;
}

.fc_manufacturing_reports_menu > .term:hover > a, .fc_manufacturing_reports_menu > .term:hover > .mfg_submenu > li > a:hover {
    background: #DC093B;
    color: white;
}

.fc_manufacturing_reports_menu > .term > .mfg_submenu {
    flex-direction: column;
    position: absolute;
    background: white;
    width: min(90vw, 600px);
    z-index: 2;
    margin: 0;
}

.fc_manufacturing_reports_menu > .term:hover > .mfg_submenu {
    display: flex;
}

.fc_manufacturing_reports_menu > .term > .mfg_submenu > li {
    padding: 0;
    margin: 0;
}

.fc_manufacturing_reports_menu > .term > .mfg_submenu > li > a {
    padding: 20px 30px;
}

.fc_manufacturing_reports_menu > .term > .mfg_submenu > li > a {
    display: block;
}

@media (max-width: 800px) {

    .fc_manufacturing_reports_menu {
        flex-direction: column;
        gap: 0;
        border: none;
    }

    .fc_manufacturing_reports_menu .mfg_submenu {
        display: flex;
        flex-direction: column;
        position: relative !important;
    }

    .fc_manufacturing_reports_menu > .term:hover > a {
        color: black;
        background: white;
    }

    .fc_manufacturing_reports_menu a,
    .fc_manufacturing_reports_menu > .term > .mfg_submenu {
        width: 100%;
        box-sizing: border-box;
    }

    .fc_manufacturing_reports_menu span {
        background: center / 19px 12px no-repeat url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='19' height='12' fill='none'%3e%3cpath fill='%23BC133E' fill-rule='evenodd' d='M18.6 2.2 16.5 0l-7 6.8L2.8.1.6 2l9 9 9-9Z' clip-rule='evenodd'/%3e%3c/svg%3e");
        position: absolute;
        top: 0;
        right: 0;
        transition: .3s;
        padding-inline: 50px;
        padding-block: 32px;

    }

    .fc_manufacturing_reports_menu .term.clicked > span {
        transform: rotate(-180deg);
    }

    .fc_manufacturing_reports_menu .term ul {
        max-height: 0;
        transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
        overflow: hidden;
    }

    .fc_manufacturing_reports_menu .term.clicked ul {
        max-height: 500px;
        transition: max-height 0.5s ease-in-out;
    }

    .fc_manufacturing_reports_menu .term > a {
        padding: 20px 25px;
    }

    .fc_manufacturing_reports_menu > .term > .mfg_submenu > li > a {
        padding: 20px 35px;
    }

    .fc_manufacturing_reports_menu .term > a {
        border-bottom: 2px solid #DC093B;
    }
}