* {
    margin: 0;
    box-sizing: border-box;
}

a {
    text-decoration: unset;
}

body {
    /*width: calc(100vw - 1.1rem);*/
    background-color: #f1eeee;
}

.fundo {
    /* background-image: url('../Imagens/Pizza.jpg');*/
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-position-y: -600px;
}

.logo {
    height: 68px;
}

.logo-lef {
    height: 40px;
    float: left;
}

.dados {
    text-align: center;
}

.dados input {
    margin: 2px;
    width: 90%;
    min-width: 50px;
    max-width: 310px;
}

.finalize {
    font-size: 30px;
    font-family: fangsong;
    text-shadow: 1px 1px 3px #7b7b7b;
}

.produtos {
    cursor: pointer;
}

.item {

    width: 95%;
    max-width: 350px;
    min-width: 200px;
    background-color: #f1eeee;
    border-radius: 10px;
    cursor: pointer;
    font-size: 2rem;
}

.item img {
    border-radius: 10px 0px 0px 10px;
    height: 86px;
}

.item span {
    font-family: serif;
    font-size: 12px;
}

p {
    margin-top: 0;
    margin-bottom: 0;
}

.item-card {
    height: 182px;
    overflow: overlay;
}

/* Estilos para a barra de rolagem no WebKit (Chrome, Safari) */
.item-card::-webkit-scrollbar {
    width: 12px;
    /* Largura da barra de rolagem */
}

.item-card::-webkit-scrollbar-thumb {
    background-color: #555;
    /* Cor da alça da barra de rolagem */
    border-radius: 6px;
    /* Cantos arredondados da alça */
}

.item-card::-webkit-scrollbar-track {
    background-color: #fff;
    /* Cor da trilha da barra de rolagem */
}

/* Estilos para a barra de rolagem no Firefox */
.item-card {
    scrollbar-width: thin;
    scrollbar-color: #555 #ddd;
}

.item-card::-webkit-scrollbar-thumb:hover {
    background-color: #333;
    /* Cor da alça da barra de rolagem ao passar o mouse */
}

.temp {
    border: 1px solid #e0dada;
    border-radius: 100px;
    padding: 1px 3px;
    background-color: #f8f8f8;
    box-shadow: 1px 1px 3px #8c8c8c91;
}

.esto_tit {
    height: 35px;
    padding-top: 5px;
    border-radius: 10px 0px 0px 10px;
    background-color: rgb(173, 173, 173);
    margin-left: 5px;

}

.esto_val {
    border-radius: 0px 10px 10px 0px;
    background-color: rgb(173, 173, 173);
    padding-top: 3px;
    border-left-style: groove;
    margin-right: 5px;
}

.esto_val input {
    border-radius: 10px;
}

#select_cartao {
    border-radius: 13px;
    border-color: #d7cece;
    width: 100%;
    text-align: center;
}

#status {
    width: 100%;
    height: 19px;
    border-radius: 10px;
    margin-bottom: 5px;
    text-align: center;
    font-size: x-small;
}

aside {
    display: flex;
    width: 260px;
    height: 97vh;
    background-color: #f8f9fa;
    position: fixed;
    right: 0px;
    z-index: 2000;
    top: 0px;
    justify-content: flex-end;
    flex-direction: row-reverse;
    border-radius: 15px;
    box-shadow: 1px 1px 3px #bcb7b7;
    transform:scaley(0);
    transition: right 1.5s, transform 1s;
}
#opcoes {
    display: flex;
    width: 100px;
    height: 100vh;
    background-color: #f8f9fa;
    position: fixed;
    right: 0px;
    top: 0px;
    justify-content: flex-end;
    flex-direction: row-reverse;
    border-radius: 100px;
    box-shadow: 1px 1px 3px #bcb7b7;
    transform:scaley(1);
    transition: right 1.5s, transform 1s;
}

.img_desc{
    width: 90%;
}
#notificacoesGeral{
    position: fixed;
    right: 15px;
    top:85px
}
#notificacoes{
    display: flex;
    margin:7px 0px;
    background-color: #f8f8f8;
    border-radius: 15px;
    border: rgb(178, 178, 178) solid 1px;
    padding: 5px 15px;
    
}
#notificacoes .fechar{
width: 10px;
text-align: center;
}
/*
input[type="radio"]:checked + label .img-canal {
    opacity: 1;
    border: 2px solid #000;
    border-radius: 10px;
    padding: 2px;
}