.items-row {
    display: flex;
    margin-top: 24px;
}

#item-img, .item-img {
    width: 64px;
    margin-right: 17px;
    float: left;
}

.truncate {
    max-width: 450px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media screen and (max-width: 768px) {
   .truncate {
        max-width: 250px;
    }
}

#cart-modal-content p {
    margin: 0;
}

#cart-modal-content a.view-similars {
    margin-top: 0.5rem;
    text-decoration: none;
}

#modal-content #modal-actions {
    display: flex;
    gap: 1rem;
}

#modal-content #modal-actions #popup_close {
    background: transparent;
}

#modal-content #modal-actions #popup_close:hover {
    border: none;
}

.popup-title .msg-modification {
    color: #FF5C00;
}

span#item-noStock, span.item-noStock {
    font-weight: bold;
    color: #EB003B;
}

.cart-summary button.button-text_contained {
    position: relative;
}

.loading-skeleton-container {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    padding: 0;
    border-radius: 8%;
    background: transparent !important;
}

.loading-skeleton {
    width: 100%;
    height: 100%;
    animation: loading-data 4.0s ease-in-out infinite;
    background: linear-gradient(to right,
            #fd3c3c00,
            #fd3c3c,
            #e62222,
            #fd3c3c,
            #fd3c3c00);
}

.loading-skeleton.inactive {
    display: none;
}

@keyframes loading-data {
    0% {
        transform: translateX(-100%);
    }

    50% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}
