table .fa {
    font-size: 1.5rem;
}
table thead {
    color: white;
    background-color: var(--primary);
}
table td{
    text-align: center
}
table thead th {
    padding: 15px 0px;
}
table tbody tr:nth-child(even) {
    background-color: #f7f7f7a6;
}
.paginate_button a {
    border-radius: 0px !important;
}
#cartTable_wrapper .row:nth-child(1) {
    all: unset;
    display: flex;
}
.productCart {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    cursor: pointer;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.cartTableDiv {
    box-shadow: 1px 1px 5px grey;
    border-radius: 3px;
    max-width: 1140px;
    margin: auto;
    background-color: white;
}
#cartTable {
    width: 100%;
    border-radius: 3px;
    margin-bottom: 10px;
}
.tableChangeQuantityContainer{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 120px
}
.cartProductQuantitySpan{
    width: 10px;
    display: flex;
    justify-content: center;
}
.productCart i,
.productCart svg {
    position: absolute;
    top: 10px;
    font-size: 1rem;
    background-color: #00a8a9;
    fill: white;
    border-radius: 100%;
    padding: 5px;
    left: 40%;
    right: 0%;
    margin: auto;
}
.productCart:hover .fa,
.productCart:hover svg {
    color: #96c93d;
}
.productDelete:hover {
    color: #e12726;
}
.productCart img {
    height: 100px;
    object-fit: scale-down;
}
.dtr-data {
    width: 100px;
    display: inline-block;
}

.dtr-data i {
    width: 100%;
    height: 100%;
}
.productDelete {
    width: 100%;
    height: 100%;
    min-height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.cartTotalAndUserContainer {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 1rem;
    position: relative;
}
.anchorTarget {
    position: absolute;
    height: 50px;
    opacity: 0;
    z-index: -50;
    top: -250px;
}
.cartPriceInfo{
    width: 100%;
    flex: 1;
}
.cartTotalContainer {
    position: relative;
    width: 100%;
    min-height: 70px;
    border-radius: 3px;
    box-shadow: 1px 1px 5px grey;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: white;
    flex: 1;
    margin-bottom: 10px;

}

.cartTotalTitle {
    font-size: 1.5rem;
    padding: 0 15px;
    white-space: nowrap;
}
.cartTotalTitle .fa{
    cursor: initial;
}
.cartUserContainer {
    flex: 2;
    position: relative;
    background-color: white;
    width: 100%;
    min-height: 350px;
    border-radius: 3px;
    box-shadow: 1px 1px 5px grey;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    justify-content: center;
    align-items: center;
    padding: 25px 0px;
    overflow: hidden;
}
.userInfo12 {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}
.userInfo1,
.userInfo2 {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
    justify-content: center;
    align-items: center;
}
.shippingAmountHint .langToolTip{
    transition: all 0s;
}
.infoHint{
    font-size: 0.7rem
}
.forReview .cartUserContainer .cmInputContainer {
    max-width: 90%;
}
table {
    table-layout: fixed;
}
.deleteForMobile{
    display: none;
    position: absolute
}
@media screen and (max-width: 1000px) {
    .cartTotalAndUserContainer {
        flex-direction: column-reverse;
        align-items: center;
    }
}
@media screen and (max-width: 600px) {
    .deleteForMobile{
        display: block;

    }
    .productCart img{
        display: none;
    }
    .productDeleteColumn{
        width:30px;
    }
    .cartTotalTitle {
        flex: unset;
    }
    .cartTotalContainer {
        gap: 1rem;
    }
    .userInfo12,
    .userInfo1,
    .userInfo2 {
        flex-direction: column;
    }
    .cartTableDiv,
    .cartTotalAndUserContainer {
        gap: 1rem;
        margin: auto;
    }

    #cartTable_wrapper .row:nth-child(1) div {
        all: unset;
    }

    .cartTotalAndUserContainer .cmInputContainer {
        width: 90%;
    }
}
