#filtro-pedidos {
    display: flex;
    margin-top: 30px;
}

.filtro-pedido {
    display: flex;
    align-items: center;
    padding: 10px;
    background-color: white;
    box-shadow: 0 0 1px #5c5c5c;
}

.filtro-pedido span {
    color: #5050f3;
    font-size: 20px;
    margin-right: 10px;
}

.filtro-pedido input,
.filtro-pedido select {
    border: 0;
    outline: 0;
    font-size: 15px;
    font-family: "Roboto";
    font-weight: 400;
    color: rgb(100, 100, 100);
    width: 100%;
}

.filtro-pedido:nth-child(1) {
    width: 300px;
    margin-left: 10px;
}

.filtro-pedido:nth-child(2) {
    width: 220px;
}

/* ===== Scrollbar CSS ===== */
/* Firefox */
.scroll-different {
    scrollbar-width: auto;
    scrollbar-color: #cfcfcf #ffffff;
}

/* Chrome, Edge, and Safari */
.scroll-different::-webkit-scrollbar {
    width: 12px;
}

.scroll-different::-webkit-scrollbar-track {
    background: #ffffff;
}

.scroll-different::-webkit-scrollbar-thumb {
    background-color: #cfcfcf;
    border-radius: 14px;
    border: 3px solid #ffffff;
}

/*geral*/
* {
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;
}
body {
    height: 100vh;
    margin: 0px;
    background-color: #f8f8f8;
}

/*header*/
.header {
    height: 9vh;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 40px 0px 10px 0px;
}

.header-menu {
    display: none;
    color: white;
}

.arrow-back {
    display: none !important;
}

.icon {
    height: 20vh;
    width: 15%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon img {
    width: 250px;
}

.search {
    width: 60%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.searchBorder {
    width: 45%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 28px;
    border: 2px solid #6601F9;
    padding: 15px;
}

.fa-search {
    color: #6601F9;
    padding-left: 5px;
    font-size: larger;
}

.searchBar {
    background-color: transparent;
    border: none;
    width: 100%;
    font-family: "Roboto", sans-serif;
    font-size: 13px;
    outline: 0;
    margin-left: 10px;
}
.user {
    width: 30%;
    height: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    background-color: #6601F9;
    padding: 15px;
}

@media only screen and (max-width: 768px) {
    .user {
        width: 60%;
    }

    .icon {
        width: 180px;
    }

    .icon > img {
        width: 180px;
    }
}

.user p {
    margin: 0;
    padding: 0;
}

#user-awards {
    width: 60%;
    padding: 0 10px 0 0;
}

#awards-money {
    color: white;
    margin-bottom: 5px;
}

#bar-awards {
    display: flex;
    align-items: center;
}

#bar-awards i {
    font-size: 17px;
    margin-right: 10px;
    color: cyan;
}

#bar {
    width: 100%;
    height: 10px;
    background-color: white;
    border-radius: 25px;
}

#bar-content {
    width: 20%;
    height: 10px;
    background-color: gold;
    border-radius: 25px;
}

.medal-gem {
    width: 22px;
    height: auto;
    aspect-ratio: 1/1;
    margin-right: 10px;
}

#user-info {
    display: flex;
    align-items: center;
}

#profile-img {
    width: 40px;
    height: 40px;
    background-image: url("../IMG/no-profile-photo.png");
    background-position: center;
    background-size: cover;
    border-radius: 50%;
    cursor: pointer;
}

#name-profile {
    margin-left: 10px;
    color: white;
}

#profile-options {
    margin-left: 10px;
}

#profile-options i {
    color: white;
    margin-left: 5px;
    font-size: 20px;
    transition: 0.3s color;
    cursor: pointer;
}

.notifies {
    height: inherit;
    display: flex;
    align-items: center;
}

.options-down:hover {
    color: cyan !important;
}

.notifies:hover {
    color: gold !important;
    font-size: 25px;
    animation: bellshake 0.5s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
}

@keyframes bellshake {
    0% {
        transform: rotate(0);
    }
    15% {
        transform: rotate(5deg);
    }
    30% {
        transform: rotate(-5deg);
    }
    45% {
        transform: rotate(4deg);
    }
    60% {
        transform: rotate(-4deg);
    }
    75% {
        transform: rotate(2deg);
    }
    85% {
        transform: rotate(-2deg);
    }
    92% {
        transform: rotate(1deg);
    }
    100% {
        transform: rotate(0);
    }
}
.avatar {
    height: inherit;
    display: flex;
    align-items: center;
    padding-right: 30px;
    padding-left: 9px;
}
.fa-user-alt {
    border-radius: 40px;
    margin-right: 5px;
}

/*nav lateral*/
.container {
    width: 100%;
    display: flex;
    margin: 0px!important;
}



.nav {
    width: 25vw;
    height: max-content;
    display: flex;
    flex-direction: column;
    padding-top: 40px;
    position: relative;
    margin-right: 20px;
}

.item-nav {
    display: flex;
    padding-top: 10px;
    padding-bottom: 10px;
    align-items: center;
    transition: all 0.8s;
    margin-bottom: 5px;
}

.item-nav:hover,
.item-nav.active {
    padding-left: 20px;
}
.item-nav.active > .item-nav-text {
    color: #1111bd;
}

#icon-menu {
    font-size: 25px;
    padding-left: 5%;
    color: #6601F9;
    cursor: pointer;
    margin-top: 2px;
}

.nav_icon {
    width: 32px;
    height: auto;
    margin-left: 5%;
}

.item-nav-text {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 19px;
    color: black;
    font-weight: 500;
    text-decoration: none;
    padding-top: 5px;
    margin-left: 7px;
    transition: 0.3s color;
}

.item-nav-text > img {
    transition: all 0.4s ease;
    transform: rotate(-90deg);
}

.item-nav.active > .item-nav-text > img {
    transform: rotate(0deg);
}

.item-nav-text:hover {
    color: #1111bd;
}

.sub-category {
    width: 100%;
    border-radius: 10px;
    height: 0px;
    gap: 10px;
    display: flex;
    align-items: center;
    flex-direction: column;
    transition: height 0.8s ease;
    overflow: hidden;
    margin-left: 40px;
}

.sub-category-7 {
    top: 560px;
    left: 60px;
    width: 120px;
}

.sub-category-6 {
    top: 420px;
    left: 60px;
    width: 120px;
}

.sub-category-5 {
    top: 355px;
    left: 60px;
    width: 120px;
}

.sub-category-4 {
    top: 285px;
    left: 50px;
    width: 120px;
}

.sub-category-3 {
    top: 220px;
    left: 80px;
    width: 120px;
}

.sub-category-9 {
    width: 140px;
}

.sub-category-11 {
    width: 140px;
}

.sub-category > a {
    padding-left: 5px;
    color: black;
    width: 100%;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.4s ease;
    border-bottom: 1px solid #d6d6d6;
    padding-bottom: 5px;
}

.sub-category > a:hover {
    color: #1111bd;
    border-color: #5c5c5c;
}

.sub-category-open-one {
    height: 45px;
}

.sub-category-open-two {
    height: 80px;
}

.sub-category-open-three {
    height: 108px;
}

.sub-category-open-four {
    height: 138px;
}

/*footer*/
.footer {
    display: flex;
    flex-direction: column;
    justify-content: end;
    gap: 2px;
    align-items: center;
    margin-top: 120px;
    padding-bottom: 40px;
}
#feedback,
#terms {
    font-size: 16px;
    color: rgb(179, 179, 179);
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}
.copyright,
.love {
    font-size: 14px;
    font-weight: 600;
}
.love {
    margin-bottom: 15px;
}

.contents {
    width: 75vw;
    height: relative;
    display: flex;
    flex-direction: column;
    margin-top: 30px;
}
.titulo {
    display: flex;
    align-items: center;
    margin-top: 12px;
    color: #6601F9;
}
.titulo .material-icons-outlined {
    margin-right: 8px;
    color: #6601F9;
}

#icon-config {
    font-size: 30px;
    width: 40px;
}
.text-title {
    font-weight: 900;
    margin-left: 8px;
}
.text-config {
    font-size: 1rem;
    color: rgb(114, 114, 114);
    font-weight: 300;
    width: 60vw;
}

.container-add {
    width: 90%;
}

.new-item a {
    text-decoration: none;
    color: black;
    display: flex;
    align-items: center;
    padding: 15px;
}

.new-item a:hover {
    color: rgb(0, 197, 0);
}

.new-item p,
.nav-item span {
    font-size: 18px;
    font-weight: 500;
}

.new-item p {
    margin: 0;
    margin-top: 1px;
    margin-left: 15px;
}

.space-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card {
    /* margin-top: 30px;
    margin-left: 5px; */
    width: 60vw;
    height: relative;
    padding: 2vh 2vw;
    background-color: transparent;
    border-radius: 10px;
    border: none!important;
}

.secundary-nav {
    display: flex;
    margin-top: 40px;
    overflow-y: auto;
    padding: 4px;
}

.secundary-nav button {
    font-family: "Roboto";
    font-size: 15px;
    font-weight: bold;
    background-color: unset;
    padding: 8px 15px 8px 15px;
    outline: 0;
    border: 0;
    border-radius: 5px;
    transition: 0.3s background-color, 0.3s color, 0.3s box-shadow;
    box-shadow: 0 0 5px #c7c7c7;
}

.secundary-nav a {
    margin-left: 20px;
}

.secundary-nav :nth-child(1) {
    margin-left: 0;
}

.secundary-nav button:hover {
    background-color: #6601F9;
    color: white;
    box-shadow: unset;
    cursor: pointer;
}

/* .linkActive button{
    background-color: #6601F9;
    color: white;
    box-shadow: unset;
} */

#periodo-container {
    margin-top: 30px;
}

#periodo {
    background-color: white;
    width: 50%;
    padding: 15px;
    /* border: solid 2px #1111bd; */
    box-shadow: 0 0 5px #d6d6d6;
    border-radius: 5px;
}

#dates-info {
    display: flex;
}

#dates-info p,
#dates-info span {
    margin: 0;
    color: #1111bd;
}

#dates-info p {
    margin-top: 2px;
    margin-left: 10px;
    font-size: 18px;
}

#dates {
    display: flex;
    margin-top: 20px;
    align-items: center;
}

#dates p {
    margin: 0;
    margin-left: 5px;
    font-size: 17px;
    color: #4e4e4e;
}

#dates input {
    margin: 0;
    padding: 0;
    height: auto;
    margin-left: 10px;
    font-size: 17px;
    font-family: "Roboto";
    font-weight: 300;
    border: solid 1px rgb(224, 224, 224);
    outline: 0;
    background-color: unset;
    padding: 5px;
}

#controle-info {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 50%;
    margin: 20px 0 30px 0;
}

#nitens-pagina label,
#nitens-pagina select {
    font-size: 12px;
}

#nitens-pagina label {
    color: #747474;
}

#nitens-pagina select {
    margin-left: 10px;
    border: 0;
    border-bottom: solid 1px #747474;
    background-color: unset;
    font-family: "Roboto";
}

#indicador-itens p {
    font-size: 12px;
    color: #747474;
}

#controls-page :nth-child(1),
#controls-page :nth-child(2) {
    color: #a8a8a8;
}

#controls-page span {
    cursor: pointer;
}

#controle-info div {
    display: flex;
}

.center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.item-nav-logo {
    display: none;
}

@media only screen and (max-width: 728px) {
    .header .icon,
    .header .search,
    .header #user-awards,
    .header #name-profile,
    .header #profile-options {
        display: none;
    }

    .header {
        background-color: #6601F9;
        height: unset;
        padding: 12px;
        justify-content: space-between;
    }

    .header .user {
        width: unset;
        background-color: unset;
        padding: 0;
    }

    .header-menu {
        display: block;
    }

    #profile-img {
        width: 30px;
        height: 30px;
    }
    /*
    .nav {
        display: none;
    }
*/
    .contents {
        width: 100%;
        padding-left: 12px;
        padding-right: 12px;
        margin-top: 0px;
    }

    .cards {
        width: 100%;
        /* margin: 3vw 0vw !important; */
    }

    .card {
        width: 100% !important;
        margin-left: unset !important;
    }

    .shopping-cart {
        width: unset !important;
    }

    .nav {
        position: fixed;
        top: 0;
        left: 0;
        background-color: white;
        width: 80%;
        max-width: 80%;
        min-height: 100vh;
        padding-top: 0px;
        height: max-content;
        z-index: 3;
    }

    .container-itens {
        height: 100vh;
        padding-top: 40px;
        padding-bottom: 80px;
        overflow: scroll;
    }

    .container-itens::-webkit-scrollbar {
        display: none;
    }

    .container-itens::-webkit-scrollbar-track {
        display: none;
    }

    .container-itens::-webkit-scrollbar-thumb {
        display: none;
    }

    .container-itens::-webkit-scrollbar-thumb:hover {
        display: none;
    }

    .nav-container {
        position: fixed;
        background-color: rgba(0, 0, 0, 0.6);
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 2;
    }

    .arrow-back {
        display: flex !important;
        margin-top: 20px;
    }

    .nav-hidden {
        display: none;
    }

    .text-config {
        width: unset;
    }

    .item-nav-logo {
        display: block;
        width: 120px;
        margin-bottom: 20px;
        margin-left: 30px;
    }

    .item-nav-logo > img {
        width: 100%;
    }

    .item-nav {
        margin-bottom: 10px;
    }
}

/*ModalHeader*/
#modal {
    overflow-y: auto;
    max-height: 480px;
}

#modal::-webkit-scrollbar {
    width: 10px;
}

#modal::-webkit-scrollbar-thumb {
    background: #6601F9;
    border-radius: 20px;
}

#modal::-webkit-scrollbar-track {
    background: rgb(255, 255, 255);
}

#modal.hide,
#fade.hide {
    opacity: 0;
    pointer-events: none;
}

#modal.hide {
    top: 0;
}

#fade,
#modal {
    transition: 0.5s;
    opacity: 1;
    pointer-events: all;
}

#fade {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.192);
    z-index: 5;
    cursor: pointer;
}

#modal {
    position: fixed;
    top: 86px;
    right: 12px;
    width: 500px;
    max-width: 85%;
    background-color: #fff;
    z-index: 10;
    list-style: none;
    border-radius: 10px;
}

#modalHeader {
    background-color: #6601F9;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    padding: 30px;
    border-radius: 10px 10px 0 0;
}

#modalHeader button {
    padding: 10px 15px;
    cursor: pointer;
    color: #fff;
    background-color: rgb(0, 172, 0);
    border-radius: 10px;
    border: none;
}

#modalHeader div {
    font-size: 18pt;
}

.titleItensModal {
    font-size: 14pt;
}

.itensHeaderModal {
    margin-top: 15px;
}

#modalHeader p {
    margin: 0;
}

#modal .notificacoes {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    padding-bottom: 0px;
    color: gray;
    border-bottom: rgba(128, 128, 128, 0.116) 1px solid;
}

.containerNotificacoes {
    list-style: none;
}

.notificacoes #tempoNotificacao {
    text-align: right;
}

.notificacoes button {
    color: #fff;
    background-color: #6601F9;
    border-radius: 0.5rem;
    border: none;
    padding: 10px;
    margin-left: 5px;
    cursor: pointer;
}

#modal2.hide,
#fade2.hide {
    opacity: 0;
    pointer-events: none;
}

/* Removed empty ruleset #modal2.hide */

#fade2,
#modal2 {
    transition: 0.5s;
    opacity: 1;
    pointer-events: all;
}

#fade2 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.192);
    z-index: 5;
    cursor: pointer;
}

#modal2 {
    position: fixed;
    z-index: 6;
    width: 100vw;
    height: 100vh;
}

.containerModal2 {
    margin: 0 auto;
    width: 80%;
}

.infoModal {
    height: 400px;
    overflow-y: scroll;
    color: black;
    padding-right: 10px;
    text-align: justify;
}

.infoModal::-webkit-scrollbar {
    width: 10px;
}

.infoModal::-webkit-scrollbar-thumb {
    background: #6601F9;
    border-radius: 20px;
}

.infoModal::-webkit-scrollbar-track {
    background: rgb(255, 255, 255);
}

.infoModal > h2 {
    padding-top: 10px;
    color: #6601F9;
}

.listInfo {
    display: flex;
    width: 100%;
    align-items: center;
    border-bottom: 1px solid rgb(187, 186, 186);
}

.listInfo > ul {
    display: flex;
    width: 90%;
    gap: 20px;
    list-style: none;
    gap: 20px;
}

.listInfo > ul > li {
    width: calc((100% / 4) - 20px);
    text-align: left;
}

.listInfo > ul > li > h3 {
    color: #4e4e4e;
    font-size: 18px;
    font-weight: bold;
}

.listInfo > ul > li > p {
    width: 80%;
}

.listInfo > ul > li > .active {
    width: max-content;
    padding: 7px;
    background-color: rgb(173, 255, 90);
    color: green;
    border-radius: 8px;
    font-weight: bold;
}

.listInfo > ul > li > .active:hover {
    filter: brightness(0.8);
}

.edit {
    width: max-content;
    padding: 10px 20px;
    font-size: 18px;
    background-color: rgb(250, 109, 109) !important;
    color: rgb(128, 0, 0) !important;
    border: none;
    height: max-content;
    border-radius: 8px;
    font-weight: bold !important;
}

.listInfo > .edit:hover {
    filter: brightness(0.8);
}

@media only screen and (max-width: 1024px) {
    .listInfo > ul {
        flex-wrap: wrap;
    }

    .listInfo > ul > li {
        width: calc((100% / 2) - 20px);
    }
}

@media only screen and (max-width: 768px) {
    .listInfo {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 20px;
        padding-bottom: 20px;
    }

    .listInfo > ul {
        width: 100%;
        padding: 0px;
    }

    .listInfo > ul > li {
        width: calc((100%) - 20px);
    }
}

.info_AppliedFees > h2 {
    padding-bottom: 0px;
    line-height: 10px;
    color: #6601F9;
    margin-top: 20px;
}

.info_AppliedFees > p {
    font-weight: 500;
    margin-bottom: 30px;
}

.info_AppliedFees > p > span {
    color: red;
}

.info_AppliedFees > select {
    background-color: none;
    border: none;
    font-size: 16px;
}

.info_AppliedFees > select > option {
    background-color: none;
}

.info_AppliedFees > ul {
    list-style: none;
    padding: 0px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.info_AppliedFees > ul > li h3 {
    font-size: 18px;
}

.info_AppliedFees > ul > li > p {
    color: #5c5c5c;
    font-size: 14px;
}

#modalHeader2 {
    background-color: white;
    display: flex;
    flex-direction: column;
    color: black;
    padding: 30px;
    padding-bottom: 10px;
    border-radius: 10px 10px 0 0;
}

#modalHeader2 > div:nth-child(1) {
    display: flex;
    justify-content: space-between;
}

#modalHeader2 > div:nth-child(1) > div:nth-child(1) {
    display: flex;
    flex-direction: column;
}

#modalHeader2 > div:nth-child(1) > div:nth-child(2) {
    font-size: 28px;
}

#modalHeader2 #nomeModal {
    font-weight: 500;
    font-size: 23px;
    text-transform: capitalize;
    color: #6601F9;
}

#sectionModal2 {
    list-style: none;
    padding: 30px;
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    border-radius: 0px 0px 10px 10px;
}

#sectionModal2 a {
    text-decoration: none;
    color: rgb(128, 0, 0);
}

.colorCyan {
    color: #5c5c5c !important;
}

#sectionModal2 li {
    padding-bottom: 15px;
    color: #5c5c5c;
    font-size: 18px;
    display: flex;
    align-items: center;
    flex-direction: row;
}

#sectionModal2 li i {
    margin-right: 15px;
}

#sectionModal2 button {
    width: max-content;
    padding: 10px 20px;
    font-size: 18px;
    border: none;
    color: white;
    /* background-color: #d6d6d6;  */
    height: max-content;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.6s;
}

#sectionModal2 button:hover {
    background-color: #e7e7e7 !important;
    color: #000000 !important;
}

#emailModal {
    color: #505050;
    margin-top: 15px;
    margin-bottom: 30px;
    font-size: 18px;
}

.alert-warning {
    background-color: lightyellow;
}

.containerView {
    display: flex;
    align-items: center;
    gap: 10px;
}

@media only screen and (max-width: 375px) {
    #sectionModal2 {
        flex-direction: column;
    }
}
