
.cart i:not(.cart .btn i) {
    margin-right: 5px;
    color: var(--c2);
}

@media (max-width: 767px) {
    .cart p {
        font-size:14px !important;
    }

    .checkout p {
        font-size:10px !important;
        color:gray;
    }

    .cart .card-body {
        font-size:14px;
    }
}

.cart-zero  h1 {
    font-size: 80px;
    font-weight: 800;
    background: -webkit-linear-gradient(180deg, var(--c3) 70%, var(--c4) 100%);
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

.cart .cart-content {
    border-radius: 8px;
    background: white;
    border: 1px solid #ededed;
    box-shadow: 0px 1px 0px #00000014;
    position: relative;
}

.cart .card {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid #ededed;
    border-radius: 8px;
    -webkit-box-shadow: 0px 1px 0px #00000014;
    box-shadow: 0px 1px 0px #00000014;
}

.cart .card-header {
    background:transparent;
    border-bottom:unset;
    padding: 1rem;
}
.cart .card-footer {
    background: linear-gradient(45deg, rgba(255,255,255,1) 0%,rgba(249,247,255,1) 100%);
    border-top: 4px dotted #d6d0dd;
}

.cart .product-image {
    width: 150px;
    aspect-ratio: 4 / 3;
    flex-shrink: 0;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    border-radius: 8px;
    border: 1px solid #ededed;
    box-shadow: 0px 1px 0px #00000014;
}

.cart .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .2s;
    border-radius: 0px 0 15px 15px;
}


.cart .options, #productOptions .options {
    margin-left: -7.5px;
    margin-right: -7.5px;
}

.cart .options > *, #productOptions .options > *{
    padding-left: 7.5px;
    padding-right: 7.5px;
}

.cart .options span.text-big, .product .options span.text-big {
    font-size:12px;
}   
.cart .options span, .product .options span {
    font-weight:600;
    display:block;
    font-size:14px;
    margin-bottom:3px;
}

.cart .option, .product .option {
    display: flex;
    gap: 6px;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    border-radius: 8px;
    background: #ffffffb5;
    margin-bottom: 0.8rem;
    position: relative;
    transition: 0.3s;
    padding-top: 8px;
    padding-bottom: 8px;
}
@media (max-width: 767px) {
    .cart .option, .product .option { 
        margin-bottom: 0.5rem;
    }
}

.cart .option {
    background: #f3f4f9;
}

.cart .option.services {
    padding: 8px;
    background: #ebeefb;

}
.cart .option.services .text {
    width:100%;
}

.cart  .option .image, .product .option .image {
    width: 35px;
    height: 35px;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    margin-left: 8px;
}

.cart .option .image{
    cursor: text;
}


.cart .option .text, .product .option .text {
    width: calc(100% - 57px);
    font-size: 12px;
    line-height: 15px;
}

.cart .option .image img, .product .option .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .2s;
}

.cart .border-dotted-top {
    border-top: 4px dotted #d6d0dd;
}

.cart.offline{
    opacity:0.4;
    cursor:wait;
}

.cart h1 .badge, .cart h2 .badge {
    font-size: 16px;
    vertical-align: middle;
}

.cart .btn-secondary{
    background: #dee2e6;
}

.cart .form-floating > label {
    padding-right: 0.5rem;
    z-index: 99;
}

.cart .checkout .select2-container--bootstrap-5 .select2-selection {
    height: calc(3.5rem + 2px);
}

.cart .checkout .select2-container--bootstrap-5 .select2-selection--single .select2-selection__rendered {
    padding-top: 20px;
}

.cart .form-check-input:not(.cart .form-switch .form-check-input) {
    width:1.5em;
    height:1.5em;
}

.cart .form-check:not(.cart .form-switch) {
    min-height:2rem;
}
.cart .form-check:not(.cart .form-switch)  label{
    margin-left:10px;
    vertical-align: sub;
}

.cart .form-switch .form-check-input {
    width:2.5em;
    height:1.5em;
}

.cart .form-switch label {
    margin-left:10px;
    vertical-align: sub;
}