﻿
#cart-detail section {
    background-color: #01191e;
    border-top: 1px solid #12292f;
}

section h3 {
    color: #00ff7a;
}

#cart-detail ul {
    display: grid;
    padding: 4rem 1rem;
    transition: all 0.3s;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    width: 80%;
    margin: 0 auto;
}

#cart-detail ul li {
    flex: 0 1 23%;
    margin: 2%;
    position: relative;
    justify-content: space-between;
}

.cart-item-u > * {
    flex: 1 1 0;
    position: relative;
    padding: 10px 10px 10px 0;
}

.thumbs-container {
    position: relative;
    overflow: hidden;
    height: 18vh;
    min-height: 170px;
    cursor: pointer;
    border-radius: 10px;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
}

.thumbs-container img {
    height: auto;
    width: 100%;
}

.info h3 {
    color: #fff;
    font-size: 1rem;
    line-height: 1.2rem;
    margin-bottom: 0.5rem;
}

.info > div {
    position: relative;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
}

.item-price-original {
    font-size: .9rem;
    line-height: .9rem;
    text-decoration: line-through;
    color: #adadad;
    display: block;
}

.item-price-current {
    color: #fff;
    white-space: nowrap;
    font-family: 'Metropolis', sans-serif;
}

.remove-item {
    position: absolute;
    top: 5px;
    right: 5px;
    margin: 0;
    background: #12292f;
    padding: 10px;
    cursor: pointer;
    border-radius: 10px;
}

.remove-item img {
    position: relative;
    height: initial;
}

.info {
    justify-content: space-between;
    display: flex;
    flex-direction: column;
    padding: 10px;
}

.total > div {
    padding: 30px 15% 60px 15%;
    text-align: center;
    margin: 0 auto;
}

@media (max-width: 1600px) {
    .total > div {
        padding: 60px 10%;
    }
}

.total p:not(.save) {
    margin-bottom: 10px;
}

.total p:not(.save) bold {
    font-size: 2.4rem;
    font-weight: 600;
    color: #fff;
    font-family: 'Metropolis', sans-serif;
}

.total p.save {
    color: #7d9099;
    margin: 10px auto 30px auto;
    text-align: left;
    margin: 2rem auto 3rem auto;
}

.total a {
    width: fit-content;
    padding: 20px 80px;
    font-family: 'Metropolis', sans-serif;
    font-size: 1.4rem;
    text-transform: uppercase;
    background-color: #00ff7f;
    color: #12292f;
    display: block;
    position: relative;
    z-index: 2;
    margin: 2rem auto 0 auto;
    border-radius: 10px;
}

.total a:after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: url(/assets/images/icons/arrow-dark.png) center center no-repeat;
    background-size: contain;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    margin-left: .5rem;
}

.empty-bag {
    width: 100%;
    display: block;
    padding: 10vh 0%;
}

.empty-bag > * {
    padding: 0vh 15%;
}

.fadeOut-center {
    animation: fadeOut-center 0.3s ease-in-out;
}
