.product-cart-wrap {
    position: relative;
    background-color: #fff;
    transition: .2s;
    -moz-transition: .2s;
    -webkit-transition: .2s;
    -o-transition: .2s;
  }
  
  .product-cart-wrap:hover {
    transition: .2s;
    -moz-transition: .2s;
    -webkit-transition: .2s;
    -o-transition: .2s;
  }
  
  .product-cart-wrap .product-img-action-wrap {
    position: relative;
    background-color: #fff;
    overflow: hidden;
    max-height: 320px;
    padding: 15px 5px 0 5px;
  }
  
  .product-cart-wrap .product-img-action-wrap .product-action-1 {
    background-color: #fff;
    border-radius: 5px;
    border: 1px solid #BCE3C9;
  }
  
  .product-cart-wrap .product-img-action-wrap .product-img {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
  }
  
  .product-cart-wrap .product-img-action-wrap .product-img a {
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  
  .product-cart-wrap .product-img-action-wrap .product-img a img {
    width: 100%;
    min-height: 300px;
    object-fit: cover;
  }
  
  .product-cart-wrap .product-img-action-wrap .product-img a img.hover-img {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
    opacity: 0;
    visibility: hidden;
    transition: 0.25s opacity, 0.25s visibility, transform 1.5s cubic-bezier(0, 0, 0.2, 1), -webkit-transform 1.5s cubic-bezier(0, 0, 0.2, 1);
  }
  
  .product-cart-wrap .product-img-action-wrap .product-img-zoom a img {
    -webkit-transition: all 1.5s cubic-bezier(0, 0, 0.05, 1);
    transition: all 1.5s cubic-bezier(0, 0, 0.05, 1);
  }
  
  .product-cart-wrap .product-action-1 {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
            transform: translateX(-50%) translateY(-50%);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all .3s ease 0s;
    transition: all .3s ease 0s;
    z-index: 9;
    -webkit-box-shadow: 20px 20px 40px rgba(0, 0, 0, 0.07);
            box-shadow: 20px 20px 40px rgba(0, 0, 0, 0.07);
  }
  
  .product-cart-wrap .product-action-1.show {
    visibility: visible;
    opacity: 1;
    bottom: 26px;
    left: unset;
    right: 20px;
    top: unset;
    -webkit-transform: none;
    transform: none;
  }
  
  .product-cart-wrap .product-action-1 button, .product-cart-wrap .product-action-1 a.action-btn {
    width: 40px;
    height: 36px;
    line-height: 40px;
    text-align: center;
    position: relative;
    display: inline-block;
    border-right: 1px solid #BCE3C9;
  }
  
  .product-cart-wrap .product-action-1 button:last-child, .product-cart-wrap .product-action-1 a.action-btn:last-child {
    border: none;
  }
  
  .product-cart-wrap .product-action-1 button.small, .product-cart-wrap .product-action-1 a.action-btn.small {
    width: 32px;
    height: 32px;
    line-height: 32px;
  }
  
  .product-cart-wrap .product-action-1 button.small i, .product-cart-wrap .product-action-1 a.action-btn.small i {
    font-size: 12px;
  }
  
  .product-cart-wrap .product-action-1 button:after, .product-cart-wrap .product-action-1 a.action-btn:after {
    bottom: 100%;
    left: 50%;
    position: absolute;
    white-space: nowrap;
    border-radius: 5px;
    font-size: 11px;
    padding: 7px 10px;
    color: #ffffff;
    background-color: #232369;
    content: attr(aria-label);
    line-height: 1.3;
    -webkit-transition-delay: .1s;
    transition-delay: .1s;
    -webkit-box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.1);
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.1);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s cubic-bezier(0.71, 1.7, 0.77, 1.24), -webkit-transform 0.3s cubic-bezier(0.71, 1.7, 0.77, 1.24);
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(-50%) translateY(0px);
    transform: translateX(-50%) translateY(0px);
  }
  
  .product-cart-wrap .product-action-1 button:before, .product-cart-wrap .product-action-1 a.action-btn:before {
    content: '';
    position: absolute;
    left: calc(50% - 7px);
    bottom: 100%;
    -webkit-transition-delay: .1s;
    transition-delay: .1s;
    border: 7px solid transparent;
    border-top-color: #232369;
    z-index: 9;
    margin-bottom: -13px;
    transition-delay: .1s;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s cubic-bezier(0.71, 1.7, 0.77, 1.24), -webkit-transform 0.3s cubic-bezier(0.71, 1.7, 0.77, 1.24);
    opacity: 0;
    visibility: hidden;
  }
  
  .product-cart-wrap .product-action-1 button:last-child, .product-cart-wrap .product-action-1 a.action-btn:last-child {
    margin-right: 0;
  }
  
  .product-cart-wrap .product-action-1 button i, .product-cart-wrap .product-action-1 a.action-btn i {
    font-size: 15px;
    margin-left: 1px;
  }
  
  .product-cart-wrap .product-action-1 button:hover, .product-cart-wrap .product-action-1 a.action-btn:hover {
    color: #FDC040;
  }
  
  .product-cart-wrap .product-action-1 button:hover:after, .product-cart-wrap .product-action-1 a.action-btn:hover:after {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(-50%) translateY(-8px);
    transform: translateX(-50%) translateY(-8px);
  }
  
  .product-cart-wrap .product-action-1 button:hover:before, .product-cart-wrap .product-action-1 a.action-btn:hover:before {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }
  
  .product-cart-wrap .product-action-1 button:hover i, .product-cart-wrap .product-action-1 a.action-btn:hover i {
    color: #FDC040;
  }
  
  .product-cart-wrap .product-badges {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  
  .product-cart-wrap .product-badges.product-badges-mrg {
    margin: 0 0 10px;
  }
  
  .product-cart-wrap .product-badges.product-badges-position {
    position: absolute;
    left: 0;
    top: 0px;
    z-index: 9;
  }
  
  .product-cart-wrap .product-badges span {
    display: inline-block;
    font-size: 12px;
    line-height: 1;
    border-radius: 15px 0 20px 0;
    color: #fff;
    padding: 9px 20px 10px 20px;
  }
  
  .product-cart-wrap .product-badges span:last-child {
    margin-right: 0px;
  }
  
  .product-cart-wrap .product-badges span.hot {
    background-color: #f74b81;
  }
  
  .product-cart-wrap .product-badges span.new {
    background-color: #232369;
  }
  
  .product-cart-wrap .product-badges span.sale {
    background-color: #67bcee;
  }
  
  .product-cart-wrap .product-badges span.best {
    background-color: #f59758;
  }
  
  .product-cart-wrap .product-content-wrap {
    padding: 0 20px 0 20px;
  }
  
  .product-cart-wrap .product-content-wrap .product-category {
    margin-bottom: 5px;
  }
  
  .product-cart-wrap .product-content-wrap .product-category a {
    color: #adadad;
    font-size: 12px;
  }
  
  .product-cart-wrap .product-content-wrap .product-category a:hover {
    color: #232369;
  }
  
  .product-cart-wrap .product-content-wrap h2 {

    font-size: 14px;
    font-weight: 400;
  }
  
  .product-cart-wrap .product-content-wrap h2 a {
    color: #253D4E;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
  
  .product-cart-wrap .product-content-wrap h2 a:hover {
    color: #232369;
  }
  
  .product-cart-wrap .product-content-wrap .product-price {
    padding-top: 5px;
  }
  
  .product-cart-wrap .product-content-wrap .product-price span {
    font-size: 18px;
    font-weight: bold;
    color: #232369;
  }
  
  .product-cart-wrap .product-content-wrap .product-price span.new-price {
    color: #232369;
  }
  
  .product-cart-wrap .product-content-wrap .product-price span.old-price {
    font-size: 14px;
    color: #adadad;
    margin: 0 0 0 7px;
    text-decoration: line-through;
  }
  
  .product-cart-wrap .product-content-wrap .rating-result {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  
  .product-cart-wrap .product-content-wrap .rating-result > span {
    display: block;
    overflow: hidden;
    margin-left: 5px;
  }
  
  .product-cart-wrap .product-content-wrap .rating-result::before {
    font-family: "uicons-regular-straight"  !important;
    font-size: 11px;
    letter-spacing: 2px;
    content: '\f225' '\f225' '\f225' '\f225' '\f225';
    color: #ff9900;
  }
  
  .product-cart-wrap .product-content-wrap .add-to-cart {
    width: 44px;
    height: 44px;
    line-height: 44px;
    border-radius: 5px;
    background-color: #f5f5f5;
    text-align: center;
    display: block;
    color: #253D4E;
    font-size: 16px;
    position: absolute;
    bottom: 25px;
    right: 20px;
    font-weight: 300;
  }
  
  .product-cart-wrap .product-content-wrap .add-to-cart:hover {
    background-color: #232369;
    color: #fff;
  }
  
  .product-cart-wrap .product-content-wrap .add-to-cart img {
    width: 20px;
    display: inline-block;
    margin-top: 11px;
  }
  
  .product-cart-wrap .product-card-bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 15px;
  }
  
  .product-cart-wrap .product-card-bottom .add-cart {
    cursor: pointer;
  }
  
  .product-cart-wrap .product-card-bottom .add-cart .add {
    position: relative;
    display: inline-block;
    padding: 6px 20px 6px 20px;
    border-radius: 4px;
    background-color: #DEF9EC;
    font-size: 14px;
    font-weight: 700;
  }
  
  .product-cart-wrap .product-card-bottom .add-cart .add:hover {
    background-color: #232369;
    color: #fff;
    -webkit-transform: translateY(-3px);
            transform: translateY(-3px);
    -webkit-box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.05);
            box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.05);
  }
  
  .product-cart-wrap .product-stock .status-bar {
    background-color: #ededed;
    margin: 0px 0 10px;
    border-radius: 5px;
  }
  
  .product-cart-wrap .product-stock .status-bar .sold-bar {
    background-image: linear-gradient(235deg, #232369 0%, #77ccfd 100%);
    border-radius: 4px;
    height: 8px;
  }
  
  .product-cart-wrap .product-stock .status-bar .sold-bar.sold-bar-width-33 {
    width: 33.333333333333%;
  }
  
  .product-cart-wrap .product-stock .status-bar .sold-bar.sold-bar-width-10 {
    width: 10%;
  }
  
  .product-cart-wrap .product-stock .status-bar .sold-bar.sold-bar-width-40 {
    width: 40%;
  }
  
  .product-cart-wrap .product-stock .status-bar .sold-bar.sold-bar-width-6 {
    width: 6.6666666666667%;
  }
  
  .product-cart-wrap .product-stock .status-bar .sold-bar.sold-bar-width-42 {
    width: 42.857142857143%;
  }
  
  .product-cart-wrap .product-stock .product-stock-status {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  
  .product-cart-wrap .product-stock .product-stock-status .sold {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    margin-right: 20px;
  }
  
  .product-cart-wrap .product-stock .product-stock-status .available {
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }
  
  .product-cart-wrap .product-stock .product-stock-status .stock-status-same-style span {
    font-size: 15px;
  }
  
  .product-cart-wrap .product-stock .product-stock-status .stock-status-same-style span.label {
    color: #253D4E;
  }
  
  .product-cart-wrap .product-stock .product-stock-status .stock-status-same-style span.value {
    font-weight: 700;
    color: #333;
  }
  
  .product-cart-wrap .progress {
    height: 5px;
  }
  
  .product-cart-wrap:hover .product-img-action-wrap .product-img a img.hover-img {
    opacity: 1;
    visibility: visible;
    border:0
  }
  
  .product-cart-wrap:hover .product-img-action-wrap .product-action-1 {
    opacity: 1;
    visibility: visible;
  }
  
  .product-cart-wrap:hover .product-img-zoom a img {
    -webkit-transform: scale3d(1.05, 1.05, 1.05) translateZ(0);
    transform: scale3d(1.05, 1.05, 1.05) translateZ(0);
  }
  
  .product-cart-wrap.small {
    border: 0;
    text-align: center;
  }
  
  .product-cart-wrap.small .rating-result {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  
  .product-cart-wrap.small .product-content-wrap {
    padding: 5px 15px 0 15px;
  }
  
  .product-cart-wrap.small .product-price {
    padding-top: 0;
  }
  
  .product-cart-wrap.small:hover {
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  
  .product-cart-wrap.small h2 {
    border-bottom: 0;
    padding: 0;
    margin-bottom: 0;
  }
  
  .product-cart-wrap.small .product-badges span {
    font-size: 10px;
  }
  
  .product-cart-wrap.style-2 {
    border: 0;
    padding-bottom: 25px;
  }
  
  .product-cart-wrap.style-2:hover {
    border: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  
  .product-cart-wrap.style-2 .product-img-action-wrap {
    padding: 0;
    position: relative;
    z-index: 1;
    max-height: unset;
  }
  
  .product-cart-wrap.style-2 .product-img-action-wrap img {
    border-radius: 15px;
  }
  
  .product-cart-wrap.style-2 .product-content-wrap {
    position: relative;
    margin-top: -90px;
    z-index: 3;
    padding: 0;
    max-width: 86%;
    margin-left: auto;
    margin-right: auto;
    transition: .3s;
    -moz-transition: .3s;
    -webkit-transition: .3s;
    -o-transition: .3s;
  }
  
  .product-cart-wrap.style-2 .product-content-wrap .deals-content {
    margin: 0 auto;
    background-color: #fff;
    border-radius: 10px;
    -webkit-box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.05);
            box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.05);
    padding: 25px 30px;
  }
  
  .product-cart-wrap.style-2 .product-content-wrap .deals-countdown-wrap {
    position: absolute;
    top: -80px;
    width: 100%;
    text-align: center;
  }
  
  .product-cart-wrap.style-2:hover .product-content-wrap {
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px);
    transition: .3s;
    -moz-transition: .3s;
    -webkit-transition: .3s;
    -o-transition: .3s;
  }
  
  
  .product-list-small article:not(:last-child) {
    margin-bottom: 20px;
  }
  
  .product-list-small h6 a {
    color: #253D4E;
  }
  
  .product-list-small h6 a:hover {
    color: #232369;
  }
  
  .product-list-small figure img {
    border-radius: 10px;
  }
  
  .product-list-small .product-price {
    color: #232369;
    font-size: 18px;
    font-weight: 700;
    margin-top: 10px;
  }
  
  .product-list-small .product-price span.old-price {
    font-size: 14px;
    color: #adadad;
    margin: 0 0 0 7px;
    text-decoration: line-through;
  }
  
  .range .list-group-item {
    position: relative;
    display: block;
    padding: 0;
    background: none;
    border: 0;
  }
  
  .range .checkbox {
    font-size: 0.8em;
  }
  
  .range .price-filter {
    display: block;
    margin-top: 20px;
  }
  
  .range #slider-range {
    -webkit-box-shadow: none;
            box-shadow: none;
    border: none;
    height: 4px;
    border-radius: 0px;
    background: #232369;
    color: #232369;
  }
  
  .range #slider-range .ui-slider-range {
    -webkit-box-shadow: none;
            box-shadow: none;
    background: #222;
    border-radius: 0px;
    border: none;
  }
  
  .range .ui-slider-handle.ui-state-default.ui-corner-all {
    width: 14px;
    height: 14px;
    line-height: 10px;
    background: #232369;
    border: none;
    border-radius: 100%;
    top: -5px;
  }
  
  .range .label-input {
    margin-top: 15px;
  }
  
  .range .label-input span {
    margin-right: 5px;
    color: #282828;
  }
  
  .range .label-input input {
    border: none;
    margin: 0;
    height: unset;
    font-weight: 600;
    font-size: 14px;
    background: transparent;
    padding-left: 0;
  }
  
  .range .check-box-list {
    margin-top: 15px;
  }
  
  .range .check-box-list li {
    margin-bottom: 5px;
  }
  
  .range .check-box-list li:last-child {
    margin: 0;
  }
  
  .range .check-box-list li label {
    margin: 0;
    font-size: 14px;
    font-weight: 400;
    color: #333;
    cursor: pointer;
  }
  
  .range .check-box-list li label input {
    display: inline-block;
    margin-right: 6px;
    position: relative;
    top: 1px;
  }
  
  .range .check-box-list .count {
    margin-left: 5px;
    color: #666;
  }
  
  .btn.btn-small {
    line-height: 1;
    padding: 10px 15px;
    min-width: unset;
    display: table;
    border-radius: 3px;
  }
  
  .product-sidebar .single-post {
    position: relative;
  }
  
  .product-sidebar .single-post:not(:last-child) {
    margin-bottom: 10px;
    border-bottom: 1px dotted rgba(0, 0, 0, 0.15);
    padding-bottom: 10px;
  }
  
  .product-sidebar .single-post .content {
    padding-left: 95px;
  }
  
  .product-sidebar .single-post i {
    font-size: 12px;
  }
  
  .product-sidebar .image {
    height: 80px;
    width: 80px;
    float: left;
    margin-right: 10px;
    overflow: hidden;
  }
  
  .shop-product-fillter {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0 0 30px;
  }
  
  .shop-product-fillter.style-2 {
    padding-bottom: 20px;
    border-bottom: 1px solid #ececec;
  }
  
  .shop-product-fillter .sort-by-product-area {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  
  .shop-product-fillter .sort-by-product-area .sort-by-cover {
    position: relative;
  }
  
  .shop-product-fillter .sort-by-product-area .sort-by-product-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: #fff;
    border: 1px solid #f7f8f9;
    color: #777;
    padding: 9px 16px;
    border-radius: 20em;
    -webkit-transition: all .3s ease 0s;
    transition: all .3s ease 0s;
    cursor: pointer;
    border: 1px solid #ececec;
  }
  
  .shop-product-fillter .sort-by-product-area .sort-by-product-wrap:hover {
    -webkit-box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.05);
            box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.05);
  }
  
  .shop-product-fillter .sort-by-product-area .sort-by-product-wrap .sort-by {
    margin-right: 5px;
  }
  
  .shop-product-fillter .sort-by-product-area .sort-by-product-wrap .sort-by i {
    margin-right: 10px;
    font-size: 14px;
    color: #ababab;
    position: relative;
    top: 2px;
  }
  
  .shop-product-fillter .sort-by-product-area .sort-by-product-wrap .sort-by span {
    font-size: 13px;
    font-weight: 500;
  }
  
  .shop-product-fillter .sort-by-product-area .sort-by-product-wrap .sort-by-dropdown-wrap span {
    font-size: 13px;
    font-weight: 500;
    color: #7E7E7E;
  }
  
  .shop-product-fillter .sort-by-product-area .sort-by-product-wrap .sort-by-dropdown-wrap span i {
    font-size: 15px;
    color: #7E7E7E;
    margin-left: 10px;
    position: relative;
    top: 2px;
  }
  
  .sort-by-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 99;
    right: 0;
    padding: 16px 0 21px;
    background: #fff;
    border: 0;
    border-radius: 5px;
    visibility: hidden;
    opacity: 0;
    min-width: 100%;
    -webkit-box-shadow: 0 -3px 23px rgba(0, 0, 0, 0.06);
    box-shadow: 0 -3px 23px rgba(0, 0, 0, 0.06);
    color: #7E7E7E;
    font-weight: 500;
  }
  
  .sort-by-dropdown.show {
    opacity: 1;
    visibility: visible;
  }
  
  .sort-by-dropdown ul li {
    display: block;
  }
  
  .sort-by-dropdown ul li a {
    font-weight: 500;
    font-size: 13px;
    padding: 5px 30px;
    display: block;
    position: relative;
    color: #7E7E7E;
  }
  
  .sort-by-dropdown ul li a.active::before {
    content: "\f143";
    position: absolute;
    top: 5px;
    left: 10px;
    font-size: 12px;
    color: #232369;
    font-family: 'uicons-regular-straight'  !important;
    font-weight: 900;
  }
  
  .sort-by-dropdown ul li a.active:hover::before {
    color: #fff;
  }
  
  .sort-by-dropdown ul li a:hover {
    background-color: #232369;
    color: #ffffff;
  }
  
  /*Product list*/
  .product-list {
    position: relative;
  }
  
  .product-list .product-cart-wrap {
    border: 0;
    border-radius: 0;
    overflow: unset;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-line-pack: center;
        align-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  
  .product-list .product-cart-wrap:not(:last-child) {
    margin-bottom: 30px;
  }
  
  .product-list .product-cart-wrap:hover {
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  
  .product-list .product-cart-wrap:hover .product-img {
    -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
  }
  
  .product-list .product-cart-wrap .product-badges.product-badges-position {
    left: 0;
    top: 0;
  }
  
  .product-list .product-cart-wrap .product-img-action-wrap {
    max-width: 28%;
    position: relative;
    padding: 0;
    max-height: unset;
  }
  
  .product-list .product-cart-wrap .product-img-action-wrap .product-img {
    border: 1px solid #ececec;
    border-radius: 15px;
  }
  
  .product-list .product-cart-wrap .product-img-action-wrap .product-img .product-img-inner {
    overflow: hidden;
    padding: 10px;
  }
  
  .product-list .product-cart-wrap .product-img-action-wrap .product-img .product-img-inner a img {
    height: auto;
  }
  
  .product-list .product-cart-wrap h2 {
    font-size: 32px;
  }
  
  .product-list .product-cart-wrap .product-content-wrap .product-category a {
    font-size: 16px;
    margin-top: 15px;
    display: block;
  }
  
  .product-list .product-cart-wrap .product-content-wrap .product-price span {
    font-size: 32px;
  }
  
  .product-list .product-cart-wrap .product-content-wrap .product-price span.old-price {
    font-size: 20px;
  }
  
  .product-list .product-cart-wrap .product-content-wrap .product-action-1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: relative;
    bottom: unset;
    padding: 0 20px;
    margin-top: 20px;
    -webkit-box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.05);
            box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.05);
  }
  
  .product-list .product-cart-wrap .product-content-wrap .product-action-1 a.action-btn {
    border: none;
    width: auto;
    border-radius: 50px;
    background-color: #232369;
    color: #fff;
    text-align: center;
    margin-right: 0;
    position: relative;
    display: inline-block;
    padding: 0px 23px;
    height: 44px;
    font-weight: 500;
  }
  
  .product-list .product-cart-wrap .product-content-wrap .product-action-1 a.action-btn i {
    margin-right: 8px;
    color: #fff;
  }
  
  /*PRODUCT DETAILS*/
  .detail-gallery {
    position: relative;
  }
  
  .detail-gallery .zoom-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 2;
    font-size: 22px;
    opacity: 0.6;
  }
  
  .slider-nav-thumbnails .slick-list {
    margin: 0 -10px;
  }
  
  .slider-nav-thumbnails .slick-slide {
    position: relative;
    overflow: hidden;
  }
  
  .slider-nav-thumbnails .slick-slide img {
    border-radius: 17px;
  }
  
  .slider-nav-thumbnails .slick-slide.slick-current::before {
    border-bottom: 5px solid #333;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    content: "";
    height: 0;
    left: 50%;
    margin-left: -5px;
    position: absolute;
    top: -6px;
    width: 0;
  }
  
  .slider-nav-thumbnails .slick-slide.slick-current img {
    border: 2px solid #673499;
  }
  
  .slider-nav-thumbnails div.slick-slide {
    margin: 0 10px;
  }
  
  .slider-nav-thumbnails button {
    opacity: 0;
  }
  
  .slider-nav-thumbnails button.slick-arrow {
    margin: 0;
    border: 0;
    background: #F2F3F4;
    border-radius: 40px;
    width: 40px;
    height: 40px;
    line-height: 44px;
    font-size: 24px;
    z-index: 9;
    color: #7E7E7E;
  }
  
  .slider-nav-thumbnails button.slick-arrow:hover {
    color: #fff;
    background-color: #232369;
  }
  
  .slider-nav-thumbnails button.slick-arrow.slick-prev {
    left: -20px;
  }
  
  .slider-nav-thumbnails button.slick-arrow.slick-next {
    right: -20px;
  }
  
  .slider-nav-thumbnails:hover button {
    opacity: 1;
  }
  
  .slider-nav-thumbnails .slick-prev,
  .slider-nav-thumbnails .slick-next {
    font-size: 12px;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  
  .product-rate {
    background-image: url("../imgs/theme/rating-stars.png");
    background-position: 0 -12px;
    background-repeat: repeat-x;
    height: 12px;
    width: 60px;
    transition: all 0.5s ease-out 0s;
    -webkit-transition: all 0.5s ease-out 0s;
  }
  
  .product-rating {
    height: 12px;
    background-repeat: repeat-x;
    background-image: url("../imgs/theme/rating-stars.png");
    background-position: 0 0;
  }
  
  .list-filter {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  
  .list-filter li {
    display: block;
	width:100%;
	border: 1px solid #ddd;  
  }
  .list-filter li a {
    color: #555;
    display: block;
    min-width: 30px;
    text-align: center;
    position: relative;
    transition: all 0.5s ease-out 0s;
    -webkit-transition: all 0.5s ease-out 0s;
  }
  
  .color-filter.list-filter a span {
    display: block;
    width: 26px;
    height: 26px;
    border-radius: 40px;
  }
  
  .color-filter.list-filter a span.product-color-white {
    border: 1px solid #ddd;
  }
  
  .color-filter.list-filter li.active a::before {
    content: "";
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    position: absolute;
    right: 3px;
    top: -3px;
    background: #4cd964;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid #fff;
  }
  
  .size-filter.list-filter a {
    padding: 0 9px;
    background: #fff;
  }
  
  .size-filter.list-filter li a {
    color: #7E7E7E;
    text-align: center;
	padding:20px;
  }
  
  .size-filter.list-filter li a:hover,
  .size-filter.list-filter li.active a {
    color: #fff;
    background-color: #232369;
    border-color: #232369;
  }
  
  .detail-qty {
    max-width: 80px;
    padding: 9px 20px;
    position: relative;
    width: 100%;
    border-radius: 5px;
  }
  
  .detail-qty > a {
    font-size: 16px;
    position: absolute;
    right: 8px;
    color: #232369;
  }
  
  .detail-qty > a:hover {
    color: #29A56C;
  }
  
  .detail-qty > a.qty-up {
    top: 0;
  }
  
  .detail-qty > a.qty-down {
    bottom: -4px;
  }
  
  .attr-detail .select-box select {
    height: 40px;
    width: 100%;
  }
  
  .attr-detail.attr-brand {
    margin-top: 23px;
  }
  
  .attr-detail.attr-brand .select-box {
    display: block;
    margin-bottom: 20px;
  }
  
  .attr-detail.attr-color table {
    margin-bottom: 15px;
  }
  
  .detail-extralink > div {
    display: inline-block;
    vertical-align: top;
  }
  
  .detail-extralink .detail-qty {
    margin: 0 6px 15px 0;
    background: #fff;
    border: 2px solid #253d4e !important;
    font-size: 16px;
    font-weight: 700;
    color: #253d4e;
    border-radius: 5px;
    padding: 11px 20px 11px 30px;
    max-width: 90px;
  }
  
  .stock-status {
    display: inline-block;
    padding: 8px 12px;
    border-radius: 5px;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
  }
  
  .stock-status.in-stock {
    background: #DEF9EC;
    color: #232369;
  }
  
  .stock-status.out-stock {
    color: #f74b81;
    background: #fde0e9;
  }
  
  .detail-info .product-price-cover {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  
  .detail-info .product-price-cover .product-price {
    line-height: 1;
  }
  
  .detail-info .product-price {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 15px 0 30px 0;
  }
  
  .detail-info .product-price .current-price {
    font-size: 58px;
    text-decoration: none;
    font-weight: 900;
  }
  
  .detail-info .product-price .old-price {
    text-decoration: line-through;
    color: #B6B6B6;
    margin-left: 20px;
    font-size: 28px;
    font-weight: 700;
    display: block;
  }
  
  .detail-info .product-price .save-price {
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 6px;
    display: block;
    color: #FDC040;
  }
  
  .detail-info .product-meta {
    border-top: 1px solid #ececec;
    padding-top: 15px;
  }
  
  .button.button-add-to-cart {
    padding: 8px 40px;
  }
  
  .product-extra-link2 a {
    background: #fff none repeat scroll 0 0;
    border: 1px solid #f1f1f1;
    color: #333;
    border-radius: 5px;
    display: inline-block;
    height: 50px;
    line-height: 55px;
    position: relative;
    text-align: center;
    vertical-align: top;
    width: 50px;
    margin: 0 5px;
    transition: all 0.5s ease-out 0s;
    -webkit-transition: all 0.5s ease-out 0s;
  }
  
  .product-extra-link2 a:hover {
    background-color: #232369;
    color: #fff;
  }
  
  .product-extra-link2 a:hover i {
    opacity: 1;
  }
  
  .product-extra-link2 a i {
    font-size: 18px;
    opacity: 0.6;
  }
  
  .product-extra-link2 .button.button-add-to-cart {
    background:#000 ;
    position: relative;
    padding: 0px 20px;
    border-radius: 5px;
    border: 0;
    height: 50px;
    line-height: 50px;
    font-weight: 700;
    font-size: 16px;
  }
  
  .product-extra-link2 .button.button-add-to-cart i {
    margin-right: 10px;
  }
  
  .product-info {
    border: 1px solid #ececec;
    border-radius: 15px;
    padding: 40px 30px;
  }
  .ui-state-active a
  {
    -webkit-box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.05) !important;
            box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.05) !important;
  }
  
  .tab-style3 .nav-tabs li.nav-item a {
    display: block;
    padding: 13px 24px !important;
    text-align: center;
    font-weight: 500;
    text-transform: none;
    font-size: 15px;
    border-radius: 30px;
    border: 1px solid #ececec;
    background: #fff;
    color: #7E7E7E;
  }
  
  .tab-pane .comments-area {
    padding-top: 0;
    border: 0;
  }
  
  .product-color-red {
    background: #ff596d;
  }
  
  .product-color-yellow {
    background: #ffdb33;
  }
  
  .product-color-white {
    background: #ffffff;
  }
  
  .product-color-orange {
    background: #ffbb51;
  }
  
  .product-color-cyan {
    background: #80e6ff;
  }
  
  .product-color-green {
    background: #38cf46;
  }
  
  .product-color-purple {
    background: #ff8ff8;
  }
  
  .detail-gallery .product-image-slider {
    background-color: #fff;
    margin-bottom: 30px;
    border-radius: 15px;
    border: 1px solid #ececec;
    overflow: hidden;
  }
  
  .detail-gallery .product-image-slider img {
    opacity: 1;
    border-radius: 16px;
  }
  
  .detail-gallery .product-image-slider.slider-nav-thumbnails {
    background: none;
    border-radius: 0;
  }
  
  .detail-gallery .product-image-slider button.slick-arrow {
    background: none;
    border: 0;
    padding: 0;
    font-size: 14px;
  }
  
  .detail-gallery .product-image-slider button.slick-arrow i {
    color: #adadad;
  }
  
  .mail-to-friend {
    color: #adadad;
    font-size: 12px;
  }
  
  .mail-to-friend i {
    margin-right: 5px;
  }
  
  .attr-color, .attr-size {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  
  .product-detail-rating {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 15px 0;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  
  .product-detail .section-title.style-1 {
    font-size: 22px;
  }
  
  .product-more-infor {
    padding: 0 0 0px 14px;
  }
  
  .product-more-infor li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 0 10px;
    position: relative;
  }
  
  .product-more-infor li ::before {
    position: absolute;
    left: -14px;
    top: 9px;
    content: "";
    height: 6px;
    width: 6px;
    border-radius: 100%;
    background-color: #9b9b9b;
  }
  
  .product-more-infor li span {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 165px;
    flex: 0 0 165px;
    display: inline-block;
  }
  
  .product-more-infor li:last-child {
    margin: 0 0 0;
  }
  
  .progress + .progress {
    margin-top: 1rem;
  }
  
  .progress span {
    line-height: 16px;
    background: #fff;
    padding-right: 10px;
    width: 45px;
  }
  
  .progress-bar {
    background-color: #232369;
  }
  
  .shop-filter-toogle {
    margin-bottom: 20px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
    border-radius: 30px;
    border: 1px solid #ececec;
    font-size: 17px;
    font-weight: 700;
    -webkit-box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.05);
            box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.05);
    padding: 10px 20px;
  }
  
  .shop-filter-toogle i {
    margin-left: 5px;
    color: #B6B6B6;
  }
  
  .shop-filter-toogle i.angle-down {
    opacity: 0;
    visibility: hidden;
    display: none;
  }
  
  .shop-filter-toogle .fi-rs-filter {
    font-size: 14px;
    color: #B6B6B6;
  }
  
  .shop-filter-toogle.active i.angle-down {
    opacity: 1;
    visibility: visible;
    display: inline-block;
  }
  
  .shop-filter-toogle.active i.angle-up {
    opacity: 0;
    visibility: hidden;
    display: none;
  }
  
  .shop-product-fillter-header .card {
    border: 1px solid #ececec;
    border-radius: 20px;
    margin-bottom: 50px;
    padding: 30px 40px;
    -webkit-box-shadow: 20px 20px 54px rgba(0, 0, 0, 0.03);
    box-shadow: 20px 20px 54px rgba(0, 0, 0, 0.03);
  }
  
  .shop-product-fillter-header .categor-list li {
    font-size: 12px;
  }
  
  .shop-product-fillter-header .categor-list li + li {
    border-top: 1px solid #f7f8f9;
    padding-top: 5px;
    margin-top: 5px;
  }
  
  .shop-product-fillter-header .categor-list li a {
    font-size: 14px;
    color: #7E7E7E;
    margin-right: 10px;
  }
  
  .shop-product-fillter-header .categor-list li a:hover {
    color: #232369;
  }
  
  .shop-product-fillter-header .color-filter {
    border-bottom: 1px solid #ececec;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  
  .shop-product-fillter-header .product-rate-cover + .product-rate-cover {
    margin-top: 15px;
  }
  
  .shopping-summery table > :not(caption) > * > * {
    padding: 15px 0;
  }
  
  .shopping-summery table td, .shopping-summery table th, .shopping-summery table thead {
    border: 0;
  }
  
  .shopping-summery table thead th {
    background-color: #ececec;
    padding: 18px 0;
    font-size: 17px;
    font-weight: 700;
    color: #253D4E;
  }
  
  .shopping-summery table thead th.start {
    border-radius: 20px 0 0 20px;
  }
  
  .shopping-summery table thead th.end {
    border-radius: 0 20px 20px 0;
  }
  
  .shopping-summery table tbody tr img {
    max-width: 120px;
    border: 1px solid #ececec;
    border-radius: 15px;
  }
  
  table.no-border td, table.no-border th, table.no-border thead {
    border: 0;
  }
  
  .shipping_calculator .custom_select .select2-container {
    max-width: unset;
  }
  
  .shipping_calculator .custom_select .select2-container--default .select2-selection--single {
    border-radius: 10px;
    height: 64px;
    line-height: 64px;
  }
  
  .shipping_calculator .custom_select .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 64px;
  }
  
  .shipping_calculator .custom_select .select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 50%;
    right: 14px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  
  .shipping_calculator .w-100 .select2-container {
    max-width: unset;
    min-width: 445.5px;
  }
  
  .cart-totals {
    border-radius: 15px;
    -webkit-box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.05);
            box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.05);
    padding: 30px 40px;
  }
  
  .order_review {
    border: 1px solid #ececec;
    padding: 30px;
    border-radius: 10px;
  }
  
  .toggle_info {
    padding: 12px 20px;
    background-color: #fff;
    border-radius: 10px;
    border: 1px solid #ececec;
    -webkit-box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.05);
            box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.05);
  }
  
  .login_form .panel-body, .coupon_form .panel-body {
    border: 1px solid #ececec;
    padding: 30px;
    margin-top: 30px;
    border-radius: 10px;
  }
  
  .payment_option .custome-radio {
    margin-bottom: 10px;
  }
  
  .payment_option .custome-radio .form-check-label {
    color: #292b2c;
    font-weight: 600;
  }
  
  .custome-radio .form-check-label::before {
    content: "";
    border: 1px solid #908f8f;
    height: 16px;
    width: 16px;
    display: inline-block;
    border-radius: 100%;
    vertical-align: middle;
    margin-right: 8px;
  }
  
  .custome-radio input[type="radio"] + .form-check-label::after {
    content: "";
    height: 10px;
    width: 10px;
    border-radius: 100%;
    position: absolute;
    top: 9px;
    left: 3px;
    opacity: 0;
  }
  
  .custome-radio input[type="radio"]:checked + .form-check-label::after {
    opacity: 1;
    background-color: #232369;
  }
  
  .related-products .product-img-action-wrap {
    padding: 0;
    margin-bottom: 15px;
  }
  
  .col-lg-4-5 .product-cart-wrap .product-action-1 a.action-btn {
    width: 35px;
  }
  
  .col-lg-4-5 .countdown-section .countdown-amount {
    width: 38px;
  }
  
  .zoomWindow {
    border-radius: 15px;
    overflow: hidden;
  }
  
  .table-wishlist {
    border: 0;
  }
  
  .apply-coupon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  
  .apply-coupon input {
    height: 51px;
    border-radius: 10px 0 0 10px;
    background-image: url("../imgs/theme/icons/coupon.png");
    background-position: 20px center;
    background-repeat: no-repeat;
    padding-left: 50px;
  }
  
  .apply-coupon button {
    min-width: 150px;
    height: 51px;
    border-radius: 0 10px 10px 0;
    background-color: #253D4E;
  }
  
  .apply-coupon button:hover {
    background-color: #232369;
  }
  
  .order_table table .product-thumbnail img {
    max-width: 120px;
    border-radius: 15px;
    border: 1px solid #ececec;
    padding: 5px;
  }
  
  .order_table table .w-160 {
    max-width: 160px;
  }
  
  .table.table-compare {
    border-radius: 15px;
  }
  
  .table.table-compare > :not(caption) > * > * {
    padding: 30px 0;
  }
  
  .mw-200 {
    min-width: 200px;
  }
  
  /* Etiket */
.product-badge-yeni {
    background: #16E38A;
    padding: 2px 10px;
    text-align: center;
    font-size: 10px;
    color: #fff;
    border-radius: 10px;
    font-weight: 400;
    margin:5px 0px;
}
.product-badge-tukendi {
    background: #e3169a;
    padding: 2px 10px;
    text-align: center;
    font-size: 10px;
    color: #fff;
    border-radius: 10px;
    font-weight: 400;
    margin:5px 0px;
}
.product-badge-ucretsiz {
    background: #673499;
    padding: 2px 10px;
    text-align: center;
    font-size: 10px;
    color: #fff;
    border-radius: 10px;
    font-weight: 400;
    margin:5px 0px;
}
.product-badge-ozel-fiyat {
    background: #a7281f;
    padding: 2px 10px;
    text-align: center;
    font-size: 10px;
    color: #fff;
    border-radius: 10px;
    font-weight: 400;
    margin:5px 0px;
}
.product-badge-vitrin {
    background: #a7281f;
    padding: 2px 10px;
    text-align: center;
    font-size: 10px;
    color: #fff;
    border-radius: 10px;
    font-weight: 400;
    margin:5px 0px;
}
/* Etiket BitiÅŸ */

/* ÃœrÃ¼n Listeleme */
.price-content
{
    margin-top:20px;
}
.price-content > .col-6:first-child
{
    border-right: 1px solid grey;
}

.price-content > .col-6 > div.package-quantity > span
{
    display:block;
    font-size:10px;
    margin:0;
    padding:0;
    margin-bottom:-5px
}
.price-content > .col-6 > div.package-price > span
{
    color:#38383e;
    font-size:16px;
    font-weight: 900;
}


.price-content > .col-6 > div.box-quantity > span
{
    display:block;
    font-size:10px;
    margin:0;
    padding:0;
    margin-bottom:-5px
}
.price-content > .col-6 > div.package-quantity
{
    display:block;
    font-size:10px;
    margin:0;
    padding:0;
    margin-bottom:-5px
}
.animation-teklif > a
{
  color: #FFF; 
  background: #673499; 
  padding: 5px 13px; 
  border-radius: 10px;
  margin-bottom: 2.4rem;
  -webkit-animation: fade-out .8s ease-out infinite alternate both;
  animation: fade-out .8s ease-out infinite alternate both;
}
@-webkit-keyframes fade-out {
  0% {
      opacity: 1
  }
  100% {
      opacity: .1
  }
}

@keyframes fade-out {
  0% {
      opacity: 1
  }
  100% {
      opacity: .1
  }
}
/* ÃœrÃ¼n Listeleme BitiÅŸ */
@media only screen and (max-width: 1024px)
{
    .price-content > .col-6:first-child
    {
        border-right: 1px solid #8080802e !important;
    }
    .price-content > .col-6 > div.package-price > span
    {
        font-size:12px !important;
    }
    .product-cart-wrap .product-content-wrap
    {
        padding:0 5px 20px 5px;
    }
    .product-cart-wrap .product-content-wrap h2
    {
        font-size: 13px;
        line-height: 22px;
    }
    
    .shop-product-fillter .sort-by-product-area .sort-by-product-wrap .sort-by
    {
        margin:0 !important;
    }
    .detail-extralink > div
    {
        width:78%;
    }
    .detail-info .product-extra-link2 .button.button-add-to-cart
    {
        width:100%;
    }
    .product-detail > .row
    {
        margin-bottom: 20px !important;
    }
   
}
.pcard-badges
{
    margin:10px 0;
}

/* Showcase Add Cart Button */
.showcase {
    position: relative;
    z-index: 10;
    margin-bottom: 3rem
}

.showcase.showcase-no-stock {
    opacity: .6
}

@media(max-width:767px) {
    .showcase {
        margin-bottom: 1.5rem
    }
    div.showcase-price {
      display: flex;
      align-items: flex-start !important;
      flex-direction: column;
  }  
}

.showcase .showcase-inside {
    position: relative;
    z-index: 10
}

.showcase .showcase-image-container {
    position: relative;
    overflow: hidden
}

.showcase .showcase-image {
    position: relative;
    padding-top: 100%;
    overflow: hidden
}

.showcase .showcase-image img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    display: block;
    max-width: 100%;
    max-height: 100%
}

.showcase .showcase-countdown-area {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 101;
    display: flex;
    align-items: center;
    padding: 7px 16px;
    background: #e22e2e;
    color: #fff
}

@media(max-width:991px) {
    .showcase .showcase-countdown-area {
        padding: 0 5px
    }
}

.showcase .showcase-countdown-area .showcase-countdown {
    flex: 0 0 60%;
    line-height: 18px
}

.showcase .showcase-countdown-area .showcase-countdown .timer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-left: -10px;
    margin-right: -10px
}

.showcase .showcase-countdown-area .showcase-countdown .timer-container>div {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
    padding: 0 10px
}

.showcase .showcase-countdown-area .showcase-countdown .timer-container>div:last-child>div:after {
    display: none
}

.showcase .showcase-countdown-area .showcase-countdown .timer-container>div>div {
    position: relative;
    text-align: center
}

.showcase .showcase-countdown-area .showcase-countdown .timer-container>div>div:after {
    content: "";
    width: 2px;
    height: 15px;
    position: absolute;
    top: 10%;
    right: -15px;
    background: #ff5656
}

.showcase .showcase-countdown-area .showcase-countdown .timer-container>div>div>div {
    font-size: 15px;
    font-weight: 700;
    text-align: center
}

.showcase .showcase-countdown-area .showcase-countdown .timer-container>div>div>span {
    font-size: 12px
}

@media(max-width:991px) {
    .showcase .showcase-countdown-area .showcase-countdown-image {
        display: none
    }
}

.showcase .showcase-countdown-area .showcase-countdown-text {
    font-size: 15px;
    margin-left: 8px;
    line-height: 18px
}

@media(max-width:991px) {
    .showcase .showcase-countdown-area .showcase-countdown-text {
        font-size: 10px;
        margin-left: 0
    }
}

.showcase .showcase-countdown-area .countdown-message {
    font-size: 15px;
    font-weight: 600;
    text-align: center
}

@media(max-width:991px) {
    .showcase .showcase-countdown-area .countdown-message {
        font-size: 13px;
        padding: 10px 0
    }
}

@media(max-width:374px) {
    .showcase .showcase-countdown-area .countdown-message {
        font-size: 10px;
        padding: 5px 0
    }
}

.showcase .showcase-countdown-area.countdown-end .showcase-countdown-image,
.showcase .showcase-countdown-area.countdown-end .showcase-countdown-text {
    display: none
}

.showcase .showcase-countdown-area.countdown-end .showcase-countdown {
    flex: 0 0 100%
}

.showcase .showcase-thumbs-image {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center
}

.showcase .showcase-thumbs-image>a {
    display: block;
    height: 100%
}

@media(max-width:991px) {
    .showcase .showcase-thumbs-image {
        display: none
    }
}

.showcase .showcase-image-dots {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    transition: all .2s ease-in-out;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center
}

.showcase .showcase-image-dots button {
    width: 5.3rem;
    height: .5rem;
    margin: 0 .4rem;
    padding: 0;
    border: none;
    background: #e5e8ed
}

.showcase .showcase-image-dots button.active {
    background: #232369
}

@media(max-width:991px) {
    .showcase .showcase-image-dots {
        display: none
    }
}

.showcase .new-label {
    position: absolute;
    left: -9rem;
    top: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 7rem;
    height: 4rem;
    color: #fff;
    font-size: 1.3rem;
    background-color: #6ac259;
    border-radius: 2px;
    line-height: 1.3;
    text-align: center;
    transition: all .2s ease-in-out
}

@media(max-width:991px) {
    .showcase .new-label {
        width: 5rem;
        height: 3rem;
        line-height: 1.3;
        font-size: 10px;
        left: 0
    }
}

.showcase .video-label {
    position: absolute;
    right: -9rem;
    top: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 5rem;
    height: 3rem;
    color: #fff;
    font-size: 1.5rem;
    background-color: #6ac259;
    border-radius: 2px;
    transition: all .2s ease-in-out
}

.showcase .sold-out-label {
    display: none
}

.showcase .showcase-content {
    padding: 1rem 0;
    padding: 2rem
}

.showcase .showcase-content .showcase-title {
    margin-bottom: 2rem
}

.showcase .showcase-content .showcase-title a {
    display: block;
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 2rem;
    height: 4rem;
    overflow: hidden;
    color: #424a54
}

div.showcase-price {
    display: flex;
    align-items: center;
}

div.showcase-content .showcase-price>div {
    position: relative;
    display: flex;
    align-items: baseline
}
.showcase-price .showcase-price-old {
    color: #999;
    font-size: 1rem;
    text-decoration: line-through;
    margin-right: 10px;
}
.showcase-price .showcase-price-new {
    color: #232369;
    font-size: 1.2rem;
    font-weight: 600;
}


@media(max-width:991px) {
    .showcase .showcase-content .showcase-price>div {
        flex-direction: column
    }
}

.showcase .showcase-content .showcase-price>div:first-child {
    flex: 1 0 0%
}

@media(max-width:991px) {
    .showcase .showcase-content .showcase-price>div:first-child {
        flex: 0 0 100%
    }
}

.showcase .showcase-content .showcase-price>div:last-child {
    width: 7.6rem;
    margin-right: -2rem;
    opacity: 0;
    visibility: hidden;
    transition: all .2s ease-in-out
}



.showcase .showcase-content .showcase-price .showcase-cargo-buttons {
    flex: 0 0 3.2rem;
    margin-left: 1rem
}

.showcase .showcase-content .showcase-price .showcase-cargo-buttons>a {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    height: 2.2rem
}

.showcase .showcase-content .showcase-price .showcase-cargo-buttons>a:before,
.showcase .showcase-content .showcase-price .showcase-cargo-buttons>a:after {
    position: absolute;
    opacity: 0;
    font-size: 1.1rem;
    font-weight: 600;
    z-index: 30;
    pointer-events: none;
    transition: all .2s ease-in-out
}

.showcase .showcase-content .showcase-price .showcase-cargo-buttons>a:before {
    content: "";
    position: absolute;
    background: 0 0;
    border: 4px solid transparent;
    bottom: 120%;
    right: 10px;
    margin: 0 0 -14px;
    border-top-color: #e4ebef
}

.showcase .showcase-content .showcase-price .showcase-cargo-buttons>a.showcase-cargo-buttons-1:before {
    right: 47px
}

.showcase .showcase-content .showcase-price .showcase-cargo-buttons>a:after {
    content: attr(data-showcase-tooltip);
    color: #424a54;
    padding: 4px 12px;
    white-space: nowrap;
    bottom: 120%;
    right: 0;
    margin: 0 0 -6px -2px;
    background: #e4ebef
}

.showcase .showcase-content .showcase-price .showcase-cargo-buttons>a:hover:before,
.showcase .showcase-content .showcase-price .showcase-cargo-buttons>a:hover:after {
    opacity: 1
}

.showcase .showcase-content .showcase-price .showcase-cargo-buttons>a:hover:before {
    margin-bottom: -6px
}

.showcase .showcase-content .showcase-price .showcase-cargo-buttons>a:hover:after {
    margin-bottom: 2px
}

.showcase .showcase-hover {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 9;
    width: 100%;
    height: 100%;
    padding: 1.2rem;
    background-color: #fff;
    border-radius: 2.6rem;
    transition: all .2s ease-in-out;
    display: flex;
    align-items: flex-end
}

.showcase .showcase-hover>div {
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all .2s ease-in-out
}

@media(max-width:991px) {
    .showcase .showcase-hover>div {
        display: none
    }
}

.showcase .showcase-hover>div .showcase-hover-top {
    display: flex;
    align-items: center;
    flex: 0 0 100%;
    max-width: 100%
}

.showcase .showcase-hover>div .showcase-hover-top .showcase-button {
    flex: 1 0 0%
}

.showcase .showcase-hover>div .showcase-hover-top .showcase-button>a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    color: #fff;
    font-size: 1rem;
    height: 2.5rem;
    font-weight: 500;
    background-color: #232369;
    box-shadow: 0 0 10px rgba(38, 128, 235, .3);
    border-radius: 2px;
    transition: all .2s ease-in-out;
    border-radius: 5rem;
    text-transform: uppercase;
}

.showcase .showcase-hover>div .showcase-hover-top .showcase-button>a:hover {
    box-shadow: none;
    background-color: #000
}

.showcase .showcase-hover>div .showcase-hover-top .showcase-qty-wrapper {
    margin-left: 1rem
}

.showcase .showcase-hover>div .showcase-hover-top .showcase-qty-wrapper .showcase-qty {
    display: flex;
    flex-wrap: wrap;
    border-radius: 2px;
    border: 1px solid #e4ebef;
    width: 8rem;
    height: 4rem
}

.showcase .showcase-hover>div .showcase-hover-top .showcase-qty-wrapper .showcase-qty>a {
    flex: 0 0 2.5rem;
    max-width: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #424a54;
    background-color: #d5dfe8
}

.showcase .showcase-hover>div .showcase-hover-top .showcase-qty-wrapper .showcase-qty>div {
    flex: 1 0 0%;
    max-width: 100%
}

.showcase .showcase-hover>div .showcase-hover-top .showcase-qty-wrapper .showcase-qty>div input {
    width: 100%;
    height: 100%;
    text-align: center;
    background-color: transparent;
    border: none;
    color: #424a54;
    font-size: 1.4rem;
    font-weight: 600;
    border-right: 1px solid #e4ebef;
    border-left: 1px solid #e4ebef
}

.showcase .showcase-hover>div .showcase-hover-top.showcase-customize {
    display: none
}

.showcase .showcase-hover>div .showcase-hover-bottom .showcase-market-price {
    padding-top: 1.4rem;
    height: 14.9rem
}

.showcase .showcase-hover>div .showcase-hover-bottom .showcase-market-price div {
    position: relative;
    color: #8795af;
    font-size: 1.3rem;
    padding: .4rem 0 .4rem 1.4rem
}

.showcase .showcase-hover>div .showcase-hover-bottom .showcase-market-price div:after {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background-color: #8795af
}

@media(min-width:992px) {
    .showcase .new-label {
        left: 0
    }
    .showcase:hover {
        z-index: 11
    }
    .showcase:hover .video-label {
        right: 0
    }
    .showcase:hover .showcase-content .showcase-price>div:last-child {
        margin-right: 0;
        opacity: 1;
        visibility: visible
    }
    .showcase:hover .showcase-hover {
        border-radius: .5rem;
        height: calc(100% + 4.5rem);
    }
    .showcase:hover .showcase-hover>div {
        opacity: 1;
        visibility: visible
    }
    .showcase:hover .showcase-image-dots {
        bottom: 1rem;
        opacity: 1;
        visibility: visible
    }
    .showcase.showcase-market:hover .showcase-hover {
        height: calc(100% + 19.5rem)
    }
}

.showcase-container .showcase .showcase-hover {
    border: 2px solid #f3f5f7
}
.stock-out
{
    opacity: .5;
}


.avatar-upload {
  position: relative;
  max-width: 120px;
}
.avatar-upload .avatar-edit {
  position: absolute;
  right: 12px;
  z-index: 1;
  top: 10px;
}
.avatar-upload .avatar-edit input {
  display: none;
}
.avatar-upload .avatar-edit input + label {
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-bottom: 0;
  border-radius: 100%;
  background: #FFFFFF;
  border: 1px solid transparent;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  font-weight: normal;
  transition: all 0.2s ease-in-out;
}
.avatar-upload .avatar-edit input + label:hover {
  background: #f1f1f1;
  border-color: #d6d6d6;
}
.avatar-upload .avatar-edit input + label:after {
  content: "\f040";
  font-family: 'Font Awesome 5 Pro';
  color: #757575;
  position: absolute;
  top: 4px;
  font-size: 11px;
  left: 0;
  right: 0;
  text-align: center;
  margin: auto;
}
.avatar-upload .avatar-preview {
  width: 110px;
  height: 110px;
  position: relative;
  border-radius: 100%;
  border: 6px solid #F8F8F8;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
}
.avatar-upload .avatar-preview > div {
  background-image: url('');
  width: 100%;
  height: 100%;
  border-radius: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.not-product
{
  text-align: center;
}
.not-product i
{
  color: #d2d2d2;
  font-size: 45px;
}
.not-product span
{
  display: block;
  font-size: 14px;
  color: #9c9c9c;
  margin: 10px 0px;
}
a.subCategoryview
{    
    display: block;
    width: 100%;
    font-size: 1.2rem;
    margin: 0 auto 1rem;
    color: #4b4b4b;
}
a.subCategoryview div
{
    width: 100%;
    padding-top: 50%;
    position: relative;
}
a.subCategoryview div img
{
    position: absolute;
    max-width: 100%;
    max-height: 100%;
    margin: auto;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
}
a.subCategoryview div span
{
display: flex;
line-height: 1.6rem;
height: 3.2rem;
justify-content: center;
position: relative;
overflow: hidden;
}
.entry-main-content
{
	margin-top:2rem
}
  
.simplebar-content
{
  padding:0.5rem 0;
}
.simplebar-content img
{
  width: 64px;
  max-height: 45px;
  object-fit: cover;
}
.urun-listesi-sepet {
  border-bottom: 1px solid #eeeeee;
  padding: 20px 0;
}
.urun-listesi-sepet img
{
  width: 109px;
  max-height: 75px;
  object-fit: cover;
}

.sepet_yan img
{
  width: 64px;
  max-height: 45px;
  object-fit: cover;
}
.sepet_yan > div
{
  margin:.5rem 0
}
.sepet_yan .widget-product-title a
{
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* Adres Bilgilerim */
.newAdress
{
  padding:5rem 0;
  background: #f3f3f359;
  border:1px solid #e3e9ef !important;
}

.newAdress .newAdressbutton i
{
    font-size: 4rem;
    color: #88888859
}
.newAdress .newAdressbutton .yeni-ekle {
  display: block;
  margin: 0.3rem;
  font-weight: 600;
  color: grey;
  font-size:1rem;
}
.orderArea
{
  border-bottom:1px solid #e3e9ef;
  padding-bottom:2rem;
  margin-bottom:2rem
}
.orderArea .col-md-4
{
  margin-bottom:1rem;
}
.invoiceArea
{
  border-bottom:1px solid #e3e9ef;
  padding-bottom:2rem;
  margin-bottom:2rem
}
.invoiceArea .col-md-4
{
  margin-bottom:1rem;
}
.cargoArea .cargoAreaContent
{
  margin-bottom: 1rem;
}
.cargoArea .cargoList label
{
  display: flex;
    justify-content: space-between
}
.cargoArea .cargoList label .cargoAreaContentLeft
{
  flex: 1 0 auto;
  display: flex;
  align-items: center;
}
.cargoArea .cargoList label div {
}
.cargoArea .cargoList label img{    
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  max-width: 80%;
  max-height: 80%;
  display: block;
  position: absolute;
}

.adressList
{
  padding: 1rem 1rem;
  border:1px solid #e3e9ef !important;
  height:100%;
  display: flex;
    flex-direction: column;
    justify-content: center;
}
.adressList .title
{
 margin-bottom:1rem
}
.adressList .blankArea 
{
 margin-bottom:.3rem
}
.adressList .adressListFooter
{
  display: flex;
    justify-content: space-between;
    align-items: flex-end;
  margin-top: 1rem;
  padding: 1rem 0;
  padding-bottom: 0;
  border-top: 1px solid #e3e9ef !important;
}

.adressList .adressListFooter
{
  display: flex;
    justify-content: space-between;
    align-items: flex-end;
  margin-top: 1rem;
  padding: 1rem 0;
  padding-bottom: 0;
  border-top: 1px solid #e3e9ef !important;
}
#guess_payment .cargoArea
{
  margin:1rem 0;
  border-top: 1px solid #e3e9ef !important;
  padding:1rem 0;
}
.customSelect
{
  border:0 !important;
  color:#ffffff99 !important;
  background:transparent
}
.customSelect option
{
  color:#000 !important;
}