/*#cart{
    background-color: whitesmoke;
}
*/
.cart-item {
    width: 100%;
    height: fit-content;
    border-radius: 5px;
    border: 2px solid whitesmoke;
    padding: 2px;
    background-color: white;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;

    box-shadow: 1px 1px 1px 1px lightgray;
}

.cart-item > div {
    width: 100%;
}

.cart-item-header {
    height: auto;

    display: flex;
    justify-content: center;
    align-items: center;
 /*   padding: 5px;*/
    border-radius: 3px;
}

.cart-item-header > * {
    height: 100%;
}

.cart-item-header > img {
    flex-grow: 1;
    min-width: 100px !important;
    max-width: 100px !important;
    /* height: 100px !important; */
    object-fit: contain;
}

.cart-item-header > div {
    flex-grow: 2;
    padding: 0 10px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
    color: black;
}

.cart-item-header > div span.precio {
    font-weight: bold;
    color: var(--micro-primary-color) !important;
}

.cart-item-units-handler {
    width: 25vmin;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #22d1e7;
    border-radius: 20px;
    padding: 5px 0;
}

.cart-item-delete-handler {
    width: 18vmin;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #ccc;
    border-radius: 20px;
    padding: 5px 0;
    color: var(--micro-primary-color);
}

.cart-item-units-handler > button:not(.micro-btn-danger) {
    flex-grow: 1;
    border: 0;
    background-color: white;
    height: fit-content !important;
    width: fit-content;
    border-radius: 10px;
}

.cart-item-units-handler > button > i {
    font-weight: bold;
}

.cart-item-units-handler > span {
    flex-grow: 3;
}

.cart-item-units-handler > * {
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--micro-primary-color);
}

.cart-item-info {
    position: relative;
    width: 100%;
    min-height: 20vmin;
    max-height: fit-content;

    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
}

.cart-item-info::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    width: 75%;
    height: 1px;
    background-color: lightgray;
    transform: translate(-50%, 0);
}

body.isMobile .cart-item-info label {
    padding-top: 10px !important;
}

.cart-item-info textarea:focus {
    outline: none !important;
}

.cart-item-info textarea {
    width: 100%;
    border-radius: 5px;
    border: 1px solid lightgray;
    resize: horizontal;
}


.card-wrapper-footer button {
    color:black;
    border-color:white !important;
}

.card-wrapper-footer button.active {
    border-color:white !important;
    color: var(--micro-primary-color);
    font-weight: bold;
}

.card-wrapper-footer button.active > * {
    color: var(--micro-primary-color);
    font-weight: bold;
}