#cart {
    position: relative;
}

#cart .container-content {
    gap: 15px;
    position: relative;
}

#cart .items,
.productsView {
    position: relative;
}

#cart .items .content,
.productsView {
    gap: 10px;
}

#cart .footer {
    width: 300px;
}

#cart .footer .totals {
    top: 70px;
    position: sticky;
}

.step2 .prices .s1,
#cart .footer .prices .s1 {
    font-size: 13px;
    color: #969696;
}

#cart .shippingFree,
.step2 .prices .discounts b,
#cart .footer .prices .discounts b {
    color: #1dab22;
}

#cart .footer .conditions {
    color: #1dac22;
    font-size: 14px;
    text-align: right;
}

#cart .items .content .noItems,
.productsView .noItems {
    flex: auto;
}

#cart .items .content .item *,
.productsView .item * {
    font-size: 15px;
}

#cart .items .content .item .containerImg,
.productsView .item .containerImg {
    position: relative;
    overflow: hidden;
    width: 60px;
    height: 60px;
    /* border: 1px solid #dee2e6;
    border-radius: 7px; */
    margin: 0 10px 0 0;
    flex: none;
}

#cart .items .content .item,
.productsView .item {
    padding: 10px;
    border-radius: 7px;
}

#cart .items .content .item .qtyChange,
.productsView .item .qtyChange {
    width: 100px;
}

#cart .items .content .item .prices,
.productsView .item .prices {
    width: 120px;
    text-align: right;
}

#cart .items .content .item .prices .old,
.productsView .item .prices .old {
    text-decoration: line-through;
    color: #969696;
    font-size: 12px;
    text-align: right;
}

#cart .items .content .item .attribute,
.productsView .item .attribute {
    gap: 5px;
}

#cart .items .content .item .attribute *,
.productsView .item .attribute * {
    font-size: 13px;
}

#cart .items .content .item .containerImg img,
.productsView .item .containerImg img {
    width: 100%;
    max-width: 100%;
    height: auto;
}

@media(max-width: 768px) {
    #cart .items .content .item .title {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        width: 180px;
    }
}

.productsView .item .title {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 180px;
}

#cart .coupon,
#cart .calcShipping {
    position: relative;
}

#cart .coupon .btn,
#cart .calcShipping .cep .btn {
    border-color: #ced4da;
}

#cart .loaderFreightContainer,
#cart .loaderCouponContainer,
#cart .loaderContainer {
    position: absolute;
    z-index: 1;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgb(255 255 255 / 82%);
}

#cart .loaderFreightContainer .loader,
#cart .loaderCouponContainer .loader,
#cart .loaderContainer .loader {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
}

.finish {
    background: #1dab22;
    color: #fff;
}

.finish:hover {
    opacity: 0.7;
}

#cart .freight label {
    margin: 0;
}

#cart .freight input {
    margin: 0;
    position: relative;
}

#cart .freight .cep {
    margin: 0 0 5px 0;
}

#cart .freight .items {
    gap: 5px;
}

#cart .freight .items * {
    font-size: 13px;
}

.userLogin .btn {
    background: var(--primary-background-color);
    color: var(--primary-background-text-color);
}

#payment .item .content {
    overflow: hidden;
    margin: 0px;
    display: none;
}

#payment .item.open .content {
    display: block !important;
    padding: 10px;
}

#payment .item>label {
    margin: 0;
    cursor: pointer;
    padding: 5px 10px;
    background: #f0f0f0;
    border-bottom: 1px solid rgba(0, 0, 0, .125);
}

#payment .item>label .newPrice {
    color: #1dab22;
    font-size: 15px;
}

#payment .item input {
    margin: 0;
    position: relative;
}

#payment .item.pix svg {
    fill: #35beaf;
    width: 30px;
    margin: 0 0 0 10px;
}

#payment .item.creditCard svg {
    width: 30px;
    margin: 0 0 0 10px;
}

#payment .item.creditCard .st0 {
    fill: #2B79C2;
}

#payment .item.creditCard .st1 {
    fill: #3B4652;
}

#payment .item.creditCard .st2 {
    fill: #333333;
}

#payment .pix h6 {
    text-align: center;
    font-weight: bold;
}

#payment .pix .qr {
    display: flex;
    justify-content: center;
}

#payment .pix .qr img {
    width: 80%;
}

#payment .pix .code {
    margin: 15px 0;
}

#payment .pix ol {
    padding: 0 0 0 20px;
    margin: 0;
}

#payment .pix>p {
    text-align: center;
}

#payment .pix .content>input {
    width: 100%;
    font-size: 15px;
    color: #6a6a6a;
    border: 0;
}

.orderPaid {
    border-top: 100px solid rgb(116, 172, 26);
    position: relative;
    text-align: center;
}

.orderPaid svg {
    background: #fff;
    margin: -60px auto 20px auto;
    padding: 20px;
    border-radius: 50%;
    fill: rgb(116, 172, 26);
    width: 120px;
}

.orderPaid.processing {
    border-top: 100px solid #ffa907;
}

.orderPaid.processing svg {
    background: #fff;
    fill: #ffa907;
}

#payment .security_mp {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 0 0 5px 0;
}

#payment .security_mp svg {
    width: 35px !important;
    height: 24px;
    margin: 0 !important;
}