.checkout {
    max-width: var(--container-max-width);
    width: var(--container-width);
    margin: 30px auto;

    display: flex;
    flex-direction: column;
}

.checkout__container,
.checkout__overview {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: var(--block-default-padding);
}

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

.checkout__overview,
.checkout__card {
    flex-direction: column;
}

.checkout__card {
    transition: background 0.3s ease-in-out;
}

.checkout__container {
    max-width: 768px;
    margin: auto;
    flex-wrap: wrap;
    width: 100%;
}

.checkout__card,
.checkout__overview {
    flex-direction: row;
    flex-wrap: wrap;
}

.checkout__overview,
.checkout__card {
    width: 100%;

}

.checkout__card-body {
    padding: 16px;
    border: 1px solid var(--color-cinza-escuro);
    border-radius: 0 0 4px 4px;
    width: 100%;
}

.checkout__card-text {
    font-size: 14px;
}

.checkout__cardContainer button.btn {
    width: 100%;
}

.overview__title,
.overview__item-list-heading,
.overview__prices-heading,
.overview__total-heading,
.checkout__card-title {
    font-family: var(--title-font);
    line-height: var(--line-height);
    color: var(--primary-color);
    font-weight: normal;
}

.overview__prices-heading,
.overview__item-list-heading {
    font-size: var(--text-font-size);
}

.overview__total-heading {
    font-size: var(--heading-third-font-size)
}

.overview__item-list,
.overview__prices-text,
.overview__button,
.checkout__card-body,
.checkout__card-button,
.overview__coupon-button,
.overview__coupon-code,
.overview__coupon-label,
.overview__coupon-input,
.overview__coupon-warning {
    font-family: var(--text-font);
    line-height: var(--line-height);
    font-size: 14px;
}

.overview__title,
.overview__item-list,
.overview__prices,
.overview__total {
    flex: 0 0 95%;
    margin: auto;
}

.checkout__card-body span {
    color: #282828;
}

.checkout__card-body p,
.overview__item-title {
    font-size: 14px;
}

.overview__item-title {
    margin-bottom: 16px;
}

.overview__prices {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.overview__item-list-heading {
    flex: 0 0 calc((95% / 2) - var(--elements-gap));
    margin: auto;
}

.checkout__card-title {
    flex: 0 0 calc(100% - 100px);
}

.overview__price-group,
.overview__total {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.overview__button {
    width: 100%;
    background: var(--secondary-color);
    color: rgb(255 255 255);
    padding: var(--block-default-padding);
    transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
    border: none;
    margin: 16px 0 0;
    border-radius: 6px 14px;
}

.overview__line {
    width: 100%;
    height: 1px;
    border: 1px solid var(--color-cinza-escuro);
    margin: 4px 0 8px;
}

.checkout__card-button {
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;

    background: none;
    border: none;
    margin: 0 0 auto;

    text-decoration: underline;
    color: #fff;
    text-align: right;

    flex: 0 0 84px;
}

.overview__title,
.checkout__card-title {
    font-size: var(--heading-third-font-size);
    /* margin: 0 auto 16px; */
}

.overview__item-divide {
    margin: calc(var(--elements-gap) / 2) 0;
    border-color: var(--color-cinza-escuro);
    border-width: .5px;
}

.overview__item {
    display: flex;
    flex-direction: row;
    gap: 8px;
}

.overview__item-image {
    flex: 0 0 60px;
    height: 60px;
    object-fit: cover;
}

.overview__item-information {
    font-family: var(--text-font);
    line-height: var(--line-height);
    font-size: var(--text-font-size);

    display: flex;
    flex-direction: column;
    flex: 1 1 0px;
}

.overview__item-quantity {
    align-self: flex-end;
    margin: auto 0 0;
}

/*Coupon*/
.overview__coupons {
    width: 100%;
}

.overview__coupon {
    display: flex;
    flex-direction: column;
    contain: layout;
    position: relative;
}

.overview__coupon-heading {
    font-family: var(--title-font);
    line-height: var(--line-height);
    font-size: var(--text-font-size);
    font-weight: normal;
}

.overview__coupon-button {
    background-color: var(--secondary-color);
    color: #fff;
    border: 1px solid var(--secondary-color);
    padding: calc(var(--elements-gap) / 2);
    border-radius: 6px 14px;
    transition: background 0.3s ease-in-out, border-color 0.3s ease-in-out;
}

.overview__coupon-button:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff
}

.overview__coupon-label {
    position: absolute;
    top: 50%;
    left: calc(var(--elements-gap) / 2);

    transform: translateY(-50%);

    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.overview__coupon-input,
.overview__coupon-input:focus {
    border: none;
    flex: 100%;
    padding: calc(var(--elements-gap) / 2);
}

.overview__coupon-insert {
    display: flex;
    border: 1px solid var(--primary-color);
    width: 100%;
    border-radius: 0px 16px 8px 0px;
}

.overview__button--insert {
    margin: 0;
    padding: calc(var(--elements-gap) / 2);
    width: fit-content;
}

.overview__coupon-warning {
    color: #dc3545;
    margin: calc(var(--elements-gap) / 2) 0 0;
}

.overview__coupon-item {
    flex: 1 1 0px;
    display: flex;
    justify-content: flex-end;
    margin-left: var(--elements-gap);
    gap: calc(var(--elements-gap) / 2);
}

.overview__coupon-remove {
    color: #dc3545;
}

.checkout__address-group {
    display: flex;
    flex-direction: column;
}

.checkout__address-label {
    font-size: var(--text-font-size);
    cursor: pointer;
    padding: var(--block-default-padding);
    border: 1px solid var(--color-cinza-escuro);
    background-color: #f3f3f3;
    margin: 0 0 calc(var(--elements-gap) / 2);
}

.checkout__address-label label {
    font-size: 14px;
}

.checkout__address-label--active {
    background-color: var(--secondary-color);
    color: white;
}

.checkout__address-radio {
    display: none;
}

/*Modifiers*/
.overview__coupon--between {
    flex-direction: row;
    justify-content: space-between;
    align-items: center
}

:is(.overview__coupon-input:valid,
    .overview__coupon-input:focus,
    .overview__coupon-input:hover)~.overview__coupon-label {
    opacity: 0;
    visibility: hidden;
}



.overview__coupon-button--disabled,
.overview__coupon-button--disabled:hover {
    background-color: #f3f3f3;
    color: black;
    border-color: #f3f3f3;
}

.overview__coupon-button--disabled::before {
    content: 'Faça login para usar um cupom';
    width: 100%;

    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;

    display: flex;
    background-color: #dc6916b2;
    position: absolute;
    left: 0;
    top: -150%;
    padding: 8px;
    color: #000;
    border-radius: 5px;
}

.overview__coupon-button--disabled:hover::before {
    visibility: visible;
    opacity: 1;
}

.overview__item-quantity--bold {
    font-weight: 700;
}

.overview__item-list-heading--right {
    text-align: right;
}

.overview__button:hover {
    background-color: var(--primary-color);
}

.overview__button--disabled {
    background-color: #f3f3f3;
    color: black;
}

.overview__button--disabled:hover {
    background-color: #EAEAEA;
}

.overview__line--separator {
    margin: 16px 0;
}

.checkout__card-title--unique {
    flex: 0 0 95%;
}

.checkout__card--complete {
    background: rgb(252 252 252);
}

.checkout__card--first {
    margin-bottom: 24px;
}

.checkout__card-button--visible {
    visibility: visible;
    opacity: 1;
}

.input.password__input {
    width: 100%;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    border: 1px solid var(--color-cinza-escuro);
    padding: 16px var(--elements-gap);
    transition: border 0.3s ease-in-out;
    font-size: var(--text-font-size);
    font-family: var(--text-font);
    line-height: var(--line-height);
    font-weight: normal;
    margin: 0 0 var(--elements-gap);
}

.list-validation>.item-validation:not(:last-child) {
    margin: 0 0 calc(var(--elements-gap) / 2);
}

@media screen and (min-width: 1024px) {
    .checkout {
        flex-direction: row;
    }

    .checkout__container {
        flex: 1 1 0px;
        justify-content: flex-start;
        margin: unset;
        flex-direction: column;
        flex-wrap: nowrap;
    }
}

.cart-section {
    margin: 100px 0 !important;
}

.cart_counter {
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: #f8f8f8;
    padding: 24px;
    font-weight: bold;
    text-align: center;
    justify-content: center;
    margin-bottom: 76px;
    gap: 16px;
}

.table-head {
    border-bottom: 1px solid #dee1e1 !important;
}

.cart_counter .btn-default {
    padding: 8px 24px;
}

.table-responsive-md {
    justify-content: end;
    display: flex;
    margin: 40px 0 32px 0;
}

.table.cart-table.head {
    border-bottom: 1px solid #dee1e1;
}

/* Shopping Cart */
.qty-box .input-group {
    justify-content: center;
    align-items: center;
}

.qty-box .input-group span button {
    background: #fff;
    border: 1px solid #dee1e1;
}

.qty-box .input-group .form-control {
    text-align: center;
    width: 80px;
    flex: unset;
}

.qty-box .input-group button {
    background-color: transparent;
    border: 0;
    color: #545a57;
    cursor: pointer;
    padding-left: 12px;
    font-size: 12px;
    font-weight: 900;
    line-height: 1;
}

.qty-box .input-group button i {
    font-weight: 900;
    color: #000;
}

.qty-box .input-group .icon {
    padding-right: 0;
}

.order-history .responsive-data {
    display: none;
}

.order-history .responsive-data .price {
    margin-bottom: 2px;
}

.order-history .dark-data {
    color: black;
    font-weight: 600;
}

.cart-section .table tbody+tbody,
.wishlist-section .table tbody+tbody {
    border-top: none;
}

.cart-section .cart-buttons>div:last-child,
.wishlist-section .cart-buttons>div:last-child {
    text-align: right;
}

.cart-buttons a.btn-default {
    width: 248px;
    padding: 16px 0;
    justify-content: center;
    display: flex;
}

.cart-section .wishlist-buttons,
.wishlist-section .wishlist-buttons {
    padding-top: 35px;
    text-align: right;
}

.cart-section .wishlist-buttons:last-child a,
.wishlist-section .wishlist-buttons:last-child a {
    margin-left: 15px;
}

.cart-section .cart-table,
.wishlist-section .cart-table {
    overflow: hidden;
    margin-bottom: 0;
}

.cart-section .cart-table thead th,
.wishlist-section .cart-table thead th {
    border-top: 0;
    text-align: center;
    padding: 0 0.75rem 0.75rem 0.75rem;

    font-family: var(--text-font);
    font-weight: 500;
    font-size: 16px;
    line-height: 125%;
    text-align: center;
    color: var(--primary-color);
}

.cart-section tbody h2,
.wishlist-section tbody h2 {
    margin-bottom: 0;
}

.cart-section tbody tr td,
.wishlist-section tbody tr td {
    min-width: 190px;
    vertical-align: middle;
    color: #545a57;
    border-top: 0;
    border-bottom: 1px solid #dee1e1 !important;
    text-align: center;
    line-height: 20px;
}

.cart-section tbody tr td a,
.wishlist-section tbody tr td a,
.cart-section tbody tr td p,
.wishlist-section tbody tr td p {
    font-family: var(--text-font);
    font-size: 16px;
    line-height: 20px;
    color: #545a57;
    text-transform: capitalize;
    margin-bottom: 0;
}

.cart-section tbody tr td a img,
.wishlist-section tbody tr td a img,
.cart-section tbody tr td p img,
.wishlist-section tbody tr td p img {
    height: 90px;
    margin: 24px 0;
}

.cart-section tbody tr td .mobile-cart-content,
.wishlist-section tbody tr td .mobile-cart-content {
    display: none;
    justify-content: center;
    margin-top: 10px;
}

.cart-section tbody tr td .mobile-cart-content .qty-box,
.wishlist-section tbody tr td .mobile-cart-content .qty-box {
    border-radius: 5px;
}

.cart-section tbody tr td .mobile-cart-content .qty-box .input-group .form-control,
.wishlist-section tbody tr td .mobile-cart-content .qty-box .input-group .form-control {
    width: 48px;
    padding: 6px;
}

.cart-section tbody tr td .mobile-cart-content .col,
.wishlist-section tbody tr td .mobile-cart-content .col {
    align-self: center;
    margin-left: 10px;
    margin-right: 10px;
}

.cart-section tbody tr td .mobile-cart-content h2,
.wishlist-section tbody tr td .mobile-cart-content h2 {
    font-size: 20px;
}

.cart-section tfoot tr th,
.wishlist-section tfoot tr th {
    padding-top: 35px;
    text-align: right;
}

.cart-section tfoot tr td,
.wishlist-section tfoot tr td {
    padding-bottom: 0;
    text-align: right;
    border: none;
    font-size: 18px;
    font-family: var(--text-font);
}

.table.cart-table p.color-primary {
    font-weight: bold;
    font-size: 24px;
}

.cart-section tfoot tr td h2,
.wishlist-section tfoot tr td h2 {
    font-size: 24px;
    margin-bottom: 0;
}

.cart_counter .countdownholder span {
    padding-left: 8px;
    color: #000;
    padding-right: 6px;
}

.cart_counter .cart_checkout {
    padding: 3px 8px;
    margin-left: 10px;
}

.cart-section .row {
    flex-direction: column;
}

.cart-section .row.cart-buttons {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
}

.btn-outline {
    border-color: var(--primary-color) !important;
    color: var(--primary-color) !important;
}

.btn-outline:hover {
    background-color: var(--primary-color) !important;
    color: black !important;
}

/* Coupon */
.coupon-container {
    height: 101%;
}

/* Esconder itens em todas as resoluções */
.show-desktop {
    display: none;
}

.show-mobile {
    display: revert;
}

@media (min-width: 768px) {
    .show-desktop {
        display: revert;
    }

    .show-mobile {
        display: none;
    }
}


/* Esconder o Header */
html,
body,
#app {
    height: 100% !important;
}

#app {
    display: flex !important;
    flex-direction: column !important;
}

.navigation__categories,
.header__search,
.user_menus,
.navigation,
.footer__navigation--anchor,
.footer__logo,
.foot__description,
.hide-checkout {
    display: none !important;
}

footer.footer .footer__navigation {
    max-inline-size: 100%;
    margin-top: 24px;
}


.header__container {
    justify-content: center;
}

.footer {
    padding: 24px 0;
    min-height: auto;
}

.footer__section--first,
.footer img.seguro {
    margin: 0 auto;
}


.container-password.duble-column .container-password-double-column.mt-24 {
    margin-top: 0 !important;
}

.colored-toast.swal2-icon-error {
    background-color: #f27474 !important;
}

.colored-toast .swal2-error {
    color: white !important;
    border-color: white !important;
}

.colored-toast .swal2-x-mark-line-left,
.colored-toast .swal2-x-mark-line-right {
    background: white !important;
}

.colored-toast .swal2-title {
    font-size: var(--text-font-size) !important;
    color: white !important;
    margin: 0 0 0 16px !important;
}

.colored-toast .swal2-close {
    color: white !important;
}

.colored-toast .swal2-html-container {
    color: white !important;
    font-size: 14px !important;
    margin: 0 0 0 16px !important;
}

.colored-toast.swal2-icon-info {
    background-color: #3fc3ee !important;
}

.colored-toast .swal2-info {
    color: white !important;
    border-color: white !important;
}

.colored-toast .swal2-title,
.colored-toast .swal2-html-container,
.colored-toast .swal2-close {
    color: white !important;
}

.no-border-icon {
    border: none !important;
}

.no-border-icon img {
    mix-blend-mode: multiply;
}

.container-password {
    width: 100%;
}