@font-face {
  font-family: "Pinar";
  src: url("https://cdn.asougold.com/font/FD/Pinar-DS3-FD-Black.woff2")
    format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Anjoman";
  src: url("https://cdn.asougold.com/font/FD/Pinar-DS3-FD-Black.woff2")
    format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Pinar";
  src: url("https://cdn.asougold.com/font/FD/Pinar-DS3-FD-ExtraBold.woff2")
    format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Anjoman";
  src: url("https://cdn.asougold.com/font/FD/Pinar-DS3-FD-ExtraBold.woff2")
    format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Pinar";
  src: url("https://cdn.asougold.com/font/FD/Pinar-DS3-FD-Bold.woff2")
    format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Anjoman";
  src: url("https://cdn.asougold.com/font/FD/Pinar-DS3-FD-Bold.woff2")
    format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Pinar";
  src: url("https://cdn.asougold.com/font/FD/Pinar-DS3-FD-SemiBold.woff2")
    format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Anjoman";
  src: url("https://cdn.asougold.com/font/FD/Pinar-DS3-FD-SemiBold.woff2")
    format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Pinar";
  src: url("https://cdn.asougold.com/font/FD/Pinar-DS3-FD-Medium.woff2")
    format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Anjoman";
  src: url("https://cdn.asougold.com/font/FD/Pinar-DS3-FD-Medium.woff2")
    format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Pinar";
  src: url("https://cdn.asougold.com/font/FD/Pinar-DS3-FD-Regular.woff2")
    format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Anjoman";
  src: url("https://cdn.asougold.com/font/FD/Pinar-DS3-FD-Regular.woff2")
    format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Pinar";
  src: url("https://cdn.asougold.com/font/FD/Pinar-DS3-FD-Light.woff2")
    format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Anjoman";
  src: url("https://cdn.asougold.com/font/FD/Pinar-DS3-FD-Light.woff2")
    format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Agraham";
  src: url("https://cdn.asougold.com/font/Agraham.ttf") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
:root {
  --bgClr: #f4f4f4;
  --bgClr2: #fff;
  --clr3: #333;
  --clr5: #555;
  --clr7: #777;
  --grey: #6b6b6b;
  --greenDarkClr: #2c4e4d;
  --greenClr: #2c4e4d;
  --greenClr2: #5b9391;
  --whiteOp28: #ffffff28;
  --blackOpA2: #000000a2;
  --blackOp80: #00000080;
  --blackOp40: #00000040;
  --blackOp10: #00000010;
  --greenOpB8: #2c4e4d4b;
  --greenOp2c: #2c4e4d2c;
  --greenOp11: #2c4e4d11;
  --redClr: #ff0000;
}

body,
html {
  background-color: var(--bgClr2);
  max-width: 100vw;
  overflow-x: clip;
  direction: rtl;
  scroll-behavior: smooth;
  font-family: "pinar", Arial, Helvetica, sans-serif;
}
body::-webkit-scrollbar,
html::-webkit-scrollbar {
  width: 10px;
}
body::-webkit-scrollbar-track,
html::-webkit-scrollbar-track {
  background: #e9e9e9;
}
body::-webkit-scrollbar-thumb,
html::-webkit-scrollbar-thumb {
  background: #bec0c0;
}
body::-webkit-scrollbar-thumb:hover,
html::-webkit-scrollbar-thumb:hover {
  background: #adafaf;
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  font-family: "pinar", Arial, Helvetica, sans-serif;
}
.container {
  width: 90%;
  margin: 0 auto;
  max-width: 1250px;
}
.flex {
  display: -webkit-flex;
  display: flex;
}
.grid {
  display: -moz-grid;
  display: -ms-grid;
  display: grid;
}
.flexCenter {
  justify-content: center;
  align-items: center;
}
.flexCol {
  flex-direction: column;
}
.justifyBetween {
  justify-content: space-between;
}
.alignCenter {
  align-items: center;
}
.hideText {
  color: transparent !important;
  pointer-events: none !important;
  width: 0 !important;
  height: 0 !important;
  overflow: hidden !important;
}
button {
  outline: none;
  background-color: transparent;
  cursor: pointer;
  border: none;
}
.rel {
  position: relative;
}
.swal2-confirm,
.swal2-cancel {
  font-family: "pinar", Arial, Helvetica, sans-serif;
  font-weight: 600;
}
.faFont {
  font-family: "pinar", Arial, Helvetica, sans-serif;
  font-weight: 600;
}
.faFont2 {
  font-family: "pinar", Arial, Helvetica, sans-serif;
  font-weight: 600;
}
.enFont {
  font-family: "Agraham", Arial, Helvetica, sans-serif;
  font-weight: 400;
}
.enFont2 {
  font-family: "baby", Arial, Helvetica, sans-serif;
  font-weight: 400;
}
/* header */
header {
  position: sticky;
  top: 0;
  z-index: 800;
}
.headerRow1 {
  background-color: var(--bgClr);
}
.headerRow1Container {
  padding: 20px 0;
  justify-content: center;
}
.headerDescText,
.headerRow1LeftDiv {
  display: none;
}
.headerRow2 {
  background-color: var(--greenClr);
  padding: 15px 10px;
}
.headerMenuBtn {
  height: 40px;
  width: 48px;
  color: var(--bgClr2);
}
.headerRow2LeftDiv {
  gap: 7px;
}
.headerCartLink {
  height: 35px;
  min-width: 35px;
}
.headerUserLink {
  height: 52px;
  width: 52px;
  border-radius: 50%;
  background-color: var(--bgClr2);
  border: 4px solid #4e6a69;
}
.headerRow1,
.headerUserLink,
.headerRow2LinkList,
.headerSearchForm {
  display: none;
}
.siteLogoImg {
  transition: height 0.3s;
}
@media screen and (min-width: 968px) {
  .headerRow1Container {
    display: -ms-grid;
    display: -moz-grid;
    grid-template-columns: 1fr auto 1fr;
    display: grid;
    justify-content: space-between;
    align-items: flex-end;
  }
  .headerDescText {
    display: block;
    font-weight: 400;
    font-size: 12px;
    line-height: 100%;
    color: var(--greenClr);
    margin-bottom: 6px;
  }
  .siteLogoImg {
    height: 52px !important;
  }
  .headerRow1LeftDiv {
    display: -webkit-flex;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: flex-end;
  }
  .headerUserLink,
  .headerRow1 {
    display: -webkit-flex;
    display: flex;
  }
  .headerRow1Container {
    transition: padding 0.4s;
  }
  .headerRow2 {
    padding: 20px 0;
    transition: padding 0.4s;
  }
  .headerMenuBtn,
  .mobileHomeLink {
    display: none;
  }
  .headerPhone {
    font-weight: 400;
    font-size: 12px;
    color: var(--greenClr);
    gap: 7px;
    margin-left: 15px;
    display: -webkit-flex;
    display: flex;
  }
  .headerSocialLink {
    height: 20px;
    width: 20px;
  }
  .headerRow2LinkList {
    display: -webkit-flex;
    display: flex;
    gap: 15px;
  }
  .headerRow2Link {
    font-weight: 500;
    font-size: 12px;
    color: var(--bgClr2);
    position: relative;
    transition: color 0.3s;
  }
  .headerRow2Link:hover {
    color: #ccc;
  }
  .headerRow2Link svg {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -15px;
  }
  .headerSearchForm {
    display: -webkit-flex;
    display: flex;
    position: relative;
  }
  .headerSearchInput {
    height: 50px;
    border-radius: 25px;
    padding: 0 18px 0 45px;
    background-color: #355554;
    outline: none;
    border: none;
    width: 200px;
    font-size: 12px;
    color: var(--bgClr2);
    transition: background-color 0.3s;
  }
  .headerSearchInput:focus {
    background-color: #3f6160;
  }
  .headerSearchSubmit {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
  }
  .headerRow2LeftDiv {
    gap: 7px;
  }
  .headerCartLink {
    border-radius: 50%;
    background-color: #355554;
    height: 50px;
    width: 50px;
  }
  .headerUserLink {
    height: 55px;
  }
  header {
    transition: height 0.4s;
  }
  header.scrolled {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
  }
  header.scrolled .siteLogoImg {
    height: 30px !important;
  }
  header.scrolled .headerRow2 {
    padding: 10px 0;
  }
  header.scrolled .headerRow1Container {
    padding: 10px 0;
  }
}
@media screen and (min-width: 1150px) {
  .headerRow2LinkList {
    gap: 25px;
  }
  .headerRow2Link {
    font-weight: 500;
    font-size: 16px;
  }
  .headerSearchInput {
    width: 240px;
  }
  .headerRow2Link {
    font-size: 14px;
  }
}
@media screen and (min-width: 1250px) {
  .headerSearchInput {
    width: 250px;
  }
}
/* navigation */
.navigationCloser {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100dvh;
  background-color: var(--blackOp80);
  z-index: 910;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s;
}

.navigationCloser.activeNavCloser {
  pointer-events: unset;
  opacity: 1;
  cursor: pointer;
}

.navigation {
  position: fixed;
  right: 0;
  top: 0;
  width: 80%;
  height: 100dvh;
  background-color: var(--bgClr);
  max-width: 320px;
  z-index: 911;
  grid-template-rows: auto 1px 1fr 1px auto;
  padding: 10px;
  gap: 15px;
  transition: transform 0.4s, opacity 0s 0.4s;
  transform: translateX(100%);
  opacity: 0;
  pointer-events: none;
}

.navigationCloser.activeNavCloser + .navigation {
  transform: translateX(0);
  opacity: 1;
  pointer-events: unset;
  transition: transform 0.4s;
}

.navDivider {
  width: 100%;
  height: 1px;
  background-color: var(--greenOp2c);
}

.navLinkList {
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  padding-left: 5px;
}

.navLink {
  border-radius: 5px;
  transition: background-color 0.4s;
  padding: 9px 5px;
  color: var(--greenClr);
  font-size: 15px;
}
.navigtaionCloserBtn {
  height: 35px;
  width: 35px;
  border-radius: 8px;
  background-color: var(--greenOp11);
}
.navLink:hover {
  background-color: var(--greenOp11);
}
.navSocialLinks {
  gap: 10px;
}
.expandBtn {
  position: absolute;
  left: 0;
  top: 3px;
  width: 35px;
  height: 35px;
  border-radius: 5px;
  transition: background-color 0.4s, color 0.4s, border 0.4s;
  border: 1px solid var(--greenOp11);
}

.expandBtn svg {
  font-size: 0.85em;
  transition: transform 0.4s;
}

.expandBtn:hover {
  background-color: var(--greenOp11);
}

.expandBtn.expanded {
  background-color: var(--greenOp11);
  border: 1px solid transparent;
}

.expandBtn.expanded svg {
  transform: rotate(180deg);
}
.serviceBtn {
  margin-left: 40px;
}
.expandList {
  max-height: 0;
  transition: max-height 0.4s ease-out;
  overflow: hidden;
  background-color: var(--greenOp11);
  font-size: 0.9em;
}

.expandList div {
  border-right: 3px solid var(--greenOp2c);
  padding: 5px;
}

.expandBtn.expanded + .expandList {
  max-height: 500px;
  transition: max-height 0.4s ease-in;
}

.socialLink {
  background-color: var(--greenOp11);
  border-radius: 50%;
  height: 37px;
  width: 35px;
  color: var(--greenClr);
}

.socialLink svg {
  font-size: 1.2em;
}
.darkIconBtn {
  border-radius: 5px;
  height: 35px;
  width: 35px;
}
@media screen and (min-width: 930px) {
  .menuBtn {
    display: none;
  }

  .navigationCloser {
    display: none;
  }
}
/* footer */
footer {
  background-color: #0f0f0f;
  padding: 80px 0 50px;
  position: relative;
}
footer::before {
  content: "";
  width: 100%;
  height: 50%;
  z-index: 1;
  background-image: -o-linear-gradient(to bottom, var(--greenClr), transparent);
  background-image: -moz-linear-gradient(
    to bottom,
    var(--greenClr),
    transparent
  );
  background-image: -webkit-linear-gradient(
    to bottom,
    var(--greenClr),
    transparent
  );
  background-image: linear-gradient(to bottom, var(--greenClr), transparent);
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}
footer::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-image: url("https://cdn.asougold.com/imgs/desc1bg.svg");
  background-size: 50%;
  background-repeat: repeat;
  z-index: 3;
  pointer-events: none;
}
.footerContainer {
  z-index: 60;
}
.footerDesc {
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 200%;
  text-align: justify;
  color: var(--bgClr2);
  margin-top: 40px;
}
.footerLinksHolder {
  flex-direction: column;
  margin-top: 50px;
  gap: 15px;
}
.footerLinkList {
  width: 100%;
  gap: 15px;
}
.footerLinkItem {
  color: #efeded;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 180%;
  width: fit-content;
}
.footerContactDiv {
  margin-top: 35px;
  gap: 8px;
}
.footerContactText {
  gap: 7px;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  color: var(--bgClr2);
  align-items: flex-start;
  width: fit-content;
  gap: 7px;
}
.footerContactText svg {
  margin-top: 5px;
  min-width: 16px;
}
.footerLicenceDiv {
  margin-top: 65px;
}
.footerLicenceText {
  font-weight: 400;
  font-style: Regular;
  font-size: 12px;
  color: var(--bgClr2);
}
.footerLogoesList {
  flex-wrap: wrap;
  background-color: var(--bgClr);
  margin-top: 10px;
  padding: 30px 0;
  align-items: center;
  flex-wrap: nowrap;
  overflow-x: auto;
  scroll-behavior: smooth;
  pointer-events: none;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.footerLogoesLists::-webkit-scrollbar {
  display: none;
}
.footerLogoDiv {
  border-radius: 7px;
  padding: 0 15px;
  height: 60px;
  min-width: calc(100% / 3);
  width: calc(100% / 3);
  overflow: hidden;
}
.footerRightDiv {
  flex-direction: row;
  gap: 20px;
  margin-top: 40px;
  justify-content: space-between;
}
.licenceImage {
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
  width: 100%;
}
.copyRightText {
  font-weight: 300;
  font-style: Light;
  font-size: 10px;
  color: var(--bgClr2);
  margin-top: 20px;
}
.footerHomeLink {
  width: fit-content;
  margin: 0 auto;
}
@media screen and (min-width: 450px) {
  .footerLogoDiv {
    min-width: calc(100% / 4);
    width: calc(100% / 4);
  }
}
@media screen and (min-width: 649px) {
  .footerLinksHolder {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .footerContactDiv {
    width: 100%;
  }
  .footerLinkList {
    width: calc(100% / 3 - 10px * 2 / 3);
  }
  .footerLogoDiv {
    min-width: calc(100% / 5);
    width: calc(100% / 5);
  }
}
@media screen and (min-width: 968px) {
  footer {
    padding: 150px 0 60px;
    overflow: hidden;
  }
  footer::after {
    background-size: 20%;
  }
  .footerLogoDiv {
    min-width: calc(100% / 6);
    width: calc(100% / 6);
  }
  .footerLinksHolder {
    margin-top: 100px;
  }
  .footerLinkList {
    width: 22%;
  }
  .footerContactDiv {
    width: 30%;
    margin-right: auto;
  }
  .footerContactDiv {
    margin-top: 0;
  }
  .footerDesc {
    font-weight: 500;
    font-style: Medium;
    font-size: 18px;
    text-align: center;
  }
  .footerLinkItem,
  .footerContactText {
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
  }
  footer::before {
    content: "";
    width: 100%;
    background-image: url("https://cdn.asougold.com/imgs/footerBg.webp");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    top: -20%;
    border-radius: 0;
    height: 80%;
  }
  .footerLicenceText {
    display: none;
  }
  .footerLicenceDiv {
    margin-top: 120px;
  }
  .copyRightText {
    font-weight: 400;
    font-style: Regular;
    font-size: 14px;
  }
}

@media screen and (min-width: 1200px) {
  .footerLogoDiv {
    min-width: calc(100% / 8);
    width: calc(100% / 8);
  }
  .footerLinkList {
    width: 20%;
  }
  .footerContactDiv {
    width: 30%;
    margin-right: auto;
  }
}
/* other styles */

.faFont.thin {
  font-weight: 400;
}

.bold {
  font-weight: 700;
}

.thin2 {
  font-weight: 500;
}

.textClr3 {
  color: #323232;
}

.textClr5 {
  color: var(--clr5);
}

.textClr7 {
  color: var(--clr7);
}

.textClrGrey {
  color: var(--grey);
}

.textClrF {
  color: var(--bgClr2);
}

.textClrGreen {
  color: var(--greenClr);
}

.textClrGreen2 {
  color: var(--greenClr2);
}

.textDarkClr {
  color: var(--greenDarkClr);
}

.textSize1 {
  font-size: 1em;
}

.textSize11 {
  font-size: 1.1em;
}

.textSize12 {
  font-size: 1.2em;
}

.textSize14 {
  font-size: 1.35em;
}

.textSize16 {
  font-size: 1.6em;
}

.textSize2 {
  font-size: 2.2em;
}

.textSize8 {
  font-size: 0.8em;
}

.textSize9 {
  font-size: 0.9em;
}

.centerText {
  text-align: center;
}

.mar20 {
  margin-top: 20px;
}

.mar15 {
  margin-top: 15px;
}

.mar10 {
  margin-top: 10px;
}

.rel {
  position: relative;
}

.gap5 {
  gap: 5px;
}

.gap10 {
  gap: 10px;
}

.gap20 {
  gap: 20px;
}

.justifyText {
  text-align: justify;
}

.iconBtn,
.darkIconBtn {
  transition: background-color 0.4s;
  border-radius: 5px;
  height: 35px;
  width: 35px;
}

.iconBtn:hover {
  background-color: var(--whiteOp28);
}

.darkIconBtn:hover {
  background-color: var(--greenOp2c);
}

.customScrollbar::-webkit-scrollbar {
  width: 10px;
}

.customScrollbar::-webkit-scrollbar-track {
  background: #e9e9e9;
}

.customScrollbar::-webkit-scrollbar-thumb {
  background: #bec0c0;
}

.customScrollbar::-webkit-scrollbar-thumb:hover {
  background: #adafaf;
}

/* navigationSection */
.navigationSection {
  position: fixed;
  left: 0;
  bottom: 0;
  background-color: var(--greenClr);
  width: 100vw;
  z-index: 900;
  font-size: 0.9em;
}

.navigationContainer {
  width: 100%;
  max-width: 550px;
  margin: 0 auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  height: 70px;
}

.navItem {
  gap: 3px;
  position: relative;
}

.navItem .activeSvg {
  display: none;
}

.navItem .activeSpan {
  font-size: 0.65em;
}

.navItem .activeSvg {
  height: 20px;
  width: 20px;
}

.navItem .defSvg {
  height: 20px;
  width: 20px;
}

.activeNav .defSvg {
  display: none;
}

.activeNav .activeSvg,
.activeNav .activeSpan {
  display: block;
}

.activeSpan {
  display: block;
}

.activeNav .activeSpan::after {
  content: "";
  width: 40px;
  height: 5px;
  border-radius: 5px 5px 0 0;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  background-color: var(--bgClr);
  box-shadow: 0 -3px 15px #ffffffa4;
}

@media screen and (min-width: 400px) {
  .navItem .activeSvg {
    height: 25px;
    width: 25px;
  }

  .navItem .defSvg {
    height: 25px;
    width: 25px;
  }

  .navItem .activeSpan {
    font-size: 0.7em;
  }
}

@media screen and (min-width: 1200px) {
  .navigationSection {
    display: none;
  }
}

/* pUpSection */
.pUpSection {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100dvh;
  background-color: var(--blackOpA2);
  z-index: 999;
}

.pUpSection.show {
  display: -webkit-flex;
  display: flex;
}

.pUpMainDiv {
  width: 90%;
  max-width: 750px;
  gap: 20px;
}

.closePUpBtn {
  width: fit-content;
  background-color: var(--whiteOp28);
  padding: 5px 10px;
  border-radius: 5px;
}

.pUpImage {
  width: 100%;
  box-shadow: 0 0 25px var(--blackOp80);
  border-radius: 5px;
}

/* loadingDiv */
.loadingDiv {
  padding: 80px 0;
  gap: 5px;
}

.loadingCircleDiv {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--greenClr);
  transform: translateY(10px);
  opacity: 0.8;
}

.dot1 {
  animation: load 0.8s linear infinite alternate;
}

.dot2 {
  animation: load 0.8s 0.4s linear infinite alternate;
}

.dot3 {
  animation: load 0.8s 0.8s linear infinite alternate;
}

@keyframes load {
  from {
    transform: translateY(10px);
  }

  to {
    transform: translateY(-10px);
  }
}

/* Code By Mohammad */
button.install-button,
button.close-button,
.install-banner-container {
  font-family: "Anjoman" !important;
}
.install-banner-container {
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  bottom: 75% !important;
}
@media only screen and (min-width: 1025px) {
  .install-banner-container {
    width: 700px;
    margin: auto !important;
    bottom: 80% !important;
  }
}
#loaderOverlay {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  position: fixed;
  background: #2222226d;
  z-index: 9999;
}

.loader {
  text-align: center;
  height: 100vh;
}

.loader img {
  position: relative;
  top: 30%;
}
footer a:hover {
  color: #fff !important;
}

/* loadingSliderDiv */
.loadingSliderDiv {
  position: fixed;
  left: 0;
  top: 0;
  height: 100dvh;
  width: 100%;
  z-index: 1100;
  backdrop-filter: blur(6px);
  background-color: #eeeeee60;
  pointer-events: none;
  display: none;
}
.loadingSliderDiv.activeSliderLoading {
  pointer-events: unset;
  display: -webkit-flex;
  display: flex;
  animation: beat 1s infinite alternate;
  transform-origin: center;
}
.loadingProgresDiv {
  padding: 20px;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
}

.loadingLogo {
  height: 40px;
  width: 60px;
}
@keyframes beat {
  to {
    transform: scale(1.4);
  }
}

/*X1mohammad*/
.woocommerce-notices-wrapper {
  display: none !important;
}
