/* -------------------------------------------------------------------------- */
/*                  this section is for layout of the header                  */
/* -------------------------------------------------------------------------- */
.header {
    display: flex;
    flex-direction: column;
    margin-inline: auto;
    z-index: 9998;
    position: sticky;
    top: 47px;
}

.header_Top {
    position: sticky;
    top: 0;
    z-index: 999;
}

/* bottom header */
.header_Bottom {
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.header_Bottom .container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    padding-block: 1rem;
    position: relative;
}

.header_Bottom__Right {
    display: grid;
    grid-template-columns: auto auto auto;
    align-items: center;
    gap: 1.5rem;
    padding-inline-end: 1.5rem;
}

.header_Bottom__Left {
    display: grid;
    grid-template-columns: auto auto auto auto;
    align-items: center;
    gap: 1.5rem;
    padding-inline-start: 1.5rem;
}

@media (max-width: 991px) {
    .header_Bottom .container {
        grid-template-columns: 1fr 1fr;
    }

    .header_Bottom__Right {
        display: flex;
        align-items: center;
        padding-inline-end: 0;
    }

    .header_Bottom__Left {
        display: none;
    }

    .header__Search_Wrapper {
        display: flex;
        justify-content: end;
        align-items: center;
    }

    .header__Search_Inner {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        height: 100dvh;
        opacity: 0;
        pointer-events: none;
        transition: var(--transition);
    }

    .header__Search_Wrapper.open .header__Search_Inner {
        opacity: 1;
        pointer-events: all;
    }

    .header__Search_Btn .WbIcon {
        --icon: 1.5rem;
        --icon-color: var(--mc1);
    }

    .HeaderSearch {
        padding: 0.5rem 1rem;
        background-color: #ffffffe5;
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
    }

    .header__Search_Back {
        height: calc(100% - 56px);
        width: 100%;
        background-color: #02432f66;
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
    }

    body:has(.header__Search_Wrapper.open) {
        height: 100vh;
        height: 100dvh;
        overflow: hidden;
    }
}

/* --------------------------------------- */

.header__Logo {
    width: 139px;
}

.header__Logo a,
.header__Logo img {
    width: 100%;
    display: block;
}

@media (max-width: 991px) {
    .header__Logo {
        width: 92px;
        position: absolute;
        left: 50%;
        top: 50%;
        translate: -50% -50%;
    }
}

/* --------------------------------------- */

.header__Btn,
.header__Login a,
.header__Login a:focus .header__Login a:visited {
    display: flex !important;
    align-items: center;
    column-gap: 10px;
    border-radius: 10px !important;
    font-size: var(--fz-md) !important;
    line-height: 24px !important;
    padding: 7px 1rem !important;
    position: relative;
}

.header__Btn::before,
.header__Profile::before {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 3rem;
    z-index: 2;
    display: none;
}

.header__Btn:hover::before,
.header__Profile:hover::before {
    display: block;
}

.header__Btn_Icon,
.bottom__Btn_Icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 1.5rem;
    height: 1.5rem;
    position: relative;
}

.header__Btn_Icon img,
.bottom__Btn_Icon img {
    position: absolute;
    inset: 0;
    transition: var(--transition);
}

.header__Btn_Icon img:last-child,
.bottom__Btn_Icon img:last-child {
    opacity: 0;
}

.header__Btn_Wrapper:hover .header__Btn_Icon img:first-child,
.bottom__Button.active .bottom__Btn_Icon img:first-child {
    opacity: 0;
}

.header__Btn_Wrapper:hover .header__Btn_Icon img:last-child,
.bottom__Button.active .bottom__Btn_Icon img:last-child {
    opacity: 1;
}

.header__Btn_Wrapper:hover .header__Btn {
    background-color: var(--mc1);
    color: var(--white);
}

.header__Drop {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 7rem;
    width: calc(100% - 14rem);
    z-index: 999;
    box-shadow: 0px 2px 16px -5px #00000008;
    border-radius: 15px;
    background-color: var(--white);
    padding: 2rem;
    transition: var(--transition);
    opacity: 0;
    pointer-events: none;
    display: flex;
}

.header__Menu__Btn:hover ~ .header__Drop,
.header__CategoryBtn:hover ~ .header__Drop,
.header__Drop:hover {
    opacity: 1;
    pointer-events: all;
}

.header__Drop__Image {
    width: 65%;
    overflow: hidden;
    padding-inline-start: 2.5rem;
}

.header__Drop__Image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.header__Drop > *:first-child {
    width: 35%;
    padding-inline-end: 2.5rem;
    border-inline-end: 1px solid var(--mc4);
}

.header_Nav_Desktop ul.nav,
.header__Category .SCat-Main,
.Main__Menu_Mobile .nav.nav-pills {
    display: flex;
    flex-direction: column;
    row-gap: 0.5rem !important;
}

.header_Nav_Desktop ul.nav .menu-link,
.header__Category .SCat-Main a,
.Main__Menu_Mobile .nav.nav-pills a {
    display: block;
    width: 100%;
    padding: 1rem;
    border-radius: 10px;
    transition: var(--transition);
}

.Main__Menu_Mobile .nav.nav-pills a {
    padding: 0.75rem 1rem;
}

.header_Nav_Desktop ul.nav .txt-menu,
.header__Category .SCat-Main a,
.Main__Menu_Mobile .nav.nav-pills a .txt-menu {
    display: flex;
    align-items: center;
    column-gap: 0.75rem;
    font-size: var(--fz-md);
    line-height: 24px;
    color: var(--mc1);
}

.header_Nav_Desktop ul.nav .menu-link:hover,
.header__Category .SCat-Main a:hover,
.Main__Menu_Mobile .nav.nav-pills li.active a {
    background-color: var(--mc2);
}

/* --------------------------------------- */

.header__CallUs {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.header__CallUs > span {
    font-size: var(--fz-md);
    font-weight: var(--fw-300);
    line-height: 25px;
    color: var(--mc1);
    width: max-content;
    direction: ltr;
    text-align: left;
}

.header__CallUs > span span {
    font-weight: var(--fw-700);
}

@media (max-width: 991px) {
    .header__CallUs {
        display: none;
    }
}

/* --------------------------------------- */

.header_Nav_Desktop ul.nav {
    gap: 1rem;
}

.header__BottomTools_Wrapper {
    display: flex;
    gap: 1rem;
}

.header_Basket__Wrapper {
    display: flex;
}

/* handle nav menu in mobile and desktop */

@media (max-width: 991px) {
    .header_Nav_Desktop {
        display: none;
    }

    .header_Basket__Wrapper {
        display: flex;
        position: absolute;
        top: 1rem;
        left: 3rem;
    }

    .header__Menu__Btn,
    .header__WishList,
    .header__Login {
        display: none !important;
    }
}

.Main__Menu li {
    margin-left: 10px;
}

.Main__Menu li.active {
    border-bottom: 1px solid;
}

.header .menu .navbar_out {
    height: 100%;
}

.header .menu .navbar {
    padding: 0;
    height: 100%;
}

/* -------------------------------------------------------------------------- */
/*                                  drop down                                 */
/* -------------------------------------------------------------------------- */

.wb_Dropdown__Menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    min-width: 10rem;
    padding: 0.5rem;
    margin: 0.125rem 0 0;
    font-size: 1rem;
    color: #212529;
    text-align: right;
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0.25rem;
    opacity: 0;
    transform: translateY(20%);
    transition: all ease-in 0.3s;
    pointer-events: none;
}
.wb_Dropdown__Menu .nav-pills {
    flex-direction: column;
}

.wb_Dropdown__Menu.active {
    opacity: 1;
    transform: translateY(0);
    transition: all ease-in 0.3s;
    pointer-events: auto;
}

.wb__dropdown {
    position: relative;
}

.wb__dropdown i {
    font-size: inherit;
    color: inherit;
}

.header__Profile {
    position: relative;
}

.header__Profile:hover .btnStyle_Primary > .WbIcon {
    --icon-color: var(--white);
}

.header__Profile:hover .wb__Dropdown_Menu {
    opacity: 1;
    pointer-events: all;
}

.wb__Dropdown_Menu {
    position: absolute;
    top: calc(100% + 1.5rem);
    right: 0;
    min-width: 200px;
    background-color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    border-radius: 10px;
    padding: 0.5rem;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    box-shadow: 0px 0px 20px 0px #00000008;
}

.wb__Dropdown_Menu.open {
    opacity: 1;
    pointer-events: all;
}

.wb__Dropdown_Menu ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
}

.wb__Dropdown_Menu li {
    width: 100%;
    transition: var(--transition);
    border-radius: 4px;
    padding: 0.5rem 10px;
}

.wb__Dropdown_Menu li:hover {
    background-color: #ebf0ee;
}

.wb__Dropdown_Menu li a {
    justify-content: start;
    padding: 0 !important;
}

.wb__Dropdown_Menu .txt-menu {
    font-size: var(--fz-sm);
    line-height: 24px;
    color: #02432f;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* -------------------------------------------------------------------------- */
/*                                  Ajax Basket                               */
/* -------------------------------------------------------------------------- */

.AjaxMiniCartWrapper .icon-cart {
    background: url(/Portals/0/Images/basket.svg) no-repeat center;
    width: 1.5rem;
    height: 1.5rem;
    min-width: 1.5rem;
    min-height: 1.5rem;
    max-width: unset;
    margin: 0;
    background-size: 1.5rem !important;
    background-position: center left;
    transition: var(--transition);
}

@media (min-width: 992px) {
    .AjaxMiniCartWrapper:hover .icon-cart {
        background: url(/Portals/0/Images/basket-hover.svg) no-repeat center;
        background-size: 1.5rem !important;
        background-position: center left;
    }
}

.AjaxMiniCartWrapper svg {
    display: none;
}

.AjaxMiniCartWrapper #cart {
    padding: 0;
}

.AjaxMiniCartWrapper #cartNum .num {
    top: 0;
    right: 0;
    transform: translate(40%, -50%);
    background-color: var(--mc1);
    color: var(--white);
    width: 1.5rem;
    height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.AjaxMiniCartWrapper .cartInfo {
    left: 0;
    right: auto;
    z-index: 999;
    padding-top: 1rem !important;
    top: 25px !important;
}

.AjaxMiniCartWrapper .cartInfo-wrap:after {
    left: 12px;
    right: auto;
}

/* -------------------------------------------------------------------------- */
/*                                 HEADER SEARCH                              */
/* -------------------------------------------------------------------------- */

.header__Search__Content {
    width: 100%;
    position: absolute;
    bottom: -1px;
    left: 0;
    background-color: #fff;
    display: none;
}

.header__Search__Content.active {
    display: block;
}

.ModWBAdvanceSearchC {
    width: 100%;
    /* max-width: 600px; */
    margin: 0 auto;
    height: auto;
}

.headerSearch__Content::before {
    content: "";
    display: block;
    position: fixed;
    width: 100%;
    height: calc(100% - 80px);
    background: rgba(29, 43, 71, 0.8);
    left: 0;
    bottom: 0;
    z-index: -1;
}

.searchBoxContainer {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    padding: 0.5rem 1rem;
    column-gap: 10px;
    border-radius: 10px;
    background-color: var(--bw-fade-2);
}

.searchBoxContainer .search-icon {
    display: block;
    width: 1.5rem;
    height: 1.5rem;
    min-width: 1.5rem;
    min-height: 1.5rem;
    mask: url(/portals/0/Images/search.svg) no-repeat center;
    mask-size: cover;
    -webkit-mask: url(/portals/0/Images/search.svg) no-repeat center;
    -webkit-mask-size: cover;
    background-color: #a1a1a1;
    cursor: pointer;
}

.searchBoxContainer .closeBtn {
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

.searchBoxContainer .closeBtn img {
    width: 20px;
    height: 20px;
}

.searchBoxContainer .search-icon::before {
    display: none;
}

#txtAdvanceSearch {
    text-indent: 0;
    border-radius: 0;
    border: unset;
    box-shadow: unset;
    height: 24px;
    font-size: var(--fz-md);
    line-height: 24px;
    color: #a1a1a1 !important;
    background-color: var(--bw-fade-2) !important;
}

#txtAdvanceSearch::placeholder {
    font-size: var(--fz-md);
    line-height: 24px;
    color: #a1a1a1 !important;
}

#resultAdvanceSearch {
    box-shadow: 0 5px 10px 0px #d2d2d240;
    z-index: 1000;
    background-color: var(--bw-fade-2);
}

#resultAdvanceSearch.loading {
    background-color: var(--bw-fade-2) !important;
}

#resultAdvanceSearch .category-content,
#resultAdvanceSearch .product-content,
.search-result .category-content .search-name,
.search-result .product-content .product-name {
    color: var(--tc1);
    text-transform: capitalize;
}

#resultAdvanceSearch .product-content img {
    border: 1px solid #dadada;
    border-radius: 5px;
    margin-right: 5px;
}

/* -------------------------------------------------------------------------- */
/*                                 RESPONSIVE                                 */
/* -------------------------------------------------------------------------- */

@media all and (max-width: 991px) {
    .Mobile__Menu_Icon {
        display: flex;
        flex-direction: column;
        width: 1.5rem;
        height: 1.5rem;
        cursor: pointer;
        position: relative;
    }

    /* *header sideMenu */

    .sidebar_header__Logo {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        margin: 1.75rem 0 1.5rem;
    }

    .sidebar_header__Logo img {
        width: 140px;
    }

    .sidebar_header__Logo p {
        font-size: 12px;
        line-height: 18px;
        color: var(--tc1);
    }

    .menu__ShadowBox {
        width: 110vw;
        height: 110vh;
        position: fixed;
        background-color: black;
        opacity: 0.8;
        top: 0;
        left: 0;
        transform: translate(-5%, -5%);
        z-index: 998;
        display: none;
    }

    .show-effect .menu__ShadowBox {
        display: block;
    }

    .header__ProductCtg .SCat-Main {
        padding: 0rem 1rem;
        height: calc(100vh - 220px);
        max-height: calc(100vh - 220px);
        height: calc(100dvh - 220px);
        max-height: calc(100dvh - 220px);
        overflow-y: scroll;
        overflow-x: hidden;
    }

    .Main__Menu_Mobile {
        visibility: hidden;
        opacity: 0;
        transform: translateX(100%);
        min-width: 80vw;
        width: 80vw;
        z-index: 999;
        position: fixed;
        top: -3rem;
        right: 0;
        display: flex;
        transition: var(--transition);
        height: 100vh;
        height: 100dvh;
        max-height: 100vh;
        max-height: 100dvh;
        overflow-y: hidden;
    }

    .main__Menu_Content {
        width: 100%;
        height: 100%;
        background-color: var(--white);
        box-shadow: 0px 0px 20px 0px #00000008;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding: 0.75rem 1rem 0;
    }

    .overlay {
        position: fixed;
        inset: 0;
        opacity: 0;
        pointer-events: none;
        transition: var(--transition);
        background-color: #02432f66;
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        z-index: 9998;
    }

    body:has(.Main__Menu_Mobile.overflow-hidden) .overlay {
        opacity: 1;
        pointer-events: all;
    }

    body:has(.phone__Categories.open) {
        overflow: hidden;
    }

    .header__Mobile__Socials {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1rem 0.75rem 3rem;
    }

    .header__Mobile__Socials .WbIcon {
        --icon: 1.5rem;
        --icon-color: var(--mc1);
    }

    .sidebar_header__Menu_Close {
        --icon: 2rem;
        --icon-color: var(--mc1);
    }

    .show-effect .Main__Menu_Mobile {
        width: 100%;
        opacity: 1;
        visibility: visible;
        transform: translateX(0px);
        overflow-x: hidden;
    }

    .page_Scrolled__Down .Main__Menu_Mobile {
        transform: translate(100%, 100px);
    }

    .page_Scrolled__Down .show-effect .Main__Menu_Mobile {
        transform: translate(0%, 100px);
    }

    /* .Main__Menu_Mobile .nav.nav-pills > li {
        text-align: right;
        width: 100%;
        margin: 0px;
        font-weight: var(--fw-400);
        padding: 12px 0;
        border-bottom: dashed var(--mc2-fade-4) 1px;
    } */

    .header__Menu .nav > li > a {
        display: block;
        margin-bottom: 0;
    }

    /* .nav.nav-pills {
        display: flex;
        flex-direction: column;
        justify-content: start;
        align-items: center;
        width: 100%;
        padding: 0;
    }

    .nav.nav-pills > li {
        transition: var(--transition);
        display: flex;
        align-items: center;
        width: 100%;
    }

    .nav.nav-pills > li.active {
        font-weight: var(--fw-600);
    } */

    /* !header sideMenu End  */

    /*------------------------------------------------*/
    /* Start Submenu Menu */
    /*------------------------------------------------*/

    .Main__Menu li.dropdown > a:after {
        position: absolute;
        left: -15px;
        top: 5px;
        color: #fff;
    }

    .Main__Menu li.dropdown b:after {
        color: #fff;
    }

    .Main__Menu .nav.nav-pills > li.dropdown a {
        pointer-events: none;
    }

    .Main__Menu .nav-pills li.dropdown .dropdown-menu {
        position: relative;
        float: none;
        top: 0;
        background: transparent;
        text-align: center;
        display: none;
    }

    body:has(.product__Gallery_Wrapper) .bottom__Pannel {
        display: none;
    }

    body:has(.product__Gallery_Wrapper) .header__Search_Wrapper {
        display: none;
    }

    body:has(.product__Gallery_Wrapper) .header_Prod_Back {
        display: block !important;
        width: fit-content;
        margin-right: auto;
    }

    body:has(.product__Gallery_Wrapper) .header_Bottom__Left {
        display: block !important;
    }
    /*------------------------------------------------*/
    /* End Submenu Menu */
    /*------------------------------------------------*/
}

/* icon tooltip hover */
:is(
        .gallery_wishlist,
        .share-Btn,
        .blogDetail__Modal__Link a,
        .blogDetail__Sticky > div,
        .blogDetail__Sticky > div:has(.likesBtn),
        .blogDetail__Sticky > a,
        .header__WishList
    ) {
    position: relative;
}

:is(
        .gallery_wishlist,
        .blogDetail__Modal__Link a,
        .share-Btn,
        .blogDetail__Sticky > div:first-of-type,
        .blogDetail__Sticky > div:has(.likesBtn),
        .blogDetail__Sticky > a,
        .header__WishList
    )::before {
    content: "افزودن به علاقه‌مندی‌ها";
    position: absolute;
    top: -50px;
    left: 50%;
    translate: -50%;
    padding-inline: 8px;
    padding-block: 4px;
    background-color: #ebf0ee;
    color: #02432f;
    white-space: nowrap;
    border-radius: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    min-width: 80px;
    text-align: center;
}

.blogDetail__Modal__Link a::before {
    content: "کپی" !important;
}

.header__WishList::before {
    content: "محصولات مورد علاقه" !important;
}

.share-Btn::before {
    content: "اشتراک گذاری" !important;
}

.sticky_Comment::before {
    content: "نظرات" !important;
}

.blogDetail__Sticky > .sticky_Like::before {
    content: "پسندیدم" !important;
}

.blogDetail__Sticky > .sticky_Share::before {
    content: "اشتراک گذاری" !important;
}

.blogDetail__Sticky > a.blogDetail__Pdf::before {
    content: "دانلود فایل پی دی اف" !important;
}

:is(
        .gallery_wishlist,
        .share-Btn,
        .blogDetail__Modal__Link a,
        .PreviousPage,
        .share-Btn,
        .blogDetail__Sticky > div:first-of-type,
        a[data-target="#shareModal"],
        .blogDetail__Sticky > a,
        .header__WishList
    )::after {
    position: absolute;
    content: "";
    width: 0;
    left: 50%;
    translate: -50%;
    top: -20px;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 12px solid #ebf0ee;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.gallery_wishlist:hover::after,
.gallery_wishlist:hover::before,
.share-Btn:hover::after,
.share-Btn:hover::before,
.blogDetail__Modal__Link a:hover::before,
.blogDetail__Sticky > div:first-of-type:hover::before,
.blogDetail__Sticky > div:first-of-type:hover::after,
.blogDetail__Sticky > div:has(.likesBtn):hover::before,
.blogDetail__Sticky > div:has(.likesBtn):hover::after,
.blogDetail__Sticky > a:hover::before,
.blogDetail__Sticky > a:hover::after,
.header__WishList:hover:after,
.header__WishList:hover:before {
    opacity: 1 !important;
    visibility: visible !important;
}

@media (max-width: 991px) {
    .sticky_Comment,
    .sticky_Like {
        display: flex;
        flex-direction: row-reverse;
        gap: 4px;
    }

    .sticky_Comment img {
        filter: brightness(0) saturate(100%) invert(68%) sepia(14%) saturate(10%) hue-rotate(119deg) brightness(93%)
            contrast(87%);
    }
}

/* remove buttons of checkout */
.wbBasket__TableItem .MuiButtonGroup-root button:not(:disabled) {
    display: none !important;
}

div[id*="pnlProductList"] .PagingTable {
    border: unset !important;
    background-color: unset !important;
}

/*  */
.Field-Label-Top {
    position: absolute;
    top: 1.5rem;
    background: #fff;
    right: 16px;
    width: fit-content !important;
    transform: translateY(-50%);
    font-size: 16px;
    color: var(--mc1);
    transition: all 0.3s ease;
    visibility: hidden !important;
    display: block !important;
    z-index: 1;
    font-size: 14px;
}

li.Field {
    position: relative;
}

li.Field:has(input:focus, input:not(:placeholder-shown), textarea:focus) .Field-Label-Top {
    top: 0;
    visibility: visible !important;
}

li.Field.Field.Field.Field input:focus::placeholder,
li.Field.Field.Field.Field textarea:focus::placeholder {
    color: transparent !important;
}

li.Field.Checkbox.Checkbox.Checkbox.Checkbox label,
li.Field.Radiobutton.Radiobutton.Radiobutton.Radiobutton label {
    position: relative !important;
}

.employmentForm_Wrapper.employmentForm_Wrapper p {
    font-size: var(--fz-md);
}

.fixed_Contact {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    transition: var(--transition);
    cursor: pointer;
    z-index: 999;
}

body.page_scrolled_Middle .fixed_Contact {
    bottom: 5rem;
}

@media (max-width: 991px) {
    .fixed_Contact {
        bottom: 5.5rem;
        left: 0.75rem;
    }

    body:has(.product__Gallery_Wrapper) .fixed_Contact {
        bottom: 9rem;
    }

    body:has(.qty_Notice) .fixed_Contact {
        bottom: 12.5rem;
    }

    body.page_scrolled_Middle .fixed_Contact {
        bottom: 8.5rem;
    }

    body.page_scrolled_Middle:has(.product__Gallery_Wrapper) .fixed_Contact {
        bottom: 12rem;
    }

    body.page_scrolled_Middle:has(.qty_Notice) .fixed_Contact {
        bottom: 15.5rem;
    }


}

.fixed_Contact img {
    width: 42px;
    height: 42px;
}

.homeCustomersWrapper {
    margin-inline: calc(50% - 50vw);
    position: relative;
}

.homeCustomersWrapper::before {
    content: "";
    background: url(/Portals/0/Images/wave-back.webp) no-repeat;
    width: 100%;
    height: 600px;
    left: 0;
    position: absolute;
    z-index: -1;
    opacity: 0.3;
    background-size: cover;
    translate: 0 -15%;
}

@media (min-width: 992px) {
    .call_Fixed {
        display: none;
    }
}

@media (max-width: 991px) {
    .whatsapp_fixed {
        display: none;
    }

    .call_Fixed img {
        width: 40px;
        height: 40px;
    }

    .fixed_Contact {
        left: 1rem;
        margin-bottom: 0.5rem;
    }

    .homeBlog_Wrapper {
        position: relative;
        margin-bottom: 3.5rem;
    }

    .homeBlog_Wrapper .wbSliderNav {
        z-index: 10;
        position: absolute;
        bottom: -20%;
        left: 50%;
        translate: -50%;
    }

    .homeBlog_Wrapper .homeBlogTitle {
        margin-inline: auto;
    }
}

/* .Field-Container-Wide {
    position: relative;
}

input:focus + .Field-Label-Top,
input:not(:placeholder-shown) + .Field-Label-Top {
    display: block;
    top: 0;
    font-size: 12px;
    color: #333;
} */
.fancybox__content:has(video, iframe) {
    padding: 0 !important;
    padding: 0 !important;
    width: 100%;
    height: auto;
    aspect-ratio: 1.77/1;
}

@media (max-width:991px) {
    .fancybox__content:has(video, iframe) {
        width: 100%;
    }
}

@media (min-width: 992px) {
    .fancybox__content:has(video, iframe) {
        flex: 1 !important;
        height: auto !important;
        width: auto !important;
    }
}

.fancybox__content iframe {
    height: 100%;
}

#about-us-modal .modal-dialog {
    max-width: 866px;
}

@media (min-width: 992px) {
    #about-us-modal .modal-body {
        padding-inline: 2rem;
        padding-bottom: 2rem;
    }
}

#about-us-modal .modal-header {
    border-bottom: unset !important;
    align-items: center;
}

#about-us-modal .sectionTtl1 {
    flex: 1;
    margin-bottom: unset !important;
}

#about-us-modal .modal-content {
    border-radius: 2rem;
}

#about-us-modal video {
    width: 100%;
    height: auto;
}

.aboutUs__Video a {
    cursor: pointer;
}

.modal {
    z-index: 99999999;
}

.modal-backdrop {
    z-index: 99999;
}

.blogLatestWrapper .slick-dots li.slick-active button {
    background: #fff !important;
    width: 18px;
}

.blogLatestWrapper .slick-dots {
    bottom: -42px;
}

@media (max-width: 991px) {
    .prod-side-banner.blogPage {
        display: block;
    }
}

.aboutUs {
    position: relative;
    overflow: hidden;
}

.aboutUs::before {
    content: "";
    background: url(/Portals/0/Images/about-dot.svg) no-repeat;
    width: 100%;
    height: 90%;
    top: 40%;
    position: absolute;
}

.aboutUs.aboutUs .homeAboutUs__Links {
    display: none;
}

@media (max-width: 991px) {
    .aboutUs::before {
        background: url(/Portals/0/Images/about-dot-mb.svg) no-repeat;
        height: 1112px;
    }

    .aboutUs.aboutUs.aboutUs h3 {
        position: static;
        display: block;
        line-height: auto;
        margin-top: 1.5rem !important;
    }
}
