/* ___________________________________________________________|Global Styles|____________________________________________________ */
* {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

body {
    overflow-x: hidden;
}

.progress {
    width: 100%;
    height: 16.8px;
    background: linear-gradient(#229544 0 0) left/0% 100% no-repeat #dbdcef;
    animation: progress-jgv380 2s infinite linear;
    border-radius: 12px;
}

@keyframes progress-jgv380 {
    100% {
        background-size: 100% 100%;
    }
}

.spinner {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: conic-gradient(#0000 10%, #229544);
    mask: unset;
    -webkit-mask: radial-gradient(farthest-side, #0000 calc(100% - 9px), #000 0);
    animation: spinner-zp9dbg 1s infinite linear;
}

@keyframes spinner-zp9dbg {
    to {
        transform: rotate(1turn);
    }
}

/* __________________________________________________________|Nav Bar|___________________________________________________________ */
.navBar {
    width: 100%;
    height: 60px;
    background-color: #229544;
    display: flex;
    align-items: center;
    animation: slide-top 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}


@keyframes slide-top {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(0px);
    }
}

.navBar img {
    width: 250px;
}

.logoRotateReturn {
    width: 50px !important;
    margin-top: 5px;
    margin-left: 15px;
    transition: transform 0.3s ease-in-out;
}

.logoRotateReturn:hover {
    transform: rotate(-90deg);
    cursor: pointer;
}

/* __________________________________________________|Container User Name And Button Insert|____________________________________________ */
.containerNameUser {
    margin-top: 15px;
    margin-left: 10px;
    display: flex;
    /* align-items: center; */
    flex-direction: space-between;
    flex-direction: column;
}

.nameUser {
    color: #ffff;
    width: max-content;
    padding: 4px 25px;
    border-radius: 12px;
    background-color: #229544;
    font-weight: bold;
    font-size: 20px;
    text-transform: uppercase;
    animation: slide-right 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    margin-left: 18px;
}

@keyframes slide-right {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(0px);
    }
}

.importExcel,
.novaImportacao {
    position: absolute;
    right: 1.5%;
    background-color: #229544;
    padding: 2.5px 20px;
    border: none;
    outline: none;
    font-size: 16px;
    text-transform: uppercase;
    color: #fff;
    text-transform: uppercase;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border-radius: 12px;
    cursor: pointer;
    animation: slide-left 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

.novaImportacao {
    display: none;
}

.importExcelLinhasNulas {
    position: absolute;
    right: 20%;
    background-color: red;
    padding: 2.5px 20px;
    border: none;
    outline: none;
    font-size: 16px;
    text-transform: uppercase;
    color: #fff;
    text-transform: uppercase;
    font-weight: bold;
    display: none;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border-radius: 12px;
    cursor: pointer;
    animation: slide-left 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

@keyframes slide-left {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(0px);
    }
}

.importExcel img,
.importExcelLinhasNulas img,
.novaImportacao img {
    width: 45px;
}

.importExcel:hover,
.importExcelLinhasNulas:hover {
    scale: 0.97;
    box-shadow: 2px 4px 4px 4px #0000002a;
}

/* __________________________________________________|Container Table And Loader|____________________________________________ */
.wrapperTable {
    display: none;
    /*manipulation*/
    width: 100%;
    flex-direction: column;
    overflow: scroll;
    height: 75vh;
    margin-bottom: 120px;
}

.wrapperTable .tableImport td {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cabecalhoTable {
    background-color: #229544;
    color: #fff;
    position: absolute;
    display: flex;
    text-transform: uppercase;
    width: 100%;
}

.tableImport {
    font-family: arial, sans-serif;
    border-collapse: collapse;
}

.tableImport tbody tr:nth-child(1) {
    display: none;
}

table {
    font-family: arial, sans-serif;
    border-collapse: collapse;
}

td,
th {
    border: 1px solid #dddddd;
    text-align: left;
    padding: 6.6px;
}

tr:nth-child(even) {
    background-color: #dddddd;
}

/* __________________________________________________|Container Input File XLS|____________________________________________ */
.containerCardAnexo,
.containerCardAnexoLinhasCorrigidas {
    width: 450px;
    height: 250px;
    box-shadow: 2px 4px 4px 4px #0000002a;
    border-radius: 20px;
    display: none;
    /*Manipulation*/
    align-items: center;
    justify-content: center;
    margin: 20px auto;
}

.containerCardAnexo.show,
.containerCardAnexoLinhasCorrigidas.show {
    display: flex;
    animation: scale-up-center 0.4s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}

@keyframes scale-up-center {
    0% {
        transform: scale(0.5);
    }

    100% {
        transform: scale(1);
    }
}

.containerCardAnexo.hide,
.containerCardAnexoLinhasCorrigidas.hide {
    animation: scale-up-down 0.4s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}

@keyframes scale-up-down {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(0);
    }
}

.wrapperInput,
.wrapperInputLinhasCorrigidas {
    border: solid 1px #80808060;
    width: 400px;
    height: 200px;
    border-radius: 12px;
}

.wrapperInput input,
.wrapperInputLinhasCorrigidas {
    border: solid 1px #80808060;
    width: 400px;
    height: 200px;
    border-radius: 12px;
    opacity: 0;
    cursor: pointer;
    z-index: 99;
    position: absolute;
    right: 36%;
}

.bi-upload,
.bi-check-circle {
    font-size: 100px;
    color: #229544;
    position: relative;
    left: 37%;
    top: 10%;
    cursor: pointer;
}

/* __________________________________________________|Container Count Insert lines|____________________________________________ */
.countInsert {
    display: none;
    margin-top: 10px;
    margin-bottom: 10px;
    width: max-content;
    animation: slide-right 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    align-items: center;
    justify-content: center;
    gap: 25px;
}

.countInsert p {
    background-color: #229544;
    padding: 10px 25px;
    border-radius: 12px;
    color: #fff;
}

.countInsert p:nth-child(2) {
    margin-left: 42px;
}

/* __________________________________________________|Container logs table|____________________________________________ */
.containerLogTableImport {
    margin: 10px 15px;
    display: none;
}

.headerImports {
    display: flex;
    border: 1px solid;
    align-items: center;
    justify-content: space-between;
    padding: 10px 25px;
    text-transform: uppercase;
    font-weight: bold;
    text-align: center;
    border-radius: 12px;
    margin-top: 10px;
}

/*________________________________________________________|historico de importacao|_______________________________*/
.historicoDeImportacao {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-top: 25px;
    margin-bottom: 25px;
    width: 100%;
    padding-inline: 15px;

}

.wrapperHistorico,
.wrapperHistoricoCabecalho {
    background-color: #c7c7c73f;
    border: 1px solid #adadad;
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding-block: 10px;
    padding-inline: 25px;
    font-weight: bold;
    border-radius: 12px;
    text-transform: uppercase;
    font-size: 12px;
}

.wrapperHistoricoCabecalho {
    background-color: #229544;
    color: #fff;
    margin-bottom: -2.5px;
}

.wrapperHistorico p:nth-child(2) {
    position: absolute;
    right: 50%;
}

.wrapperHistorico p:nth-child(3) {
    position: absolute;
    right: 27%;
}

.wrapperHistorico p:nth-child(4) {
    position: absolute;
    right: 27%;
    display: none;
}

.wrapperHistorico p:nth-child(5) {
    position: absolute;
    right: 9%;
}

.errosCorrecao {
    width: 300px;
    position: fixed;
    bottom: 10px;
    right: 5px;
    text-align: center;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background-color: #eeeeee;
    padding-block: 10px;
    border-radius: 12px;
    font-weight: bold;
}
.totalDeLinhas {
    border: 1px solid #c7c7c73f;
    width: 300px;
    position: fixed;
    bottom: 10px;
    left:5px;
    text-align: center;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background-color: #eeeeee;
    padding-block: 10px;
    border-radius: 12px;
    font-weight: bold;
}

.downloadErros {
    width: 250px;
    font-size: 16px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 5px;
    border-radius: 12px;
    border: 1px solid #adadad;
    background-color: rgb(226, 9, 9);
    color: #fff;
    cursor: pointer;
}

.buttonTotalDeLinhas {
    width: 250px;
    font-size: 16px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 5px;
    border-radius: 12px;
    border: 1px solid #adadad;
    background-color: #229544;
    color: #fff;
    cursor: pointer;
}

.totalDeLinhasComErro {
    display: flex;
}

.wrapperHistoricoCabecalho p:nth-child(2) {
    position: absolute;
    right: 51.5%;
}

.wrapperHistoricoCabecalho p:nth-child(3) {
    position: absolute;
    right: 26.5%;
}

.wrapperHistoricoCabecalho p:nth-child(4) {
    display: none;
    position: absolute;
    right: 31%;
}

.wrapperHistoricoCabecalho p:nth-child(5) {
    position: absolute;
    right: 5%;
}