/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500&display=swap');

/* Colors */
:root {
    --text-color: #000000;
    --light-purple: #4E49B9;
    --dark-purple: #3B3790;
    --store-status-open: #0AAB37;
    --store-status-closed: #ff0000;
    --store-status-button: #4843B3;
    --ultra-light-purple: #6B66D0;
    --clean-purple: #e9e5f8;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    touch-action: manipulation;
}

.text-center {
    text-align: center !important;
}

.dflex {
    display: flex;
    width: 100%;
}

.dflexcol {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.gap5{
    gap:5px;
}

.gap12{
    gap:12px;
}

.gap20{
    gap: 20px;
}

.colorGreen {
    color: var(--store-status-open);
}

#content {
    min-height: 600px;
}

.p15 {
    padding: 15px;
}

.mt0 {
    margin-top: 0 !important;
}

input {
    border: 1px solid #E8E8E8;
    outline: 0;
}

input:focus,
input:hover {
    border: 1px solid var(--dark-purple) !important;
}

.has-error,
input.has-error {
    border: 1px solid #a94442;
}

.has-error:focus,
input.has-error:focus {
    border: 1px solid #843534 !important;
}

.alert {
    padding: 15px;
    border: 1px solid transparent;
    border-radius: 0px;
    position: fixed;
    top: 0;
    z-index: 88888;
    width: 100%;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.alert-dismissable .close,
.alert-dismissible .close {
    position: unset;
}

/* LOGIN POPUP */
/* Essa popup tem estado inicial escondido com a classe login-popup--hidden */
#login-popup {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#login-popup-title {
    line-height: 33px;
    margin: 34px 0px 10px 0px;
    font-size: 22px;
    font-weight: 600;
}

.login-popup-text-present {
    font-size: 14px;
    opacity: 50%;
    text-align: center;
}

.login-popup-text-error {
    font-size: 14px;
    text-align: center;
    color: red
}

#login-popup-login-button {
    margin: 37px 0 14px 0;
}

#login-popup-text-or {
    opacity: 70%;

}

#login-popup-register-button {
    margin-bottom: 37px;
    margin-top: 14px;
}

#login-popup-login-button a {
    text-decoration: none;
    color: white;
}

#login-popup-login-button a:active {
    color: white;
}


.popup-button {
    background-color: var(--light-purple);
    color: white;
    line-height: 24px;
    text-align: center;
    font-size: 16px;
    padding: 14px 0px;
    border: none;
    width: 100%;
    border-radius: 8px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.popup-button img {
    margin-right: 14px;
}

.popup-button:hover {
    transform: scale(1.03);
}

#login-popup-text-socials {
    opacity: 80%;
}

#login-popup-social-media-icons-container {
    display: flex;
    gap: 36px;
    align-items: center;
    margin-top: 15px;
}

.login-popup-social-media-icon {
    height: 32px;
    width: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#login-popup input {
    width: 100%;
    padding: 14px 0px 14px 45px;
    border-radius: 8px;
    margin-bottom: 10px;
}

#formLogin {
    margin-top: 37px;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.login-input {
    padding-bottom: 10px;
    position: relative;
}

.login-input input {
    padding-left: 45px;
}

.login-input img {
    position: absolute;
    padding: 12px;
    opacity: 0.5;
}

.login-input span.error {
    color: #F41717;
    font-size: 12px;
}


/* REGISTER POPUP */
/* Essa popup tem estado inicial escondido com a classe register-popup--hidden */

#register-popup {
    width: 432px;
    height: calc(100% - 62px);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 74px 22px 22px 22px;
    text-align: center;
    position: absolute;
    right: -432px;
    background-color: white;
    transition: all 1s ease;
    z-index: 1000;
}

#register-popup-x-icon {
    position: absolute;
    top: 22px;
    right: 22px;
}

#register-popup-x-icon:hover {
    transform: scale(1.03);
    cursor: pointer;
}

#register-popup-title {
    line-height: 33px;
    margin: 33.98px 0px 34px 0px;
    font-size: 22px;
    font-weight: 600;
}

#register-popup-inform-name {
    margin-left: 8px;
    text-align: left;
    width: 100%;
    font-size: 18px;
    font-weight: 500;
    line-height: 27px;
}

#register-popup-inform-phone {
    margin-left: 8px;
    text-align: left;
    width: 100%;
    font-size: 18px;
    font-weight: 500;
    line-height: 27px;
    margin-bottom: 3px;
}

#register-popup input {
    width: 100%;
    padding: 14px 0px 14px 14px;
    border-radius: 8px;
    margin-bottom: 20px;
}

#register-popup-service-and-politcs-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    opacity: 50%;
    font-size: 15px;
}

#register-popup-service-and-politics-text a:active {
    color: black;
}

#register-popup-register-button {
    margin: 34px 14px 14px 13px;
}

.register-popup-links {
    color: black;
}

.register-popup-links:active {
    color: black;
}

/* ADD TO CART POPUP */
.add-to-cart-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#added-to-cart {
    width: 330px;
    white-space: nowrap;
    position: fixed;
    top: 0px;
    left: calc((100% - 350px)/2);
    z-index: 99999;
    background: white;
    color: var(--light-purple);
    padding: 10px;
    display: flex;
    box-shadow: 0px 2px 8px 0px #00000014;
    margin: 10px;
    font-weight: 500;
    border-radius: 8px;
    gap: 10px;
    align-items: center;
}

.add-to-cart-popup-item {
    max-height: 209px;
}

.add-to-cart-product-title {
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    text-align: left;
    margin-bottom: 5px;
    align-self: flex-start;
    margin-top: 22px;
}

.add-to-cart-product-description {
    opacity: 50%;
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
    margin-bottom: 5px;
    text-align: left;
    align-self: flex-start;
}

.add-to-cart-product-price-container {
    display: flex;
    width: 60%;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 18px;
    line-height: 27px;
    align-self: flex-start;
    margin-bottom: 30px;
}

.add-to-cart-product-old-price {
    color: red;
    opacity: 50%;
    text-decoration: line-through;
}

.add-to-cart-product-details-title {
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    color: var(--dark-purple);
    align-self: flex-start;
    margin-bottom: 12px;
}

.add-to-cart-popup-service-and-politics-text-container {
    width: 100%;
    margin-bottom: 30px;
}

.add-to-cart-popup-service-and-politcs-text {
    font-size: 14px;
    opacity: 80%;
    line-height: 20px;
    font-weight: 400;
    display: flex;
    flex-wrap: wrap;
    text-align: left
}

.add-to-cart-popup-quantity-big-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}

.item-quantity-counter-container {
    width: 148px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #F0F0F0;
    font-size: 16px;
}

.add-to-cart-popup-counter-button {
    background-color: var(--light-purple);
    border-radius: 8px;
    border: none;
    color: white;
    font-size: 25px;
    width: 44px;
    height: 44px;
    transition: all 0.5s ease;
}

.add-to-cart-popup-counter-button:hover {
    background-color: #3f39af;
    transform: scale(1.03);
}


.add-to-cart-popup-add-to-cart-button {
    margin: 30px 0px;
}

.add-to-cart-popup-add-to-cart-button img {
    height: 24px;
    width: 24px;
}

.add-to-cart-popup-service-and-politics-text-qtd {
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    opacity: 0.6;
}

.add-to-cart-popup-links {
    color: black;
}

.add-to-cart-popup-links:active {
    color: black;
}

/* CART POPUP */
/* Essa popup tem estado inicial escondido com a classe add to cart-popup--hidden */
.cart-entrega {
    margin-bottom: 188px;
}

.cart-pagamento {
    margin-bottom: 224px;
}

.cart-resumo {
    margin-bottom: 85px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.status-pedido-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.status-pedido-header {
    padding: 0 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.sair-container {
    background: white;
    border-radius: 10px;
    padding: 14px 16px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sair-title {
    margin-top: 38px;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
}

.sair-button {
    margin-top: 20px;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    background-color: rgba(206, 7, 7, 0.64);
    border-radius: 8px;
    padding: 14px 16px;
    color: white;
    width: 90%;
    text-align: center;
}

.sair-button:hover {
    text-decoration: none;
    color: white;
    transform: scale(1.03);
}

.more-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    padding-bottom: 160px;
    align-items: center;
}

.more-user {
    width: 100%;
    background-color: var(--light-purple);
    height: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
    padding: 9px 15px;
}

.more-user-link {
    font-weight: 400;
    font-size: 14px;
    line-height: 115%;
    color: #FFFFFF;
    opacity: 0.8;
    text-decoration: none;
}

.more-user-link:hover {
    transform: scale(1.03);
    cursor: pointer;
    text-decoration: none;
}


.more-links {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 2px;
    margin-top: 20px;
}

.more-link {
    background-color: white;
    display: flex;
    gap: 19px;
    padding: 16px 21px;
    align-items: center;
}

.more-link-text {
    font-weight: 500;
    font-size: 14px;
    line-height: 115%;
    opacity: 0.8;
}

.more-link:hover {
    cursor: pointer;
}

.more-dev-container {
    margin-bottom: 48px;
    align-self: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: absolute;
    bottom: 0;
}

.more-dev-by {
    font-weight: 400;
    font-size: 9px;
    line-height: 115%;
    text-align: center;
    text-transform: uppercase;
    opacity: 0.9;
}

.more-dev {
    font-weight: 500;
    font-size: 12px;
    line-height: 115%;
    text-align: center;
    opacity: 0.9;
    margin-top: 4px;
}

.more-dev-link {
    font-weight: 500;
    font-size: 12px;
    line-height: 115%;
    text-align: center;
    opacity: 0.9;
    margin-top: 18px;
    text-decoration: none;
    color: #000;
}

.more-dev-link:hover {
    text-decoration: none;
    color: #000
}

.more-login-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.more-login-buttons {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 21px;
    margin-bottom: 20px;
    width: 100%
}

.more-login-button {
    background-color: transparent;
    color: var(--light-purple);
    padding: 14px 16px;
    border: 1px dashed var(--light-purple);
    border-radius: 8px;
    box-sizing: border-box;
    width: 125px;

    line-height: 21px;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
}

.more-login-button:hover {
    transform: scale(1.03);
    background-color: var(--light-purple);
    color: white;
}

.cart-popup {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.cart-popup-empty-image {
    background: #FFFFFF;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    width: 100%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cart-popup-empty-image-title {
    font-weight: 500;
    font-size: 16px;
    line-height: 120%;
    text-align: center;
    margin-top: 30px;
}

.cart-popup-empty-image-subtitle {
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    opacity: 0.7;
    text-align: center;
    margin-top: 6px;
}

#cart-popup-title {
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
    text-align: left;
    align-self: flex-start;
}

#cart-popup-description {
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    text-align: left;
    align-self: flex-start;
    opacity: 0.7;
    margin-bottom: 16px;
}

.cart-popup-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 140px;
    width: 100%;
}

.cart-popup-item {
    background: #FFFFFF;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    height: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    transition: all 5s ease;
}

.cart-popup-item-product {
    display: flex;
    padding: 12px;
    gap: 10px;
}

.cart-popup-item-product-image-container {
    width: 90px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cart-popup-item-product-image {
    max-height: 80px;
    max-width: 80px;
}

.cart-popup-item-product-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.cart-popup-item-product-text-title {
    font-weight: 500;
    font-size: 14px;
    line-height: 120%;
    text-align: left;
    align-self: flex-start;
}

.cart-popup-item-product-text-description {
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
    opacity: 0.5;
    text-align: left;
    align-self: flex-start;
    margin-top: 3px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    /* number of lines to show */
    -webkit-box-orient: vertical;
}

.cart-popup-item-product-text-price-container {
    font-size: 14px;
    line-height: 24px;
    text-align: left;
    align-self: flex-start;
    margin-top: 2px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.cart-popup-item-product-text-price-unit {
    font-size: 12px;
}

.cart-popup-item-change {
    border-top: 1px solid #F2F2F6;
    padding: 10px;
    display: flex;
    justify-content: space-between;
}

.cart-popup-item-change-remove {
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 0.01em;
    color: #F41717;
    background: white;
    border: none;
    display: flex;
    align-items: center;
    padding: 0 10px;
    border-radius: 8px;
    transition: all 0.5s ease;
}

.cart-popup-item-change-remove:hover {
    transform: scale(1.03);
    cursor: pointer;
}

.cart-popup-item-change-remove.confirm {
    background: #fcdcdc;
}

.cart-popup-item-change-label-remover {
    margin-left: 4px;
    transition: all 1s ease;
}

#cart-popup-item-change-quantity-counter-container {
    width: 148px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #F0F0F0;
    font-size: 16px;
}

.cart-popup-item-counter-button {
    background-color: var(--light-purple);
    border-radius: 8px;
    border: none;
    color: white;
    font-size: 14px;
    width: 30px;
    height: 30px;
    transition: all 0.5s ease;
}

.cart-popup-item-counter-button:hover {
    background-color: #3f39af;
    transform: scale(1.03);
}

.cart-popup-footer {
    display: flex;
    flex-direction: column;
    padding: 10px 16px 20px 16px;
    position: fixed;
    bottom: 0px;
    margin-top: 20px;
    height: auto;
    background-color: white;
    width: 100%;
    right: 0;
    border-top: 1px solid #e0e0e0;    
}

.cart-popup-footer-line {
    opacity: 0.1;
    border: 1px solid #999999;
    width: 100%;
    margin-top: 5px;
    margin-bottom: 5px;
}

.cart-popup-footer-text {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cart-popup-footer-text-description {
    font-weight: 500;
    font-size: 12px;
    line-height: 18px;
    opacity: 0.8;
}

.cart-popup-footer-text-value {
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
    text-align: right;
    opacity: 0.8;
}

.cart-popup-footer-text-value.address {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}


.cart-popup-footer-text-total {
    font-weight: 500;
    font-size: 18px;
    line-height: 27px;
}

.cart-popup-footer-text-count {
    align-self: flex-end;
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
    opacity: 0.5;
}

.cart-popup-footer-buttons {
    display: flex;
    width: 100%;
    align-items: center;
    gap: 20px;
    margin-top: 10px;
}

.cart-popup-footer-buttons.mt0 {
    margin-top: 0;
}

.cart-popup-footer-button-back {
    display: flex;
    cursor: pointer;
    text-align: left;
    padding: 4px 10px 4px 0px;
    text-decoration: none;
    color: black;
}

.cart-popup-footer-button-back:hover {
    color: black;
    text-decoration: none;
}

.cart-popup-footer-button-back-text {
    font-weight: 600;
    line-height: 27px;
}

.cart-popup-footer-button {
    height: 45px;
    background: var(--light-purple);
    border-radius: 8px;
    border: none;
    color: white;
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    transition: all 0.5s ease;
    flex-grow: 1;
}

.cart-popup-footer-button:disabled {
    background-color: #cccccc;
}

.cart-popup-footer-button:hover {
    background-color: #3f39af;
    transform: scale(1.03);
}

.cart-popup-footer-button:hover:disabled {
    background-color: #cccccc;
}

.cart-popup-footer-button-delete {
    height: 45px;
    background: #B94949;
    border-radius: 8px;
    border: none;
    color: white;
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    transition: all 0.5s ease;
    flex-grow: 1;
}

.cart-popup-footer-button-delete:disabled {
    background-color: #cccccc;
}

.cart-popup-footer-button-delete:hover {    
    transform: scale(1.03);
}

.cart-popup-footer-button-delete:hover:disabled {
    background-color: #cccccc;
}

/*******************************
* MODAL AS LEFT/RIGHT SIDEBAR
* Add "left" or "right" in modal parent div, after class="modal".
* Get free snippets on bootpen.com
*******************************/
.popup-x-icon {
    padding: 0 7px;
    cursor: pointer;
}

.modal.center .conteudo {
    padding: 61px 22px 22px 22px;
}

.modal.right .modal-dialog {
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
    position: fixed;
    margin: auto;
    height: 100%;
    -webkit-transform: translate3d(0%, 0, 0);
    -ms-transform: translate3d(0%, 0, 0);
    -o-transform: translate3d(0%, 0, 0);
    transform: translate3d(0%, 0, 0);
}

.modal-header {
    position: fixed;
    top: 0px;
    width: 100%;
    background-color: #fff;
    border: 0;
    display: flex;
    justify-content: flex-end;
    z-index: 1;
}

.panel-footer {
    padding: 15px 15px !important;
    background-color: transparent !important;
    margin-bottom: 0px;
}

.modal.right .modal-popup {
    padding: 0;

}

.modal.right .popup-form {
    max-width: none;
    margin: 0 auto;
    padding: 20px 0;
    color: #000;
}

.modal.right .popup-form .error {
    color: var(--menu-bg-color);
    text-align: center;
}

.modal.right.full .modal-dialog {
    width: inherit;
}

.modal-content {
    height: 100%;
    border-radius: 0;
    border: none;
}

.modal.right .conteudo {
    max-height: 100%;
    overflow: auto;
    width: 100%;
    padding: 61px 22px 22px 22px;
    height: 100%;
}

#modalMais .conteudo,
#modalStatusPedido .conteudo {
    padding: 61px 0px 22px 0px;
}

.modal.right .modal-body {
    padding: 15px 15px 80px;
}

/*Left*/
.modal.left.fade .modal-dialog {
    left: -320px;
    -webkit-transition: opacity 0.3s linear, left 0.3s ease-out;
    -moz-transition: opacity 0.3s linear, left 0.3s ease-out;
    -o-transition: opacity 0.3s linear, left 0.3s ease-out;
    transition: opacity 0.3s linear, left 0.3s ease-out;
}

.modal.left.fade.in .modal-dialog {
    left: 0;
}

/*Right*/
.modal.right.fade .modal-dialog {
    right: -320px;
    -webkit-transition: opacity 0.3s linear, right 0.3s ease-out;
    -moz-transition: opacity 0.3s linear, right 0.3s ease-out;
    -o-transition: opacity 0.3s linear, right 0.3s ease-out;
    transition: opacity 0.3s linear, right 0.3s ease-out;
}

.modal.right.fade.in .modal-dialog {
    right: 0;
}

.cinza {
    background-color: #F2F2F6;
    ;
}

.modal-header.cor-tema {
    background-color: var(--light-purple);
    ;
}

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    bottom: 0;
    z-index: 999998;
    background: white;
}

.sk-spinner-wave img {
    position: relative;
    left: calc(50% - 100px);
    margin-bottom: 20px;
    max-width: 200px;
    max-height: 200px;
}

.sk-spinner-wave.sk-spinner {
    margin: -15px 0 0 -25px;
    position: absolute;
    left: 50%;
    top: calc(50% - 125px);
    width: 50px;
    height: 30px;
    text-align: center;
    font-size: 10px;
}

.modal.center .sk-spinner-wave.sk-spinner {
    top: 50%;
}

.sk-spinner-wave div {
    background-color: var(--light-purple);
    height: 100%;
    width: 6px;
    display: inline-block;
    -webkit-animation: sk-waveStretchDelay 1.2s infinite ease-in-out;
    animation: sk-waveStretchDelay 1.2s infinite ease-in-out;
}

.sk-spinner-wave .sk-rect2 {
    -webkit-animation-delay: -1.1s;
    animation-delay: -1.1s;
}

.sk-spinner-wave .sk-rect3 {
    -webkit-animation-delay: -1s;
    animation-delay: -1s;
}

.sk-spinner-wave .sk-rect4 {
    -webkit-animation-delay: -0.9s;
    animation-delay: -0.9s;
}

.sk-spinner-wave .sk-rect5 {
    -webkit-animation-delay: -0.8s;
    animation-delay: -0.8s;
}

@-webkit-keyframes sk-waveStretchDelay {

    0%,
    40%,
    100% {
        -webkit-transform: scaleY(0.4);
        transform: scaleY(0.4);
    }

    20% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }
}

@keyframes sk-waveStretchDelay {

    0%,
    40%,
    100% {
        -webkit-transform: scaleY(0.4);
        transform: scaleY(0.4);
    }

    20% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }
}

.spinner-more {
    width: 100%;
    display: none;
}

.sk-spinner-wave.sk-spinner.more {
    position: unset;
    margin: 30px 0px;
    width: 100%;
}

main {
    padding: 36px 64px;
    display: flex;
    flex-direction: column;
}

.cupom-input {
    margin-top: 10px;
    border-radius: 8px;
    width: 100%;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    padding: 14px;
}

.meus-dados {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-content: space-between;
}

.meus-dados-form {
    padding-top: 10px;
}

.meus-dados-form span.error {
    color: #F41717;
    font-size: 12px;
}

.pagamento-online-input ~ span.error {
    color: #F41717;
    font-size: 12px;
}

.categoria-back {
    display: flex;
    cursor: pointer;
    text-align: left;
    align-self: flex-start;
    padding: 4px 10px 4px 0px;
    top: 20px;
    z-index: 1;
    text-decoration: none;
    color: black;
}

.categoria-back-text {
    font-weight: 600;
    line-height: 27px;
}

.categoria-cabecalho {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.categoria-cabecalho-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.categoria-search {
    position: relative;
    align-items: center;
    cursor: pointer;
}

.categoria-search input {
    height: 36px;
    width: 0;
    border-radius: 15px;
    padding-left: 38px;
    padding-top: 17px;
    padding-bottom: 17px;
    font-size: 12px;
    border: 1px solid #f0f0f0;
}

.categoria-search img {
    position: absolute;
    padding: 10px 8px 10px 10px;
    height: 38px;
}

.categoria-cabecalho-title {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.categoria-cabecalho-name {
    font-weight: 600;
    font-size: 24px;
    line-height: 30px;
    text-align: left;
    align-self: flex-start;
}

.categoria-cabecalho-count {
    font-size: 11px;
    line-height: 14px;
    text-align: left;
    align-self: flex-start;
    opacity: 0.7;
}

.categoria-produtos {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 12px;
}

.categoria-produtos-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 200px;
    height: 254px;
    max-width: 200px;
    position: relative;
    cursor: pointer;
    text-decoration: none;
    color: black;
    border: 0.5px solid #f0f0f0;
    padding: 14px;
    justify-content: space-between;

}

.categoria-produtos-item img {
    max-width: 128px;
    max-height: 128px;
}

.categoria-produtos-item-detalhes {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.categoria-produtos-item-detalhes-title {
    font-weight: 500;
    font-size: 12px;
    line-height: 15px;
    width: 100%;
}

.categoria-produtos-item-detalhes-detail {
    font-weight: 400;
    font-size: 10px;
    line-height: 15px;
    color: #000000;
    opacity: 0.5;
}

.categoria-produtos-item-detalhes-precos {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.categoria-produtos-item-detalhes-precos-current {
    font-weight: 600;
    font-size: 14px;
    line-height: 21px;
}

.categoria-produtos-item-detalhes-precos-old {
    font-weight: 600;
    font-size: 14px;
    line-height: 21px;
    text-decoration-line: line-through;
    color: rgba(206, 7, 7, 0.64);
}

.list-categorias {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.list-categorias-item {
    display: flex;
    flex-direction: column;
    width: 156px;
    height: 156px;
    border-radius: 4px;
    position: relative;
    cursor: pointer;
    text-decoration: none;
    color: black;
}

.list-categorias-item:hover {
    transform: scale(1.03);
}

.list-categorias-item-texto {
    position: absolute;
    top: 0;
    left: 0;
    padding: 14px 12px;
    font-weight: 500;
    font-size: 14px;
    line-height: 115%;
    width: 100%;
}

.list-categorias-item-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 4px;
}

.list-categorias-item-transp {
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 19.87%, rgba(255, 255, 255, 0) 100%);
    width: 100%;
    height: 100%;
    border-radius: 4px;
}

#banner-and-tag-carrossel {
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 100%;
    height: auto;
    position: relative;
    z-index: -99999;
    /*max-height: 300px;*/
}

#banner-and-tag-carrossel img {
    width: 100%;
    /*max-height: 300px;
    object-fit: cover;*/
}

#banner-and-tag-carrossel-transparency {
    position: absolute;
    width: 100%;
    top: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0), rgba(255, 255, 255, 0), rgba(255, 255, 255, 0), rgba(255, 255, 255, .3), rgba(255, 255, 255, 1));
    height: 100%;
}

#carrossel-tags-category-container {
    width: 100%;
    padding: 0;
    height: 45px;
    position: relative;
    bottom: 70px;
    display: flex;
    align-items: center;
    flex-direction: row;
    overflow: hidden;
    margin: auto;
}


.carrossel-tags {
    cursor: grab;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 0%;
    width: 100%;
    font-size: 1vw;
    margin-top: -51px;
    bottom: 0;
    gap: 10px;
    flex-wrap: wrap;
    padding: 10px;
}

.carrossel-tags a {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    background-color: white;
    border-radius: 41px;
    padding: 12px;
    box-shadow: 0px 2px 8px 0px #00000014;
    text-decoration: none;
    color: black;
    font-weight: 500;
    font-size: 12px;
    line-height: 16px;
    align-items: center;
    gap: 10px;

}

.carrossel-tags a span {
    white-space: nowrap;
}

.cart-cupom-link {
    font-weight: 500;
    font-size: 12px;
    line-height: 18px;
    text-align: right;
    text-decoration: none;
    padding: 5px;
    color: var(--light-purple);
    border-radius: 6px;
}

.cart-cupom-link:hover {
    text-decoration: none;
    cursor: pointer;
}

#tags {
    flex-wrap: nowrap;
    overflow-x: scroll;
    font-weight: 500;
    font-size: 12px;
    line-height: 18px;
    letter-spacing: -0.01em;
    padding-bottom: 5px;
}

#tags::-webkit-scrollbar {
    display: none;
}

#tags a img {
    height: 15px;
    width: 15px;
}

#tags a:hover {
    transform: scale(1.03);
}

.btn-next,
.btn-prev {
    background-color: transparent;
    font-size: 24px;
    padding: 8px 10px;
    position: absolute;
    border: 0;
    color: white;
}

.btn-next i,
.btn-prev i {
    text-shadow: 0px 0px 12px grey;
}

.carrossel-tags .btn-next {
    right: 0;
}

.carrossel-tags .btn-prev {
    left: 0;
}

.categoria-tags .btn-next {
    right: 0px;
}

.categoria-tags .btn-prev {
    left: 0px;
}

.categoria-tags {
    cursor: grab;
    padding: 2px;
    display: flex;
    flex-direction: row;
    justify-content: left;
    gap: 10px;
    width: 100%;
    flex-wrap: wrap;
    padding: 12px;
}

.categoria-tags a {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    background-color: white;
    border-radius: 41px;
    padding: 12px 16px;
    box-shadow: 0px 2px 8px 0px #00000014;
    text-decoration: none;
    color: black;
    font-weight: 500;
    font-size: 12px;
    line-height: 18px;
    align-items: center;
    white-space: nowrap;

}

.endereco-index-title {
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
    text-align: left;
    align-self: flex-start;
}

.endereco-index-description {
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    text-align: left;
    align-self: flex-start;
    opacity: 0.7;
}

.endereco-index-subtitle {
    font-weight: 600;
    font-size: 12px;
    line-height: 16px;
    margin-top: 16px;
    align-self: flex-start;
}

.endereco-index-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 14px;
    width: 100%;
}

.horario-options {
    display: flex;
    flex-direction: row;
    gap: 12px;
    margin-top: 14px;
    width: 100%;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.endereco-index-option {
    display: flex;
    width: 100%;
    background: #FFFFFF;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    padding: 2px;
}

.endereco-index-option:hover {
    border: 1px solid var(--light-purple);
    padding: 1px;
}

.endereco-index-option.open:hover {
    border: none;
    padding: 2px;
}

.horario-option {
    display: flex;
    background: #FFFFFF;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    padding: 2px;
}

.horario-option:hover {
    border: 1px solid var(--light-purple);
    padding: 1px;
}

.endereco-index-option.open {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.endereco-index-option-title {
    padding: 16px;
    display: flex;
    width: 100%;
    gap: 12px;
    align-items: center;
    font-size: 12px;
}

.horario-option-title {
    padding: 16px;
    display: flex;
    width: 100%;
    gap: 12px;
    align-items: center;
    width: 110px;
}

.endereco-index-option-title img:first-child {
    width: 22px;
    height: 22px;
}

.endereco-index-option-endereco {
    padding: 16px;
    display: flex;
    width: 100%;
    gap: 12px;
    align-items: center;
    font-weight: 400;
    font-size: 12px;
    line-height: 130.5%;
    opacity: 0.8;
}

.endereco-index-option-endereco-img {
    width: 22px;
    height: 22px;
}

.endereco-index-option-endereco span {
    flex-grow: 1;
}

.endereco-index-option-vazio {
    background: #E6E5F5;
    border: 1px dashed #4B47A5;
    box-sizing: border-box;
    border-radius: 8px;
    padding: 16px;
    display: flex;
    width: 100%;
    font-weight: 400;
    font-size: 12px;
    line-height: 130.5%;
    opacity: 0.8;
    justify-content: center;
}

.endereco-index-option-inativo {
    background: #cccccc;
    border: 1px dashed #000000;
    box-sizing: border-box;
    border-radius: 8px;
    display: flex;
    width: 100%;
    font-weight: 400;
    font-size: 12px;
    line-height: 130.5%;
    opacity: 0.8;
    justify-content: center;
}

.endereco-index-links {
    display: flex;
    width: 100%;
    justify-content: flex-end;
    gap: 10px;
}

.endereco-index-link {
    font-weight: 500;
    font-size: 14px;
    line-height: 21px;
    text-align: right;
    color: var(--light-purple);
}

.pagamento-option {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.pagamento-detail {
    background-color: #fff;
    border-top: 1px solid #F2F2F6;
    box-shadow: 0px 2px 4px rgb(0 0 0 / 10%);
    gap: 12px;
    display: flex;
    flex-direction: column;
}

.pagamento-detail-option {
    background: #FFFFFF;
    border: 1px solid #E8E8E8;
    box-sizing: border-box;
    border-radius: 4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 2px;
}

.pagamento-detail-option:hover {
    border: 1px solid var(--light-purple);
    padding: 1px;
}

.pagamento-detail-option-title {
    padding: 15px;
    opacity: 0.7;
    font-weight: 500;
    font-size: 14px;
}

.pagamento-troco {
    display: flex;
    align-self: flex-end;
    align-items: center;
    gap: 12px;
}

.pagamento-troco input {
    box-sizing: border-box;
    border-radius: 8px;
    width: 120px;
    padding: 14px;
}

.container-wrapper {
    display: flex;
    padding: 0;
    width: 100%;
    justify-content: center;
    margin: 0;
    flex-wrap: wrap;
}

/* ITEM CARDS STYLE */
.section-titles {
    font-weight: 600;
    font-size: 24px;
    line-height: 36px;
    padding-bottom: 16px;
    padding-top: 16px;
}

.item-container {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    overflow: hidden;
    max-height: 255px;
}

.item-card {
    height: 254px;
    width: 220px;
    max-width: 220px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0px 12px 14px;
    position: relative;
    border: 0.5px solid #f0f0f0;
    justify-content: space-between;
    cursor: pointer;
}

.item-card div.text-block {
    align-self: flex-start;
    width: 100%;
}

.add-to-cart {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 32px;
    height: 32px;
    background-color: var(--clean-purple);
    color: var(--light-purple);
    border: none;
    border-radius: 8px;
}

.add-to-cart:hover {
    transform: scale(1.03);
    cursor: pointer;
    background-color: var(--clean-purple);
}

.product-title {
    font-size: 12px;
    text-align: left;
    line-height: 15px;
    margin-bottom: 4px;
    margin-right: 30px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.product-description {
    opacity: 50%;
    font-size: 10px;
    line-height: 15px;
    margin-bottom: 4px;
    text-align: left;
    height: 15px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    /* number of lines to show */
    -webkit-box-orient: vertical;
}

.product-price-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    line-height: 21px;
}

.product-old-price {
    color: red;
    opacity: 50%;
    text-decoration: line-through;
}

.product-image-container {
    width: 156px;
    height: 158px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-image {
    max-height: 158px;
    max-width: 156px;
}

/* SEE MORE BUTTON STYLE */
.see-more-button {
    color: var(--light-purple);
    background-color: #F8F8F8;
    border-radius: 42px;
    border: none;
    padding: 12px 16px 12px 16px;
    margin-left: 50%;
    transform: translateX(-50%);
    margin-top: 16px;
    margin-bottom: 16px;
    font-size: 12px;
    font-weight: 500;
    line-height: 18px;
    width: 110px;
}

.see-more-button:hover {
    background-color: var(--clean-purple);
}

/* SEE LESS BUTTON STYLE */
.see-less-button {
    color: var(--light-purple);
    background-color: #F8F8F8;
    border-radius: 42px;
    border: none;
    padding: 12px 16px 12px 16px;
    margin-left: 50%;
    transform: translateX(-50%);
    margin-top: 24px;
    font-size: 16px;
    font-weight: 500;
}

.see-less-button:hover {
    background-color: var(--clean-purple);
}

/* DIV DE PROPAGANDAS */
#advertising-container {
    width: 100%;
    display: flex;
    overflow: hidden;
    margin-bottom: 24px;
    gap: 24px;
}

#advertising-container img {
    border-radius: 10px;
    width: 100%;
}

/*RADIO CUSTOM*/
/* Customize the label (the container) */
.radio-container {
    display: block;
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    height: 12px;
    padding-right: 5px;
}

/* Hide the browser's default radio button */
.radio-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom radio button */
.radiomark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #eee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* On mouse-over, add a grey background color */
.radio-container:hover input~.radiomark {
    background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.radio-container input:checked~.radiomark {
    background-color: white;
    border: 1.4px solid #595959;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.radiomark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the indicator (dot/circle) when checked */
.radio-container input:checked~.radiomark:after {
    display: block;
}

/* Style the indicator (dot/circle) */
.radio-container .radiomark:after {
    width: 80%;
    height: 80%;
    border-radius: 50%;
    background: linear-gradient(146.31deg, var(--dark-purple) 15.45%, var(--ultra-light-purple) 110%);
    ;
}

.status-pedido-line {
    opacity: 0.1;
    border: 1px solid #999999;
    width: calc(100% - 70px);
    position: relative;
    left: 70px;
}

.status-pedido-info {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-top: 28px;
}

.status-pedido-info span {
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
}

.status-pedido-info a {
    font-weight: 500;
    font-size: 14px;
    line-height: 21px;
    color: var(--light-purple);
}

.status-pedido-list {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: 20px;
    background-color: white;
    position: relative;
}

.status-pedido {
    display: flex;
    gap: 20px;
    width: 100%;
    align-items: flex-start;
    padding: 5px 30px;
    background-color: white;
}

.status-pedido>img {
    width: 20px;
    height: 20px;
    margin-top: 13px;
    z-index: 1;
}

.status-pedido-text {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding: 10px 0;
    opacity: 0.7;
}

.status-pedido-text-label {
    font-weight: 400;
    font-size: 12px;
    line-height: 20px;
    color: #000;
}

.status-pedido-text-time {
    font-weight: 400;
    font-size: 10px;
    line-height: 15px;
    color: #000000;
    opacity: 0.5;
    display: flex;
    gap: 3px;
}

.status-pedido-text-time>img {
    width: 10px;
}

.status-pedido-progress {
    height: 4px;
    background: var(--light-purple);
    border-radius: 32px;
}

.status-pedido-text-label.ok {
    color: #079726;
}

.status-pedido-text-label.not-ok {
    color: #a94442;
}

.status-pedido-text.ativo {
    opacity: 1;
}

.status-vertical-line {
    border: 1px solid #dedede;
    position: absolute;
    left: 39px;
    height: calc(100% - 60px);
    top: 20px;
}

.status-circle {
    position: absolute;
    width: 30px;
    height: 30px;
    background-color: #dedede;
    margin-top: 8px;
    border-radius: 15px;
    left: 25px;
    border: 1px solid none;
}

.status-circle.green {
    background-color: #69b76c;
}

.status-circle.red {
    background-color: #c57e7c;
}

.pedidos-list {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 12px;
    padding-top: 12px;
}

.pedidos-list-item {
    padding: 12px;
    border-radius: 10px;
    background-color: white;
    display: flex;
    align-items: center;
    width: 100%;
    cursor: pointer;
}

.pedidos-list-item:hover {
    border: 1px solid var(--light-purple);
    padding: 11px;
}

.pedidos-list-item-icon {
    width: 24px;
    margin: 8px;
}

.pedidos-list-item-text {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding: 0 8px;
}

.pedidos-list-item-text-title {
    font-weight: 500;
    font-size: 12px;
    line-height: 21px;
}

.pedidos-list-item-text-subtitle {
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    opacity: 0.5;
}

.pedidos-list-item-icon-right {
    height: 14px;
    margin: 8px;
}

.altera-endereco-numero {
    width: 100px;
}

.verifica-sms-telefone{
    padding: 8px 18px;
    background: #E8E8EE;
    border-radius: 35px;
    margin-top: 10px;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    cursor: pointer;

}

.verifica-sms-outro{
    font-weight: 500;
    font-size: 14px;
    line-height: 21px;
    color: #B94949;
    padding: 8px;
    border: none;
    background-color: #F2F2F6;
    height: 45px;
    display: flex;
    width: 100%;
    align-items: center;    
    justify-content: center;
}

.btn-aceita {
    font-weight: 500;
    font-size: 14px;
    line-height: 21px;
    color: white;
    align-self: center;
    padding: 8px;
    border: none;
    background-color: var(--store-status-open);
    height: 45px;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 0 20px;
    border-radius: 8px;
}

.btn-exclui {
    font-weight: 500;
    font-size: 14px;
    line-height: 21px;
    color: #B94949;
    align-self: center;
    padding: 8px;
    border: none;
    background-color: #F2F2F6;
    height: 45px;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 0 20px;
}

.btn-exclui img {
    display: none;
}

.btn-exclui.confirm {
    background: #fcdcdc;
    border-radius: 8px;
    color: #F41717;
}

.btn-exclui.confirm img {
    display: block;
}

@media screen and (max-width: 650px) {
    .section-titles{
        font-size: 14px;
        padding-top: 5px;
        padding-bottom: 5px;
    }

    #tags a:hover {
        transform: none;
    }
    .categoria-cabecalho {
        padding: 0;        
    }

    .categoria-cabecalho-bar {
        padding: 0 22px;        
    }

    .categoria-back {
        padding: 4px 10px;
    }

    .categoria-tags .btn-next {
        right: 0px;
    }

    .categoria-tags .btn-prev {
        left: 0px;
    }

    .item-card div.text-block {
        width: auto;
        height: 100%;
    }

    .list-categorias {
        margin-bottom: 32px;
    }

    .categoria-tags {
        flex-wrap: nowrap;
    }

    .categoria-produtos-item {
        width: 50%;
        max-width: 50%;
    }

    .product-image {
        max-height: 62px;
        max-width: 69px;
    }

    .product-image-container {
        width: 62px;
        height: 69px;
        min-width: 62px;
        min-height: 69px;
    }

    #banner-and-tag-carrossel-transparency {
        background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0), rgba(255, 255, 255, 0), rgba(255, 255, 255, 0), rgba(255, 255, 255, .3), rgba(255, 255, 255, 1));
    }

    .carrossel-tags {
        justify-content: left;
    }

    main {
        padding: 36px 16px;
        margin-bottom: 64px;
    }

    .item-container {
        width: 100%;
        overflow-x: scroll;
        overflow-y: hidden;
        max-height: 190px;
        padding-bottom: 5px;
    }

    .item-container::-webkit-scrollbar {
        display: none;
    }

    .container-wrapper {
        width: 300%;
        display: grid;
        grid-template-columns: auto auto auto;
        gap: 10px;
        justify-content: flex-start;
    }


    .item-card {
        flex-direction: row;
        height: auto;
        padding: 8px;
        cursor: pointer;
        box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
        border-radius: 4px;
        justify-content: normal;
    }

    #advertising-container {
        overflow: hidden;
    }

    .product-price-container {
        font-weight: 600;
        font-size: 12px;
        line-height: 18px;
        display: flex;
        gap: 10px;
        justify-content: space-around;
    }

    .text-block {
        margin-left: 10px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: space-between;
    }

    #busca-mobile-container {
        height: 100%;
        background-color: white;
        position: absolute;
        width: 100%;

    }

    .busca-mobile {
        padding: 19px 16px;
        font-size: 14px;
        opacity: 60%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    #modalCategoria .conteudo{
        padding: 61px 0 61px 0px;
    }
}

#status-bar-container {
    display: flex;
    flex-direction: column;

}

#status-pedido-container {
    display: flex;
    width: 100%;
    gap: 120px;
}

#status-wrapper {
    display: flex;
    flex-direction: row;
    width: 100%;
}

#pedido-page div {
    display: flex;
    align-items: flex-start;
}

.width40 {
    min-width: 40px;
}

.width85 {
    min-width: 85px;
}

.pedido-rodape {
    height: 8px;
    /*background-image: url("/img7/img/rodape-cupom.png");*/
    background-repeat: repeat-x;
    position: relative;
    top: -4px;
    width: 98%;
}



.black-line {
    height: 6px;
    width: 100%;
    background-color: black;
    border-radius: 8px;
}

#status-container {
    width: 100%;
    display: flex;
    flex-direction: column;
}

#pedido-container {
    width: 100%;
    padding: 0 10px;
}

.rectangle {
    width: 100%;
    padding: 12px 12px 10px 10px;
    display: flex;
    align-items: center;

}

.inactive {
    background: #BCBCBC;
    color: #969696;
    font-size: 14px;
}

#status-boxes {
    display: flex;
    flex-direction: column;
    gap: 26px;
    width: 100%;
}

#status-bar-container {
    width: 2px;
    height: 360px;
    background: linear-gradient(to bottom, #bcbcbc 0%, #bcbcbc 37%, #3929eb 70%, #079726 76%, #079726 100%);
    margin-right: 20px;
    margin-left: 20px;
    position: relative;
    top: 19px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.circle {
    width: 11px;
    height: 11px;
    background-color: #BCBCBC;
    border-radius: 50%;
    position: relative;
    right: 5px;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}


@-webkit-keyframes rotate {
    from {
        -webkit-transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
    }
}

.load {
    width: 18px;
    height: 18px;
    margin-right: 11px;
    border: solid 4px #ffffff;
    border-radius: 50%;
    border-right-color: transparent;
    border-bottom-color: transparent;
    -webkit-transition: all 0.5s ease-in;
    -webkit-animation-name: rotate;
    -webkit-animation-duration: 1.0s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;

    transition: all 0.5s ease-in;
    animation-name: rotate;
    animation-duration: 1.0s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}



.oncourse {
    color: white;
    background: #3929EB;
    font-size: 14px;
}

.oncourse span::before {
    content: "";

}

.time {
    margin-right: 10px;
    color: #FFFFFF;
    opacity: 50%;
}

.active {
    color: white;
    background-color: #079726;
}

.clock {
    width: 14px;
    height: 14px;
    margin-right: 10px;
    background-image: url(../assets/main/clock.svg);
    background-repeat: no-repeat;
    background-size: cover;
}

#circle6 {
    background-color: #079726;
}

#circle5 {
    background-color: #079726;
}

#circle4 {
    background-color: #3929EB;
}

#status-title {
    margin-bottom: 8px;
    font-size: 32px;
    font-weight: 600;
}

#status-text {
    margin-bottom: 42px;
    font-size: 18px;
    opacity: 70%;
}

#pedido-container {
    display: flex;
    flex-direction: column;
    margin-top: 28px;
    align-items: center;
}

#pedido-title {
    margin-bottom: 30px;
    font-size: 28px;
    font-weight: 600;
}

#pedido-page {
    position: relative;
    bottom: 4px;
    background: #FFFBE8;
    width: 98%;
    align-self: center;
    padding: 20px 15px;
    display: flex;
    flex-direction: column;
    box-shadow: 0px 8px 8px 0px #866F020D;
}

#pedido-page img {
    width: 157px;
    height: 134px;
    align-self: center;
    margin-bottom: 16px;
}

.pedido-card {
    display: flex;
    padding: 7px 0;
}

.alignright {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}

.pedido-title {
    font-size: 14px;
    font-weight: 500;
    color: #2F2702;
}

.pedido-item {
    font-weight: 400;
    color: #756100;
}

.grow {
    flex-grow: 1;
}

.dotted-border {
    height: 1px;
    background-image: repeating-linear-gradient(-6deg, #756100, #756100 20px, transparent 20px, transparent 40px, #756100 40px), repeating-linear-gradient(84deg, #756100, #756100 20px, transparent 20px, transparent 40px, #756100 40px), repeating-linear-gradient(174deg, #756100, #756100 20px, transparent 20px, transparent 40px, #756100 40px), repeating-linear-gradient(264deg, #756100, #756100 20px, transparent 20px, transparent 40px, #756100 40px);
    background-size: 2px 100%, 100% 2px, 2px 100%, 100% 2px;
    background-position: 0 0, 0 0, 100% 0, 0 100%;
    background-repeat: no-repeat;
    margin-bottom: 26px;
}

.aligncenter {
    text-align: center;
}

.entrega-card {
    display: flex;
    justify-content: space-between;
    text-align: right;
    width: 100%;
}

.mt55 {
    margin-top: 55px;
}

.mt5{
    margin-top: 5px;
}

.mt20 {
    margin-top: 20px;
}

.mb20 {
    margin-bottom: 20px;
}

.ml20 {
    margin-left: 20px;
}

.entrega-card-left {
    font-size: 14px;
    font-weight: 500;
}

.entrega-card-right {
    font-size: 14px;
    text-align: right;
    color: #756100;
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.entrega-total-right {
    color: #756100;
}

.bold {
    font-weight: 600;
}

.alignself {
    align-self: flex-end;
    justify-self: flex-end;
}

.border-bottom {
    border-bottom: 1px solid #e1e197;
}

.pb7 {
    padding-bottom: 7px;
}

.pt7 {
    padding-top: 7px;
}

.fs16-fw600 {
    font-size: 16px;
    font-weight: 600;
}

.btn-pedidos {
    padding: 16px 10%;
    margin-top: 42px;
    border-radius: 8px;
    border: 2px solid #4E49B9;
    color: #4E49B9;
    display: flex;
    align-self: flex-end;
    background-color: transparent;
    font-size: 16px;
}

#shopping-cart-item-quantity-container {
    display: flex;
    align-items: center;
    position: relative;
    justify-content: center;
}

#shopping-cart-item-quantity-counter {
    position: absolute;
    top: 0;
    right: 0;
    background-color: red;
    color: white;
    border-radius: 50%;
    height: 12px;
    width: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    font-size: 8px;
    line-height: 6px;
}

.pay-method-icons {
    text-align: center;
    margin-bottom: 10px;
}

.icon-pay-method {
    background-image: url('../img/cards-icons.svg');
    background-repeat: no-repeat;
    display: inline-block;
    background-size: 380px 90px;
    height: 29px;
    opacity: 0.3;
}

.icon-pay-method.ativo {
    opacity: 1;
}

.icon-pay-method.visa {
    background-position: 0 0;
    width: 44px;
}

.icon-pay-method.mastercard {
    background-position: -50px 0;
    width: 40px;
}

.icon-pay-method.elo {
    background-position: -95px 0;
    width: 29px;
}

.icon-pay-method.diners {
    background-position: -130px 0;
    width: 31px;
}

.icon-pay-method.hipercard {
    background-position: -173px 0;
    width: 50px;
}

.icon-pay-method.amex {
    background-position: -228px 0;
    width: 50px;
}

.icon-pay-method.banesecard {
    background-position: -310px 0;
    width: 60px;
}

.pagamento-online-input {
    box-sizing: border-box;
    border-radius: 8px;
    padding: 14px;
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
}

.pagamento-online-input.w50p {
    width: 50%;
}

.pagamento-online-input.w30p {
    width: 30%;
}
.pagamento-online-input.w70p {
    width: 70%;
}

@media screen and (max-height: 575px) {
    #rc-imageselect, .g-recaptcha {transform: scale (0.77); -webkit-transform: scale (0.77); transform-origin: 0 0; -webkit-transform-origin: 0 0;}
}

.pinlogin .pinlogin-field{
    border: 1.5px solid #ccc !important;    
    border-radius: 8px !important;
    background-color: white !important;
    width: 52px !important;
    height: 52px !important;
    font-size: 20px !important;
}
.pinlogin .pinlogin-field.invalid, .pinlogin .pinlogin-field.invalid:hover,.pinlogin .pinlogin-field.invalid:focus {
    border: 1.5px solid red !important;    
}
.pinlogin .pinlogin-field:hover,.pinlogin .pinlogin-field:focus {
    border: 1.5px solid var(--light-purple) !important;    
}
.pinlogin .pinlogin-field.valid, .pinlogin .pinlogin-field.valid:hover,.pinlogin .pinlogin-field.valid:focus {
    border: 1.5px solid green !important;    
}

.cadastro-endereco-cep{
    display: flex;
    align-items: center;
    gap: 20px;
}

.cadastro-endereco-cep input{
    max-width: 200px;
}

/*============================================================================================*/

._oifdv7 {
    -webkit-box-pack: center;
    color: rgb(135, 135, 135);
    width: 100%;
    display: flex;
    bottom: 100px;
    justify-content: center;
    position: fixed;
    z-index: 12;
}
._jl4ceq {
    -webkit-box-align: center;
    background: rgb(255, 255, 255);
    padding: 8px;
    display: flex;
    align-items: center;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 6px 2px, rgba(0, 0, 0, 0.3) 0px 2px 3px 1px;
    width: 100%;
    margin: 0px 16px;
}
@media only screen and (min-width: 650px) {
    .desktop-hide{ display: none !important; }
}

.jss1 {
    fill: currentColor;
    width: 1em;
    height: 1em;
    display: inline-block;
    font-size: 24px;
    transition: fill 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    user-select: none;
    flex-shrink: 0;
}
._kq0x30 {
    font-family: Verdana;
    font-size: 14px;
    background: transparent;
    outline: transparent;
    border: none;
}
._lg7zoc {
    -webkit-box-align: center;
    flex: 1 1 0px;
    display: flex;
    align-items: center;
}
._1n5nowe {
    width: 50px;
    height: 50px;
    margin: 0px 12px;
    border-radius: 10px;
}
._1xuugne {
    font-size: 12px;
    text-align: left;
    color: rgb(76, 76, 76);
}
._2ucxln {
    width: 106px;
    height: 23px;
    position: relative;
    overflow: hidden;
}
._1l1hmgo {
    background: rgb(108, 108, 108);
    color: rgb(255, 255, 255);
    font-size: 10px;
    font-weight: 100;
    border-radius: 5px;
    padding: 8px;
    margin-left: 10px;
    text-decoration: none;
}
._jskt0z {
    position: absolute;
    overflow: hidden;
    left: 0px;
    top: -23px;
}


/* TOASTR */
.toast-top-right {
    top: 0;
    right: 0;
}
#toast-container>div {
    width: 560px;
    opacity: 1;
    border-radius: 0;
}
@media screen and (max-width: 650px) {
    #toast-container{
        width: 100%;
    }
    #toast-container>div {
        padding: 15px 15px 15px 50px;
        width: 100%;
    }
}