icon-shape {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    vertical-align: middle;
}

.icon-sm {
    width: 2rem;
    height: 2rem;

}
.add-to-cart {
    --color: #fff;
    --icon: var(--color);
    --cart: #fff;
    --dots: #fff;
    --background: #2FA468;
    --shadow: rgba(0, 9, 61, 0.16);
    cursor: pointer;
    position: relative;
    outline: none;
    border: none;
    -webkit-appearance: none;
    -webkit-tap-highlight-color: transparent;
    font-size: 16px;
    border-radius: 7px;
    padding: 12px 32px;
    font-weight: 500;
    line-height: 20px;
    transform: scale(var(--s, 0.97));
    box-shadow: 0 var(--s-y, 4px) var(--s-b, 12px) var(--shadow);
    color: var(--color);
    background: var(--background);
    width: 100%;
    transition: transform 0.3s, box-shadow 0.3s;
}
.add-to-cart .default {
    padding: 10px;
    position: relative;
    opacity: var(--o, 1);
    transform: scale(var(--s, 1));
    transition: transform 0.3s, opacity 0.3s;
    transition-delay: var(--d, 0.3s);
}
.add-to-cart .default:before, .add-to-cart .default:after {
    width: 2px;
    height: 12px;
    left: 0;
    top: 4px;
    border-radius: 1px;
    background: var(--icon);
    position: absolute;
    transform: rotate(var(--r, 0deg));
    transition: transform 0.25s;
}
.add-to-cart .default:after {
    --r: 90deg;
}
.add-to-cart .success {
    opacity: var(--o, 0);
    transform: translate(-50%, var(--y, 12px));
    position: absolute;
    top: 12px;
    left: 50%;
    transition: opacity 0.3s, transform 0.3s;
    transition-delay: var(--d, 0s);
}
.add-to-cart .dots {
    width: 4px;
    height: 4px;
    top: 20px;
    left: 50%;
    margin-left: -7px;
    border-radius: 2px;
    position: absolute;
    transform-origin: 10px 50%;
    background: var(--dots);
    box-shadow: 5px 0 0 var(--dots), 10px 0 0 var(--dots);
    opacity: var(--o, 0);
    transform: scale(var(--s, 0.4));
    transition: opacity 0.3s, transform 0.3s;
    transition-delay: var(--d, 0s);
}
.add-to-cart .cart {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    border-radius: inherit;
    overflow: hidden;
    -webkit-mask-image: -webkit-radial-gradient(white, black);
}
.add-to-cart .cart:before {
    content: "";
    position: absolute;
    width: 20px;
    height: 16px;
    background: var(--background);
    top: 17px;
    right: 100%;
    z-index: 1;
    margin-right: -20px;
    transform: translateX(-18px) rotate(-16deg);
}
.add-to-cart .cart > div {
    top: 13px;
    right: 100%;
    transform: translateX(-18px) rotate(-16deg);
    position: absolute;
    z-index: 2;
    transform-origin: 1px 21px;
}
.add-to-cart .cart > div:before, .add-to-cart .cart > div:after {
    content: "";
    position: absolute;
    top: var(--t, 4px);
    left: var(--l, 0);
    height: 2px;
    width: var(--w, 18px);
    background: var(--cart);
    border-radius: 1px;
}
.add-to-cart .cart > div:after {
    --w: 16px;
    --t: 14px;
    --l: 1px;
}
.add-to-cart .cart > div > div {
    width: 2px;
    height: var(--h, 15px);
    border-radius: 1px;
    transform: rotate(var(--r, -8deg));
    background: var(--cart);
    position: relative;
}
.add-to-cart .cart > div > div:before, .add-to-cart .cart > div > div:after {
    content: "";
    position: absolute;
    background: inherit;
}
.add-to-cart .cart > div > div:after {
    width: 4px;
    height: 4px;
    border-radius: 2px;
    bottom: var(--b, -6px);
    left: var(--l, 0);
}
.add-to-cart .cart > div > div:first-child:before {
    border-radius: inherit;
    top: 0;
    right: 0;
    height: 2px;
    width: 6px;
    transform-origin: 5px 1px;
    transform: rotate(16deg);
}
.add-to-cart .cart > div > div:last-child {
    --h: 12px;
    --r: 8deg;
    position: absolute;
    left: 16px;
    bottom: -1px;
}
.add-to-cart .cart > div > div:last-child:after {
    --l: -2px;
    --b: -5px;
}
.add-to-cart.added .default {
    --o: 0;
    --s: .8;
    --d: 0s;
}
.add-to-cart.added .default:before {
    --r: -180deg;
}
.add-to-cart.added .default:after {
    --r: -90deg;
}
.add-to-cart.added .dots {
    --o: 1;
    --s: 1;
    --d: .3s;
    -webkit-animation: dots 2s linear forwards;
    animation: dots 2s linear forwards;
}
.add-to-cart.added .success {
    --o: 1;
    --y: 0;
    --d: 1.8s;
}
.add-to-cart.added .cart:before, .add-to-cart.added .cart > div {
    -webkit-animation: cart 2s forwards;
    animation: cart 2s forwards;
}
.add-to-cart:not(.added):hover {
    --s: 1;
    --s-y: 8px;
    --s-b: 20px;
}
.add-to-cart:not(.added):active {
    --s: .94;
    --s-y: 2px;
    --s-b: 6px;
}

@-webkit-keyframes cart {
    41%, 49%, 57%, 60% {
        transform: translateX(72px) rotate(0deg);
    }
    40%, 47%, 54% {
        transform: translateX(72px) rotate(0deg) translateY(1px);
    }
    100% {
        transform: translateX(180px) rotate(-16deg);
    }
}

@keyframes cart {
    41%, 49%, 57%, 60% {
        transform: translateX(72px) rotate(0deg);
    }
    40%, 47%, 54% {
        transform: translateX(72px) rotate(0deg) translateY(1px);
    }
    100% {
        transform: translateX(180px) rotate(-16deg);
    }
}
@-webkit-keyframes dots {
    5% {
        transform: translateY(0);
    }
    25% {
        transform: translateY(-20px) rotate(-32deg);
        box-shadow: 5px 0 0 var(--dots), 10px 0 0 var(--dots);
    }
    31% {
        box-shadow: 5px -4px 0 var(--dots), 10px -8px 0 var(--dots);
    }
    32%, 50% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
    }
    45%, 100% {
        box-shadow: 5px 0 0 var(--dots), 10px 0 0 var(--dots);
    }
    51%, 100% {
        opacity: 0;
    }
}
@keyframes dots {
    5% {
        transform: translateY(0);
    }
    25% {
        transform: translateY(-20px) rotate(-32deg);
        box-shadow: 5px 0 0 var(--dots), 10px 0 0 var(--dots);
    }
    31% {
        box-shadow: 5px -4px 0 var(--dots), 10px -8px 0 var(--dots);
    }
    32%, 50% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
    }
    45%, 100% {
        box-shadow: 5px 0 0 var(--dots), 10px 0 0 var(--dots);
    }
    51%, 100% {
        opacity: 0;
    }
}

.product-box {
    position: relative;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    vertical-align: middle;
}

.product-style-4.product-box {
    padding: 10px;
    border-radius: 7px;
    border: 1px solid #f1f1f1;
}

.product-style-4.product-box  {
    background-color: #fff;
}

.product-box .img-wrapper  {
    position: relative;
    overflow: hidden;
    z-index: 0;
}

.product-box .product-info  {
    padding-left:   5px;
    margin-top:  0;
    padding:  0;
    text-align:  center;
    position:  relative;
}

.product-style-4.product-box .product-info  {
    text-align: left;
    margin-top: 10px;
}

.product-box .img-wrapper .front  {
    opacity: 1;
    top: 0;
    left: 0;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.product-box .cart-detail  {
    position: absolute;
    top: 15px;
    right: 20px;
    opacity: 0;
}

.product-style-4.product-box .cart-detail  {
    top: 5px;
    right: 5px;
}

.product-box:hover .cart-detail  {
    opacity: 1;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

a {
    color:  #0d6efd;
    text-decoration:  none;
    -webkit-transition: 0.5s ease;
    transition: 0.5s ease;
}

a:hover {
    color:  #0a58ca;
    text-decoration: none;
    -webkit-transition: 0.5s ease;
    transition: 0.5s ease;
}

h5 {
    margin-top:   0;
    margin-bottom:   .5rem;
    font-weight:  400;
    line-height:  24px;
    font-size:  16px;
    color: #222;
    letter-spacing: 0.05em;
}

.product-style-4.product-box .product-info h5  {
    margin-top: 6px;
    margin-bottom: 3px;
    font-size: 14px;
}

h4 {
    margin-top:  0;
    margin-bottom:  .5rem;
    font-weight:  500;
    line-height:  1.2;
    font-size: calc(1.275rem + .3vw);
}

@media (min-width: 1200px){
    h4 {
        font-size: 1.5rem;
    }
}

h4 {
    font-size: 18px;
    text-transform: capitalize;
    font-weight: 400;
    letter-spacing: 0.03em;
    line-height: 1;
}

.product-box .product-info h4  {
    font-size: 14px;
    color: #222;
    font-weight: 700;
    margin-bottom: 0;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    line-height: 1.7;
    height: 50px;
    overflow: hidden;
}

.blur-up {
    -webkit-filter: blur(5px);
    filter: blur(5px);
    transition: filter 400ms, -webkit-filter 400ms;
}

.blur-up.lazyloaded {
    -webkit-filter: blur(0);
    filter: blur(0);
}



.product-style-4.product-box .cart-detail a  {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

h6 {
    margin-top:   0;
    margin-bottom:   .5rem;
    font-weight:  400;
    line-height:  24px;
    font-size:  14px;
    color: #777;
}

.product-box .product-info h6  {
    line-height: 1;
    margin-bottom: 0;
    padding-top: 2px;
    padding-bottom: 5px;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    font-size: 16px;
    text-transform: capitalize;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.product-style-4.product-box .product-info h6  {
    font-weight: 500;
}

button {
    border-radius:     0;
    margin:    0;
    font-family:    inherit;
    font-size:    inherit;
    line-height:    inherit;
    text-transform:   none;
    -webkit-appearance:  button;
    cursor: pointer;
}

button:not(:disabled) {
    cursor: pointer;
}

.product-style-4.product-box .addtocart_btn .add_cart  {
    position: absolute;
    right: 0;
    bottom: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: none;
    background-color: var(--theme-color);
    color: white;
    width: 26px;
    height: 26px;
    font-size: 14px;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 3px;
}

.product-style-4.product-box .addtocart_btn .cart_qty  {
    width: 100%;
}

.product-style-4.product-box .addtocart_btn .cart_qty.qty-box  {
    position: absolute;
    bottom: 0;
    display: none;
    right: -12px;
}

img {
    vertical-align: middle;
}

.img-fluid {
    max-width: 50%;
    height: 120px;
    object-fit: cover;
}

[class^="ti-"] {
    font-family: 'themify';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.product-box .cart-detail i  {
    color: #6f6f6f;
    font-size: 18px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-top: 8px;
    padding-bottom: 8px;
}

.product-style-4.product-box .cart-detail a i  {
    color: var(--theme-color);
    font-size: 14px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-top: 8px;
    padding-bottom: 8px;
    background-color: #fff;
    padding: 6px;
    border-radius: 100%;
    margin-bottom: 5px;
    border: 1px solid #ddd;
}

.ti-heart:before {
    content: "\e634";
}

.ti-search:before {
    content: "\e610";
}

.ti-reload:before {
    content: "\e619";
}

.fa {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.fa-plus:before {
    content: "";
}

.input-group {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    width: 100%;
}

.qty-box .input-group  {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.product-style-4.product-box .addtocart_btn .cart_qty.qty-box .input-group  {
    width: 52%;
    margin-left: auto;
    margin-right: 12px;
    border-radius: 3px;
    overflow: hidden;
}

button,[type="button"] {
    -webkit-appearance: button;
}

.btn {
    display:  inline-block;
    font-weight:  700;
    line-height:  20px;
    color:  #212529;
    text-align:  center;
    text-decoration:  none;
    vertical-align:  middle;
    cursor:  pointer;
    -webkit-user-select:  none;
    -moz-user-select:  none;
    -ms-user-select:  none;
    user-select:  none;
    background-color:  transparent;
    border:  1px solid transparent;
    padding:  .375rem .75rem;
    font-size:  14px;
    border-radius:  0;
    -webkit-transition:  0.3s ease-in-out;
    transition:  0.3s ease-in-out;
    transition:  0.3s ease-in-out;
    transition:  0.3s ease-in-out;
    text-transform: uppercase;
}

button:not(:disabled),[type="button"]:not(:disabled) {
    cursor: pointer;
}

.input-group .btn  {
    position: relative;
    z-index: 2;
}

.qty-box .input-group button  {
    background-color: transparent;
    border: 0;
    color: #777;
    cursor: pointer;
    padding-left: 12px;
    font-size: 12px;
    font-weight: 900;
    line-height: 1;
}

.input-group:not(.has-validation) > :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu)  {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.product-style-4.product-box .addtocart_btn .cart_qty.qty-box .input-group button  {
    background: var(--theme-color) !important;
    position: absolute;
    height: 100%;
    z-index: 9;
}

.product-style-4.product-box .addtocart_btn .cart_qty.qty-box .input-group button.quantity-left-minus  {
    left: 0;
}

.btn:hover {
    color:  #212529;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

input {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

.form-control {
    display:  block;
    width:  100%;
    padding:  .375rem .75rem;
    font-size:  1rem;
    font-weight:  400;
    line-height:  1.5;
    color:  #212529;
    background-color:  #fff;
    background-clip:  padding-box;
    border:  1px solid #ced4da;
    -webkit-appearance:  none;
    -moz-appearance:  none;
    appearance:  none;
    border-radius:  0;
    -webkit-transition:  border-color 0.15s ease-in-out,-webkit-box-shadow 0.15s ease-in-out;
    transition:  border-color 0.15s ease-in-out,-webkit-box-shadow 0.15s ease-in-out;
    transition:  border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out;
    transition:  border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out,-webkit-box-shadow 0.15s ease-in-out;
}

.input-group > .form-control  {
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    width: 1%;
    min-width: 0;
}

.qty-box .input-group .form-control  {
    text-align: center;
    width: 80px;
    -webkit-box-flex: unset;
    -ms-flex: unset;
    flex: unset;
}

.input-group > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback)  {
    margin-left: -1px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.product-style-4.product-box .addtocart_btn .cart_qty.qty-box .input-group .form-control  {
    width: 100%;
    border-color: var(--theme-color);
    color: #fff;
    padding: 0;
    background-color: var(--theme-color);
}

.product-style-4.product-box .addtocart_btn .cart_qty.qty-box .input-group button.quantity-right-plus  {
    right: 0;
}

.qty-box .input-group button i  {
    font-weight: 900;
    color: #222;
}

.product-style-4.product-box .addtocart_btn .cart_qty.qty-box .input-group button i  {
    color: #fff;
}

.fa-minus:before {
    content: "";
}



