﻿html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
    max-width: 95%;
}

.round-box {
    border: 1px solid hsla(9,0%,78.8%,.966);
    background-color: rgba(248,246,246,.611764705882353);
    width: 500px;
    height: 500px;
    margin: auto;
    padding: 15px;
    border-radius: 10px;
}

.title {
    margin-bottom: 50px;
}

.h3 {
    font-size: 24px;
    font-family: inherit;
    font-weight: 400;
    line-height: 1.1;
    color: inherit;
    margin-top: 20px;
    margin-bottom: 10px;
}

label {
    display: inline-block;
    max-width: 100%;
    margin-bottom: 5px;
    margin-top: 5px;
    font-weight: 700;
}

.form-control {
    display: block;
    height: 34px;
    width: 100%;
    padding: 6px 6px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    border: 1px solid #b3b3b3;
    border-radius: 5px;
}

.form-group {
    margin-bottom: 15px;
    margin-left: 5%;
    margin-right: 5%;
}

-row-form {
    flex-direction: row;
    justify-content: start;
    margin-top: 8px;
    display: flex;
    margin-right: 0px;
}

.row {
    flex-direction: row;
    justify-content: space-between;
    margin-top: 8px;
    display: flex;
    margin-right: 0px;
    width: 100%;
    padding-left: 30px;
    padding-right: 30px;
}

.row-client-card {
    flex-direction: row;
    justify-content: end;
    margin-top: 0px;
    display:block;
    width: 100%;
}

.row-filter {
    flex-direction: row;
    justify-content: end;
    margin-top: 8px;
    display: inline-flex;
    margin-right: 0px;
    width: 100%;
    vertical-align: middle;
}

.row-client-bar, .row-integradores-bar {
    flex-direction: row;
    justify-content: end;
    margin-top: 8px;
    display: inline-flex;
    margin-right: 0px;
    width: 100%;
    vertical-align: middle;
}


.cancel-row {
    flex-direction: row;
    align-items: initial;
    margin-top: 30px;
    display: flex;
    margin-right: 0px;
}

.btn-primary {
    color: #fff;
    background-color: #337ab7;
    border-color: #2e6da4;
    width: fit-content;
}

.btn-cancel {
    color: #fff;
    background-color: #d9534f;
    border-color: #d43f3a;
    width: fit-content;
    margin-right: 10px;
}

.image {
    width: 150px;
    height: 38.44px;
    padding-left: 10px;
    padding-right: 0px;
}

.forgot-password {
    color: #337ab7;
    border-color: transparent;
    background-color: inherit;
    margin-top: 30px;
}

#menu__toggle {
    opacity: 0;
}

    #menu__toggle:checked + .menu__btn > span {
        transform: rotate(45deg);
    }

        #menu__toggle:checked + .menu__btn > span::before {
            top: 0;
            transform: rotate(0deg);
        }

        #menu__toggle:checked + .menu__btn > span::after {
            top: 0;
            transform: rotate(90deg);
        }

    #menu__toggle:checked ~ .menu__box {
        left: 0 !important;
    }

.menu__btn {
    position: fixed;
    top: 20px;
    left: 20px;
    width: 26px;
    height: 26px;
    cursor: pointer;
    z-index: 2;
}

    .menu__btn > span,
    .menu__btn > span::before,
    .menu__btn > span::after {
        display: block;
        position: absolute;
        width: 100%;
        height: 2px;
        background-color: #616161;
        transition-duration: .25s;
    }

        .menu__btn > span::before {
            content: '';
            top: -8px;
        }

        .menu__btn > span::after {
            content: '';
            top: 8px;
        }

.menu__box {
    display: block;
    position: fixed;
    top: 0;
    left: -100%;
    width: 150px;
    height: 100%;
    margin: 0;
    padding: 80px 0;
    list-style: none;
    background-color: #ECEFF1;
    box-shadow: 2px 2px 6px rgba(0, 0, 0, .4);
    transition-duration: .25s;
    z-index: 1;
}

.menu__item {
    display: block;
    padding: 12px 12px;
    color: #333;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition-duration: .25s;
}

    .menu__item:hover {
        background-color: #CFD8DC;
    }

.collapsible {
    background-color: #777;
    color: white;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
}

    .active, .collapsible:hover {
        background-color: #555;
    }

.content {
    padding: 0 18px;
    display: none;
    overflow: hidden;
    background-color: #f1f1f1;
}


details > summary {
    list-style: none;
}

summary::after {
    content: "\002b";
    padding-right: 8px;
    font-size: 100%;
}

details[open] summary:after {
    content: "\002d";
    padding-right: 8px;
    font-size: 100%;
}


.chart-container {
    margin: 0 auto;
    width: 50%;
    height: 50%;
    max-width: 600px;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

    .dropdown-content a {
        color: black;
        padding: 12px 16px;
        text-decoration: none;
        display: block;
    }

        .dropdown-content a:hover {
            background-color: #f1f1f1;
        }

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown:hover .dropbtn {
    background-color: #f1f1f1;
}

.top-bar {
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 60px;
    background-color: #fff;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,.2), 0 6px 100px 0 rgba(0,0,0,.19);
}


.card-client {
    border-radius: 10px;
    filter: drop-shadow(5px 5px 4px rgb(181, 181, 181));
    width: 100%;
    height: 70px;
    background-color: #ffffff;
    padding-left: 10px;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-right: 10px;
    position: relative;
    z-index: 0;
    overflow: hidden;
    transition: 0.6s ease-in;
}

.card {
    width: 98%;
}

.menu-container {
    position: relative;    display: inline-block;
}

.menu-button {
    background-color: transparent; border-color: transparent; color: #000; padding: 10px; cursor: pointer; height:10px;
}

.menu {
    display: none; position: absolute; top: 100%; right: 50px; width: 200px;  background-color: #fff; border: 1px solid #ccc; z-index: 100;
}

.menu-item {
    padding-bottom: 10px;
    padding-left: 10px;
    padding-top: 10px;
    cursor: pointer;
}

.stacked-menu {
    position: absolute;
    top: -15px;
}

.stacked-menu-parent {
    position: relative;
}

.lds-dual-ring {
    display: inline-block;
    width: 15px;
    height: 15px;
}

    .lds-dual-ring:after {
        content: " ";
        display: block;
        width: 15px;
        height: 15px;
        margin: 8px;
        border-radius: 80%;
        border: 1px solid #fff;
        border-color: #555 transparent #555 transparent;
        animation: lds-dual-ring 1.2s linear infinite;
    }

@keyframes lds-dual-ring {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.sr-only {
    position: absolute;
    top: -30em;
}

table.sortable td,
table.sortable th {
    padding: 0.125em 0.25em;
    width: 8em;
}

table.sortable th {
    font-weight: bold;
    border-bottom: thin solid #888;
    position: relative;
}

    table.sortable th.no-sort {
        padding-top: 0.35em;
    }

    table.sortable th:nth-child(5) {
        width: 10em;
    }

    table.sortable th button {
        position: absolute;
        padding: 4px;
        margin: 1px;
        font-size: 100%;
        font-weight: bold;
        background: transparent;
        border: none;
        display: inline;
        right: 0;
        left: 0;
        top: 0;
        bottom: 0;
        width: 100%;
        text-align: left;
        outline: none;
        cursor: pointer;
    }

        table.sortable th button span {
            position: absolute;
            right: 4px;
        }

    table.sortable th[aria-sort="descending"] span::before {
        content: "↓";
        color: currentcolor;
        font-size: 100%;
        top: 0;
    }

    table.sortable th[aria-sort="ascending"] span::before {
        content: "↑";
        color: currentcolor;
        font-size: 100%;
        top: 0;        
    }

table.show-unsorted-icon th:not([aria-sort]) button span::before {
    content: "♢";
    color: currentcolor;
    font-size: 100%;
    position: relative;
    top: -3px;
    left: -4px;
}

table.sortable td.num {
    text-align: right;
}

table.sortable tbody tr:nth-child(odd) {
    background-color: #9896960d;
}

table.sortable th button:focus,
table.sortable th button:hover {
    padding: 2px;
    border: 0px solid currentcolor;
}

    table.sortable th button:focus span,
    table.sortable th button:hover span {
        right: 2px;
    }

table.sortable th:not([aria-sort]) button:focus span::after,
table.sortable th:not([aria-sort]) button:hover span::after {
    content: "↓";
    color: currentcolor;
    font-size: 100%;
    top: 0;
}

.modal {
    display: none;
    position: fixed; 
    z-index: 1; 
    padding-top: 100px; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: auto; 
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4); 
}


.modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
}


.close {
    color: #aaaaaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

    .close:hover,
    .close:focus {
        color: #000;
        text-decoration: none;
        cursor: pointer;
    }

.modal {
    display: none; 
    position: fixed; 
    z-index: 1; 
    padding-top: 100px; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: auto; 
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
}

.modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
}

.close {
    color: #aaaaaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}
.close:hover,
.close:focus {
    color: #000;        
    text-decoration: none;
    cursor: pointer;
}

.modal-window {
    position: fixed;
    background-color: rgba(255, 255, 255, 0.25);
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 999;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s;
}

    .modal-window:target {
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
    }

    .modal-window > div {
        width: 400px;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        padding: 2em;
        background: white;
    }

    .modal-window header {
        font-weight: bold;
    }

    .modal-window h1 {
        font-size: 150%;
        margin: 0 0 15px;
    }

.modal-close {
    color: #aaa;
    line-height: 50px;
    font-size: 80%;
    position: absolute;
    right: 0;
    text-align: center;
    top: 0;
    width: 70px;
    text-decoration: none;
}

    .modal-close:hover {
        color: black;
    }

.modalApp {
    display: none;
    position:absolute;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
    min-width: 750px;
   
}

.modalApp-content {
    background-color: #fefefe;
    top:0; left:0; right:0; bottom:0;
    margin: 2% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 50%;
    
}

.modalApp-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 10px;
    border-bottom: 1px solid #ccc;
}

    .modalApp-header .app-nome {
        font-weight: bold;
    }

.modalApp-body {
    padding-top: 10px;
}

.close {
    color: #aaaaaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

    .close:hover,
    .close:focus {
        color: #000;
        text-decoration: none;
    }

#loading-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.5);
    z-index: 9999;
}

.spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 8px solid #f3f3f3;
    border-top: 8px solid #3498db;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.logoutMenu {
    position: relative;
}

#logoutMenu-toggle {
    border: none;
    background: none;
    cursor: pointer;
}

#logoutMenu-items {
    display: none;
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    background-color: #fff;
    border: 1px solid #ccc;
    padding: 10px;
    z-index:99;
}

.logoutMenu:focus-within #logoutMenu-items {
    display: block;
}

#logoutMenu-items li {
    list-style: none;
}

    #logoutMenu-items li a {
        text-decoration: none;
        color: #333;
    }


#myProgress {
    width: 100%;
    background-color: grey;
}

#myBar {
    width: 1%;
    height: 5px;
    background-color: green;
}

.hide {
    display: none;
}

.myDIV:hover + .hide {
    display: block;
    color: red;
}


.sort-arrow {
    display: inline-block;
    margin-right: 4px; 
    vertical-align: middle;
}

    .sort-arrow::after {
        content: '\25B2';
        font-size: 12px; 
    }

    .sort-arrow.desc::after {
        content: '\25BC';
    }


.search-container{
    margin: 0px;
}

#search-bar{
    width:100%;
    padding:10px;
    font-size: 16px;
}

`.filter-section{
   
    margin-left:10px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #f9f9f9;
}

.hidden{
    display: none;
}

.text-with-ellipsis {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    position: relative;
}

.DestacaEdicao:hover {
    background-color: #e3f0ff;
    cursor: pointer;
    transition: background 0.2s;
}