/* Alert Helper */
.notification {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #fff;
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 10px;
    transition: transform 0.5s ease, opacity 0.5s ease;
    position: relative;
    overflow: hidden;
    width: 300px;
}

.notification .close-btn {
    background: none;
    border: none;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    color: #888;
}

.notification .message {
    flex: 1; /* Permite que a mensagem ocupe o máximo de espaço disponível */
    margin-right: 10px; /* Dá um espaço entre a mensagem e o botão de fechar */
    font-size: 16px;
}

.notification.alert-success {
    border-left: 5px solid #28a745;
}

.notification.alert-danger {
    border-left: 5px solid #dc3545;
}

.notification.alert-warning {
    border-left: 5px solid #ffc107;
}

.notification.alert-info {
    border-left: 5px solid #17a2b8;
}

/* FIM Alert Helper */

/* Header */
.logo-wrapper{
    display:  block;
    margin: 10px auto;
    text-align: center;
}

.logo-wrapper img{
    min-height: 100px;
    max-height: 180px;
}

.carousel-container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    display: flex;
    flex-wrap: nowrap;
    scroll-behavior: smooth;
    margin-bottom: 10px;
}

.carousel {
    flex: 0 0 auto;
    margin: 0px 06px;
    padding: 10px;
    border: 1px solid;
    border-radius: 6px;
}

.carousel a{
    border: none;
}

#btnVoltarAoTopo {
    display: none;
    position: fixed;
    bottom: 70px;
    right: 20px;
    color: rgba(107, 107, 107, 0.6);
    border: none;
    padding: 0px !important;
    background: none !important;
    margin: 0px !important;
    cursor: pointer;
    z-index: 999; /* Para garantir que o botão fique acima de outros elementos */
}

#btnVoltarAoTopo:hover {
/*     background-color: rgba(107, 107, 107, 1); /* Cor de fundo com 100% de opacidade ao passar o mouse */
}

.nav-link{
  margin: 0 10px;
}

#searchResults {
    position: absolute;
    width: 100%;
    z-index: 1000;
    background-color: #fff;
    border: 1px solid rgba(0,0,0,.15);
    
}

#searchResults a {
    display: block;
    padding: .4rem 1rem;
    clear: both;
    text-align: inherit;
    background-color: transparent;
    border: 0;
    overflow: hidden;
}

#searchResults a:hover, #searchResults a:focus {
    background-color: #ececec;
    text-decoration: none;
}



/* PAGE PRODUCT */
.unitsProducts{
    display: inline-block;
    padding: 05px 10px;
    background-color: #DDD;
    border-radius: 5px;
    color: #555;
    font-weight: bold;
}

.amountProduct input{
    display: inline-block;
    color: #555555;
    background-color: #FFFFFF !important;
    width: 50px;
    text-align: center;
}

.tableAdditionals{
    background-color: #FFFFFF;
    border: 1px solid #CCCCCC;
    border-radius: 5px;
    overflow: hidden;
}

.amountItens{
    width: 30px;
    height: 34px;
    padding: 6px 6px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555555;
    background-color: #FFFFFF;
    border: 1px solid #CCCCCC;
    border-radius: 4px;
    transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    text-align: center;
}

.buttonsamount{
    cursor: pointer;
    font-size: 24px;
    font-weight: bold;
    padding: 0px 5px;
    vertical-align: middle;
}

.areaAmount{
    vertical-align: middle !important;
    width: 130px;
    border-top: none;
    border-top: 1px solid #dddddd;
}

td.labelAdditionals{
    vertical-align: middle !important;
    margin-bottom: 5px;
    font-weight: 700;
    font-size: 14px;
    color: #555555;
}

@media (min-width: 768px) {
    .areaAmount{
        width: 150px;
    }
}

.areaAmount .delete{
    display: block;
    width: 100%;
    margin-top: 10px;
    text-align: center;
    color: #a94442;
}

/* CART */
/* Adicione esta regra CSS para definir o estilo da classe .chavecopiada */
.chavecopiada {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease-in-out; /* Adicione uma transição suave de 0,3 segundos */
}

/* Botões em tabelas */
.btnActionsTables{
    font-size: 0.8em;
    margin-top: 6px;
}

@media (min-width: 768px) {
    .btnActionsTables{
        font-size: 1em;
    }
}

@media (max-width: 500px) {
    .hideSmall500{
        display: none;
    }

    .textSmall500{
        font-size: 0.8em !important;
    }
}

/* FOOTER */

.social-footer{
    display: block;
    margin: 6px 0 6px 0;
}

.social-footer a{
    font-size: 20px;
}

/* Menu bottom */
.bottom-menu {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    z-index: 1000;
    padding: 5px 20px;
    box-sizing: border-box;
    box-shadow: 0px 25px 20px 20px rgba(0,0,0,0.35), rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
}

.bottom-menu a {
    border: none;
    background: none;
    color: #fff;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    text-align: center;
    width: 100%;
}

.bottom-menu a svg {
    font-size: 22px;
    margin-bottom: 5px;
    text-align: center;
}

.bottom-menu a:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.3);
    padding-right: 10px;
    margin-right: 10px;
}

.bottom-menu a span{
    font-size: 10px;
}

@media (min-width: 768px) {
    .bottom-menu a {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .bottom-menu a svg {
        margin: 0;
        margin-right: 5px;
    }

    .bottom-menu .cart-text {
        display: inline;
    }
    .bottom-menu a span{
        font-size: 14px;
    }

    .butonFreight{
        min-width: 190px;
    }
}

.form-group > label{
    font-size: 16px;
}