html {
  scroll-behavior: smooth;
}
.print-only {
    display: none;
}

@media print {
    /* Ocultar todos os elementos por padrão */
    body * {
        visibility: hidden;
        font-size: 11px;
    }
    .print-only {
        display: block;
        visibility: visible; /* Garantir a visibilidade */
        position: relative;  /* Ajustar conforme necessário */
        width: 100%;         /* Ajustar conforme necessário */
        margin-top: 20px;    /* Ajustar conforme necessário */
    }
    
    .print-only .row{
        display: flex;
    }
    .print-only col-6{
        width: 50%;
       
    }
    .print-only col-12{
        width: 100%;
      
    }
    .p-4{
        padding: 12px 0 !important;
    }
    /* Mostrar apenas o conteúdo dentro de #printableArea */
    #printableArea, #printableArea * {
        visibility: visible;
    }

    /* Posicionar o conteúdo no topo da página */
    #printableArea {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
    }

    /* Configurar tamanho da página para A4 e margens */
    @page {
        size: A4;
        margin: 20mm;
    }

    /* Ajustar cores e fontes para impressão */
    body {
        color: #000;
        background: none;
        font-family: Arial, sans-serif; /* Fonte legível para impressão */
        font-size: 11pt;
    }

    /* Definir tamanhos de fonte específicos */
    #printableArea {
        font-size: 11pt; /* Tamanho base da fonte */
    }
    #printableArea col-6{
        width: 50%;
       
    }
    #printableArea col-12{
        width: 100%;
      
    }
    #printableArea h5.card-title {
        font-size: 15pt; /* Tamanho da fonte para títulos */
    }

    #printableArea .text-dark,
    #printableArea .text-gray,
    #printableArea .text-uppercase,
    #printableArea .text-capitalize {
        font-size: 12pt; /* Tamanho da fonte para textos principais */
    }

    #printableArea table {
        width: 100%;
        border-collapse: collapse;
        font-size: 12pt; /* Tamanho da fonte para tabelas */
    }

    #printableArea th,
    #printableArea td {
        border: 1px solid #000;
        padding: 8px;
        text-align: left;
        vertical-align: top;
    }

    /* Remover bordas e sombras das cartas */
    #printableArea .card,
    #printableArea .card-body,
    #printableArea .card-header {
        box-shadow: none;
        border: none;
    }

    /* Ajustar estilos de endereços */
    #printableArea address {
        font-style: normal;
        line-height: 1.5;
        font-size: 12pt; /* Tamanho da fonte para endereços */
    }

    /* Remover elementos interativos */
    button, input, select, textarea, a.btn, .no-print {
        display: none !important;
    }

    /* Garantir que as colunas fiquem lado a lado */
    #printableArea .row {
        display: flex;
        flex-wrap: nowrap;
    }

    

    /* Ajustar espaçamento interno */
    #printableArea .py-3 {
        padding-top: 12px !important;
        padding-bottom: 12px !important;
    }

    /* Ajustar links para não terem cores diferentes */
    #printableArea a {
        color: #000;
        text-decoration: none;
    }

    /* Garantir que as tabelas ocupem todo o espaço disponível */
    #printableArea .table-responsive-md {
        overflow: visible;
    }
    
}
.hidden-until-loaded {
    display: none;
}
.preview-box {
    background-color: #f8f9fa;
    display: flex;
    justify-content: center;
    align-items: center;        
    border-radius: 8px;
    border: 1px dashed #6c757d;
    margin: 6px 2px;
}
.preview-original img {
    max-width: 100%;
    height: auto;
    border: 1px solid #ddd;
    padding: 5px;
    background: #f7f7f7;
}
.thumb-container {
    border: 1px solid #ddd;
    padding: 10px;
    margin-top: 20px;
    background: #f1f1f1;
}
 .thumb-img {
    height: 75px;  /* Define a altura fixa */
    margin: 5px;
    display: inline-block;
    position: relative;
    overflow: hidden;
}
.thumb-img img {
    height: 100%; /* Ajusta a imagem para ter 100% da altura */
    width: auto;  /* Mantém a proporção da largura */
}
.thumb-action {
    position: absolute;
    top: 5px;
    color: #fff;
    cursor: pointer;
    padding: 5px;
    cursor: pointer;
    z-index: 2;
}
.thumb-action.edit {
    left: 5px;
}
.thumb-action.delete {
    right: 5px;
}
.thumb-action:hover {
    background: rgba(0, 0, 0, 0.8);
}

.font-size-sm {
    font-size: 0.875rem !important;
}
.font-weight-normal{
    font-weight: 400;
}
.cursor-default{
    cursor: pointer;
}
.h-50{height: 50px;}
.h48{height: 48px;}
.h46{height: 46px;}
.h2-7{height: 2.7px;}
.h-180 textArea{height: 180px;}
.h-180 textArea::placeholder {
    color: #cacaca; /* Define a cor do texto do placeholder */
}
.mw-400{
    max-width: 400px;
}
.mw-100{
    max-width: 100%;
}
.bg-gradient-gray-02 {   
    background: #f5f5f5 linear-gradient(180deg, #f7f7f7, #f5f5f5) repeat-x !important;
}
.bg-gold{
    background-color: #e8b13a;
}
.bg-purple{
    background-color: #7369A5;
}
.bg-purple-75{
    background-color: #7369a5c7!important;
}
.bg-orange{
    background-color: #ffa007;
}
.bg-orange-light{
    background-color: #ffa007;
}
.text-orange-light{
    color: #ffa007;
}
.bg-blue{
    background-color: #0d6efd;
}
.bg-blue-green{
    background-color: #399caf;
}
.bg-dark-50{
    background-color: rgba(0, 0, 0, 0.5);
}
.text-orange{
    color: #F84525!important;
}
.text-purple{
    color: #7369A5!important;
}
.text-salmao{
    color: #ffccbc!important;
}
.text-blue-btns{
    color: #7fcaf4!important;
}
.red, .color-red{
    color: #dc3545;
}
.required-field{
    color: #508d71;
}
.cursor-hand{
    cursor: pointer;
}
.text-gray-50{
    color: #8f8f8f; 
    font-weight: 500;
}
.is-valid {
    border-color: green !important; /* Prioridade máxima */
}

.is-invalid {
    border-color: red !important; /* Prioridade máxima */
}

.invalid-feedback {
    display: none; /* Inicialmente escondido */
}

.hide{
    display: none;
}
.show{
    display: block;
}

.btn-primary-orange {
    background-color: #F84525;
    border-color: #F84525;
    color: #ffffff;
}

.btn-primary-orange:hover {
    background-color: #eb3616;
    color: #ffffff;
    border-color: #eb3616;
}

.btn-primary-orange:focus {
    box-shadow: none;
}

.btn-primary-orange:active {
    background-color: #eb3616;
    border-color: #eb3616;
}

.btn-primary-orange:disabled {
    background-color: #F84525;
    border-color: #F84525;
}


@media (max-width: 1539px) {
    .back_history {
        display: none;
    }
}

@media (min-width: 1540px) {
    .back_history {
        position: fixed;
        bottom: 15px;
        left: 10px;
    }
}
#termos h2{
    margin-top:40px!important;
}
#termos h3{
    margin-top:20px!important;
}
.navbar-dark{
    background-color: #333!important;
}
.navbar-dark .btn-user span{color: white;}
.icon-bag-1 {
    fill: white; /* Muda a cor do ícone SVG para branco */
}
.input-group-text {
    display: flex;
    align-items: center;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #ffffff;
    text-align: center;
    white-space: nowrap;
    background-color: #545758;    
    border-radius: 0.375rem 0 0 0.375rem!important;
    height: 52px!important;
    
}
.btn-orange {
    --bs-btn-bg: #F84525;
    --bs-btn-border-color: #F84525;
    --bs-btn-hover-bg: #eb3616;
    --bs-btn-hover-border-color: #eb3616;
    --bs-btn-focus-shadow-rgb: none;
    --bs-btn-active-bg: #eb3616;
    --bs-btn-active-border-color: #eb3616;
    --bs-btn-disabled-bg: #F84525;
    --bs-btn-disabled-border-color: #F84525;
    color: #FFFFFF;
}
.btn-orange:hover{
    color: #FFFFFF;
}
.btn-orange:active {
    color: #f9fad8!important;
}

.btn-yellow {
    --bs-btn-bg: #e1bb00;
    --bs-btn-border-color: #e1bb00;
    --bs-btn-hover-bg: #c9a300;
    --bs-btn-hover-border-color: #c9a300;
    --bs-btn-focus-shadow-rgb: none;
    --bs-btn-active-bg: #b38c00;
    --bs-btn-active-border-color: #b38c00;
    --bs-btn-disabled-bg: #e1bb00;
    --bs-btn-disabled-border-color: #e1bb00;
    color: #FFFFFF;
}

.btn-yellow:hover {
    color: #FFFFFF;
}

.btn-yellow:active {
    color: #fffde7!important;
}


.btn-success {
    --bs-btn-color: #fff;
    --bs-btn-bg: #2ab48d!important;
    --bs-btn-border-color: #2ab48d!important;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #157347;
    --bs-btn-hover-border-color: #146c43;
    --bs-btn-focus-shadow-rgb: 60, 153, 110;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #146c43;
    --bs-btn-active-border-color: #13653f;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #2ab48d!important;
    --bs-btn-disabled-border-color: #2ab48d!important;
}
input:-internal-autofill-selected {
    background-color: #fff!important;
}
.enhanced-alert {
    border-radius: 8px;
    border: 2px dashed #ff0400;
    padding: 15px;
    position: relative;
    display: flex;
    align-items: center;
    animation: fadeIn 0.5s ease-in-out;
    background-color: #fff; /* Fundo branco */
}

.alert-icon {
    font-size: 24px;
    margin-right: 15px;
}

.alert-danger {
    color: #ff0400; /* Cor do texto */
}

.alert-success {
    color: #155724;
}

.alert-warning {
    color: #856404;
}

.alert-info {
    color: #0c5460;
}

.alert-message {
    flex: 1;
}
.line-height-20{
    line-height: 20px;
}
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.alert-button {
    background: none;
    border: none;
    color: inherit;
    cursor: pointer;
    outline: none;
}

.form-login-register .nav-link {
    display: block;
    padding: var(--bs-nav-link-padding-y) var(--bs-nav-link-padding-x);
    font-size: 18px;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    background: 0 0;
    border: 1px solid #7369A5;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out;
}

.form-login-register .nav-pills .nav-link.active, .nav-pills .show>.nav-link {
    color: #fff;
    background-color: #7369A5;
}
#login-popup .display-8{
    font-size: 20px;
    line-height: 20px;
}
#login-popup h2{    
    color: #333;
}
#login-popup p{
    line-height: 20px;
    color: #333;
}
.profile-cover-avatar {
        
        width: 120px;
        height: 120px;
        object-fit: cover;
    }


.verified-badge {
    position: absolute;
    bottom: 48px;
    left: 15px;
}
.verified-listing {
    max-height: 32px;    
}

.element .pf-head {
    position: relative;
}
.element img{
    max-width: 44px;
}
.flex-shrink-0 img{
    width: 26px;
    height: 26px;
}

.flex-shrink-01 img{
    width: 46px;
    height: 46px;
}
.flex-shrink-1 img{
    width: 56px;
    height: 56px;
}
.page-link {
    position: relative;
    display: block;
    padding: .5rem .75rem;
    margin-left: -1px;
    line-height: 1.25;
    color: #17a2b8;
    background-color: #fff;
    border: none !important;
}

.middle-hour{
    width: 70px;
    align-items: center;
    text-align: center;
    justify-content: center;
    margin: 0;
}
.text-justify{
    text-align: justify;
}
.terms a{
    color: #000;
    text-decoration: underline;
    font-weight: 500;
}
.inputObs{
    font-size: 11px;
    padding-left: 3px;
}
.img-send-ok{
    position: absolute;
    right: -20px;
    top:-60px;
}
 .status-aberto {
    color: green;
    font-weight: bold;
}

.status-fechado {
    color: red;
    font-weight: bold;
}

.time-remaining {
    position: relative;
}
.time-remaining span{
    position: absolute;
    left: 42px;
    top: 31px;
    font-size: 12px;
    font-weight: 600;    
}
.time-remaining img {
    width: 120px;
    height: 55px;
}
.icon-grey{
    color: #9B9B9B;
}
.btn-user span{
    font-size: 16px;
    
}
.navbar-toggler {
    padding: 0!important;
    border: 0!important;
    background-color: transparent!important;
    margin-left: 6px!important;
}
.header-customize-item {
    position: relative;
    line-height: 16px;
    font-size: 16px;
    font-weight: 600;
    height: 100%;
}
.uk-navbar {
    display: flex;
    position: relative;
}
.uk-navbar-nav {
    display: flex;
    margin: 0;
    padding: 0;
    list-style: none;
}
.uk-navbar-nav .uk-navbar-dropdown{
    background: white;
}
.mainmenu .uk-navbar-nav > li > a {
    min-height: 60px;
    color: #222222;
    font-size: 16px;
    letter-spacing: -0.025em;
    line-height: 0.94;
    text-transform: none;
}
.uk-navbar-nav>li>a {

    transition: .1s ease-in-out;
    transition-property: color, background-color;
}
.uk-navbar-nav>li>a {
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;  
    padding: 0 15px;   
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
   
}
.header-customize-item .icon {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}
.mainmenu .uk-navbar-nav > li > a {
    color: #222222;
    font-size: 16px;
    letter-spacing: -0.025em;
    line-height: 0.94;
    text-transform: none;
    cursor: pointer;
}
#cc-dd {
    overflow: auto;
    height: inherit;
    max-height: 400px;
}

.visible-hidden {
    visibility: hidden;
}
[class*=uk-navbar-dropdown-bottom] {
    margin-top: 15px;
}
.uk-navbar-dropdown {
    position: absolute;
    z-index: 1020;
    box-sizing: border-box;
    width: 350px;
    padding: 25px;
    background: #f3f3f3;
    color: #666;
    box-shadow: 0 5px 12px rgba(0, 0, 0, .15);
    opacity: 0;
    transform: translateY(-10px); /* Inicia ligeiramente acima */
    transition: all 0.3s ease; /* Transição suave */
    display: none; /* Inicialmente escondido */
    left: -125px;
}

.uk-navbar-dropdown.show {
    display: block;
    opacity: 1;
    transform: translateY(0); /* Volta para sua posição normal */
}
.theiaStickySidebar .list-group-item {
    background: #ffffff !important;
    border: none !important;
}
#open_cart .list-group-item:first-child {
    border-top-width: 0;
}
    

.list-group {   
    display: flex;
    flex-direction: column;
    padding-left: 0;
    margin-bottom: 0;
}
.list-group-flush .list-group-item {
    border-right: 0;
    border-left: 0;
    border-radius: 0;
}
.shopping-cart-popup .list-group-item{
    background: #f3f3f3!important;
}
.shopping-cart-popup .list-group-item:first-child {
    border-top-width: 0;
}

.home-img-last-prods{    
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    max-height: 100% !important;
    max-width: 100% !important;
    object-fit: contain !important;
    background-color: #fff;

}
.bg-blur-2{
    background-color: #debb6e;
}
.header-customize-item .link {
    color: #5d5d5d;    
    display: flex;
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
}
.search-select-input .form-control {
    height: 52px;
    font-size: 16px;
    padding: 6px 16px 6px 55px;
    border-radius: 30px;
}
.no-border{
    border: none!important; box-shadow: none!important;
}
.navbar-dark .nav-link{
    background-color: #333!important;    
    color: #fff;
    padding-top: 15px;
    padding-bottom: 15px;
}

#navbarSupportedContent .nav-link{
    padding-top: 6px!important;
    padding-bottom: 6px!important;
}
#dashboard #name {
    height: auto; /* Garante que a altura seja controlada pelo conteúdo */
}
#dashboard .sidebar-nav ul li {
    padding: 0 32px 0px 0px;
}
#dashboard .sidebar-nav ul li {
    position: relative;
    white-space: nowrap;
}
#dashboard .sidebar-nav ul li a {
    color: #433c3a;   
    margin-bottom: 2px;
    border-left: 5px solid transparent;
    border-radius: 0 30px 30px 0;
    padding: 10px 0 10px 27px;
}
#dashboard .sidebar-nav ul li a {
    font-weight: 600;
    font-size: 14px;    
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;  
    -o-transition: .3s;
    transition: .3s;    
    overflow: hidden;
}
#dashboard .sidebar {
    min-width: 320px;
    max-width: 320px;
    min-height: 100vh!important;
}
#dashboard .sidebar-body .nav-label {
    padding: 10px 32px;
}
#dashboard .sidebar-nav ul li.mm-active a {
     background-color: rgb(220 186 109 / 44%);
     border-color:#debb6e;
     -webkit-box-shadow: none;
    box-shadow: none;
}
#dashboard .sidebar-nav ul li .nav-second-level li a {
    color: #828282;
    font-weight: 400;
    padding-left: 61px;
    font-size: 13px;
    padding-top: 6px;
    padding-bottom: 6px;
    margin: 0;
    border-left: 0;
    background-color: transparent;
}

.nav-second-level li a i {
    font-size: 15px!important;
}
#header-comerciante a{
    color: #fff;
}
#dashboard .text-primary{
    color: #DEBB6E!important;
}
.dashboard-home{
    font-size: 18px;
}
#dashboard .form-control {
    display: block;
    height: calc(1.7em + 0.75rem + 2px);
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.7;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #f0f0f0;
    border-radius: 3px;   
}
#dashboard .form-control-textarea{
    height: auto;
}
#dashboard .form-control:disabled {
    background-color: #e5e5e5!important;
    color:#91989e;
}

.input-group-text{
    border-color: #f0f0f0 ;
}
.special-modal .modal-content{
    background-color: #FFFFFF;
}
.special-modal .modal-content a, .chat-list__sidebar-tabs a{
    color: #212121!important;
}
.special-modal .modal-title::after {
    content: none;
}
.align-items-stretch {
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
}
.store-image{
    padding: 0 16px 8px 0;
}
.font-size-lg {
    font-size: 1.125rem !important;
}
.font-size-12{
    font-size: 12px;
}
.font-size-13{
    font-size: 13px;
}
.font-size-16{
    font-size: 16px;
}
.tab-content .action a {
    box-sizing: border-box;
    display: inline-block;    
    padding: 10px 25px;
    border: 1px solid #86b5a2;
    border-radius: 8px;
    background: #ffffff;
    color: #222222!important;
    font-size: 16px;
    font-style: normal;
    font-weight: normal;
    
    text-align: center;
    white-space: nowrap;
    transition: 0.3s;
    cursor: pointer;
}

.tab-content .action a:hover, .tab-content .action a:focus{
    background-color: #86b5a2;
    color: #ffffff!important;
    text-decoration: none;
}


#dashboard .main-container {
    display: flex;
    width: 100%;
    height: 100vh;
}

#dashboard .sidebar {
    width: 320px;
    min-width: 320px;
    position: relative;
}

 #dashboard .main-content {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: auto;
}

.bg-brown-light{
    background-color: rgb(120 117 110 / 13%);
}
.form-row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -5px;
    margin-left: -5px;
}
.form-row > .col, .form-row > [class*="col-"] {
    padding-right: 5px;
    padding-left: 5px;
}
#product select{
    border-radius: 8px 0 0 8px!important;
    
}
#product .input-group>.input-group-append>.btn {
    border-radius: 0!important;
}
#dashboard .input-group {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    -webkit-box-align: stretch;
}
.font-size-md {
    font-size: 1rem !important;
}
#dashboard .text-dark {
    color: #000 !important;
}
.font-weight-semibold {
    font-weight: 600 !important;
}
#dashboard .modal-content{
    background-color: #FFFFFF;
}
.about-image-wrap {
    padding: 5px;
    background-color: #7DB0B4!important;
}
#messages{ .table thead th {
   background-color: #d1d1d1!important
    } 
    .table>:not(:last-child)>:last-child>*{
        background-color: #d1d1d1!important
    } 
}
.table>:not(:last-child)>:last-child>* {
    background-color: #DEBB6E;
}
.table thead th {
   background-color: #DEBB6E!important
}
.table tbody tr th{
    text-align: center !important;
}
.bg-gray-06{
    background-color: #f4f4f5;
}
.pricing-table th:not(:last-child) {
    border-right: 1px solid #e2e2e2;
}
.table td, .table th {
  border: 1px solid #e2e2e2;
}  

.home-about {
    padding-bottom: 40px!important;
}

#faqs .accordion-item {
    background-color: #f9f9f9 !important;
}
#condicoesProModal{
    color: #333333;
}

@media (max-width: 992px) {
    .section-home-business{        
        --bs-bg-opacity: 1;
        background-color: rgba(var(--bs-light-rgb),var(--bs-bg-opacity))!important;       
        padding-top: 0px !important;
        padding-bottom: 0px !important;
    }
    .owl-nav-bottom.owl-theme .owl-nav {
        padding-bottom: 20px;
        margin: 0px auto 0px;
    }
    .footer-row img{
        max-width: 220px;
    }
    #account{margin: 0px;}
    .table-responsive th, td{font-size: 12px;}
    .
}

@media (max-width: 1400px) {
    
    .footer-row img{
        max-width: 280px;
    }
    .
}

@media (max-width: 575px) {
    .links-mobile{
        margin-top: 0px !important;
    }
    .search-select-input .form-control {
        height: 52px;
        font-size: 15px;
        padding: 6px;
        border-radius: 0px;
    }
    .description-list p{
        margin-bottom: 6px;
    }
}

@media (max-width: 420px) {
  .display-5 {
    font-size: 20px!important;   
  }
  .display-6{
      font-size: 24px!important;
  }
  .display-5{
      font-size: 16px!important;
  }
  .icon{
      display: none;
  }
}
.mx-w-250{
    max-width: 250px;
}
.mx-w-285{
    max-width: 285px;
}
.mx-w-378{
    max-width: 378px;
}


.timeline-container {
    display: flex;
    justify-content: center;
    overflow-x: auto; /* Permite scroll horizontal em telas menores */
    padding: 20px;
}

.timeline {
    display: flex;
    position: relative;
    width: 100%;
    justify-content: space-around;
    padding: 0;
    margin: 20px 0 0;
    list-style: none;
    counter-reset: year 0; /* Inicia o contador em 1 */
}

.timeline li {
    flex: 1;
    position: relative;
    text-align: center;
    text-transform: uppercase;
    font-family: 'Dosis', sans-serif;    
    box-sizing: border-box;    
    z-index: 2;
}

.timeline li:before {
    counter-increment: year;
    content: counter(year); /* Exibe o valor do contador */
    width: 50px;
    height: 50px;
    border: 3px solid #4caf50;
    border-radius: 50%;
    display: block;
    text-align: center;
    line-height: 47px;
    margin: 0 auto 10px auto;
    background: #202020;
    color: #dadada;
    position: relative;
    z-index: 1000;    
}


.timeline li:after {
    content: "";
    position: absolute;
    width: calc(100%); /* Faz a linha ocupar a largura total incluindo a metade do círculo */
    height: 1px;
    background-color: #4caf50;
    top: 25px;
    left: 0%; /* Centraliza a linha */
    z-index: -1;
    transition: all ease-in-out .3s;    
}

.timeline li:first-child:after {
    content: "";
    left: 50%; /* Ajusta a linha para o primeiro item */
    width: 50%;
    
}

.timeline li:last-child:after {
    content: "";
    left: 0%; /* Ajusta a linha para o primeiro item */
    width: 50%;
}

.timeline li.active {
    color: #555555;
}

.timeline li.active:before {
    background: #4caf50;
    color: #F1F1F1;
    border: 3px solid #141914;
    font-size: 20px;
    font-weight: 800;
}

.timeline li.active + li:after {
    background: #4caf50;
}
.timeline li.active .legend{
    color: #4caf50;
}
.timeline .legend{
    text-transform: none;
    font-family: var(--bs-body-font-family);
    font-size: 14px;
}
.timeline .legend a{
    text-transform: none;

    font-size: 14px;
    color: #bababa;
    text-decoration: underline;
}

/* Responsividade */
@media (max-width: 768px) {
    .timeline {
        flex-direction: column;
        align-items: center;
    }

    .timeline li:after {
        width: 1px;
        height: calc(100% + 50px); /* Calcula a altura da linha incluindo a metade do círculo */
        top: 50%;
        left: 25px; /* Ajusta a posição da linha */
        transform: translateY(-50%);
    }

    .timeline li:first-child:after {
        height: calc(50% + 25px); /* Ajusta a altura para o primeiro item */
        transform: translateY(0);
    }

    .timeline li:last-child:after {
        height: 0;
    }
}

@media (min-width: 1200px){
    #header-comerciante {
        position: relative;
        min-height: 50px;
    }

    #header-comerciante .navbar-brand {
        position: absolute; /* Faz o logotipo ficar na posição desejada dentro do contêiner */
        left: 20px; /* Posiciona o logotipo à esquerda */
        top: 50%; /* Centraliza verticalmente dentro do contêiner */
        transform: translateY(-50%); /* Corrige a centralização vertical */
    }

}
#validacao, #pagamento, #acesso{
    color: #000;
}
#email-exists-msg{
    font-size: 12px;
}

#floating-button, #floating-button-aderir {
    position: fixed;
    right: -20px; /* Ajuste conforme necessário */
    top: 150px; /* Ajuste conforme necessário */
    z-index: 1000; /* Certifique-se de que está acima de outros elementos */
    transition: opacity 0.3s ease, transform 0.3s ease;
    opacity: 0;
    transform: translateY(20px); /* Inicialmente fora da vista */
    max-width: 240px; /* Limite máximo de largura */
    max-height: 240px; /* Limite máximo de altura */
    width: auto; /* Permite ajustar a largura automaticamente */
    height: auto; /* Permite ajustar a altura automaticamente */
    padding-right: 30px;
}

#floating-button-login {
    position: fixed;
    right: -20px; /* Ajuste conforme necessário */
    top: 200px; /* Ajuste conforme necessário */
    z-index: 1000; /* Certifique-se de que está acima de outros elementos */
    transition: opacity 0.3s ease, transform 0.3s ease;
    opacity: 0;
    transform: translateY(20px); /* Inicialmente fora da vista */
    max-width: 240px; /* Limite máximo de largura */
    max-height: 240px; /* Limite máximo de altura */
    width: auto; /* Permite ajustar a largura automaticamente */
    height: auto; /* Permite ajustar a altura automaticamente */
    padding-right: 30px;
}

#floating-button.visible, #floating-button-help.visible, #floating-button-aderir.visible, #floating-button-login.visible {
    opacity: 1;
    transform: translateY(0); /* Volta ao lugar original */
}

#floating-button.d-none, #floating-button-help.d-none, #floating-button-aderir.d-none, #floating-button-login.d-none {
    display: none; /* Esconde o botão */
}

#floating-button svg, #floating-button-help svg, #floating-button-aderir svg, #floating-button-login svg {
    max-width: 100%;
    height: auto;
}

#floating-button span, #floating-button-help span, #floating-button-aderir span, #floating-button-login span {
    display: inline-block;
    max-width: calc(240px - 70px); /* Ajusta o espaço para o texto */
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

#floating-button-help {
    position: fixed;
    right: -20px; /* Ajuste conforme necessário */
    top: 90px; /* Ajuste conforme necessário */
    z-index: 1000; /* Certifique-se de que está acima de outros elementos */
    transition: opacity 0.3s ease, transform 0.3s ease;
    opacity: 0;
    transform: translateY(20px); /* Inicialmente fora da vista */
    max-width: 240px; /* Limite máximo de largura */
    max-height: 240px; /* Limite máximo de altura */
    width: auto; /* Permite ajustar a largura automaticamente */
    height: auto; /* Permite ajustar a altura automaticamente */
    padding-right: 30px;
}


.lh-15{
    line-height: 15px;
}
.lh-20{
    line-height: 20px;
}
#coordenadas p{
    font-size: 13px;
}
#coordenadas ul li{
    font-size: 12px;
}
#coordenadas h5{
    font-size: 14px;
}
#coordenadas .bg-light{
    background-color: #ffffae!important;
}


#submit-listing .dropzone, .dropzone * {
    box-sizing: border-box;
}
#submit-listing .upload-file {
    border: 1px dashed #dee2e6;
    background: #f2f5f6;
    padding:  40px;
}
#src_logo_img {
    max-width: 200px!important;
}
#submit-listing .form-row{
    display: flex;
}

#submit-listing  h5{
    font-size: 18px;
    line-height: 1.4;
    padding: 6px 10px;
    background-color: #f5f5f5;
}

#submit-listing .bg-grey{
    margin: 6px 0px;
    padding: 12px 12px 3px;
    background-color: #f5f5f5;

}
#submit-listing .custom-control {
    position: relative;
    display: block;
    min-height: 1.7rem;
}

#submit-listing  .upload-file .title span:first-child {
    font-size: 18px;
    display: block;
    margin-bottom: 15px;
}
#submit-listing .upload-file .title span {
    line-height: 1;
}
#submit-listing .upload-file .title {
    margin-bottom: 12px;
}
#submit-listing .contact-section {
    max-width: 650px;
    margin: 0 auto;
}
#submit-listing .contact-section p {
    margin-bottom: 20px;
    text-align: left!important;
}
#submit-listing .contact-section .custom-control-label {
    margin-top: 40px;
}
#upload-image {
    border: 1px dashed #dee2e6;
    background: #f2f5f6;
    padding:  40px;
}
.upload-btn-wrapper {
    position: relative;
    overflow: hidden;
    display: inline-block;
}
button:not(:disabled), [type="button"]:not(:disabled), [type="reset"]:not(:disabled), [type="submit"]:not(:disabled) {
    cursor: pointer;
}
.upload-btn-wrapper input[type=file] {
    position: absolute;
    left: 0;
    cursor: pointer;
    opacity: 0;
    height: 60px;
}
.float-right{
    float: right;
}
.close-x{
    font-size: 32px;
}
.navbar-custom-menu .navbar-icon, .sidebar-nav ul li a .badge {
    margin-left: 5px !important;
    margin-right: 8px !important;
}
.mm-show {
    display: block !important; /* Mostra o submenu quando ativo */
}
.ps{
    overflow: visible !important;
}
/* Classe para garantir que o card tenha no mínimo 90% da altura da viewport */
.card-full-height {
    min-height: 85vh; /* 90% da altura da viewport */
    display: flex;
    flex-direction: column;
}

/* Para garantir que o card-body ocupe o espaço disponível */
.card-full-height .card-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
#header-comerciante {
    position: relative;
}
.no-border {
    border: none !important; /* Remove todas as bordas */
    box-shadow: none !important; /* Remove todas as sombras */
    outline: none !important; /* Remove bordas de foco */
    background: transparent !important; /* Remove fundo se necessário */
}
.rounded-4-0{
    border-radius: 1rem 1rem 0 0 !important;
}
.row-list-products{    
    background-color: #fff !important;
    padding-top: 10px !important;
    border-top: 2px solid #f6f6f6 !important;
    border-radius: 0 0 1rem 0;
}
#product_img_btn_delete {
    background-color: #dc3545; /* Fundo transparente para o botão */   
    color: #dc3545;
    padding: 8px 16px; /* Padding para maior espaço */
    transition: all 0.3s ease; /* Transição suave */
}

#product_img_btn_delete:hover {
    background-color: #dc3545; /* Cor de fundo ao passar o mouse */
    color: #fff; /* Cor do texto ao passar o mouse */
}
#price-addon {
    height: 42px !important;}
.tarea-height-default {
        height: 300px !important; /* Define uma altura mínima */
    }
    
/* PARA AS IMAGENS DOS PRODUTOS NO BO DO COMERCIANTE */
#image-upload-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

#image-upload-container .image-wrapper {
    position: relative;
    width: 150px;
    height: 150px;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

#image-upload-container .image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#image-upload-container .image-wrapper .delete-btn {
    position: absolute;
    top: 5px;
    right: 5px;
    background: rgba(255, 0, 0, 0.7);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
}

#image-upload-container .upload-btn-wrapper {
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.tile-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tile {
    position: relative;
    width: 120px;
    height: 120px;
    border: 1px solid #ccc;
    border-radius: 4px;
    overflow: hidden;
    cursor: move!important;
}

.tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tile .remove-btn {
    position: absolute;
    top: 5px;
    right: 5px;
    background-color: rgba(255, 0, 0, 0.7);
    color: white;
    padding: 2px 5px;
    font-size: 12px;
    border-radius: 3px;
    cursor: pointer;
}


#list-prod .product {
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Garante que o botão fique no fundo */
    min-height: 100%; /* Garante que todas as caixas tenham o mesmo tamanho */
}

#list-prod .card-body {
    display: flex;
    flex-direction: column;
    flex-grow: 1; /* Expande o card body para preencher o espaço */
    justify-content: space-between;
}

#list-prod .add-to-cart {
    margin-top: auto; /* Empurra o botão para o fundo */
    text-align: center; /* Centraliza o botão horizontalmente */
}

#list-prod .btn-primary {
    width: 100%; /* Para garantir que o botão ocupe toda a largura do contêiner */
}
.height-29{
    height: 29px;
}
.border-bottom{
    border-bottom: 1px solid rgba(93 93 93 / 12%) !important;
}


.info{
    position: relative;
}
.info {
    position: absolute;
    top: 105%;
    left: 50%;
    transform: translateX(-50%);
    padding: 5px;
    background-color: #fff;
    border: 1px solid #ccc;
    width: 120px;
    text-align: center;
    font-size: 11px;
    font-weight: 500;
    border-radius: 5px;
    z-index: 9;
}
.info img{
    width: 100%;
}
.element {
    position: relative;
    padding: 20px 10px 10px 10px;
    border: 1px dashed #86b5a2;
    border-radius: 25px 25px 0 0;
    margin-bottom: 20px;
}










@media (min-width: 1200px){
    #header-comerciante {
        position: relative;
        min-height: 50px;
    }

    #header-comerciante .navbar-brand {
        position: absolute; /* Faz o logotipo ficar na posição desejada dentro do contêiner */
        left: 20px; /* Posiciona o logotipo à esquerda */
        top: 50%; /* Centraliza verticalmente dentro do contêiner */
        transform: translateY(-50%); /* Corrige a centralização vertical */
    }

}

#fixed-button-close {
    position: fixed;
    right: -15px; /* Ajuste conforme necessário para posicionar dentro da vista */
    top: 150px; /* Ajuste conforme necessário */
    z-index: 1000; /* Certifique-se de que está acima de outros elementos */
    transition: opacity 0.3s ease, transform 0.3s ease;
    opacity: 1; /* O botão está sempre visível */
    transform: translateY(0); /* Sem movimento inicial, já está na posição final */
    max-width: 240px; /* Limite máximo de largura */
    max-height: 240px; /* Limite máximo de altura */
    width: auto; /* Permite ajustar a largura automaticamente */
    height: auto; /* Permite ajustar a altura automaticamente */
    padding-right: 30px;
}

#fixed-button-close.d-none {
    display: none; /* Esconde o botão */
}

#fixed-button-close svg {
    max-width: 100%;
    height: auto;
}

#fixed-button-close span {
    display: inline-block;
    max-width: calc(240px - 70px); /* Ajusta o espaço para o texto */
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}


button:not(:disabled), [type="button"]:not(:disabled), [type="reset"]:not(:disabled), [type="submit"]:not(:disabled) {
    cursor: pointer;
}


#header-comerciante {
    position: relative;
}


/* Estilos para o botão de "Aberto Agora" */
.bg-open {
    background-color: #91AE9D; /* Cor de fundo */
    color: white; /* Cor do texto */
    border: 1px solid #91AE9D; /* Borda com a mesma cor do fundo */
    padding: 0.5rem 1rem; /* Espaçamento interno */
    border-radius: 0.25rem; /* Bordas arredondadas */
    cursor: pointer;
    transition: background-color 0.3s ease, opacity 0.3s ease;
}

/* Estilos para o botão de "Ver Horário Abertura" */
.bg-close {
    background-color: #F44153; /* Cor de fundo */
    color: white; /* Cor do texto */
    border: 1px solid #F44153; /* Borda com a mesma cor do fundo */
    padding: 0.5rem 1rem; /* Espaçamento interno */
    border-radius: 0.25rem; /* Bordas arredondadas */
    cursor: pointer;
    transition: background-color 0.3s ease, opacity 0.3s ease;
}

.bg-open:hover {
    background-color: #8fb7a0; /* Cor de fundo */
    color: white;
}
.bg-close:hover {
    background-color: #ff5252; /* Cor de fundo */
    color: white;
}
.bg-success-light{
    background-color: #91AE9D;
}



.profile-menu .btn {
    display: inline-flex; /* Alinha o ícone e o texto */
    align-items: center; /* Centraliza verticalmente o ícone e o texto */
}

/* Ajuste para o ícone */
.profile-menu .btn i {
    margin-right: 0.5rem; /* Espaçamento entre o ícone e o texto */
}


/* Estilo geral para a posição fixa dos botões */
.fixed-buttons {
  position: fixed;
  right: 12px;
  top: 20%;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 999;
}

/* Estilos para o botão pai (ícone principal) */
.button-pai {
  position: relative;
  background-color: #fff;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.button-pai i {
  font-size: 24px;
  color: #388e3c;
  transition: color 0.3s ease;
}

/* Estilo para os botões filhos (inicialmente ocultos) */
.button-filho {
  position: absolute;
  left: -160px; /* Definir a posição fora da tela para o hover expandir */
  top: 50%;
  transform: translateY(-50%);
  text-decoration: none;
  background-color: transparent;
  transition: transform 0.3s ease, left 0.3s ease;
  opacity: 0;
  visibility: hidden;
  white-space: nowrap;
}

/* Ao passar o mouse sobre o botão pai, o filho se expande */
.button-pai:hover .button-filho {
  left: -180px; /* O botão filho aparece */
  opacity: 1;
  visibility: visible;
}

/* Estilo do botão filho (texto dentro do botão) */
.button-filho span {
  display: inline-block;
  background-color: #388e3c;
  color: white;
  padding: 10px 15px;
  border-radius: 20px;
  white-space: nowrap;
  transition: all 0.3s ease;
}

#button2 .button-filho span {
  background-color: #7fcaf4;
}
#button3 .button-filho span {
  background-color: red;
}
#button4 {
  background-color: #ffd105;
}
#button4 .button-filho span {
  background-color: #ffd105;
  color: #000;
}
/* Efeitos de hover */
.button-pai:hover {
  transform: scale(1.1); /* Efeito de zoom no ícone principal */
}


/* Manter a cor de fundo no hover */
.button-filho span:hover {
  background-color: #388e3c; /* Mantém a cor no hover */
  color: white; /* Mantém a cor do texto no hover */
}

.section-banner__breadcrumb {
    display: block;
    position: relative;
    margin-bottom: 8px;
}
.section-banner__breadcrumb .uk-breadcrumb {
    margin: 0;
}
.section-banner__breadcrumb li {
    font-size: .875rem;
    color: #fff;
}
.uk-breadcrumb>* {
    display: contents;
}
#site-wrapper a {
    text-decoration: none;
}
.section-banner__breadcrumb .uk-breadcrumb > * > * {
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    padding-top: 12px;
    font-size: 15px;
    line-height: 1.2;
    transition: 0.5s;
}
.section-banner__breadcrumb li a {
    font-weight: 700;
}
.uk-breadcrumb>*>* {
    color: #ffffff;
}
section-banner__breadcrumb .uk-breadcrumb > :nth-child(n+2):not(.uk-first-column)::before {
    margin: 0 5px;
    content: '';
}
.uk-breadcrumb>:nth-child(n+2):not(.uk-first-column)::before {
    display: inline-block;
    color: #f1f1f1;
}
.banner-content {
    position: relative;
}
.page-header-title{
    color: white;
    text-align: left;
}
.text-yellow-light{
    color: #ffe58a;
}
#prod-description .fs-12 * {
    font-size: 12px;
    color: #333; /* Mantém uma cor neutra e legível */
    line-height: 1.6; /* Melhora a legibilidade com maior espaçamento entre linhas */
    margin: 10px 0; /* Espaçamento vertical entre elementos */
    padding-top: 5px;
    padding-bottom: 5px;
   
}

#prod-description {
    padding: 15px; /* Adiciona espaçamento geral ao contêiner */
    
   
}
.social-list{
    margin-bottom: 6px;
}
#merchant{
    .form-check {
        padding-left: 2em;
    }
    .form-check {
        display: inline-block;
        min-height: 1.5rem;
        padding-left: 1.5em;
        margin-bottom: .125rem;
    }
    .form-check-label {
        font-weight: 500;
    }
    .form-check-label {
        cursor: pointer;
        font-weight: 600;
    }
    label {
        display: inline-block;
    }
    .form-group label {
        position: relative!important;        
        background: transparent;
        padding: 0 ;
        font-weight: 500;
        color: #333;
    }
}

.form-login-encomenda-livre {
        max-width: 90%px;
        margin: 0 auto;
        background: #fff;
        padding: 65px 30px 45px;
        h2, p{
        color: #333!important;
        }
    
    h2{line-height: 1.0;}
    .form-group label {
        position: relative;
        top: 0;
        left: 0px;
        z-index: 4;
        padding: 0px;
    }
}
#order-free{
    hr{margin: 0.5rem 0;}
}

@media (max-width: 780px){
    #account .nav-link{
        font-size:14px !important;
        border: 1px solid #7369A5;
        margin: 2px 6px;
    } 
   
}

#account{ 
    .card-header {
        padding: 0;
        margin: 0;
        border-radius: 4px 4px 0 0;
        background-color: #7369A5;
    }
    .table>:not(:last-child)>:last-child>* {
        background-color: #7369A5;
    }
    .nav-link {
        color: #7369A5;
    }
    .nav-pills .nav-link.active, 
    .nav-pills .show>.nav-link {

        background-color: #7369A5 !important;
    }

    .nav-pills .nav-link.active{
        color: white;
    }
}

#merchant_order_food{
    /* Estilização geral do card */
    .card {
        border-radius: 12px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        background-color: #fff;
    }

    .card-header {
        background-color: #f7f7f7;
        padding: 16px;
        border-bottom: 1px solid #ddd;
    }

    .card-header h6 {
        font-size: 18px;
        color: #333;
    }

    .card-header p {
        font-size: 14px;
        color: #666;
    }

    /* Estilização da tabela */
    .table thead th {
        background-color: #fdecea;
        color: #555;
        font-weight: bold;
        padding: 12px;
    }

    .table tbody tr {
        border-bottom: 1px solid #f3f3f3;
    }

    .table tbody td {
        padding: 10px;
        vertical-align: middle;
        font-size: 14px;
    }

    /* Links estilizados */
    .link-hover-dark-blue {
        color: #ef5f67;
        text-decoration: none;
    }

    .link-hover-dark-blue:hover {
        color: #d33a3e;
        text-decoration: underline;
    }



    .btn-success:hover, .btn-danger:hover {
        opacity: 0.85;
    }

    /* Icones para status de reserva */
    .status.approved {
        color: #28a745;
    }

    .status.pending {
        color: #ffc107;
    }

    .status.canceled {
        color: #dc3545;
    }

    /* Pesquisa */
    .dataTables_filter input {
        border-radius: 12px;
        padding: 6px 12px;
        border: 1px solid #ddd;
    }

    /* Paginação */
    .pagination .page-item.active .page-link {
        background-color: #ef5f67;
        color: white;
    }
    .page-link{
        color: #333333 !important;
    }
    /* Alternância de cores para as linhas ímpares e pares usando DataTables */
    .stripe-odd {
        background-color: #f9f9f9 !important; /* Cor para linhas ímpares */
    }

    .stripe-even {
        background-color: #ffffff !important; /* Cor para linhas pares */
    }

    /* Estilo de padding */
    .table td, .table th {
        padding: 2px 16px 0 16px!important; 
        vertical-align: middle;
    }
    
    div.dataTables_filter input[type="search"] {
        width: 100%; /* O input de pesquisa ocupa 100% da largura do contêiner pai */
        margin-bottom: 15px; /* Espaço abaixo do campo de pesquisa */
        padding: 8px 16px;
        border: 1px solid #ccc;
        border-radius: 4px;
        box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
        font-size: 16px;
        color: #333;
    }

    /* Centraliza o placeholder no campo de pesquisa */
    div.dataTables_filter input::placeholder {
        color: #999;
        font-size: 16px;
    }

}

#open_cart{
    .image img {
        width: 57px;
        height: 57px;
        max-width: 57px;
        max-height: 57px;
        min-width: 57px;
        min-height: 57px;
    }
}

.login-area .login-body .close-icon {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    text-align: center;
    line-height: 26px;
    font-size: 12px;
    background-color: #FA4B2E;
    color: white;
    position: absolute;
    right: 6px;
    top: 6px;
}
.shopping-cart .media .image {
    width: 100px;
}
.media {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start; }


.media img {
    vertical-align: middle;
    border-style: none;
    max-width: 100%;
    height: auto;
}
.table-style-01 td, .table th {    
    border: none!important;
}
.table-style-01 td {
    vertical-align: middle;
}

.media-body {
    word-wrap: break-word;
}
.shopping-cart .quality {
    border: 1px solid #dee2e6;
    width: 128px;
    padding: 0 10px;
}
.shopping-cart .quality label {
    margin-bottom: 0;
    color: #999999;
}
.shopping-cart .quality .form-control {
    border: none;
    text-align: right;
    width: 40%;
    box-shadow: none;
     background: #f5f5f5 linear-gradient(180deg, #f7f7f7, #f5f5f5) repeat-x !important;
}
.shopping-cart shopping-cart .form-control-sm {
    height: calc(1.7em + 0.5rem + 2px);
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
    line-height: 1.7;
    border-radius: 2px;
     max-width: 60px;
}
.shopping-cart a.text-darker-light {
    cursor: pointer;
}
/* Para navegadores baseados em WebKit (Chrome, Safari, Edge) */
.shopping-cart input[type=number]::-webkit-inner-spin-button, 
.shopping-cart input[type=number]::-webkit-outer-spin-button { 
    -webkit-appearance: none; 
    margin: 0; 
}

/* Para Firefox */
.shopping-cart input[type=number] {
    -moz-appearance: textfield;
}
.sidebar-sticky{
    position: absolute;
    right: 10%;
    max-width: 320px;
}

#cc-step1, #cc-step0{
    .card-header::after {
        content: '';
        position: absolute;
        height: 32px;
        width: 6px;
        background-color: #F84525;
        left: 0;
        top: 50%;
        -webkit-transform: translate(0, -50%);
        -ms-transform: translate(0, -50%);
        transform: translate(0, -50%);
        border-top-right-radius: 3px;
        border-bottom-right-radius: 3px;
    }
    .card-header:first-child {
        border-radius: calc(1rem - 1px) calc(1rem - 1px) 0 0;
    }
    .card-header {
        padding: 1.25rem 1.5rem;
        background-color: #fff;
        border-bottom: 1px solid #eff2f7;
    }
    .position-relative {
        position: relative !important;
    }
}

#cc-step2{
    div { background-color: white; }
    .btn-block {
        display: block;
        width: 100%;
    }
}

#addCCModal{
    .addCCModal{
        background-color: #91AE9D;
    }
}
#merchant-recover{
    .form-group label {
        position: absolute;
        top: 4px;
        left: 6px;
        pointer-events: none;
        z-index: 4;
        background: rgba(255, 255, 255, 0);
        padding: 0 10px;
        font-size: 13px;
        font-weight: 500;
        color: var(--bs-dark);
    }
    .form-control, .form-select {
        padding: 1.5rem .75rem 0 .75rem;
        font-size: 15px;
        font-weight: 500;
        height: 54px;
        border-radius: 0;
        border: none;
        border-bottom: 1px solid #666;
        background-color: #f3f3f3;
        -webkit-transition: 0.3s;
        -o-transition: 0.3s;
        transition: 0.3s;
        -webkit-box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000, 0 0 #0000, 0 1px 2px 0 rgb(0 0 0 / 0);
        box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000, 0 0 #0000, 0 1px 2px 0 rgb(0 0 0 / 0);
    }
}
#signin, #signin-form{
    #email,
    #email:hover,
    #email:focus,
    #email:active,
    #email:disabled,
    #email:checked,
    #email:visited,
    #email:valid,
    #email:invalid,
    #email:in-range,
    #email:out-of-range,
    #email:optional,
    #email:required,
    #email:read-only,
    #email:read-write,
    #email:placeholder-shown,
    #email:enabled,
    #email:focus-visible,
    #email:focus-within,
    #email:-webkit-autofill {
            background-color: #fff !important; 
            -webkit-box-shadow: 0 0 0px 1000px #fff inset !important; /* Remove a cor azul do autofill */
            box-shadow: 0 0 0px 1000px #fff inset !important;
        }
}
#delivery_cost, #delivery_cost_min, #raio, #social_1, #social_2, #social_3, #social_4, #social_5 {
    height: 51px !important;
}
#delivery_text{
    height: 70px !important; 
}
#categoryModal{
    z-index: 999999;
}
.card-header-headshot{
     padding: 1.25rem 1.5rem 0 !important;
    background-color: #fff !important;
    border-bottom: none !important;
}

.table tbody tr.even td {
    background-color: #faf9fa !important; /* Cor de fundo para 'even' */
}
.table tbody tr.odd td {
    background-color: #f8f9fa !important; /* Cor de fundo para 'even' */
}
#button3{
    background-color: red;
}
#button3 img{
    height: 42px;
    width: auto;
}

/* Estilo para o texto de copiar */
.copy-tooltip {
   
    background-color: #333;
    color: #fff;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
}

.button-pai:hover .copy-tooltip {
    display: block;
}

/* Estilo para o ícone e texto de copiar */
.copy-icon {
    display: none;
    align-items: center;    
    color: #ef5f67;
    position: absolute;
    top: -15px;
    left: -180px;
    transform: translateY(-50%);
}

.button-pai:hover .copy-icon {
    display: flex;
}

/* Estilo para a mensagem de sucesso */
.success-message {
    position: absolute;
    top: -30px;
    left: -105px;
    transform: translateX(-50%);
    padding: 8px 16px;
    background-color: #28a745;
    color: #fff;
    border-radius: 4px;
    font-size: 14px;
    display: none;
    white-space: nowrap;
}

@media (max-width: 991px){
    #loja-index {
        .profile-avatar {
            max-width: 100px!important;            
            left: 10px!important;
            top: 0px!important;
            
        }
        .verified-badge-store {
            position: absolute;
            top: 78px!important;
            left: 0px!important;
            z-index: 6;
        }
    }
}
#loja-index{
    .page-header-title {
        color: #debb6e;
        text-align: left;
    }
    .profile-avatar{
        max-width: 150px;
        height: auto;
        border: 1px solid #333;
        border-radius: 0px 8px 0 8px;
        position: absolute;
        right: 10px;
        top: 80px;
        z-index: 5;
        box-shadow: 0px 5px 24px rgba(0, 0, 0, 0.3);
    }
    
    .profile-avatar-industry{        
        border: 1px solid #333;
        border-radius: 0px 8px 0 8px;
        z-index: 5;
        
    }
    .verified-badge-store {
        position: absolute;
        top: 69px;
        right: 0px;
        z-index: 6;
    }
}
#get_directionsModal{
    /* Modal Header */
    .modal-header.bg-dark {
        background-color: #343a40;
        border-bottom: none;
        padding: 15px 20px;
    }

    /* Título do Modal */
    .modal-title {
        font-size: 18px;
        font-weight: 600;
    }

    /* Fechar Botão no Modal */
    .btn-close {
        font-size: 18px;
    }

    /* Container do Mapa */
    .map-container {
        width: 100%;
        height: 500px;
        overflow: hidden;
        position: relative;
        border-bottom: 4px solid #343a40; /* Adiciona uma borda para destacar */
    }

    /* Modal Footer */
    .modal-footer {
        padding: 10px 20px;
        background-color: #f8f9fa;
        border-top: 1px solid #e9ecef;
    }

    /* Sombra ao redor do modal */
    .modal-content {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        border-radius: 8px;
    }

    /* Ajuste no botão de fechar */
    .btn-close-white {
        background: none;
        border: none;
        color: white;
    }
}
#order-list-form{
    .form-control, .form-select {
        font-size: 13px;
        height: 32px;
    }
}

#helpModal{
    .custom-img-container img {
        max-width: 100%;
        height: auto;
        object-fit: contain; /* Mantém a proporção da imagem dentro do contêiner */
    }
}
#merchant{
    .header-banner-context {
        max-width: 550px;
    }
}
#post{
    .image-container {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 20px; /* Espaço acima do container */
        }

        .image-item {
            position: relative;
            width: 150px; /* Ajuste o tamanho conforme necessário */
        }

        .image-item img {
            width: 100%;
            cursor: move; /* Para indicar que pode ser arrastado */
        }

        .remove-btn {
            position: absolute;
            top: 5px;
            right: 5px;
            background: rgba(255, 0, 0, 0.7);
            color: white;
            border: none;
            cursor: pointer;
        }
        
}
#cropModa{
    .btn.active {
        background-color: #ff6600; /* Exemplo: cor laranja mais escura */
        color: #fff!important;
    }

}
#cropModal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1040; /* Deve ser menor que o modal (1050) */
    display: none; /* Oculto por padrão */
  }
  #messageModal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1040; /* Deve ser menor que o modal (1050) */
    display: none; /* Oculto por padrão */
  }
  #list-posts th{
      padding: 10px;
      color: #FFF;
      font-size: 14px;
  }
   .prod-detail-logo{
       display: none;
   }
  @media (min-width: 1574px) {
    .prod-detail-logo{
        display: block;
        position: absolute;
        left: 20px;
    }
  }
  .popup__image {
    width: 80px;
    height: 80px;
    background-size: cover;
    background-position: center;
    
}

.popup__title {
    font-size: 16px;
    font-weight: bold;
}

.popup__address {
    font-size: 14px;
}
.custom-pin {
    position: relative;
    width: 30px; /* Ajusta o tamanho da largura */
    height: 45px; /* Ajusta o tamanho da altura */
    text-align: center;
}

.pin-background {
    width: 100%;
    height: auto;
}

.pin-icon {
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 11px;
}
#services-list h5{
    color: #91ae9d;
    font-size: 14px !important;
}
#services-list p{
    font-size: 12px !important;
}
#services-list .card-title{
    font-size: 14px !important;
    line-height: 16px;
}
.services-layout .verified-badge {
    bottom: 18px;
    left: 6px;
}
#product-detail{
    .product-images {
        text-align: center;
    }

    
    .box .image img {
        width: 100%;
        height: auto;
        max-width: 600px;

    }
    .box .light-button{
        top: 10px;
        right: 40px;
    }

    .thumbs-container {
        justify-content: center;
        gap: 10px;
    }

    .thumb {
        cursor: pointer;
        border: 1px solid #ddd;
        padding: 5px;
        margin: 0 5px;
    }

    .thumb img {
        width: 70px;
        height: 70px;
        object-fit: cover;
    }

    .thumb:hover {
        border-color: #007bff;
    }
    .z-1 {
        z-index: 1;
    }
    .bg-blur {
        background: rgba(0, 0, 0, 0.5); /* Fundo escuro com opacidade */
        width: 40px;
        height: 40px;
    }

    .btn-icon i {
        font-size: 1.5rem; /* Tamanho do ícone */
    }
}

#list-search-assets{
    .product-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;       
        max-height: 100px; /* Limita a altura máxima */
        padding: 0px;
        
    }

    .product-image {
        max-width: 100%;
        height: auto;
       
    }

    
    .product-link {
        color: inherit;
        text-decoration: none;
    }

    .product-link:hover {
        text-decoration: underline;
    }
}

#prod-description-in-detail p{
    font-size: 13px !important; 
}
.carousel-inner img{
    min-width: 100%;
}

//COOKIES CSS
/* Estilo do modal */
/* Ajustes opcionais para os botões */
.modal-footer .btn {
    width: 100px;
}
#cookieConsentModal, #configureCookieModal{
    color: #222;
}
.map-lable h1{
    font-size: 11px;
}
.map-lable p{
    font-size: 12px;
}
@media (min-width: 1540px) {
    .map-lable h1{
        font-size: 18px;
    }
    .map-lable p{
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .map-lable .card{
        margin-bottom: -60px !important;
        background-color: rgb(255 255 255) !important;
    }
}

/* Reduz o espaçamento entre linhas do mesmo registo */
#pratosContainer, #pratosDiaContainer  {
    .col,
    .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12,
    .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12,
    .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12 {
        margin: 0 !important;
    }
}


/* Adiciona uma linha divisória entre registos */
.prato-linha:not(:last-child) {
    border-bottom: 1px solid #ebebeb;
    padding-bottom: 15px;
    margin-bottom: 15px;
}
#pratosContainer label, #pratosDiaContainer label {
    margin: 0px 2px 2px 6px;
    font-weight: bold;
    font-size: 12px;
}

#pratosContainer .form-control, .form-select {
    font-size: 13px;
    border-radius: .4rem;
    height: 32px;
}
#pratosDiaContainer .form-control, .form-select {
    font-size: 13px;
    border-radius: .4rem;
    height: 32px;
}
@media (min-width: 1400px) {
    .mb-xxl-2 {
        margin-bottom: .5rem !important;
    }
}
.menu {
    border-bottom: 1px solid #ddd; /* Linha divisória entre itens */
    margin-bottom: 8px; /* Margem inferior reduzida */
    padding-bottom: 8px; /* Padding inferior reduzido */
}
.menu-title {
    font-size: 1rem; /* Tamanho ajustado para títulos */
    font-weight: bold;
    margin-bottom: 4px; /* Espaçamento inferior do título */
}

.menu-detail {
    font-size: 0.875rem; /* Tamanho ajustado para detalhes */
    color: #555;
}

.menu-label {
   font-size: 0.85rem;
    margin-top: 5px;
    background-color: #ffd105;
}

h4, h5 {
    color: #222;
}

.row .col-sm-6 {
    margin-bottom: 20px;
}
.list-menu h5{
    font-size: 16px;
    background-color: #efebd6;
    padding: 2px 8px 0;
   
}

#diarias .menu-label {   
    background-color: #ffd105;
    border-radius: 6px 6px 0 0;
    border-top: 5px solid #ffd105;
}
.dashed-line {
    border: 0;
    border-top: 1px dashed #ccc; /* Define a linha tracejada */
    margin: 0; /* Ajuste as margens conforme necessário */
}
.change-day {
    font-size: 12px;
    padding: 5px 10px;
    border-radius: 4px;
    white-space: nowrap; /* Evita quebra de texto */
    max-width: 80px; /* Largura máxima */
    overflow: hidden;
    text-overflow: ellipsis;
}
.change-day.active {
    background-color: #060606;
    color: #fff;
    border-color: #060606;
}
 #pratosDiaContainer .prato-linha:nth-child(odd) {
    background-color: #eeeeee;
}
#pratosDiaContainer .prato-linha:nth-child(even) {
    background-color: #f7f7f7;
}

#pratosContainer .prato-linha:nth-child(odd) {
    background-color: #eeeeee;
}
#pratosContainer .prato-linha:nth-child(even) {
    background-color: #f7f7f7;
}
.m-h-200{
    min-height: 200px;
}
.m-h-350{
    min-height: 350px;
}
.top-left-60-10{
    top: 56px;
    left: 0px;
}
.top-right-20-0{
    top: 20px;
    right: 0px;
}


/* Fundo escuro que impede interação com a página */

#tarteaucitronAlertBig {
    background: rgba(255, 255, 255, 0.95) !important;
    color: #333 !important;
    padding: 25px !important;
    border-radius: 15px !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1) !important;
    max-width: 100% !important;
    width: 600px!important;
    margin: auto !important;
    transform: translateX(-50%) !important;
    font-family: inherit !important;
}

#tarteaucitronDisclaimerAlert {
    color: #666 !important;
    font-size: 14px !important;
    margin-bottom: 0px !important;
    display: block !important;
    line-height: 1.5 !important;
    margin-bottom: 20px;
}

.tarteaucitronCTAButton {
    border-radius: 6px !important;
    padding: 16px 28px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    border: 1px solid #1863DC !important;
    font-size: 14px !important;
    margin: 0 5px !important;
}

.tarteaucitronAllow {
    color: #FFFFFF !important;
    background-color: #1863DC !important;
    border-color: #1863DC !important;
}


#tarteaucitronRoot .tarteaucitronDeny {
    color: #1863DC !important;
    background-color: transparent !important;
    background: transparent !important;
    border-color: 1px solid #1863DC !important;
}
#tarteaucitronCloseAlert{
    color: #1863DC !important;
    background-color: transparent !important;
    background: transparent !important;
    border: 1px solid #1863DC !important;
    border-radius: 6px !important;
    padding: 16px 28px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    border: 1px solid #1863DC !important;
    font-size: 14px !important;
    margin: 0 5px !important;
}


.tarteaucitronPartnersList {
    margin-top: 15px !important;
    font-size: 13px !important;
    color: #666 !important;
}

#tarteaucitronCloseCross {
    color: #999 !important;
    background: none !important;
    font-size: 22px !important;
    right: 10px !important;
    top: 10px !important;
}
#tarteaucitronDisclaimerAlert {
   order: 1 !important;
}

#tarteaucitronCloseAlert {
   order: 2 !important; /* Personalizar */
}

.tarteaucitronDeny {
   order: 3 !important; /* Rejeitar */
}

.tarteaucitronAllow {
   order: 4 !important; /* Aceitar */
}

 #tarteaucitron #tarteaucitronServices .tarteaucitronMainLine {
    border: none !important;
}
#tarteaucitron #tarteaucitronServices .tarteaucitronMainLine {
    background: #fff !important;
    border: none !important;
    
    margin-top: 21px;
    position: relative;
}
#tarteaucitronRoot .tarteaucitronH1 {
    font-size: 1.5em;
    text-align: center;
    color: #333;
    margin: 15px 0 28px;
}
.services-link-external {
    position: absolute;  /* Posiciona o ícone de forma absoluta dentro do container */
    bottom: 0;           /* Alinha ao fundo */
    left: 0;             /* Alinha à esquerda */
    margin: 0;
    padding: 5px;
    background-color: #97c9ab; /* Cor de fundo */
    border-radius: 0 8px 0 0; /* Bordas arredondadas no canto superior direito e inferior direito */
    text-decoration: none;     /* Remove sublinhado do link */
    color: inherit;            /* Mantém a cor do ícone */
    display: flex;             /* Utiliza flexbox para centralizar o conteúdo */
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease; /* Transição suave ao passar o rato */
}

/* Alteração da cor de fundo ao passar o rato */
.services-link-external:hover {
    background-color: #9de2b9;
}
#sector-select{
    height: 52px;
}

#unit-select{
    border-radius: 8px!important
}

