/* ___________________________________________________________|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;
    height: 100vh;
}

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

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

.progress {
    position: relative;
    width: 89.6px;
    height: 89.6px;
    border-radius: 50%;
    border: 4.5px solid #229544;
    box-sizing: content-box;
}

.progress:before {
    content: "";
    position: absolute;
    width: 4.5px;
    height: 38.1px;
    top: 9px;
    left: 42.6px;
    background: #229544;
    border-radius: 2.2px;
    transform-origin: 2.25px 37px;
    animation: progress-t59zy9 2s linear infinite;
}

.progress:after {
    content: "";
    position: absolute;
    width: 4.5px;
    height: 24.6px;
    top: 22.4px;
    left: 42.6px;
    background: #229544;
    border-radius: 2.2px;
    transform-origin: 2.25px 23.5px;
    animation: progress-t59zy9 12s linear infinite;
}

@keyframes progress-t59zy9 {
    0% {
        tranform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


/* __________________________________________________________|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;
}

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

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

.importExcel,
.novaImportacao {
    position: absolute;
    right: 2.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,
.novaImportacao: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-x: hidden;
    overflow-y: scroll;
    height: 75vh;
    margin-left: 5px;
}

.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: 98.6%;
}

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

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

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

thead td:nth-child(1) {
    width: 150px !important;
}

thead td:nth-child(2) {
    width: 350px !important;
}

thead td:nth-child(3) {
    width: 350px !important;
}

thead td:nth-child(4) {
    width: 150px !important;
}

thead td:nth-child(5) {
    width: 322px !important;
}

tr td:nth-child(1) {
    width: 150px !important;
}

tr td:nth-child(2) {
    width: 350px !important;
}

tr td:nth-child(3) {
    width: 350px !important;
}

tr td:nth-child(4) {
    width: 150px !important;
}

tr td:nth-child(5) {
    max-width: 322px !important;
}



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;
}


.planilhasUpdatadas {
    background-color: #d4d4d4;
    width: 270px;
    padding: 5px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    position: fixed;
    bottom: 10px;
    right: 10px;
}

.planilhasUpdatadas p {
    font-weight: bold;
    margin-top: 15px;
}

.planilhasUpdatadas button {
    margin: 10px auto;
    padding: 10px 15px;
    outline: none;
    border: 1px solid #fff;
    background-color: #229544;
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 12px;
}

.planilhasUpdatadas button:hover {
    scale: 0.95;
    cursor: pointer;
}

.loader {
    background-color: #f0f0f0fd;
    width: 450px;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-radius: 12px;
    position: fixed;
    top: 25%;
    left: 35%;
    padding-block: 25px;
    gap: 50px;
}

/*________________________________________________________|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%;
}