﻿.product-card {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-bottom: 25px;
    padding: 15px 18px;
    border-radius: 8px;
    background: #fff;
    border: 1px solid #ddd;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
    /*background-image: linear-gradient(-2deg, #fff 0%, #f4911d 98%);*/
    /*background-image: linear-gradient(190deg, #fff 0%, #78a22f 98%);*/
    box-shadow: 0px 8px 15px 0px rgba(0, 0, 0, 0.1);
}

.product-card:hover {
    border-color: #e7e7e7;
    -webkit-box-shadow: 0px 8px 15px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 8px 15px 0px rgba(0, 0, 0, 0.1);
}

.product-media {
    position: relative;
    text-align: center;
}

.product-label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: absolute;
    top: 0px;
    left: 0px;
}

.label-text.sale {
    /* background: var(--orange); */
    background: #78a22f;
}

.label-text.sale {
    background: #00718f;
}

.product-image img {
    padding-bottom: 15px;
}

.label-text {
    background: #f4911d;
}

.label-text {
    font-size: 14px;
    padding: 5px 8px;
    line-height: 13px;
    border-radius: 3px;
    margin-bottom: 5px;
    color: #fff;
    text-align: center;
    text-transform: capitalize;
}

.product-wish {
    position: absolute;
    top: 0px;
    right: 0px;
    font-size: 18px;
    color: #cccccc;
    border: none;
    background: none;
}
.product-image img {
    width: 175px;
    height: 175px;
    object-fit: contain;
}
.product-widget {
    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;
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100%;
    opacity: 0;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

    .product-widget a {
        width: 40px;
        height: 40px;
        font-size: 15px;
        margin: 0px 6px;
        line-height: 40px;
        text-align: center;
        border-radius: 8px;
        color: #fff;
        background: #00718f;
        -webkit-box-shadow: 0px 7px 12px 0px rgba(0, 0, 0, 0.12);
        box-shadow: 0px 7px 12px 0px rgba(0, 0, 0, 0.12);
        text-decoration: none;
    }

.product-card:hover .product-widget {
    opacity: 1;
    bottom: 15px;
}

.product-content {
    padding-top: 16px;
    text-align: center;
    border-top: 1px solid #e8e8e8;
}

.product-rating {
    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;
    margin-bottom: 3px;
}

    .product-rating .active {
        color: #bc290a;
    }

    .product-rating i, .product-rating a {
        font-size: 14px;
        margin: 0px 2px;
        text-decoration: none;
        color: #ddd;
    }

    .product-rating a {
        font-family: 'SF UI Display Medium';
        color:#000;
    }

.product-add span {
    margin-left: 5px;
}

.product-name {
    margin-bottom: 3px;
    text-transform: capitalize;
}

.product-name a:hover {
    color: #000;
}
.product-name a {
    color: #000;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
    text-decoration: none;
    font-family: 'SF UI Display Medium';
    white-space: nowrap;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}

.product-price del {
    color: #bc290a;
    margin-right: 8px;
    font-family: 'SF UI Display Medium';
}

.product-price span {
    color: #000;
    white-space: nowrap;
    font-family: 'SF UI Display Medium';
}

.product-price {
    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;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
    margin-bottom: 13px;
}

.product-add {
    width: 100%;
    font-size: 16px;
    padding: 8px 0px;
    border-radius: 6px;
    text-align: center;
    text-transform: uppercase;
    color: #ffffff;
    background: #00718f;
    border: 1px solid #00718f;
    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;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
    font-family: 'SF UI Display Medium';
}

.product-action {
    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;
    display: none;
}
.product-action-show {
    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;
    /*display: none;*/
}

    .product-action input {
        width: 100%;
        font-size: 15px;
        margin: 0px 5px;
        padding: 6px 0px;
        border-radius: 0px;
        text-align: center;
        color: #fff;
        background: #00718f;
        border: unset;
    }

.product-action button i {
    width: 30px;
    height: 32px;
    font-size: 14px;
    line-height: 35px;
    border-radius: 6px;
    text-align: center;
    display: inline-block;
    color: var(--text);
    background: var(--chalk);
    text-shadow: var(--primary-tshadow);
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.wish i {
    color: #bc290a;
}

.dialoge-width {
    max-width: 100%;
    width: 1080px;
}
.view-gallery img {
    width: 100%;
}

.modal-content {
    background-color: #f7f9fa !important;
    border-radius: 20px;
}

.btn_close {
    position: absolute;
    right: -3px;
    top: -2px;
    z-index: 9;
    background-color: #c12e26 !important;
    height: 40px;
    width: 40px;
    font-size: 20px;
    border-radius: 5px;
    color: #fff;
    border: none;
}

.modal-header {
    padding: 0;
    border: unset;
}

.view-name {
    font-size: 26px;
    line-height: 34px;
    margin-bottom: 5px;
    text-transform: capitalize;
}

.view-name a {
    font-family: 'SF UI Display Medium';
    text-decoration: none;
    color: #000;
    padding-top: 25px;
    display: block;
}

.product-view {
    max-width: 95%;
    margin: auto;
}



.view-price span {
    font-size: 24px;
    font-family: 'SF UI Display Medium';
    margin-right: 15px;
}

.view-price {
    display: flex;
    align-items: center;
}

.view-desc {
    font-family: 'SF UI Display';
    font-size: 18px;

}

.slider-arrow:hover .dandik, .slider-arrow:hover .bamdik {
    visibility: visible;
    opacity: 1;
}

.dandik:hover, .bamdik:hover {
    color: #fff;
    background: #00718f;
}

.dandik {
    right: -10px;
}

.dandik, .bamdik {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 20px;
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    border-radius: 50%;
    /* color: #3E3E48; */
    color: #00718f;
    background: #fff;
    box-shadow: 0px 15px 35px 0px rgba(0, 0, 0, 0.1);
    visibility: hidden;
    opacity: 0;
    cursor: pointer;
    z-index: 1;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.view-details {
    position: relative;
    height: 100%;
}

.view-add-group {
    position: absolute;
    width: 100%;
    bottom: 20px;
}

button.action-minus, button.action-plus {
    border: unset;
}

.header-cart {
    background: #f4911d00 !important;
    color: #fff !important;
    border-radius: 0px;
    margin-left: 5px;
    font-size: 18px;
    letter-spacing: 1px;
    font-family: 'SF UI Display Medium';
    text-transform: uppercase;
    border: unset;
}


.cart-sidebar {
  position: fixed;
  top: 0px;
  right: -450px;
  width: 400px;
  height: 100vh;
  z-index: 999;
  background: #fff;
  -webkit-box-shadow: -15px 0px 25px 0px rgba(0, 0, 0, 0.15);
          box-shadow: -15px 0px 25px 0px rgba(0, 0, 0, 0.15);
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
}

.cart-sidebar.active {
  right: 0px;
}

.cart-header {
    padding: 18px 25px;
    text-align: center;
    position: relative;
    border-bottom: 1px solid #e8e8e8;
}

.cart-total {
  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;
}

.cart-total i {
  font-size: 20px;
  margin-right: 8px;
  color: #3E3E48;
}

.cart-total span {
  font-weight: 500;
  color: #3E3E48;
  text-transform: capitalize;
  font-family: 'SF UI Display Medium';
}

.cart-close {
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.cart-close i {
  width: 35px;
  height: 35px;
  font-size: 18px;
  line-height: 35px;
  border-radius: 50%;
  text-align: center;
  display: inline-block;
  color: var(--text);
  background: var(--white);
  text-shadow: var(--primary-tshadow);
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
}

.cart-close i:hover {
  color: var(--white);
  background: #3E3E48;
}

.cart-list {
    height: 100%;
    padding: 0px 15px 0 40px;
    max-height: calc(100vh - 158px);
    overflow-y: scroll;
}



.cart-item {
  padding: 15px 0px;
  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;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  border-bottom: 1px solid #e8e8e8;
}

.cart-item:hover .cart-media button {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.cart-item:last-child {
  border-bottom: none;
}

.cart-media {
    position: relative;
    margin-right: 25px;
    border: 1px solid #ccc;
    padding: 10px;
    border-radius: 5px;
}

    .cart-media a img {
        width: 75px;
        height: 75px;
        object-fit: cover;
        border-radius: 0px;
    }

.cart-media button {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  border-radius: 0px;
  background: rgba(0, 0, 0, 0.2);
  -webkit-transform: scale(0);
          transform: scale(0);
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
  border: 1px solid #ddd;
}

.cart-media button i {
  width: 32px;
  height: 32px;
  font-size: 18px;
  line-height: 32px;
  text-align: center;
  border-radius: 5px;
  display: inline-block;
  color: #bc290a;
  background: rgba(255, 255, 255, 0.9);
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
}

.cart-media button i:hover {
  color: #fff;
  background: #bc290a;
}

.cart-info-group {
  width: 100%;
}

.cart-info {
  margin-bottom: 13px;
}

.cart-info h6 {
  font-weight: 400;
  text-transform: capitalize;
}

.cart-info h6 a {
    color: #000000;
    font-family: 'SF UI Display Medium';
    text-decoration: none;
    font-size: 18px;
}

.cart-info p {
  font-size: 14px;
  font-family: 'SF UI Display Medium';
}

.cart-action-group {
  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;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.cart-action-group .product-action {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.cart-action-group .product-action button i {
  width: 20px;
    height: 20px;
    font-size: 12px;
    line-height: 20px;
    border-radius: 5px;
}

    .cart-action-group .product-action input {
        width: 45px;
        height: 27px;
        font-size: 14px;
        border-radius: 4px;
        outline: 0px;
        pointer-events: none;
        border: 1px solid #ccc;
        color: #3E3E48;
        background: var(--chalk);
    }

.cart-action-group h6 {
    font-weight: 500;
    color: #3E3E48;
    font-family: 'SF UI Display Medium';
}

.cart-footer {
  padding: 20px 15px 0px;
  text-align: center;
  -webkit-box-shadow: 0px -3px 7px 0px rgba(0, 0, 0, 0.08);
          box-shadow: 0px -3px 7px 0px rgba(0, 0, 0, 0.08);
}

.coupon-btn {
    font-weight: 500;
    margin-bottom: 20px;
    color: #063062;
    text-shadow: 2px 3px 8px rgba(0, 0, 0, 0.1);
    font-family: 'SF UI Display Medium';
    border: unset;
    background: none;
}

.cart-checkout-btn {
    padding: 10px 0px;
    border-radius: 8px;
    background: #00718f;
    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;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
    color: #fff;
    text-decoration: none;
    font-family: 'SF UI Display Medium';
}
.cart-checkout-btn:hover {
    color: #fff;
}

.cart-notify {
    font-size: 12px;
    padding: 3px 5px;
    font-family: 'SF UI Display Light';
}

.checkout-price {
    margin-left: 10px;
}



.backdrop {
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 4;
    width: 1000%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
}
.modal .product-view {
 
    margin: inherit;
}

@media(min-width:768px) and (max-width:1024px){
    .dialoge-width {
        max-width: 100%;
        width: 80%;
        margin: auto;
    }
    .view-desc {
        height: 230px;
    }
}

@media(min-width:480px) and (max-width:767px) {
    .dialoge-width {
        max-width: 100%;
        width: 80%;
        margin: auto;
    
    }
    .product-image img {
        width: 100px;
        height: 100px;
        object-fit: contain;
    }
    .view-desc {
        height: 230px;
    }
}

@media(max-width:480px){
    .dialoge-width {
        max-width: 100%;
        width: 80%;
        margin: auto;
    }
    .view-name a {
        padding-top: 0px;
    }
    .product-image img {
        width: 100px;
        height: 100px;
        object-fit: contain;
    }
    .view-desc {
        height: 230px;
    }
    .header-cart {
        margin-right: 10px;
    }
    
}

@media(max-width:480px) {
    .cart-close {
        top: 50%;
        right: 16px;
        left: auto;
    }
}


i.fa.fa-arrow-right.dandik.slick-arrow {
    right: 5px !important;
}
i.fa.fa-arrow-left.bamdik.slick-arrow {
    left: 37px !important;
}