/*
* Project Name             :  Firexa - Car Modification WordPress Theme
* Author                   :  technoqube.com
* Version                  :  1.0
* Design and Developed by  :  TechnoQube
*/


/*
NOTE: This is main stylesheet of template, This file contains the styling for the actual Template. Please do not change anything here! write in a custom.css file if required!
*/

/* ==================================================
Table Of Content - start
================================================== */
/* 

01 - Product Single
02 - Product Style
03 - Product Column
04 - Tooltip
05 - My Account
06 - Cart Page
07 - Checkout Page
08 - Order Received Page
09 - Sidebar
10 - Quick View Popup
11 - Woocommerce Cart Sidebar
12 - Woocommerce Breadcrumb
13 - Woocommerce Shop Page

/* Table Of Content - End
================================================== */



/* ==================================================
01 - Product Single - Start
================================================== */

.woocommerce .product.single-style-1 .single-product-top {
    padding-bottom: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 45px;
}

.woocommerce .product.single-style-1 .single-product-top .techq-product-gallery {
    margin: 0;
    position: relative;
}

.woocommerce #content .product.single-style-1 .single-product-top .techq-product-gallery .woocommerce-product-gallery {
    width: 100%;
    margin-bottom: 0;
}

.woocommerce #content .product.single-style-1 .single-product-top .techq-product-gallery .woocommerce-product-gallery .flex-control-thumbs {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.woocommerce .product.product.single-style-1 .images .flex-control-thumbs li {
    width: 80px;
}

.woocommerce .product.product.single-style-1 .images .flex-control-thumbs li img {
    border: 1px solid transparent;
    transition: var(--transition);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
}

.woocommerce .product.product.single-style-1 .images .flex-control-thumbs li:hover img,
.woocommerce .product.product.single-style-1 .images .flex-control-thumbs li img.flex-active {
    border: 1px solid var(--dark-color);
}

.woocommerce.single-product .product .product_title {
    margin-bottom: 10px;
}

.woocommerce.single-product .product .woocommerce-product-rating {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.woocommerce.single-product .product .woocommerce-product-rating a {
    color: var(--dark-color);
    text-decoration: none;
    font-size: 12px;
    margin-left: 5px;
}

.woocommerce.single-product .product p.price,
.woocommerce.single-product .product span.price {
    margin-bottom: 20px;
    font-size: 24px;
    line-height: 32px;
    font-weight: 500;
    color: var(--dark-color);
}

.woocommerce.single-product .product p.price del {
    opacity: .5;
    font-size: 18px;
    line-height: 26px;
}

.woocommerce .product p.price ins,
.woocommerce .product span.price ins {
    font-weight: inherit;
    text-decoration: none;
}

.woocommerce.single-product .woocommerce-product-details__short-description p {
    margin-bottom: 30px;
}

/* Tabs */

.woocommerce .product .techq-single-product-bottom .woocommerce-tabs {
    position: relative;
    border-bottom: 1px solid var(--light-black);
    border-top: 1px solid var(--light-black);
    padding: 45px 0;
}

.woocommerce .product .techq-single-product-bottom .woocommerce-tabs ul.tabs {
    margin: 0 0 45px 0;
    padding: 0;
}

.woocommerce .product .techq-single-product-bottom .woocommerce-tabs ul.tabs::before {
    border-bottom: none;
}

.woocommerce .product .techq-single-product-bottom .woocommerce-tabs ul.tabs li {
    padding: 0;
    margin: 0 30px 0 0;
}

.woocommerce .product .techq-single-product-bottom .woocommerce-tabs ul.tabs li {
    border: none;
    border-radius: 0;
    background: transparent;
}

.woocommerce .product .techq-single-product-bottom .woocommerce-tabs ul.tabs li.active {
    background: transparent;
}

.woocommerce .product .techq-single-product-bottom .woocommerce-tabs ul.tabs li::before,
.woocommerce .product .techq-single-product-bottom .woocommerce-tabs ul.tabs li::after {
    border-radius: 0;
    border: none;
}

.woocommerce .product .techq-single-product-bottom .woocommerce-tabs ul.tabs li.active::before {
    box-shadow: none;
}

.woocommerce .product .techq-single-product-bottom .woocommerce-tabs ul.tabs li a {
    font-weight: 400;
    color: var(--secondary-color);
    position: relative;
}

.woocommerce .product .techq-single-product-bottom .woocommerce-tabs ul.tabs li.active a {
    color: var(--dark-color);
    position: relative;
}

.woocommerce .product .techq-single-product-bottom .woocommerce-tabs ul.tabs li a:hover {
    color: var(--dark-color);
}

.woocommerce .product .techq-single-product-bottom .woocommerce-tabs ul.tabs li a:before {
    content: "";
    width: 0;
    height: 1px;
    background: var(--dark-color);
    position: absolute;
    bottom: 0;
    left: 0;
    transition: var(--transition);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
}

.woocommerce .product .techq-single-product-bottom .woocommerce-tabs ul.tabs li a:hover:before,
.woocommerce .product .techq-single-product-bottom .woocommerce-tabs ul.tabs li.active a:before {
    width: 100%;
}

.woocommerce .product .techq-single-product-bottom .woocommerce-tabs .panel {
    max-width: 1024px;
}

.woocommerce .product .techq-single-product-bottom .woocommerce-tabs .woocommerce-Tabs-panel--description h2 {
    display: none;
}

.woocommerce .product .techq-single-product-bottom .woocommerce-tabs .woocommerce-Tabs-panel--additional_information h2 {
    display: none;
}

.woocommerce .product .related.products {
    padding-top: 75px;
}

.woocommerce .product .related.products h2 {
    text-align: center;
    margin-bottom: 30px;
    font-weight: 400;
    font-size: 32px;
    line-height: 40px;
}


.woocommerce .product .star-rating {
    float: none;
    margin: initial;
    color: #ffb400;
    font-size: 12px;
}

.woocommerce .product form.cart {
    margin-bottom: 30px;
}

.woocommerce .product form.cart .quantity {
    border: 1px solid var(--light-black);
    position: relative;
    margin-right: 10px;
    float: none;
    display: inline-block;
    height: 50px;
    transition: var(--transition);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
}

.woocommerce .product form.cart .quantity.hidden {
    display: none;
}

.woocommerce .product form.cart table .quantity {
    display: flex;
}

.woocommerce .product form.cart .group_table td.woocommerce-grouped-product-list-item__label a {
    text-decoration: none;
}

.woocommerce .product form.cart table.group_table {
    border: 1px solid var(--light-black);
    margin-bottom: 30px;
    border-right: 0;
    border-left: 0;
    font-size: 14px;
    line-height: 22px;
    color: var(--dark-color);
}

.woocommerce .product form.cart table.group_table .quantity {
    border: none;
}

.woocommerce .product form.cart table.group_table tr {
    border-bottom: 1px solid var(--light-black);
}

.woocommerce .product form.cart table.group_table tr:last-child {
    border: none;
}

.woocommerce .product form.cart table.group_table td {
    vertical-align: middle;
}

.woocommerce .product form.cart table.group_table td {
    padding: 8px 0;
}

.woocommerce .product form.cart table.group_table td:first-child {
    width: auto;
}

.woocommerce .product form.cart table.group_table p.stock {
    margin-bottom: 0;
}

.woocommerce .product form.cart .single-add-to-cart-wrapper {
    display: flex;
    gap: 30px;
}

.woocommerce .product form.cart .quantity:hover {
    border-color: var(--dark-color);
}

.woocommerce .product form.cart .quantity [type="button"] {
    background: none;
    color: var(--secondary-color);
    width: 40px;
    font-size: 30px;
    line-height: normal;
    padding: 0;
    padding-bottom: 5px;
    vertical-align: top;
}

.woocommerce .product form.cart .quantity .plus[type="button"] {
    font-size: 20px;
    line-height: 46px;
}

.woocommerce .product form.cart .quantity [type="button"]:hover {
    color: var(--dark-color);
}

.woocommerce .product form.cart .quantity .input-text {
    padding: 0;
    width: 40px;
    height: 50px;
    line-height: 50px;
    vertical-align: top;
    text-align: center;
    float: none;
    border: 0;
    outline: 0;
    -webkit-appearance: none !important;
    background: transparent;
    border-radius: 0;
}

.woocommerce .product form.cart .quantity .techq-qty-btn {
    position: absolute;
    left: 0;
    font-size: 20px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    cursor: pointer;
}

.woocommerce .product form.cart .quantity .techq-qty-btn i {
    font-family: "Font Awesome 5 Brands";
}

.woocommerce .product form.cart .quantity .techq-qty-btn.quantity-minus {
    right: 0;
    left: auto;
}

.woocommerce .product form.cart .button.single_add_to_cart_button {
    border-radius: 0;
    font-weight: 400;
    text-transform: capitalize;
    background: var(--dark-color);
    float: none;
    display: inline-block;
    vertical-align: top;
}

.woocommerce .product form.cart .product-single-meta-btns {
    display: inline-block;
    vertical-align: top;
}

.woocommerce .product .product_meta {
    display: inline-block;
    width: 100%;
    padding: 10px 0;
}

.woocommerce .product .product_meta>span {
    display: block;
    color: var(--dark-color);
    font-weight: 500;
}

.woocommerce .product .product_meta>span:last-child {
    margin-right: 0;
}

.woocommerce .product .product_meta>span span,
.woocommerce .product .product_meta>span a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 400;
}

.woocommerce .product .woocommerce-variation .woocommerce-variation-price {
    margin-bottom: 15px;
}

.woocommerce .product .techq-single-product-share {
    display: flex;
    justify-content: center;
    align-items: center;
}

.woocommerce .product .techq-single-product-share .techq-share-name {
    color: var(--dark-color);
    display: inline-block;
    margin-right: 10px;
    font-weight: 500;
}

.woocommerce .product .techq-single-product-share .techq-share-itmes {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.woocommerce .product .techq-single-product-share .techq-share-itmes li {
    display: inline-block;
    margin-right: 10px;
}

.woocommerce .product .techq-single-product-share .techq-share-itmes li a {
    text-align: center;
    display: inline-block;
    color: var(--dark-color);
}

.woocommerce .product .upsells {
    padding-top: 90px;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--light-black);
}

.woocommerce .product .upsells h2 {
    text-align: center;
    margin-bottom: 30px;
}

.woocommerce .product form.cart .variations label {
    font-weight: 400;
}

.woocommerce .product form.cart .variations td.label {
    text-align: center;
    padding: 0;
    padding-top: 10px;
}

.woocommerce .product form.cart .variations td.value {
    text-align: center;
    padding: 0;
}

.woocommerce .product form.cart .reset_variations {
    color: red;
    text-decoration: none;
    padding-top: 0px;
    display: inline-block;
    width: 100%;
    text-align: center;
    font-size: 16px;
    line-height: 24px;
}

.woocommerce .product form.cart .reset_variations:hover {
    color: var(--dark-color);
}

.woocommerce .product form.cart .variations select {
    border-radius: 0;
}

.woocommerce.woo-variation-swatches.wvs-show-label .product form.cart .variations td {
    display: inline-block;
}

.woocommerce.woo-variation-swatches.wvs-show-label .product form.cart .variations td.label {
    padding-top: 5px;
    padding-right: 5px;
}

.woocommerce.woo-variation-swatches.wvs-show-label .product form.cart .variations td.label span.woo-selected-variation-item-name {
    display: none;
}

.woocommerce.woo-variation-swatches.wvs-show-label .product form.cart .variations label {
    color: var(--dark-color);
}

.woo-variation-swatches.wvs-style-squared .variable-items-wrapper .variable-item {
    border-radius: 0;
    transition: var(--transition);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
}

.woo-variation-swatches .variable-items-wrapper {
    justify-content: center;
}

.woo-variation-swatches .variable-items-wrapper .variable-item:not(.radio-variable-item).selected,
.woo-variation-swatches .variable-items-wrapper .variable-item:not(.radio-variable-item).selected:hover {
    box-shadow: 0 0 0 1px var(--dark-color);
    background: var(--dark-color);
    color: var(--white-color);
}

.woo-variation-swatches .variable-items-wrapper .variable-item:not(.radio-variable-item) {
    box-shadow: 0 0 0 1px var(--grey-color);
}

.woo-variation-swatches .variable-items-wrapper .variable-item:not(.radio-variable-item):hover {
    box-shadow: 0 0 0 1px var(--dark-color);
}

.woo-variation-swatches.wvs-style-rounded .variable-items-wrapper .variable-item,
.woo-variation-swatches.wvs-style-rounded .variable-items-wrapper .variable-item .variable-item-span,
.woo-variation-swatches.wvs-style-rounded .variable-items-wrapper .variable-item .variable-item-span:after,
.woo-variation-swatches.wvs-style-rounded .variable-items-wrapper .variable-item img {
    border-radius: 0;
}

.variable-item:not(.radio-variable-item) {
    width: auto;
    height: auto;
}

.woo-variation-swatches .variable-items-wrapper .variable-item:not(.radio-variable-item) {
    padding: 0 12px;
    margin: 5px 5px 20px;
}

.woo-variation-swatches .variable-items-wrapper.image-variable-wrapper .variable-item:not(.radio-variable-item).selected,
.woo-variation-swatches .variable-items-wrapper.image-variable-wrapper .variable-item:not(.radio-variable-item).selected:hover {
    box-shadow: 0 0 0 1px var(--dark-color);
    background: transparent;
}

.woo-variation-swatches .variable-items-wrapper.image-variable-wrapper .variable-item {
    padding: 5px;
    width: 45px;
    height: 45px;
    border-radius: 100px;
}

.woo-variation-swatches .variable-items-wrapper.image-variable-wrapper .image-variable-item .variable-item-image {
    width: 35px;
    height: 35px;
    border-radius: 100px;
}

.woo-variation-swatches.wvs-attr-behavior-blur .variable-item:not(.radio-variable-item).disabled .variable-item-contents:before,
.woo-variation-swatches.wvs-attr-behavior-blur .variable-item:not(.radio-variable-item).disabled .variable-item-contents:after {
    margin: 0 auto !important;
    width: 30%;
}

.woocommerce table.shop_attributes {
    background: var(--white-color);
}

.woocommerce table.shop_attributes th,
.woocommerce table.shop_attributes td {
    border: 1px solid #e2dfdf;
    padding: 5px 30px;
}

.woocommerce table.shop_attributes a {
    text-decoration: none;
}

.woocommerce table.shop_attributes th {
    font-weight: 400;
    width: 50%;
}

.woocommerce table.shop_attributes th.woocommerce-product-attributes-item__label {
    color: var(--dark-color);
    font-weight: 500;
    text-transform: capitalize;
}

.woocommerce #reviews #comments h2 {
    text-align: center;
    margin-bottom: 30px;
}

.woocommerce #reviews #comments ol.commentlist li {
    margin-bottom: 15px;
    list-style: none;
}

.woocommerce #review_form #respond p.stars {
    margin-bottom: 0;
}

.woocommerce #reviews p.stars a::before {
    top: 5px;
    color: #ffb400;
}

.woocommerce #review_form #respond input,
.woocommerce #review_form #respond textarea {
    background: var(--white-color);
    height: 50px;
    line-height: 50px;
    border-radius: 0;
}

.woocommerce #review_form #respond p.comment-form-email {
    margin-left: 10px;
    margin-right: 10px;
}

.woocommerce #reviews #comments ol.commentlist li .comment-text {
    border: 1px solid var(--light-black);
    border-radius: 0;
    background: var(--white-color);
    margin: 0 0 0 65px;
}

.woocommerce .product .woocommerce-Reviews .star-rating {
    float: right;
}

.woocommerce #reviews #comments ol.commentlist li .comment-text p.meta {
    font-size: 14px;
    margin-bottom: 5px;
}

.woocommerce #reviews #comments ol.commentlist li .comment-text p.meta strong {
    font-size: 16px;
    font-weight: 400;
    text-transform: capitalize;
    color: var(--dark-color);
}

.woocommerce #reviews .star-rating span::before {
    color: #ffb400;
}

.woocommerce #reviews #comments ol.commentlist li img.avatar {
    padding: 0;
    width: 50px;
}

.woocommerce #reviews .comment-respond {
    display: block;
}

.woocommerce #reviews .comment-respond .comment-reply-title {
    color: var(--dark-color);
    font-weight: 400;
    text-transform: capitalize;
}

.woocommerce #review_form #respond p.comment-notes {
    margin-bottom: 15px;
}

.woocommerce #review_form #respond p.comment-form-email {
    margin-left: 0;
    margin-right: 0;
}

.woocommerce #reviews #review_form .comment-respond .comment-form-author,
.woocommerce #reviews #review_form .comment-respond .comment-form-email,
.woocommerce #reviews #review_form .comment-respond .comment-form-url {
    width: 100%;
    display: block;
    margin-bottom: 15px;
}

.woocommerce #reviews #review_form .comment-respond .comment-form-url {
    margin-bottom: 15px;
}

.woocommerce #review_form #respond p.comment-form-comment label {
    margin-bottom: 10px;
}

.woocommerce #review_form #respond textarea {
    height: 130px;
}

.woocommerce #review_form #respond p.form-submit {
    margin-top: 15px;
}

@media(max-width:1199px) {
    .woocommerce .product.single-style-1 .single-product-top .techq-product-info {
        padding: 0 30px;
    }

    .woocommerce .product form.cart .button.single_add_to_cart_button {
        font-size: 14px;
    }

    .woocommerce .product form.cart .quantity [type="button"] {
        width: 30px;
    }

    .woocommerce .product form.cart .quantity .input-text {
        width: 30px;
    }
}

@media(max-width:1023px) {

    .woocommerce .product .related.products {
        padding-top: 80px;
    }


}

@media(max-width:991px) {
    .woocommerce .product form.cart .button.single_add_to_cart_button {
        font-size: 16px;
    }

    .woocommerce .product form.cart .quantity [type="button"] {
        width: 40px;
    }

    .woocommerce .product form.cart .quantity .input-text {
        width: 40px;
    }

    .woocommerce .product.single-style-1 .single-product-top .techq-product-gallery {
        width: 100%;
        padding: 0;
    }

    .woocommerce .product.single-style-1 .single-product-top .techq-product-info {
        width: 100%;
        padding: 0 15px;
    }

}

@media(max-width:767px) {
    .woocommerce .product form.cart .single-add-to-cart-wrapper {
        display: block;
    }

    .woocommerce .product form.cart .quantity {
        display: flex;
        justify-content: space-between;
    }

    .woocommerce .product form.cart .button.single_add_to_cart_button {
        width: 100%;
        margin-top: 30px;
        margin-bottom: 30px;
    }

    .woocommerce .product .related.products {
        padding-top: 60px;
    }

    .woocommerce .single-style-5 .related.products {
        padding-top: 60px;
    }
}

@media(max-width:479px) {
    .woocommerce .product form.cart .single-add-to-cart-wrapper {
        display: block;
    }

    .woocommerce .product form.cart .quantity {
        width: 100%;
    }

    .woocommerce .product form.cart .button.single_add_to_cart_button {
        width: 100%;
        margin-bottom: 30px;
    }
}

/* Product Single - End
================================================== */



/* ==================================================
02 - Product Style - Start
================================================== */


.techq-product-wrapper.style-1 {
    text-align: center;
}

.techq-product-wrapper.style-1 .techq-product-inner .techq-product-thumbnail {
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
}

.techq-product-wrapper.style-1 .techq-product-inner .techq-product-thumbnail a {
    position: relative;
    display: block;
}

.techq-product-wrapper.style-1 .techq-product-inner .techq-product-thumbnail img {
    width: 100%;
    -moz-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    backface-visibility: hidden;
    transform-origin: center center;
    transition: var(--transition);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
}

.techq-product-wrapper.style-1 .techq-product-inner .techq-product-thumbnail img.zoomImg {
    transition: none;
}

.techq-product-wrapper.style-1 .techq-product-inner .techq-product-thumbnail-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: var(--transition);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
}

.techq-product-wrapper.style-1:hover .techq-product-inner .techq-product-thumbnail .techq-product-main-image {
    opacity: 0;
}

.techq-product-wrapper.style-1:hover .techq-product-inner .techq-product-thumbnail .techq-product-thumbnail-hover {
    opacity: 1;
}

.techq-product-wrapper.style-1:hover .techq-product-inner .techq-product-thumbnail .techq-product-main-image {
    -webkit-transform: scale(1.05, 1.05);
    transform: scale(1.05, 1.05);
}

.techq-product-wrapper.style-1:hover .techq-product-inner .techq-product-thumbnail .techq-product-thumbnail-hover {
    opacity: 1;
    -webkit-transform: scale(1.05, 1.05);
    transform: scale(1.05, 1.05);
}

.techq-product-wrapper.style-1 .techq-product-inner .techq-product-thumbnail .techq-product-badge,
.techq-product-wrapper.style-1 .techq-product-inner .techq-product-thumbnail .techq-on-sale,
.techq-product-wrapper.style-1 .techq-product-inner .techq-product-thumbnail .techq-sold-label {
    position: absolute;
    top: 5%;
    left: 5%;
    right: auto;
    z-index: 2;
    display: block;
    font-size: 12px;
    font-weight: 400;
    padding: 5px 12px;
    line-height: 1;
    text-align: center;
    letter-spacing: normal;
    background: #262626;
    color: var(--white-color);
    min-width: inherit;
    min-height: inherit;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
}

.techq-product-wrapper.style-1 .techq-product-inner .techq-actions-wrapper {
    position: absolute;
    width: 160px;
    height: 50px;
    bottom: 20px;
    left: 50%;
    margin-left: -80px;
    background: #fff;
    box-shadow: none;
    opacity: 0;
    transform: scale(.85);
    transition: var(--transition);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
    z-index: 9;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
}

.techq-product-wrapper.style-1 .techq-product-inner .techq-actions-inner {
    align-items: center;
    justify-content: center;
    display: flex;
    height: 100%;
}

.techq-product-wrapper.style-1 .techq-product-inner .techq-actions-inner a span.cart-text,
.techq-product-wrapper.style-1 .techq-product-inner .techq-actions-inner a.added {
    display: none;
}

.techq-product-wrapper.style-1 .techq-product-inner .techq-actions-inner a.add_to_cart_button.loading:before {
    position: absolute;
    content: "";
    background: url(../img/ajax-loader.svg) no-repeat center center;
    width: 25px;
    height: 25px;
    visibility: visible;
    opacity: 1;
    top: 50%;
    border: none;
    transform: translate(-50%, -50%);
    left: 50%;
    transition: var(--transition);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
}

.techq-product-wrapper.style-1 .techq-product-inner .techq-actions-inner a.add_to_cart_button.loading:hover:before {
    background: url(../img/ajax-loader-white.svg) no-repeat center center;
}

.techq-product-wrapper.style-1 .techq-product-inner .techq-actions-inner a.add_to_cart_button.loading>i {
    display: none;
}

.techq-product-wrapper.style-1 .techq-product-inner .techq-actions-inner a.added_to_cart {
    font-size: 0;
}

.techq-product-wrapper.style-1 .techq-product-inner .techq-actions-inner a.added_to_cart:before {
    content: "\e92c";
    font-size: 18px;
    font-family: 'firexa-moon' !important;
    font-weight: 400;
}

.techq-product-wrapper.style-1 .techq-product-inner .techq-actions-inner a {
    color: var(--dark-color);
    background: transparent;
    font-size: 18px;
    display: inline-flex;
    float: none;
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    margin: 0;
    transition: var(--transition);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
    cursor: pointer;
    border-right: 1px solid var(--grey-color);
}

.techq-product-wrapper.style-1 .techq-product-inner .techq-actions-inner a:hover {
    color: var(--white-color);
    background: var(--dark-color);
    border-color: var(--dark-color);
}

.techq-product-wrapper.style-1 .techq-product-inner .techq-actions-inner a.techq-product-quickview {
    border: none;
}

.techq-product-wrapper.style-1 .techq-product-inner .techq-actions-inner a i {
    transform: scale(1);
    margin: 0;
}

.techq-product-wrapper.style-1:hover .techq-product-inner .techq-actions-wrapper {
    opacity: 1;
    transform: scale(1);
}

.techq-product-wrapper.style-1 .techq-product-inner .techq-product-info {
    padding: 15px 0 0 0;
}

.techq-product-wrapper.style-1 .techq-product-inner .techq-product-info .product-title {
    padding: 0;
    font-size: 20px;
    line-height: 28px;
}

.techq-product-wrapper.style-1 .techq-product-inner .techq-product-info .product-title a {
    font-size: 18px;
    line-height: 26px;
}

.techq-product-wrapper.style-1 .techq-product-inner .techq-product-info .techq-product-price {
    font-size: 16px;
    line-height: 24px;
    margin-top: 10px;
    font-weight: 500;
    color: var(--dark-color);
}

.techq-product-wrapper.style-1 .techq-product-inner .techq-product-info .techq-product-price del {
    font-size: 14px;
    line-height: 22px;
    color: #a6a6a6;
}

.techq-product-wrapper.style-1 .techq-product-inner .techq-product-info .techq-product-price ins {
    text-decoration: none;
}

.techq-product-wrapper.style-1 .techq-product-inner .techq-product-info .techq-actions-inner-mobile {
    display: none;
    margin-top: 10px;
}

.techq-product-wrapper.style-1 .techq-product-inner .techq-product-info .techq-actions-inner-mobile a {
    width: 100%;
    display: block;
    text-align: center;
    font-weight: 400;
    text-transform: capitalize;
    background: var(--dark-color);
    color: var(--white-color);
    font-size: 16px;
    padding: 0;
    height: 50px;
    line-height: 50px;
}

.techq-product-wrapper.style-1 .techq-product-inner .techq-product-info .techq-actions-inner-mobile a:hover {
    background: var(--primary-color);
}

.techq-product-wrapper.style-1 .techq-product-inner .techq-product-info .techq-actions-inner-mobile a i {
    display: none;
}

@media(max-width:1023px) {
    .techq-product-wrapper.style-1 .techq-product-inner .techq-actions-inner a.techq-product-quickview {
        display: none;
    }

    .techq-product-wrapper.style-1 .techq-product-inner .techq-actions-wrapper {
        opacity: 1;
        transform: scale(1);
        width: auto;
        height: auto;
        margin-left: 0;
        bottom: inherit;
        top: 15px;
        left: inherit;
        right: 15px;
        background: transparent;
    }

    .techq-product-wrapper.style-1 .techq-product-inner .techq-actions-wrapper a.add_to_cart_button {
        display: none;
    }

    .techq-product-wrapper.style-1 .techq-product-inner .techq-actions-inner {
        display: block;
    }

    .techq-product-wrapper.style-1 .techq-product-inner .techq-actions-inner a {
        font-size: 16px;
    }

    .techq-product-wrapper.style-1 .techq-product-inner .techq-product-info .techq-actions-inner-mobile {
        display: block;
    }

    .techq-product-wrapper.style-1 .techq-product-inner .techq-actions-inner a:hover {
        background: transparent;
        color: var(--dark-color);
    }
}

/* Product Style  - End
================================================== */



/* ==================================================
03 - Product Column
================================================== */

.woocommerce .products ul,
.woocommerce ul.products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}


.woocommerce ul.products::before,
.woocommerce-page ul.products::before {
    display: none;
}

.woocommerce ul.products.columns-1,
.woocommerce-page ul.products.columns-1 {
    grid-template-columns: repeat(1, 1fr);
}

.woocommerce ul.products.columns-2,
.woocommerce-page ul.products.columns-2 {
    grid-template-columns: repeat(2, 1fr);
}

.woocommerce ul.products.columns-3,
.woocommerce-page ul.products.columns-3 {
    grid-template-columns: repeat(3, 1fr);
}

.woocommerce ul.products.columns-4,
.woocommerce-page ul.products.columns-4 {
    grid-template-columns: repeat(4, 1fr);
}

.woocommerce ul.products.columns-5,
.woocommerce-page ul.products.columns-5 {
    grid-template-columns: repeat(5, 1fr);
}

.woocommerce ul.products.columns-6,
.woocommerce-page ul.products.columns-6 {
    grid-template-columns: repeat(6, 1fr);
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
    margin: 0;
    width: 100%;
}

.woocommerce ul.products::after {
    display: none;
}

@media(max-width:1199px) {

    .woocommerce ul.products.columns-5,
    .woocommerce-page ul.products.columns-5 {
        grid-template-columns: repeat(4, 1fr);
    }

    .woocommerce ul.products.columns-6,
    .woocommerce-page ul.products.columns-6 {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media(max-width:991px) {

    .woocommerce ul.products.columns-4,
    .woocommerce-page ul.products.columns-4 {
        grid-template-columns: repeat(3, 1fr);
    }

    .woocommerce ul.products.columns-5,
    .woocommerce-page ul.products.columns-5 {
        grid-template-columns: repeat(3, 1fr);
    }

    .woocommerce ul.products.columns-6,
    .woocommerce-page ul.products.columns-6 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media(max-width:768px) {

    .woocommerce ul.products[class*=columns-] li.product,
    .woocommerce-page ul.products[class*=columns-] li.product {
        width: 100%;
        margin: 0;
    }
}

@media(max-width:767px) {

    .woocommerce ul.products.columns-1,
    .woocommerce-page ul.products.columns-1 {
        width: 100%;
    }

    .woocommerce ul.products.columns-3,
    .woocommerce-page ul.products.columns-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .woocommerce ul.products.columns-4,
    .woocommerce-page ul.products.columns-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .woocommerce ul.products.columns-5,
    .woocommerce-page ul.products.columns-5 {
        grid-template-columns: repeat(2, 1fr);
    }

    .woocommerce ul.products.columns-6,
    .woocommerce-page ul.products.columns-6 {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media(max-width:575px) {

    .woocommerce ul.products.columns-2,
    .woocommerce-page ul.products.columns-2 {
        grid-template-columns: repeat(1, 1fr);
    }

    .woocommerce ul.products.columns-3,
    .woocommerce-page ul.products.columns-3 {
        grid-template-columns: repeat(1, 1fr);
    }

    .woocommerce ul.products.columns-4,
    .woocommerce-page ul.products.columns-4 {
        grid-template-columns: repeat(1, 1fr);
    }

    .woocommerce ul.products.columns-5,
    .woocommerce-page ul.products.columns-5 {
        grid-template-columns: repeat(1, 1fr);
    }

    .woocommerce ul.products.columns-6,
    .woocommerce-page ul.products.columns-6 {
        grid-template-columns: repeat(1, 1fr);
    }
}

/* Product Column  - End
================================================== */



/* ==================================================
04 - Tooltip - Start
================================================== */

.techq-product-wrapper .techq-product-inner [data-tooltip],
.techq-product-wrapper .techq-product-inner [data-title] {
    position: relative;
}

.techq-product-wrapper .techq-product-inner [data-tooltip]:before,
.techq-product-wrapper .techq-product-inner [data-title]:before {
    content: '';
    position: absolute;
    border-width: 5px;
    border-style: solid;
    border-color: transparent;
    left: 50%;
    transform: translateX(-50%);
    bottom: 100%;
    margin-bottom: -2px;
    border-top-color: var(--dark-color);
    visibility: hidden;
    opacity: 0;
    transition: var(--transition);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
}

.techq-product-wrapper .techq-product-inner [data-tooltip]:after,
.techq-product-wrapper .techq-product-inner [data-title]:after {
    position: absolute;
    visibility: hidden;
    opacity: 0;
    padding: 0px 10px;
    font-size: 12px;
    line-height: 30px;
    content: attr(data-tooltip);
    white-space: nowrap;
    left: 50%;
    transform: translateX(-50%);
    bottom: 100%;
    margin-bottom: 8px;
    background: var(--dark-color);
    color: var(--white-color);
    transition: var(--transition);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}

.techq-product-wrapper .techq-product-inner [data-title]:after {
    content: attr(data-title);
}

.techq-product-wrapper .techq-product-inner [data-tooltip]:hover:before,
.techq-product-wrapper .techq-product-inner [data-tooltip]:hover:after {
    visibility: visible;
    opacity: 1;
}

.techq-product-wrapper .techq-product-inner [data-title]:hover:before,
.techq-product-wrapper .techq-product-inner [data-title]:hover:after {
    visibility: visible;
    opacity: 1;
}

.techq-product-wrapper .techq-product-inner:before {
    content: '';
    position: absolute;
    border-width: 5px;
    border-style: solid;
    border-color: transparent;
    left: 50%;
    transform: translateX(-50%);
    bottom: 100%;
    margin-bottom: -2px;
    border-top-color: var(--dark-color);
    visibility: hidden;
    opacity: 0;
    transition: var(--transition);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
}

body.overlay-layer .techq-overlay-popup {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99;
    overflow: hidden;
    position: fixed;
    background: var(--dark-color);
    opacity: 0.99;
}

.quantity input::-webkit-outer-spin-button,
.quantity input::-webkit-inner-spin-button {
    display: none;
    margin: 0;
}

.quantity input.qty {
    appearance: textfield;
    -webkit-appearance: none;
    -moz-appearance: textfield;
}

@media(max-width:1023px) {

    .techq-product-wrapper .techq-product-inner [data-tooltip]:before,
    .techq-product-wrapper .techq-product-inner [data-title]:before {
        display: none;
    }

    .techq-product-wrapper .techq-product-inner [data-title]:hover:before,
    .techq-product-wrapper .techq-product-inner [data-title]:hover:after {
        display: none;
    }
}

/* Tooltip  - End
================================================== */



/* ==================================================
05 - My Account - Start
================================================== */

.woocommerce form.login,
.woocommerce form.register {
    border-color: var(--grey-color);
    border-radius: 0;
}

input[type=checkbox] {
    height: 34px;
    width: 13px;
    width: auto;
    margin-right: 5px;
}

.woocommerce-form__label-for-checkbox {
    margin-top: 5px;
    margin-left: 30px;
}

.woocommerce form .form-row {
    padding: 0;
    margin: 0 0 15px;
    display: block;
}

.woocommerce-MyAccount-navigation ul {
    margin: 0 15px 0 0;
    padding: 0;
    border: 1px solid var(--light-black);
}

.woocommerce-MyAccount-navigation li {
    list-style: none;
    display: inline-block;
    width: 100%;
    border-bottom: 1px solid var(--light-black);
}

.woocommerce-MyAccount-navigation li a {
    padding: 10px 15px;
    display: inline-block;
    width: 100%;
    text-decoration: none;
    color: var(--dark-color);
}

.woocommerce-MyAccount-navigation li a:hover,
.woocommerce-MyAccount-navigation li.is-active a {
    color: var(--white-color);
    text-decoration: none;
    background: var(--dark-color);
}

.woocommerce-MyAccount-navigation li a:before {
    float: right;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--dashboard a:before {
    content: "\f3fd";
}

.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--orders a:before {
    content: "\f07a";
}

.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--downloads a:before {
    content: "\f019";
}

.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--edit-address a:before {
    content: "\f3c5";
}

.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--payment-methods a:before {
    content: "\f3d1";
}

.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--edit-account a:before {
    content: "\f406";
}

.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--customer-logout a:before {
    content: "\f2f5";
}

.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--subscriptions a:before {
    content: "\f064";
}

.woocommerce-account .woocommerce-MyAccount-content a {
    text-decoration: none;
    color: var(--dark-color);
}

.woocommerce-account .woocommerce-MyAccount-content a.button {
    color: var(--white-color);
}

.woocommerce-account .woocommerce-MyAccount-content a.edit {
    color: var(--primary-color);
}

.woocommerce table.my_account_orders {
    font-size: inherit;
}

.woocommerce table.shop_table.my_account_orders a.button {
    color: var(--white-color);
    height: auto;
    width: auto;
    line-height: normal;
    padding: 10px 30px;
}

.woocommerce-account .woocommerce-MyAccount-content .edit-account legend {
    color: var(--dark-color);
    font-size: 24px;
    line-height: 32px;
}

.woocommerce .woocommerce-form-login .woocommerce-form-login__submit,
.woocommerce-lost-password .woocommerce-ResetPassword .woocommerce-Button,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button {
    overflow: hidden;
    font-family: var(--body-fonts);
    font-weight: 400;
    text-transform: uppercase;
    background: var(--primary-color);
    line-height: 1.5;
    letter-spacing: 1px;
    font-size: 16px;
    padding: 12px 30px;
    position: relative;
    width: auto;
    height: auto;
    color: var(--white-color);
    vertical-align: middle;
    text-decoration: none;
    transition: var(--transition);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
    border: none;
}

.woocommerce .woocommerce-form-login .woocommerce-form-login__submit:hover,
.woocommerce .woocommerce-form-login .woocommerce-form-login__submit:focus,
.woocommerce-lost-password .woocommerce-ResetPassword .woocommerce-Button:hover,
.woocommerce-lost-password .woocommerce-ResetPassword .woocommerce-Button:focus,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button:focus {
    background: var(--dark-color);
    color: var(--white-color);
}

/* My Account - End
================================================== */



/* ==================================================
06 - Cart Page - Start
================================================== */

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
    border-top: none;
    color: var(--secoundary-color);
}

.woocommerce-message {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
}

.woocommerce-message::before,
.woocommerce-info::before {
    display: none;
}

.woocommerce .woocommerce-message a.button {
    border-radius: 0;
    background: var(--dark-color);
    font-weight: 400;
    color: var(--white-color);
    float: none;
    order: 1;
}

.woocommerce .woocommerce-message a.button:hover {
    background: var(--secondary-color);
}

.woocommerce-info {
    padding: 0;
    background: transparent;
}

.woocommerce-info a {
    color: var(--dark-color);
    text-decoration: none;
}

.woocommerce table.shop_table thead>tr {
    background: var(--grey-color);
}

.woocommerce table.shop_table th {
    padding: 15px 30px;
    text-transform: capitalize;
    font-weight: 500;
    font-size: 16px;
    color: var(--dark-color);
    text-align: center;
    border-bottom: 1px solid var(--light-black);
}

.woocommerce table.shop_table {
    border-radius: 0;
    border: none;
    border-collapse: collapse;
}

.woocommerce table.shop_table td {
    padding: 15px 30px;
    text-align: center;
    border-top: none;
    border-bottom: 1px solid var(--light-black);
}

.woocommerce table.shop_table td a.remove {
    display: inline-block;
    font-size: 18px;
    width: 25px;
    height: 25px;
    line-height: 26px;
    border-radius: 0;
}

#add_payment_method table.cart img,
.woocommerce-cart table.cart img,
.woocommerce-checkout table.cart img {
    width: 100px;
}

.woocommerce table.shop_table td a {
    text-decoration: none;
    color: var(--dark-color);
}

.woocommerce a.remove {
    color: var(--dark-color) !important;
    font-weight: 400;
}

.woocommerce a.remove:hover {
    background: var(--grey-color);
    color: var(--dark-color) !important;
}

.woocommerce table.shop_table td.product-name .variation {
    text-align: center;
}

.woocommerce table.shop_table td.product-name .variation .variation-Color {
    float: none;
    float: none;
    font-weight: 400;
    color: var(--dark-color);
}

.woocommerce table.shop_table td.product-name .variation .variation-Color+.variation-Color {
    display: inline-block;
    color: var(--secondary-color);
}

.woocommerce table.shop_table td.product-quantity .quantity {
    border: 1px solid var(--light-black);
    position: relative;
    margin-right: 10px;
    float: none;
    display: inline-block;
    transition: var(--transition);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
}

.woocommerce table.shop_table td.product-quantity .quantity:hover {
    border-color: var(--dark-color);
}

.woocommerce table.shop_table td.product-quantity .quantity [type="button"] {
    background: none;
    color: var(--secondary-color);
    width: 40px;
    font-size: 30px;
    line-height: normal;
    padding: 0;
    padding-bottom: 5px;
    vertical-align: middle;
}

.woocommerce table.shop_table td.product-quantity .quantity [type="button"]:hover {
    color: var(--dark-color);
}

.woocommerce table.shop_table td.product-quantity .quantity .plus[type="button"] {
    font-size: 20px;
}

.woocommerce table.shop_table td.product-quantity .quantity .input-text {
    padding: 0;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border: 0;
    outline: 0;
    -webkit-appearance: none !important;
    background: transparent;
    border-radius: 0;
    float: none;
}

.woocommerce table.shop_table td.product-quantity .quantity .techq-qty-btn {
    position: absolute;
    left: 0;
    font-size: 20px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    cursor: pointer;
}

.woocommerce table.shop_table td.product-quantity .quantity .techq-qty-btn i {
    font-family: "Font Awesome 5 Brands";
}

.woocommerce table.shop_table td.product-quantity .quantity .techq-qty-btn.quantity-minus {
    right: 0;
    left: auto;
}

.woocommerce table.shop_table td.product-subtotal .woocommerce-Price-amount {
    color: var(--dark-color);
    font-weight: 500;
}

.woocommerce table.shop_table td.actions {
    padding: 30px 0;
    border-bottom: none;
}

.woocommerce table.shop_table td.actions .coupon {
    width: 50%;
    display: flex;
}

.woocommerce-page #content table.cart td.actions .coupon .input-text {
    width: 70%;
    background: none;
    border-radius: 0;
    padding-left: 15px;
    margin: 0;
    border: 1px solid var(--light-black);
}

.woocommerce-page #content table.cart td.actions .coupon .input-text:focus {
    border: 1px solid var(--dark-color);
}

.woocommerce-page #content table.cart td.actions .button {
    border-radius: 0;
    height: 54px;
    line-height: 54px;
    padding: 0 30px;
    text-transform: capitalize;
}

.woocommerce-page #content table.cart td.actions .button:hover {
    background: var(--dark-color);
    color: var(--white-color);
}

.woocommerce .cart-collaterals,
.woocommerce-page .cart-collaterals {
    margin-top: 45px;
}

.woocommerce .cart-collaterals .cart_totals {
    width: 100%;
    float: none;
}

.woocommerce .cart-collaterals .cart_totals h2 {
    font-weight: 400;
    margin: 0;
    width: 25%;
    float: left;
    padding-top: 20px;
    font-size: 30px;
    line-height: 38px;
}

.woocommerce-cart .cart-collaterals table.shop_table {
    width: 45%;
    float: right;
    margin-bottom: 30px;
}

.woocommerce-cart .cart-collaterals .cart_totals table.shop_table tr th,
.woocommerce-cart .cart-collaterals .cart_totals table.shop_table tr td {
    border-top: none;
    color: var(--secondary-color);
}

.woocommerce-cart .cart-collaterals .cart_totals table.shop_table tr.order-total th,
.woocommerce-cart .cart-collaterals .cart_totals table.shop_table tr.order-total td {
    color: var(--dark-color);
    font-weight: 500;
}

.woocommerce-cart .cart-collaterals .cart_totals table.shop_table tr.order-total td strong {
    font-weight: 500;
}

.woocommerce-cart .cart-collaterals .wc-proceed-to-checkout {
    width: 45%;
    float: right;
    padding: 0;
}

.woocommerce-cart .cart-collaterals .wc-proceed-to-checkout a.button.alt {
    text-transform: capitalize;
    margin: 0;
}

.woocommerce table.shop_table tbody th,
.woocommerce table.shop_table tfoot td,
.woocommerce table.shop_table tfoot th {
    font-weight: 400;
}

.woocommerce #respond input#submit.alt,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt {
    background: var(--dark-color);
    color: var(--white-color);
    border-radius: 0;
    font-weight: 400;
    font-size: inherit;
    padding: 0px 30px;
    text-transform: capitalize;
}

.woocommerce #respond input#submit.alt:hover,
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover {
    background: var(--primary-color);
}

.woocommerce-cart .wc-block-components-quantity-selector input.wc-block-components-quantity-selector__input {
    height: 36px;
    font-size: 14px;
    font-weight: var(--font-weight);
}

.woocommerce-cart .editor-styles-wrapper table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__quantity .wc-block-cart-item__remove-link,
.woocommerce-cart table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__quantity .wc-block-cart-item__remove-link {
    text-transform: uppercase;
    color: var(--dark-color);
}

.woocommerce-cart .is-large.wc-block-cart .wc-block-cart__totals-title {
    color: var(--dark-color);
    font-size: 24px;
    line-height: 32px;
}

.woocommerce-cart .is-large.wc-block-cart {
    margin-bottom: 0;
}

.wc-block-components-totals-wrapper,
.wc-block-components-product-price {
    color: var(--dark-color);
}

.wp-element-button {
    overflow: hidden;
    font-family: var(--body-fonts);
    font-weight: 400;
    text-transform: uppercase;
    background: var(--primary-color);
    line-height: 1.5;
    letter-spacing: 1px;
    font-size: 16px;
    padding: 12px 30px;
    position: relative;
    width: auto;
    height: auto;
    color: var(--white-color);
    vertical-align: middle;
    text-decoration: none;
    transition: var(--transition);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
    border: none;
}

.wp-element-button:hover,
.wp-element-button:focus {
    background: var(--dark-color);
    color: var(--white-color);
}

@media (max-width:1199px) {
    .woocommerce-cart .cart-collaterals table.shop_table {
        width: 75%;
    }

    .woocommerce-cart .cart-collaterals .wc-proceed-to-checkout {
        width: 75%;
    }
}

@media (max-width:768px) {
    .woocommerce table.shop_table td.actions .coupon {
        width: 100%;
    }

    .woocommerce table.shop_table_responsive tr td::before,
    .woocommerce-page table.shop_table_responsive tr td::before {
        font-weight: 500;
        font-size: 16px;
        color: var(--dark-color);
    }

    .woocommerce .cart-collaterals,
    .woocommerce-page .cart-collaterals {
        margin-top: 0;
    }

    .woocommerce .cart-collaterals .cart_totals h2 {
        float: none;
        width: 100%;
    }

    .woocommerce-cart .cart-collaterals table.shop_table {
        width: 100%;
        margin-top: 30px;
    }

    .woocommerce-cart .cart-collaterals .wc-proceed-to-checkout {
        width: 100%;
        margin-left: 0;
    }
}

/* Cart Page - End
================================================== */



/* ==================================================
07 - Checkout Page - Start
================================================== */

.woocommerce form .form-row {
    padding: 0;
    margin: 0 0 15px;
    display: block;
    width: 100%;
}

.woocommerce form.woocommerce-checkout .form-row textarea.input-text {
    height: 150px;
}

.woocommerce form.woocommerce-checkout .form-row textarea:focus,
.woocommerce form.woocommerce-checkout .form-row textarea:hover,
.woocommerce form.woocommerce-checkout .form-row input:focus,
.woocommerce form.woocommerce-checkout .form-row input:hover {
    border: 1px solid var(--dark-color);
}

.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
    background: var(--dark-color);
    color: var(--white-color);
    border-radius: 0;
    font-weight: 400;
    padding: 0px 30px;
    height: 50px;
    line-height: 50px;
    text-transform: capitalize;
}

.woocommerce #respond input#submit:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
    background: var(--primary-color);
}

.woocommerce-checkout .woocommerce-additional-fields {
    display: none;
}

.woocommerce .woocommerce-checkout .col2-set .col-1 {
    width: 60%;
}

.woocommerce .woocommerce-checkout .col2-set .col-2 {
    width: 35%;
}

.grouped_form .group_table .add_to_cart_button {
    background: var(--grey-color);
    color: var(--dark-color);
    height: 40px;
    line-height: 40px;
    font-size: 14px;
    padding: 0 15px;
}

.woocommerce .product form.cart table.group_table td a.button {
    height: 40px;
    line-height: 40px;
    padding: 0 15px;
}

.woocommerce-checkout h3 {
    margin-bottom: 15px;
    font-weight: 400;
    font-size: 24px;
    line-height: 32px;
}

.woocommerce table.shop_table.woocommerce-checkout-review-order-table th,
.woocommerce table.shop_table.woocommerce-checkout-review-order-table td {
    text-align: left;
    border-top: none;
    padding: 15px 10px;
}

.woocommerce table.shop_table.woocommerce-checkout-review-order-table .cart-subtotal th {
    color: var(--secondary-color);
}

.woocommerce table.shop_table.woocommerce-checkout-review-order-table .order-total td strong {
    font-weight: 500;
    color: var(--dark-color);
}

.woocommerce #payment #place_order,
.woocommerce-page #payment #place_order {
    float: none;
    text-transform: capitalize;
    width: 100%;
}

.woocommerce form .form-row textarea {
    padding: 20px;
    height: 8em;
}

.select2-container--default .select2-selection--single {
    border: 1px solid var(--light-black);
    border-radius: 0;
    height: 54px;
    padding: 10px 0;
    transition: var(--transition);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
}

.select2-container--default .select2-selection--single:hover {
    border: 1px solid var(--dark-color);
}

.select2-container--default.select2-container--open .select2-selection--single {
    border: 1px solid var(--dark-color);
}

.select2-container--open .select2-dropdown {
    border: 1px solid var(--dark-color);
    border-top: 0;
    border-radius: 0;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 15px;
    right: 15px;
}

.select2-container--default .select2-results>.select2-results__options {
    left: 0;
    display: inline-block;
    width: 100%;
}

.select2-container--default .select2-results__option--highlighted[aria-selected],
.select2-container--default .select2-results__option--highlighted[data-selected] {
    background-color: var(--dark-color);
}

.woocommerce-checkout #payment {
    background: var(--grey-color);
}

.wc-block-components-checkbox .wc-block-components-checkbox__input[type=checkbox] {
    padding: 0;
}

.wc-block-components-text-input input[type=text] {
    border-radius: 0;
    height: 48px;
}

.wc-block-components-totals-coupon__form .wc-block-components-totals-coupon__button {
    padding: 0;
}

.wc-block-components-button:not(.is-link):disabled .wc-block-components-button__text {
    opacity: 1;
}

.wc-block-components-sidebar-layout {
    margin-bottom: 0;
}

.wc-block-components-radio-control .wc-block-components-radio-control__input {
    border-radius: 3px;
    padding: 0;
}


@media(max-width:991px) {
    .woocommerce .woocommerce-checkout .col2-set .col-1 {
        width: 50%;
    }

    .woocommerce .woocommerce-checkout .col2-set .col-2 {
        width: 45%;
    }
}

@media(max-width:767px) {
    .woocommerce .woocommerce-checkout .col2-set .col-1 {
        width: 100%;
    }

    .woocommerce .woocommerce-checkout .col2-set .col-2 {
        width: 100%;
    }

    #order_review_heading {
        margin-top: 30px;
    }
}

/* Checkout Page - End
================================================== */



/* ==================================================
08 - Order Received Page - Start
================================================== */

.woocommerce .woocommerce-customer-details,
.woocommerce .woocommerce-order-details,
.woocommerce .woocommerce-order-downloads {
    margin-bottom: 45px;
}

.woocommerce ul.order_details li {
    text-transform: capitalize;
    font-size: 16px;
}

.woocommerce ul.order_details li strong {
    font-size: 16px;
    color: var(--dark-color);
    font-size: 20px;
    font-weight: 400;
    margin-top: 5px;
}

.woocommerce-order h2 {
    font-weight: 400;
    margin-bottom: 20px;
    font-size: 30px;
    line-height: 38px;
}

.woocommerce table.shop_table.woocommerce-table th,
.woocommerce table.shop_table.woocommerce-table td {
    text-align: left;
}

.woocommerce ul.order_details {
    background: var(--grey-color);
    padding: 30px;
}

.woocommerce .woocommerce-order-details table.shop_table tfoot th {
    border-top: none;
    font-weight: 500;
}

.woocommerce .woocommerce-order-details table.shop_table tfoot td {
    border-top: none;
}

.woocommerce .woocommerce-customer-details address {
    padding: 30px;
}

/* Order Received Page - End
================================================== */



/* ==================================================
09 - Sidebar - Start
================================================== */

/* Filter Sidebar */

.woocommerce .woocommerce-result-count {
    margin: 0;
    padding-left: 15px;
    margin-top: 6px;
}

.woocommerce .off-canvas-btn {
    float: right;
    margin-right: 15px;
    padding-right: 15px;
    padding-top: 0;
    padding-bottom: 0;
    margin-top: 7px;
    background: transparent;
    color: var(--dark-color);
    border-right: 1px solid var(--light-black);
}

.woocommerce .off-canvas-btn span {
    margin-right: 6px;
}

.woocommerce .off-canvas-btn span svg {
    width: 20px;
    height: 20px;
}

.off-canvas-filters {
    height: 100vh;
    overflow: auto;
}

.admin-bar .off-canvas-filters .techq-woo-siderbar {
    padding: 50px 30px;
}

.off-canvas-filters .techq-woo-siderbar {
    padding: 30px;
    margin-top: 0;
}

.off-canvas-filters .offcanvas-body {
    padding: 0;
}

.techq-woo-siderbar {
    padding: 0px 30px;
    margin-top: 20px;
}

.techq-woo-siderbar .widget .footer-title,
.wp-block-group h2,
.widget h2 {
    color: var(--dark-color);
    font-size: 24px;
    line-height: 32px;
    text-transform: capitalize;
    letter-spacing: .1rem;
    margin-bottom: 15px;
}

.techq-woo-siderbar .wp-block-group .wp-block-columns {
    margin-bottom: 0;
}

.techq-woo-siderbar .widget a {
    text-decoration: none;
    padding: 0;
}

.techq-woo-siderbar .widget a:before {
    display: none;
}

.techq-woo-siderbar .widget a:hover {
    color: var(--dark-color);
}

.techq-woo-siderbar .widget .woocommerce-widget-layered-nav-list .count {
    display: none;
}

.techq-woo-siderbar .widget ul li {
    margin: 0;
    padding: 0 0 5px;
}

.techq-woo-siderbar .widget ul li:last-child {
    padding: 0;
}

.price_slider_wrapper .price_slider.ui-widget-content {
    margin-top: 30px;
    margin-bottom: 30px;
    height: 2px;
    position: relative;
    text-align: left;
    background-color: var(--secondary-color);
}

.price_slider_wrapper .price_slider .ui-slider-range {
    background-color: var(--dark-color);
    top: 0;
    height: 2px;
    position: absolute;
    z-index: 1;
    display: block;
    border: 0;
}

.price_slider_wrapper .price_slider .ui-slider-handle {
    width: 15px;
    height: 15px;
    top: -6px;
    background-color: #23232c;
    position: absolute;
    z-index: 2;
    background-color: var(--dark-color);
    border-radius: 100px;
    cursor: ew-resize;
    outline: 0;
    margin-left: 0;
}

.price_slider_wrapper .price_slider .ui-slider-handle+.ui-slider-handle {
    margin-left: -15px;
}

.price_slider_wrapper .price_slider_amount button.button {
    float: right;
    padding: 0px 15px;
    height: 35px;
    line-height: 35px;
}

.price_slider_wrapper .price_slider_amount .price_label {
    padding-top: 5px;
    color: var(--dark-color);
}

.techq-woo-siderbar .widget ul.woocommerce-widget-layered-nav-list li {
    display: inline-block;
}

.techq-woo-siderbar .widget ul.woocommerce-widget-layered-nav-list li.chosen a {
    border: 1px solid var(--dark-color);
    background: var(--dark-color);
    color: var(--white-color);
}

.techq-woo-siderbar .widget ul.woocommerce-widget-layered-nav-list li a {
    display: inline-block;
    padding: 0 12px;
    border: 1px solid var(--light-black);
    margin: 0 10px 10px 0px;
    position: relative;
}

.techq-woo-siderbar .widget ul.woocommerce-widget-layered-nav-list li a:hover {
    border: 1px solid var(--dark-color);
}

.techq-woo-siderbar .widget ul.woocommerce-widget-layered-nav-list li.chosen a:after {
    content: "\f2d7";
    margin-left: 8px;
    font-family: "Ionicons";
    font-size: 14px;
}

.techq-woo-siderbar .widget ul.product_list_widget li {
    margin-bottom: 15px;
    line-height: 26px;
    padding: 0;
}

.techq-woo-siderbar .widget ul.product_list_widget li:last-child {
    margin-bottom: 0;
}

.techq-woo-siderbar .widget ul.product_list_widget li a {
    font-weight: 400;
}

.techq-woo-siderbar .widget ul.product_list_widget li span.product-title {
    margin-top: 0;
    display: inline-block;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
    color: var(--dark-color);
    font-size: 16px;
    line-height: 24px;
}

.techq-woo-siderbar .widget ul.product_list_widget li .woocommerce-Price-amount {
    font-size: 14px;
    margin-top: 0;
    display: inline-block;
}

.techq-woo-siderbar .widget ul.product_list_widget li img {
    float: left;
    width: 80px;
    height: 80px;
    margin-left: 0;
    margin-right: 20px;
}

.techq-woo-siderbar .widget ul.product_list_widget li .star-rating {
    margin: 8px;
    font-size: 12px;
    color: #ffb400;
}

.techq-woo-siderbar .widget .tagcloud a {
    font-size: 16px !important;
    display: inline-block;
    padding: 0 12px;
    border: 1px solid var(--light-black);
    margin: 0 10px 10px 0px;
}

.techq-woo-siderbar .widget .tagcloud a:hover {
    border: 1px solid var(--dark-color);
}

.techq-woo-siderbar .widget ul li.wc-layered-nav-rating {
    margin-bottom: 10px;
    padding: 0;
    color: var(--dark-color);
}

.techq-woo-siderbar .widget ul li.wc-layered-nav-rating a {
    color: var(--dark-color);
}

.techq-woo-siderbar .widget ul li.wc-layered-nav-rating span.star-rating {
    margin-top: 7px;
    color: #ffb400;
    font-size: 12px;
}

.techq-woo-siderbar .berocket_single_filter_widget {
    margin-bottom: 30px;
    display: inline-block;
    width: 100%;
    position: relative;
    padding: 0;
    border: none;
    background: color:var(--white-color);
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}

.techq-woo-siderbar .berocket_single_filter_widget .bapf_hasdesc {
    color: var(--dark-color);
    font-size: 20px;
    line-height: 20px;
    margin-bottom: 20px;
    letter-spacing: 1px;
    font-weight: 400;
}

.techq-woo-siderbar .berocket_single_filter_widget .bapf_hasdesc .bapf_desci {
    display: none;
}

.techq-woo-siderbar .berocket_single_filter_widget .bapf_body ul {
    padding: 0;
    line-height: normal;
    margin-left: 2px;
}

.techq-woo-siderbar .berocket_single_filter_widget .bapf_body ul li {
    margin-right: 10px !important;
}

.techq-woo-siderbar .berocket_single_filter_widget .bapf_sfilter .bapf_body ul li label>span {
    border: none;
    height: 30px;
    width: 30px;
    border: 2px solid var(--white-color);
    box-shadow: 0 0 0 1px var(--grey-color);
    margin: 0 !important;
    border-radius: 100px;
    padding: 4px;
}

.techq-woo-siderbar .berocket_single_filter_widget .bapf_sfilter .bapf_body ul li label>span:hover,
.techq-woo-siderbar .berocket_single_filter_widget .bapf_sfilter .bapf_body ul li.checked label>span {
    border: 2px solid var(--white-color);
    box-shadow: 0 0 0 1px var(--dark-color);
}

@media(max-width:576px) {
    .woocommerce .woocommerce-result-count {
        width: 100%;
    }

    .woocommerce .off-canvas-btn {
        float: left;
    }
}

/* Canvas Sidebar */

.woocommerce.techq-top-rated {
    background: var(--grey-color);
    padding: 20px;
}

.woocommerce.techq-top-rated h5 {
    font-weight: 400;
    margin-bottom: 20px;
}

.woocommerce.techq-top-rated ul.product_list_widget {
    padding: 0;
    margin: 0;
}

.woocommerce.techq-top-rated ul.product_list_widget li {
    line-height: 26px;
    border-top: 1px solid #d2d4d8;
    padding-top: 10px;
    margin-bottom: 15px;
}

.woocommerce.techq-top-rated ul.product_list_widget li:last-child {
    margin-bottom: 0;
}

.woocommerce.techq-top-rated ul.product_list_widget li a {
    font-weight: 400;
}

.woocommerce.techq-top-rated ul.product_list_widget li span.product-title {
    margin-top: 8px;
    display: inline-block;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
}

.woocommerce.techq-top-rated ul.product_list_widget li .woocommerce-Price-amount {
    font-size: 14px;
    margin-top: 2px;
    display: inline-block;
}

.woocommerce.techq-top-rated ul.product_list_widget li img {
    float: left;
    width: 70px;
    margin-left: 0;
    margin-right: 20px;
    margin-top: 6px;
}

.woocommerce.techq-top-rated ul.product_list_widget li .star-rating {
    margin: 7px;
    font-size: 12px;
    color: var(--primary-color);
}

/* Sidebar - End
================================================== */



/* ==================================================
10 - Quick View Popup - Start
================================================== */

.modal-backdrop {
    background-color: var(--dark-color);
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
}

.modal-backdrop.show {
    opacity: 0.7;
    visibility: visible;
}

.techq-quick-view .modal-dialog {
    max-width: 1170px;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transform: none;
}

.techq-quick-view.modal.fade .modal-dialog {
    transform: none;
}

.techq-quick-view .techq-content-quickview {
    background: var(--white-color);
    position: relative;
    box-shadow: 0 40px 60px 0 rgb(0 0 0 / 20%);
    -webkit-transform: scale(.8);
    -moz-transform: scale(.8);
    -ms-transform: scale(.8);
    -o-transform: scale(.8);
    transform: scale(.8);
    transition: var(--transition);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
}

.techq-quick-view.show .techq-content-quickview {
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}

.techq-quick-view.show {
    overflow: hidden;
}

.techq-quick-view .techq-content-quickview .techq-quickview-header .close {
    padding: 0;
    background: none;
    color: var(--secondary-color) !important;
    position: absolute;
    right: 15px;
    top: 15;
    font-size: 30px;
}

.techq-quick-view .techq-content-quickview .techq-quickview-header .close:hover {
    color: var(--dark-color) !important;
}

.techq-quick-view .modal-dialog {
    pointer-events: inherit;
}

.techq-quick-view .techq-content-quickview .techq-modal-header {
    position: absolute;
    top: 15px;
    right: 10px;
    width: 30px;
    height: 30px;
    float: right;
    text-align: center;
}

.techq-quick-view .techq-content-quickview .techq-modal-header button.close {
    padding: 0;
    color: var(--secondary-color);
    background: none;
    font-size: 30px;
    line-height: normal;
}

.techq-quick-view .techq-content-quickview .techq-modal-header button.close:hover {
    color: var(--dark-color);
}

.techq-quick-view .techq-content-quickview .owl-carousel .owl-item img {
    max-height: 550px;
}

.techq-quick-view .techq-content-quickview .owl-carousel .owl-nav button {
    position: absolute;
    z-index: 9;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    border: none;
    outline: none;
    font-size: 30px;
    background: rgba(255, 255, 255, .2);
}

.techq-quick-view .techq-content-quickview .owl-carousel .owl-dots {
    display: none;
}

.techq-quick-view .techq-content-quickview .owl-carousel .owl-nav button:hover {
    background: rgba(255, 255, 255, .5);
    color: var(--dark-color);
}

.techq-quick-view .techq-content-quickview .owl-carousel .owl-nav button span {
    display: block;
    margin-top: -4px;
}

.techq-quick-view .techq-content-quickview .owl-carousel .owl-nav button.owl-prev {
    left: 3%;
}

.techq-quick-view .techq-content-quickview .owl-carousel .owl-nav button.owl-next {
    right: 3%;
}

.techq-quick-view .techq-content-quickview .techq-product-info {
    padding: 30px;
    max-height: 550px;
    overflow: auto;
}

.techq-quick-view .techq-content-quickview .techq-product-name h2 {
    font-weight: 400;
    margin-bottom: 15px;
}

.techq-quick-view .techq-content-quickview .techq-product-price,
.techq-quick-view .techq-content-quickview .techq-product-label,
.techq-quick-view .techq-content-quickview .techq-product-rating {
    display: inline-block;
    vertical-align: middle;
}

.techq-quick-view .techq-content-quickview .techq-product-price {
    margin-right: 10px;
    font-size: 18px;
}

.techq-quick-view .techq-content-quickview .techq-product-price p {
    margin-bottom: 0;
}

.techq-quick-view .techq-content-quickview .techq-product-price del {
    margin-right: 5px;
}

.techq-quick-view .techq-content-quickview .techq-product-price ins {
    text-decoration: none;
}

.techq-quick-view .techq-content-quickview .star-rating {
    float: none;
    margin-left: 10px;
}

.techq-quick-view .techq-content-quickview .techq-product-label span.onsale {
    position: relative;
    display: inline-block;
    font-size: 14px;
    font-weight: 400;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    padding: 2px 12px;
    line-height: 20px;
    text-align: center;
    letter-spacing: normal;
    background: none;
    color: var(--primary-color);
    min-width: inherit;
    min-height: inherit;
    top: 0;
    left: 0;
    border: 1px solid var(--primary-color);
}

.techq-quick-view .techq-content-quickview .techq-product-desc {
    margin-bottom: 25px;
    margin-top: 15px;
}

.techq-quick-view .techq-content-quickview .techq-product-quick-cart a {
    border-radius: 0;
    font-weight: 400;
    background: var(--dark-color);
    float: none;
    display: inline-block;
    vertical-align: top;
    padding: 0 30px;
    height: 50px;
    line-height: 50px;
    color: var(--white-color);
    text-decoration: none;
}

.techq-quick-view .techq-content-quickview .techq-product-quick-cart a i {
    margin-left: 5px;
}

.techq-quick-view .techq-content-quickview .techq-product-quick-cart a:hover {
    background: var(--secondary-color);
}

/* Quick View Popup   - End
================================================== */



/* ==================================================
11 - Woocommerce Cart Sidebar - Start
================================================== */

.admin-bar .offcanvas-end {
    top: 47px;
}

.techq-mini-cart-wrapper .offcanvas {
    padding: 40px 30px 30px;
    height: calc(100vh - 60px);
    top: 30px;
    right: 30px;
    z-index: 9999;
}

.admin-bar .techq-mini-cart-wrapper .offcanvas {
    height: calc(100vh - 92px);
    top: 62px;
}

.techq-mini-cart-wrapper .widget_shopping_cart_content {
    height: calc(100vh - 385px);
}

.admin-bar .techq-mini-cart-wrapper .widget_shopping_cart_content {
    height: calc(100vh - 430px);
}

.techq-mini-cart-wrapper .widget_shopping_cart_content .product_list_widget {
    height: 100%;
    overflow: auto;
    margin: 0;
    padding: 0 15px 0 0;
}

.techq-mini-cart-wrapper .widget_shopping_cart_content .product_list_widget::-webkit-scrollbar {
    width: 8px;
    border-radius: 8px;
}

.techq-mini-cart-wrapper .widget_shopping_cart_content .product_list_widget::-webkit-scrollbar-track {
    background-color: var(--grey-color);
    border-radius: 8px
}

.techq-mini-cart-wrapper .widget_shopping_cart_content .product_list_widget::-webkit-scrollbar-thumb {
    background-color: var(--primary-color);
    border-radius: 8px
}

.techq-mini-cart-wrapper .offcanvas .techq-cart-header h3.modal-title {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 30px;
    font-family: var(--title-fonts);
}

.techq-mini-cart-wrapper ul.product_list_widget li.mini_cart_item {
    font-size: 16px;
    margin: 0 0 30px;
    padding: 0;
    list-style: none;
    display: inline-block;
    width: 100%;
    position: relative;
}

.techq-mini-cart-wrapper ul.cart_list li img,
ul.product_list_widget li img {
    width: 80px;
    float: left;
    margin-left: 0;
    margin-right: 15px;
    -webkit-border-radius: var(--border-radius);
    -moz-border-radius: var(--border-radius);
    border-radius: var(--border-radius);
}

.techq-mini-cart-wrapper ul.cart_list li a {
    display: block;
    color: var(--dark-color);
    text-decoration: none;
    font-weight: 400;
    font-family: var(--title-fonts);
    padding-right: 30px;
    line-height: normal;
    text-transform: capitalize;
    font-size: 18px;
    line-height: 26px;
}

.techq-mini-cart-wrapper ul.product_list_widget a.remove {
    float: right;
    right: 8px;
    top: 0;
    left: inherit;
    font-size: 28px;
    font-weight: 400;
    position: absolute;
    padding: 0;
    line-height: 1;
    height: 1em;
    width: 1em;
    color: var(--dark-color) !important;
    text-align: center;
    background: transparent;
    font-family: var(--body-fonts);
    margin: 0;
}

.techq-mini-cart-wrapper ul.product_list_widget a.remove:hover {
    color: var(--primary-color) !important;
}

.techq-mini-cart-wrapper .woocommerce-mini-cart__total.total {
    margin-bottom: 20px;
    margin-top: 20px;
    font-family: var(--title-fonts);
    font-size: 20px;
    line-height: 28px;
    text-transform: capitalize;
    letter-spacing: 1px;
    font-weight: 600;
    color: var(--dark-color);
}

.techq-mini-cart-wrapper .woocommerce-mini-cart__total.total .woocommerce-Price-amount.amount {
    float: right;
    color: var(--dark-color);
    font-weight: 600;
    font-family: var(--body-fonts);
}

.techq-mini-cart-wrapper .woocommerce-mini-cart__buttons .button {
    display: block;
    text-align: center;
    margin-bottom: 10px;
    background: var(--primary-color);
    color: var(--white-color);
    border-radius: 0;
    font-weight: 400;
    padding: 12px 30px;
    height: auto;
    font-size: 16px;
    line-height: 2;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.techq-mini-cart-wrapper .woocommerce-mini-cart__buttons .button:hover {
    background: var(--dark-color);
    color: var(--white-color);
}

.techq-mini-cart-wrapper .woocommerce-mini-cart__buttons .button.checkout {
    margin-bottom: 0;
    background: none;
    border: 1px solid var(--dark-color);
    color: var(--dark-color);
}

.techq-mini-cart-wrapper .woocommerce-mini-cart__buttons .button.checkout:hover {
    background: var(--dark-color);
    border-color: var(--dark-color);
    color: var(--white-color);
}

.techq-mini-cart-wrapper p {
    margin-bottom: 0;
}

.techq-mini-cart-wrapper .btn-close {
    position: absolute;
    right: 30px;
    top: 30px;
    background: var(--primary-color);
    width: 40px;
    height: 40px;
    line-height: 45px;
    text-align: center;
    color: var(--white-color);
    font-size: 20px;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    padding: 0;
    opacity: 1;
}

.techq-mini-cart-wrapper .btn-close:hover {
    background: var(--dark-color);
    color: var(--white-color);
}

.techq-sidebar .techq-close-btn i {
    line-height: inherit;
}

.widget_shopping_cart_content .woocommerce-mini-cart .woocommerce-mini-cart-item dl.variation {
    display: none;
}

.woocommerce-checkout td.product-name dl.variation {
    display: none;
}

@media (max-width : 782px) {

    .admin-bar .techq-mini-cart-wrapper .offcanvas {
        height: calc(100vh - 106px);
        top: 76px;
    }
}

/* Woocommerce Cart Sidebar - End
================================================== */



/* ==================================================
12 - Woocommerce Breadcrumb - Start
================================================== */

.woocommerce-breadcrumb .site-breadcrumb {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: none;
}

.single-product .woocommerce-breadcrumb .site-breadcrumb {
    display: block;
}

.woocommerce-breadcrumb .site-breadcrumb li {
    display: inline-block;
}

.woocommerce-breadcrumb .site-breadcrumb li:last-child {
    color: var(--dark-color);
}

.woocommerce-breadcrumb .site-breadcrumb li+i {
    margin: 0 10px;
    color: var(--secondary-color);
    font-size: 12px;
}

@media(max-width:1023px) {

    .techq-breadcrumb {
        text-align: center;
    }

    .techq-breadcrumb .techq-breadcrumb-title h2 {
        font-size: 42px;
        line-height: 50px;
    }

    .techq-breadcrumb-container .breadcrumb {
        display: inline-flex;
    }

    .techq-breadcrumb-img.text-right {
        text-align: center !important;
    }
}

@media(max-width:767px) {

    .techq-breadcrumb .techq-breadcrumb-title h2 {
        font-size: 34px;
        line-height: 42px;
    }

    .techq-breadcrumb-container .breadcrumb li,
    .techq-breadcrumb-container .breadcrumb li i {
        font-size: 14px;
    }

    .techq-breadcrumb-container .breadcrumb li {
        margin-right: 10px;
    }

    .techq-breadcrumb-container .breadcrumb .breadcrumb-item+.breadcrumb-item::before {
        padding-right: 10px;
        font-size: 12px;
    }
}

@media(max-width:479px) {
    .techq-breadcrumb .techq-breadcrumb-title h2 {
        font-size: 30px;
        line-height: 38px;
    }
}

/* Woocommerce Cart Sidebar - End
================================================== */



/* ==================================================
13 - Woocommerce Shop Page - Start
================================================== */

.woocommerce form.woocommerce-ordering {
    position: relative;
    margin-right: 15px;
}

.woocommerce .woocommerce-ordering select {
    border: 0;
    max-width: 160px;
    line-height: normal;
    padding: 10px 15px;
    height: auto;
    border: 1px solid var(--light-black);
    background: var(--white-color);
}

.woocommerce form.woocommerce-ordering select option {
    padding: 4px;
    font-size: 15px;
}

.woocommerce form.woocommerce-ordering:after {
    font-family: "Ionicons";
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--dark-color);
    content: "\f3d0";
}

.woocommerce ul.products li.product a img {
    margin: 0;
}


.hidden-title-form button i,
.wishlist-title a.show-title-form i,
.wishlist_manage_table tfoot a.create-new-wishlist i,
.wishlist_manage_table tfoot button.submit-wishlist-changes i,
.wishlist_table .add_to_cart.button i,
.wishlist_table .ask-an-estimate-button i {
    margin-right: 0;
}

.woocommerce ul.products li.product .onsale {
    margin: 0;
}

.woocommerce ul.products li.product .onsale.techq-sold-label {
    position: absolute;
    top: 5%;
    left: 5%;
    right: auto;
    z-index: 2;
    display: block;
    font-size: 12px;
    font-weight: 400;
    padding: 5px 12px;
    line-height: 1;
    text-align: center;
    letter-spacing: normal;
    background: #77a464;
    color: var(--white-color);
    min-width: inherit;
    min-height: inherit;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
    min-width: inherit;
    min-height: inherit;
}

.techq-product-wrapper .techq-product-inner .techq-product-thumbnail .onsale+.onsale {
    margin-top: 30px;
}

.techq-infinitescroll-icon {
    text-align: center;
    margin: 0 auto;
    margin-top: 45px;
    background: var(--dark-color);
    color: var(--white-color);
    padding: 0px 30px;
    width: 76px;
    height: 50px;
    line-height: 50px;
}

.loadmore-btn {
    padding: 10px 30px;
    font-size: 16px;
    line-height: 2;
    font-family: var(--body-fonts);
    text-transform: uppercase;
    background: var(--primary-color);
    color: var(--white-color);
    display: inline-block;
    border: none;
    border-radius: var(--border-radius);
    -webkit-border-radius: var(--border-radius);
    -moz-border-radius: var(--border-radius);
    transition: var(--transition);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
    width: auto;
    height: auto;
}

.loadmore-btn:hover,
.loadmore-btn:focus {
    color: var(--white-color);
    background-color: var(--dark-color);
}

.techq-loadmore-btn-area,
.loadmore-btn-area {
    text-align: center;
    margin-top: 30px;
}

.techq-loadmore-btn-area .techq-loadmore-btn {
    border-radius: 0;
    font-weight: 400;
    text-transform: capitalize;
    background: var(--dark-color);
    color: var(--white-color);
    border: 0;
    padding: 0px 30px;
    height: 50px;
    line-height: 50px;
}

.techq-loadmore-btn-area .techq-loadmore-btn .techq-loadmore-btn-icon,
.loadmore-btn-area .loadmore-btn-icon {
    display: none;
}

.infscroll-icon {
    text-align: center;
    margin-top: 45px;
}

/* Woocommerce Shop Page - End
================================================== */