.cart-dropdown.dont-show-this {
    display: none;
}

.cart-dropdown {
    padding: 0;
    border: none;
    background-color: white;
    position: absolute;
    right: 0px;
    top: 45px;
    width: 400px;
    z-index: 999;
    border-radius: 6px;
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.1);
    -moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.1);
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.1);
}

.close-shop-bag {
    position: absolute;
    top: 45%;
    right: 0px;
    transform: translate(0%, -50%);
    background-color: transparent;
    width: 30px;
    height: 30px;
    border-radius: 0%;
    text-align: center;
    line-height: 36px;
    cursor: pointer;
}

.close-shop-bag i {
    color: gray;
    font-size: 19px !important;
    margin: 0;
}

.cart-dropdown .cart-dropdown-title {
    position: relative;
    padding: 15px 10px 15px 10px;
    border-bottom: 1px solid rgba(211, 211, 211, 0.3);
}

.cart-dropdown .product-row .img {
    width: 10%;
}

.cart-dropdown .product-row .name {
    width: 57%;
}

.cart-dropdown .product-row .product-quantity {
    width: 20%;
    padding-right: 0 !important;
}

.cart-dropdown .product-row .action {
    width: 6%;
    text-align: right;
}

.cart-dropdown .cart-dropdown-title h4 {
    color: #28282B;
    position: relative;
    margin-bottom: 10px;
    text-align: left;
    font-size: 16px;
    font-weight: bold;
}

.cart-dropdown .cart-dropdown-title h4::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: auto;
    height: 1px;
    background-color: lightgray;
    display: none;
}

.cart-dropdown .sub-total {
    position: relative;
    padding: 20px 10px 1px 10px;
    justify-content: space-between;
}

.cart-dropdown .sub-total::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: lightgray;
}

.cart-dropdown .sub-total p {
    font-size: 15px;
    font-weight: 500;
    text-transform: capitalize;
}

.cart-dropdown .sub-total h4 {
    font-size: 15px;
}
.cart-dropdown .proceed-button {
    margin: 0 12px 10px 12px;
}
.cart-dropdown table .product-row {
    margin-bottom: 5px;
    display: block;
    width: 100%;
    position: relative;
    display: flex;
}

.cart-dropdown table .product-row img {
    height: 40px;
    width: 40px;
}

.cart-dropdown table .product-row .name {
    padding: 0 0 0 5px;
}

.cart-dropdown table .product-row .name h6 {
    font-size: 12px;
}

.cart-dropdown table .product-row .name p {
    font-weight: 500;
    font-size: 12px;
}

.cart-dropdown table .product-row i {
    font-size: 12px;
    margin-right: 0;
}

.cart-dropdown table .product-row .action a {
    margin-left: 1px;
}

.cart-dropdown table .product-row .action a i {
    transition: 0.4s;
    margin-top: 3px;
    margin-right: 5px;
}

.cart-dropdown table .product-row .action a:hover i {
    color: red !important;
    transform: scale(1.2);
}

.cart-dropdown table .product-row .product-quantity {
    padding: 0 3px;
}

.cart-dropdown table td {
    border: none;
    padding: 0;
}

.cart-dropdown .cart-dropdown-body .cart-table-container.side-scroll{
    height: 60vh;
    overflow-y: scroll;
    padding: 10px;
}
.cart-dropdown .form-button button {
    width: 100%;
    height: 40px;
    font-size: 14px;
    font-weight: 500;
    line-height: 40px;
    border-radius: 6px;
    margin-top: 5px;
    letter-spacing: 0.3px;
    text-align: center;
    text-transform: capitalize;
    color: var(--white);
    background: var(--primary);
    border: 1px solid var(--primary);
    border-style: none !important;
}

/* NEW CART CSS */
.cart-item .action {
    /* position: absolute;
    right: 0;
    top: 0; */
}

.cart-item .action button {
    background: none;
    border: none;
    transition: 0.4s;
}

.cart-item .action button:hover i {
    color: red;
}

.cart-item .product-cart-info {
    width: 85%;
    display: flex;
    justify-content: space-between;
}

.cart-item .product-cart-info .cart-info {
    margin: 0 5px;
    width: 75%;
}

.my-cart.cart-item .product-cart-info .cart-info h6 {
    font-size: 13px;
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    white-space: revert;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    text-overflow: ellipsis;
    color: var(--matte-black);
    -webkit-box-orient: vertical;
}

.cart-item .product-cart-info .cart-info h6 span {
    font-size: 10px !important;
}

.cart-item .product-cart-info .cart-info p {
    font-size: 12px;
}

.cart-item .product-cart-info .cart-action-group {
    width: 21%;
}

.qty-plus:focus {
    outline: none !important;
}

.cart-item .product-cart-info .product-action .qty-plus {
    border: 1px solid lightgray;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    line-height: 22px;
}

.qty-minus:focus {
    outline: none !important;
}

.cart-item .product-cart-info .product-action .qty-minus {
    border: 1px solid lightgray;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    line-height: 22px;
}

.cart-item .product-cart-info .product-action .action-input-quantity {
    background: var(--primary);
    text-align: center;
    color: white;
    border: none;
    font-size: 13px;
    width: 22px;
    height: 22px;
    line-height: 22px;
}

.cart-item .product-cart-info .product-action {
    display: flex;
}