﻿@media only screen and (max-width: 480px){
    .content.dual-content {
        flex-direction: column !important;
        width: calc(100vw - 2em);
    }

    .content{
        margin: 0 !important;
        padding: 0 0 !important;
        max-height: unset !important;
    }

    .dual-content.divider > div:first-of-type::after {
        right: 0;
        background-color: var(--neutral);
        height: .2em;
        bottom: -4dvh;
        width: 100%;
        border-radius: .1em;
    }

    .dual-content .left{
        margin-bottom: 4dvh !important;
    }

    .dual-content .right{
        margin: 4dvh 0 !important;
    }

    .warningsMobile i {
        text-align: center;
        margin: 0;
    }

    .table .filter {
        position: relative;
        /*overflow: hidden;*/
        transition: height ease-in-out .5s;
    }

    .table .filter:not(.expanded) {
        height: 50px !important;
        transition: height ease-in-out .5s;
    }

    .table .filter::after {
        content: "\f0b0";
        font-family: var(--fa-style-family, "Font Awesome 6 Free");
        font-weight: var(--fa-style, 900);
        position: absolute;
        width: calc(100% + 6px);
        height: calc(100% + 6px);
        background-color: var(--alt-light);
        top: -3px;
        left: -3px;
        display: flex;
        font-size: 30px;
        align-items: center;
        justify-content: center;
    }

    .table .filter.formatted::after {
        content: none !important;
    }

    .table .filter.formatted .filterActivator {
        position: absolute;
        width: 100%;
        height: 100%;
        background-color: var(--alt-light);
        top: 0;
        left: 0;
        display: flex;
        font-size: 18px;
        font-weight: 600;
        align-items: center;
        justify-content: center;
    }

    .table .filter .filterHider {
        width: 100%;
        text-align: center;
        font-size: 1.2em;
        font-weight: 600;
        padding-bottom: .5em;
        border-bottom: 1px solid var(--light);
    }

    .table .grid {
        z-index: 2;
        background-color: var(--light);
    }

    .table:has(.filter.expanded) .grid {
        height: 50px !important;
    }
}