.profile-table-history__status .status--error {
    background-color: rgba(223, 0, 0, .1);
}

.agreement a {
    color: var(--purple);
}

.cart-profile .profile-content {
    min-height: 30vh;
}

footer {
    position: relative;
    z-index: 10;
}

.z11 {
    z-index: 11;
}

.card-detail__footer {
    box-sizing: content-box !important;
}

.cart--empty .cart__image img {
    object-fit: unset !important;
}

.tabs__nav-link.active {
    font-size: 24px;
}

.tabs__nav-link {
    font-size: 24px;
}

@media (max-width: 900px) {
    .tabs__nav-link.active {
        font-size: 20px;
    }

    .tabs__nav-link {
        font-size: 20px;
    }
}

.card-detail .btn--calc--new {
    width: 100%;
    box-sizing: border-box;
    margin: 16px 0;
    display: block;
    position: relative;
    padding: 16px 16px 16px 16px;
    background-color: var(--white);
    color: var(--dark);
    border: 0;
    font-family: var(--font-default);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px;
}

.cart-full__item-insert {
    flex: 0 0 250px;
    flex-direction: column;
    gap: 16px;
}

.quantity-wrapper {
    gap: 16px;
}

.quantity-input, .cart-full__item-insert-quantity-input {
    position: relative;
}

.quantity-input::after, .cart-full__item-insert-quantity-input::after {
    content: attr(data-unit-text);
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: #000;
    pointer-events: none;
    z-index: 1;
}

.quantity-input input, .cart-full__item-insert-quantity-input input {
    padding-right: 100px;
}

.cart-full__item-insert-quantity-input input {
    padding-right: 110px;
}

@media (max-width: 500px) {
    .quantity-input::after, .cart-full__item-insert-quantity-input::after {
        right: 80px;
    }

    .quantity-input input, .cart-full__item-insert-quantity-input input {
        padding-right: 80px;
    }
}

.card-detail__aside .amount-box {
    margin-bottom: 0px;
}

.card-detail__aside .amount-box-package {
    margin-top: 0px;
    margin-bottom: 32px;
}



.info-box .list-box {
    display: flex;
    gap: 16px;
    flex-wrap: wrap
}

.info-box .list-box .box {
    display: block;
    padding: 11px 16px;
    border: 1px solid var(--light);
    color: var(--grey);
    font-family: var(--font-default);
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
    cursor: pointer;
}

.info-box .list-box .box.active {
    border-color: var(--red);
    color: var(--dark);
    background: rgba(250,0,0,.1);
    color: var(--dark)
}

.info-box .list-box .box:hover {
    border-color: var(--red);
    color: var(--dark)
}

.info-box .box-price {
    position: absolute;
    opacity: 0;
    visibility: hidden;
}

.amount-box + .quantity-wrapper {
    margin-top: 32px;
}

.image img {
    width: 100%;
    height: auto;
}
/* Delivery Map Styles */
.delivery-map {
    position: relative;
    width: 100%;
    max-width: max-content;
    margin: 30px auto;
    overflow: hidden;
}

.delivery-map__base {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
    z-index: 1;
}

.delivery-map__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
    z-index: 2;
    pointer-events: none;
}

.delivery-map__overlay.active {
    opacity: 1;
}

blockquote.car {
border: 0;
padding: 30px 30px 30px 260px;
border-radius: 5px;
position: relative;
background-color: #f2f6fa;
background-position: 30px 50%;
background-repeat: no-repeat;
min-height: 100px;
font-size: 16px;
line-height: 26px;
font-weight: 300;
color: #d4242c;
}