.dej-product-gallery-slider {
    overflow: hidden;
    max-height: 700px;
}
.dej-gallery-for {
    border: 1px solid var(--border-color2);
    border-radius: var(--dej-min-radius);
    position: relative;
    overflow: hidden;
    margin: 4px;
    min-height: 380px;
    display: flex;
    align-items: center;
    height: 400px;
    visibility: hidden;
    opacity: 0;
}
.dej-gallery-for img {
    border-radius: var(--dej-min-radius);
}
.dej-gallery-for .slick-track {
    max-height: 600px;
}
.dej-gallery-for.slick-initialized {
    visibility: visible;
    opacity: 1;
    height: auto;
}

.dej-gallery-for .slick-slide a, .dej-gallery-for .slick-slide {
    width: 100%;
}

.dej-gallery-for .slick-dots {
    margin: 0 auto;
    width: auto;
    left: 0;
    bottom: 7px;
    z-index: 8;
    right: 0;
    display: flex;
    justify-content: center;
}

.dej-gallery-for .dejavo_prev_Arrow, .dej-gallery-for .dejavo_next_Arrow {
    background: var(--white-color);
    padding: 5px !important;
    border: 1px solid var(--border-color1);
    border-radius: 0;
    box-shadow: unset;
    position: absolute;
    transition: 0.3s;
    color: var(--border-color2);
    opacity: 0.7;
    z-index: 9;
    cursor: pointer;
    min-width: 40px;
    min-height: 45px;
    top:50%;
    transform: translateY(-50%);
}
.dej-gallery-for .dejavo_next_Arrow {
    right: 0;
    border-radius: 15px 0 0 15px;
}
.dej-gallery-for .dejavo_prev_Arrow {
    left: 0;
    border-radius: 0 15px 15px 0;
}
.dej-gallery-for .dejavo_prev_Arrow:hover, .dej-gallery-nav .dejavo_prev_Arrow:hover,
.dej-gallery-for .dejavo_next_Arrow:hover, .dej-gallery-nav .dejavo_next_Arrow:hover {
    opacity: 1;
}

.dej-gallery-nav .dejavo_prev_Arrow, .dej-gallery-nav .dejavo_next_Arrow {
    background: var(--white-color);
    padding: 5px !important;
    position: absolute;
    transition: 0.3s;
    color: var(--border-color2);
    opacity: 0.7;
    z-index: 9;
    cursor: pointer;
    min-width: 30px;
    min-height: 35px;
    top:50%;
    transform: translateY(-50%);
}
.dej-gallery-nav {
    opacity: 0;
    visibility: hidden;
}
.dej-gallery-nav.slick-initialized {
    visibility: visible;
    opacity: 1;
}

.dej-gallery-nav .dejavo_next_Arrow {
    border-radius: 15px 0 0 15px;
    right:2px;
}
.dej-gallery-nav .dejavo_prev_Arrow  {
    border-radius: 0 15px 15px 0;
    left:2px;
}

.dej-gallery-nav .slick-slide {
    padding: 4px;
}
.dej-gallery-nav .slick-slide img {
    opacity: 0.6;
    border: 1px solid #b9b9b9;
    border-radius: var(--dej-min-radius);
    cursor: pointer;
    overflow: hidden;
    height:auto;
}

.dej-gallery-nav .slick-slide.slick-current.slick-active img {
    opacity: 1;
    border-color: var(--dej-color1);
}

.dej-gallery-for .slick-arrow.slick-disabled, .dej-gallery-nav .slick-arrow.slick-disabled {
    opacity: 0.1;
}

.magnify {
    position: relative;
    width: auto;
    height: auto;
    box-shadow: none;
    display: flex;
    z-index: inherit;
}

.magnify > .magnify-lens {
    /* Magnifying lens */
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 100%;
    box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.85),
    0 0 4px 4px rgba(0, 0, 0, 0.25), inset 0 0 40px 2px rgba(0, 0, 0, 0.25);
    cursor: none;
    display: none;
    z-index: 99;
}

.magnify > .magnify-lens.loading {
    background: #333 !important;
    opacity: 0.8;
}

.magnify > .magnify-lens.loading:after {
    /* Loading text */
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    color: var(--white-color);
    content: "...";
    font: italic normal 16px/1 Calibri, sans-serif;
    letter-spacing: 1px;
    margin-top: -8px;
    text-align: center;
    text-shadow: 0 0 2px rgba(51, 51, 51, 0.8);
    text-transform: none;
}

.dej_product_label {
    display: inline-flex;
    gap:5px;
    flex-wrap: wrap;
}

.dej_product_label .item {
    font-size: 13px;
    color: white;
    padding: 4px 10px;
    border-radius: var(--dej-min-radius);
    display: flex;
    align-items: center;
    gap:5px;
    cursor: grab;
}

.product_alert {
    padding: 7px 10px;
    border: 1px solid #333;
    border-radius: var(--dej-max-radius);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}
.product_alert i {
    font-size: 20px !important;
    min-width: 25px;
    min-height: 20px;
    display: flex;
    justify-content: center;
}
.product_alert.warranty {
    background-color: #E0FFDC;
    color: #2b6629;
    border-color: #2b6629;
}
.product_alert.send_duration {
    background-color: #F0EDFF;
    color: #296466;
    border-color: #04898c;
}
.product_alert.alarm {
    background-color: #FFE7D3;
    color: #554029;
    border-color: #814205;
}

.dejavo_product_tabs {
    position: sticky;
    top: 0;
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(5px);
    z-index: 7;
    padding: 7px 4px;
    margin:0 2px;
    border-radius:var(--dej-max-radius);
    overflow-x: auto;
    overflow-y: hidden;
}
.dejavo_product_tabs .nav {
    display: flex;
    gap: 2px;
    width: auto;
    white-space: nowrap;
}
.dejavo_product_tabs::-webkit-scrollbar {
    height: 3px;
}

.dejavo_product_tabs .nav .link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border-bottom: 2px solid transparent;
    font-weight: 500;
}

.dejavo_product_tabs .nav .link.active {
    color: var(--dej-color1);
    border-color: var(--dej-color1);
}
.dejavo-scrollspy section {
    padding: 20px;
    margin: 15px 0;
    border-radius: var(--dej-max-radius);
    background-color: white;
}


/*---------------------------------------------------------------------*/

.dej_action_icons {
    display: inline-flex;
    align-items: center;
    gap:5px;
}
.dej_action_icons a {
    display: flex;
    align-items: center;
    transition: 0.3s;
}
.dej_action_icons a i {
    transition: transform 0.3s;
}
.dej_action_icons a:hover i {
    transform: scale(1.08);
}

.dej_action_icons_gallery {
    position: absolute;
    right: 15px;
    top: 15px;
    z-index: 9;
    background-color: rgba(255, 255, 255, 0.7);
    border: 2px solid white;
    border-radius: var(--dej-max-radius);
    color: #000;
    display: flex;
    flex-direction: column;
}
.dej_action_icons_gallery li a {
    font-size: 20px;
    line-height: 20px;
    font-weight: 400;
    color: #000;
    height: 35px;
    width: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dej_action_icons_gallery li:hover i {
    color: var(--dej-color2);
}
.dej_action_icons_gallery li {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.product_meta {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    border-radius: var(--dej-max-radius);
}

.product_meta span {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
}

.woocommerce-notices-wrapper {
    margin: 0 auto;
}


.woocommerce .woocommerce-breadcrumb {
    margin: 0;
}


.dejavo_popup.video {
    max-height: 85vh;
    max-width: 70vw;
    align-items: center;
    justify-content: center;
}

.dejavo_popup.video .title {
    background-color: rgb(0 0 0 / 5%);
    padding: 7px 15px;
    border-radius: var(--dej-max-radius);
    display: inline-flex;
}

.dejavo_popup.video .content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap:10px;
    margin: 10px;
}
.dej_video_code {
    display: block;
    width: 100%;
    height: 100%;
}


.dejavo-brand-image, .dejavo-brand-image a img {
    display: inline-flex;
    overflow: hidden;
}
.dej_products {
    width: 100%;
}


.dej_shop_title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 6px;
}
.dej_shop_title h1.title {
    font-size: 18px;
    font-weight: 500;
}
.dej_shop_wrapper {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
}
.dej_shop_wrapper.loading:before {
    position: absolute;
    z-index: 100;
    inset: 0;
    background-color: rgb(255 255 255 / 50%);
    content: "";
}

.dej_shop_wrapper .dej_ajax_loading {
    opacity: 0;
    visibility: hidden;
    z-index: 120;
    position: absolute;
    right: 0;
    left: 0;
    top: 25%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.dej_shop_wrapper.loading .dej_ajax_loading {
    opacity: 1;
    visibility: visible;
}


.dej_shop_content {
    flex-basis: 76.9%;
    display: flex;
    flex-direction: column;
    gap:20px;
    padding: 15px;
    background-color: var(--white-color);
    box-shadow: 0 0 3px 3px rgb(0 0 0 / 3%);
    border-radius: var(--dej-max-radius);
}

.shop_sidebar_btn {
    display: none;
    opacity: 0;
}
.dej_shop_sidebar {
    flex-basis: 23%;
}
.dej_shop_sidebar .sidebar_content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    overflow-y: auto;
    height: 100%;
    max-height: 100%;
}

.dej_shop_sidebar .dej_header_sidebar {
    display: none;
}
.dej_shop_sidebar .sidebar_content > div {
    display: flex;
    flex-direction: column;
    padding: 15px;
    background-color: var(--white-color);
    box-shadow: 0 0 3px 3px rgb(0 0 0 / 3%);
    border-radius: var(--dej-max-radius);
    gap: 10px;
}

h3.widget_title {
    font-weight: 600;
    font-size: 17px;
    margin-bottom: 10px;
    position: relative;
}
h3.widget_title:before {
    position: absolute;
    content: "";
    background: var(--dej-color1) var(--dej-bg1);
    right: -15px;
    width: 3px;
    top: 0;
    height: 20px;
    border-radius: 10px;
}
.dej_before_shop_loop {
    display: flex;
    flex-flow: row-reverse;
    justify-content: space-between;
    align-items: center;
}

.dej_orderby {
    display: flex;
    gap: 5px;
}

.dej_orderby li a {
    background-color: rgba(0, 0, 0, 0.06);
    padding: 0 15px;
    border-radius: var(--dej-min-radius);
    transition: 0.2s;
    display: inline-flex;
    align-items: center;
    min-height: 30px;
}
.dej_orderby li.selected a, .dej_orderby li:hover a {
    background: var(--dej-color1) var(--dej-bg1);
    color: white;
}
.dej_orderby li.selected:hover a{
    background: var(--dej-color2) var(--dej-bg2);
}

.woocommerce .woocommerce-ordering, .woocommerce .woocommerce-result-count {
    margin: 0;
}


#dejavo_share .title {
    text-align: center;
    padding: 20px;
    background-color: #0000000f;
    border-radius: var(--dej-max-radius);
    margin-bottom: 25px;
}

#dejavo_share .content {
    width: 100%;
    min-height: 50px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: var(--dej-max-radius);
}

#dejavo_share .short-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


#dejavo_share .DejavoWL-share-link {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(180deg, hsl(26.58deg 100% 67.59%) 0%, hsl(22.15deg 95% 43%) 100%);
    color: white;
    position: relative;
    z-index: 5;
}
#dejavo_share .DejavoWL-share-link i {
    z-index: 5;
}
#dejavo_share .DejavoWL-share-link input {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 0;
    cursor: pointer;
    opacity: 0;
    display: flex;
    padding: 5px !important;
    z-index: 10;
    box-shadow: unset;
}

#dejavo_share .social_icons li a, #dejavo_share .DejavoWL-share-link {
    width: 50px;
    height: 50px;
    border-radius: var(--dej-max-radius);
    font-size: 28px;
}

#dejavo_share .social_icons li:hover {
    transform: translateY(5px);
}
h2.title {
    margin-bottom: 15px;
}
.product_en_title {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 20px;
}
.english_title {
    display: flex;
    align-items: center;
    height: 30px;
    padding-left: 7px;
    opacity: 0.6;
    font-size: 12px;
}
.dash_line {
    height: 2px;
    border-bottom: 1px dashed var(--border-color2);
    flex-grow: 1;
}


.dej_product_countdown {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    border-radius: var(--dej-max-radius);
}

.dej_product_countdown .head {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
}

.dej_product_countdown .head .title {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 15px;
    font-weight: 500;
}
.dej_product_countdown .head .sub_title {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    font-weight: 300;
}
.dej_product_countdown .countdown_box {
    padding: 0;
}
.dej_product_countdown .countdown_box .countdown{
    aspect-ratio: 1;
    width: 50px;
    padding: 0;
}

.product_stock_bar {
    display: flex;
    flex-flow: column wrap;
    border-radius: var(--dej-max-radius);
}

.stock_bar {
    width: 100%;
    height: 11px;
    background-color: rgb(0 0 0 / 14%);
    position: relative;
    border-radius: var(--dej-max-radius);
}
.stock_bar_amount {
    position: absolute;
    height: 11px;
    background-color: var(--dej-color1);
    right: 0;
    top: 0;
    color: white;
    text-align: left;
    font-size: 11px;
    border-radius: var(--dej-max-radius);
    padding: 0 8px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.single_product_title {
    display: flex;
}

.single_product_title h1 {
    font-weight: 600;
    font-size: 17px;
    line-height: 1.5;
}


.dejavo-badge-percent {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.dejavo-badge-percent .badge {
    font-size: 13px;
    padding: 0;
}

.dej_single_price {
    font-weight: 600;
    font-size: 16px;
}

.dej_single_price del {
    font-size: 15px;
    opacity: 0.65;
    font-weight: 400;
}

.dej_single_price ins {
    font-size: 18px;
}



/*----------------------------------------------------*/
.zero_quantity {
    display: flex;
    background-color: var(--white-color);
    border: 2px solid #d8d8d8;
    border-radius: var(--dej-max-radius);
    padding: 15px 8px;
    box-sizing: border-box;
    opacity: 0.8;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
}
.zero_quantity .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #cecece;
}
.zero_quantity .content {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.zero_quantity h4 {
    font-size: 14px;
    font-weight: 500;
    color: #171717;
}
.zero_quantity p {
    font-size: 11px;
    font-weight: 400;
    color: #565555;
    margin: 0;
}
/*------------------------------------------------------------------------------*/

/*------------------------------------- start post product detail--------------------------------- */





/*------------------------------------- end post product detail---------------------------*/

/*-------------------------------------- start post product tab------------------------ */


.woocommerce #review_form #respond {
    padding: 10px 0;
}

.woocommerce-Reviews-title {
    margin-bottom: 15px;
}

.woocommerce #reviews #comments ol.commentlist li .comment-text {
    border-radius: var(--dej-max-radius);
}

.woocommerce #reviews #comments ol.commentlist li .comment-text p.meta {
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.dejavo_advanced_reviews {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}
.dejavo_advanced_reviews .right {
    width:65%;
}
.dejavo_advanced_reviews .left {
    width:35%;
    position: sticky;
    top:100px;
}

.dejavo_recommended_num {
    padding: 8px 0;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 5px;
}
.dejavo_recommended_num i {
    color: #0e9a17;
}

.dejavo_ratings, .comment-form-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}
.dejavo_ratings .dejavo_rate {
    width: 80%;
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: space-between;
}

.dejavo_ratings .title {
    width: 20%;
    font-size: 14px;
    font-weight: 600;
    line-height: 22px;
}
.comment-form-rating {
    margin:4px 0;
}
.comment-form-rating .stars {
    margin: 0 !important;
}

.display_dejavo_rate {
    width: 100%;
    display: flex;
    gap: 5px;
    flex-direction: column;
    border: 1px solid rgb(159 158 158 / 40%);
    padding: 15px;
    margin-bottom: 10px;
    border-radius: var(--dej-max-radius);
    background-color: var(--white-color);
}
.display_dejavo_ratings_product {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    background-color: #a3a3a31f;
    border: 1px solid rgb(164 163 163 / 40%);
    padding: 12px;
    border-radius: var(--dej-max-radius);
    margin-bottom: 10px;
}
.display_dejavo_ratings_product .image img {
    border-radius: var(--dej-max-radius);
}
.display_dejavo_ratings_product .title {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    line-height: 2;
}
.display_dejavo_rate .title_sec {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
}

.dejavo_progres {
    display: flex;
    width: 100%;
    height: 8px;
    border-radius: var(--dej-max-radius);
    background-color: rgb(0 0 0 / 13%);
    overflow: hidden;
    position: relative;
}
.dejavo_progres .bar {
    background: var(--dej-color2) var(--dej-bg2);
}

.dejavo-comment-advantages {
    display: flex;
    gap: 10px;
}
.dejavo-input-comment-form {
    width: 50%;
    display: flex;
    flex-direction: column;
    position: relative;
    gap:3px;
}

.add_text_to_field {
    position: absolute;
    left: 10px;
    top: 7px;
    border-radius: var(--dej-min-radius);
    background-color: rgb(12 12 12 / 50%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2px 10px;
    color: white;
    cursor: pointer;

}
.dejavo-input-comment-form input {
    width: 100%;
    padding: 5px 10px;
    text-align: right;
    margin-bottom: 15px;
    border-radius: var(--dej-max-radius);
    min-height: 40px;
}
.dejavo-input-comment-form input:focus {
    box-shadow: unset;
}
.dejavo-input-comment-form input#comment-form-advantages {
    border: 1px solid rgba(20, 114, 5, 0.50);
    background-color: rgba(0, 162, 6, 0.03);
}
.dejavo-input-comment-form input#comment-form-disadvantage {
    border: 1px solid rgba(194, 7, 7, 0.50);
    background-color: rgba(255, 0, 0, 0.03);
}

.item_added_disadvantage, .item_added_advantages {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 10px;
    padding: 4px 7px;
    border-radius: var(--dej-max-radius);
}
.item_added_advantages {
    background-color: rgba(23, 130, 45, 0.11);
    color: #186924;
}
.item_added_disadvantage {
    background-color: rgba(130, 23, 23, 0.11);
    color: #720f0f;
}

.dejavo-input-comment-form .remove_item {
    font-family: "dej-icon-rr";
    cursor: pointer;
}

.dejavo-input-comment-form .remove_item:before {
    content: "\f258";
}
.item_added_disadvantage input {
    color: #26631a;
    font-size: 14px;
    font-weight: 500;
}

.dejavo-recommend-product-reveiw {
    display: flex;
    padding: 10px 0;
    gap: 10px;
    flex-wrap:wrap;
}
.comment-form-rating label, .dejavo-recommend-product-reveiw label, .dejavo-recommend-product-reveiw .text{
    display: flex;
    align-items: center;
    gap: 5px;
}
.dejavo-recommend-product-reveiw .text {
    cursor: pointer;
}
.review_recommend {
    font-size: 14px;
    font-weight: 500;
    font-style: normal;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.dejavo-recommend-product-reveiw input {
    opacity: 0;
    width: 0;
    height: 0;
}
.review_recommend.dejavo_reveiw_recommended, #recommended:checked~.text {
    color: #0b8b0b;
}
.review_recommend.dejavo_reveiw_no_idea, #no_idea:checked~.text {
    color: #d68903;
}
.review_recommend.dejavo_reveiw_not_recommended, #not_recommended:checked~.text {
    color: #cc0010;
}

.woocommerce-review__author {
    font-size: 17px;
    font-weight: 600;
    line-height: 24px;
}
.disadvantage_advantage {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 13px;
}
.advantage, .disadvantage {
    display: flex;
    gap: 10px;
}
.advantage span {
    color: #04b41c;
    padding-left: 8px;
}
.disadvantage span {
    color: #f55d5d;
}
.advantage ul li, .disadvantage ul li {
    margin: 0 0 5px !important;
    display: flex;
    align-items: center;
}
.disadvantage_advantage .icon {
    font-family: "dej-icon-rr";
    width: 16px;
    height: 16px;
    display: inline-flex;
    font-size: 13px;
}
.advantage .icon:before {
    content: "\f3b8";
    color: #04b41c;
}
.disadvantage .icon:before {
    content: "\f373";
    color: #fa0000;
}

.dejavoRelatedSwiper .product-box-info.three_line h3 {
    height: auto;
}

.single-product .BackToTop {
    bottom: 80px;
}

.single-product .DejavoFC-count {
    bottom: 150px;
}

.single-product .DejavoFC-count:hover {
    bottom: 153px;
}

/*---------------------------------------------------------------------------*/
.DejavoSA-wrapper {
    z-index: 999;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: 0;
    left: 0;
    background-color: var(--white-color);
    padding: 7px 0 !important;
    margin: 0;
    opacity: 0;
    transition: all 0.2s;
    transform: translate3d(0, 100%, 0);
    border-width: 1px 0 0 0;
    border-style: solid;
    border-color: var(--border-color2);
    -webkit-box-shadow: 0 -10px 10px rgb(0 0 0 / 5%);
    box-shadow: 0 -10px 10px rgb(0 0 0 / 5%);
}

.DejavoSA-wrapper.DejavoSA-active {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.DejavoSA-container {
    width: 100%;
    max-width: var(--dej-wrapper-max-width);
}

.DejavoSA-container > div {
    width: 100%;
    display: flex;
    align-items: center;
}

.DejavoSA-product {
    justify-content: space-between;
}

.DejavoSA-product-info {
    display: flex;
    align-items: center;
    flex-grow: 1;
}

.DejavoSA-product-image {
    width: 48px;
    flex: 0 0 48px;
    max-height: 50px;
    overflow: hidden;
}

.DejavoSA-product-image img {
    width: 100%;
    height: auto;
}

.DejavoSA-product-data {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.DejavoSA-product-data > div {
    margin: 0 5px;
}

.DejavoSA-product-name {
    flex-grow: 1;
}

.DejavoSA-add-to-cart {
    display: flex;
    align-items: center;
}

.DejavoSA-add-to-cart > div {
    margin-right: 6px;
}

.DejavoSA-disabled {
    opacity: 0.5 !important;
    cursor: not-allowed !important;
}

.DejavoSA-product-btn a {
    width: 23px;
    height: 30px;
    font-size: 18px;
    line-height: 30px;
    margin-right: 10px;
    display: inline-flex;
    align-items: center;
}
.DejavoSA-atc .DejavoSA-btn {
    padding: 0 10px !important;
    border-radius: var(--dej-max-radius) !important;
    min-height: 35px !important;
    font-size: 13px !important;
    white-space: nowrap;
}

/*---------------------------------------Start Archive Product----------------------------------*/


.woocommerce .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item, .woocommerce .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item a, .woocommerce .widget_layered_nav_filters ul li a, .widget_dejavo_in_stock_widget a {
    display: flex;
    align-items: center;
    gap: 7px;
    justify-content: flex-start;
}
.woocommerce .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item{
    gap: 3px;
}
.woocommerce .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item a:before, .widget_dejavo_in_stock_widget a:before {
    font-family: "dej-icon-rr";
    content: "\f44a";
    font-size: 17px;
    margin-left: 0 !important;
    opacity: 0.5;
}
.woocommerce .widget_rating_filter ul li.chosen a::before, .woocommerce .widget_layered_nav_filters ul li a::before, .woocommerce .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item--chosen a::before {
    font-family: "dej-icon-rr";
    content: "\f1f1";
    font-size: 17px;
    margin-left: 0 !important;
    color: var(--dej-color1);
    opacity: 1;
}

.dej_shop_sidebar li.cat-item a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    justify-content: flex-start;
}
.dej_shop_sidebar li.cat-item a:before {
    font-family: "dej-icon-rr";
    content: "\f11f";
    font-size: 14px;
    padding: 0;
    opacity: 0.5;
}

.dejavo_filter_color {
    display: grid;
    gap: 5px;
    grid-template-columns: repeat(7, 1fr);
}
.dejavo_filter_color li  {
    display: inline-flex;
    width: 27px;
    height: 27px;
    border-radius: 5px;
    border:2px solid rgba(0, 0, 0, 0.1);
    transition: 0.2s;
}

.dejavo_filter_color.rounded li {
    border-radius: 50% !important;
}
.dejavo_filter_color li.active, .dejavo_filter_color li:hover {
    border-color: var(--dej-color1);
}
.dejavo_filter_color li a, .dejavo_filter_brand li a {
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    font-size: 13px;
}

.dejavo_filter_color li a i {
    color: #d7d7d7;
    font-weight: 600;
    font-size: 16px;
}
.dejavo_filter_brand {
    display: grid;
    gap: 5px;
    grid-template-columns: repeat(3, 1fr);
}

.dejavo_filter_brand li {
    display: inline-flex;
    background-color: #eee;
    border: 2px solid rgba(0, 0, 0, 0.1);
    transition: 0.2s;
    min-height: 40px;
    border-radius: 5px;
}

.dejavo_filter_brand li.active, .dejavo_filter_brand li:hover {
    border-color: var(--dej-color1);
}
.dejavo_filter_brand li a img {
    width: 100%;
    max-height: 60px;
}

.woocommerce-no-products-found {
    width: 100%;
}


.woocommerce nav.woocommerce-pagination ul {
    border: 0;
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
    margin: 0;
    padding: 15px !important;
    background-color: var(--widget-bg1);
    border-radius: var(--dej-min-radius);
    border: 2px solid var(--border-color1);

}

.woocommerce nav.woocommerce-pagination ul li {
    border-left: 0;
    padding: 0;
    margin: 10px 2px;
}

.woocommerce nav.woocommerce-pagination ul li a:focus,
.woocommerce nav.woocommerce-pagination ul li a:hover,
.woocommerce nav.woocommerce-pagination ul li span.current {
    background: white;
    border-color: var(--dej-color1);
    color: var(--dej-color1);
}


.woocommerce .widget_price_filter .price_slider_wrapper .ui-widget-content {
    background-color: #00000060;
}

.woocommerce .widget_price_filter .price_slider_amount .btn {
    width: 100%;
}

.woocommerce .widget_price_filter .price_slider_amount {
    text-align: right;
    line-height: 2.4;
    font-size: 1em;
    display: flex;
    flex-direction: column-reverse;
    font-weight: 500;
}
.woocommerce .widget_price_filter .price_slider_amount .button {
    font-size: 16px;
    padding: 0 10px;
}

.rtl.woocommerce .price_label {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.rtl.woocommerce .price_label,
.rtl.woocommerce .price_label span {
    direction: rtl;
    unicode-bidi: normal;
    text-align: center;
}

.woocommerce .widget_price_filter .ui-slider .ui-slider-range,
.woocommerce .widget_price_filter .ui-slider .ui-slider-handle {
    background: var(--dej-color1) var(--dej-bg1);
}

.woocommerce .widget_rating_filter ul li a {
    font-size: 1.2em;
    display: flex;
    justify-content: space-between;
}


.woocommerce .products ul.product-categories li a:before {
    font-family: "dej-icon-rr";
    content: "\f11f";
    margin-left: 5px;
    font-size: 0.8em;
    color: var(--border-color1);
}

li.cat-item span.count,
li.woocommerce-widget-layered-nav-list__item span.count {
    font-size: 12px;
}

ul.product-categories ul.children {
    padding: 8px;
}
.dej_product_cats li {
    margin-bottom: 20px;
    border: 2px solid #99999940;
    padding: 10px;
    border-radius: var(--dej-max-radius);
    transition: 0.3s;
}
.dej_product_cats li:hover {
    border-color:var(--dej-color1);
    transform: translateY(-4px);
}
.woocommerce-loop-category__title {
    font-size: 14px;
    padding-top: 7px;
}
.dej_product_cats li a img {
    border-radius: var(--dej-max-radius);
}
.dej_product_cats mark.count {
    background-color: transparent;
    font-size: 13px;
}

.woocommerce span.onsale {
    max-height: 3.236em;
    max-width: 3.236em;
}

.woocommerce #content div.product div.images,
.woocommerce div.product div.images,
.woocommerce-page #content div.product div.images,
.woocommerce-page div.product div.images {
    width: 100%;
}
.woocommerce div.product div.images {
    margin-bottom: 10px;
}
.woocommerce #reviews #comments ol.commentlist li img.avatar {
    top: 15px;
    width: 60px;
    border-radius: 100%;
}

.woocommerce #reviews #comments ol.commentlist li .comment-text {
    margin: 0 80px 0 0;
    background-color: var(--white-color);
    border: 1px solid rgba(168, 167, 167, 0.40);
}

.woocommerce p.stars a::before {
    width: 25px;
    height: 25px;
    line-height: 25px;
    font-size: 25px;
}

.woocommerce p.stars a {
    height: 25px;
    width: 25px;
}

.woocommerce #content table.cart td.actions .input-text,
.woocommerce table.cart td.actions .input-text,
.woocommerce-page #content table.cart td.actions .input-text,
.woocommerce-page table.cart td.actions .input-text {
    width: 120px;
    background-color: #f4f4f4;
}
.woocommerce-cart table.cart input {
    background-color: transparent;
    padding: 0;
    border: 0;
}
#add_payment_method .wc-proceed-to-checkout a.checkout-button, .woocommerce-cart .wc-proceed-to-checkout a.checkout-button, .woocommerce-checkout .wc-proceed-to-checkout a.checkout-button {
    width: 100%;
    min-height: 45px;
}
#add_payment_method table.cart img,
.woocommerce-cart table.cart img,
.woocommerce-checkout table.cart img {
    width: 80px;
    box-shadow: none;
    border-radius: var(--dej-max-radius);
}

.woocommerce-message,.woocommerce-info {
    border-top-color: var(--dej-color1);
}
.woocommerce-info, .woocommerce-message, .woocommerce-error {
    padding: 15px 40px 15px 10px;
    color: var(--title-color1);
    border: 1px solid var(--dej-color1);
    border-radius: var(--dej-max-radius);
    margin:20px 0;
}
.single-product .woocommerce-message, .woocommerce-account .woocommerce-info{
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
    align-items: center;

}


.woocommerce form .form-row-first, .woocommerce form .form-row-last, .woocommerce-page form .form-row-first, .woocommerce-page form .form-row-last {
    width: 49%;
}

.woocommerce-error::before, .woocommerce-info::before, .woocommerce-message::before {
    top: 50%;
    transform: translateY(-50%);
    right: 15px;
}

.woocommerce-message .button {
    padding: 10px 15px !important;
}
.woocommerce .woocommerce-error .button, .woocommerce .woocommerce-info .button, .woocommerce .woocommerce-message .button, .woocommerce-page .woocommerce-error .button, .woocommerce-page .woocommerce-info .button, .woocommerce-page .woocommerce-message .button {
    min-width: 110px;
    font-size: 12px;
}

.woocommerce a.remove {
    line-height: 1.2;
}

.archive_products {
    max-width: var(--dej-wrapper-max-width);
    width: 100%;
    margin: 0 auto !important;
}
.single-product .main-content {
    padding: 25px 0;
}

.archive_product_subcats {
    width: 100%;
    background-color: var(--white-color);
    box-shadow: 0 0 5px 2px rgb(0 0 0 / 2%);
    margin-bottom: 30px;
    border-radius: var(--dej-max-radius);
    gap: 10px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.archive_product_subcats li {
    padding: 15px;
    width: auto !important;
    max-width: 185px;
}
.archive_product_subcats li a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.archive_product_subcats li a h2 {
    font-size: 15px;
    font-weight: 500;
}
.archive_product_subcats li a img {
    border-radius: var(--dej-max-radius);
}

.woocommerce-error a {
    color: var(--dej-color2);
}

.woocommerce nav.woocommerce-pagination ul {
    display: flex;
    justify-content: center;
}
.term-description {
    background-color: var(--white-color);
    box-shadow: 0 0 3px 3px rgb(0 0 0 / 3%);
    padding: 30px 20px 30px;
    margin-top: 30px;
    border-radius: var(--dej-max-radius);
}
/*---------------------------------------END Archive Product----------------------------------*/


/*--------------------------------------CART---------------------------------*/


.dejavo_recent_product {
    background-color: var(--dej-color2);
    padding: 20px;
    border-radius: var(--dej-max-radius);
}

.dejavo_recent_product .heading_title h3 {
    color: white;
    padding: 0 0 23px 0;
    font-size:20px;
}
.dejavo_recent_product .item {
    display: flex;
    gap: 10px;
    background-color: white;
    color: black;
    border-radius: var(--dej-max-radius);
    padding: 10px;
}
.dejavo_recent_product .item .image {
    height: 100px;
    width: 100px;
    border-radius: var(--dej-max-radius);
}
.dejavo_recent_product .item .image img {
    border-radius: var(--dej-max-radius);
}
.dejavo_recent_product .item .info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
}
.dejavo_recent_product h4 {
    max-height: 60px;
}
.dejavo_recent_product h4 a {
    font-size: 14px;
}
.dejavo_recent_product .price {
    font-size: 12px;
}
.dejavo_recent_product .add-to-cart {
    display: inline-flex;
    gap: 5px;
    font-size: 13px;
}
.dejavo_recent_product .add-to-cart:hover {
    color:var(--dej-color2)
}

.dej_cart {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}
.woocommerce-cart-form {
    flex-basis: 75%;
}
.woocommerce .cart-collaterals, .woocommerce-page .cart-collaterals {
    width: 25%;
    flex-basis: 25%;
}

.dej_cart .cart_item .quantity {
    max-width: 100px;
}

.return-to-shop {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    border: 1px solid var(--border-color2);
    padding: 45px;
    border-radius: var(--dej-max-radius);
    background-color: white;
}
.return-to-shop .warning {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}
.return-to-shop .warning i {
    font-size: 50px;
    opacity: 0.25;
}

.cart_step {
    display: flex;
    justify-content: space-between;
    margin: 20px 0;
    width: 100%;
}
.step_inner {
    z-index: 3;
    display: flex;
}
.cart_step .steps {
    position: relative;
    height: 38px;
    display: flex;
}
.cart_step .cart {
    justify-content: flex-start;
    flex-basis: 25%;
}
.cart_step .checkout {
    justify-content: center;
    flex-basis: 50%;
}
.cart_step .thanks {
    justify-content: flex-end;
    flex-basis: 25%;
}

.cart_step .step_inner a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #5f5f5f;
    z-index: 7;
    border: 3px solid #bebdbd;
    padding: 0 20px;
    border-radius: var(--dej-max-radius);
    background-color: white;
}
.cart_step .steps.active .step_inner a{
    border-color: var(--dej-color1);
    background-color: var(--dej-color1);
    color:white;
}
.cart_step .steps.active .step_inner a:hover {
    background-color: var(--dej-color2);
}

.cart_step .steps.active:before,
.cart_step .steps.active:after {
    background-color: var(--dej-color1);
    color: white;
}

.cart_step .steps:before,
.cart_step .steps:after {
    position: absolute;
    content: "";
    height: 4px;
    width: 100%;
    background-color: #bebdbd;
    top: 50%;
    right: 0;
    left: 0;
    transform: translateY(-50%);
    z-index: 1;
}
.cart_step .steps:first-child:before,
.cart_step .steps:last-child:after {
    content: none;
    position: unset;
}


.cart_table {
    margin: 0;
}

.cart_table th,
.cart_table td {
    vertical-align: middle;
    text-align: right;
    font-weight: 500;
    font-size: 1em;
}

.cart_table td.product_thumbnail img {
    max-width: 100px;
}

.cart_table td.product_quantity .minus,
.cart_table td.product_quantity .plus {
    background-color: var(--widget-bg1);
    height: 30px;
    width: 30px;
    border: unset;
    border-radius: 100%;
    vert-align: middle;
    font-size: 1em;
    line-height: 30px;
}

.cart_table td.product_quantity .minus:hover,
.cart_table td.product_quantity .plus:hover {
    background: var(--dej-color1) var(--dej-bg1);
    color: var(--white-color);
}

.cart_table td.product_quantity .qty {
    border-radius: var(--dej-min-radius);
    border: 1px solid var(--border-color2);
    text-align: center;
    height: 30px;
}

.cart_table td.product_remove a i {
    font-size: 1.3em;
    transition: all 300ms;
}

.cart_table td.product_remove,
.cart_table th.product_remove {
    text-align: center;
}

.cart_table .table > :not(caption) > * > * {
    border-bottom-width: 0px;
}

.cart_footer {
    margin: 20px 0;
}

.cart_footer .dej_input,
.cart_footer .btn-lg {
    font-size: 1em;
}

.total_cart {
    padding: 15px;
    border: 1px solid var(--border-color1);
    border-radius: var(--dej-min-radius);
}

.total_cart h5 {
    font-size: 1.4em;
    padding: 30px 0;
}

.total_cart td,
.total_cart th {
    padding: 20px 10px;
}

.total_cart button {
    padding: 10px 40px;
    font-size: 1.1em;
}

/*--------------------------------------END CART---------------------------------*/
/*------------------------------------ START Checkout  ---------------------------------*/

.dej_checkout {
    display: flex;
    flex-direction: column;
}
.dej_checkout .inner {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.dej_checkout_form {
    flex-basis: 65%;
}
.dej_payment_review {
    flex-basis: 35%;
}
.dej_tankyou {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}
.dej_tankyou i {
    font-size: 50px;
    opacity: 0.5;
    color: green;
}
.woocommerce-thankyou-order-received, .woocommerce-thankyou-order-failed {
    text-align: center;
    font-size: 1.3em;
    font-weight: 600;
    padding-bottom: 30px;
    color:green;
}

.woocommerce-thankyou-order-failed, .dej_tankyou.failed i{
    color:#f68c11;
}

.dej_checkout_form, .dej_payment_review, .woocommerce table.shop_table, .dej_tankyou, .woocommerce .woocommerce-customer-details address {
    border: 1px solid var(--border-color2);
    padding: 15px;
    border-radius: var(--dej-max-radius);
    background-color: white;
}
.woocommerce table.shop_table td {
    border-bottom: 0;
}
.order-delivery-title {
    display: flex;
    gap: 6px;
    margin-bottom: 12px;
}
.order-delivery-times {
    display: flex;
    flex-wrap: wrap;
    gap:5px;
}
.order-delivery-times li {
    display: inline-flex;
}
.order-delivery-times li label {
    background-color: rgba(0, 0, 0, 0.06);
    cursor: pointer;
    padding: 8px;
    border-radius: var(--dej-max-radius);
    position: relative;
    border: 2px solid transparent;
}
.order-delivery-times  input[type=radio] {
    display: none;
}
.order-delivery-times input[type=radio]:checked + label {
    background-color: #fff;
    box-shadow:  0 0 3px 3px rgba(0, 0, 0, 0.06);
    border-color: var(--dej-color1);
    color: var(--dej-color1);
}

table.shop_table.woocommerce-checkout-review-order-table{
    background-color: var(--widget-bg2);
}
#order_review_heading, .woocommerce-billing-fields h3 {
    padding-bottom: 15px;
}

h2.woocommerce-order-details__title, h2.woocommerce-column__title {
    padding: 25px 0;
}
.table > :not(caption) > * > * {
    border-bottom-width: 2px;
    border-color: var(--widget-bg2);
}

.woocommerce-checkout-review-order .form-check-input {
    vertical-align: middle;
}

.woocommerce ul.order_details li {
    font-size: 13px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.woocommerce ul.order_details {
    display: flex;
    justify-content: center;
}


.cart_totals h2 {
    font-weight: 600;
}

.woocommerce .cart-collaterals .cart_totals,
.woocommerce-page .cart-collaterals .cart_totals {
    padding: 15px;
    border: 1px solid var(--border-color2);
    border-radius: var(--dej-max-radius);
    width: 100%;
    background-color: white;
}

.woocommerce .cart_totals table.shop_table {
    border: none;
    margin: 12px 0 0;
}
.woocommerce td.product-name dl.variation dd p {
    padding: 0;
}
.woocommerce div.product form.cart .variations {
    margin-bottom: 0;
}
#billing_map_address_field #billing-map {
    border-radius: var(--dej-max-radius);
    height: 350px;
}

.woocommerce-checkout #payment ul.payment_methods li img {
    max-width: 200px;
}
.select2-container--open .select2-dropdown--below, .select2-container--open .select2-dropdown--above {
    margin-top: auto !important;
    border-top: 1px solid !important;
}
input.select2-search__field {
    background-color: #ececec !important;
    color: #232323 !important;
}
.select2-container--default .select2-selection--single .select2-selection__clear {
    min-width: 20px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.woocommerce table.shop_table tbody th, .woocommerce table.shop_table tfoot td, .woocommerce table.shop_table tfoot th {
    border-bottom: 0;
}
.woocommerce > .dej_login_form{
    width: 400px;
    box-shadow: 0 0 10px 10px #0000000f;
    padding: 20px;
    margin: 40px auto;
    border-radius: var(--dej-max-radius);
}
.woocommerce .dejavo_login form .form-row, .woocommerce .slide-login form .form-row {
    padding: 0 !important;
    margin: 0 !important;
}
.woocommerce-checkout .dej_login_form {
    display: none;
    height:0;
    transition: height 1s;
}
.woocommerce-checkout .dej_login_form.show {
    display: flex;
    height:auto;
}

/*------------------------------------ END Checkout  ---------------------------------*/

@media (max-width: 991.98px) {

    .dej_shop_sidebar {
        background-color: white;
        height: 100%;
        max-height: 100%;
        z-index: 1300;
        opacity: 0;
        visibility: hidden;
        position: fixed;
        top: 0;
        left: 100%;
        width: 365px;
        max-width: 83vw;
        text-align: start;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        transition: all 0.5s;

    }
    body.show_shop_sidebar .dej_shop_sidebar, body.show_shop_sidebar .overlay-black {
        opacity: 1;
        visibility: visible;
    }
    .show_shop_sidebar .dej_shop_sidebar {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
    .dej_shop_sidebar .dej_header_sidebar {
        display: flex;
    }
    .dej_shop_sidebar .sidebar_content {
        padding-bottom: 110px;
    }
    .shop_sidebar_btn {
        display: inline-flex;
        font-size: 15px;
        align-items: center;
        opacity: 1;
        gap: 5px;
        justify-content: flex-start;
        border: 1px solid #00000030;
        padding: 5px 10px;
        border-radius: var(--dej-min-radius);
        background-color: white;
    }
    .woocommerce .woocommerce-ordering select.orderby {
        background-color: white;
    }
    .shop_sidebar_btn i {
        font-size: 20px;
    }
    .dej_shop_sidebar > div {
        box-shadow: unset;
        border-bottom: 2px solid rgb(0 0 0 / 25%);
    }
    .dej_orderby {
        gap: 3px;
    }
    .dej_orderby li a {
        padding: 0 8px;
        min-height: 25px;
        font-size: 13px;
    }
    .dej_shop_content {
        flex-basis: 100%;
    }

    .dejavo_popup.video {
        max-width: 96vw;
    }


    .single_product_title {
        margin: 15px 0 !important;
        flex-wrap: wrap;
    }

    .DejavoSA-wrapper .DejavoSA-product-info .DejavoSA-product-data > div {
        max-width: 270px;
    }

    .woocommerce-message .button {
        padding: 8px !important;
        font-weight: 500;
    }
    .dej_cart, .dej_checkout .inner {
        flex-direction: column;
    }
    .woocommerce-cart-form, .woocommerce .cart-collaterals, .woocommerce-page .cart-collaterals, .dej_checkout_form, .dej_payment_review {
        width: 100%;
        flex-basis: 100%;
    }

}

@media (max-width: 767.98px) {
    .dejavo_advanced_reviews {
        flex-direction: column-reverse;
    }
    .dejavo_advanced_reviews .left {
        width: 100%;
        position: unset;
        top: unset;
    }
    .dejavo_advanced_reviews .right {
        width: 100%;
    }

    .DejavoSA-product-btn a {
        width: 20px;
        height: 20px;
        font-size: 16px;
        line-height: 20px;
        display: inline-flex;
        margin-right: 5px;
    }
    .DejavoSA-price-ori {
        font-size: 12px;
    }
    .DejavoSA-wrapper .DejavoSA-container .DejavoSA-product {
        flex-direction: row !important;
    }
    .DejavoSA-product-btn,
    .DejavoSA-product-price {
        display: none !important;
    }
    .DejavoSA-wrapper .DejavoSA-container .DejavoSA-product-action {
        margin-top: 10px;
    }


    .woocommerce ul.order_details {
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 10px;
        padding: 10px;
    }
    .woocommerce ul.order_details li {
        margin-left: 10px;
        margin-bottom: 25px;
        border-left: 0;
    }
    .dejavo-recommend-product-reveiw {
        flex-direction: column;
    }
    .display_dejavo_ratings {
        margin-bottom: 20px;
    }
    .dejavo_ratings .title {
        width: auto;
    }
    .dejavo_ratings .dejavo_rate {
        width: 100%;
    }
    .dejavo_ratings {
        flex-direction: column;
        align-items: flex-start;
    }
    .dejavo-input-comment-form input {
        margin-bottom: 10px;
    }
    .display_dejavo_ratings_product {
        gap: 10px;
        margin-top: 20px;
    }


    .cart_step .steps {
        width: 100%;
        flex-basis: 100%;
    }

    .cart_step .step_inner a {
        gap: 5px;
        font-size: 13px;
        border-width: 2px;
        padding: 0 9px;
        white-space: nowrap;
    }
    .order-delivery-times li label {
        padding: 5px;
    }


}
@media (max-width: 575.98px) {
    #dejavo_share .social_icons li a, #dejavo_share .DejavoWL-share-link {
        width: 45px;
        height: 45px;
    }
    .woocommerce > .dej_login_form{
        width:99%;
        margin: 20px auto;
    }

    .dej_shop_content {
         padding: 0;
         background-color: transparent;
         box-shadow: unset;
    }
    .woocommerce .woocommerce-result-count {
        display: none;
    }

    .return-to-shop {
        padding: 40px 20px;
    }
    .woocommerce #reviews #comments ol.commentlist li .comment-text {
        margin: 0 65px 0 0;
    }

    .single-product .DejavoFC-count {
        bottom: 130px;
    }

    .single-product .DejavoFC-count:hover {
        bottom: 127px;
    }
    .pro_single_rating {
        padding: 0;
    }

    .woocommerce nav.woocommerce-pagination ul li a, .woocommerce nav.woocommerce-pagination ul li span {
        padding: 13px !important;
    }

    .dejavo-comment-advantages {
        display: flex;
        gap: 0;
        flex-direction: column;
    }
    .dejavo-input-comment-form {
        width: 100%;
    }
    .woocommerce #reviews #comments ol.commentlist li .comment-text p.meta {
        align-items: flex-start;
        gap: 2px;
        flex-direction: column;
    }
    .DejavoSA-atc .DejavoSA-btn {
        padding: 0 6px !important;
        font-size: 12px !important;
    }

}
