/* Single product pages */
.single-product-area {
    padding-bottom: 80px;
}

.single-product-blocks {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -25px -20px;
}

.single-product-block {
    width: 50%;
    padding: 0 25px 20px;
    position: relative;
}

.single-product-left-details {
    position: relative;
}

@media (max-width: 767px) {
    .single-product-block {
        width: 100%;
    }
}



/* Single product header */
.single-product-header {
    position: relative;
    padding-right: 140px;
    margin-bottom: 20px;
}

@media (max-width: 767px) {
    .single-product-header h1 {
        font-size: 20px;
    }
}


/* Single product gallery */
.product-gallery-area {
    display: flex;
    justify-content: space-between;
}

.slider-css-mode {
    width: 100vw;
    margin-left: -50vw;
    margin-right: -50vw;
    left: 50%;
    right: 50%;
    position: relative;
}

.slider-css-mode .product-gallery {
    display: flex;
    overflow-x: auto;
    margin: 0 -2px;
}

.slider-css-mode .product-gallery-item {
    flex-basis: 300px;
    flex-shrink: 0;
    flex-grow: 0;
    padding: 0 2px;
    width: auto !important;
}

.gallery-thumbs {
    width: 100px;
    height: 550px;
}

.gallery-thumbs .swiper-slide {
    border: 1px solid #ddd;
    overflow: hidden;
}

.gallery-thumbs .swiper-slide img {
    height: 100%;
    object-fit: cover;
    cursor: pointer;
}

.gallery-thumbs .swiper-slide-active,
.gallery-thumbs .swiper-slide:hover {
    border-color: #666;
}

.gallery-top-area {
    width: calc(100% - 110px);
    position: relative;
}

.gallery-top {
    height: 550px;
}

.gallery-top .swiper-slide img {
    object-fit: cover;
    height: 100%;
}

.swiper-gallery-nav {
    position: absolute;
    top: 50%;
    z-index: 10;
    font-size: 28px;
    transform: translateY(-50%);
    cursor: pointer;
}

.swiper-gallery-next {
    right: 0;
}

.swiper-gallery-bullets {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.swiper-gallery-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-gallery-bullets .swiper-pagination-bullet:hover {
    opacity: 1;
}

.swiper-gallery-bullets .swiper-pagination-bullet-active {
    opacity: 1;
}

@media (max-width: 767px) {
    .single-product-gallery {
        width: 100vw;
        margin-left: -50vw;
        margin-right: -50vw;
        left: 50%;
        right: 50%;
        position: relative;
    }

    .gallery-thumbs {
        display: none;
    }

    .gallery-top-area {
        width: 100%;
    }

    .swiper-gallery-nav,
    .swiper-gallery-bullets {
        display: none;
    }

    .product-gallery {
        transform: none !important;
    }
}

@media (min-width: 768px) {
    .slider-css-mode {
        display: none;
    }
}


/* Single product ratings */
.product-ratings {
    position: absolute;
    top: 5px;
    right: 0;
    font-size: 13px;
    line-height: 1;
}

.product-ratings i {
    font-size: 12px;
    margin-right: 5px;
}

.product-ratings a {
    display: inline-block;
    border-bottom: 1px solid #888;
    padding-bottom: 5px;
}


/* Single product badges */
.single-product-badges {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 1;
}

.single-product-badge {
    color: white;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    border-radius: 50%;
}

.single-product-badge-sale {
    background: red;
}



/* Single product quantity + buttons */
.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;
}

.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 var(--border-color);
    height: var(--form-height);
    font-size: 18px;
    border-radius: 0;
    border-top-left-radius: var(--border-radius);
    border-bottom-left-radius: var(--border-radius);
}

.single-quantity-arrow-block {
    width: 25px;
    height: calc(var(--form-height) / 2);
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border: 1px solid var(--border-color);
    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-up {
    border-top-right-radius: var(--border-radius);
}

.quantity-down {
    border-top: 0;
    border-bottom-right-radius: var(--border-radius);
}

.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;
    font-weight: 600;
}

.single-product-group-buttons>div {
    margin-right: 15px;
    margin-bottom: 5px;
}

.single-add-to-cart-button:not(.loading):after {
    content: '\e9ca';
    font-family: Feather;
    font-size: 15px;
    margin-left: 10px;
}

.disabled-shop-button {
    opacity: .5;
}

.single-product-extra-buttons {
    margin-top: 25px;
    margin-bottom: 20px;
    display: flex;
}

.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;
}

.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;
}

@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-product-group-buttons>div {
        width: 100%;
        margin-right: 0;
    }

    .single-quick-buy-button a {
        width: 100%;
    }

    .single-product-extra-buttons {
        width: 100%;
        justify-content: space-between;
    }

    .single-product-extra-button {
        font-size: 12px;
        line-height: 1.2;
        width: calc(50% - 5px);
        margin-right: 0;
    }

    .sp-extra-button-icon {
        font-size: 15px;
    }
}


/* Single product meta */
.product-meta-item {
    margin-bottom: 5px;
}


/* Single product-about */
.product-content:not(:empty) {
    margin-top: 30px;
}


/* Dynamic product details */
.dynamic-product-data-area {
    margin-bottom: 30px;
}

.dynamic-product-price {
    font-size: 40px;
    line-height: 1;
}

.dynamic-product-data:not(:empty) {
    font-weight: 600;
    margin-top: 5px;
    margin-bottom: 20px;
}


/* Attributes */
#variation-form {
    margin-bottom: 30px;
}

.attr-area {
    margin-bottom: 10px;
    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-area strong {
    width: 70px;
    display: inline-block;
    vertical-align: middle;
}

.attr-parameters {
    width: calc(100% - 70px);
}

.attr-values {
    display: none;
}

.attr-value {
    border: 1px solid #ddd;
    width: 45px;
    height: 37px;
    line-height: 35px;
    text-align: center;
    margin-right: 5px;
    margin-bottom: 5px;
    color: #616161;
    padding-left: 0 !important;
    /* Default inputdan qacmaq ucun*/
}

.attr-value[data-attr="attr-color-image"] {
    width: 80px;
    height: 100px;
    border-radius: 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #f5f5f5;
}

.label-color[data-attr="attr-color-image"]:before {
    background-size: contain;
    background-repeat: no-repeat;
}

.attr-area input {
    display: none;
}

.attr-area input:checked+label {
    border-color: black;
    color: black;
}

.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 var(--border-color);
    box-shadow: 0 0 0 1px var(--border-color);
    border: 4px 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 black !important;
    box-shadow: 0 0 0 1px black !important;
}

.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;
}

.out-of-attr {
    position: relative;
    opacity: .7;
}

.out-of-attr:before {
    content: '';
    background-image: url(/uploads/ecommerce/cancel-x.svg);
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    opacity: .5;
}


/* Single prices */
.single-variation-prices {
    margin-bottom: 20px;
    font-size: 22px;
    color: var(--second-color);
}

.price-not-detected {
    font-size: 17px;
    color: black;
}

.single-product-right-details .product-price-area {
    margin-bottom: 20px;
}

.single-product-right-details .final-price {
    font-size: 44px;
    color: var(--second-color);
}

.single-product-right-details .sale-price,
.single-sale-price {
    text-decoration: line-through;
    font-size: 22px;
    color: #999;
}

.single-product-right-details .currency,
.single-currency {
    padding-right: 10px;
    font-size: 28px;
    color: var(--second-color);
}

.single-product-kg {
    display: inline-block;
    background: black;
    color: white;
    padding: 3px 10px;
}



/* Single product tabs */
.single-product-accordions {
    margin-bottom: 30px;
}

.single-product-accordions .master-accordion-content>div strong {
    color: black;
}


/* Single product share */
.single-product-block .master-social-share-area {
    margin-bottom: 0;
}


/* Products */
.products-text-area {
    margin-bottom: 30px;
}

.products {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -10px;
}

.product {
    position: relative;
    padding: 0 10px 20px;
    display: flex;
}

.products .product {
    width: 25%;
}

.products-5 .product {
    width: 20%;
}

.products-4 .product {
    width: 25%;
}

.products-3 .product {
    width: 33.3%;
}

.products-2 .product {
    width: 50%;
}

.products-1 .product {
    width: 100%;
}

.swiper-wrapper .product {
    width: 100%;
    padding: 0;
}

.product-inner {
    box-shadow: 0 0 68px 0 rgba(174, 175, 175, .17);
    padding: 0;
    position: relative;
    width: 100%;
}

.all-products-area.shop-loading {
    padding: 60px;
}

.product-thumbnails {
    position: relative;
}

.product-thumbnail {
    position: relative;
}

.product-thumbnail img {
    aspect-ratio: 3 / 4;
    object-fit: cover;
}

.product-action-icons {
    position: absolute;
    top: 10px;
    right: 10px;
}

.product-action-icon {
    width: 50px;
    height: 50px;
    text-align: center;
    cursor: pointer;
    font-size: 16px;
    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;
    -webkit-transition: .3s all;
    -o-transition: .3s all;
    transition: .3s all;
}

.product-details {
    padding: 20px 15px;
}

.product-details a {
    color: black;
    font-size: 16px;
    display: block;
    text-align: center;
}

.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: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 15px;
}

.product-prices {
    font-size: 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    line-height: 1;
}

.product-prices .price-suffix {
    font-size: 14px;
    color: #888;
    line-height: 1.1;
}

.currency {
    font-size: 11px;
    padding-right: 5px;
}

.sale-price {
    text-decoration: line-through;
    color: var(--second-color);
    font-size: 14px;
}

.products-1 .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;
}

.products-1 .product-thumbnails {
    width: 230px;
}

.products-1 .product-details {
    width: calc(100% - 260px);
}

.products-1 .product-price-area {
    font-size: 28px;
}

.add-to-cart-button {
    display: table;
    border: 2px solid var(--main-color);
    border-radius: 30px;
    padding: 8px 30px;
    margin: 15px auto 0;
    font-weight: 600;
    cursor: pointer;
    line-height: 1.3;
    transition: .3s all;
}

.add-to-cart-button:hover {
    background: var(--main-color);
    color: white;
}

@media (max-width: 330px) {
    .product {
        width: 100% !important;
    }
}

@media (min-width: 331px) and (max-width: 767px) {
    .products {
        margin: 0 -5px;
    }

    .product {
        width: 50% !important;
        padding: 0 5px 20px;
    }

    .product-details {
        padding-top: 10px;
    }

    .product-details a {
        margin-bottom: 3px;
    }
}

@media (min-width: 767px) and (max-width: 999px) {
    .product {
        width: 33.3% !important;
    }
}

@media (max-width: 767px) {
    .product-inner {
        padding: 10px;
    }

    .add-to-cart-button {
        margin: 7px auto;
        padding: 6px 20px;
        font-size: 15px;
    }
}



/* Product content wishlist */
.add-favorite-icon {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
}

.non-clickable {
    pointer-events: none;
}



/* Product content colors */
.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;
}



/* Badges */
.product-badges {
    position: absolute;
    top: 10px;
    left: 10px;
}

.product-badge {
    width: 70px;
    height: 25px;
    text-align: center;
    color: white;
    margin-bottom: 5px;
    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;
}

.out-of-stock-badge {
    background: #1f1f1f;
}

.kg-badge {
    background: black;
    padding: 25px 0;
    font-weight: 500;
    line-height: 1.4;
    font-size: 15px;
}

.sale-badge {
    background: red;
}



/* Cart table*/
.cart-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;
}

.cart-first {
    width: calc(100% - 450px);
}

.cart-second {
    width: 350px;
    max-width: 100%;
}

.deactive-cart {
    opacity: .5;
}

.cart-tbody {
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 30px;
}

.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;
    border-top: 1px solid var(--border-color);
    padding: 25px 0;
}

.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-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;
    color: black;
}

.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 {
    display: flex;
    align-items: center;
    font-weight: 600;
}

.cart-quantity-input input {
    border: 2px solid var(--main-color);
    height: 30px;
    width: 70px;
    text-align: center;
    border-radius: 30px;
    font-weight: 600;
}

.cart-quantity-arrow {
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    font-size: 17px;
    cursor: pointer;
}

.remove-from-cart {
    color: #909090;
    cursor: pointer;
    font-size: 14px;
    line-height: 1;
}

@media (max-width: 959px) {
    .cart-first {
        width: 100%;
        margin-bottom: 40px;
    }

    .cart-second {
        width: 100%;
    }

    .cart-td-first {
        width: 80px;
    }

    .cart-td-second {
        width: calc(100% - 100px);
        position: relative;
    }
}



/* Cart reports */
.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: 10px 0;
    border-top: 1px solid #ddd;
    font-size: 16px;
}

.cart-final-report {
    font-weight: 600;
}

.cart-final-report .cart-report-second {
    font-size: 20px;
}

.cart-details-price-area {
    background: #f5f5f5;
    padding: 20px 25px;
    margin-bottom: 30px;
}

.cart-button {
    margin-bottom: 10px;
}

.cart-whatsapp-button {
    background: #32ac32;
    color: white;
}

.cart-whatsapp-button:before {
    content: '\f232';
    font-family: 'Font Awesome 6 Brands';
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    display: inline-block;
    position: absolute;
    left: 10px;
    font-weight: 400;
}

.cart-return-to-shop {
    display: table;
    margin-top: 15px;
    color: black;
}

.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);
}

@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;
    }
}



/* Checkouts */
.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;
    margin: 0 -25px;
}

.checkout-block {
    padding: 0 25px;
}

.checkout-first {
    width: 60%;
}

.checkout-second {
    width: 33%;
}

.checkout-details {
    margin-bottom: 30px;
}

.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;
    margin-bottom: 30px;
}

.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;
}

.payment-form {
    display: none;
}

@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 detailss */
#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;
}

.customer-website-note {
    padding: 15px 0;
    border-bottom: 1px solid #ddd;
}

.order-table-image {
    width: 100px;
}

.order-table-image img {
    aspect-ratio: 3/4;
    object-fit: cover;
}

@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 sidebars */
.cart-canvas-sidebar,
.quick-canvas-sidebar,
.ajax-canvas-search-sidebar {
    width: 350px;
    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: black;
    -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;
}

.deactive-canvas-product {
    opacity: .5;
}

.canvas-product:last-child {
    border-bottom: 0;
}

.canvas-product-image {
    width: 90px;
}

.canvas-product-image a {
    background: #f5f5f5;
    display: block;
}

.canvas-product-image img {
    aspect-ratio: 1;
    object-fit: contain;
}

.canvas-product-details {
    width: calc(100% - 90px);
    padding-left: 15px;
}

.canvas-product-title {
    line-height: 1.4;
    margin-bottom: 10px;
}

.canvas-product-title a {
    color: black;
}

.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;
    height: 210px;
    background: white;
    padding: 0 15px;
    border-top: 1px solid #ddd;
    width: 350px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.cart-canvas-products {
    height: calc(100% - 210px);
    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 buys */
.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 */
.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 attributes */
.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 toolbars */
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%;
    height: 52px;
}

.toolbar-element-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    font-size: 26px;
    line-height: 0;
}

.toolbar-element-icon {
    position: relative;
    color: var(--second-color);
}

.shop-toolbar-notify {
    position: absolute;
    top: 0;
    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 countdowns */
.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;
    }
}



/* Ratings */
.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 buys */
.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 sidebars */
.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%;
}

.price-submit-button {
    overflow: hidden;
}



/* Load more products */
.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 */
#product-comments-area {
    scroll-margin-top: 120px;
}

.single-product-comment-area {
    padding-bottom: 80px;
}

.sp-comment-blocks {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -25px -40px;
}

.sp-comment-block {
    padding: 0 25px 40px;
    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 */
.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 menus */
.menu-item.menu-extra-mobile a {
    background: #f5f5f5;
    border-bottom: 1px solid #efefef;
}

.menu-item.menu-extra-mobile a:hover {
    background: #eee;
}



/* Single product stocks */
.single-product-stock {
    margin-bottom: 30px;
}

.single-out-of-stock {
    display: table;
    background: #1f1f1f;
    color: white;
    padding: 8px 15px;
    line-height: 1;
}



/* 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: 300px;
        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 120px;
        overflow-y: auto;
        height: 100%;
    }
}


/* Filter */
.filter-product-block {
    margin-bottom: 30px;
}

.filter-product-heading {
    margin-bottom: 10px;
}

.filter-product-heading span {
    font-size: 15px;
}

.filter-product-content {
    max-height: 250px;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 10px;
}

.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;
}

.active-filter-main {
    z-index: 100;
    position: relative;
}


/* Filter color */
.filter-color-block {
    display: inline-block;
    position: relative;
    padding: 5px;
    width: 100%;
}

.filter-color-block .filter-product-content {
    overflow: unset;
}

.filter-color-block .form-filter-item {
    display: inline-block;
    padding: 0 4px 12px 0;
}

.filter-color-block label {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid white;
    position: relative;
    padding: 0 !important;
    font-size: 0;
}

.filter-color-block label: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-block label: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 .form-filter-item: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;
}

.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;
    font-weight: 600;
}

.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: #f5f5f5;
    padding: 5px 10px 5px 15px;
    margin-right: 10px;
}

.remove-filter-tag {
    display: inline-block;
    vertical-align: middle;
    margin-left: 12px;
    cursor: pointer;
}



/* Related products */
.single-product-combined-area {
    margin-bottom: 50px;
}


/* Cool alert */
#alert:empty {
    display: none;
}

#alert:not(:empty) {
    position: fixed;
    top: 30px;
    right: 30px;
    z-index: 10000;
    background: #ffbaba;
    border-radius: var(--border-radius);
    padding: 15px 30px;
    font-weight: 600;
    border: 1px solid #ed7777;
    overflow: hidden;
}

#alert:before {
    content: '';
    position: absolute;
    bottom: 0;
    height: 3px;
    background: #da5959;
    width: 0;
    display: block;
    left: 0;
    transition: width 2.5s linear;
}

#alert.active:before {
    width: 100%;
}




/* END */
/* END */
/* END */
/* END */
/* END */
/* END */
/* END */
/* END */
/* END */