*{
    user-select: none;
}
@keyframes shake {
  0% { transform: translate(1px, 1px) rotate(0deg); }
  10% { transform: translate(-1px, -2px) rotate(-1deg); }
  20% { transform: translate(-3px, 0px) rotate(1deg); }
  30% { transform: translate(3px, 2px) rotate(0deg); }
  40% { transform: translate(1px, -1px) rotate(1deg); }
  50% { transform: translate(-1px, 2px) rotate(-1deg); }
  60% { transform: translate(-3px, 1px) rotate(0deg); }
  70% { transform: translate(3px, 1px) rotate(-1deg); }
  80% { transform: translate(-1px, -1px) rotate(1deg); }
  90% { transform: translate(1px, 2px) rotate(0deg); }
  100% { transform: translate(1px, -2px) rotate(-1deg); }
}
.chamar-garcom{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding-top: 24px;
}
.shake{
    display: inline-block;
    animation: shake 0.5s;
    /* When the animation is finished, start again */
    /*animation-iteration-count: infinite;*/
}
.icon-dinner{
    width: 17px;
}
#drawer_list_categorias{
    overflow-x: hidden;
    padding-top: 15px;
}
.list_categorias .categorias{
    margin: 0px 0px 13px 0px;
}
.list_categorias.categoria_sem_imagem .categorias{
    min-height: 150px;
    justify-content: center;
}
.list_categorias.categoria_sem_imagem .categorias .categorias-info-titulo{
    margin-bottom: 0px;
}
.categorias{
    min-height: 240px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    overflow: hidden;
    cursor: pointer; 
    background: #fff;
    box-shadow: rgb(0 0 0 / 8%) 0px 4px 16px; 
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -khtml-border-radius: 20px;
    border-radius: 20px; 
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -webkit-mask-image: -webkit-linear-gradient(white, black);
}
.box_button_categorias{
    box-shadow: rgb(0 0 0 / 10%) 0px 0px 16px 7px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -khtml-border-radius: 20px;
    border-radius: 20px;
}
.categorias-bg{
    position: absolute;
    left: 0px;
    width: 100%;
    top: 0px;
    height: 100%;
    z-index: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    transition: 300ms cubic-bezier(0, 0, 0.2, 1);
     -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
}
.categorias:hover .categorias-bg, .categorias.hover_effect .categorias-bg{
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    transform: scale(1.2);
}
.form-field-increment__button, .hover{
    -webkit-user-select: none;
    -webkit-touch-callout: none;
    touch-action: manipulation;
}
.categorias-info{
    z-index: 1;
    color: #fff;
    background: linear-gradient(359deg, rgb(2 2 2 / 50%) 20%, rgb(72 60 60 / 0) 100%);
    padding: 20px;
}
.categoria_sem_imagem .categorias-info{
    background: none;
}
.bg-shadow{
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 100%;
    height: 100%;
    background: rgb(0,0,0);
    background: linear-gradient(359deg, rgb(2 2 2) 0%, rgb(72 60 60 / 36%) 35%, rgb(92 92 92 / 0%), rgb(0 0 0 / 9%) 100%);
    opacity: 0.8;
}

.categorias-info-titulo{
    -webkit-line-clamp: 1;
    display: -webkit-box;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    font-size: 30px;
    font-weight: 800;
    text-shadow: -2px 1px 4px #00000038;
    text-transform: uppercase;
    margin-bottom: 0px;
}
.categorias-info-descricao{
    -webkit-line-clamp: 2;
    display: -webkit-box;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    color: #ffeb3b;
    text-shadow: -2px 1px 4px #00000038;
    margin-bottom: 0px;
}
.categoria_sem_imagem .categorias-info-titulo, .categoria_sem_imagem  .categorias-info-descricao{
    text-shadow: none;
}
.material-icons{
    float: left;
}
.categoria_sem_imagem *{
    color: #212529;
}
.itens.pizzas.categoria_sem_imagem .itens-title{
    color: #000;
}
#tabs_btn-group{
    width: 100%;
    background: #fff;
    padding: 10px 10px;
    border-radius: 4px;
    position: sticky;
    top: 0px;
    z-index: 1;
}
#tabs_btn-group .btn-group{
    overflow-x: auto;
}
#tabs_btn-group .btn{
    font-size: 16px;
    white-space: nowrap;
    border: none;
    text-transform: capitalize;
}
.itens{
    display: grid;
    background: none;
    margin: 5px 0px 10px;
    flex-direction: row;
    justify-content: space-between;
    padding: 0px;
    gap: 0;
    grid-template-areas:
        "img description"
        "img button";
    min-height: 119px;
    cursor: pointer;
    position: relative;
    z-index: 0;
    grid-template-columns: 50% 50%;
    width: 100%;
    margin-bottom: 20px;
    transition: all .8s ease-in-out;
    padding-bottom: 23px;
    color: var(--bs-cor-text-primary);
}
.linha_item{
    transition: all 300ms cubic-bezier(0, 0, 0.2, 1);
    opacity: 0.1;
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100%;
    margin: 0px;
    box-shadow: -2px 0px 9px 1px #00000000;
}
.hover:hover .linha_item,  .hover_effect .linha_item{
    box-shadow: -2px 0px 9px 1px #0000009e;
    opacity: .3;
}
.itens.categoria_sem_imagem{
    grid-template-areas:
    "description description"
    "preco button";
}
.itens.categoria_sem_imagem .itens-div-preco{
    grid-area: preco / preco / preco / preco;
    padding-left: 13px;
    padding-bottom: 0px;
}
.itens.categoria_sem_imagem .itens-preco-desconto, .sem_imagem .itens-preco-desconto{
    display: flex;
    align-items: center;
    align-content: flex-end;
    flex-direction: row;
}
.preco-tamanho-desconto .itens-preco-desconto{
    justify-content: center;
    margin-top: 10px;
}
.preco-tamanho-desconto .itens-preco{
    margin-top: 0px;
}
.itens-title{
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    font-size: 16px;
    line-height: 1.33;
    font-weight: 700;
    margin-bottom: 5px;
    text-transform: uppercase;
    padding-right: 10px;
    color: var(--bs-cor-text-primary);
}
.itens-description{
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    font-size: 12px;
    line-height: 16px;
    margin-bottom: 4px;
    padding-right: 10px;
}
.itens-img{
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
    max-width: 100%;
    height: 100%;
    position: relative;
    box-shadow: 0 5px 30px 0 rgb(0 0 0 / 11%), 0 5px 15px 0 rgb(0 0 0 / 2%) !important;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -webkit-mask-image: -webkit-linear-gradient(white, black);
    text-align: center;
    height: 138px;
    max-height: 138px;
}
.itens-img img{
    position: absolute;
    left: auto;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 300ms cubic-bezier(0, 0, 0.2, 1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    transform: scale(1);
    right: 0;
    margin: auto;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
}
.hover:hover .itens-img img, .itens.hover_effect .itens-img img{
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    transform: scale(1.2);
}
.button_comprar-item{
    grid-area: button / button / button / button;
    display: flex;
    width: 100%;
    padding-left: 11px;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: flex-end;
    color: #fff;
    align-items: flex-end;
}
.button_comprar-item button{
    display: block;
    width: 100%;
    background: rgb(255,102,0);
    background: linear-gradient(0deg, rgba(255,102,0,1) 0%, rgb(197 87 15) 100%);
    border: 1px solid transparent;
}
.button_comprar-item button.btn-secondary{
    color: #fff;
    background: #6c757d;
    border-color: #6c757d;
}
.btn-primary{
    background: rgb(255,102,0);
    background: linear-gradient(0deg, rgba(255,102,0,1) 0%, rgb(197 87 15) 100%);
    border: 1px solid transparent;
}
.button_comprar-item *{
    color: #fff;
}
.footerAni{
    animation: footerAni 1s infinite;
}
/*
.itens-preco-a-partir{
    display: grid;
    grid-auto-rows: 16px;
}*/
.box_list_itens{
    margin: 20px 15px 20px 15px;
    border-radius: 20px;
    border: none;
    box-shadow: 0 4px 24px 0 rgb(0 0 0 / 10%);
    padding: 14px 15px;
    background: var(--bs-cor-bg-primaria-listitem);
    display: block;
}

.a-partir{
    font-size: 12px;
    color: var(--bs-cor-text-primary-apartir);
    line-height: 1.33;
    margin-bottom: 0px;
    display: block;
}
.itens-preco, .preco{
    line-height: 1.33;
    font-size: 16px;
    font-weight: 800;
}
.itens-preco{
    color: var(--bs-cor-text-itens-preco) !important;
}
.itens-preco.active-preco{
    color: #008C00 !important;
}
.itens .preco, .itens .itens-preco{
    font-size: 21px;
}
.itens-preco, .itens-preco-a-partir .preco{
    color: #008C00;
}

.itens-preco-desconto .preco{
    font-size: 12px !important;
    position: relative;
    margin-left: 7px;
}
.itens-preco-desconto .preco:before{
    content: "";
    position: absolute;
    left: -2px;
    width: 120%;
    height: 1px;
    background: #FF6600;
    transform: rotate(355deg);
    bottom: 8px;
}
.categoria_list{
    margin: 10px 0px;
}
.categoria_list-name{
    margin: 10px 0px;
    font-size: 21px;
    line-height: 25px;
    font-weight: 700;
    margin-bottom: 1.5rem !important;
    color: var(--bs-cor-text-primary-categoria);
}
.itens-div-descricao{
    grid-area: description / description / description / description;
    padding-top: 7px;
    padding-left: 13px;
}
.itens-div-img{
    grid-area: img / img / img / img;
    width: 100%;
    box-shadow: rgb(0 0 0 / 10%) 0px 4px 16px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -khtml-border-radius: 12px;
    border-radius: 12px;
    max-width: 176px;
    display: block;
    height: min-content;
}
.itens-div-preco{
    /*grid-area: preco / preco / preco / preco;*/
    padding-left: 0px;
    padding-bottom: 7px;
}
.itens-preco-desconto{
    display: flex;
    flex-direction: row;
    align-content: center;
    align-items: center;
}
.itens-preco, .itens-preco-desconto .preco{
    white-space: nowrap;
}
.itens-div-buttons{
    position: absolute;
    right: 10px;
    top: 0px;
    bottom: 0px;
    margin: auto;
    z-index: 1;
    display: flex;
}
.itens-div-buttons button{
    padding: 0px 5px;
    color: #fff;
    font-size: 24px;
}
.itens-div-preco{
    display: flex;
    align-items: center;
}
.list_itens{
    padding: 30px 18px;
}
#drawer_carrinho{
    position: relative;
}
#drawer_carrinho .drawer_carrinho_body{
    background: #fff;
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
}
#tabs_btn-group a.is-active{
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d;
}
/* ### MODAL ITEM ### */
#loading_spinner{
    height: 500px;
    align-items: center;
}
.modal .bi-exclamation-triangle{
    font-size: 64px;
}
#modal_item{
    z-index: 100010;
}
.modal_categorias.modal{
     z-index: 100009;
} 
#modal_item li.list-group-item-por-tamanho span.list-complementos-nome{
    font-size: .99em;
}
.list-group-item-por-tamanho .itens-preco,  .list-group-item-por-tamanho .preco{
    font-size: 18px;
}
/*
#modal_item{
    z-index: 9999;
}
*/
#modal_item .imagem_item{
    width: 100%;
    height: 264px;
    clip-path: inset(0);
    position: relative;
    display: block;
}
#modal_item .imagem_item img{
    left: 0px;
    top: 0px;
    width: 100%;
    height: 265px;
    object-fit: cover;
    object-position: center;
}
#modal_item .grupo_complementos{
    background: var(--bs-cor-bg-grupo_complementos);
    /* padding: 18px 26px; */
    border-radius: 4px;
    /* height: 80px; */
    position: sticky;
    /* top: 0; */
    left: 0px;
    width: 100%;
    justify-content: space-between;
    top: 0px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    align-content: flex-start;
    padding: 18px 11px 22px 20px;
   /*height: 78px;*/
}
#modal_item .grupo_complementos > div:first-child{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-content: space-between;
    height: 100%;
}
#modal_item .grupo_complementos small{
    color: var(--bs-primary);
}
#modal_item .grupo_complementos .complementos_container {
    flex-direction: row !important;
    width: 100%;
}
input.search-step-input {
    width: 100%;
    border-radius: 5px;
    border: 1px solid var(--bs-cor-bg-border-input);
    padding: 3px 10px;
    background: var(--bs-cor-bg-modal-body-primaria);
    color: var(--bs-cor-text-body);
}

.search-wrapper::before {
    content: "\f52a";
    display: inline-block;
    font-family: bootstrap-icons !important;
    font-style: normal;
    font-weight: normal !important;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    vertical-align: -0.125em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: absolute;
    right: 10px;
    bottom: 8px;
    font-weight: bold;
    color: #f60;
}

.search-wrapper.filtering::before {
    content: "\f62a";
}
.search-wrapper span.clear-search {
    display: none;
}

.search-wrapper.filtering span.clear-search {
    display: flex;
    position: absolute;
    height: 100%;
    width: 36px;
    right: 0;
    cursor: pointer;
}
.search-wrapper {
    position: relative;
}
.search-wrapper {
    width: calc(100% - 15px);
    margin-top: 15px;
}
#modal_item .list-complementos{
    margin-top: 5px;
    margin-bottom: 10px;
    padding-left: 10px;
    padding-right: 10px;
}
#modal_item .descricao-complementos small{
    width: 100%;
    /* overflow: hidden; */
    /* text-overflow: ellipsis; */
    /* -webkit-box-orient: vertical; */
    /* -webkit-line-clamp: 6; */
    /* display: -webkit-box; */
}
#modal_item .list-group-item{
    display: grid;
    grid-template-columns: 115px 1fr 90px;
    gap: 15px;
    align-items: center;
    border-left: 0px;
    border-right: 0px;
    border-top: 0px;
    padding: 15px 24px 15px 24px;
    background: var(--bs-cor-bg-primaria-header);
}
#modal_item .list-group-item.sem_imagem{
    grid-template-columns: 1fr 90px;
}
#modal_item .list-group-item.sem_imagem .descricao-complementos{
    padding-left: 17px;
}
#modal_item .modal-item-combo .list-group-item.sem_imagem .descricao-complementos{
    padding-left: 8px;
}
#modal_item .list-complementos-nome{
    font-size: 0.83em;
    text-transform: uppercase;
}
#modal_item .list-group-item .form-check{
    text-align: center;
    font-size: 20px;
    min-height: auto;
    margin: 0;
    padding: 0;
}
#modal_item .list-group-item .form-check-input{
    margin: 0 auto;
    display: inline-block;
    float: unset;
    vertical-align: middle;
    pointer-events: none;
}
#modal_item .list-group-item > div:last-child{
    text-align: right;
}
#modal_item .descricao-complementos .itens-preco{
    font-weight: 600;
}
#modal_item .btn_add_car, #modal_item .btn_add_car_avancar{
    background: rgb(255,102,0);
    background: linear-gradient(0deg, rgba(255,102,0,1) 0%, rgb(197 87 15) 100%);
    border: 1px solid transparent;
}
#modal_item .btn_add_car .btn_add_car-text, #modal_item .btn_add_car_avancar .btn_add_car-text{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    align-content: center;
    flex-wrap: nowrap;
}
#modal_item .btn_add_car.carregando .btn_add_car-text, #modal_item .btn_add_car_avancar.carregando .btn_add_car-text, #modal_finalizar_pedido .btn_avancar.carregando .btn_add_car-text{
    display: none;
}
#modal_item .btn_add_car .btn_add_car-carregando, #modal_item .btn_add_car_avancar .btn_add_car-carregando{
    display: none;
}
#modal_item .btn_add_car.carregando .btn_add_car-carregando{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    align-content: center;
    flex-wrap: nowrap;
}

.pix_instrucoes{
    text-align: right;
    display: flex;
    margin: 10px 0px 0px;
    padding-left: 20px;
}
.pedido-detalhes-forma-pagamento .pix_instrucoes{
    text-align: center;
}

#modal_item .list-complementos .list-group-item:last-child{
    border-bottom: 0px;
}
.TabDetailsQuantity_category-item-garnish-tab-details-quantity__content__36Ina {
    height: 46px;
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-around;
    align-content: center;
}
.form-field-increment__button {
    cursor: pointer;
    color: rgb(255 102 0);
    font-size: 21px;
    font-family: 'Source Sans Pro';
    background: none;
    border: initial;
    cursor: pointer;
    padding: 0;
}
.list-group-item .button_mais i{
    font-size:28px;
}
.form-field-increment__value {
    width: auto;
    font-size: 18px;
    background-color: transparent;
    margin: 0px;
}

#modal_item .img-complemento{
    width: 90%;
    border-radius: 4px;
}
.form-field-increment__button--disabled {
    color: rgb(166, 166, 166);
    cursor: default;
    opacity: 0.2;
}
.grupo_complementos h5{
    margin-bottom: 0px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}

.qtd_item .form-field-increment__content{
    border: 1px solid #ced4da;
    border-radius: 5px;
    margin-top: 10px;
    margin-bottom: 10px;
    width: 100%;
}
#modal_item .modal-footer{
    display: grid;
    grid-template-columns: 120px 1fr;
    justify-content: start;
    align-items: center;
    justify-items: stretch;
    padding-bottom: 12px;
}
/*
#modal_item .modal-footer{
    display: grid;
    grid-template-columns: 120px 1fr;
    justify-content: start;
    align-items: center;
    justify-items: stretch;
    padding-bottom: 50px;
}
*/
#modal_item .modal-footer button.btn-primary{
    margin: 0;
    height: 45px;
    padding: 0px 15px;
    line-height: 18px;
}
#modal_item .modal-body{
    padding-right: 0px;
    padding-left: 0px;
    background:  var(--bs-cor-bg-modal-content-primaria);
}
#modal_item .body-item{
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    margin-top: -8px;
    z-index: 3;
    background: var(--bs-cor-bg-modal-content-primaria);
    display: block;
    position: relative;
}
#modal_item .item-padding{
    padding: 16px 20px;
}
#modal_item .item-categoria{
    font-weight: 300;
    font-size: 12px;
    line-height: 120%;
    text-transform: uppercase;
}
#modal_item .item-nome{
    text-transform: uppercase;
    font-weight: bold;
    font-size: 22px;
    line-height: 28px;
    margin-bottom: 8px;
}
#modal_item .item_descricao{
    font-weight: 300;
    font-size: 16px;
    line-height: 20px;
    white-space: pre-line;
}
.modal_custom .modal_preco{
    position: absolute;
    top: -30px;
    right: 8%;
    padding: 0 0.9rem;
    background: #401e0d;
    border-radius: 10px;
    text-align: center;
    font-weight: 800;
    height: 63px;
    display: flex;
    align-content: center;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    max-width: 200px;
    min-width: 130px;
}
.modal_custom .modal_preco.sem_imagem{
    position: relative;
    top: 0;
    left: 0;
    right: auto;
    display: inline-block;
    height: auto;
}
.modal_custom .modal_preco *{
    color: #fff !important;
    padding: 0px;
    margin-bottom: 0px;
    font-size: 23px;
}
.modal_custom .body-item .itens-preco-a-partir .a-partir{
    font-size: 14px !important;
}
.modal_custom .itens-preco{
    display: block;
}
.modal_custom .body-item  .modal_preco .itens-preco-desconto {
    display: flex;
    flex-direction: column-reverse;
    align-content: center;
    align-items: center;
}
.itens .itens-preco, .itens .preco{
    color: #008C00 !important;
}
.itens  .itens-preco-desconto span:last-child{
    color: var(--bs-cor-text-itens-preco) !important;
}
/* ### /MODAL ITEM ### */

.active > .list_categorias{
    transform: none !important;
    opacity: 1 !important;
}
.list_categorias{
    transform: translate(300%, 0px);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.18, 0.89, 0.32, 1), opacity 0.4s cubic-bezier(0.18, 0.89, 0.32, 1);
}
.modal .itens{
    transition: transform 0.4s cubic-bezier(0.18, 0.89, 0.32, 1), opacity 0.4s cubic-bezier(0.18, 0.89, 0.32, 1);
    transform: translate(300%, 0px);
    opacity: 0;
}
.modal.show.carregado .itens{
    transform: none !important;
    opacity: 1 !important;
}
/*
#passo-a-passo{
    position: fixed;
    top: 0;
    left: 0px;
    width: 100%;
    height: 100%;
    background: #e1e1e1;
    z-index: 3;
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.01s ease .4s;
    padding-bottom: 78px;
}
*/
#passo-a-passo{
    position: fixed;
    top: 0;
    left: 0px;
    width: 100%;
    height: 100%;
    background: #e1e1e1;
    z-index: 3;
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.01s ease .4s;
    padding-bottom: 0px;
}
#passo-a-passo[data-tipo="pizza"]{
    z-index: 10;
}
#passo-a-passo[data-tipo="pizza"] .passo-a-passo-body{
    padding-top: 61px;
}
#passo-a-passo.active{
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease .4s, visibility 0.01s ease .4s;
}
.passo-a-passo-header, .passo-a-passo-header-combo{
    position: relative;
    top: 0px;
    text-align: center;
    width: 72px;
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: space-between;
    align-items: center;
}
.passo-a-passo-header h4, .passo-a-passo-header-combo h4{
    margin-bottom: 0px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
}
.passo-a-passo-header span, .passo-a-passo-header-combo span{
    font-size: 17px;
    font-weight: 600;
}
.passo-a-passo-body{
    position: relative;
    padding-top: 60px;
    padding-bottom: 50px;
    flex: auto;
    overflow-y: scroll;
    padding-right: 0px;
    padding-left: 0px;
    background: var(--bs-cor-bg-primaria-modal);
}
#passo-a-passo .passo-a-passo-item{
    display: none;
}
#passo-a-passo .passo-a-passo-item.active{
    display: block;
}
#passo-a-passo .passo-a-passo-item-detalhes{
    display: grid;
    grid-template-columns: 118px 1fr;
    gap: 15px;
    align-items: center;
    border-left: 0px;
    border-right: 0px;
    border-top: 0px;
    padding: 15px 24px 15px 24px;
}
.passo-a-passo-footer{
    display: grid;
    grid-template-columns: 120px 1fr;
    justify-content: start;
    align-items: center;
    justify-items: stretch;
    padding: 30px 0.75rem 30px;
    border-top: 1px solid #dee2e6;
    flex-wrap: wrap;
    flex-shrink: 0;
    gap: 9px;
    background: var(--bs-cor-bg-primaria-modal);
}
/*
    Modal Success
*/
.modal_success{
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    align-content: center;
    justify-content: center;
    background: #00000059;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s cubic-bezier(0.18, 0.89, 0.32, 1), visibility 0.1s cubic-bezier(0.18, 0.89, 0.32, 1);
   
}
.modal_success.modal--active{
    opacity: 1;
    visibility: visible;
    animation: hide_modal .5s ease-out 1.6s forwards;
}
.modal_success.modal-cupom--active{
    opacity: 1;
    visibility: visible;
    animation: hide_modal .5s ease-out 5s forwards;
}
.modal_success.modal-cupom--active .modal_success-content{
    overflow: hidden;
    animation: add_cart .6s ease-out 5s forwards;
}
.modal_success.modal--active .modal_success-content{
    overflow: hidden;
    animation: add_cart .6s ease-out 1.6s forwards;
}
.modal_success .modal_success-content *{
    opacity: 1;
    transition: opacity 0.3s cubic-bezier(0.18, 0.89, 0.32, 1);
}
.modal_success.modal--active .modal_success-content *{
    opacity: 0;
    transition: opacity 0.5s cubic-bezier(0.18, 0.89, 0.32, 1) 1.5s;
}
.modal_success .modal_success-content{
    width: 350px;
    height: 230px;
    background: var(--bs-cor-bg-primaria-modal);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    transition: transform 0.3s cubic-bezier(0.18, 0.89, 0.32, 1), opacity 0.3s cubic-bezier(0.18, 0.89, 0.32, 1);
    transform: translate(0%, 10%);
    opacity: 0;
    max-width: 80%;
}
.modal_success.modal--active .modal_success-content{
    transform: translate(0%, -20%);
    opacity: 1;
    transition-delay: 500ms;
}
.modal_success.modal-cupom--active .modal_success-content{
    transform: translate(0%, -20%);
    opacity: 1;
    transition-delay: 500ms;
    height: 350px;
}
.modal_success .modal_success-content h3{
    font-size: 20px;
    line-height: 24px;
    /*font-weight: 700;*/
    color: #1f1f1f;
}
/* SUCCESS CHECKMARK */
.success-checkmark {
    width: 89px;
    height: 115px;
    margin: 0 auto;
    display: flex;
    align-items: center;
}
.success-checkmark .check-icon {
    width: 80px;
    height: 80px;
    position: relative;
    border-radius: 50%;
    box-sizing: content-box;
    border: 4px solid #ffffff;
    background: #4CAF50;
}
.success-checkmark .check-icon::before {
    top: 3px;
    left: -2px;
    width: 30px;
    transform-origin: 100% 50%;
    border-radius: 100px 0 0 100px;
}
.modal--active .success-checkmark .check-icon::after {
    top: 0;
    left: 30px;
    width: 60px;
    transform-origin: 0 50%;
    border-radius: 0 100px 100px 0;
    animation: rotate-circle 4.25s ease-in;
    animation-delay: 0s;
}
.modal-cupom--active .success-checkmark .check-icon::after {
    top: 0;
    left: 30px;
    width: 60px;
    transform-origin: 0 50%;
    border-radius: 0 100px 100px 0;
    animation: rotate-circle 4.25s ease-in;
    animation-delay: 0s;
}
.success-checkmark .check-icon::before, .success-checkmark .check-icon::after {
    content: "";
    height: 100px;
    position: absolute;
    background: #FFFFFF;
    transform: rotate(-45deg);
    z-index: 9;
}
.success-checkmark .check-icon .icon-line {
    height: 5px;
    background-color: #ffffff;
    display: block;
    border-radius: 2px;
    position: absolute;
    z-index: 11;
}
.modal--active .success-checkmark .check-icon .icon-line.line-tip {
    top: 46px;
    left: 14px;
    width: 25px;
    transform: rotate(45deg);
    animation: icon-line-tip 0.75s;
    animation-delay: 0s;
}
.modal--active .success-checkmark .check-icon .icon-line.line-long {
    top: 38px;
    right: 8px;
    width: 47px;
    transform: rotate(-45deg);
    animation: icon-line-long 0.75s;
    animation-delay: 0s;
}
.modal-cupom--active .success-checkmark .check-icon .icon-line.line-tip {
    top: 46px;
    left: 14px;
    width: 25px;
    transform: rotate(45deg);
    animation: icon-line-tip 0.75s;
    animation-delay: 0s;
}
.modal-cupom--active .success-checkmark .check-icon .icon-line.line-long {
    top: 38px;
    right: 8px;
    width: 47px;
    transform: rotate(-45deg);
    animation: icon-line-long 0.75s;
    animation-delay: 0s;
}
.success-checkmark .check-icon .icon-circle {
    top: -4px;
    left: -4px;
    z-index: 10;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    position: absolute;
    box-sizing: content-box;
    border: 4px solid rgb(255 255 255 / 50%);
    background: #4CAF50;
}
.success-checkmark .check-icon .icon-fix {
    top: 8px;
    width: 5px;
    left: 26px;
    z-index: 1;
    height: 85px;
    position: absolute;
    transform: rotate(-45deg);
    background-color: #FFFFFF;
}
#footer-bar #button_cart.addcart--active strong{
    animation: shake_addcart 0.4s ease-in 1.8s;
}
#footer-bar #button_cart.addcart-cupom--active strong{
    animation: shake_addcart 0.4s ease-in 5s;
}
/*
    #### CARRINHO
*/
.btn_pedido_minimo:disabled, .btn_pedido_minimo.disabled{
    background-color: #ff0000;
    border-color: #ff0000;
    opacity: 1;
    background: linear-gradient(0deg, rgb(255 0 0) 0%, rgb(197 15 15) 100%);
}
.btn-primary:disabled, .btn-primary.disabled{
    opacity:1;
}
.box_carrinho_item{
    display: grid;
    grid-template-areas:
        "img detalhes"
        "complementos complementos"
        "footer footer";
    grid-template-columns: 120px 1fr;
}
.box_carrinho_item.sem_imagem{
    grid-template-areas:
        "detalhes detalhes"
        "complementos complementos"
        "footer footer";
    grid-template-columns: auto;
}
.box_carrinho_item .div_imagem_item{
    grid-area: img / img / img / img;
    box-shadow: 0 5px 30px 0 rgb(0 0 0 / 11%), 0 5px 15px 0 rgb(0 0 0 / 2%) !important;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -khtml-border-radius: 12px;
}
.box_carrinho_item .imagem_item{
    width: 120px;
    height: 110px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -khtml-border-radius: 12px;
    border-radius: 12px;
    overflow: hidden;
    max-width: 100%;
    position: relative;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -webkit-mask-image: -webkit-linear-gradient(white, black);
}
.box_carrinho_item .imagem_item img{
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 300ms cubic-bezier(0, 0, 0.2, 1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    transform: scale(1);
}
.box_carrinho_item .box_carrinho_detalhes{
    grid-area: detalhes / detalhes / detalhes / detalhes;
    padding-top: 0px;
    padding-left: 13px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.box_carrinho_item .box_carrinho_itens{
    font-size: 12px;
    color: #009688;
    font-weight: 600;
}
.box_carrinho_item .box_carrinho_preco{
    line-height: 1.33;
    font-size: 24px;
    font-weight: 800;
}
.box_carrinho_item .box_carrinho_preco span{
    word-break: break-word;
    display: block;
}
.box_carrinho_item .box_carrinho_complementos{
    grid-area: complementos / complementos / complementos / complementos;
    padding: 15px 0px;
    margin-top: 10px;
}
.box_carrinho_item .carrinho_title_combo{
    font-size: 12px;
    font-weight: 600;
}
.box_carrinho_item .box_carrinho_complementos .title_costumizacao{
    font-size: 14px;
}

.box_carrinho_footer{
    grid-area: footer / footer / footer / footer;
    display: grid;
    grid-template-areas:
        "observacoes observacoes"
        "qtd remove_carrinho";
    grid-template-columns: 120px 1fr;
    margin-top: 10px;
}
.box_carrinho_footer .btn-qtd{
    grid-area: qtd / qtd / qtd / qtd;
}
.box_carrinho_footer .btn-qtd .TabDetailsQuantity_category-item-garnish-tab-details-quantity__content__36Ina{
    background: var(--bs-cor-bg-modal-body-primaria);
    border: 1px solid var(--bs-cor-bg-border-form-control);
    border-radius: 5px;
}
.box_carrinho_footer .btn-remove_carrinho{
    grid-area: remove_carrinho / remove_carrinho / remove_carrinho / remove_carrinho;
    display: flex;
}
.box_carrinho_footer .btn-link{
    text-decoration: none;
}
.box_carrinho_footer_observacoes{
    grid-area: observacoes / observacoes / observacoes / observacoes;
    margin-bottom: 10px;
    margin-top: 0;
    background: #f7cf57;
    padding: 6px 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
.box_carrinho_footer_observacoes h4{
    font-size: 12px;
    font-weight: 600;
}
.box_carrinho_footer_observacoes span{
    font-size: 10px;
    line-height: 16px;
    text-align: left;
    display: block;
}
.carrinho_list_observacoes{
    display: block;
    width: 100%;
    background: #f7cf57;
    padding: 6px 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-top: 10px;
}
.carrinho_list_observacoes h4{
    font-size: 10px;
    font-weight: 600;
    margin-bottom: 0px;
}
.box_carrinho_footer_observacoes span{
    font-size: 10px;
    line-height: 16px;
    text-align: left;
    display: block;
}


.box_carrinho{
    padding: 0px 20px;
}
.hxrOPJ {
    width: 100%;
    margin: 0px auto 10px;
    border-collapse: collapse;
}
.dEFjwz th {
    text-align: left;
    color: var(--bs-primary);
    font-weight: normal;
    font-size: 14px;
}
.dEFjwz th:nth-child(1) {
    width: 13%;
    text-align: center;
}
.dvODYg tr {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.dvODYg td {
    font-weight: bold;
    padding: 16px 0px;
}
.dvODYg td:nth-child(1) {
    text-align: center;
}
.dvODYg td h1 {
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 0px;
    vertical-align: middle;
}
.dvODYg td h4 {
    font-size: 12px;
    color: rgb(86, 86, 86);
    font-weight: lighter;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    display: -webkit-box;
}
.btn_excluir_carrinho{
    color: var(--bs-red);
}
.dvODYg tr td:nth-child(2){
    padding-left: 5px;
    padding-right: 10px;
}
.dvODYg tr td:nth-child(3){
    white-space: nowrap;
}
.btn-group_options{
    text-align: center;
    position: sticky;
    bottom: 0px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding: 10px 17px;
    border-bottom: 2px solid rgba(0, 0, 0, 0.05);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    backdrop-filter: saturate(180%) blur(20px);
    background-color: rgba(255, 255, 255, 0.7);
    border-bottom: solid 1px rgba(0, 0, 0, 0.08);
}
#modal_carrinho.modal_custom .modal-body{
    padding-bottom: 0px;
}
.btn-group_options button{
    font-size: .8rem;
}
.btn-group_options .btn-group{
    width: 100%;
}
.lfekfM {
    width: 100%;
    margin: 20px auto;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    border-bottom: 2px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 24px;
}
.lfekfM h1 {
    font-size: 20px;
    margin: 0px 16px;
    font-weight: 800;

}
#modal_carrinho{
    z-index: 99999;
}
#modal_carrinho .modal-content{
    padding-bottom: 0px;
}
.box_carrinho .descripiton .carrinho_text_complementos:last-child{
    border: none;
}
.sc-dFtzdE{
    position: sticky;
    top: 0px;
    background: #e3e3e3;
}
#modal_carrinho .title_pedido{
    margin: 10px 0px;
    font-size: 21px;
    line-height: 25px;
    font-weight: 700;
    margin-bottom: 1.5rem !important;
    color: var(--bs-cor-text-primary-categoria);
}
.modal_custom .btn-avancar{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    align-content: center;
    padding: 0.6rem 0.75rem;

    animation: pedidoAni 1s infinite;
}
.carrinho_text_complementos, .carrinho_text_combo{
    font-size: 16px;
    border-bottom: 1px solid #0000001f;
    margin-bottom: 5px;
}
.carrinho_list_complementos, .carrinho_list_combo{
    list-style: none;
    width: 100%;
    padding-left: 5px;
    margin-bottom: 10px;
    padding-right: 5px;
}
.carrinho_list_combo li{
    display: grid;
    grid-template-areas:
        "nome preco"
        "complementos complementos";
    grid-template-columns: 1fr 80px;
}
.carrinho_list_combo_nome{
    grid-area: nome / nome / nome / nome;
}
.carrinho_list_combo_preco{
    grid-area: preco / preco / preco / preco;
    text-align: right;
}
.carrinho_list_combo_complementos{
    grid-area: complementos / complementos / complementos / complementos;
}
.carrinho_list_combo_complementos .carrinho_text_complementos:last-child{
    border-bottom: none;
}
.box_carrinho_complementos > .carrinho_text_combo{
    margin-bottom: 23px;
    border-bottom: 1px solid #afafaf;
}
.box_carrinho_complementos > .carrinho_text_combo:last-child{
    border: none;
    margin-bottom: 0px;
}
.carrinho_list_complementos li{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-weight: 400;
}
.carrinho_title_complementos{
    font-weight: 600;
}
.carrinho_text_complementos{
    margin-left: 20px;
    padding-top: 5px;
}
.carrinho_list_complementos li span:last-child{
    padding-left: 14px;
    font-weight: 600;
}
.box_carrinho .box_carrinho_div{
    padding: 16px 16px 20px;
    border-bottom: 1px solid #0000001f;
    margin-bottom: 10px;
    background: var(--bs-cor-bg-card);
    box-shadow: rgb(0 0 0 / 8%) 0px 4px 16px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -khtml-border-radius: 20px;
    border-radius: 20px;
}
.box_carrinho .box_carrinho_div:last-child{
    border: none;
}
#modal_carrinho .descripiton{
    margin-top: 10px;
}
#cardapio-sheet{
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.1s ease .4s, visibility 0.01s ease .4s;
    align-items: center;
}
#cardapio-sheet .bg-shadow-sheet{
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.35);
    z-index: 0;
    opacity: 0;
    transition: opacity .4s ease .2s;
}
#cardapio-sheet.menu-active .bg-shadow-sheet{
    opacity: 1;
}
.container-menu{
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    backdrop-filter: saturate(180%) blur(20px);
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    display: block;
    max-height: 450px;
    transform: translate3d(0%, 100%, 0);
    padding-bottom: 50px;
    min-height: 300px;
    position: relative;
    transition: transform .3s ease;
    z-index: 1;
    width: 100%;
}
#cardapio-sheet.menu-active{
    opacity: 1;
    visibility: visible;
    transition: opacity 0.1s ease, visibility 0.01s ease;
    
}
#cardapio-sheet.menu-active .container-menu{
    transform: translate3d(0%, 20px, 0);
}
#cardapio-sheet .btn-exit-sheet{
    color: #dc3545;
    position: absolute;
    top: 14px;
    right: 7px;
    font-size: 20px;
}
#cardapio-sheet h1{
    font-size: 28px;
    font-weight: 700;
    padding: 20px 0px 10px 15px;
}
#cardapio-sheet ul{
    padding: 0 17px;
    list-style: none;
    overflow-y: auto;
    max-height: 342px;
}
#cardapio-sheet li{
    border-bottom: solid 1px rgba(0, 0, 0, 0.05);
}
#cardapio-sheet li a{
    color: #1f1f1f;
    font-weight: 600;
    font-size: 15px;
    padding: 10px 0px;
    display: flex;
    text-decoration: none;
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    align-content: center;
    align-items: center;
}
@keyframes shake_addcart{
    0%{
        transform: translateY(10px);
    }
    30%{
        transform: translateY(-10px);
    }
    50%{
        transform: translateY(0px);
    }
    70%{
        transform: translateY(10px);
    }
    100%{
        transform: translateY(0px);
    }
}
@keyframes hide_modal{
    0%{
        opacity: 1;
    }
    50%{
        opacity: 1;
    }
    100%{
        opacity: 0;
    }
}
@keyframes add_cart{
    15% {
        height: 350px;
        transform: translateY(-100px) scale(0.1);
        border-radius: 100%;
    }
    100%{
        transform: translateY(1000px) scale(0);
    }
}
@keyframes rotate-circle {
  0% {
    transform: rotate(-45deg);
  }
  5% {
    transform: rotate(-45deg);
  }
  12% {
    transform: rotate(-405deg);
  }
  100% {
    transform: rotate(-405deg);
  }
}
@keyframes icon-line-tip {
  0% {
    width: 0;
    left: 1px;
    top: 19px;
  }
  54% {
    width: 0;
    left: 1px;
    top: 19px;
  }
  70% {
    width: 50px;
    left: -8px;
    top: 37px;
  }
  84% {
    width: 17px;
    left: 21px;
    top: 48px;
  }
  100% {
    width: 25px;
    left: 14px;
    top: 45px;
  }
}
@keyframes icon-line-long {
  0% {
    width: 0;
    right: 46px;
    top: 54px;
  }
  65% {
    width: 0;
    right: 46px;
    top: 54px;
  }
  84% {
    width: 55px;
    right: 0px;
    top: 35px;
  }
  100% {
    width: 47px;
    right: 8px;
    top: 38px;
  }
}
/*
FOOTER MOBILE
*/
#footer-bar{
    position: fixed;
    bottom: 0px;
    left: 0px;
    right: 0px;
    z-index: 99999;
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    backdrop-filter: saturate(180%) blur(20px);
    min-height: 61px;
    border-top: solid 1px rgba(0, 0, 0, 0.05);
    text-align: center;
    padding-bottom: 20px;
    padding-top: 10px;
    background-color: #fff9;
}
#footer-bar .container{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-around;
    align-items: flex-end;
    align-content: flex-end;
}
.footer-buttons-nav{
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-content: center;
    align-items: center;
    text-decoration: none;
    position: relative;
}
.footer-buttons-nav i{
    font-size: 18px;
    color: #1f1f1f;
    opacity: .7;
}
.footer-buttons-nav img{
    opacity: .7;
}
.footer-buttons-nav span{
    color: #1f1f1f;
    font-size: 11px;
    font-weight: 500;
    opacity: .7;
}
#footer-bar .circle-nav i {
    transform: translateY(-25px) translateX(0px);
    color: #FFF !important;
    opacity: 1 !important;
    font-size: 20px !important;
    position: relative;
    z-index: 2;
}
#footer-bar .circle-nav u {
    position: absolute;
    left: 0px;
    right: 0px;
    width: 50px;
    border-radius: 50px;
    height: 50px;
    z-index: 0;
}
#footer-bar .circle-nav strong {
    position: absolute;
    width: 61px;
    height: 61px;
    border-radius: 50px;
    left: -10px;
    top: -40px;
    z-index: 0;
    box-shadow: 0 5px 15px 0 rgb(0 0 0 / 9%);
    animation: footerAni 1s infinite;
    background-image: linear-gradient(to bottom, #FF6600 0%, #cd590c 100%);
}
#footer-bar .circle-nav strong .count{
    position: absolute;
    top: -3px;
    right: -2px;
    padding: 0px 1px;
    background: #4caf50;
    font-weight: 600;
    min-width: 20px;
    min-height: 20px;
    opacity: 1;
    font-size: 14px;
    line-height: 16px;
    border-radius: 10px;
    border: 1px solid #00000059;
    color: #fff;
}
#footer-bar .circle-nav strong .count[title="0"]{
    display: none;
}
#footer-bar .circle-nav strong .count[title!="0"]{
    display: block;
}
.modal_custom.modal.fade .modal-dialog{
    transform: translateX(100%);
    transition: transform 0.7s ease;
    transition-delay: unset;
}
.modal_custom.modal.show .modal-dialog{
    transform: translateX(0%);
}
#modal-pizza .grupo_complementos, #passo-a-passo[data-tipo="pizza"] .grupo_complementos{
    z-index: 1;
    background: #e9ecef;
}
#modal-pizza .grupo_complementos small {
    color: var(--bs-secondary);
    font-size: 14px;
}
#modal-pizza .itens-preco{
    font-size: 16px;
    opacity: .4;
    color: #000;
}
#modal-pizza .itens-preco.active-preco{
    color: #008C00;
    opacity: 1;
}
.passo-a-passo-item-detalhes  .list-complementos-nome{
    font-size: 19px !important;
}
#user{
    position: absolute;
    top: 0;
    right: 4px;
    z-index: 99;
}
#user .dropdown-toggle{
    font-size: 30px;
    color: #999;
}
#user.logado .dropdown-toggle{
    color: #199719;
}
#user .dropdown-toggle::after{
    display: none;
}
#user .dropdown-menu{
    margin-right: 10px !important;
}
.custom_comfirmar_identidade .swal2-input{
    font-size: 14px;
}
.custom_comfirmar_identidade .swal2-styled.swal2-confirm{
    width: 75%;
    display: block !important;
}
.custom_comfirmar_identidade .swal2-actions{
    width: 100%;
}
#cont_pedidos_aberto{
    font-size: 14px;
    color: #fff;
    background: #199719 !important;
    top: -23px !important;
    opacity: 1;
    animation: footerAni 1s infinite;
    transform: translate(0px, 0px) !important;
}
.custom_invert_buttons .swal2-actions{
    flex-direction: row-reverse;
}
/* MODO  TOTEM */
body.totem .form-field-increment__value{
    font-size: 31px;
}
body.totem .form-field-increment__button{
    font-size: 71px;
}
body.totem .list-group-item .button_mais i{
    font-size: 71px;
}
body.totem .TabDetailsQuantity_category-item-garnish-tab-details-quantity__content__36Ina{
    height: 86px;
}
body.totem #modal_item .modal-footer{
    grid-template-columns: 220px 1fr;
}
body.totem #modal_item .modal-footer button.btn-primary{
    height: 85px;
}
body.totem #modal_item .btn_add_car .btn_add_car-text, body.totem #modal_item .btn_add_car_avancar .btn_add_car-text{
    font-size: 34px;
}
body.totem .modal_custom .modal-btn-close{
    font-size: 56px;
}
body.totem .modal_custom .modal-body{
    padding-top: 90px;
}
body.totem #footer-bar{
    padding-bottom: 30px;
    padding-top: 10px;
}
body.totem .modal_custom .modal-header .modal-title{
    font-size: 31px;
}
body.totem .grupo_complementos h5{
    font-size: 24px;
}
body.totem .footer-buttons-nav i{
    font-size: 48px;
}
body.totem .footer-buttons-nav span{
    font-size: 31px;
}
body.totem #footer-bar .circle-nav i{
    font-size: 50px !important;
}
body.totem #footer-bar .circle-nav strong {
    position: absolute;
    width: 110px;
    height: 110px;
    border-radius: 100%;
    left: 1px;
    top: -40px;
}
body.totem .container-md, body.totem .container-sm, body.totem .container{
    max-width: 790px
}
body.totem #footer-bar .circle-nav strong .count {
    position: absolute;
    top: -3px;
    right: -2px;
    padding: 0px 1px;
    background: #4caf50;
    font-weight: 600;
    min-width: 30px;
    min-height: 30px;
    opacity: 1;
    font-size: 18px;
    line-height: 28px;
    border-radius: 100%;
}
body.totem .container-menu{
    max-width: 90%;
    max-height: 470px;
}
body.totem #cardapio-sheet li a{
    font-size: 25px;
}
body.totem .box_carrinho_item .imagem_item {
    width: 150px;
}
body.totem .box_carrinho_item, body.totem .box_carrinho_footer{
    grid-template-columns: 150px 1fr;
}
.text_horadio h2{
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 0;
}
.text_horadio p{
    font-size: 14px;
    margin-bottom: 0px;
}
.text_horadio .dias_semana{
    font-size: 16px;
}
.custom_alert_erro .swal2-html-container{
    margin: 0 10px;
}
.swal2-html-container img{
    max-width: 100%;
}
.custom_alert_erro .swal2-popup{
    max-width: 100% !important;
    transform: translate(0, 0%) !important;
}
#modal_item .produto_esgotado.modal-footer{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
#modal_item .produto_esgotado.modal-footer button{
    width: 100%;
}
.produto_esgotado.list-group-item{
    opacity: .7;
    background: #00000026;
}
.item_selecionado.list-group-item{
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px inset, rgba(0, 0, 0, 0.1) 0px 4px 6px -4px;
    background: #ff66001a;
    border-radius: 10px;
}
/* / MODO  TOTEM */
/* HEADER */
header > .container{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
/*
.box-buttons-header a{
    background: #FF6600;
    color: #fff;
    text-decoration: none;
    padding: 3px 17px;
    border-radius: 30px;
}
.box-buttons-header a:hover{
    background: #e15c04;
}
*/
.box-buttons-header a {
    text-decoration: none;
    color: var(--bs-secondary);
}
#maisInformacoes .offcanvas-body{
    padding-bottom: 150px;
}
.d_mobile{
    display: none;
}
.ambiente_seguro{
    display: block;
    text-align: center;
    width: 100%;
}
.ambiente_seguro i{
    vertical-align: middle;
    color: #0d9f33;
    font-size: 18px;
}
#accordionPgtEntrega .accordion-item{
    border: none;
    background: unset;
    padding: 0px 5px;
}
#accordionPgtEntrega .accordion-button{
    border: 1px solid #dee2e6;
    background: #fff;
    box-shadow: rgb(0 0 0 / 19%) 0px 4px 3px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 800;
    margin-top: 12px;
    color: #212529;
}
#accordionPgtEntrega .accordion-body{
    padding: 0px;
}
.selo_compra_segura{
    display: flex;
    flex-direction: row;
    align-items: center;
    align-content: center;
    gap: 7px;
}
.selo_compra_segura i{
    font-size: 26px;
}
.selo_compra_segura div{
    display: flex;
    flex-direction: column;
}
.selo_compra_segura span:first-child{
    line-height: 10px;
    font-size: 16px;
}
.selo_compra_segura span:last-child{
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
}
.img-compra-segura{
    width: 100%;
}
/* /HEADER */

/* PAGAMENTO ONLINE */
.defaultTunaInputText{
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.defaultTunaInputOption{
    display: block;
    width: 100%;
    padding: 0.375rem 2.25rem 0.375rem 0.75rem;
    -moz-padding-start: calc(0.75rem - 3px);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-image: url(data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e);
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.defaultTunaLabel{
    margin-bottom: 0.5rem;
}
#card_number{
    position: relative;
}
.defaultTunaCardBrand{
    position: absolute;
    right: 6px;
    top: 33px;
    width: 42px !important;
    margin: 0 !important;
}
.container-pgt-online{
    padding: 22px 18px;
}
.container-pgt-online .accordion-body > div{
    margin-bottom: 10px;
}
.remove_cartao{
    position: absolute;
    right: 10px;
    top: 25px;
    color: #363636;
}
#card_cvv{
    display: grid;
    grid-template-areas: "label label" "input img";
    grid-template-rows: auto;
    grid-template-columns: 50% auto;
}
#card_cvv .defaultTunaLabel{
    grid-area: label;
}
#card_cvv .defaultTunaCVVImage{
    grid-area: img;
    padding-left: 10px;
    width: 59px;
}
#card_cvv div[is="formatedtextfield"]{
    grid-area: input;
}
.card_validade{
    display: grid;
    grid-template-areas: "month year";
    grid-template-rows: auto;
    grid-template-columns: 50% auto;
    gap: 10px;
    width: 250px;
}
.container-pgt-online #year{
    grid-area: year;
}
.container-pgt-online #month{
    grid-area: month;
}
#save_card{
    display: flex;
    flex-direction: row;
    align-content: flex-start;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
}
#save_card .defaultTunaLabel{
    margin-bottom:0px;
}
.defaultTunaValidation{
    font-size: 15px;
    padding-left: 0;
    font-weight: 500;
    color: #f00;
}
.cardItem{
    direction: ltr;
    display: flex;
    flex-direction: row;
    margin-bottom: 10px;
    flex-wrap: wrap;
    box-sizing: border-box;
    place-content: center flex-start;
    align-items: center;
    background: #fff;
    box-shadow: 0 2px 2px rgb(0 0 0 / 10%);
    border-radius: 14px;
    padding: 20px 15px;
    position: relative;
}
.cardItem .tunaSavedCardBrand, .cardItem .cardDataDiv {
    cursor: pointer;
}
.tunaSavedCardBrand {
    width: 54px;
    height: auto;
    margin: 0 10px 0px 10px;
}
.cardLabel {
    display: flex;
    flex-direction: column;
}
.cardName {
    font-size: 16px;
    color: #333;
    -webkit-line-clamp: 1;
    display: -webkit-box;
    width: calc(100% - 40px);
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
}
.cardNumber {
    font-size: 14px;
    color: #999;
}
.cardDataDiv {
    display: flex;
    justify-content: start;
    flex-direction: row;
    flex: 1 1 auto;
    width: 90%;
}
#tuna_saved_card_cvv {
    flex-basis: 100%;
    position: relative;
    margin-top: 15px;
    margin-left: 22px;
    flex-direction: row;
    box-sizing: border-box;
    display: flex;
    place-content: flex-end flex-start;
    align-items: flex-end;
    flex-wrap: wrap;
}
.defaultTunaCVVImage, .defaultTunaCardBrand {
    width: 54px;
    height: 36px;
    margin-right: 10px;
}
.cardItem input[type=text] {
    width: 110px;
}
#CLEAR_SELECTOR{
    display: none;
}
#accordionFlushExample .accordion-button:focus, #accordionFlushExample .accordion-button:not(.collapsed){
    background-color: #fff;
    border-color: #ffffff;
    color: #212529;
    box-shadow: unset;
}
.type-payment-pix.grid-buttons-ckeck.grid-buttons-pagamento, .type-payment-pix-creditcard.grid-buttons-ckeck.grid-buttons-pagamento{
    grid-template-columns: 100%;
}
/* /PAGAMENTO ONLINE */

/*SELECT DE BANDEIRAS CADASTRO DE TELEFONE*/

.telefone-cardapio{
    /* position: absolute; */
    width: 100%;
    border: none;
    /* border: 1px solid #ced4da; */
}

.select-bandeira-e-telefone{
    display: flex;
    align-items: center;
    border: 1px solid #ced4da;
    border-radius: 5px;
    position: relative;
}

.select-bandeira-e-telefone:focus{
    color: var(--bs-cor-text-body);
    background-color: var(--bs-cor-bg-modal-body-primaria)#fff;
    border-color: red;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.pais-selecionado{
    font-family: 'Source Sans Pro';
}
.dropdown-bandeiras {
      width: 60px;
      height: 38px;
      user-select: none;
      font-family: sans-serif;
      margin-right: 5px;
    }

.modal-body .background{
    height: 5000px;
    width: 100%;
    position: fixed;
    background-color: black;
    opacity: 0.7;
    z-index: 99;
}

    .dropdown-bandeiras .dropdown-toggle-bandeiras {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      padding: 5px;
      cursor: pointer;
      height: 30px;
      background-color: #fff;
      border-radius: 5px;
      position: absolute;
      left: 0px;
      top: calc(50% - 15px);
      bottom: 0;
    }

    .dropdown-bandeiras .dropdown-toggle-bandeiras.auto {
      left: 10px;
      width: 40px;
    }

    .dropdown-bandeiras .dropdown-toggle-bandeiras img {
      width: 20px;
      height: 14px;
      margin-right: 5px;
    }

    .dropdown-bandeiras .dropdown-menu-bandeiras {
      position: fixed;
      left: 0;
      right: 0;
      bottom: -100%;
      background: white;
      border: 1px solid #ccc;
      border-top-left-radius: 10px;
      border-top-right-radius: 10px;
      overflow-y: auto;
      transition: bottom 0.5s ease;
      z-index: 100;
      width: 100%;
    }

    .dropdown-menu-bandeiras.active{
        bottom: 0px;
        box-shadow: -1px -20px 20px 2px rgba(0, 0, 0, 0.1);
        padding: 10px;
    }

    .dropdown-bandeiras .dropdown-menu-bandeiras.auto {
      position: fixed;
      left: 0;
      right: 0;
      bottom: -100%;
      background: white;
      border: 1px solid #ccc;
      border-top-left-radius: 10px;
      border-top-right-radius: 10px;
      overflow-y: auto;
      transition: bottom 0.5s ease;
      z-index: 100;
      width: 100%;
      border-bottom: none;
    }



    .dropdown-menu-bandeiras.auto.active{
        bottom: 100px;
        box-shadow: -1px -20px 20px 2px rgba(0, 0, 0, 0.1);
        padding: 10px;
    }


    .dropdown-menu-bandeiras .container-titulo{
        position: relative;
    }

    .container-titulo i {
        position: absolute;
        right: 0px;
        top: -5px;
        padding: 10px;
        font-size: 25px;
        color: #ff6600;
    }

    .bandeira-e-nome{
        display: flex;
        align-items: center;
    }

    .bandeira-e-nome span{
        text-transform: capitalize;
    }

    .titulo-menu-bandeiras{        
        display: flex;        
        align-items: center;        
        justify-content: center;        
        font-size: 17px;        
        padding: 10px;        
        font-weight: bold;
    }
    



    .dropdown-bandeiras .dropdown-menu-bandeiras label {
      display: flex;
      align-items: center;
      padding: 8px 12px;
      cursor: pointer;
      justify-content: space-between;
      border-bottom: 1px solid #d4dadf;
    }

    .dropdown-bandeiras .dropdown-menu-bandeiras label:hover {
      background: #f0f0f0;
      /* border-bottom: 1px solid #d4dadf; */
    }

    .dropdown-bandeiras .dropdown-menu-bandeiras img {
      width: 20px;
      height: 14px;
      margin-right: 10px;
    }

    .dropdown-bandeiras input[type="radio"] {
      display: none;
    }

    .modal-body-comfirme-dados.modal-login, .modal-body.modal-login {
        height: calc(100% - 70px);
    }

    .page-login-user{
        height: 100%;
    }

    .modal-login-sem-scroll{
        overflow-y: hidden !important;
    }


/*SELECT DE BANDEIRAS CADASTRO DE TELEFONE*/
.bright-hover {
    filter: brightness(1);
    transition: filter 0.3s ease;
  }
  
  .bright-hover:hover {
    filter: brightness(1.1);
  } 

.darken-hover {
    filter: brightness(1);
    transition: filter 0.3s ease;
}

.darken-hover:hover {
    filter: brightness(0.9);
} 

.pedido-animar {
    animation: pedidoAni 1s infinite;
    background-image: linear-gradient(to bottom, #FF6600 0%, #cd590c 100%);
}

.id_comanda {
    float: right;
    text-align: center;
    line-height: 20px;
    font-size: 16px;
}
a.trocar-comanda {
    text-decoration: none;
}
a.trocar-comanda i {
    margin-right: 5px;
}
.mesa-id {
    font-size: 24px;
    font-weight: bold;
}

.header-mesa {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    margin-top: 5px !important;
}

.table-header {
    flex-direction: initial;
    display: flex;
    justify-content: center;
    gap: 0.7rem;
}

.table-header i {
    margin-right: 4px;
    color: #ff6600;
}

.auto_order {
    color: #fff;
    background: linear-gradient(0deg, rgb(26 195 6) 0%, rgb(32 151 47) 100%);
    border: 1px solid transparent;
    border: green;
 
    animation: pedidoAni 1s infinite;
}
.auto_order:hover {
    filter: brightness(0.9);
}

.div-empresa-status .header-mesa .trocar-mesa {
    color: #ff6600;
}
.trocar-mesa:hover {
    color: #df5b04;
    cursor: pointer;
    filter: brightness(0.9);
}
.trocar-mesa i.bi.bi-arrow-left-right {
    margin-right: 5px;
}

.pulse-animation {
    animation: pedidoAni 1s infinite;
}

.garcom img {
    opacity: 0.5;
    height: 24px;
}

.garcom-pedidos button {
    display: flex;
}

.garcom-pedidos button img {
    filter: invert(1);
    margin-right: 5px;
}
.img-qr{
    width: 250px;
    margin: 0 auto;
}

span.clear-filter {
    position: absolute;
    right: 20px;
    cursor: pointer;
}

.search-filter {
    position: absolute;
    bottom: 0;
    width: 100%;
    left: 0;
    padding-left: 20px;
}

.category-search-filter{
    display: none;
}

.erro_data_aniversario{
    color: red;
    font-size: 14px;
    display: block;
    margin-top: 5px;
}
.texto_barra_progresso {
    color: var(--bs-cor-text-body);
    font-size: 15px;
    margin: 0px;
    padding: 0px;
    display: flex;
    align-items: center;

}

.progress-container{
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 0px;
    width: 100%;
    margin: 5px;
    border: 1px solid #ced4da;
    padding: 8px 20px;
    border-radius: 10px;
    color: var(--bs-cor-text-body);
}

.conteudo_progress_container{
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.adicionar_produtos {
    color: #fff;
    background: linear-gradient(0deg, rgba(255, 102, 0, 1) 0%, rgb(197 87 15) 100%);    
    text-decoration: none;
    font-size: 12px;
    line-height: 12px;
    padding: 5px 10px;
    border-radius: 10px;
    margin-top: 5px;
    border: none;
    outline: none;
}

.adicionar_produtos:hover{
    color: white !important;
    background: linear-gradient(0deg, rgba(255, 102, 0, 1) 0%, rgb(197 87 15) 100%); 

}


.btn-swal-carrinho{
    background: linear-gradient(0deg, rgb(26 195 6) 0%, rgb(32 151 47) 100%) !important;
    border: green;

}

.btn-swal-carrinho:active{
    background: linear-gradient(0deg, rgb(10, 85, 10) 0%, rgb(15, 110, 15) 100%) !important;
}

@media(max-width: 464px){
    .btn-swal-auto-atendimento{
        width: 185;
        height: 46px;
    } 
}

#modal_login_usuario{
    z-index: 99999;
}


#container-new-menu .modal_categorias .itens-img{
    height: 98px;
    max-height: 98px;
}


progress {
    width: 100%;
    height: 6px;
    margin-top: 5px;
    padding: 0px;
    border-radius: 10px;
}

progress::-webkit-progress-bar {
    background-color: #f1f1f1;
    border-radius: 10px;
}

progress::-moz-progress-bar {
    background-color: #f1f1f1;
    border-radius: 10px;
}
progress::-webkit-progress-value {
    background-color: #008c00;
    border-radius: 10px;
    transition: width 1s cubic-bezier(0.22, 0.61, 0.36, 1);
}

progress::-moz-progress-value {
    background-color: #008c00;
    border-radius: 10px;
}
@media(max-width: 541px){
    .adicionar_produtos {
        display: flex;
        text-align: center;
        justify-content: center;
        align-items: center;
        max-width: 100px;
    }

}

@media(max-width: 400px) {
    .texto_barra_progresso {
        font-size: 13px;
    }
}

@media(max-width: 376px){
    .texto_barra_progresso {
        font-size: 12px !important;
    }
}

@media (min-width: 1025px) {
    .garcom-pedidos {
        display: flex;
        justify-content: center;
    }
    .garcom-pedidos button {
        background: var(--bs-primary);
        border: 1px solid var(--bs-primary);
        border-radius: 5px;
        padding: 0.5rem 1rem;
        color: white;
        font-weight: bold;
        animation: pedidoAni 1s infinite;
    }
}


@media (max-width: 1024px) {
    .garcom-pedidos {
        position: fixed;
        top: 0.7rem;
        z-index: 19;
        right: 2.4rem;
        font-size: 12px;
        max-width: 55px;
    }

    .garcom-pedidos button {
        background: var(--bs-primary);
        border: var(--bs-primary);
        border-radius: 4px;
        color: white;
        font-weight: bold;
        line-height: 12px;
        padding: 6px;
    }
}

@keyframes pedidoAni {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.03);
    }
}

@keyframes footerAni {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}
@media (min-width: 1200px){
    .categorias-info-titulo{
        font-size: 2rem;
    }
}
@media (min-width: 576px){
    .modal_custom .modal-header{
        max-width: 640px;
        right: 0;
        margin: auto;
        left: auto;
    }
    .modal-dialog-scrollable .modal-content {
        height: 100%;
        /* padding-bottom: 20px; */
    }
    .modal_custom .modal-dialog{
        max-width: 640px;
        margin: 0;
        right: 0px;
        left: auto;
        position: fixed;
        top: 0px;
        width: 100%;
        min-height: 100%;
    }
    body.totem .modal_custom .modal-dialog, body.totem .modal_custom .modal-header{
        max-width: 100%;
    }
    body.totem .modal-dialog-scrollable{
        height: 100%;
    }
    .itens{
        grid-template-columns: 180px 1fr;
    }
    #modal_item .imagem_item {
        height: 345px;
    }
    #modal_item .imagem_item img{
        height: 345px;
    }
    body.totem #modal_item .imagem_item, body.totem #modal_item .imagem_item img{
        height: 475px;
    }
    .modal_custom .modal-body{
        padding-bottom: 0px;
    }
    #modal_item .modal-footer{
        /* padding-bottom: 40px; */
    }
    #modal_carrinho .modal-dialog{
        height: 100%;
    }
    #modal_finalizar_pedido .modal-fullscreen-sm-down {
        height: 100%;
        margin: 0;
    }
    .container-menu{
        max-width: 70%;
    }
}
@media (max-width: 1024px) {
    .categorias{
        min-height: 180px;
    }
    main {
        grid-template-columns: auto;
    }
    .carrinho{
        position: fixed;
        right: 0px;
        width: 100%;
        z-index: 9;
        transform: translateX(100%);
        height: 100vh;
    }
    #tabs_btn-group {
        width: 100%;
        background: #fff;
        padding: 10px 10px 0px;
        border-radius: 4px;
        position: sticky;
        top: 0px;
        z-index: 1;
        overflow: hidden;
        left: 0px;
        height: 59px;
    }
    #tabs_btn-group .btn-group {
        overflow-x: auto;
        position: absolute;
        left: 0px;
        width: 100%;
        margin-bottom: 20px;
        height: 44px;
    }
    .list_itens{
        padding: 30px 0px;
    }

}
@media (max-width: 669px) {
    .d_desktop{
        display: none !important;
    }
    .box-buttons-header.d_mobile{
        
    }
}
@media (max-width: 768px) {
    .categorias{
        min-height: 190px;
    }
    #modal_item .list-group-item{
        gap: 4px;
        padding: 8px 0px;
    }
}
@media (max-width: 738px) {

    header{
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .box-img-header{
        display: flex;
        justify-content: space-around;
        flex-direction: row;
        align-content: center;
        align-items: center;
        width: 90%;
    }
    .box-buttons-header {
        width: 100%;
        display: flex;
        justify-content: space-around;
        margin-top: 15px;
    }
    .jq-toast-wrap.bottom-left{
        width: 96%;
        left: 0px !important;
        bottom: 75px !important;
        right: 0;
        margin: auto;
    }
    #footer-bar .container{
        padding: 0px
    }
}
@media (max-width: 425px) {
    .list-complementos-nome, #modal_item .list-group-item > div:last-child{
        font-size: 10px;
        /* text-align: center; */
    }
    .grupo_complementos h5{
        font-size: 14px;
    }
    .grupo_complementos small{
        font-size: 14px;
    }
    #modal_item .list-group-item.radio_input{
        cursor: pointer;
    }
}
@media (max-width: 320px){
    .itens-preco-desconto{
        flex-direction: column;
        align-items: flex-start;
    }
}
.loading{
    position: relative;
    background: transparent !important;
    overflow: hidden !important;
    text-overflow: unset !important;
}
.loading *{
    opacity: 0;
}
.loading:after{
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    animation-iteration-count: infinite;
    animation-name: placeholderAnimation;
    animation-timing-function: linear;
    background: linear-gradient(90deg, rgba(153, 153, 153, 0.1) 8%, rgba(153, 153, 153, 0.2) 18%, rgba(153, 153, 153, 0.1) 33%) 0% 0% / 1260px 170px;
    z-index: 9;
}
#container-v1 .container-zuck{
    padding-top: 1rem;
    height: auto;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    max-width: 1150px;
    padding-bottom: 9px;
}
#container-v1 .container-zuck #stories{
    padding-left: 17px;
    padding-right: 17px;
    margin-right: 40px;
}
#container-v1 #zuck-modal a{
    color: #fff;
    text-decoration: none;
}
.modal-backdrop{
    min-width: 100%;
    min-height: 100%;
}
@media (min-width: 780px) {
    #container-v1 .container-zuck{
        padding-right: var(--bs-gutter-x, 0.75rem);
        padding-left: var(--bs-gutter-x, 0.75rem);
        position: absolute;
        max-width: 1150px;
        margin: auto;
        right: 0;
        left: 0;
        justify-content: flex-end !important;
        height: 143px;
        display: flex;
    }
    #container-v1 .stories.carousel .story > .item-link > .item-preview{
        height: 9vw;
    }
    #container-v1 .stories.carousel .story{
        width: 9vw;
    }
    #container-v1 .stories.carousel .story > .item-link > .info .name {
        font-size: 12px;
      }
}
@media screen and (min-width: 750px) and (max-width: 779px) {
    #container-v1 .stories.carousel .story > .item-link > .item-preview{
        height: 8vw;
    }
    #container-v1 .stories.carousel .story{
        width: 8vw;
    }
    #container-v1 .stories.carousel .story > .item-link > .info .name {
        font-size: 11px;
      }
}
@media screen and (min-width: 780px) and (max-width: 993px){
    #container-v1 header > .container-zuck{
        padding: 29px 0px 0px;
    }
    #container-v1 .container-zuck #stories{
        width: 60%;
    }
    
}
@media screen and (min-width: 1020px) and (max-width: 1160px){
    #container-v1 .container-zuck{
        padding-right: 40px;
    }
}
@media (max-width: 779px) {
    #container-v1 header > .container{
        padding-left: 0px;
        padding-right: 0px;
    }
}
@media (max-width: 360px) {
    .button_comprar-item{
        padding-left: 0;
    }
    .itens-div-img{
        max-width: 136px;
    }
}