.product-details .product-name{
    height: 38px;
}
.product-name a{
    color: #b0117e;
}
.text-truncate-2 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.product-price{
    font-size: 18px;
}
.product-price del{
    font-size: 14px;
    vertical-align: middle;
}
.product-image{
    display: block;
    height: auto;
    width: 100%;
}
.product-card {
    background-color: #fff;
    padding: 14px;
    border: none;
}
#quantity{
    min-width: 30px;
    max-width: 50px;
    align-self: center;
    padding: 0;
    margin: 0;
    background-color: #fff;
    border-color: #ced4da;
}
.product-name{
    color: #b0117e;
}
.cart-icon--side{
    height:20px;
    width:20px;
    font-size: 25px;
}
.cart-toggle--side{
    background-color: #6e2f9f;
    position: fixed;
    top: 50%;
    z-index: 999;
    right: 0;
    color: #fff;
    border-radius: 3px 0 0 3px;
    padding: 8px 10px;
    text-align: center;
    display: inline-block;
    min-width: 46px;
    margin-right: 0;
    cursor: pointer;  
    height: 46px;  
}
.cart-toggle--side:hover{
    background-color:#632a8f;
}
.cart-toggle--side:focus{
    background-color:#632a8f;
}
.cart-toggle--side__count {
    position: absolute;
    right: 30px;
    top: -9px;
    height: 20px;
    width: 20px;
    line-height: 20px;
    border-radius: 100%;
    background: #f14c49;
    color: #fff;
    font-size: 10px;
    text-align: center;
}
.cart-total{
    font-weight: 600;
}
.cart-sidenav {
    position: fixed;
    right: -350px;
    -webkit-transition: 0.5s all;
    transition: 0.5s all;
    background: #fff;
    width: 350px;
    height: 100vh;
    top: 0;
    padding: 20px;
    z-index: 2147483644;
    /* overflow-y: auto; */
    display: flex;
    flex-direction: column;
}
.cart-sidenav.active {
    right: 0;
    transition: 0.5s all;
}
.body-overlay{
    z-index: 1030;
}
.cart-sidenav .title{
    font-size: 18px;
    color: #767676;
}
.cart-sidenav .cart-close{
    font-size: 32px;
    color: #767676;
    position: absolute;
    top: 5px;
    right: 10px;
    cursor: pointer;
}
.cart-sidenav .empty-cart{
    align-items: center;
    display: flex;
    justify-content: center;
    vertical-align: middle;
    min-height: 400px;
}
.cart-item-total {
    font-weight: 600;;
}
.cart-scroll{
    flex: 1;
    overflow-y: auto;
}
.cart-items {
    overflow: hidden;
    overflow-y: auto;
    height: 100%;
    position: relative;
    list-style:none;
    padding-left:0;
    margin:0;
}
.cart-item-image{
    width: 65px;
    height: 65px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
}

.cart-sidenav .removeItem{
    align-self: start;
}
.cart-sidenav .cart-item-total-sign{
    align-self: end;
}

.cart-grand-total{
    font-size: 1.2rem;
    font-weight: 500;
    color: #b0117e;
}

.checkout-progressbar-inner{
    position: relative;
    z-index: 10;
}
.checkout-progressbar-list {
    line-height: 1;
    padding-left: 0;
}

.checkout-progressbar-list > li {
    color: #999999;
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    margin-right: 6px;
    text-transform: uppercase;
}

.checkout-progressbar-list > li::before {
    content: "";
    left: 0;
    color: #666666;
    transition: all 0.3s ease 0s;
}

.checkout-progressbar-list > li:not(:last-child):after {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: '\f054';
    font-size: 10px;
    font-family: 'FontAwesome';
    font-weight: normal;
    margin-left: 8px;
}

.checkout-progressbar-list > li > a.completed {
    color: #666666;
    cursor: default;
}
.checkout-progressbar-list > li > a {
    color: #b7b4b4;
    cursor: default;
}

.checkout fieldset:not(:first-of-type) {
    display: none;
}

.checkout-progressbar-list > li > a.active {
    color: #b0117e;
}

.checkout .prev-btn:hover, .checkout .prev-btn:focus {
    box-shadow: 0 0 0 2px white, 0 0 0 3px #616161;
}

.checkout .prev-btn {
    min-width: 100px;
    background: #616161;
    font-weight: bold;
    color: white;
    border: 0 none;
    border-radius: 0px;
    cursor: pointer;
    padding: 10px 5px;
}

.btn-neta {
    margin-top: 0;
}

.checkout-card td{
    border-top: none;
    padding: 3px 0;
}

@media only screen and (max-width: 767px){
    .order-xs-1 {
        order: 1;
    }

    .checkout-card{
        margin-top: 0px!important;
    }

    .order-xs-2 {
        order: 2;
    }
}

.col-xs-6 {
    width: 50%;
}

.price_label{
    font-weight: 700;
    font-size: 16px;
}

.product-price-2{
    font-size: 16px;
}
.product-price-2 del{
    font-size: 12px;
    vertical-align: middle;
}

.btn-primary-neta{
    background-color: #b0117e;
    border-color: #b0117e;
    color: #fff;
}
.btn-primary-neta:focus{
    box-shadow: 0 0 0 0.2rem rgb(176 17 126 / 25%)
}

.btn-primary-neta:hover{
    color: #fff;
    background-color: rgb(176 17 126 / 95%);
}

.btn-primary:hover{
    background-color: rgb(110 47 159 / 95%);
    border-color: rgb(110 47 159 / 95%);
}
.btn-primary:focus, .btn-primary:active{
    box-shadow: 0 0 0 0.2rem rgb(110 47 159 / 25%) !important;
    background-color: #6e2f9f !important;
    border-color: #6e2f9f !important;
}
#apply-coupon .input-group-append button {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}
.apply-coupon-heading {
    font-weight: 600;
    cursor: pointer;
}

.apply-coupon-heading:before {
    font-family: 'FontAwesome';
    content: "\f078";
    float: right;
    transition: all 0.5s;
    font-size: 14px;
    font-weight: 100;
}
.apply-coupon-heading.active:before {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    transform: rotate(180deg);
}