/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Aug 28 2024 | 07:39:13 */
/* Add your CSS code here.

For example:
.example {
    color: red;
}

For brushing up on your CSS knowledge, check out http://www.w3schools.com/css/css_syntax.asp

End of comment */ 


/* Estilo geral da caixa de confirmação */

.jconfirm-box {
    -webkit-box-shadow: 0 4px 3px rgba(0, 0, 0, .08);
    box-shadow: 0 4px 3px rgba(0, 0, 0, .08);
    background-color: var(--incrivel-cardBg);
    color:  var(--incrivel-cardColor);
    border-radius: 10px;
    border: none;
    max-width: 500px;
    margin: 0 auto;
    padding: 1rem;
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.jconfirm-title-c {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.jconfirm-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
}

.jconfirm-content-pane {
    padding-top: 1rem;
}

.jconfirm-content {
    padding: 1rem;
}

.caixa-confirmacao-pedido {
    width: 100%;
    height: auto;
    background-color: #f9f9f9;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.caixa-confirmacao-pedido h3 {
    font-size: 10px;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.caixa-confirmacao-pedido p {
    margin: 0.5rem 0;
	font-size: 18px;
}

.number-list {
    padding: 0;
    margin: 0.5rem 0;
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
}

.lista-no-carrinho {
    background-color: var(--incrivel-cardBg);
    color: var(--incrivel-cardColor);
    padding: 0.5rem;
    border-radius: 4px;
    margin: 0.25rem;
    font-size: 0.875rem;
    flex: 0 1 calc(33.333% - 0.5rem);
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.jconfirm-buttons {
    display: flex;
    justify-content: flex-end;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.jconfirm-buttons .btn {
    background-color: var(--incrivel-cardBg);
    color: var(--incrivel-cardColor);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.jconfirm-buttons .btn:hover {
    background-color: #e0e0e0;
}

.jconfirm-clear {
    clear: both;
}
