.cart-counter {
    background-color: rgb(177, 90, 110);
    color: white;
    border-radius: 50%;
    width: 10px;
    height: 10px;
    line-height: 20px;
    text-align: center;
    position: absolute;
    font-size: 8px;
}

.btn-disabled {
    cursor: not-allowed;
    opacity: 0.5;
    pointer-events: none;
}

/*------------------------
    Cookie Modal
-------------------------*/
@media only screen and (max-width: 768px) {
    .cookie-consent-modal {
        align-items: center !important;
    }

    .cookie-consent-modal .content {
        border-radius: 10px;
        padding: 10vw 10vw !important;
    }
}

.cookie-consent-modal {
    transition: all ease 1s;
    height: 100vh;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999;
    display: none;
    align-items: flex-end;
}

.cookie-consent-modal a {
    color: blue;
}

.cookie-consent-modal .content {
    transition: all ease 1s;
    background-color: #fff;
    padding: 3vw 10vw;
    width: 100%;
    border-radius: 10px 10px 0 0;
}

.cookie-consent-modal.active {
    display: flex;
}

.cookie-btn {
    margin-top: 10px;
    font-size: 1.3rem;
    line-height: 40px;
    text-transform: unset;
    padding: 0px 12px 0px 12px;
    letter-spacing: normal;
}


/*------------------------
    Toasts CSS
-------------------------*/
.toast-buttons {
    max-width: 700px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin: 2em auto;
}

.toast-row {
    display: flex;
    justify-content: center;
    margin: 1em 0;
    padding: 1rem;
    flex-wrap: wrap;
}

.toasthnz {
    position: fixed;
    top: 65px;
    right: 25px;
    max-width: 400px;
    background: #fff;
    padding: 0.5rem;
    border-radius: 4px;
    box-shadow: -1px 1px 10px rgba(0, 0, 0, 0.3);
    z-index: 1023;
    animation: slideInRight 0.3s ease-in-out forwards;
    transform: translateX(110%);
}

.toasthnz.closing {
    animation: slideOutRight 0.5s ease-in-out forwards;
}

.toast-progress {
    position: absolute;
    display: block;
    bottom: 0;
    left: 0;
    height: 4px;
    width: 100%;
    background: #b7b7b7;
    animation: toastProgress 3s ease-in-out forwards;
}

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

.toast-icon {
    padding: 0.35rem 0.5rem;
    color: #fff;
    font-size: 1.5rem;
}

.toast-message {
    flex: 1;
    font-size: 1.5rem;
    color: #fff;
    padding: 0.5rem;
}

.toasthnz.toast-success {
    background: #95eab8;
}

.toasthnz.toast-success .toast-progress {
    background-color: #2ecc71;
}

.toasthnz.toast-danger {
    background: #efaca5;
}

.toasthnz.toast-danger .toast-progress {
    background-color: #e74c3c;
}

.toasthnz.toast-info {
    background: #8500fd99;
}

.toasthnz.toast-info .toast-progress {
    background-color: #8500FD;
}

.toasthnz.toast-warning {
    background: #ead994;
}

.toasthnz.toast-warning .toast-progress {
    background-color: #f1c40f;
}

@keyframes slideInRight {
    0% {
        transform: translateX(110%);
    }

    75% {
        transform: translateX(-10%);
    }

    100% {
        transform: translateX(0%);
    }
}

@keyframes slideOutRight {
    0% {
        transform: translateX(0%);
    }

    25% {
        transform: translateX(-10%);
    }

    100% {
        transform: translateX(110%);
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes toastProgress {
    0% {
        width: 100%;
    }

    100% {
        width: 0%;
    }
}

/*
    Cart Modal
*/
.cart-modal {
    height: 100vh;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    position: fixed;
    overflow: visible;
    top: 0;
    left: 0;
    z-index: 99999;
    display: none;
    align-items: center;
    overflow-y: auto;

}

.no-scroll {
    overflow: hidden;
}

.cart-modal .content {
    background-color: #fff;
    max-width: 1200px;
    width: 100%;
    margin: auto;
    border-radius: 10px;
    padding: 30px;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: scale(0.5);
    animation: slideInRight 0.3s ease-in-out forwards;
}

.cart-modal.active {
    display: flex;
}

.cart-modal.closing {
    animation: fadeOut 0.3s ease-in-out forwards;
}

.cart-modal.active .content {
    transform: scale(1);
    transition: transform 0.3s ease;
}

/* Remove as bordas e espaçamentos padrão da tabela */
.table {
    border-collapse: collapse;
    width: 100%;
    border-radius: 8px;
    /* Adiciona bordas arredondadas */
    overflow: hidden;
    /* Garante que o overflow seja escondido */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    /* Adiciona sombra */
}

/* Define a cor de fundo das células da tabela */
.table td,
.table th {
    background-color: #fff;
    padding: 10px;
}

/* Define a cor de fundo e estilo da linha de cabeçalho da tabela */
.table thead th {
    background-color: #f5f5f5;
    border-bottom: 2px solid #ddd;
    font-weight: 600;
}

/* Define o estilo de hover das células da tabela */
.table tbody tr:hover td {
    background-color: #f0f0f0;
}


@media (min-width: 992px) {
    .pl-80-lg {
        padding-left: 80px;
    }

    .pr-70-lg {
        padding-right: 80px;
    }
}