* {
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    -webkit-tap-highlight-color: transparent;
}

/* Master buttons */
.master-button, .master-outline-button, .master-color-button {
    height: 50px;
    cursor: pointer;
    padding: 0 30px;
    font-size: 17px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
    position: relative;
    -webkit-transition: .15s all;
    -o-transition: .15s all;
    transition: .15s all;
}
.master-button {
    background: var(--main-color);
    color: white;
    border: 1px solid var(--main-color);
}
.master-outline-button {
    background: #fff;
    color: black;
    border: 1px solid var(--main-color);
}
.master-outline-button:hover {
    background: var(--main-color);
    color: white;
    border: 1px solid var(--main-color);
}
.master-color-button {
    background: var(--second-color);
    color: white;
    border: 1px solid var(--second-color);
}
.master-color-button:hover {
    background: #f75848;
    border: 1px solid #f75848;
}
.master-wide-button {
    width: 100%;
}



/* Header search ucun custom css */
#header-search-area {
    position: relative;
}
#header-search-form {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 30px;
    overflow: hidden;
}
.header-search-form-element {
    position: relative;
}
.header-search-form-element input {
    border: 0;
    height: 48px;
    padding: 0 20px;
    background: #fff;
    color: black;
    width: 400px;
    font-size: 15px;
}
.header-search-form-element select {
    height: 48px;
    border: 0;
    border-right: 1px solid #ddd;
    width: 150px;
    font-size: 15px;
    padding: 0 25px;
}
.header-search-form-element button {
    position: absolute;
    top: 50%;
    right: 5px;
    height: 40px;
    line-height: 40px;
    color: #ffffff;
    background: var(--second-color);
    border-radius: 30px;
    padding: 0 30px;
    font-size: 15px;
    transform: translateY(-50%);
}
.header-search-form-element button:hover {
    background: var(--main-color);
}
.header-search-results {
    position: absolute;
    width: 100%;
    top: calc(100% + 10px);
    background: white;
    border: 1px solid #ddd;
    padding: 15px 0 0!important;
    display: none;
}
#header-search-area .ajax-product-image {
    width: 60px;
}
#header-search-area .ajax-product-details {
    width: calc(100% - 60px);
    padding-left: 15px;
}
#header-search-area .ajax-product a {
    padding: 0 15px;
}
#header-search-area .all-results-button {
    background: var(--second-color);
    color: white;
    padding: 5px 0;
    margin: -1px;
    text-align: center;
}
#header-search-area .ajax-no-result {
    text-align: center;
    padding: 0 15px 15px;
}
@media (max-width: 999px) {
    #header-search-area, .header-search-form-element input {
        width: 320px;
    }
}
@media (max-width: 959px) {
    #header-search-area {
        display: none;
    }
}
@media (max-width: 1200px) {
    .header-search-form-element:first-child {
        display: none;
    }
}


/* Single product page ucun custom css */
.single-product-blocks {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 0 -25px;
}
.single-product-block {
    width: 50%;
    padding: 0 25px;
    position: relative;
}
.single-product-gallery .gallery-top-area .default-product-image {
    background: #eee;
    padding: 110px;
}
.gallery-thumbs-area {
    margin-top: 10px;
}
.gallery-thumbs .swiper-slide {
    height: 100%!important;
    cursor: pointer;
}
.gallery-thumbs-area img {
    border: 1px solid #ddd;
}
.gallery-thumbs-area .swiper-slide-thumb-active img {
    border-color: var(--main-color);
}
.gallery-zoom {
    position: absolute;
    top: 0;
    left: 100%;
    width: 300px;
    height: 300px;
    z-index: 5;
    display: none;
}
.gallery-top-area {
    position: relative;
}
.drift-bounding-box {
    display: block;
    z-index: 10;
    background: rgba(0,0,0,.3);
}
.single-product-gallery img {
    background: #f5f5f5;
}
.swiper-button-next {
    right: 0;
}
.swiper-products-nav {
    position: absolute;
    top: 50%;
    left: 15px;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    z-index: 1;
    font-size: 26px;
    cursor: pointer;
}
.swiper-products-next {
    left: auto;
    right: 15px;
}
.swiper-products-bullets {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}
.swiper-products-bullets .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: white;
    display: inline-block;
    border-radius: 50%;
    margin: 0 5px;
    opacity: .5;
    cursor: pointer;
    transition: .3s all;
}
.swiper-products-bullets .swiper-pagination-bullet:hover {
    opacity: 1;
}
.swiper-products-bullets .swiper-pagination-bullet-active {
    opacity: 1;
}
@media (max-width: 767px) {
    .single-product-block {
        width: 100%;
    }
    .single-product-first {
        margin-bottom: 40px;
    }
}


/* Single product details ucun custom css */
.single-product-details h1 {
    color: var(--main-color);
}


/* Single product rating ucun custom css */
.product-ratings {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 10px;
    cursor: pointer;
}
.product-stars-area {
    position: relative;
    width: 80px;
}
.product-stars, .product-default-stars {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
}
.product-stars {
    position: absolute;
    top: 0;
}
.product-rating-data {
    padding-left: 10px;
    color: #666;
}
.product-stars-area .fa {
    margin-right: 2px;
    color: orange;
}



/* Single product badges ucun custom css */
.single-product-badges {
    position: absolute;
    top: 10px;
    right: 35px;
    z-index: 1;
}
.single-product-badge {
    color: white;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 50%;
}
.single-product-badge-sale {
    background: red;
}



/* Single product details ucun custom css */
.single-price-area {
    margin-top: 10px;
}
.single-price {
    font-size: 44px;
    color: var(--second-color);
}
.single-sale-price {
    text-decoration: line-through;
    font-size: 22px;
    color: #999;
}
.single-currency {
    padding-right: 10px;
}
.single-add-to-cart-area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 10px;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
input[type=number] {
    -moz-appearance: textfield;
}
.single-quantity {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-right: 15px;
    margin-bottom: 5px;
}
.quantity-input input {
    width: 50px;
    text-align: center;
    border: 1px solid #e5e5e5;
    height: 50px;
    font-size: 18px;
    border-radius: 0;
}
.single-quantity-arrow-block {
    width: 25px;
    height: 25px;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border: 1px solid #e5e5e5;
    border-left: 0;
    cursor: pointer;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
.quantity-down {
    border-top: 0;
}
.single-quantity-arrow-block:hover {
    background: #f5f5f5;
}
.single-product-group-buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}
.single-add-to-cart-button, .variation-add-to-cart-button {
    width: 170px;
    height: 50px;
    background: var(--main-color);
    color: white;
    cursor: pointer;
    text-align: center;
    font-size: 18px;
    margin-right: 15px;
    margin-bottom: 5px;
    line-height: 1;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 0 15px;
}
.single-add-to-cart-button:after, .variation-add-to-cart-button:after {
    content: '\e9ca';
    font-family: feather;
    font-size: 15px;
    margin-left: 10px;
}
.single-add-to-cart-button.loading:after, .variation-add-to-cart-button.loading:after {
    margin-left: 0;
}
.single-quick-buy-button > div {
    height: 50px;
    line-height: 48px;
    display: inline-block;
    color: var(--main-color);
    text-align: center;
    cursor: pointer;
    border: 1px solid #1f1f1f;
    padding: 0 35px;
    font-size: 18px;
    -webkit-transition: .3s all;
    -o-transition: .3s all;
    transition: .3s all;
}
.single-quick-buy-button > div:hover {
    background: #1f1f1f;
    color: white;
}
.single-products-extra-buttons {
    margin-top: 25px;
}
.single-product-extra-button {
    display: inline-flex;
    margin-right: 30px;
    margin-bottom: 10px;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 30px;
    cursor: pointer;
    position: relative;
    height: 30px;
    background: white;
}
.sp-extra-button-icon {
    width: 30px;
    height: 30px;
    text-align: center;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    position: absolute;
    top: -1px;
    left: -1px;
}
.sp-extra-button-text {
    padding: 0 10px 0 40px;
}
.single-product-wishlist-icon {
    background: #ff4545;
}
.single-product-whatsapp-icon {
    background: #00c600;
}
.dynamic-product-price {
    font-size: 40px;
}
.dynamic-product-data {
    font-weight: 600;
    margin-bottom: 20px;
}
@media (max-width: 500px) {
    .single-quantity-area {
        width: 100%;
    }
    .single-product-group-buttons {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        width: 100%;
        margin-top: 15px;
    }
    .single-add-to-cart-button, .single-quick-buy-button, .variation-add-to-cart-button {
        width: 49%;
        margin-right: 0;
    }
    .single-quick-buy-button a {
        width: 100%;
    }
}


/* Variation ucun custom css */
#variation-form {
    margin: 20px 0;
}
.attr-details {
    margin-top: 30px;
}
.attr-value {
    border: 1px solid #ddd;
    width: 45px;
    height: 45px;
    line-height: 43px;
    text-align: center;
    margin-right: 5px;
    margin-bottom: 5px;
    color: #616161;
    padding-left: 0!important;
    background: white;
}
.attr-value[data-attr=attr-color-image] {
    height: 100px;
    width: 80px;
    border-radius: 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #f5f5f5;
}
.attr-area {
    margin-bottom: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.attr-parameters {
    width: calc(100% - 70px);
}
.attr-area strong {
    width: 70px;
    display: inline-block;
    vertical-align: middle;
}
.attr-area input {
    display: none;
}
.attr-area input:checked + label {
    border-color: var(--main-color);
    color: var(--main-color);
}
.attr-values {
    display: none;
}
.attr-area-color label {
    font-size: 0;
    border-radius: 50%;
    height: 35px;
    width: 35px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-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-shadow: 0 0 0 1px #e5e5e5;
            box-shadow: 0 0 0 1px #e5e5e5;
    border: 3px solid white;
    position: relative;
}
.attr-area-color input:checked + label, .simple-product-attr-checked {
    border-color: white!important;
    -webkit-box-shadow: 0 0 0 1px var(--main-color)!important;
            box-shadow: 0 0 0 1px var(--main-color)!important;
}
.single-variation-prices {
    margin: 15px 0 0;
    font-size: 22px;
    color: var(--second-color);
}
.single-variation-price-area {
    display: none;
}
.out-of-attr {
    position: relative;
    opacity: .7;
}
.out-of-attr:before {
    content: '';
    background-image: url(/uploads/2021/05/cancel-x.svg);
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    opacity: .5;
}
.label-color[data-attr="attr-color-image"]:before {
    background-size: contain;
    background-repeat: no-repeat;
}
.attr-area-color label span {
    font-size: 12px;
    color: white;
    background: black;
    display: block;
    position: absolute;
    bottom: calc(100% + 7px);
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    line-height: 1.5;
    padding: 2px 8px;
    z-index: 100;
    opacity: 0;
    -webkit-transition: .15s all;
    -o-transition: .15s all;
    transition: .15s all;
}
.attr-area-color label span:before {
    content: '';
    width: 0; 
    height: 0; 
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #000;
    position: absolute;
    top: 100%;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
}
.attr-area-color label:hover span {
    opacity: 1;
}
.price-not-detected {
    font-size: 17px;
    color: black;
}
.disabled-shop-button {
    opacity: .5;
}


/* Single product tabs ucun custom css */
.single-product-accordions {
    margin-top: 40px;
}
.single-product-accordions .master-accordion:first-child .master-accordion-content {
    display: block;
}
.single-product-accordions .master-accordion-content > div strong {
    color: black;
} 



/* Added to cart ucun custom css */
.added-to-cart-notification {
    position: fixed;
    top: 30px;
    right: 30px;
    background: #00ca00;
    color: white;
    padding: 15px 20px;
    z-index: 1000;
    width: 300px;
    font-size: 14px;
    line-height: 1.5;
    display: none;
}
.notification-progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    background: #009300;
    width: 0;
}
.active-notification {
    -webkit-animation-name: progress;
            animation-name: progress;
    -webkit-animation-duration: 5s;
            animation-duration: 5s;
    -webkit-animation-fill-mode: both;
            animation-fill-mode: both;
}
@-webkit-keyframes progress {
    from {
        width: 0%;
    }
    to {
        width: 100%;
    }
}
@keyframes progress {
    from {
        width: 0%;
    }
    to {
        width: 100%;
    }
}


/* Products ucun custom css */
.products, .all-products {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 0 -10px;
}
.ajax-loaded-products {
    padding-top: 0!important;
}
.product {
    width: 25%;
    overflow: hidden;
    position: relative;
    padding: 0 10px 20px;
}
.all-products .product {
    width: 20%;
}
.all-products-area.shop-loading {
    padding: 60px;
}
.product-thumbnails {
    position: relative;
}
.product-thumbnail {
    -webkit-transition: .3s all;
    -o-transition: .3s all;
    transition: .3s all;
}
.product-thumbnail img {
    background: #f5f5f5;
}
.default-product-thumbnail {
    background: #eee;
}
.out-of-stock-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #1f1f1f;
    color: white;
    min-width: 50px;
    height: 25px;
    font-size: 13px;
    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;
    line-height: 1.3;
    padding: 0 10px;
}
.sale-badge {
    position: absolute;
    background: red;
    color: white;
    width: 45px;
    text-align: center;
    top: 0;
    left: 0;
    border-radius: 30px;
    z-index: 10;
    font-size: 14px;
    font-weight: 600;
}
.product-details {
    padding-top: 15px;
}
.product-details a {
    color: var(--main-color);
    font-size: 15px;
    display: table;
}
.product-bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 5px;
}
.product-prices {
    font-size: 20px;
}
.product-add-to-cart, .product-read-more {
    background: #ff9923;
    color: white!important;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    border-radius: 50%;
    cursor: pointer;
    margin: 0!important;
    -webkit-transition: .15s all;
    -o-transition: .15s all;
    transition: .15s all;
}
.product-add-to-cart:hover, .product-read-more:hover {
    background: var(--main-color);
}
.currency {
    font-size: 11px;
    padding-right: 5px;
}
.sale-price {
    text-decoration: line-through;
    color: var(--second-color);
    font-size: 14px;
}
.product-badges {
    position: absolute;
    top: 0;
    right: 0;
}
.badge {
    width: 50px;
    height: 50px;
    text-align: center;
    cursor: pointer;
    font-size: 16px;
    -webkit-transition: .3s all;
    -o-transition: .3s all;
    transition: .3s all;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
.add-favorite-icon {
    width: 30px;
    height: 30px;
    line-height: 30px!important;
    background: white;
    border-radius: 50%;
}
.product-colors {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.product-color {
    display: inline-block;
}
.product-color-label {
    width: 19px;
    height: 19px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid white;
    -webkit-box-shadow: none;
            box-shadow: none;
    margin-left: 2px;
}
.current-product-color-label {
    -webkit-box-shadow: 0 0 0 1px #ddd;
            box-shadow: 0 0 0 1px #ddd;
}
.swiper-wrapper .product {
    width: 100%!important;
    padding: 0;
}
.list-products .product-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.list-products .product-thumbnails {
    width: 230px;
}
.list-products .product-details {
    width: calc(100% - 260px);
}
.list-products .product-price-area {
    font-size: 28px;
}
@media (max-width: 330px) {
    .product {
        width: 100%;
    }
}
@media (min-width: 331px) and (max-width: 767px) {
    .products {
        margin: 0 -5px;
    }
    .product {
        width: 50%;
        padding: 0 5px 20px;
    }
    .product-details {
        padding-top: 10px;
    }
    .product-details a {
        margin-bottom: 3px;
    }
}
@media (min-width: 768px) and (max-width: 999px) {
    .product {
        width: 33.3%;
    }
}



/* Related product ucun custom css */
.related-products-area {
    margin-top: 80px;
    background: white;
}
.related-products-block {
    position: relative;
    padding: 20px;
}
.related-product-heading {
    text-transform: uppercase;
    font-size: 19px;
    text-align: center;
}
.swiper-simple-nav {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    left: -25px;
    font-size: 24px;
    cursor: pointer;
    height: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 30px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
.swiper-simple-next {
    left: auto;
    right: -25px;
}
.swiper-button-disabled {
    display: none;
}


/* Cart ucun custom css */
.cart-tbody {
    margin-bottom: 30px;
}
.cart-blocks {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}
.cart-first {
    width: calc(100% - 350px);
    padding-right: 100px;
}
.cart-second {
    width: 350px;
    max-width: 100%;
}
.cart-tr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 15px;
    background: white;
    margin-bottom: 15px;
}
.cart-td-first {
    width: 130px;
}
.cart-td-second {
    width: calc(100% - 160px);
    position: relative;
}
.cart-image {
    background: #f5f5f5;
    display: block;
}
.cart-product-id {
    font-size: 13px;
    color: #767676;
    font-family: Arial;
    display: inline;
}
.cart-variations {
    font-size: 14px;
    margin: 10px 0;
}
.cart-blocks .variation-comma {
    display: none;
}
.cart-blocks .variation-part-name {
    display: table;
    color: #767676;
}
.cart-td-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.cart-product-title {
    font-size: 17px;
    padding-right: 15px;
}
.cart-product-title a {
    display: table;
    line-height: 1.3;
}
.cart-td-bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 20px;
    margin-left: -7px;
}
.cart-quantity-input input {
    border: 1px solid #e5e5e5;
    height: 30px;
    width: 50px;
    text-align: center;
}
.cart-quantity-input {
    display: inline-block;
    vertical-align: middle;
}
.cart-quantity-arrow {
    width: 20px;
    height: 30px;
    line-height: 30px;
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    font-size: 17px;
    cursor: pointer;
}
.remove-from-cart {
    color: #909090;
    cursor: pointer;
    font-size: 14px;
}
.remove-from-cart span {
    padding-left: 7px;
}
.cart-remove-icon {
    font-size: 19px;
}
.cart-empty {
    height: 50px;
    border: 1px solid #1f1f1f;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
    padding: 0 35px;
    cursor: pointer;
    font-size: 17px;
    -webkit-transition: .3s all;
    -o-transition: .3s all;
    transition: .3s all;
}
.cart-empty:hover {
    background: var(--main-color);
    color: white;
}
@media (max-width: 959px) {
    .cart-first {
        width: 100%;
        padding-right: 0;
        margin-bottom: 40px;
    }
    .cart-second {
        width: 100%;
    }
    .cart-td-first {
        width: 80px;
    }
    .cart-td-second {
        width: calc(100% - 100px);
        position: relative;
    }
}



/* Cart report ucun custom css */
.cart-details h2 {
    font-size: 20px;
    margin-bottom: 15px;
}
.cart-reports {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding-top: 10px;
    border-top: 1px solid #ddd;
    font-size: 16px;
}
.cart-details-price-area {
    background: #ffffff;
    padding: 20px 25px;
    margin-bottom: 30px;
}
.cart-button {
    margin-bottom: 10px;
}
.cart-whatsapp-button:before {
    content: '\f232';
    font-family: FontAwesome;
    margin-right: 10px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    display: inline-block;
    position: absolute;
    left: 10px;
}
.cart-return-to-shop {
    font-size: 17px;
    display: table;
    margin-top: 15px;
}
.cart-return-to-shop:before {
    content: '\e910';
    font-family: feather;
    margin-right: 10px;
    font-size: 18px;
    display: inline-block;
    -webkit-transform: translateY(2px);
        -ms-transform: translateY(2px);
            transform: translateY(2px);
}
.cart-call-me {
    margin-top: 60px;
}
.cart-call-me-description {
    margin-bottom: 15px;
    color: #525252;
}
.cart-call-result {
    text-align: center;
    color: green;
    font-size: 18px;
    line-height: 1.5;
    display: none;
}
.cart-call-result:before {
    content: '\f058';
    font-family: FontAwesome;
    display: block;
    text-align: center;
    font-size: 32px;
}
.call-me-input input {
    background: white!important;
}
@media (min-width: 600px) and (max-width: 959px) {
    .cart-details {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        -webkit-box-align: start;
            -ms-flex-align: start;
                align-items: flex-start;
    }
    .cart-main-action, .cart-call-me {
        width: 48%;
    }
    .cart-main-action {
        -webkit-box-ordinal-group: 3;
            -ms-flex-order: 2;
                order: 2;
    }
    .cart-call-me {
        -webkit-box-ordinal-group: 2;
            -ms-flex-order: 1;
                order: 1;
    }
    .cart-call-me {
        margin-top: 0px;
    }
}



/* Checkout ucun custom css */
.checkout-blocks {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.checkout-block {
    background: white;
}
.checkout-details {
    padding: 20px;
}
.checkout-details .form-element:last-child {
    margin-bottom: 0;
}
.payment-methods {
    margin: 20px 0;
}
.checkout-first {
    width: 60%;
}
.checkout-second {
    width: 33%;
}
.create-new-account {
    display: none;
}
.checkout-page .cart-canvas-products {
    padding: 0;
    height: auto;
    overflow: hidden;
}
.checkout-products a {
    pointer-events: none;
}
.checkout-bottom {
    background: #f5f5f5;
    padding: 20px;
}
.checkout-price-blocks {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.checkout-note {
    margin-bottom: 30px;
}
.payment-method {
    margin-bottom: 5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.checkmark {
    width: 25px;
    height: 25px;
    border: 1px solid #ccc;
    display: inline-block;
}
.checkout-products {
    margin-top: -15px;
}
@media (min-width: 1000px) and (max-width: 1100px) {
    .checkout-first {
        width: 66.6%;
    }
}
@media (max-width: 767px) {
    .checkout-block {
        width: 100%;
    }
    .checkout-first {
        margin-bottom: 40px;
    }
}
@media (min-width: 768px) and (max-width: 999px) {
    .checkout-first, .checkout-second {
        width: 50%;
    }
}


/* Order details ucun custom css */
#customer-order-area {
    margin-bottom: 30px;
}
.thank-you {
    margin-bottom: 30px;
    text-align: center;
    font-size: 22px;
    color: green;
}
.order-details-heading {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    line-height: 1.5;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    padding: 10px 0 0;
    margin-bottom: 40px;
}
.order-details-block {
    width: 20%;
    padding-bottom: 10px;
}
.order-details-first-heading {
    margin-bottom: 3px;
}
.customer-order-table {
    margin-bottom: 40px;
}
.customer-order-table table {
    margin: 0;
}
.order-website-note {
    margin-top: 20px;
}
@media (min-width: 768px) and (max-width: 900px) {
    .order-details-block {
        width: 33.3%;
    }
}
@media (min-width: 501px) and (max-width: 767px) {
    .order-details-block {
        width: 50%;
    }
}
@media (max-width: 500px) {
    .order-details-block {
        width: 100%;
    }
}


/* Uncompleted payment */
.complete-payment-blocks {
    background: #f5f5f5;
    padding: 20px;
    margin-bottom: 30px;
    text-align: center;
}
.cp-first {
    font-size: 18px;
    margin-bottom: 15px;
}


/* Canvas sidebar ucun custom css */
.cart-canvas-sidebar, .quick-canvas-sidebar, .ajax-canvas-search-sidebar {
    width: var(--canvas-cart-width);
    height: 100%;
    position: fixed;
    top: 0;
    right: 0;
    transform: translate3d(100%,0,0);
    background: white;
    z-index: 10000;
    -webkit-transition: .3s all;
    -o-transition: .3s all;
    transition: .3s all;
}
.active-canvas-sidebar {
    transform: none;
}
.canvas-header {
    color: #1f1f1f;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 0 15px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 80px;
    border-bottom: 1px solid #ddd;
}
.canvas-header-first {
    text-transform: uppercase;
    font-size: 22px;
    letter-spacing: 1px;
}
.close-canvas-sidebar {
    position: relative;
    padding-right: 18px;
    cursor: pointer;
}
.close-canvas-sidebar:before, .close-canvas-sidebar:after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    width: 12px;
    height: 2px;
    background: var(--main-color);
    -webkit-transition: .15s;
    -o-transition: .15s;
    transition: .15s;
}
.close-canvas-sidebar:before {
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
}
.close-canvas-sidebar:after {
    -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
}
.close-canvas-sidebar:hover:before, .close-canvas-sidebar:hover:after {
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
    -webkit-transition: .15s;
    -o-transition: .15s;
    transition: .15s;
}
.cart-canvas-body {
    height: calc(100% - 80px);
}
.canvas-product {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 15px 20px 15px 0;
    border-bottom: 1px solid #ddd;
    position: relative;
}
.canvas-product:last-child {
    border-bottom: 0;
}
.canvas-product-image {
    width: 90px;
}
.canvas-product-image a {
    background: #f5f5f5;
    display: block;
}
.canvas-product-details {
    width: calc(100% - 90px);
    padding-left: 15px;
}
.canvas-product-title {
    line-height: 1.4;
    margin-bottom: 10px;
}
.canvas-product-variation {
    color: #767676;
    margin-top: 5px;
}
.canvas-product-variation .variation-comma:first-child {
    display: none;
} 
.remove-canvas-product {
    width: 50px;
    height: 50px;
    line-height: 50px;
    position: absolute;
    top: -5px;
    right: -20px;
    text-align: center;
    font-size: 24px;
    font-weight: 100;
    cursor: pointer;
    color: #ccc;
}
.canvas-variation-details {
    color: #454545;
}
.canvas-variation-details:last-child .canvas-variation-comma {
    display: none;
}
.canvas-product-qauntity {
    font-size: 14px;
    color: #999;
}
.cart-canvas-price-area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 15px 0;
    text-transform: uppercase;
    font-size: 17px;
    border-bottom: 1px solid #ddd;
    margin-bottom: 15px;
    line-height: 1;
}
.cart-canvas-footer a {
    margin-bottom: 10px;
    text-transform: uppercase;
}
.cart-canvas-cart {
    background: white;
    color: black;
}
.cart-canvas-cart:hover {
    background: var(--main-color);
    color: white;
}
.cart-canvas-footer-area {
    position: fixed;
    bottom: 0;
    width: var(--canvas-cart-width);
    height: 190px;
    background: white;
    padding: 0 15px;
    border-top: 1px solid #ddd;
}
.cart-canvas-products {
    height: calc(100% - 190px);
    overflow-y: auto;
    overflow-x: hidden;
    padding: 0 15px;
    min-height: --webkit-fill-avaliable;
}
.active-canvas-sidebar ::-webkit-scrollbar, .product-filters ::-webkit-scrollbar  {
    width: 3px;
}
.active-canvas-sidebar ::-webkit-scrollbar-track, .product-filters ::-webkit-scrollbar-track {
    background: #f1f1f1;
}
.active-canvas-sidebar ::-webkit-scrollbar-thumb, .product-filters ::-webkit-scrollbar-thumb {
    background: #888;
}
.active-canvas-sidebar ::-webkit-scrollbar-thumb:hover, .product-filters ::-webkit-scrollbar-thumb:hover {
    background: #555;
}
@media (max-width: 500px) {
    .cart-canvas-sidebar {
        width: 85%;
    }
}


/* Quick buy ucun custom css */
.quick-canvas-sidebar .cart-canvas-body {
    padding: 25px;
}
.quick-canvas-sidebar img {
    width: 200px;
    margin: 0 auto 30px;
}
.quick-canvas-sidebar h2 {
    text-align: center;
    margin-bottom: 30px;
}
#quick button {
    width: 100%;
    margin-top: 5px;
    text-transform: uppercase;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
.quick-canvas-sidebar .cart-canvas-body {
    overflow-y: auto;
}
.quick-success-message:before {
    content: '\f058';
    font-family: FontAwesome;
    display: block;
    text-align: center;
    font-size: 32px;
    margin-bottom: 5px;
    color: #06bb06;
}
.quick-success-message {
    font-weight: 600;
    text-align: center;
    font-size: 17px;
    display: none;
}



/* Empty canvas ucun custom css */
.empty-canvas-area {
    text-align: center;
    margin: 40px 0;
}
.empty-canvas-icon:before {
    font-size: 70px;
    color: #ddd;
    line-height: 1.4;
}
.empty-canvas-title {
    font-size: 22px;
    text-transform: uppercase;
    margin: 15px 0;
}
.empty-canvas-button a {
    display: inline-block;
    border-bottom: 2px solid #ddd;
}



/* Color attribute ucun custom css */
.color-attribute {
    display: inline-block;
    vertical-align: middle;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    border: 1px solid #ccc;
    margin-right: 5px;
}
.color-all-select .color-attribute {
    background:
	-o-linear-gradient(
		cyan,
		transparent
	),
	-o-linear-gradient(
		135deg,
		magenta,
		transparent
	),
	-o-linear-gradient(
		45deg,
		yellow,
		transparent
	);
    background:
	linear-gradient(
		cyan,
		transparent
	),
	linear-gradient(
		-45deg,
		magenta,
		transparent
	),
	linear-gradient(
		45deg,
		yellow,
		transparent
	);
    background-blend-mode: multiply;
}
.color-select input {
    display: none;
}
.color-select label {
    display: inline-block;
    vertical-align: middle;
    color: var(--main-color);
    font-size: 17px;
    cursor: pointer;
    position: relative;
}
.color-select label:after {
    content: '';
    display: block;
    width: 0;
    opacity: 0;
    height: 2px;
    position: absolute;
    bottom: 0;
    background: var(--main-color);
    -webkit-transition: .3s all;
    -o-transition: .3s all;
    transition: .3s all;
}
.color-select label:hover:after, .color-select input:checked + label:after {
    width: 100%;
    opacity: 1;
}
.color-select {
    margin-bottom: 10px;
}



/* Mobile shop toolbar ucun custom css */
body {
    padding-bottom: 52px;
}
.mobile-shop-toolbar-area {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 998;
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
    -webkit-transition: .4s all;
    -o-transition: .4s all;
    transition: .4s all;
}
.mobile-shop-toolbar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    border-top: 1px solid rgba(240,242,245,1);
    background: white;
}
.toolbar-element {
    width: 20%;
}
.toolbar-element-icon {
    width: 46px;
    height: 52px;
    margin: 0 auto;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.shop-toolbar-notify {
    position: absolute;
    top: 10px;
    right: 5px;
    width: 15px;
    height: 15px;
    line-height: 15px;
    text-align: center;
    background: var(--main-color);
    border-radius: 50%;
    color: white;
    font-weight: 600;
    font-size: 10px;
}
.without-shop-toolbar .mobile-shop-toolbar-area {
    -webkit-transform: translateY(52px);
        -ms-transform: translateY(52px);
            transform: translateY(52px);
}
.without-shop-toolbar {
    padding: 0;
}
@media (min-width: 768px) {
    body {
        padding-bottom: 0;
    }
    .mobile-shop-toolbar-area {
        display: none;
    }
}



/* Sale countdown ucun custom css */
.cool-countdown {
    margin-top: 10px;
}
.cool-countdown .countdown {
    list-style-type: none;
    padding: 0 0 10px;
    margin: 0;
    border-collapse: separate;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}
.cool-countdown .countdown li {
    font-size: 20px;
    display: table-cell;
    position: relative;
    width: 60px;
    padding-bottom: 5px;
    margin-right: 5px;
    background: #eee;
    text-align: center;
    border-radius: 5px;
}
.cool-countdown .countdown li span.countdown-label {
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    width: 100%;
    color: #000;
    margin-top: -8px;
}
.cool-countdown .countdown li span.countdown-number {
    display: block;
    font-size: 26px;
    width: 100%;
    border-bottom: 0;
}
@media (min-width: 321px) and (max-width: 500px) {
    .cool-countdown .countdown li span.countdown-number {
        font-size: 30px;
    }
    .cool-countdown .countdown li span.countdown-label {
        margin-top: -5px;
    }
    .cool-countdown .countdown li:before {
        font-size: 20px;
    }
}
@media (max-width: 320px) {
    .cool-countdown .countdown li span.countdown-number {
        font-size: 22px;
    }
    .cool-countdown .countdown li span.countdown-label {
        font-size: 11px;
    }
    .cool-countdown .countdown li:before {
        font-size: 20px;
    }
}



/* Rating ucun custom css */
.form-rating {
    margin-bottom: 5px;
}
.form-element-rating {
    display: inline-block;
    vertical-align: middle;
}
.rating {
    border: none;
    width: 100%;
    padding: 0;
}
.rating > input { 
    display: none;
} 
.rating > label:before { 
    margin: 0 2px;
    font-size: 1.25em;
    font-family: 'FontAwesome';
    display: inline-block;
    content: "\f005";
}
.rating > .half:before { 
    content: "\f089";
    position: absolute;
}
.rating > label { 
    color: #ddd; 
    float: right; 
    cursor: pointer;
	width: auto;
}
.rating > input:checked ~ label, /* show gold star when clicked */
.rating:not(:checked) > label:hover, /* hover current star */
.rating:not(:checked) > label:hover ~ label { color: #FFD700;  } /* hover previous stars in list */

.rating > input:checked + label:hover, /* hover current star when changing rating */
.rating > input:checked ~ label:hover,
.rating > label:hover ~ input:checked ~ label, /* lighten current selection */
.rating > input:checked ~ label:hover ~ label { color: #FFED85;  } 



/* Quick buy ucun custom css */
.quick-buy-blocks {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}
.quick-buy-first {
    width: 300px;
    text-align: center;
}
.quick-buy-second {
    width: calc(100% - 300px);
    padding-left: 50px;
}
.quick-buy-price-item {
    display: inline-block;
    padding-right: 10px;
}
.quick-buy-price {
    font-size: 22px;
    color: var(--main-color);
}
.quick-buy-sale {
    color: #999;
    text-decoration: line-through;
}
.quick-buy-block button {
    float: right;
}
.required-star {
    color: red;
    padding-left: 3px;
}



/* Product sidebar ucun custom css */
.product-sidebar-widget {
    margin-bottom: 40px;
}
.product-sidebar-title {
    font-size: 22px;
    color: var(--main-color);
    margin-bottom: 30px;
}
.product-sidebar-content input {
    display: none;
}
.product-sidebar-content label {
    color: var(--main-color);
    font-size: 17px;
    display: table;
    margin-bottom: 5px;
    cursor: pointer;
    position: relative;
}
.product-sidebar-content label:after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    opacity: 0;
    height: 2px;
    -webkit-transition: .3s all;
    -o-transition: .3s all;
    transition: .3s all;
    background: var(--main-color);
}
.product-sidebar-content label:hover:after, .product-sidebar-content input:checked + label:after {
    width: 100%;
    opacity: 1;
}
.product-price-filter {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 0 -5px;
}
.product-price-element {
    width: 50%;
    padding: 0 5px;
}
.product-price-element input {
    width: 100%;
    border: 1px solid #ddd;
    height: 30px;
}
.product-sidebar-widget input[type="radio"]:checked + label:after {
    width: 100%;
}



/* Ajax search ucun custom css */
.ajax-canvas-search-sidebar {
    overflow-y: scroll;
}
.ajax-canvas-search-sidebar .cart-canvas-body {
    height: auto;
}
.ajax-search-form-area {
    padding: 35px 15px 15px;
    border-bottom: 1px solid #ddd;
}
.ajax-search-form-area .form-element {
    margin-bottom: 20px;
}
.ajax-search-button {
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: transparent;
    font-size: 18px;
}
.ajax-search-results {
    padding: 30px 15px;
}
.ajax-search-results.shop-loading {
    padding: 60px 15px;
}
.ajax-search-results-heading {
    text-transform: uppercase;
    font-size: 14px;
    margin-bottom: 15px;
}
.all-results-button {
    cursor: pointer;
}
.all-results-button:after {
    content: '\e912';
    font-family: feather;
    margin-left: 7px;
}
.ajax-product {
    padding-bottom: 15px;
}
.ajax-product a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}
.ajax-product-image {
    width: 100px;
}
.ajax-product-details {
    width: calc(100% - 100px);
    padding-left: 15px;
}
.ajax-product-title {
    line-height: 1.3;
    margin-bottom: 5px;
}



/* Load more products ucun custom css */
.load-more-products-area {
    text-align: center;
    margin-top: 40px;
}
.products-count-text {
    color: #767676;
}
.products-count-line {
    width: 300px;
    height: 2px;
    background: #ddd;
    margin: 25px auto 35px;
    position: relative;
}
.products-count-progress {
    height: 2px;
    background: #1f1f1f;
}
.load-products-button {
    height: 50px;
    margin: 0 auto;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border: 1px solid #1f1f1f;
    padding: 0 25px;
    font-size: 15px;
    background: white;
    cursor: pointer;
}
.load-products-button:hover {
    background: var(--main-color);
    color: white;
}



/* Single product comments ucun custom css */
.single-product-comments-area {
    margin-top: 50px;
    background: white;
}
.sp-comment-blocks {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 0 -25px;
}
.sp-comment-block {
    padding: 0 25px 50px;
    width: 50%;
}
.comments-stars-blocks {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border: 1px solid #ddd;
    background: #f5f5f5;
    padding: 20px 20px 20px 0;
    margin-bottom: 30px;
}
.comments-stars-first {
    width: 120px;
}
.comments-stars-second {
    width: calc(100% - 120px);
}
.comments-stars-line {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.comment-icon {
    text-align: center;
    font-size: 32px;
    color: orange;
}
.comment-icon-details {
    text-align: center;
}
.comment-rating-value {
    width: 70px;
}
.comment-rating-value .fa {
    color: orange;
}
.comment-line {
    width: 90%;
    height: 4px;
    background: #ddd;
    position: relative;
}
.comment-line-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: orange;
}
.comment-rating-count {
    width: 80px;
    text-align: right;
}
.comment {
    margin-bottom: 0;
}
.comment-header {
    margin-bottom: 10px;
}
.date.float-right {
    font-size: 14px;
}
.comment-name {
    color: #767676;
}
.comment-author {
    display: none;
}
.comment-block {
    padding: 10px 15px;
    border-left: 0;
    border-right: 0;
    padding: 15px 0;
    border-top: 0;
}
@media (max-width: 767px) {
    .sp-comment-block {
        width: 100%;
    }
}



/* Account orders css */
.account-order-details {
    margin-bottom: 20px;
}
.account-order-headings {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    background: #f5f5f5;
}
.account-order-heading {
    width: 140px;
    padding: 10px 20px;
}
.order-number {
    width: 120px;
}
.order-date {
    width: calc(100% - 500px);
}
.go-to-order {
    width: 100px;
}
.go-to-order a {
    background: white;
    display: block;
    text-align: center;
    height: 40px;
    line-height: 40px;
    border: 1px solid #1f1f1f;
}
.go-to-order a:hover {
    background: var(--main-color);
    color: white;
}
.aoh-first {
    text-transform: uppercase;
    font-size: 12px;
    color: #767676;
}
.aoh-second {
    font-size: 14px;
}


/* Mobile menu ucun custom css */
.menu-item.menu-extra-mobile a {
    background: #f5f5f5;
    border-bottom: 1px solid #efefef;
}
.menu-item.menu-extra-mobile a:hover {
    background: #eee;
}



/* Single product stock ucun custom css */
.single-product-stock {
    margin-top: 30px;
}
.single-out-of-stock {
    display: table;
    background: #1f1f1f;
    color: white;
    padding: 8px 15px;
    line-height: 1;
}
.single-variation-stock {
    display: none;
}



/* All products */
.all-products-blocks {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}
.product-filters {
    width: 250px;
}
.product-area {
    width: calc(100% - 250px);
    padding-left: 30px;
}
@media (min-width: 960px) {
    .product-filters .canvas-header {
        display: none;
    }
}
@media (max-width: 959px) {
    .product-filters {
        width: var(--canvas-width);
        position: fixed;
        top: 0;
        left: 0;
        height: 100%;
        z-index: 1000;
        background: white;
        transform: translate3d(-100%,0,0);
        -webkit-transition: .4s all;
        -o-transition: .4s all;
        transition: .4s all;
    }
    .active-product-filters {
        transform: none;
    }
    .product-area {
        width: 100%;
        padding-left: 0;
    }
    .filter-product-blocks {
        padding: 30px 30px 70px;
        overflow-y: auto;
        height: 100%;
    }
}


/* Filter */
.filter-product-block {
    margin-bottom: 30px;
    background: white;
}
.filter-product-heading span {
    font-size: 15px;
}
.filter-product-content {
    max-height: 250px;
    overflow-y: auto;
    padding: 20px;
}
.filter-product-children {
    margin-left: 15px;
}
.filter-toggle-children {
    position: absolute;
    top: 4px;
    right: 0;
    background: var(--second-color);
    color: white;
    width: 20px;
    height: 20px;
    line-height: 25px;
    text-align: center;
    cursor: pointer;
}
.filter-toggle-children .fe {
    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;
    width: 20px;
    height: 20px;
    -webkit-transition: .4s all;
    -o-transition: .4s all;
    transition: .4s all;
}
.open-filter-toggle-children .fe {
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg);
}
.filter-product-children {
    background: rgb(238 238 238 / 42%);
    padding: 7px 15px;
    margin: 10px 0 10px 15px;
    display: none;
}
.form-filter-item {
    padding: 2px 0;
}
@media (max-width: 959px) {
    .filter-product-content {
        padding: 20px 0 0;
    }
}



/* Filter color */
.filter-color-block {
    display: inline-block;
    position: relative;
    padding: 5px;
}
.filter-color {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid white;
    position: relative;
    padding: 0!important;
}
.filter-color:before {
    content: '';
    width: 34px;
    height: 34px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    border: 1px solid #ddd;
    border-radius: 50%;
    -webkit-transition: .15s all;
    -o-transition: .15s all;
    transition: .15s all;
}
.filter-color:hover:before, .filter-color-block input:checked + label:before {
    border-color: var(--main-color);
}
.filter-color-block input {
    display: none;
}
.filter-tooltip {
    background: black;
    font-size: 12px;
    color: white;
    position: absolute;
    bottom: calc(100% + 5px);
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    padding: 1px 7px;
    margin-left: -2px;
    display: none;
    -webkit-transition: .15s all;
    -o-transition: .15s all;
    transition: .15s all;
}
.filter-color-block:hover .filter-tooltip {
    display: block;
}
.filter-tooltip:before {
    content: '';
    width: 0; 
    height: 0; 
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid var(--main-color);
    position: absolute;
    top: 100%;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
}


/* Filter size */
.filter-size-block {
    display: inline-block;
    margin-right: 2px;
    margin-bottom: 5px;
}
.filter-size-block input {
    display: none;
}
.filter-size-block label {
    width: 44px;
    height: 44px;
    border: 1px solid #ddd;
    display: -webkit-box!important;
    display: -ms-flexbox!important;
    display: flex!important;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
    padding: 0!important;
    -webkit-transition: .15s all;
    -o-transition: .15s all;
    transition: .15s all;
}
.filter-size:hover, .filter-size-block input:checked + label {
    border-color: var(--main-color);
}


/* Shop top area */
.shop-tools-blocks {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 30px;
    background: white;
    padding: 20px;
    align-items: center;
}
.shop-sort-blocks {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 0 -12px;
}
.shop-tool-block {
    position: relative;
    z-index: 1;
}
.shop-tool-first {
    display: none;
}
.shop-tool-button {
    display: none;
}
.shop-sort {
    padding: 0 12px;
}
.shop-sort input {
    display: none;
}
.shop-sort label {
    padding: 0!important;
}
.shop-sort input:checked + label {
    color: var(--second-color);
}
.shop-grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.shop-grid-element {
    margin-left: 10px;
    opacity: .4;
    cursor: pointer;
    -webkit-transition: .15s all;
    -o-transition: .15s all;
    transition: .15s all;
}
.active-shop-grid, .shop-grid-element:hover {
    opacity: 1;
}
.shop-tool-first .fe {
    margin-right: 5px;
}
.shop-tool-second .fe {
    margin-left: 5px;
}
.active-main {
    position: relative;
    z-index: 100;
}
@media (max-width: 959px) {
    .shop-tool-first, .shop-tool-button {
        display: block;
    }
    .shop-tool-third {
        display: none;
    }
    .shop-tool-second .shop-tool-button {
        text-align: right;
    }
    .shop-sort-blocks {
        padding: 5px 0;
        margin: 0;
        width: 150px;
        border: 1px solid #ddd;
        position: absolute;
        top: calc(100% + 10px);
        right: 0;
        background: white;
        display: none;
    }
    .shop-sort {
        padding: 5px 15px;
    }
}



/* Selected filter */
.selected-filter-attr-area {
    margin-bottom: 30px;
}
.selected-filter-attr {
    display: inline-block;
    background: #ffffff;
    padding: 5px 10px 5px 15px;
    margin-right: 10px;
}
.remove-filter-tag {
    display: inline-block;
    vertical-align: middle;
    margin-left: 12px;
    cursor: pointer;
}