
@media (max-width: 768px) 
{
    .modal-dialog > .modal-content .tab-content > .tab-pane {
        padding: 0 20px !important;
    }
    .col-sm-6 {
        margin-bottom:14px !important;
    }
    .tab-pane .tformrow:has(> .col-sm-6) {
        margin-bottom: 0;
    }
    .tab-pane .tformrow:last-of-type {
        /* margin-bottom: -14px !important; */
    }

    table.dataTable.dtr-inline.collapsed > tbody > tr > td:first-child:before, table.dataTable.dtr-inline.collapsed > tbody > tr > th:first-child:before {
        text-shadow: none;
        top: unset !important;
        margin-top: 6px;
    }
}



.menu {
    align-items: center;
    background-color: #303235;
    clip-path: polygon(-50% -1%, 0% -1%, 0% 101%, -50% 101%); /* Alterado para começar à esquerda */
    color: #f2f2f2;
    display: flex;
    flex-direction: column;
    font-family: sans-serif;
    font-size: 28px;
    height: 100%;
    position: absolute;
    top: 0;
    transition: clip-path 400ms cubic-bezier(0.4, 0, 0.2, 1),
        background-color 400ms cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
}

.active .menu {
    background-color: var(--main);
    clip-path: polygon(0% -1%, 100% -1%, 100% 101%, 0% 101%); /* Expande a partir da esquerda */
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw; /* 100% da largura da tela */
    height: 110vh; /* 100% da altura da tela */
    z-index: 9999;
    overflow: hidden;
}

.options {
    align-items: center;
    display: flex;
    flex-direction: column;
    margin-top: 60px;
    transform: scale(0.8);
    transition: transform 400ms cubic-bezier(0.4, 0, 0.2, 1);
}
.option {
    cursor: pointer;
    margin: 8px 0;
}
.option.selected {
    color: #ffffff;
    font-weight: 550;
}
.active .options {
    transform: scale(1);
}
.x {
    pointer-events: none;
    position: absolute;
    top: 0;
}
.top-bars {
    stroke: #303235;
    transition: stroke 400ms cubic-bezier(0.4, 0, 0.2, 1);
}
.active .top-bars {
    stroke: #f2f2f2;
}
.bar {
    transition: transform 400ms cubic-bezier(0.4, 0, 0.2, 1);
}
.bar1 {
    transform-origin: 190px 20.5px;
}
.bar2 {
    transform-origin: 190px 28.5px;
}
.active .bar1 {
    transform: translateY(8.6px) rotate(45deg);
}
.active .bar2 {
    transform: rotate(-45deg);
}
.menu-click-area {
    cursor: pointer;
    height: 40px;
    opacity: 0.3;
    position: absolute;
    right: 10px;
    top: 10px;
    width: 40px;
}

.phone .menu .fas.fa-users {
    font-size: inherit !important;
}
