/* @__________ all active class_____________@ */
.delivery__and_return__modal {
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.3s, opacity 0.3s;
}

.modal__overlay {
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.3s, opacity 0.3s;
}

.modal__overlay.show_overlay {
    visibility: visible;
    opacity: 1;
}

.delivery__and_return__modal.open_delivery_modal_info {
    visibility: visible;
    opacity: 1;
}

.faq__modal {
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.3s, opacity 0.3s;
}

.faq__modal.open_faq__modal {
    visibility: visible;
    opacity: 1;
}

.lightbox__modal {
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.3s, opacity 0.3s;
}

.lightbox__modal.open_product_light_box {
    visibility: visible;
    opacity: 1;
}

.image__viewer_btn_svg_icon {
    height: 100% !important;
    width: 100 !important;
}

/* @__________ all active class_____________@ */
/* HTML: <div class="loader"></div> */
.add__to_cart__btn_wrapper {
    position: relative;
}

.loader {
    width: 25px;
    padding: 4px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: #fff;
    --_m:
        conic-gradient(#0000 10%, #000),
        linear-gradient(#000 0 0) content-box;
    -webkit-mask: var(--_m);
    mask: var(--_m);
    -webkit-mask-composite: source-out;
    mask-composite: subtract;
    animation: l3 1s infinite linear;
}

@keyframes l3 {
    to {
        transform: rotate(1turn)
    }
}

.loader_position,
.buy_button_loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    visibility: hidden;
    opacity: 0;
}

@keyframes l7 {
    to {
        transform: rotate(.5turn)
    }
}



/* ======= breadcrumb css start ===== */
.main__product_template .breadcrumb__wrapper {
    background-color: #f7f7f7;
}

.main__product_template .breadcrumb {
    padding: 20px 0;
}

.main__product_template .breadcrumb__nav {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
}

.main__product_template .breadcrumb__nav li {
    display: flex;
    align-items: center;
}

.main__product_template .breadcrumb__nav li a {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: #555555;
    text-decoration: none;
}

.main__product_template .breadcrumb__nav li span {
    display: flex;
}

.shop_button_disabled {
    background-color: #6bad0d7d !important;
    cursor: not-allowed !important;
}

.shop_button_disabled.shop__btn {
    background-color: #9b9b9b !important;
    cursor: not-allowed !important;
}

.shop_button_disabled:hover {
    background-color: #6bad0d7d !important;
}

.shop_button_disabled.shop__btn:hover {
    background-color: #9b9b9b !important;
}

/* ========= main product css start ======= */

.main__product_area {
    padding: 15px 0;
}

.main__product_area .main_product {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* left content */

.main__product_area .product__left_content,
.main__product_area .product__right_content {
    max-width: 320px;
    /* margin: 0 auto; */
}

.main__product_area .product__left_content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.main__product_area .gallery__images {
    display: flex;
    flex-wrap: nowrap;
    gap: 12px;
    order: 2;
    overflow-x: scroll;
}

.main__product_area .gallery__images::-webkit-scrollbar {
    display: none;
}

.main__product_area .gallery__images img {
    width: 70px;
    height: 77px;
    display: block;
    object-fit: cover;
}

.main__product_area .lg__img {
    position: relative;
}

.main__product_area .lg__img .lg__img_style {
    width: 320px;
    min-height: 351px;
    display: block;
    object-fit: contain;
}

.main__product_area .image__viewer_btn {
    position: absolute;
    right: 2px;
    bottom: 2px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.1);
}

/* right content */
.main__product_area .product__right_content .row {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.main__product_area .product__title_wrapper {
    width: calc(100% - 64px - 10px);
}

.main__product_area .product__title {
    font-size: 18px;
    line-height: 26px;
    font-weight: 700;
    color: #333333;
}

.main__product_area .product__carousel {
    width: 64px;
    display: flex;
    align-items: center;
}

.main__product_area .product__carousel .controller__btn,
.main__product_area .product__carousel .grid__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.main__product_area .product__carousel .controller__btn {
    width: 20px;
    height: 20px;
}

.main__product_area .product__carousel .grid__icon {
    width: 24px;
    height: 24px;
}

.main__product_area .product__price .price {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #333333;
    position: relative;
}

.main__product_area .product__price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 2px;
}

.main__product_area .product__price .old__price::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    height: 1px;
    background-color: #999999;
}

.main__product_area .product__price .old__price {
    color: #999999;
}

/* ratings */
.main__product_area .product__rating_nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
}

.main__product_area .product__rating_nav ul li span {
    display: flex;
}

/* price */
.main__product_area .product__price,
.main__product_area .product__rating_nav {
    margin-top: 6px;
}

.main__product_area .product__price .price {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #333333;
}

.main__product_area .product__price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 2px;
}

.main__product_area .product__price .price {
    color: #555555;
    position: relative;
}

.main__product_area .product__price .old__price::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    height: 1px;
    background-color: #999999;
}

.main__product_area .product__price .old__price {
    color: #999999;
}

/* desc */
.main__product_area .product__desc_text,
.main__product_area .variant__name,
.main__product_area .variant__option,
.main__product_area .product__info_card span {
    font-size: 14px;
    line-height: 22px;
    font-weight: 400;
    color: #333;
}

.main__product_area .product__desc_wrapper {
    margin-top: 20px;
}

/* variants */
.main__product_area .variants {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.main__product_area .variant__heading {
    margin-bottom: 8px;
}

.main__product_area .variant__heading {
    display: flex;
    align-items: center;
    gap: 7px;
}

.main__product_area .variant__name,
.main__product_area .variant__option {
    color: #616161;
    display: flex;
}

.main__product_area .variant__option {
    color: #222222;
}

.main__product_area .variant__groups {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.main__product_area .variant__groups .variant__option {
    font-size: 12px;
    padding: 7px 10px;
    border: 1px solid #ebebeb;
    border-radius: 15px;
    height: 28px;
    align-items: center;
    cursor: pointer;
}

.main__product_area .selected__variant {
    background-color: #121212;
    color: #fff;
}

/* btn */
.main__product_area .btn {
    font-size: 16px;
    line-height: 22px;
    font-weight: 600;
    color: #555555;
    border: none;
    background-color: transparent;
    cursor: pointer;
}

.main__product_area .main_product_add__to_cart__btn,
.main__product_area .shop__btn {
    width: 100%;
    height: 40px;
    border-radius: 5px;
}

.main__product_area .main_product_add__to_cart__btn {
    color: #fff;
    background-color: var(--primaryColor);
}

.main__product_area .shop__btn {
    background-color: #333333;
    color: #fff;
}

/* ecommerce btn groups */
.main__product_area .ecommerce__btn_groups {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.main__product_area .quantity__and_add__to_cart {
    /* display: flex;
    flex-direction: column; */
    /* gap: 12px; */
}

.main__product_area .quantity__box {
    /* width: 80px; */
    height: 44px;
    display: flex;
    border: 1px solid #ececec;
    border-radius: 5px;
}

.main__product_area .quantity__controll {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 23px;
    height: 100%;
    outline: none;
    background-color: transparent;
    border: none;
    cursor: pointer;
}

.main__product_area .quantity__controll svg {
    display: flex;
}

.main__product_area .ecommerce__btn_groups .quantity__count {
    border: none;
    text-align: center;
    background-color: transparent;
    border-left: 1px solid #ececec;
    border-right: 1px solid #ececec;
    width: calc(100% - 46px);
    outline: none;
}

.main__product_area .product__info {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.main__product_area .quick__view_close__btn {
    position: fixed;
    top: 5px;
    right: 328px;
    z-index: 222;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main__product_area .product__full__details {
    margin-top: 30px;
}

.main__product_area .view__more__btn {
    font-size: 14px;
    display: flex;
}

.main__product_area .view__more__btn span {
    display: flex;
}

.main__product_area .extra__link_wrapper {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-top: 36px;
}

.main__product_area .extra__link_wrapper .extra_link {
    font-size: 14px;
    line-height: 22px;
    font-weight: 400;
    color: #616161;
    text-transform: uppercase;
}

/* ================ tabs pannel ========== */

.main__product_template .tabs__wrapper {
    margin-bottom: 25px;
}

.main__product_template .tabs__wrapper .desktop__menu {
    display: none;
}

.main__product_template .tabs__wrapper .pannel__wrapper {
    /* display: flex;
    flex-direction: column;
    gap: 8px; */
}

.main__product_template .pannel__mobile_heading {
    width: 100%;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px;
    border: 1px solid #ececec;
}

.pannel__content {
    padding: 0px 16px;
    max-height: 0px;
    overflow: hidden;
    transition: max-height .5s, overflow .5s, padding .5s;
    border-top: 1px solid transparent !important;
    border-bottom: 1px solid transparent !important;
}

.pannel__content.active_mobile_tab {
    padding: 16px;
    max-height: 500px;
    overflow-y: auto;
}

.main__product_template .pannel__mobile_heading .tab__heading {
    font-size: 14px;
    line-height: 22px;
    font-weight: 600;
    color: #333333;
}

.main__product_template .pannel__wrapper .pannel__content {
    /* padding: 20px 10px; */
    border: 1px solid #ececec;
}


/* pannel description content */

.main__product_template .pannel__content_desc .desc__col {
    width: 100%;
}

.main__product_template .pannel__content_desc .desc__col nav ul {
    margin-left: 30px;
}

.main__product_template .pannel__content_desc .desc__heading {
    font-size: 14px;
    line-height: 22px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 20px;
}

.main__product_template .pannel__content_desc .desc__text {
    font-size: 12px;
    line-height: 22px;
    font-weight: 400;
    color: #555555;
    margin-bottom: 20px;
}

.main__product_template .desc__col .images__wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.main__product_template .desc__col .images__wrapper img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/* additional info */
.main__product_template .info__heading {
    height: 42px;
    border: 1px solid #cccccc;
    display: flex;
    align-items: center;
}

.main__product_template .info__heading .info__title,
.main__product_template .info__heading .info__desc {
    font-size: 14px;
    line-height: 22px;
    font-weight: 600;
    color: #333333;
    padding: 0px 20px;
    height: 100%;
    display: flex;
    align-items: center;
}

.main__product_template .info__heading .info__title {
    width: 30%;
    border-right: 1px solid #cccccc;
}

.main__product_template .info__heading .info__desc {
    font-weight: 400;
    width: calc(100% - 30%);
}

/* ====  reviews ==== */
.main__product_template .empty__reviews {
    text-align: center;
}

.main__product_template .empty__review_title {
    font-size: 14px;
    line-height: 22px;
    font-weight: 400;
    color: #555555;
    margin-bottom: 10px;
}

.main__product_template .review__sub_title {
    font-size: 14px;
    line-height: 22px;
    font-weight: 600;
    color: #333333;
}

.main__product_template .review__btn {
    color: var(--primaryColor);
}

.main__product_template .total__reviews {
    margin-bottom: 20px;
}

.main__product_template .overall__ratings_title {
    font-size: 12px;
    line-height: 20px;
    font-weight: 600;
    color: #78726d;
    margin-bottom: 8px;
}

.main__product_template .total__reviews {
    display: flex;
    align-items: center;
    gap: 4px;
}

.main__product_template .ratins__list,
.main__product_template .user__ratings_menu {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
}

.main__product_template .ratins__list li span {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main__product_template .total__review_count {
    font-size: 14px;
    line-height: 22px;
    font-weight: 700;
    color: #333333;
}

/* ratings__progress_wrapper */
.main__product_template .rating__and_comments {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.main__product_template .ratings__progress_wrapper {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.main__product_template .rating__bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.main__product_template .rating__count {
    display: flex;
    align-items: center;
    gap: 2px;
    width: 27px;
}

.main__product_template .rating__count span {
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main__product_template .rating__count .rating__count_number,
.main__product_template .rating__count .total__rating {
    font-size: 12px;
    line-height: 20px;
    font-weight: 400;
    color: #333333;
}

.main__product_template .rating__progress_bar {
    width: calc(100% - 54px - 16px);
    height: 4px;
    background-color: #d2d5d8;
    border-radius: 4px;
    position: relative;
}

.main__product_template .progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 75%;
    height: 100%;
    background-color: #333333;
    border-radius: 4px;
}

.main__product_template .total__rating {
    width: 27px;
}

.main__product_template .rating__and_comments .review__btn_wrapper {
    margin-top: 20px;
}

.main__product_template .rating__and_comments .review__btn {
    width: 100%;
    height: 36px;
    font-size: 12px;
    line-height: 20px;
    font-weight: 600;
    color: var(--secondaryColor);
    background-color: var(--primaryColor);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
}

/* user comments */
.main__product_template .rating__and_comments .comments {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.main__product_template .rating__and_comments .user__comment_card {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.main__product_template .rating__and_comments .user__comment_card .user__info {
    order: 2;
}

.main__product_template .rating__and_comments .user__comment_card .user__info .user__name,
.main__product_template .rating__and_comments .user__comment_card .user__info span,
.main__product_template .rating__and_comments .user__comment_card .comment__text,
.main__product_template .rating__and_comments .user__comment_card .user__comment_date {
    font-size: 12px;
    line-height: 20px;
    font-weight: 400;
    color: #1a1a1a;
    display: block;
}

.main__product_template .rating__and_comments .user__comment_card .user__comment_date {
    color: #78726d;
}

.main__product_template .rating__and_comments .user__comment_card .user__info span {
    color: #78726d;
}

.main__product_template .rating__and_comments .user__comment_card .user__ratings {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.main__product_template .rating__and_comments .user__comment_card .review__images {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.main__product_template .rating__and_comments .user__comment_card .review__images img {
    width: 50px;
    height: 50px;
    display: block;
    object-fit: cover;
}

/* collapse plus icon */
.main__product_template .collaps__spand,
.child_collaps__spand {
    transition: all .3s;
}

.main__product_template .collaps__spand .plus__icon,
.child_collaps__spand .plus__icon {
    width: 14px;
    height: 14px;
    position: relative;
    display: block;
}

.main__product_template .collaps__spand .plus__icon::before,
.child_collaps__spand .plus__icon::before {
    position: absolute;
    content: "";
    width: 14px;
    height: 2px;
    opacity: 1;
    background: #555555;
    transform: translateX(0px);
    top: 6px;
    transition: all .3s;
}


.main__product_template .collaps__spand .plus__icon::after,
.child_collaps__spand .plus__icon::after {
    position: absolute;
    content: "";
    width: 2px;
    height: 14px;
    opacity: 1;
    background: #555555;
    transform: translateX(6px);
    transition: all .3s;
}

.main__product_template .wrapper__nav_item.active .collaps__spand,
.child__nav_item.active .child_collaps__spand {
    transform: rotate(-90deg);
    transition: all .3s;
}

.main__product_template .wrapper__nav_item.active .collaps__spand .plus__icon::before,
.child__nav_item.active .child_collaps__spand .plus__icon::before {
    opacity: 0;
}



/* ================= popup modal =============== */
.main__product_template .modal__overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 80;
}

.main__product_template .delivery__and_return__modal,
.main__product_template .review__modal,
.main__product_template .faq__modal,
.main__product_template .lightbox__modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: calc(100vh - 40px);
    overflow-y: scroll;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 90;
}

.main__product_template .delivery__and_return__modal::-webkit-scrollbar,
.main__product_template .review__modal::-webkit-scrollbar,
.main__product_template .faq__modal::-webkit-scrollbar {
    display: none;
}

.main__product_template .delivery__and_return,
.main__product_template .review__box,
.main__product_template .faq__area,
.main__product_template .lightbox {
    width: 320px;
    background-color: #fff;
    padding: 24px;
    position: relative;
}

.main__product_template .delivery__and_return {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.main__product_template .delivery__and_return .row .title {
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 12px;
}

.main__product_template .delivery__and_return .row p {
    font-size: 14px;
    line-height: 22px;
    font-weight: 400;
    color: #555555;
}

.main__product_template .modal__close_btn {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
}

/* review modal */
.main__product_template .review__modal .review__box {
    padding: unset;
}

.main__product_template .review__modal .review__box_top {
    padding: 25px 24px 20px 24px;
    box-shadow: 0 1px 0 0 #ececec;
}

.main__product_template .review__modal .title {
    font-size: 20px;
    line-height: 28px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 20px;
}

.main__product_template .review__modal .item__card {
    display: flex;
    gap: 15px;
    border: 1px solid #ececec;
    border-radius: 5px;
    padding: 12px;
}

.main__product_template .review__modal .item__card .item_img img {
    width: 60px;
    height: 66px;
    display: block;
    object-fit: cover;
}

.main__product_template .review__modal .item__card .item__title {
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 4px;
}

.main__product_template .review__modal .item__card .ratings {
    display: flex;
    align-items: center;
    gap: 4px;
}

.main__product_template .review__modal .item__card .ratings span {
    display: flex;
    align-items: center;
}

.main__product_template .review__modal .item__card .ratings ul,
.main__product_template .review__modal .item__quality ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
}

.main__product_template .review__modal .item__card .ratings ul li span,
.main__product_template .review__modal .item__quality ul li span {
    display: flex;
}

.main__product_template .review__modal .review__box_bottom {
    padding: 28px 24px 24px 24px;
}

.main__product_template .item__quality {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

/* input control */

.main__product_template .review__modal .input__wrapper .label,
.main__product_template .faq__modal .input__wrapper .label {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: #555;
    margin-bottom: 8px;
    display: block;
}

.main__product_template .review__modal .form__control,
.main__product_template .faq__modal .form__control {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: #333;
    width: 100%;
    height: 40px;
    border: 1px solid #cccccc;
    border-radius: 5px;
    outline: none;
    padding: 7px 15px;
}

.main__product_template .review__modal .input__box_wrapper,
.main__product_template .faq__modal .input__box_wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
}

.main__product_template .review__modal .textarea__control,
.main__product_template .faq__modal .textarea__control {
    height: 130px;
    resize: none;
}

.main__product_template .review__box_bottom .review__images {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 20px;
}

.main__product_template .review__box_bottom .review__images img {
    width: 40px;
    height: 40px;
    display: block;
    object-fit: cover;
}

.main__product_template .review__box_bottom .uploaded__img {
    margin-bottom: 20px;
}

.main__product_template .review__modal .submit__btn,
.main__product_template .faq__modal .submit__btn {
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    color: var(--secondaryColor);
    background-color: var(--primaryColor);
    width: 100%;
    height: 44px;
    border: none;
    border-radius: 5px;
}

.main__product_template .uploaded__img label {
    cursor: pointer;
}

.main__product_template #upload__photo {
    opacity: 0;
    position: absolute;
    z-index: -1;
}

.main__product_template .uploaded__img_wrapper {
    margin-bottom: 20px;
}

.main__product_template .uploaded__img_wrapper label {
    display: flex;
    align-items: center;
    gap: 7px;
}

.main__product_template .uploaded__img_wrapper .icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ebebeb;
    border-radius: 5px;
}

.main__product_template .wrap__wrapper {
    display: flex;
    flex-direction: column;
    /* gap: 2px; */
}

.main__product_template .wrap__wrapper p {
    font-size: 14px;
    line-height: 22px;
    font-weight: 600;
    color: #333333;
}

.main__product_template .wrap__wrapper span {
    font-size: 12px;
    line-height: 20px;
    font-weight: 400;
    color: #999999;
}

.main__product_template .faq__modal .review__box_top {
    margin-bottom: 20px;
}

/* lightbox */
.main__product_template .lightbox__content {
    display: flex;
    overflow: hidden;
}

.main__product_template .lightbox__modal .controller__btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #fff;
    z-index: 10;
}

.main__product_template .lightbox__modal .prev__controller {
    left: 20px;
}

.main__product_template .lightbox__modal .next__controller {
    right: 20px;
}

.main__product_template .lightbox__overlay {
    background-color: #303030;
}

.main__product_template .lightbox__modal {
    overflow: unset;
}

.main__product_template .lightbox {
    padding: unset;
}

.main__product_template .lightbox__content img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/* ?@__checkmark animation___@ */
.checkmark_animation,
.buy_button_check_animation {
    position: absolute;
    right: 0;
    top: 0px;
    width: 100%;
    display: none;
    justify-content: center;
    align-items: center;

}

.checkmark_animation svg {
    height: 40px;
    width: 40px;
    /* background-color: #ffffff; */
    border-radius: 50%;
}

.checkmark_animation svg g path {
    transform: translate(3px, 2px) scale(.5) !important;
}

.check {
    /* transfrom: scale(2); */
    stroke-width: 6px;
    stroke-dasharray: 50px, 50px;
    stroke-dashoffset: 0px;
    animation: checkmark .3s ease-in-out 0.1s backwards;

}


@keyframes checkmark {
    0% {
        stroke-dashoffset: 50px
    }

    100% {
        stroke-dashoffset: 0px
    }
}



/****
****   product action
****/
.product_action {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.product_action_add_to_card {
    grid-column: 2/-1;
}

.product_action_shop_button {
    position: relative;
    grid-column: 1/-1;
}

@media (min-width: 494px) {

    /* ========= main product css start ======= */
    .main__product_area {
        padding: 20px 0;
    }

    /* left content */

    .main__product_area .product__left_content,
    .main__product_area .product__right_content {
        max-width: 494px;
    }

    .main__product_area .lg__img .lg__img_style {
        width: 494px;
        min-height: 542px;
    }

    .main__product_template .delivery__and_return,
    .main__product_template .review__box,
    .main__product_template .faq__area,
    .main__product_template .lightbox {
        width: 494px;
    }
}

@media (min-width: 664px) {

    .main__product_area .product__left_content,
    .main__product_area .product__right_content {
        max-width: 664px;
    }

    .main__product_area .lg__img .lg__img_style {
        width: 664px;
        min-height: 730px;
    }

    .main__product_template .delivery__and_return {
        width: 664px;
    }

    .main__product_template .review__box,
    .main__product_template .faq__area,
    .main__product_template .lightbox {
        width: 548px;
    }
}

@media (min-width: 724px) {
    .main__product_template .delivery__and_return {
        width: 724px;
    }

    .main__product_template .lightbox {
        width: 700px;
        min-height: 770px;
    }
}

@media (min-width: 972px) {
    .main__product_area {
        padding: 50px 0;
    }

    .tab-content {
        max-height: 0px;
        background-color: #ffffff;
        overflow: hidden;
        /* transition: max-height .3s, overflow .3s; */
    }

    .tab-content.active__desk_menu {
        max-height: 500px;
        overflow-y: auto;
        /* transition: max-height .3s, overflow .3s; */

    }

    .pannel__content {
        max-height: unset;
        padding: 0px 0px;
    }

    .pannel__content.active_mobile_tab {
        max-height: unset;
        overflow: visible;
    }

    .main__product_area .main_product {
        flex-direction: row;
    }

    /* left content */
    .main__product_area .product__left_content {
        max-width: unset;
        margin: unset;
        gap: 16px;
    }

    .main__product_area .lg__img .lg__img_style {
        width: 486px;
        min-height: 517px;
    }

    .main__product_area .gallery__images {
        gap: 16px;
    }

    .main__product_area .gallery__images img {
        width: 100px;
        height: 110px;
    }

    .main__product_area .image__viewer_btn {
        right: 14px;
        bottom: 14px;
        cursor: pointer;
    }

    .main__product_area .product__left_content,
    .main__product_area .product__right_content {
        width: calc(100% / 2);
    }

    /* right content */
    .main__product_area .product__right_content .row {
        margin-bottom: 8px;
    }

    .main__product_area .product__title {
        font-size: 24px;
        line-height: 32px;
    }

    .main__product_area .product__price .price {
        font-size: 20px;
    }

    .main__product_area .product__price,
    .main__product_area .product__rating_nav {
        margin-top: 8px;
    }

    /* variants */
    .main__product_area .variants {
        margin-top: 20px;
    }

    /* btn */
    .main__product_area .main_product_add__to_cart__btn,
    .main__product_area .shop__btn {
        height: 44px;
        transition: 0.3s;
    }

    .main__product_area .ecommerce__btn_groups {
        margin-top: 36px;
    }

    .main__product_area .quantity__and_add__to_cart {
        /* flex-direction: row; */
    }

    .main__product_area .ecommerce__btn_groups .add__to_cart__btn_wrapper {
        /* width: calc(100% - 92px); */
    }

    .main__product_area .product__info {
        margin-top: 24px;
    }

    .main__product_area .product__full__details {
        margin-top: 40px;
    }

    .main__product_area .extra__link_wrapper .extra_link {
        cursor: pointer;
    }

    /* ==== hover effect ==== */
    .main__product_area .view__more__btn,
    .main__product_area .view__more__btn span svg {
        transition: 0.3s;
    }

    .main__product_area .main_product_add__to_cart__btn:hover {
        background-color: #333333;
    }

    .main__product_area .shop__btn:hover {
        background-color: var(--primaryColor);
    }

    .main__product_area .view__more__btn:hover {
        color: var(--primaryColor);
    }

    .main__product_area .view__more__btn:hover span svg {
        transform: translateX(5px);
    }

    .main__product_area .view__more__btn:hover span svg path {
        fill: var(--primaryColor);
    }

    /* ================ tabs pannel ========== */

    .main__product_template .tabs__wrapper .desktop__menu {
        margin: 0;
        padding: 0;
        list-style: none;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 36px;
        padding: 50px 0;
    }

    .main__product_template .desktop__menu .tab__heading {
        font-size: 20px;
        line-height: 28px;
        font-weight: 700;
        color: #999999;
        cursor: pointer;
    }

    .main__product_template .pannel__wrapper .pannel__mobile_heading {
        display: none;
    }

    .main__product_template .pannel__wrapper .pannel__content {
        border: none;
        padding: 0;
    }

    .main__product_template .tab__menu_item.active__desk_menu .tab__heading {
        color: #333333;
    }

    .main__product_template .pannel__content_desc {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .main__product_template .pannel__content_desc .desc__col {
        width: calc(100% / 2 - 10px);
    }

    .main__product_template .pannel__content_desc .desc__col:nth-child(3) {
        width: 100%;
    }

    .main__product_template .pannel__content_desc .desc__heading {
        font-size: 20px;
        line-height: 28px;
        margin-bottom: 16px;
    }

    .main__product_template .pannel__content_desc .desc__text {
        font-size: 14px;
        line-height: 22px;
    }

    .main__product_template .pannel__content_desc .images__wrapper {
        flex-direction: row;
        gap: 30px;
    }

    .main__product_template .pannel__content_desc .images__wrapper img {
        width: calc(100% / 3 - 20px);
    }

    /* additional info */

    .main__product_template .additional__info,
    .main__product_template .empty__reviews {
        margin: 50px 0;
    }

    /* === reviews === */
    .main__product_template .rating__and_comments {
        flex-direction: row;
        gap: 80px;
    }

    .main__product_template .rating__and_comments .ratings {
        width: 350px;
    }

    .main__product_template .rating__and_comments .comments {
        width: calc(100% - 350px - 80px);
        gap: 32px;
    }

    .main__product_template .total__reviews {
        margin-bottom: 25px;
    }

    .main__product_template .overall__ratings_title {
        margin-bottom: 12px;
    }

    .main__product_template .overall__ratings_title,
    .main__product_template .rating__and_comments .user__comment_card .user__info .user__name,
    .main__product_template .rating__and_comments .user__comment_card .user__info span,
    .main__product_template .rating__and_comments .user__comment_card .comment__text,
    .main__product_template .rating__and_comments .user__comment_card .user__comment_date {
        font-size: 14px;
        line-height: 22px;
    }

    .main__product_template .total__review_count {
        font-size: 18px;
        line-height: 26px;
    }

    .main__product_template .rating__count .rating__count_number,
    .main__product_template .rating__count .total__rating {
        font-size: 14px;
        line-height: 22px;
    }

    .main__product_template .rating__and_comments .review__btn {
        width: max-content;
        height: 40px;
        font-size: 16px;
        line-height: 24px;
        padding: 7px 25px;
    }

    .main__product_template .rating__and_comments .user__comment_card {
        flex-direction: row;
        gap: 24px;
    }

    .main__product_template .rating__and_comments .user__comment_card .user__info {
        width: 180px;
        order: 1;
    }

    .main__product_template .rating__and_comments .user__comment_card .user__comment {
        order: 2;
        width: calc(100% - 180px - 24px);
    }

    .main__product_template .review__btn {
        cursor: pointer;
    }

    .main__product_template .delivery__and_return {
        width: 960px;
    }

    .main__product_template .delivery__and_return {
        gap: 24px;
    }

    .main__product_template .delivery__and_return .row .title {
        font-size: 20px;
        line-height: 28px;
    }

    .main__product_template .modal__close_btn,
    .main__product_template .controller__btn {
        right: 24px;
        top: 24px;
        cursor: pointer;
    }

    .main__product_template .delivery__and_return__modal,
    .main__product_template .review__modal {
        height: calc(100vh - 60px);
    }
}

@media (min-width: 1220px) {
    .main__product_area .product__left_content {
        width: 702px;
        height: 647px;
        flex-direction: row;
    }

    .main__product_area .gallery__images {
        flex-direction: column;
        order: 1;
        overflow-x: hidden;
        overflow-y: scroll;
    }

    .main__product_area .lg__img {
        order: 2;
    }

    .main__product_area .lg__img .lg__img_style {
        width: 586px;
        min-height: auto;
        max-height: 60%;
    }

    /* right content */
    .main__product_area .product__right_content {
        width: calc(100% - 702px - 30px);
    }
}

.active_thumbs_img {
    border: 1px solid var(--primaryColor);
}