@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
}

:root {
  --secondarycolor: #ede9fe;
  --bodycolor: #f8f8f8;
  --navcolor: #dfe6e9;
  --mainwhite: #fff;
  --maingray: #7c7c7c;
  --mainblack: #222;
  /* --firstcolor:#a1c4fd;
    --secondcolor:#c2e9fb; */
  --firstcolor: #699bfe;
  /* --secondcolor:#b1bfd8; */
  --secondcolor: #b1cbff;
  --thirdcolor: #b3ece2;
  --newcolor: #b2bbe7;
  --black: #080c25;
  --bodyblack: #090b16;
  --white: #fff;
  --blue: #3071e7;
  --lightblue1: #a6b2ec;
  --lightblue2: #0fbcf9;







  --fontcolor1: #282828;
  --fontcolor2: #676767;
  --fontcolor3: #a2a2a2;
  --shadowlight: #dddddd;
  --shadowdark: #b3b3b3;
  --theme1: #111827;
  --theme2: #3A4764;
  --theme3: #404B61;
  --theme4: #687b9f;
  --themeshadow1: #4e73bd;
  --themeshadow2: #6587cd;
  --themeshadow3: #91aee7;


}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bodycolor);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  min-height: 100vh;
  min-width: 100vw;
  max-width: 100vw;
  overflow-x: hidden;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background-color: transparent;
}

::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background-color: var(--firstcolor);
}

/*      navbar       */
.navbar {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  top: 0;
  right: 0;
  position: relative;
  background-color: transparent;
  z-index: 100;

  background-color: #ffffff;
  backdrop-filter: blur(12px);
  box-shadow: 0 0 20px 2px var(--secondcolor);
}

#navbar-back-inphone {
  display: none;
}

#navbar-back-indesktop {
  display: block;
  flex-direction: column;

}

.navbar-back-indesktop-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
}

.navbar-back-indesktop-top .navbar-middle-search-form form input {
  min-width: 450px;
  border-radius: 15px;
}

.navbar-back-indesktop-top .navbar-middle-search-form form button {
  border-radius: 12px;
}

#navbar-back-indesktop .navbar-middle-title-div {
  position: relative;
  top: 0;
  left: 0;
  transform: translate(0);
}

.navbar-back-indesktop-top-div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.navbar-back {
  width: 95%;
  max-width: 1440px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}

.navbar-middle {
  /* margin-top: 7px; */
  padding: 20px 30px;
  border-radius: 20px;
  /* background-color: #ffffff70;
  backdrop-filter: blur(8px); */
  /* box-shadow: 0 0 20px 2px #00000025; */
}

.navbar-middle-right {
  display: flex;
  align-items: center;
  gap: 30px;
}

.navbar-middle-search-btn i {
  font-size: 25px;
  color: var(--secondcolor);
  cursor: pointer;
}

.navbar-middle-search-btn i.fa-close {
  display: none;
}

.navbar-middle-search-back-open .navbar-middle-search-btn i.fa-close {
  display: block;
  font-size: 30px;
}

.navbar-middle-search-back-open .navbar-middle-search-btn i.fa-search {
  display: none;
}

.navbar-middle-search-back-open .navbar-middle-search {
  display: flex;
  flex-direction: column;
  gap: 15px;
  border-radius: 30px;
  padding: 12px 10px;
}

.navbar-middle-search {
  position: absolute;
  right: 0;
  width: 100%;
  max-width: 500px;
  height: auto;
  padding: 10px;
  background-color: #ffffff;
  margin-top: 48px;
  border-radius: 50px;
  box-shadow: 0 0 15px #00000015;
  display: none;
}

#navbar-back-indesktop .navbar-middle-search {
  display: flex;
  background-color: transparent;
  box-shadow: none;
  margin-top: 0;
  position: relative;
  min-width: 300px;
}

.navbar-middle-search-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  /* display: none; */
}

.navbar-middle-search::after {
  content: '';
  right: 93px;
  width: 18px;
  height: 18px;
  transform: rotate(45deg);
  border-radius: 3px;
  background-color: var(--white);
  top: -8px;
  position: absolute;
  z-index: 1;
}

.navbar-middle-search-form form {
  width: 100%;
  display: flex;
  align-items: center;
}

.navbar-middle-search-form form input {
  width: 100%;
  font-size: 17px;
  font-family: vazir-light;
  color: #575757;
  outline: none;
  border: 1px solid #dfdfdf;
  padding: 12px 15px 12px 65px;
  /* z-index: 2; */
  border-radius: 50px;
}

.navbar-middle-search-form form button {
  font-size: 18px;
  color: var(--white);
  border: none;
  background-color: var(--firstcolor);
  padding: 10px 15px;
  margin-right: -54px;
  border-radius: 50px;
  cursor: pointer;
  z-index: 2;
  transition: .3s;
}

.navbar-middle-search-form form button:hover {
  box-shadow: 0 0 10px var(--firstcolor);
  transform: scale(1.1);
}

#pages-banner {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  width: 100%;
  height: 100vh;
  max-width: 800px;
  min-width: 200px;
  transform: scaleX(-1);
  animation: pages-banner 1.5s;
}

@keyframes pages-banner {
  0% {
    width: 0%;
    height: 0vh;
  }

  100% {
    width: 100%;
    height: 100vh;
  }
}

.navbar-open-menu {
  background: linear-gradient(130deg, var(--firstcolor), var(--secondcolor));
  animation: animated-gradient 3s linear infinite;
  background-size: 200% 200%;
}

.navbar-open-menu .navbar-middle-title-div p {
  display: none;
}

.navbar-open-menu .navbar-middle-title-div h1 {
  color: var(--mainwhite);
  padding: 15px 0;
}

.navbar-open-menu .menu-icon div {
  background-color: var(--firstcolor);
}

.navbar a {
  text-decoration: none;
  color: black;
  font-family: vazir-light;
}

.navbar li {
  list-style: none;
}

/* .navbar-top{
    width: 1000px;
    max-width: 1280px;
} */
.navbar-top ul {
  display: flex;
  margin-top: 10px;
}

.navbar-top ul a {
  font-size: 14px;
  margin: 0 3px;
  padding: 10px 10px;
  color: var(--firstcolor);
}

.navbar-middle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  position: relative;
  /* margin-top: 10px; */
}

.navbar-middle-title {
  font-size: 25px;
  font-family: vazir-regular;
  color: var(--mainblack);
  margin-bottom: 5px;
}

.navbar-middle-title-div {
  display: flex;
  flex-direction: row;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.navbar-middle-title-div form {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin: 0px 20px;
  position: relative;
}

.navbar-middle-title-div form input {
  width: 500px;
  padding: 12px 45px 12px 15px;
  font-family: vazir-light;
  font-size: 17px;
  border: none;
  border-radius: 10px;
  /* box-shadow: 0 0 5px #cacaca; */
  background-color: #ececec;
  outline: none;
}

.navbar-middle-title-div form button {
  position: absolute;
  padding: 10px;
  top: 50%;
  right: 5px;
  transform: translateY(-50%);
  border: none;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  cursor: pointer;
}

.navbar-middle-title-div p {
  color: var(--maingray);
  font-size: 16px;
  font-family: vazir-regular;
  /* opacity: .7; */
}

.navbar-middle-title-en {
  margin-left: 20px;
}

.navbar-middle-link {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  position: relative;
  left: 0;
  /* margin-top: 15px; */
  height: 100%;
}

#navbar-middle-link-en {
  right: 0;
  left: unset;
}

#navbar-middle-link-ir {
  left: 0;
}

.navbar-middle-link a {
  color: var(--maingray);
  font-size: 18px;
  padding: 5px;
  margin: 0 5px;
  transition: 0.3s;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
}

.navbar-middle-link a i {
  color: var(--firstcolor);
  margin-right: 8px;
  background-color: var(--navcolor);
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}

.navbar-middle-link a:hover {
  color: var(--secondcolor);
}

.navbar-middle .navbar-middle-title-div a {
  display: flex;
  align-items: center;
  justify-content: center;
}

#navbar-middle-img {
  width: 180px;
}

.navbar-middle-title-div.navbar-middle-title-div-desktop a {
  font-family: vazir-extrabold;
  color: var(--white);
  font-size: 35px;
  text-shadow: 0 0 10px var(--firstcolor),
    0 0 20px var(--secondcolor),
    0 0 30px var(--thirdcolor);
}



.nav-phone-ul-back {
  width: 90%;
  max-width: 350px;
  min-width: 200px;
  position: fixed;
  height: 100vh;
  overflow-y: auto;
  background-color: #f2f8ff;
  z-index: 111;
  right: -500px;
  top: 0;
  opacity: 0;
  transition: .4s;
}

#nav-phone-ul-back-close {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #00000090;
  backdrop-filter: blur(7px);
  z-index: 98;
  opacity: 0;
  visibility: hidden;
  transition: .3s;
}

#nav-phone-ul-back-close.nav-phone-ul-back-close {
  opacity: 1;

  visibility: visible;
}

.nav-phone-ul-back-open {
  right: 0;
  opacity: 1;
  transition: .4s;
}

.nav-phone-ul {
  display: flex;
  align-items: flex-start;
  margin-top: 20px;
  justify-content: flex-start;
}

.nav-phone-ul ul {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.nav-phone-ul li {
  list-style: none;
}

.nav-phone-ul a {
  color: var(--black);
  font-family: vazir-regular;
  font-size: 25px;
}




.nav-phone-ul-back #nav-title-back-phone {
  width: 100%;
  height: 60px;
  /* margin: 0px auto; */
}

.nav-phone-ul-back .nav-title {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 30px 0;
  background: linear-gradient(130deg, #ff4d61, var(--firstcolor));
  justify-content: center;
  font-size: 200px;
  box-shadow: 0 0 20px var(--firstcolor);
}

.nav-phone-ul-back .nav-title div h1 {
  font-size: 40px;
  color: var(--white);
  text-shadow: 1px 2px 5px #f07180,
    2px 3px 10px #d31027,
    3px 5px 15px #d31027,
    5px 7px 20px #d31027;
}

.nav-phone-ul-back .nav-title div h1 span {
  color: var(--firstcolor);
}

.nav-phone-ul-back .nav-phone-ul {
  width: 100%;

}

.nav-phone-ul-back .nav-phone-ul li {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;

}

.nav-phone-ul-back .nav-phone-ul li #na-phone-ul-li-a {
  /* background: #d8e0f8; */
  /* box-shadow:inset 0 0 10px #ffffff; */
  width: 90%;
  padding: 20px 15px;
  margin: 0 auto;
  color: #666666;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #dfdfdf;
  font-size: 17px;
  font-family: vazir-light;
}

.nav-phone-ul-back .nav-phone-ul li #na-phone-ul-li-a i {
  padding: 0 15px;
  transform: rotate(90deg);
}

.nav-phone-ul-li-a-back {
  width: 90%;
  margin: 0 auto;
  border-bottom: 1px solid #dfdfdf;

  display: flex;
  align-items: center;
  justify-content: space-between;
  /* background-color: #00000015; */
}

.nav-phone-ul-back .nav-phone-ul li #na-phone-ul-li-a.nav-phone-ul-li-a {
  margin: 0 0;
  border-bottom: none;
  width: 100%;
}

.nav-phone-ul-li-a-back .fa-angle-down {
  font-size: 18px;
  color: #666666;
  width: 60px;
  padding: 15px 25px;
  border-right: 1px solid #dfdfdf;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
}

.navbar-menu-phone {
  width: 90%;
  border-radius: 12px;
  margin: 0px auto;
  height: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  /* padding: 10px; */
  /* box-shadow: 0 0 10px #00000010; */
  transition: .4s;
}

.navbar-menu-phone div {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.navbar-menu-phone a {
  width: 100%;
  font-size: 16px;
  padding: 12px 15px;
  color: var(--secondcolor);
  font-family: vazir-light;
  opacity: 0;
  margin-right: 30px;
}

.navbar-menu-open {
  height: auto;
  padding: 10px;
  margin: 10px auto;
  overflow: visible;
}

.navbar-menu-open a {
  opacity: 1;
}

.nav-phone-ul-back .nav-phone-ul li #na-phone-ul-li-a.order-nav-phone {
  background-color: transparent;
  width: 100%;
  color: var(--purple);
  padding-right: 10%;
}

.nav-phone-ul-back .nav-phone-ul li #na-phone-ul-li-a.order-nav-phone i {
  transform: rotate(0);
  color: var(--purple);
  font-size: 24px;
  cursor: pointer;
}

.navbar-menu-phone-link-back input {
  display: none;
}

.navbar-menu-phone-link-back label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  width: 100%;
  font-family: vazir-light;
  font-size: 17px;
  color: #383838;
  cursor: pointer;
}

.navbar-menu-phone-link {
  height: 0;
  margin: 0;
  overflow: hidden;
  transition: .4s;
  background-color: #e4ecf6;
  border-radius: 20px;
  box-shadow: 0 0 10px #00000010;
}

.navbar-menu-phone-link-back input:checked~.navbar-menu-phone-link {
  height: auto;
  margin: 20px 0;
  overflow: hidden;
}




.navbar-back-indesktop-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-back-indesktop-bottom ul {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 5px;
  padding: 15px 0px 25px 10px;
}

.navbar-back-indesktop-bottom ul li a {
  font-family: vazir-extrabold;
  font-size: 16px;
  color: #767676;
  padding: 10px 10px;
  transition: .3s;
}

.navbar-back-indesktop-bottom ul li a:hover {
  color: var(--firstcolor);
}

#navbar-back-indesktop .navbar-middle-search-background {
  display: none;
}

#navbar-back-indesktop-bottom-a {
  position: relative;
}

#navbar-back-indesktop-bottom-open-nav {
  position: absolute;
  background-color: var(--white);
  box-shadow: 0 0 15px #00000020;
  top: 90%;
  padding: 10px 9px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 5px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  transition: .3s;
}

.navbar-back-indesktop-bottom ul li:hover a {
  color: var(--firstcolor);
  cursor: pointer;
}

.navbar-back-indesktop-bottom ul li a i.fa-chevron-left-first-a {
  font-size: 13px;
  margin-right: 10px;
  transition: transform .3s;
  transform: rotate(-90deg);
}

.navbar-back-indesktop-bottom ul li:hover a i.fa-chevron-left-first-a {
  transform: rotate(90deg);
}

.navbar-back-indesktop-bottom ul li:hover #navbar-back-indesktop-bottom-open-nav {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}

#navbar-back-indesktop-bottom-open-nav div {
  width: 250px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
}

#navbar-back-indesktop-bottom-open-nav div a {
  width: 100%;
  border-radius: 11px;
  transition: .3s;
  padding: 12px 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#navbar-back-indesktop-bottom-open-nav div a i {
  font-size: 13px;
}

#navbar-back-indesktop-bottom-open-nav div:hover a {
  background-color: var(--secondcolor);
  color: var(--white);
  box-shadow: 0 0 10px var(--secondcolor);
}

#navbar-back-indesktop-bottom-open-nav div div {
  position: absolute;
  right: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 5px;
  width: 250px;
  background-color: transparent;
  padding: 10px 20px 10px 8px;
  border-radius: 15px;
  display: none;
}

#navbar-back-indesktop-bottom-open-nav div div a {
  background-color: white;
  color: #767676;
  box-shadow: none;
}

#navbar-back-indesktop-bottom-open-nav div:hover a~div {
  display: flex;
}



.navbar-back-fast-call {
  display: flex;
  align-items: center;
  justify-content: center;
}

.navbar-back-fast-call a {
  color: #465d89;
  text-shadow: 0 0 15px var(--secondcolor);
  font-size: 16px;
  font-family: vazir-extrabold;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background-color: var(--white);
  border-radius: 13px;
  padding: 12px 20px;
  margin-left: 15px;
  transition: .3s;
  border: 2px dashed var(--secondcolor);
  cursor: pointer;
}

.navbar-back-fast-call a:hover {
  color: var(--white);
  text-shadow: 0 0 15px var(--white);
  border-color: var(--firstcolor);
  background-color: var(--firstcolor);
  box-shadow: 0 0 10px var(--firstcolor);
}





.div-fast-call-back {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 101;
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
}

.div-fast-call-back.fast-call-open {
  display: flex;
}

.div-fast-call-back .div-fast-call-back-close {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #00000070;
  backdrop-filter: blur(8px);
  z-index: 1;
  transition: .3s;
  opacity: 0;
}

.div-fast-call-back.fast-call-open .div-fast-call-back-close {
  opacity: 1;
}

.div-fast-call-back-content {
  background-color: var(--bodycolor);
  padding: 15px 20px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 2;
  width: 95%;
  max-width: 350px;
  transition: .3s;
  transform: translateY(-30px);
}

.div-fast-call-back.fast-call-open .div-fast-call-back-content {
  transform: translateY(0);
}

.div-fast-call-div-title i {
  cursor: pointer;
}

.div-fast-call-div-phones {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.div-fast-call-div-phones div {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.div-fast-call-div-phones div a {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
}

.div-fast-call-div-phones div a:nth-child(1) {
  background: linear-gradient(130deg, var(--secondcolor), var(--firstcolor));
  padding: 15px 20px;
  justify-content: flex-start;
  width: 100%;
  font-family: vazir-extrabold;
  font-size: 15px;
  color: var(--mainblack);
  gap: 15px;
}

.div-fast-call-div-phones div a:nth-child(2) {
  width: 80px;
  height: 50px;
  font-size: 19px;
  color: var(--white);
  background: linear-gradient(130deg, var(--secondcolor), var(--firstcolor));
}

.div-fast-call-div-phones div a:nth-child(3) {
  width: 80px;
  height: 50px;
  font-size: 19px;
  color: var(--white);
  background: linear-gradient(130deg, var(--secondcolor), var(--firstcolor));
}
















/* ---------------------------------- */
/* ------- START NOTIFICATION ------- */
.notif-section {
  position: fixed;
  top: 0px;
  left: 50%;
  transform: translateX(-50%) translateY(-100%);
  transition: .3s;
  background-color: var(--lightblue1);
  width: 95%;
  max-width: 320px;
  padding: 12px 15px;
  border-radius: 15px;
  font-size: 15px;
  font-family: vazir-extrabold;
  color: var(--white);
  line-height: 35px;
  z-index: 120;
  animation: notif-opacity 13s;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.notif-section p {
  z-index: 1;
  text-align: center;
}

.notif-section-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #6e7ab9;
  box-shadow: 0 0 15px #6e7ab9;
  border-radius: 15px 0 0 15px;
  animation: notif-back 13s ease-in-out;
  z-index: -1;
}

@keyframes notif-back {
  0% {
    width: 0;
  }

  100% {
    width: 100%;
  }
}

@keyframes notif-opacity {
  0% {
    opacity: 1;
    visibility: visible;
  }

  10% {
    transform: translateX(-50%) translateY(15px);
  }

  95% {
    opacity: 1;
    transform: translateX(-50%) translateY(15px);
    visibility: visible;
  }

  100% {
    visibility: hidden;
    transform: translateX(-50%) translateY(15px);
    opacity: 0;
  }
}
















#login-user {
  display: flex;
  align-items: center;
  justify-content: center;
}

#login-user a {
  font-size: 15px;
  font-family: vazir-regular;
  color: var(--mainblack);
}

#login-user-a {
  border: 1px solid rgb(199, 199, 199);
  padding: 5px 8px;
  border-radius: 12px;
}

.login-user-a-desktop#login-user-a {
  border: 2px dashed var(--secondcolor);
  letter-spacing: 0px;
  padding: 10px 17px;
  background-color: var(--white);
  /* box-shadow: 0 0 10px var(--secondcolor); */
  font-family: vazir-extrabold;
  color: #465d89;
}

.login-user-a-desktop#login-user-a i {
  color: #7089b7;
}

#login-user-a i {
  background: transparent;
  transform: rotate(180deg);
  font-size: 20px;
  margin: 0;
  padding: 0;
}

#login-user-cart i {
  background: transparent;
  font-size: 25px;
  margin: 0;
  padding: 0;
}

.navbar-middle-link span {
  width: 1px;
  height: 30px;
  background-color: #9b9b9b90;
  border-radius: 20px;
  margin: 0 10px;
}

.navbar-bottom {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-right: 15px;
  /* margin-top: 8px; */
  display: none;
}

.navbar-bottom ul {
  width: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.navbar-bottom i.fas {
  font-size: 13px;
  margin-left: 2px;
  color: #b6b6b6;
}

.navbar-bottom i.fa-angle-left {
  font-size: 14px;
  transition: 0.3s;
  transform: rotate(-90deg);
  margin-right: 3px;
}

.navbar-bottom ul li {
  font-size: 16px;
  margin: 0 3px;
}

.navbar-bottom ul li a {
  padding: 5px 10px;
  transition: 0.3s;
  color: #494949;
}

.navbar-bottom ul li:hover a {
  color: var(--firstcolor);
}

.navbar-bottom ul li:hover .nav-products {
  display: block;
}

.navbar-bottom ul li a i {
  color: var(--firstcolor);
}

.navbar-bottom ul li:hover a i.fa-angle-left {
  transform: rotate(90deg);
  color: var(--firstcolor);
}

.nav-products {
  width: 100%;
  position: absolute;
  margin-top: 0px;
  padding-top: 15px;
  display: none;
}

.nav-products ul {
  padding: 0 0;
  width: 90%;
  max-width: 1400px;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--mainwhite);
  border-radius: 0 0 20px 20px;
  /* border: 2px solid var(--secondcolor); */
  overflow: hidden;
  box-shadow: 0 0 20px 3px #00000020;
  position: relative;
}

.nav-products ul li {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: flex-start;
}

#nav-products-a {
  width: 15%;
  min-width: 200px;
  /* min-width: 150px; */
  font-size: 16px;
  font-family: vazir-light;
  padding: 12px 17px;
  color: #505050;
  background-color: #fcfcfc;
  border-left: 1px solid #eaeaea;
}

.nav-products-ul li:hover #nav-products-a {
  background-color: #f3f3f3;
  color: var(--firstcolor);
  /* box-shadow: 0px 0px 15px var(--secondcolor); */
}

.nav-service-ul li a {
  padding: 70px 0;
}

.nav-products-table {
  width: 85%;
  height: 100%;
  position: absolute;
  background-color: #a1c4fd00;
  padding: 10px 15px;
  top: 0;
  left: 0;
  clip-path: circle(0% at 100% 50%);
  transition: 0s;
  /* display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap: 10px; */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 20px 5px;
  font-family: vazir-light;
  overflow-x: scroll;
}

.nav-products-table::-webkit-scrollbar {
  height: 6px;
}

.nav-products-table::-webkit-scrollbar-track {
  background-color: transparent;
}

.nav-products-table::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background-color: #e0e0e0;
}

.nav-classification-div {
  width: 300px;
}

.nav-products-table:hover {
  clip-path: circle(150% at 100% 50%);

}

.nav-products a:hover~.nav-products-table {
  clip-path: circle(150% at 100% 50%);
  /* opacity: 1; */

}

#classification-div-title {
  display: flex;
  align-items: center;
  border: none;
  font-size: 17px;
  color: #3e3e3e;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px 0;
}

#classification-div-title:hover,
#classification-content-a:hover {
  background: none;
  box-shadow: none;
}

#classification-div-title h2 {
  font-size: 17px;
  font-weight: normal;
  color: #3e3e3e;
  padding-right: 5px;
  transition: .3s;
}

#classification-div-title:hover h2 {
  color: var(--firstcolor);

}

#classification-div-title span {
  width: 2px;
  height: 13px;
  background-color: var(--lightblue1);
  border-radius: 10px;
}

#classification-div-title i {
  transform: none;
  /* margin-right: 10px; */
  font-size: 12px;
}

#classification-div-title:hover i {
  margin-right: 10px;
}

.classification-div-content {
  display: flex;
  flex-direction: column;
}

#classification-content-a {
  width: auto;
  font-size: 14px;
  color: #5f5f5f;
  background: transparent;
  border: none;
  padding: 5px 0;
}

#classification-content-a:hover {
  color: var(--firstcolor);
}

#classification-div-content-a {
  color: #767676;
  font-size: 15px;
}













.nav-products-phone {
  margin-right: 20px;
  display: none;
}

.nav-products-phone-en {
  margin-right: 0;
  margin-left: 20px;
}

#nav-sotre-a {
  color: var(--firstcolor);
  font-size: 15px;
}

#nav-products-phone-store {
  display: none;
}

#nav-products-phone-store.nav-products-phone-open {
  display: block;
}

/* -------usernav-btn------- */
.usernav {
  position: relative;
}

.usernav-btn {
  width: 60px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 23px;
  color: #353535;
  cursor: pointer;
}

.usernav-btn:hover {
  background-color: #e6e6e6;
}

.usernav-btn .fa-caret-down {
  font-size: 16px;
  padding-right: 5px;
  /* color: var(--firstcolor); */
}

.usernav-content {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 250px;
  background-color: var(--mainwhite);
  box-shadow: 1px 3px 5px #919191;
  left: 0px;
  border-radius: 10px;
  z-index: 10;
  overflow: hidden;
}

#usernav-content-nav {
  display: none;
}

.usernav:hover #usernav-content-nav {
  display: flex;
}

.usernav:hover .usernav-btn {
  background-color: #e6e6e6;
}

.usernav-content a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-right: 0px;
  transition: 0.3s;
  height: 60px;
  cursor: pointer;
}

.usernav-content a:nth-child(1) {
  height: 75px;
}

.usernav-content a:hover {
  background-color: #ececec;
}

.usernav-content a div {
  width: 90%;
  display: flex;
  height: 60px;
  align-items: center;
  border-bottom: 1px solid #e7e7e7;
}

.usernav-content a:nth-child(1) div {
  height: 75px;
}

.usernav-content a div i {
  background: none;
  color: black;
  font-size: 19px;
  margin-left: 20px;
}

.usernav-content a:nth-child(1) div i {
  color: #dadada;
  font-size: 40px;
}

.usernav-content a:nth-child(1) div .fa-angle-left {
  color: #afafaf;
  font-size: 18px;
  position: absolute;
  left: 0;
}

.usernav-content a:nth-child(1) div .fa-angle-right {
  color: #afafaf;
  font-size: 18px;
  position: absolute;
  right: 0;
}

.usernav-content a:nth-child(2) div i {
  color: var(--firstcolor);
}

.usernav-content a:nth-child(3) div i {
  color: #2c2c2c;
}

.usernav-content a:nth-child(4) div i {
  color: #5a5a5a;
}

.usernav-content a:nth-child(5) div i {
  color: crimson;
}

.usernav-content p {
  font-family: vazir-regular;
  font-size: 15px;
}

.usernav-content-btns {
  display: flex;
  align-items: center;
}

.menu-icon {
  width: 32px;
  display: none;
  flex-direction: column;
  padding: 7px 0;
  cursor: pointer;
  z-index: 110;
  margin-top: -10px;
}

.menu-icon {
  left: 0;
  top: 0;
  transform: translate(0, 0);
  display: block;
}

.menu-icon-en {
  left: unset;
  right: 30px;
}

.menu-icon div {
  transition: 0.5s;
  width: 32px;

  height: 5px;
  /* background: rgb(255, 255, 255); */
  border-radius: 10px;
  margin-top: 6px;
}

.menu-icon-1 {
  width: 100%;
  background: var(--firstcolor);
}

.menu-icon .menu-icon-2 {
  width: 80%;
  background: var(--firstcolor);
  margin-left: 20%;
}

.menu-icon .menu-icon-3 {
  width: 60%;
  background: var(--firstcolor);
  margin-left: 40%;
}

.menu-icon-open .menu-icon-1 {
  transform: rotate(-45deg);
  margin-bottom: -22px;
  margin-top: 12px;
  width: 37px;
}

.menu-icon-open .menu-icon-2 {
  margin-left: -30px;
  opacity: 0;
}

.menu-icon-open .menu-icon-3 {
  transform: rotate(45deg);
  margin-bottom: 12px;
  width: 37px;
  margin-right: 0;
}

.phone-navbar {
  width: 100%;
  height: 100%;
  /* background-color: var(--mainwhite); */

  /* background-color: transparent; */
  position: fixed;
  right: -100%;
  transition: .4s;
  top: 0;
}

.phone-navbar #phone-navbar-ul-back {
  position: fixed;
  right: 0;
  right: -100%;
  top: 0;
  padding: 5px 30px;
  width: 80%;
  height: 100%;
  min-width: 250px;
  background-color: #ffffff99;
  backdrop-filter: blur(12px);
  z-index: 101;
  transition: .4s;
}

.phone-navbar #phone-navbar-close {
  position: fixed;
  right: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  visibility: hidden;
  background-color: #00000030;
  /* backdrop-filter: blur(7px); */
  opacity: 0;
  transition: .4s;
  z-index: 100;
}

.phone-navbar-open #phone-navbar-close {
  opacity: 1;
  transition: .4s;
  visibility: visible;
}

.phone-navbar-open #phone-navbar-ul-back {
  right: 0;

}

.phone-navbar a {
  color: var(--mainblack);
  font-size: 17px;
}

.phone-navbar li {
  margin: 10px 0;
}

.phone-navbar-open {
  right: 0;
}

/* .navbar-down .phone-navbar {
  width: 100%;
  height: auto;
  background-color: var(--mainwhite);
  padding: 20px 30px;
  display: none;
}

.navbar-down .phone-navbar a {
  color: var(--mainblack);
  font-size: 17px;
}

.navbar-down .phone-navbar li {
  margin: 10px 0;
}

.navbar-down .phone-navbar-open {
  display: block;
} */

.navbar-middle-title-div-phone {
  display: none;
}





/* --------load wrapper------- */
.loading-back {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #00000080;
  backdrop-filter: blur(12px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  display: flex;
  /* animation: loading-unvisible 1s ease-in-out; */
}

/* @keyframes loading-unvisible {
  0%{
      display: none;
  }
  1%{
      display: flex;
  }
  100%{
      display: none;
  }
} */
.loading-back.loading-back-unvisible {
  display: none;
}

.loading-back svg {
  position: relative;
  width: 90px;
  height: 90px;
  animation: loading-rotate 1.5s linear infinite;
}

.loading-back svg circle {
  width: 100%;
  height: 100%;
  fill: none;
  stroke-width: 9;
  stroke: var(--firstcolor);
  stroke-linecap: round;
  transform: translate(5px, 5px);
  stroke-dasharray: 250;
  stroke-dashoffset: 250;
  animation: loading 3s linear infinite;
}

@keyframes loading-rotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes loading {

  0%,
  100% {
    stroke-dashoffset: 250;
  }

  50% {
    stroke-dashoffset: 0;
  }

  50.1% {
    stroke-dashoffset: 500;
  }
}














.home-links {
  display: flex;
  align-items: center;
  /* gap: 40px; */
  margin-top: 20px;
}

.home-links a {
  /* background: linear-gradient(135deg, var(--primary),var(--purple)); */
  /* animation: animated-gradient 3s linear infinite;
  background-size: 200% 200%; */
  background-color: var(--firstcolor);
  padding: 14px 18px;
  border: none;
  border-radius: 18px;
  font-size: 16px;
  color: var(--white);
  font-family: vazir-light;
  cursor: pointer;
  z-index: 1;
  box-shadow: 1px 2px 8px #a1a1a1;
}

.home-share-menu {
  position: relative;
  width: 150px;
  height: 75px;
  margin-right: -30px;
}

.share-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  border-radius: 15px;
  cursor: pointer;
  background-color: #d2d4ff60;
  backdrop-filter: blur(7px);
  font-size: 23px;
  font-weight: normal;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);

}

.social-btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.social-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  border-radius: 25px;
  cursor: pointer;
  background-color: #d2d4ff60;
  backdrop-filter: blur(7px);
  font-size: 20px;
  transition: all .3s ease-in-out 0ms;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondcolor);
}

.home-share-menu-active div {
  box-shadow: 0 0 20px #cacaca;
}

.home-share-menu-active div:nth-child(2) {
  top: 125%;
  left: 50%;
  transform: translate(-50%, 0%);
  transition: all .3s ease-in-out 200ms;
}

.home-share-menu-active div:nth-child(3) {
  top: 100%;
  left: 0%;
  transform: translate(-50%, -50%);
  transition: all .3s ease-in-out 100ms;
}

.home-share-menu-active div:nth-child(4) {
  top: 0%;
  left: 0%;
  transform: translate(-50%, -50%);
  transition: all .3s ease-in-out 0ms;
}

.home-share-menu i.fa-close {
  display: none;
}

.home-share-menu-active i.fa-share-alt {
  display: none;
}

.home-share-menu-active i.fa-close {
  display: block;
}


.phone-contact {
  position: fixed;
  z-index: 10;
  bottom: 10px;
  right: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  color: var(--white);
}

.phone-contact .share-btn {
  width: 65px;
  height: 65px;
  background-color: #699bfe;
  box-shadow: 0 0 13px 1px var(--secondcolor);
  border-radius: 50%;
  color: var(--white);
  font-size: 30px;
}

.home-share-menu-phone div a {
  position: relative;
}

.home-share-menu-phone div a .share-menu-notif {
  position: absolute;
  top: -120%;
  right: 80%;
  width: 130px;
  height: auto;
  padding: 10px 12px;
  font-family: vazir-light;
  font-size: 16px;
  background-color: #353535;
  border-radius: 15px 15px 5px 15px;
  box-shadow: 0 0 10px #61616170;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: .3s;
  pointer-events: none;
}

.home-share-menu-phone div:hover .share-menu-notif {
  opacity: 1;
  visibility: visible;
}

.phone-contact-active div {
  box-shadow: 0 0 20px #cacaca;
}

.phone-contact-active div:nth-child(2) {
  background-color: #699bfe;
  top: -25%;
  box-shadow: 0 0 13px 1px var(--firstcolor);
  left: 13%;
  /* transform: translate(-50%,0%); */
  transition: all .3s ease-in-out 150ms;
}

.phone-contact-active div:nth-child(3) {
  background-color: #699bfe;
  box-shadow: 0 0 13px 1px var(--firstcolor);
  top: 60%;
  left: -5%;
  transform: translate(-50%, -50%);
  transition: all .3s ease-in-out 300ms;
}

.phone-contact-active div:nth-child(4) {
  background-color: #699bfe;
  box-shadow: 0 0 13px 1px var(--firstcolor);
  top: -55%;
  left: 60%;
  /* transform: translate(100%,100%); */
  transition: all .3s ease-in-out 0ms;
}

.phone-contact-active div a i {
  color: var(--white);
}

.phone-contact-active i.fa-headphones-alt {
  display: none;
}

.phone-contact-active i.fa-close {
  font-size: 25px;
  display: block;
}











/*      back to up       */

.back-to-up a {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  bottom: 20px;
  right: 10px;
  color: var(--mainwhite);
  background-color: var(--mainwhite);
  border-radius: 15px;
  z-index: 10;
  font-family: vazir-light;
  font-size: 20px;
  background: linear-gradient(130deg, var(--firstcolor), var(--secondcolor));
  animation: animated-gradient 3s linear infinite;
  background-size: 200% 200%;
}

.back-to-up {
  display: none;
}

@keyframes animated-gradient {
  25% {
    background-position: left bottom;
  }

  50% {
    background-position: right bottom;
  }

  75% {
    background-position: right top;
  }

  100% {
    background-position: left top;
  }
}

/*      gallery section      */
.gallery {
  width: 100%;
  min-height: 100vh;
  margin-top: 175px;
  margin-bottom: 450px;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
}

.back-gallery {
  width: 100%;
  max-width: 1280px;
}

.gallery-title h1 {
  font-size: 40px;
  font-family: vazir-extrabold;
  margin: 40px 0;
  text-align: center;
  color: var(--firstcolor);
  position: relative;
}

.gallery-title h1::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 3px;
  background-color: var(--secondcolor);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  animation: galleryTitle 3s linear infinite;
}

@keyframes galleryTitle {
  0% {
    width: 100px;
  }

  50% {
    width: 200px;
  }

  100% {
    width: 100px;
  }
}

.first-gallery {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  overflow: hidden;
  margin-bottom: 50px;
  max-width: 1280px;
}

.first-gallery-left {
  width: 100%;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  height: 770px;
}

.first-gallery-left-middle {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.first-gallery-middle {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  width: 100%;
  max-width: 480px;
  height: 770px;
  margin: 0 20px;
}

.first-gallery-middle-top img {
  height: 400px;
  width: unset;
}

.first-gallery-middle-bottom img {
  height: 350px;
  width: unset;
}

.first-gallery img {
  width: 100%;
  margin: 5px 0;
  border-radius: 7px;
}

.first-gallery-right {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  width: 100%;
  height: 770px;
  max-width: 256px;
}

.first-gallery-right img {
  height: 100%;
  width: 100%;
}

.first-gallery-right-top img {
  margin-bottom: 10px;
}

.first-gallery-right-bottom img {
  height: 100%;
  width: 100%;
  margin-top: 20px;
}

.first-gallery-left-middle-left img {
  width: 98%;
  max-width: 256px;
  margin-left: 10px;
}

.first-gallery-left-middle-right img {
  width: 95%;
  margin-right: 10px;
  max-width: 256px;
  height: 93%;
}

/* second gallery */
.second-gallery {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 50px;
}

.slider {
  width: 1000px;
  height: 600px;
  border-radius: 10px;
  overflow: hidden;
}

.slide {
  width: 500%;
  height: 600px;
  display: flex;
}

.slide input {
  display: none;
}

.slide-img {
  width: 20%;
  transition: 2s;
}

.slide-img {
  width: 1000px;
  height: 600px;
}

.slide-nav {
  position: absolute;
  width: 1000px;
  margin-top: -40px;
  display: flex;
  justify-content: center;
}

.slide-nav-btn {
  border: 2px solid var(--firstcolor);
  padding: 5px;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.4s;
}

#radio4-label {
  margin: 0 30px 0 0;
}

.a-b4 {
  margin: 0 30px 0 0;
}

.slide-nav-btn:not(:last-child) {
  margin-right: 30px;
}

.slide-nav-btn:hover {
  background-color: var(--secondcolor);
}

#radio1:checked~.slide-first {
  margin-left: 0;
}

#radio2:checked~.slide-first {
  margin-left: -20%;
}

#radio3:checked~.slide-first {
  margin-left: -40%;
}

#radio4:checked~.slide-first {
  margin-left: -60%;
}

.slide-auto {
  position: absolute;
  width: 1000px;
  margin-top: 560px;
  display: flex;
  justify-content: center;
}

.slide-auto div {
  border: 2px solid var(--firstcolor);
  padding: 5px;
  border-radius: 10px;
  transition: 1s;
}

.slide-auto div:not(:last-child) {
  margin-right: 30px;
  justify-content: center;
}

#radio1:checked~.slide-auto .a-b1 {
  background-color: var(--firstcolor);
}

#radio2:checked~.slide-auto .a-b2 {
  background-color: var(--firstcolor);
}

#radio3:checked~.slide-auto .a-b3 {
  background-color: var(--firstcolor);
}

#radio4:checked~.slide-auto .a-b4 {
  background-color: var(--firstcolor);
}

.open-img {
  position: fixed;
  top: 0;
  left: 0;
  /* background: #00000099; */
  height: 100%;
  width: 100%;
  z-index: 100;
  display: none;
}

.open-img-back {
  width: 100%;
  height: 100%;
  position: fixed;
  background: rgba(0, 0, 0, 0.8);
}

.open-img span {
  position: absolute;
  top: 10px;
  right: 30px;
  font-size: 40px;
  font-weight: bolder;
  color: var(--mainwhite);
  cursor: pointer;
  z-index: 100;
}

.open-img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 5px solid var(--secondcolor);
  border-radius: 15px;
  width: 95%;
  max-width: 900px;
  max-height: 90%;
  object-fit: cover;
  z-index: 2;
}

.image {
  overflow: hidden;
  border-radius: 10px;
  margin: 5px;
}

.image img {
  cursor: pointer;
  transition: 0.3s;
}

.image img:hover {
  transform: scale(1.1);
}

/* end gallery section */


/* -------- START CONTACT PAGE ------- */
#contact-us-section {
  max-width: 100vw;
  object-fit: cover;
  overflow: hidden;
  min-height: unset;
}

.contact-us-section-back {
  margin: 0px 0;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  gap: 50px;
  padding: 50px;
  width: auto;
  min-height: 500px;
  max-width: 1300px;
  background-color: transparent;
  border-radius: 20px;
  position: relative;
}

#contact-us-section-background-back {
  position: absolute;
  width: 100%;
  overflow: hidden;
  z-index: -1;
  height: 80vh;
}

#contact-us-section-background {
  width: 200vw;
  height: 70vh;
  position: absolute;
  top: 0;
  right: -50px;
  transform: rotate(-12deg);
  background-color: #9295f7;
  object-fit: cover;
  z-index: -1;
}




.contact-us-img {
  width: 100%;
  max-width: 400px;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-us-img-back {
  width: 100%;
  height: 60%;
  max-height: 400px;
  /* background-color: #6166f280; */
}

.contact-us-img-back img {
  width: 100%;
  object-fit: contain;
}

.contact-us-img-link-back {
  display: flex;
  flex-direction: column;
  gap: 20px;
  pointer-events: none;
  font-family: vazir-light;
  color: #555555;
  font-size: 18px;
}

.contact-us-img-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
}

.contact-us-img-link-icon-back {
  min-width: 45px;
  max-width: 45px;
  width: 100%;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(130deg, var(--secondcolor), var(--firstcolor));
  color: var(--white);
  font-size: 19px;
  box-shadow: 0 0 20px 1px var(--firstcolor);
}

#contact-us-content-link-back {
  display: none;
}

.contact-us-contnet {
  min-height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 50px;
}

#contact-us-img-title {
  display: none;
}

.contact-us-contnet-title {
  font-size: 16px;
  font-family: vazir-extrabold;
  color: #777777;
}

.contact-us-contnet-title h1 {
  font-family: vazir-extrabold;
  font-size: 29px;
  color: var(--secondcolor);
}

.contact-us-contnet-form form {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.contact-us-contnet-form-name {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.contact-us-contnet-form-name div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.contact-us-contnet-form form input {
  font-family: vazir-light;
  outline: none;
  border: 1px solid #dbdbdb;
  border-radius: 10px;
  padding: 12px 10px;
  min-width: 240px;
  transition: transform .4s, box-shadow .4s, border-right-color .4s, padding .3s;
  font-size: 15px;
  color: #777777;
}

.contact-us-contnet-form form input:focus {
  /* transform: scale(1.05); */
  border-right: 5px solid transparent;
  border-right-color: var(--secondcolor);
  border-radius: 5px;
  padding: 12px 15px 12px 10px;
  box-shadow: 0 0 10px #cecece;
}

#contact-us-form-input-topic {
  width: 100%;
}

.contact-us-contnet-form form textarea {
  font-family: vazir-light;
  outline: none;
  border: 1px solid #dbdbdb;
  border-radius: 10px;
  padding: 12px 10px;
  width: 100%;
  font-size: 15px;
  color: #777777;
  resize: none;
  height: 200px;
  transition: .3s;
}

.contact-us-contnet-form form textarea:focus {
  box-shadow: 0 0 10px #cecece;

}

.contact-us-contnet-form form button {
  width: 100%;
  border: none;
  border-radius: 10px;
  padding: 12px 10px;
  font-family: vazir-light;
  font-size: 19px;
  color: #777777;
  background: linear-gradient(130deg, var(--secondcolor), var(--firstcolor));
  color: var(--white);
  cursor: pointer;
  transition: .3s;
}

.contact-us-contnet-form form button:hover {
  box-shadow: 0 0 20px 1px var(--secondcolor);
}

.contact-us-contnet-form input::-webkit-outer-spin-button,
.contact-us-contnet-form input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.contact-us-contnet-form input[type=number] {
  -moz-appearance: textfield;
}

.contact-us-contnet-form-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.contact-us-contnet-form button[type=reset] {
  max-width: 50px;
  background: transparent;
  border: 1px solid var(--secondcolor);
  color: var(--secondcolor);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 10px;
}

.contact-us-contnet-form button[type=reset]:hover {
  box-shadow: 0 0 20px 1px transparent;
  background-color: #f5e7e9;
  transform: scale(1);
}

.contact-us-location-back {
  position: absolute;
  left: 0px;
  top: 0px;
  background-color: var(--firstcolor);
  border-radius: 19px 0% 100% 0;
  z-index: 10;
}

.contact-us-location-btn button {
  border: none;
  font-size: 29px;
  color: var(--white);
  background-color: var(--firstcolor);
  padding: 17px 30px 25px 20px;
  transition: .4s;
  cursor: pointer;
  border-radius: 20px 0px 100% 0px;
}

.contact-us-location-btn button .fa-chevron-left {
  display: none;
}

.contact-us-location-btn:hover button {
  padding: 17px 40px 35px 20px;

}

.contact-us-location-div {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--firstcolor);
  border-radius: 20px;
  clip-path: circle(5% at 0 0);
  transition: 1s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-us-location-div-active {
  clip-path: circle(141.4% at 0 0);

}

.contact-us-location-btn button.contact-us-location-btn-active .fa-chevron-left {
  display: block;
}

.contact-us-location-btn-active .fa-map-marker-alt {
  display: none;
}

.contact-us-location-div iframe {
  width: 90%;
  height: 80%;
  border-radius: 20px;
  margin-top: 50px;
  transition: 1.5s;
  clip-path: circle(0% at 0 0);
}

.contact-us-location-div-active iframe {
  clip-path: circle(141.4% at 0 0);

}

.contact-us-location-div h1 {
  font-family: vazir-light;
  color: var(--white);
  font-size: 25px;
  position: absolute;
  top: 40px;
  right: 40px;
}









/* ---------------------------- */
/* ---------- ARTICLE --------- */

/* ---- article-home ---- */
.blog-home {
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: flex-start;
  margin-top: 30px;
  height: auto;
}

.blog-home-back {
  width: 95%;
  max-width: 1400px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: auto;
}

.blog-home-group-div {
  width: 100%;
  height: 40vh;
  /* min-height: 400px; */
  background-color: #00000010;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-home-group-div h1 {
  font-family: vazir-extrabold;
  font-size: 40px;
  color: var(--firstcolor);
}

.blog-home-div {
  width: 100%;
  /* height: 50vh; */
  min-height: 70px;
  /* max-height: 450px; */
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  position: relative;
}

.blog-home-img-div {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-home-img-div img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-color: #00000060;
}

.blog-home-content {
  width: 100%;
  height: 100%;
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  /* background-color: #00000099;
  backdrop-filter: blur(12px); */
  /* padding: 30px 40px; */
  gap: 3px;
}

.blog-home-content h1 {
  font-family: vazir-extrabold;
  font-size: 25px;
  color: var(--fontcolor1);
  order: 1;
}

#blog-home-content-p {
  font-family: vazir-extrabold;
  font-size: 18px;
  color: #c4c4c4;
  max-width: 600px;
  margin-bottom: 20px;
  text-align: right;
}

.blog-home-content div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.blog-home-content div p {
  font-family: vazir-extrabold;
  font-size: 16px;
  color: #d7d7d7;
  /* padding: 12px 15px; */
  border-radius: 20px;
  /* border: 2px solid #d7d7d7; */
  pointer-events: none;
  position: absolute;
  bottom: 20px;
  left: 30px;
  text-shadow: 0 0 10px #242424;
}

#blog-home-content-link-more {
  font-family: vazir-extrabold;
  font-size: 20px;
  color: var(--themeshadow3);
  /* color: var(--firstcolor);
  text-shadow: 0 0 10px var(--white); */
  padding: 12px 15px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  transition: .3s;
  /* border: 2px solid transparent; */
  /* background: linear-gradient(130deg,var(--firstcolor),var(--secondcolor)); */
}

#blog-home-content-link-more:hover {
  gap: 10px;
}

.blog-home-content-links {
  order: 0;
}

.blog-home-content-links a {
  font-family: vazir-regular;
  font-size: 15px;
  color: var(--blue);
}

/* ----- article-content ----- */
.blog-content {
  width: 100%;
  max-width: 1400px;
  height: auto;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
  /* flex-wrap: wrap; */
  margin: 20px auto 0 auto;
  padding: 0 30px;
}

/* ----- article-content-back ----- */
.blog-content-back {
  width: 60%;
  min-height: 100vh;
  min-width: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  overflow: visible;
  padding-bottom: 50px;
}

.blog-content-div {
  width: 100%;
  background-color: var(--white);
  border: 1px solid #00000020;
  box-shadow: 1px 10px 20px 1px #00000010;
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 20px;
  gap: 20px;
  z-index: 1;
}

.blog-content-div-img {
  width: 348px;
  height: 230px;
  border-radius: 25px;
  overflow: hidden;
}

.blog-content-div-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-content-div-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 15px;
  width: 100%;
}

.blog-content-title span {
  font-family: vazir-extrabold;
  font-size: 22px;
  letter-spacing: -1px;
  line-height: 35px;
  pointer-events: none;
}

.blog-content-title {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px 20px;
  flex-wrap: wrap;
}

.blog-content-title a {
  font-family: vazir-extrabold;
  font-size: 15px;
  color: var(--white);
  background: linear-gradient(130deg, var(--theme4), var(--themeshadow3));
  box-shadow: 0 5px 10px #91aee770;
  border-radius: 100px;
  padding: 16px 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: .3s;
}

.blog-content-title a:hover {
  box-shadow: 0 10px 20px var(--themeshadow3);
  transform: translateY(-5px);
}

.blog-content-title a span {
  width: 1px;
  height: 20px;
  background-color: var(--navcolor);
  border-radius: 10px;
  display: flex;
}

.blog-content-date {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.blog-content-date p {
  pointer-events: none;
}

#blog-content-date-link {
  transform: translateY(-2px);
  pointer-events: visible;
}

.blog-content-date p,
.blog-content-date a {
  font-family: vazir-light;
  font-size: 16px;
  color: #525878;
}

.blog-content-text1 p {
  font-family: vazir-light;
  font-size: 16;
  line-height: 30px;
  color: #717171;
}

.blog-content-text1 {
  max-height: 60px;
  overflow: hidden;
}

.blog-content-link {
  font-family: vazir-extrabold;
  font-size: 17px;
  color: #333333;
  /* width: 100%; */
  margin-right: auto;
  padding-left: 20px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0px;
  transition: .3s;
}

.blog-content-link i {
  color: #525878;
}

.blog-content-link:hover i {
  transform: translateX(-10px);
}



/* --- article-content-back-single --- */

#blog-content-single {
  flex-direction: column;
}

#blog-content-single .blog-content-div-img {
  width: 100%;
  max-width: 700px;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#blog-content-single .blog-content-div-img img {
  object-fit: contain;
  border-radius: 30px;
  width: 100%;
  margin: 0 auto;
}

#journal-body #blog-content-single .blog-content-div-img {
  min-height: 200px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

#journal-body .blog-content-div-img img {
  object-fit: contain;
  max-width: 400px;
  border-radius: 30px;
}

.blog-single-content {
  width: 100%;
  min-height: 150px;
  border-top: 1px dashed #00000040;
  padding: 20px 10px;
  font-family: vazir-light;
  color: #555555;
  line-height: 35px;
  text-align: justify;
}

.blog-single-content h1 {
  font-family: vazir-extrabold;
  font-size: 20px;
  color: #1b1b1b;
}

.blog-single-content h2 {
  font-family: vazir-extrabold;
  font-size: 18px;
  color: #3e3e3e;
}

.blog-single-content h3 {
  font-family: vazir-extrabold;
  font-size: 17px;
  color: #494949;
}

.blog-content-back.home {
  margin-bottom: 0;
}



/* ----- aside ----- */
.aside {
  width: 35%;
  min-width: 250px;
  max-width: 400px;
  min-height: 0vh;
  margin-bottom: 50px;
  position: sticky;
  top: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
}

.aside-back {
  width: 100%;
  min-height: 200px;
  border-radius: 25px;
  background-color: var(--white);
  /* box-shadow: 2px 5px 15px 1px var(--shadow); */
  border: 1px solid #00000020;
  box-shadow: 1px 10px 20px 1px #00000010;
}

.aside-title {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  border-bottom: 1px solid #00000025;
}

.aside-title span.aside-title-span {
  font-family: vazir-extrabold;
  font-size: 25px;
  color: var(--theme3);
}

.aside-content-back {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  /* gap: 10px; */
  padding: 0px 20px;
}

.aside-content {
  width: 100%;
  height: 100px;
  /* border-radius: 20px; */
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  gap: 20px;
  border-bottom: 1px solid #00000020;
}

.aside-content:last-child {
  border-bottom: none;
}

.aside-content-img {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  overflow: hidden;
}

.aside-content-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.aside-content-text {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  max-width: 75%;
  position: relative;
  padding-left: 7px;
}

.aside-content-text span {
  color: #333333;
  font-family: vazir-extrabold;
  font-size: 17px;
  height: 25px;
  overflow: hidden;
  position: relative;
}

.aside-content-text span.aside-content-text-dot {
  position: absolute;
  top: 0;
  left: -5px;
  font-family: vazir-extrabold;
  color: #585858;
}

.aside-content-text p {
  color: #5d5d5d;
  font-family: vazir-light;
  font-size: 14px;
  text-align: left;
}


/* --- blog-comments --- */
.blog-content-single {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.blog-comments-title {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 15px;
  border-bottom: 1px solid #00000020;
}

.blog-comments-title h1 {
  font-family: vazir-extrabold;
  font-size: 30px;
  color: #2c2c2c;
}

.blog-comments-back {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  max-width: 700px;
  gap: 40px;
}

.blog-comments {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  width: 100%;
}

.blog-comments-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--white);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(10px);
}

.blog-comments-img img {
  width: 105%;
  background-color: var(--bodycolor);
  height: 105%;
}

.blog-comments-text {
  width: 100%;
  min-height: 150px;
  background-color: #00000009;
  border-radius: 25px 25px 5px 25px;
  padding: 20px 30px;
}

.blog-comments-text-name {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
  padding-bottom: 20px;
  font-family: vazir-light;
  font-size: 15px;
  color: #373737;
  pointer-events: none;
}

.blog-comments-text-name h3 {
  font-family: vazir-extrabold;
  font-size: 17px;
  color: #202020;
}

.blog-comments-text-msg p {
  font-family: vazir-light;
  font-size: 16px;
  color: #5e5e5e;
}

.blog-comments-replay {
  width: 90%;
  margin-top: -30px;
}

.blog-comments-replay .blog-comments-text {
  background-color: var(--navcolor);

}























/* -------- START COMMENTS PAGE -------  */



.comments-back {
  width: 95%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 30px;
  padding: 30px 0;
}

.comments-title {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 15px;
  width: 100%;
  border-bottom: 2px dashed #00000010;
  padding: 10px 10px 20px;
}

.comments-title p {
  font-family: vazir-extrabold;
  font-size: 22px;
  color: var(--fontcolor1);
}

.comments-div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  /* background-color: #00000009; */
  width: 100%;
  gap: 30px;
}

.comments-div .comment {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 10px;
  width: 100%;
  max-width: 500px;
}

.comments-div .comment .comment-img {
  width: 50px;
  height: 50px;
  border-radius: 100%;
  background-color: var(--themeshadow2);
  /* padding: 5px; */

}

.comments-div .comment .comment-img img {
  width: 100%;
  min-width: 50px;
  height: 100%;
  object-fit: cover;
  border-radius: 100%;
}

.comments-div .comment .comment-content {
  width: 90%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
}

.comments-div .comment .comment-content .comment-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 10px;
}

.comments-div .comment .comment-content .comment-title p.comment-title-username {
  font-family: vazir-extrabold;
  font-size: 16px;
  color: var(--fontcolor1);
}

.comments-div .comment .comment-content .comment-title .secend-comment-title-div-date-p {
  font-family: vazir-regular;
  font-size: 13px;
  color: var(--fontcolor2);
}

.comments-div .comment .comment-content .comment-title h5 {
  font-family: vazir-light;
  font-size: 13px;
  color: var(--fontcolor2);
}

.comments-div .comment .comment-content .comment-text p {
  font-family: vazir-light;
  font-size: 15px;
  color: var(--fontcolor2);
  text-align: justify;
  line-height: 25px;
}

.comments-div .comment .comment-content .comment-like {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-top: 10px;
}

.comments-div .comment .comment-content .comment-like form {
  width: 0%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  display: none;
  transition: .5s;
}

.comments-div .comment .comment-content .comment-like form input {
  width: 100%;
  padding: 15px 50px 15px 55px;
  outline: none;
  border: 1px solid #00000015;
  border-radius: 15px;
  font-family: vazir-light;
  color: var(--fontcolor1);
  font-size: 15px;
}

.comments-div .comment .comment-content .comment-like form button {
  position: absolute;
  left: 5px;
  font-size: 15px;
  color: var(--theme4);
  top: 50%;
  transform: translateY(-50%);
  padding: 0 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #e0e5f3;
  border: none;
  border-radius: 12px;
  height: 85%;
  cursor: pointer;
}

.comments-div .comment .comment-content .comment-like form i.fa-times {
  position: absolute;
  right: 5px;
  font-size: 15px;
  color: var(--thirdcolor);
  top: 50%;
  transform: translateY(-50%);
  padding: 0 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #dc143c10;
  border: none;
  border-radius: 12px;
  height: 85%;
  cursor: pointer;
}

#reply-comment-div {
  transition: .3s;
}

#reply-comment-div.open-comment-div {
  width: 100%;
}

#reply-comment-div.open-comment-div form {
  display: flex;
  width: 100%;
}

#reply-comment-div.open-comment-div #reply-comment-div-a {
  display: none;
}

.comments-div .comment .comment-content .comment-like div {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: auto;
}

.comments-div .comment .comment-content .comment-like div a {
  cursor: pointer;
}

.comments-div .comment .comment-content .comment-like a {
  font-family: vazir-extrabold;
  font-size: 15px;
  color: var(--fontcolor1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.comments-div .comment .comment-content .comment-like a i {
  font-size: 22px;
  color: var(--fontcolor2);
}

.comments-div .comment .comment-content .comment-like i.fa-circle {
  font-size: 5px;
  color: var(--fontcolor2);
}

.comments-div .comment .comment-content .comment-like i.fa-reply {
  font-size: 15px;
  color: var(--fontcolor2);
}

.comments-reply {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  /* background-color: #00000009; */
  width: 90%;
  border-right: 1px solid #00000020;
  padding: 20px 20px 20px 0;
  margin-right: auto;
  /* margin-top: 20px; */
  gap: 30px;
}

.add-comment {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.add-comment-nouser {
  width: auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  background-color: var(--white);
  padding: 15px 20px;
  border-radius: 100px;
  box-shadow: 0 10px 20px #e0e5f3;
}

.add-comment-nouser img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid var(--themeshadow2);
  background-color: var(--white);
}

.add-comment-nouser p {
  font-family: vazir-extrabold;
  font-size: 16px;
  color: var(--fontcolor1);
  padding-left: 50px;
}

.add-comment-nouser a {
  font-family: vazir-extrabold;
  font-size: 16px;
  padding: 10px 30px;
  border-radius: 100px;
  background-color: var(--themeshadow3);
  color: var(--white);
}

form.add-comment-nouser {
  width: 100%;
  max-width: 700px;
}

.add-comment-nouser input {
  font-family: vazir-extrabold;
  font-size: 16px;
  color: var(--fontcolor1);
  padding-left: 50px;
  width: 100%;
  border: none;
  resize: none;
  outline: none;
  padding: 10px 0 10px 0;
}

.add-comment-nouser button {
  font-family: vazir-extrabold;
  font-size: 16px;
  padding: 10px 30px;
  border-radius: 100px;
  background-color: var(--themeshadow3);
  color: var(--white);
  cursor: pointer;
  border: none;
}


.comments-div .comment .comment-content .comment-title #secend-comment-title-div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

#secend-comment-title-div .menu-comment {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

#secend-comment-title-div .menu-comment i.fa-ellipsis-v {
  color: var(--fontcolor1);
  font-size: 16px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
}

#secend-comment-title-div .menu-comment:hover i.fa-ellipsis-v {
  background-color: var(--white);
}

#secend-comment-title-div .menu-comment .menu-comment-div {
  position: absolute;
  top: 0;
  left: 0;
  width: 200px;
  background-color: #00000025;
  padding: 10px;
  border-radius: 15px;
  background-color: var(--white);
  box-shadow: 0 10px 20px #e0e5f3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  /* display: none; */
  opacity: 0;
  visibility: hidden;
  transition: .3s;
}

#secend-comment-title-div .menu-comment:hover .menu-comment-div {
  visibility: visible;
  opacity: 1;
  transition: .3s;
}

#secend-comment-title-div .menu-comment .menu-comment-div form {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

#secend-comment-title-div .menu-comment .menu-comment-div form button {
  width: 100%;
  font-size: 14px;
  color: var(--fontcolor2);
  padding: 12px 15px;
  background-color: transparent;
  border: none;
  cursor: pointer;
  font-family: vazir-extrabold;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background-color: #e0e5f360;
  gap: 10px;
  border-radius: 10px;
  transition: .3s;
}

#secend-comment-title-div .menu-comment .menu-comment-div form button:hover {
  background-color: #e0e5f3;
}

#secend-comment-title-div .menu-comment .menu-comment-div form button i {
  font-size: 13px;
}









/* -------- START ABOUT PAGE ------- */
#about-us-section {
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-top: 200px;
}

.about-us-section-back {
  width: 100%;
  min-height: 100vh;
  max-width: 1300px;
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 50px;
}

.about-us-top {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.about-us-top-img {
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-us-top-img img {
  width: 70%;
  object-fit: cover;
}

.about-us-top-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-family: vazir-light;
  line-height: 32px;
  text-align: justify;
  color: #666666;
  padding: 0 20px;
}

.about-us-top-content h1 {
  padding: 5px 0;
  font-family: vazir-extrabold;
  font-size: 29px;
  color: #383838;
}

.about-us-top-content h3 {
  padding: 0 0 25px 0;
  color: #8d91f3;
  font-size: 22px;
}

.about-us-company-information {
  width: 100%;
  padding: 60px 70px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  background-color: #fcf5f6;
  box-shadow: 0 0 30px 3px #00000020;
  font-family: vazir-light;
  color: #555555;
  text-align: justify;
  line-height: 35px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 17px;
  margin-top: 110px;
}

.about-us-company-information h1 {
  color: var(--firstcolor);
  font-family: vazir-extrabold;
  font-size: 27px;
  direction: ltr;
  text-align: right;
}

.about-us-company-information p,
.about-us-company-information h2,
.about-us-company-information h3,
.about-us-company-information h4,
.about-us-company-information h5,
.about-us-company-information h6,
.about-us-company-information span {
  direction: ltr;
  text-align: right;
}

.about-us-services {
  width: 95%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.about-us-services-content {
  height: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  font-family: vazir-light;
  font-size: 18px;
  text-align: justify;
  color: #363636;
  line-height: 30px;
}

.about-us-services-content h1 {
  font-family: vazir-extrabold;
  color: var(--firstcolor);
  font-size: 30px;
  margin-bottom: 30px;
}

.about-us-services-content li {
  margin-right: 20px;
}

.about-us-services-content-list {
  margin-top: 15px;
  padding-right: 40px;
  font-size: 17px;
  color: #555555;
  line-height: 35px;
}

.about-us-services-content-list li {
  transition: padding-right .3s, color .2s, font-weight .3s;
  cursor: default;
  max-width: 400px;
  margin-right: 20px;
}

.about-us-services-content-list li:hover {
  padding-right: 20px;
  color: #4247df;
  font-weight: bold;
}

.about-us-services-img {
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-us-services-img div {
  width: 80%;
  height: 80%;
  background-color: #6166f215;
  border-radius: 63% 37% 30% 70% / 50% 45% 55% 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 50px 2px #6166f210;
}

.about-us-services-img img {
  width: 100%;
  padding: 0 30px;
}


#circle-id-4 {
  background: linear-gradient(130deg, var(--lightblue1), #8b8ee7);
  width: 100px;
  height: 100px;
  bottom: 50px;
  right: 50px;
  box-shadow: 0 0 50px 3px #9093f5;
  opacity: 1;
  border-radius: 100px;
}



/* ---------------HOME Section--------------- */
.home {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 50px;
  overflow: hidden;
}


.home-top-slider-title-h1-back {
  width: 95%;
  max-width: 1400px;
  display: flex;
  align-items: center;
  justify-content: center;

  h1 {
    font-family: vazir-extrabold;
    color: var(--fontcolor1);
    font-size: 22px;
    padding: 25px 0px 0 0;
    text-align: center;
  }

}





.img-slider {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 0px 0;
  margin-top: 20px;
}

.img-slider-bottom-shadow {
  width: 100%;
  bottom: 0;
  position: absolute;
  height: 0px;
  /* background: linear-gradient(to bottom , #ffffff00 , #ffffff); */
  /* box-shadow: 0 0 40px 5px #ffffff25; */
}

.img-slider-div-back {
  width: 95%;
  max-width: 1400px;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 100px;
  /* background-color: var(--white); */
  border-radius: 30px;
}

#img-slider-back {
  overflow: hidden;
  border-radius: 30px;
  position: relative;
  width: 100%;
  height: auto;
  min-height: 350px;
  max-height: 650px;
  /* background-color: #00000010; */
  /* backdrop-filter: blur(10px); */
  /* box-shadow: 0 0 20px 2px #00000015; */
  padding: 20px;
}

#img-slider-side-back {
  min-width: 300px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.img-slider-side {
  width: 100%;
  height: 50%;
  border-radius: 10px;
  overflow: hidden;
}

.img-slider-side a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.img-slider-side a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-slider .img-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /* background-color: #00000020; */
  clip-path: circle(0% at 0 50%);
}

.img-slider .img-slide.img-slide-actice {
  transition: 1.5s;
  clip-path: circle(150% at 0 50%);
}

.img-slider .img-slide img {
  position: absolute;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 15px;
  cursor: pointer;
  /* border-radius: 63% 37% 30% 70% / 50% 45% 55% 50%; */
  border-radius: 25px;
}

.img-slider .img-slide-info {
  width: 100%;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.img-slide-info-div {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: vazir-light;
}

.img-slide-info-div h2 {
  font-size: 20px;
  font-weight: normal;
  font-family: vazir-extrabold;
  color: #2f2f2f;
}

.img-slide-info-div h3 {
  font-size: 17px;
  font-weight: normal;
  font-family: vazir-extrabold;
  color: var(--secondcolor);
}

.img-slide-info-div h4 {
  opacity: .7;
  font-size: 15px;
  text-decoration: line-through;
  margin-left: 10px;
}

.img-slide-info-div i {
  color: var(--firstcolor);
  font-size: 14px;
  transform: rotate(45deg);
}

.img-slide-info-div p {
  font-size: 15px;
  color: #696969;
  width: 95%;
  max-width: 500px;
  text-align: justify;
  display: flex;
  flex-direction: column;

}

#call-for-price-home-slider-text {
  color: var(--lightblue2);
  text-align: center;
  max-width: 150px;
}

.img-slide-info-div a {
  color: #4b4b4b;
  /* background-color: var(--white); */
  font-size: 17px;
  width: 110px;
  border-radius: 10px;
  padding: 12px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: vazir-extrabold;
  word-spacing: 1px;
}

.img-slide-info-bottom {
  gap: 60px;
}




/* .img-slider-navigation {
  height: 85vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  z-index: 0;
  width: 100%;
} */

.img-slider .prev-btn {
  z-index: 5;
  font-size: 17px;
  padding: 20px;
  background-color: var(--white);
  border-radius: 30%;
  color: var(--firstcolor);
  border: 1px solid var(--secondcolor);
  cursor: pointer;
  opacity: 1;
  transition: 0s;
  position: absolute;
  /* top: 50%; */
  bottom: 20px;
  /* transform: translateY(-50%); */
  left: 20px;
  z-index: 1;
}

.img-slider .next-btn {
  z-index: 5;
  font-size: 17px;
  padding: 20px;
  background-color: var(--white);
  border-radius: 30%;
  color: var(--firstcolor);
  border: 1px solid var(--secondcolor);
  cursor: pointer;
  opacity: 1;
  transition: 0s;
  position: absolute;
  /* top: 50%; */
  bottom: 20px;
  /* transform: translateY(-50%); */
  right: 20px;
}

.img-slider-navigation span {
  opacity: 0;
  transition: 0s;
}

#img-slider-back:hover .next-btn,
#img-slider-back:hover .prev-btn {
  opacity: 1;
}

#img-slider-back:hover .img-slider-navigation span {
  opacity: 1;
}

.img-slider-navigation #after,
.img-slider-navigation #after-2 {
  width: 30px;
  height: 30px;
  background: transparent;
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -52px;
  border-radius: 10px;
  box-shadow: -20px 20px 0 var(--bodycolor);
  display: none;
}

.img-slider-navigation #after-2 {
  left: auto;
  box-shadow: 20px 20px 0 var(--bodycolor);
  right: 0;
}

.img-slider-navigation #befor,
.img-slider-navigation #befor-2 {
  width: 30px;
  height: 30px;
  background: transparent;
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: 22px;
  border-radius: 10px;
  box-shadow: -20px -20px 0 var(--bodycolor);
  display: none;
}

.img-slider-navigation #befor-2 {
  left: auto;
  box-shadow: 20px -20px 0 var(--bodycolor);
  right: 0;
}

.navigation-visibility {
  z-index: 5;
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.navigation-visibility .img-slide-icon {
  z-index: 5;
  background-color: var(--white);
  width: 10px;
  height: 10px;
  /* transform: translateY(-40vh); */
  border-radius: 100px;
  transition: 0.5s;
}

.navigation-visibility .img-slide-icon.img-slide-actice {
  background-color: var(--secondcolor);
  width: 30px;
}

/* option-products */
.option-products {
  width: auto;
  max-width: 1100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  margin-bottom: 50px;
  z-index: 2;
  border-radius: 20px;
  background-color: var(--white);
  box-shadow: 0 0 15px 2px #00000025;
  padding: 20px 20px;
  /* display: none; */
}

.option-product-back {
  width: 100%;
  max-width: 1100px;
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.option-product {
  width: 120px;
  height: 110px;
  /* background-color: var(--mainwhite); */
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  font-family: vazir-light;
  /* box-shadow: 0 0 10px #d0d0d0; */
  transition: box-shadow .3s;
  padding: 10px 0;
}

.option-product h2 {
  font-weight: vazir-extrabold;
  font-weight: 400;
  font-size: 12px;
  color: rgb(51, 51, 51);
  pointer-events: none;
  margin-top: 10px;
}

.option-product p {
  font-size: 13px;
  text-align: center;
  color: #737373;
  pointer-events: none;
}

.option-product-icon {
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.option-product-icon img {
  /* height: 100%; */
  max-width: 63px;
}



#home-img-slider-svg {
  position: absolute;
  bottom: -100px;
  left: 40%;
}

.home-content-div {
  width: 100%;
  max-width: 550px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-content-div-back {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-family: vazir-light;
}

.home-content-div-back h3 {
  font-size: 22px;
  color: var(--secondcolor);
}

.home-content-div-back h1 {
  font-size: 43px;
  font-family: vazir-extrabold;
  color: #2a2a2a;
  word-spacing: -5px;
  line-height: 60px;
}

.home-content-div-back p {
  font-size: 17px;
  line-height: 35px;
  text-align: justify;
  color: #626262;
}


/* ---------categories-section--------- */

.categories-section {
  width: 100%;
  max-width: 1400px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-direction: column;
  margin: 30px 0;
}

.categories-title {
  width: 100%;
  padding: 20px 50px;
}

.categories-title h2 {
  font-family: vazir-extrabold;
  font-size: 30px;
  color: var(--firstcolor);
}

.categories-div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.categories-div .categorie {
  width: 250px;
  height: 250px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

.categorie-img {
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 30%;
  overflow: hidden;
  background-color: var(--white);
  box-shadow: 0 0 25px var(--secondcolor);
  padding: 10px;
  border: 2px dashed var(--secondcolor);
}

.categorie-img img {
  width: 100%;
  border-radius: 30%;
  object-fit: contain;
}

.categorie-name p {
  margin-top: 10px;
  font-family: vazir-extrabold;
  font-size: 22px;
  color: var(--white);
  text-shadow: 0 0 10px var(--firstcolor),
    0 0 20px var(--secondcolor),
    0 0 25px var(--thirdcolor);
}

.categorie-name h3 {
  margin-top: 10px;
  font-family: vazir-extrabold;
  font-size: 22px;
  color: var(--white);
  text-shadow: 0 0 10px var(--firstcolor),
    0 0 20px var(--secondcolor),
    0 0 25px var(--thirdcolor);
}
























/* container-amazing */
.container-amazing {
  width: 95%;
  height: 380px;
  background-color: var(--secondcolor);
  margin: 20px 0;
  /* padding: 0 40px 0 0; */
  display: flex;
  align-items: center;
  position: relative;
  max-width: 1400px;
  /* overflow: hidden; */
  border-radius: 20px;
  /* border: 3px solid var(--secondcolor); */
  /* box-shadow: 0 0 20px var(--secondcolor); */
}

.last-add-product {
  background-color: #a1cbce;
}

.top-views {
  background-color: var(--thirdcolor);
  margin-top: -30px;
}

.top-views .container-amazing-title,
.top-views #container-amazing-title-radius {
  background-color: #cccccc;
}

.discount-container .container-amazing-title,
.discount-container #container-amazing-title-radius {
  background-color: var(--secondcolor);
}

.last-add-product .container-amazing-title,
.last-add-product #container-amazing-title-radius {
  background-color: #a1cbce;
}












#container-amazing-shadow-left {
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background-color: #fff;
  box-shadow: 0 0 100px 50px #fff;
  z-index: 10;
}

.container-amazing-img {
  min-width: 200px;
  height: 100%;
  overflow: hidden;
  background-color: transparent;
  margin-right: 40px;

}

.container-amazing-img img {
  height: 100%;
}


.container-amazing-products {
  width: 100%;
  height: 100%;
  overflow-y: hidden;
  overflow-x: scroll;
  /* position: absolute; */
  display: flex;
  gap: 12px;
  /* cursor: grab; */
  padding: 12px;
  scroll-behavior: smooth;
  /* scroll-snap-type: x mandatory;
  scroll-padding: 24px; */
}

.container-amazing {
  position: relative;
  margin-top: 100px;
}

.container-amazing-title {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  /* height: 40px; */
  font-family: vazir-light;
  font-size: 18px;
  /* box-shadow: 0 0 15px 2px var(--secondcolor); */
  border-radius: 20px 20px 0 0;
  padding: 10px 15px;
  color: var(--white);
  text-shadow: 0 0 5px var(--white);
  display: flex;
  align-items: center;

}

.container-amazing-title span i {
  transform: translateY(5px);
  color: var(--white);
  font-size: 18px;
  /* animation: container_amazing_title_span 3s infinite ease-in-out; */
}

@keyframes container_amazing_title_span {

  0%,
  100% {
    padding: 0 0px;
  }

  50% {
    padding: 0 10px;
  }
}

#container-amazing-title-radius {
  width: 30px;
  height: 40px;
  background-color: var(--secondcolor);
  position: absolute;
  bottom: 2px;
}

#container-amazing-title-radius span {
  width: 30px;
  height: 42px;
  bottom: 1px;
  position: absolute;
  background-color: var(--bodycolor);
}

#container-amazing-title-radius:nth-child(1) {
  right: -29px;
}

#container-amazing-title-radius:last-child {
  left: -29px;
}

#container-amazing-title-radius:nth-child(1) span {
  right: -1px;
  border-radius: 0 0 0 20px;
}

#container-amazing-title-radius:last-child span {
  left: -1px;
  border-radius: 0 0 20px 0;
}







.container-amazing-products::-webkit-scrollbar {
  height: 0px;
}

.container-amazing-products::-webkit-scrollbar-track {
  background-color: transparent;
}

.container-amazing-products::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: var(--firstcolor);
}


.container-amazing-products.dragging {
  cursor: grab;
  scroll-behavior: auto;
}

.container-amazing-products.dragging .container-amazing-product .product {
  pointer-events: none;
  cursor: grab;
}

.container-amazing-product {
  min-width: 250px;
  height: 100%;
  /* border-left: 1px solid #c4c4c4; */
  transition: .3s;
}

.container-amazing-start {
  /* scroll-snap-align: start; */
}

.container-amazing-product:hover {
  /* box-shadow: 0 0 10px #818181; */
  transform: scale(1.03);
  z-index: 1;
}

.container-amazing-product .product {
  margin: 0;
  height: 100%;
  box-shadow: none;
  border-radius: 10px;
  overflow: hidden;
}

.container-amazing-product .product .img {
  height: 190px;
}

.container-amazing-product .product .content {
  height: 45%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.content-div-rate-back {
  height: 100px;
}

.content-div-rate-back #content-div-price {
  margin: 10px 0 2px 0;
}

#content-rate-fa-star-back {
  height: 20px;
  padding-top: 2px;
}

.container-amazing-product .product .content h4 {
  font-size: 16px;
  color: #5f5f5f;
  font-family: vazir-regular;
  font-weight: bold;

}

.container-amazing-product .product .content p {
  font-size: 16px;
  color: #5f5f5f;
  font-family: vazir-regular;
  font-weight: bold;

}

.content-div-rate-back .content-real-Price {
  font-size: 16px;
  padding-right: 5px;
}

.container-amazing-product .product .content a {
  display: none;
}

.container-amazing-product .product .content a div {
  padding: 7px;
  width: auto;
  height: auto;
  font-size: 14px;
  font-family: vazir-light;
}

.container-amazing-product-link {
  cursor: pointer;
}

.container-link-products {
  background: transparent;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 19px;
  font-family: vazir-regular;
  color: var(--blue);
  overflow: hidden;
}

.link-products-back {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: #00000015;
  border-radius: 10px;
  backdrop-filter: blur(3px);
}

#container-amazing-product-back .container-amazing-product {
  color: var(--white);
}

.container-arrow {
  position: absolute;
  width: 45px;
  height: 45px;
  background-color: var(--white);
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 -23px;
  z-index: 3;
  box-shadow: 0 0 10px 1px #00000030;
  cursor: pointer;
  color: #525252;
}

.container-arrow-left {
  left: 0;
}



#products-home {
  position: relative;
  max-width: 1200px;
  border: 10px solid var(--white);
  box-shadow: 0 0 30px 5px var(--secondcolor);
  padding: 20px 30px;
  padding-top: 80px;
  background: linear-gradient(130deg, var(--thirdcolor), var(--firstcolor), var(--secondcolor), var(--thirdcolor));
  animation: animated-gradient 3s linear infinite;
  background-size: 150% 150%;
  margin: 30px 0;
}

#products-home .products-home-title {
  position: absolute;
  top: 17px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--white);
  text-shadow: 0 0 10px var(--firstcolor),
    0 0 20px var(--secondcolor),
    0 0 30px var(--thirdcolor);
  width: 100%;
}

#products-home .products-home-title h1 {
  font-family: vazir-extrabold;
  font-size: 30px;

}


#products-home .products-home-title h2 {
  font-family: vazir-extrabold;
  font-size: 30px;
  text-align: center;
}








/* --------‌Baner Short-------- */

.banner-short {
  width: 100%;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-short-back {
  width: 100%;
  max-width: 1400px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(267.6deg, #f1f1f1, #efefef);
  margin-top: -70px;
  /* box-shadow: 0 0 15px 2px #00000015; */
  border-radius: 20px;
  padding: 0 30px;
}

.banner-short-products {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

}

.banner-short-products a {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  background-color: var(--white);
  transition: .3s;
}

.banner-short-products a:hover {
  box-shadow: 0 0 15px #00000015;
}

.banner-short-products a:hover .banner-short-product {
  transform: scale(1.1);
}

.banner-short-product {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: .3s;
}

.banner-short-product img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.banner-short-product .banner-short-discount {
  position: absolute;
  left: 50%;
  top: 90%;
  font-family: vazir-light;
  font-size: 10px;
  background-color: var(--firstcolor);
  color: var(--white);
  border-radius: 50px;
  padding: 5px 5px 2px 5px;
}

.banner-short-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.banner-short-title h2 {
  font-family: vazir-extrabold;
  font-size: 29px;
  color: var(--secondcolor);
}

.banner-short-title i {
  font-size: 35px;
  color: var(--secondcolor);
  transform: rotate(-25deg);
}

.banner-short-link a {
  font-family: vazir-regular;
  color: #009879;
  padding: 12px 15px;
  border-radius: 100px;
  background-color: var(--white);
}













/* --------BANER TOP------- */
.banner-top {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-top-back {
  width: 95%;
  max-width: 1400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

#banner2-top-back {
  max-width: 1400px;
  max-height: 250px;
  overflow: hidden;
  border-radius: 20px;
}

.banner-top-top {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.banner-top-top a {
  width: 100%;
}

.banner-top-top-div {
  width: 100%;
  height: 260px;
  box-shadow: 0 0 0 5px var(--secondcolor);
  border-radius: 20px;
  overflow: hidden;
}

.banner-top-top-div img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.banner-top-bottom {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.banner-top-bottom a {
  width: 100%;
}

.banner-top-bottom-div {
  width: 100%;
  height: 210px;
  box-shadow: 0 0 0 5px var(--secondcolor);
  border-radius: 20px;
  overflow: hidden;
}

.banner-top-bottom-div img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}






















/* --------NEW LOGIN PAGE---------- */
.login-title {
  width: 100%;
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  z-index: 5;
  transition: 2s;
  opacity: .8;
}

.login-title img {
  width: 150px;
}

.login-title.title-login-animation {
  top: 10px;
  right: 0;
  margin-right: -170px;
  transform: translateX(-100%);
}

.container {
  position: relative;
  width: 100%;
  background-color: var(--mainwhite);
  min-height: 100vh;
  overflow: hidden;
}

.container input,
.container h2 {
  font-family: vazir-light;
}

.forms-container {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.signin-signup {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  left: 75%;
  width: 50%;
  transition: 1s 0.7s ease-in-out;
  display: grid;
  grid-template-columns: 1fr;
  z-index: 5;
}

.container form {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 0rem 5rem;
  transition: all 0.2s 0.7s;
  overflow: hidden;
  grid-column: 1 / 2;
  grid-row: 1 / 2;
}

form.sign-up-form {
  opacity: 0;
  z-index: 1;
}

form.sign-up-form #timer {
  font-family: vazir-light;
  font-size: 15px;
  color: #666666;
}

form.sign-in-form {
  z-index: 2;
}

.title {
  font-size: 2.2rem;
  color: #444;
  margin-bottom: 10px;
}

.input-field {
  max-width: 380px;
  width: 100%;
  background-color: #f0f0f0;
  margin: 10px 0;
  height: 55px;
  border-radius: 55px;
  display: grid;
  grid-template-columns: 15% 85%;
  padding: 0 0.4rem;
  position: relative;
  overflow: hidden;
}

.input-field i {
  text-align: center;
  line-height: 55px;
  color: #acacac;
  transition: 0.5s;
  font-size: 1.1rem;
}

.input-field input {
  background: none;
  outline: none;
  border: none;
  line-height: 1;
  font-weight: 600;
  font-size: 1.1rem;
  color: #333;
}

.input-field input::placeholder {
  color: #aaa;
  font-weight: 500;
}

.social-text {
  padding: 0.7rem 0;
  font-size: 16px;
  font-family: vazir-light;
  color: #949494;
}

.social-media {
  display: flex;
  justify-content: center;
}

.social-icon {
  height: 46px;
  width: 46px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 5px 0.45rem 15px 0.45rem;
  color: var(--secondcolor);
  border-radius: 50%;
  box-shadow: 0 0 15px var(--firstcolor);
  text-decoration: none;
  font-size: 1.1rem;
  transition: 0.3s;
}

.social-icon:hover {
  color: var(--firstcolor);
}

.input-recaptcha {
  height: 30px;
}

.input-recaptcha .g-recaptcha {
  margin-bottom: 0;
}


.container .btn {
  width: 150px;
  background: linear-gradient(to top right, var(--firstcolor), var(--secondcolor));
  border: none;
  outline: none;
  height: 49px;
  border-radius: 12px;
  color: #fff;
  margin: 10px 0;
  cursor: pointer;
  transition: 0.3s;
  font-size: 20px;
}

.panels-container {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.container:before {
  content: "";
  position: absolute;
  height: 2000px;
  width: 2000px;
  top: -10%;
  right: 48%;
  transform: translateY(-50%);
  background-image: linear-gradient(-45deg, var(--firstcolor) 0%, var(--secondcolor) 100%);
  transition: 1.8s ease-in-out;
  border-radius: 50%;
  z-index: 6;
}

.panels-container .image {
  width: 100%;
  transition: transform 1.1s ease-in-out;
  transition-delay: 0.4s;
}

.panels-container .panel {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-around;
  text-align: center;
  z-index: 6;
}

.left-panel {
  pointer-events: all;
  padding: 3rem 17% 2rem 12%;
}

.right-panel {
  pointer-events: none;
  padding: 3rem 12% 2rem 17%;
}

.panel .content {
  color: #fff;
  transition: transform 0.9s ease-in-out;
  transition-delay: 0.6s;
}

.panel h3 {
  font-weight: 600;
  line-height: 1;
  font-size: 1.5rem;
}

.panel p {
  font-size: 0.95rem;
  padding: 0.7rem 0;
}

.btn.transparent {
  margin: 0;
  background: none;
  border: 2px solid #fff;
  width: 130px;
  height: 41px;
  font-weight: 600;
  font-size: 0.8rem;
}

.right-panel .image,
.right-panel .content {
  transform: translateX(800px);
}

/* ANIMATION */

.container.sign-up-mode:before {
  transform: translate(100%, -50%);
  right: 52%;
}

.container.sign-up-mode .left-panel .image,
.container.sign-up-mode .left-panel .content {
  transform: translateX(-800px);
}

.container.sign-up-mode .signin-signup {
  left: 25%;
}

.signin-signup input[type="submit"] {
  width: 100%;
  max-width: 300px;
}

.container .g-recaptcha {
  position: unset;
  width: auto;
  border-radius: 0;
  margin-bottom: 0;
  cursor: pointer;
  z-index: 10;
  opacity: .8;
  transition: .3s;
  margin: 10px 0;
}

.container input::-webkit-outer-spin-button,
.container input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

.container .g-recaptcha:hover {
  opacity: 1;
}

.container.sign-up-mode form.sign-up-form {
  opacity: 1;
  z-index: 2;
}

.container.sign-up-mode form.sign-in-form {
  opacity: 0;
  z-index: 1;
}

.container.sign-up-mode .right-panel .image,
.container.sign-up-mode .right-panel .content {
  transform: translateX(0%);
}

.container.sign-up-mode .left-panel {
  pointer-events: none;
}

.container.sign-up-mode .right-panel {
  pointer-events: all;
}

.panel .content {
  width: 100%;
  font-family: vazir-regular;
}

.panel .content h3 {
  font-size: 30px;
  font-family: vazir-extrabold;
}

.panel .content p {
  font-size: 19px;
  font-family: vazir-regular;
  color: #e0e0e0;
}

.panel .content button {
  font-size: 20px;
  font-family: vazir-regular;
  width: 130px;
  height: 50px;
  border-radius: 13px;
  margin-top: 10px;
}


#login-forget-pass-a {
  font-family: vazir-light;
  font-size: 15px;
  color: var(--blue);
  direction: rtl;
}

#forget-password {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #00000020;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
}

#forget-password-close-back {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  backdrop-filter: blur(8px);
}

.forget-password-back {
  width: 400px;
  height: auto;
  background-color: var(--white);
  border-radius: 20px;
  padding: 20px 30px;
  z-index: 101;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

#forget-password-close-top {
  width: 10px;
  color: #393939;
}

.forget-password-back form {
  display: flex;
  flex-direction: column;
  gap: 20px;

}

.forget-password-back form div {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: auto;
  overflow: hidden;
  border-radius: 10px;
}

.forget-password-back form div input {
  width: 100%;
  height: 100%;
  font-family: vazir-light;
  color: #525252;
  padding: 12px 15px;
  outline: none;
  border: none;
  background-color: #00000010;
  font-size: 16px;
}

.forget-password-back form div input::-webkit-outer-spin-button,
.forget-password-back form div input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

.forget-password-back form div input[type=number] {
  -moz-appearance: textfield;
}

.forget-password-back form div label {
  width: 54px;
  height: 49px;
  border-radius: 0 10px 10px 0;
  background-color: var(--firstcolor);
  color: var(--white);
  /* margin: 10px; */
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px var(--firstcolor);
  cursor: pointer;
}

.forget-password-back form #g-recaptcha {
  margin: 0;
  border-radius: 0;
}

.forget-password-back form button {
  font-family: vazir-extrabold;
  border: none;
  border-radius: 15px;
  padding: 15px 0;
  width: 200px;
  cursor: pointer;
  color: var(--white);
  background-color: var(--firstcolor);
  font-size: 16px;
  margin: 0 auto;
}

#login-user-a.login-user-a-phone {
  display: none;
}

@media (max-width: 870px) {
  .container {
    min-height: 800px;
    height: 100vh;
  }

  .navbar {
    height: 77px;
  }

  .navbar-down {
    height: 77px;
  }

  .navbar-middle {
    padding: 15px 20px;
  }

  #navbar-middle-img {
    width: 140px;
  }

  .signin-signup {
    width: 100%;
    top: 95%;
    transform: translate(-50%, -100%);
    transition: 1s 0.8s ease-in-out;
  }

  #login-user-a.login-user-a-desktop {
    display: none;
  }

  #login-user-a.login-user-a-phone {
    display: flex;
  }

  .login-title img {
    width: 100px;
  }

  .login-title.title-login-animation {
    top: 10px;
    right: 0;
    margin-right: -120px;
    transform: translateX(-100%);
  }

  .signin-signup,
  .container.sign-up-mode .signin-signup {
    left: 50%;
  }

  .panels-container {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 2fr 1fr;
  }

  .panel {
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    padding: 2.5rem 8%;
    grid-column: 1 / 2;
  }

  .right-panel {
    grid-row: 3 / 4;
  }

  .left-panel {
    grid-row: 1 / 2;
  }

  .image {
    width: 100px;
    transition: transform 0.9s ease-in-out;
    transition-delay: 0.6s;
    display: none;
  }

  .panel .content {
    padding-right: 15%;
    transition: transform 0.9s ease-in-out;
    transition-delay: 0.8s;
  }

  .panel h3 {
    font-size: 1.2rem;
  }

  .panel p {
    font-size: 0.7rem;
    padding: 0.5rem 0;
  }

  .btn.transparent {
    width: 110px;
    height: 35px;
    font-size: 0.7rem;
  }

  .container:before {
    width: 1500px;
    height: 1500px;
    transform: translateX(-50%);
    left: 30%;
    bottom: 68%;
    right: initial;
    top: initial;
    transition: 2s ease-in-out;
  }

  .container.sign-up-mode:before {
    transform: translate(-50%, 100%);
    bottom: 32%;
    right: initial;
  }

  .container.sign-up-mode .left-panel .image,
  .container.sign-up-mode .left-panel .content {
    transform: translateY(-300px);
  }

  .container.sign-up-mode .right-panel .image,
  .container.sign-up-mode .right-panel .content {
    transform: translateY(0px);
  }

  .right-panel .image,
  .right-panel .content {
    transform: translateY(300px);
  }

  .container.sign-up-mode .signin-signup {
    top: 5%;
    transform: translate(-50%, 0);
  }

  .categories-div .categorie {
    width: 150px;
    height: 150px;
  }

  .categorie-img {
    width: 120px;
    height: 120px;
  }

  .home-content-div {
    width: 95%;
  }
}

@media (max-width: 570px) {
  form {
    padding: 0 1.5rem;
  }

  .navbar-middle-search-form form {
    padding: 0;
  }

  #navbar-middle-img {
    width: 100px;
  }

  .login-title img {
    width: 70px;
    margin-top: -10px;
  }

  .login-title.title-login-animation {
    top: 10px;
    right: 0;
    margin-right: -90px;
    transform: translateX(-100%);
  }

  .login-title.title-login-animation img {
    margin-top: 0px;

  }

  .image {
    display: none;
  }

  .panel .content {
    padding: 0.5rem 1rem;
  }

  .container {
    padding: 1.5rem;
  }

  .container:before {
    bottom: 72%;
    left: 50%;
  }

  .container.sign-up-mode:before {
    bottom: 28%;
    left: 50%;
  }

  .about-us-services {
    width: 90%;
  }

  .banner-top-top-div {
    height: 162px;
  }

  .banner-top-bottom-div {
    height: 110px;
  }

  #banner2-top-back .banner-top-top-div img {
    border-radius: 0;
  }

  #banner2-top-back {
    width: 100%;
    border-radius: 0;
  }

  .container-amazing-title h2 {
    font-size: 20px;
  }

  .container-amazing-title {
    top: -49px;
  }

  #container-amazing-title-radius {
    height: 20px;
  }

  .container-amazing-title {
    text-shadow: 0 0 3px var(--white);
  }

  .store .back-store {
    padding: 0 10px;
    /* height: 300px; */
  }

  .product .img {
    height: 160px;
  }

  #store .back-store .store-filter-section {
    overflow-y: unset;
  }

  #store .back-store .store-filter-section .products-back .products .img {
    height: 150px;
  }

  #products-home {
    padding-top: 120px;
  }

  .blog-home-content h1 {
    font-size: 20px;
    text-shadow: none;
  }

  .blog-content-div-img img {
    object-fit: contain;
  }

  .blog-content-div-img {
    width: 100%;
    max-width: 200px;
    height: auto;
  }

  .blog-content-div {
    flex-direction: column;
  }


  .home-top-slider-title-h1-back h1 {
    font-size: 22px;
    padding: 10px 10px 0 10px;
  }


}

/* END NEW LOGIN PAGE */

.home-article {
  width: 100%;
  max-width: 1100px;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin: 150px 0;
  margin-top: 20px;
}

.home-article-back-l {
  width: 30%;
  height: 100%;
  max-height: 500px;
  font-family: vazir-regular;
  color: var(--mainwhite);
  font-weight: bold;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.home-article-back-l a {
  height: 100%;
}

.home-article-back-l a:nth-child(2) {
  margin-top: -240px;
}

.home-article-link p {
  font-size: 250px;
}

#home-article-link-p3,
#home-article-link-p4 {
  font-size: 30px;
}

.home-article-link {
  width: 100%;
  height: 100%;
  background-color: rgb(214, 214, 214);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  position: relative;
  overflow: hidden;
  min-width: 300px;
}

.home-article-link-a {
  width: 70%;
  height: 100%;
  max-height: 500px;
  margin: 30px;
  max-width: 710px;
}

.home-article-link p {
  z-index: 2;
  color: var(--mainwhite);
  font-size: 19px;
}

.home-article-link-p-back {
  width: 100%;
  max-width: 400px;
  height: 200px;
  background-color: var(--mainwhite);
  z-index: 2;
  opacity: 0.9;
  position: absolute;
  right: -30px;
  bottom: 30px;
  box-shadow: 0 0 20px #00000040;
  border-radius: 3px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  padding: 0 40px;
}

.home-article-link-p-back-en {
  right: unset;
  left: -30px;
}

.home-article-link-p-back p {
  color: var(--mainblack);
  font-family: vazir-light;
  padding: 10px 0;
  font-size: 20px;
  color: var(--firstcolor);
}

#home-article-link-p2 {
  color: var(--maingray);
  font-size: 18px;
}

#home-article-link-p1-span {
  width: 10px;
  height: 10px;
  background-color: var(--firstcolor);
  border-radius: 100%;
  z-index: 2;
}

.home-article-link-back {
  width: 100%;
  height: 100%;
  background-color: #00000090;
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.4s;
}

.home-article-back-l .home-article-link {
  width: 100%;
  height: 47%;
  margin: 0 0 30px 0;
}

#home-article-link1 {
  background: url(../images/\(13\).jpg) no-repeat center;
  background-size: cover;
  overflow: unset;
}

#home-article-link1 .home-article-link-back {
  border-radius: 15px;
}

#home-article-link2 {
  background: url(../images/\(11\).jpg) no-repeat center;
  background-size: cover;
}

#home-article-link3 {
  background: url(../images/\(1\).jpg) no-repeat center;
  background-size: cover;
}

.home-article a:hover .home-article-link-back {
  background-color: var(--firstcolor);
  opacity: 0.7;
}

.home-article a:hover .home-article-link-p3-back p {
  color: var(--mainwhite);
}

.home-article-link-p3-back {
  z-index: 2;
  width: 70%;
}

.home-article-link-p3-back #home-article-link-p3 {
  margin-bottom: 10px;
  font-family: vazir-light;
  background-color: var(--mainwhite);
  width: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  opacity: 0.8;
  font-size: 25px;
  color: var(--firstcolor);
}

#home-article-link-p32 {
  color: var(--mainwhite);
  font-size: 17px;
}

.home-footer {
  width: 100%;
  margin: 150px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-footer-back {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  max-width: 1200px;
}

.home-footer-div2 {
  width: 20%;
  overflow: hidden;
}

.home-footer-div2 i {
  font-size: 150px;
  color: var(--firstcolor);
}




/* ------ Start circle body ------ */
.circle-body-move {
  width: 70px;
  height: 70px;
  position: absolute;
  border-radius: 50%;
  opacity: .8;
  z-index: -1;
}

#circle-id-1 {
  background: linear-gradient(130deg, #b31217, #ea384d);
  width: 100px;
  height: 100px;
  top: 600px;
  right: -20px;
  box-shadow: -10px 10px 50px 3px #909090;
}

#circle-id-2 {
  background: linear-gradient(130deg, #ea384d, #d31027);
  width: 80px;
  height: 80px;
  top: 300px;
  left: 20px;
  box-shadow: -10px 10px 50px 3px #909090;
}

#circle-id-3 {
  background: linear-gradient(130deg, #d31027, #ea384d);
  width: 90px;
  height: 90px;
  top: 1700px;
  right: 20px;
  box-shadow: -10px 10px 50px 3px #909090;
}














/* ---------------Store */
.store {
  width: 100%;
  min-height: 100vh;
  margin-top: 0;
  margin-bottom: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* justify-content: ; */
}

.back-store {
  width: 100%;
  max-width: 1480px;
  padding: 20px 30px 20px 30px;
  display: flex;
  justify-content: space-between;
  position: relative;
}


.store-filter-section {
  width: 320px;
  min-height: 500px;
  max-height: 800px;
  height: auto;
  background-color: var(--white);
  border: 1px solid #ebebeb;
  /* box-shadow: 0 0 20px 2px #00000015; */
  margin-left: 10px;
  border-radius: 20px;
  padding: 20px 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow-y: scroll;
  position: absolute;
  /* top: 105px; */
  right: 40px;
  z-index: 99;
}

.store-filter-section::-webkit-scrollbar {
  width: 7px;
}

.store-filter-section::-webkit-scrollbar-track {
  background-color: transparent;
}

.store-filter-section::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background-color: transparent;
}

.store-filter-section:hover::-webkit-scrollbar-thumb {
  background-color: #ed5668;
}

.filter-title h1 {
  font-family: vazir-light;
  font-weight: 600;
  font-size: 23px;
  color: #525252;
}

.filter-content-div {
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.filter-content-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  /* gap: 20px; */
}

.filter-content {
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  /* background-color: #00a2ff; */
  border-bottom: 1px solid #00000010;
}

.filter-content input.filter_radios {
  display: none;
}

.filter-content label {
  min-width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  padding: 17px 0px;
  font-family: vazir-light;
  font-size: 17px;
  color: #484848;
}

.filter-content label i {
  font-size: 14px;
  margin-top: 10px;
  color: #838383;
  transition: .3s;
}

.filter-div {
  width: 100%;
  height: auto;
  background-color: #f5f5f5;
  border-radius: 10px;
  transition: .4s;
  height: 0;
  visibility: hidden;
  opacity: 0;
  padding: 0px 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 10px;

}

.filter-content input.filter_radios:checked~.filter-div {
  height: auto;
  visibility: unset;
  opacity: 1;
  overflow-x: unset;
  overflow-y: unset;
  padding: 10px 12px;
}

.filter-content input.filter_radios:checked~.filter-content-btn i {
  transform: rotate(180deg);
}

.filter-div a {
  font-family: vazir-light;
  font-size: 15px;
  color: #7cb4ec;
  padding: 5px 10px;
}

.filter-div h3 {
  font-family: vazir-extrabold;
  font-size: 17px;
  color: #282828;
  cursor: default;
  border-bottom: 1px solid #00000015;
  padding: 10px 0 20px 0;
  text-align: center;
}

.filter-div form {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 15px;
}

.filter-div-form-div {
  display: flex;
  align-items: center;
  font-family: vazir-light;
}

.filter-div-form-div p {
  color: #5e5e5e;
  font-size: 13px;
}

.filter-div-form-div input {
  font-family: vazir-light;
  font-size: 15px;
  color: #3a3a3a;
  outline: none;
  border: none;
  border-bottom: 1px dashed #c6c6c6;
  text-align: center;
  padding: 10px 10px;
  background-color: transparent;
}

.filter-div-form-div input::-webkit-outer-spin-button,
.filter-div-form-div input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

.filter-div-form-div input[type=number] {
  -moz-appearance: textfield;
}

.filter-div-form-div button {
  border: none;
  font-family: vazir-light;
  font-size: 15px;
  color: var(--white);
  background-color: var(--secondcolor);
  padding: 12px 15px;
  margin: 10px auto 5px auto;
  border-radius: 10px;
  cursor: pointer;
}

.filter-content-btn.filter-content-btn-checkbtn {
  cursor: default;
}

.filter-content-checkbtn {
  width: 45px;
  height: 25px;
  /* background-color: var(--secondcolor); */
  justify-content: flex-end;
  background-color: #cdcdcd;
  border-radius: 100px;
  display: flex;
  align-items: center;
  padding: 0 3px;
  transition: .3s;
}

.filter-content-checkbtn-div {
  width: 21px;
  height: 21px;
  background-color: var(--white);
  border-radius: 50%;
}

.filter-content-checkbtn.filter-content-checkbtn-active {
  background-color: var(--secondcolor);
  justify-content: flex-start;
}











.products-back {
  width: 100%;
}

.products-back-link {
  padding: 5px 15px 0 0;
  display: flex;
  gap: 10px;
  flex-direction: column;
  margin-bottom: 10px;

  .products-list-back-category-title {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;

    h1 {
      font-size: 22px;
      font-family: vazir-extrabold;
      color: var(--fontcolor1);
      font-weight: normal;
    }
  }

}

.products-back-link-back {
  display: flex;
  align-items: center;
  gap: 10px;

}

.products-back-link a {
  font-family: vazir-light;
  font-size: 15px;
  color: var(--blue);
}

.products-back-link-sort {
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
}

.products-back-link-sort-title p {
  font-family: vazir-light;
  font-size: 15px;
}

.products-back-link-sort-div {
  display: flex;
  align-items: center;
  gap: 15px;
}

.products-back-link-sort-div a {
  font-size: 15px;
  color: #404040;
}

.products-back-link-sort-div a:hover {
  color: var(--blue);
}

.products-back-num {
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  font-family: vazir-light;
  font-size: 16px;
  color: #3e3e3e;
}

.products-back-num span {
  color: #3A4764;
}





.products {
  width: 100%;
  /* max-width: 1200px; */
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 10px;
  /* background-color: var(--white); */
  border-radius: 20px;
  /* box-shadow: 0 0 20px 2px #00000015; */
  padding: 10px;
}

.product {
  background-color: var(--mainwhite);
  /* background-color: transparent; */
  height: 370px;
  /* border-radius: 10px; */
  overflow: hidden;
  border: 1px solid #00000015;
  position: relative;
  border-radius: 20px;
  transition: .3s;
  max-width: 350px;
}

.empty-product {
  background-color: var(--white);
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 0 15px 2px #00000015;
  margin: 0 auto;
  margin-top: 30px;
  font-family: vazir-extrabold;
  font-size: 22px;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 30px;
  color: #424242;
}

.empty-product img {
  width: 80%;
  min-width: 200px;
  max-width: 300px;
}

@keyframes boxshadow-anime {
  0% {
    box-shadow: 0 0 10px var(--firstcolor), 0 0 30px var(--secondcolor);
  }

  100% {
    box-shadow: 0 0 5px var(--firstcolor), 0 0 15px var(--secondcolor);
  }
}

.product:hover {
  box-shadow: 0 0 15px 2px #00000025;
  transform: scale(1.02);
}

.product .img {
  height: 200px;
  padding: 10px;
}

#product-location-text {
  position: absolute;
  top: 15px;
  right: 15px;
  margin-left: 15px;
  z-index: 1;
  background-color: #699bfe30;
  backdrop-filter: blur(8px);
  font-family: vazir-extrabold;
  font-size: 14px;
  padding: 5px 7px;
  border-radius: 12px;
  color: #4c4c4c;
  color: var(--firstcolor);
  pointer-events: none;
}

#product-location-text i {
  color: var(--firstcolor);
  text-shadow: 0 0 15px var(--firstcolor);
}

.product .content a {
  display: none;
}

.product .img img {
  width: 100%;
  height: 100%;
  overflow: hidden;
  object-position: center;
  object-fit: cover;
  cursor: pointer;
  border-radius: 20px;
  /* padding: 2px; */
  /* border: 1px solid #00000015; */
  /* box-shadow: 0 0 10px 1px #00000020; */
}

.product .content {
  height: 45%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 10px 15px;
  border-radius: 20px 20px 0 0;
  cursor: default;
}

.content .content-div {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
  font-family: vazir-light;
}

.content .content-div h4 {
  font-family: vazir-regular;
  font-size: 17px;
  padding-bottom: 5px;
  font-weight: normal;
}

.content .content-div p {
  font-family: vazir-regular;
  font-size: 17px;
  padding-bottom: 5px;
  font-weight: normal;
}

.content .content-div p {
  color: var(--mainblack);
  font-size: 14px;
  opacity: 0.9;
}

.fa-star {
  color: gold;
}

.content-rate div {
  font-size: 15px;
  margin-left: 4px;
}

#content-existence {
  font-size: 13px;
  color: #18f2c6;
}

#content-existence i {
  color: #18f2c6;
}

.content-discount {
  color: var(--mainwhite);
  width: 35px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  background-color: var(--firstcolor);
  border-radius: 7px;
  font-family: vazir-extrabold;
  padding-top: 1.5px;
}

.content-Price {
  font-family: vazir-regular;
  font-size: 16px;
}

.content-Price span {
  font-size: 13px;
  color: var(--maingray);
}

/* #content-div-price {
  margin: 10px 0 4px 0;
} */

.content-real-Price {
  color: var(--mainblack);
  font-size: 14px;
  opacity: 0.9;
  text-decoration: line-through;
  text-decoration-color: var(--maingray);
  margin-left: 18px;
  margin-top: -5px;
}

.content-link {
  color: var(--mainwhite);
  font-size: 17px;
  display: flex;
  align-items: center;
  position: absolute;
  bottom: 10px;
  right: 10px;
  font-family: vazir-regular;
  background: linear-gradient(130deg,
      var(--secondcolor),
      var(--firstcolor));
  animation: animated-gradient 3s linear infinite;
  background-size: 150% 150%;
  padding: 8px 10px;
  border-radius: 10px;
  cursor: pointer;
  /* border: 2px solid var(--firstcolor); */
}

.content-link:hover .fa-arrow-left {
  padding-right: 15px;
}

.fa-arrow-left {
  font-size: 15px;
  padding-right: 10px;
  transition: 0.3s;
}

#content-link-en {
  left: 10px;
  right: unset;
}

#content-link-en .fa-arrow-right {
  font-size: 15px;
  transition: 0.3s;
  padding-right: 0;
  padding-left: 10px;
}

#content-link-en:hover .fa-arrow-right {
  padding-left: 15px;
}

/* ------------ single product ------------ */
.single-product {
  margin-top: 30px;
  margin-bottom: 100px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.single-product-back {
  width: 98%;
  max-width: 1400px;
  background-color: var(--mainwhite);
  padding: 30px 20px 20px 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px #ebebeb;
}

.top-product {
  width: 100%;
  /* display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  grid-column-gap: 20px;
  grid-row-gap: 20px; */
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: -0px;
  /* margin: 0 10px; */
  position: relative;
}

.img-product {
  width: 40%;
  min-width: 250px;
  height: 410px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.img-product-selected img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
  min-width: 250px;
  cursor: pointer;
}

#img-product-selected-img {
  display: none;
}

#img-product-selected-img.img-product-selected-open {
  display: block;
}

#img-product-selected-video {
  display: none;
}

#img-product-selected-video.img-product-selected-open {
  display: block;
}

#img-product-selected-video {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 20px;
  min-width: 250px;
}

.select-img-product img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
}

.select-img-product {
  height: 90px;
  /* background-color: #018168; */
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.select-img-product div {
  padding: 5px 5px;
  width: 20%;
  height: 80px;
  min-width: 70px;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  opacity: 1;
  transition: 0.3s;
}

/* .select-img-product div:hover{
  box-shadow: 0 0 10px #6e6e6e;
} */
.select-img-product div:hover img {
  transform: scale(1.1);
}

.img-product-selected {
  overflow: hidden;
}

.top-product .content-product {
  min-height: 260px;
  width: 40%;
  margin: 0 10px;
  padding: 0 10px;
  position: relative;
}

.content-product-title {
  width: 100%;
}

.content-product-title-h1-back {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  border-bottom: 1px solid #e3e3e3;
  margin: -2px 0 10px 0;
}

#product-single-model-p-back {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 10px;
  margin-bottom: 20px;
  margin-top: 20px;
}

#product-single-model-p {
  font-family: vazir-regular;
  color: #313131;
  font-size: 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
}

#product-single-model-p~p {
  color: var(--fontcolor2);
  border: 1px solid #00000010;
  background-color: #00000010;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 14px;
  cursor: default;
  font-family: vazir-light;
}

.content-product .rate {
  font-size: 16px;
  font-family: vazir-light;
  color: var(--mainblack);
  margin-left: 10px;
}

.content-product-title {
  color: var(--blue);
}

.content-product-title a {
  color: var(--blue);
  opacity: 0.9;
  font-size: 13px;
  font-family: vazir-light;
  /* padding: 0 5px; */
  transition: 0.3s;
}

.content-product-title h1 {
  color: #454545;
  font-size: 20px;
  font-family: vazir-extrabold;
  font-weight: 400;
  padding: 10px 0 10px 0;
}

.content-product-title-hr {
  width: 100%;
  height: 1.1px;
  opacity: 0.2;
  background-color: #a6a6a6;
  margin-bottom: 10px;
  border-radius: 100px;
}

.content-product .specification {
  font-family: vazir-light;
  position: relative;
}

.content-product .specification .product-config {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 11px;
  font-family: vazir-regular;
  font-size: 14px;
  color: #454545;
  margin: 20px 0 30px 0;
}

.specification .product-config span {
  color: #6a6a6a;
}

.specification .product-config a {
  color: #00a2ff;
  margin: 0 7px 0 0;
}

.specification .product-config .fa-thumbs-up {
  color: #00d6ab;
}

.content-product .specification h2 {
  font-size: 18px;
  font-weight: normal;
}

.content-product .specification div {
  margin-top: 10px;
  display: flex;
}

/* .content-product .specification div p{
    margin-right: 15px;
} */
.content-product .specification ul {
  margin: 10px 30px;
  color: var(--mainblack);
  opacity: 0.9;
}

.content-product .specification ul li {
  list-style: unset;
}

.specification h4 {
  font-size: 17px;
  font-family: vazir-regular;
  font-weight: normal;
}

.product-choose-color {
  margin-top: 0px;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
}

.product-choose-color p {
  font-family: vazir-regular;
  font-size: 15px;
  color: #5a5a5a;
}

.product-choose-color-div {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}

.product-choose-color-div input {
  display: none;
}

.product-choose-color-div label {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: -20px;
}

.product-choose-color-div span {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 2px solid #d3d3d3;
  cursor: pointer;
}

.product-choose-color-div label[for="product-color-radio1"] span {
  background-color: #ffffff;
}

.product-choose-color-div label[for="product-color-radio2"] span {
  background-color: #aeaeae;
}

.product-choose-color-div input:checked~label span {
  border: 3px solid var(--secondcolor);
}



.open-img {
  position: fixed;
  top: 0;
  left: 0;
  /* background: #00000099; */
  height: 100%;
  width: 100%;
  z-index: 100;
  display: none;
}

.open-img-back {
  width: 100%;
  height: 100%;
  position: fixed;
  background: #000000cc;
}

.open-img span {
  position: absolute;
  top: 10px;
  right: 30px;
  font-size: 40px;
  font-weight: bolder;
  color: var(--white);
  cursor: pointer;
  z-index: 100;
}

.open-img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 12px solid var(--secondcolor);
  box-shadow: 0 0px 20px var(--firstcolor);
  border-radius: 30px;
  width: 95%;
  max-width: 900px;
  max-height: 90%;
  object-fit: contain;
  z-index: 2;
  background-color: var(--white);
}










.addtocart {
  width: 30%;
  min-width: 200px;
  max-width: 300px;
  background-color: rgb(253, 253, 253);
  display: flex;
  align-items: center;
  flex-direction: column;
  /* justify-content: space-between; */
  border-radius: 10px;
  border: 1px solid #dddddd;
  /* box-shadow: 0 0 20px #e0e0e0;  */
  /* position: absolute; */
  top: 0;
  left: 0;
  height: 400px;
  padding: 15px 10px 10px 10px;
  margin-top: 60px;
  position: relative;
  gap: 10px;
}

#addtocart-footer-back {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 10px;
}

#single_product_not_available {
  font-family: vazir-extrabold;
  color: #dc143c;
  text-shadow: 0 0 20px #dc143c60;
  font-size: 22px;
  margin: 0;
  padding: 15px 0;
}

.addtocart-footer-back-phone {
  display: none;
}

.addtocart button {
  width: 100%;
  height: 55px;
  border: none;
  background: linear-gradient(130deg,
      var(--secondcolor),
      var(--firstcolor));
  font-family: vazir-regular;
  color: var(--mainwhite);
  border-radius: 10px;
  font-size: 16px;
  cursor: pointer;
  /* box-shadow: 0 0 5px var(--firstcolor),0 0 10px var(--secondcolor); */

}

.addtocart div {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: vazir-light;
}

#addtocart-div {

  width: 90%;
  border-bottom: 1px solid #f0f0f0;
  padding: 0 0 15px 0;
}

#addtocart-div h4 {
  font-size: 16px;
  font-family: vazir-regular;
  font-weight: normal;
  color: #343434;
}

#addtocart-div p {
  font-size: 15px;
  font-family: vazir-light;
  font-weight: normal;
  color: #4e4e4e;
}

#addtocart-footer {
  flex-direction: row;
  position: relative;
  border-top: 2px dashed #e5e5e5;
  width: 96%;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#addtocart-footer .addtocart-full-price {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  font-size: 19px;
  font-family: vazir-regular;
  font-weight: 600;
  color: #343434;
  gap: 5px;
  width: auto;
  margin-right: auto;
}

a#call_for_price_link {
  font-family: vazir-extrabold;
  font-size: 20px;
  color: #717171;
  text-align: center;
  padding: 10px 0;
}

a#call_for_price_link span {
  color: var(--lightblue2);
  font-size: 16px;
}

#addtocart-footer-back-store {
  width: 100%;
  padding: 0px 10px;
  height: 30px;
  /* border-top: 1px solid #e4e4e4; */
  display: flex;
  align-items: center;
}

#addtocart-footer-back-store p {
  font-size: 14px;
  color: #18f2c6;
}

.addtocart-full-price div {
  font-weight: 100;
  font-size: 13px;
  color: #6a6a6a;
}

#addtocart-number {
  justify-content: flex-end;
}

.addtocart div form {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.addtocart p {
  font-size: 20px;
  margin-left: 20px;
  color: var(--mainblack);
  opacity: 0.9;
}

#addtocart-number {
  width: 100px;
  font-size: 20px;
  font-family: sans-serif;
  border-radius: 10px;
  border: none;
  /* box-shadow:inset 1px 2px 5px var(--secondcolor); */
  border: 1px solid var(--secondcolor);
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: space-evenly;
  color: var(--firstcolor);
}

#addtocart-number span {
  font-size: 20px;
  font-weight: 500;
  cursor: pointer;
  padding: 5px 10px;
  margin: 5px 0;
}

#addtocart-number .addtocart-number-num {
  border-right: 1px solid var(--secondcolor);
  border-left: 1px solid var(--secondcolor);
  margin: 0px 0;
  padding: 0;
}

.addtocart-div-fa-shield {
  color: var(--firstcolor);
  font-size: 16px;
  padding-left: 10px;
}

.addtocart-number-num input {
  width: 100%;
  height: 30px;
  border: none;
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  color: var(--firstcolor);
  cursor: pointer;
  background: none;
}

.addtocart-number-num input::-webkit-outer-spin-button,
.addtocart-number-num input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

.specification .seller,
.specification .send {
  display: flex;
  flex-direction: column;
}

.specification .seller p,
.specification .send p {
  color: var(--mainblack);
  opacity: 0.9;
}

.description-product-top-title {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 5px;
  margin: 10px;
  border-bottom: 1px solid #dedede;
}

.description-product-top-title button {
  border: none;
  padding: 10px 0 20px 15px;
  font-family: vazir-regular;
  font-size: 16px;
  color: #6a6a6a;
  background-color: transparent;
  cursor: pointer;
  transition: .2s;
}

.description-product-top-title button:hover {
  color: var(--firstcolor);

}

.description-product-top-title h1 {
  font-size: 30px;
  font-family: vazir-extrabold;
  margin: 40px 0;
  text-align: right;
  color: var(--firstcolor);
  position: relative;
}

.description-product .content {
  /* clip-path: circle(0% at 100% 50%); */
  display: none;
}

.description-product .content.content-active {
  display: unset;
  /* clip-path: circle(100% at 100% 50%); */
}

.description-product .content p {
  /* width: 100%; */
  padding: 10px 20px;
  text-align: justify;
  font-family: vazir-light;
  line-height: 30px;
  color: #6b6b6b;
}


#product_description_review {
  position: relative;
  height: 1000px;
}

#product_description_review p {
  overflow: hidden;
  transition: .3s;
  /* box-shadow:inset 0 -20px 20px #969696; */
}

#product_description_review.continue-information {
  transition: .3s;
  max-height: unset;
}

#product_description_review div {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  opacity: 1;
  bottom: 0px;
  height: 105px;
  z-index: 1;
  background: linear-gradient(180deg,
      hsla(0, 0%, 100%, 0),
      hsla(0, 0%, 98.8%, .99) 99%,
      #fcfcfc);
  display: none;
}

.continue-information-btn {
  width: 80px;
  text-align: center;
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  font-family: vazir-light;
  font-size: 16px;
  color: #00a2ff;
  background-color: transparent;
  border: none;
  cursor: pointer;
  border-bottom: 1px dashed #00a2ff;
  padding: 2px 0;
  display: none;
}

.continue-information-btn a {
  color: #00a2ff;
  position: absolute;
  width: 80px;
  z-index: 2;
  transform: translateX(-50%);
  left: 50%;
  padding: 13px 0;
  bottom: -10px;
}

.description-product .content h1,
.description-product .content h2,
.description-product .content h3,
.description-product .content h4,
.description-product .content h5,
.description-product .content h6 {
  font-family: vazir-extrabold;
  text-align: justify;
  line-height: 30px;
  color: var(--mainblack);
  margin: 15px 0 10px 0;
  font-weight: normal;
}

#product_description_information p {
  padding: 0;
}

#product_description_information table {
  font-family: vazir-light;
  max-width: 650px;
}

#product_description_information table td {
  font-size: 12pt;
  padding: 12px 15px;
  direction: rtl;
}

/* -------cards-container------- */
.cards-container {
  position: relative;
  overflow: hidden;
  padding: 20px 0;
  width: 100%;
  padding: 0 10vw;
  margin-top: 40px;
}

.product-contaier {
  padding: 0 0;
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  width: 100%;
  overflow: hidden;
  padding: 0 20px 40px 20px;
}

.product-contaier-en {
  padding: 0 40px 0px 20px;
}

.product-contaier::-webkit-scrollbar {
  display: none;
}

.container-title {
  font-size: 29px;
  font-family: vazir-regular;
  font-weight: normal;
  color: var(--firstcolor);
  text-align: center;
}

.product-contaier .product {
  /* flex: 0 0 auto; */
  min-width: 300px;
  margin-left: 30px;
}

.nxt-btn,
.pre-btn {
  border: none;
  width: 10vw;
  height: 100%;
  position: absolute;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  /* background: linear-gradient(90deg,rgba(255,255,255,0) 0%,#fff 100%); */
  background: transparent;
  cursor: pointer;
  z-index: 8;
  font-size: 30px;
}

.nxt-btn {
  left: 0;
  transform: rotate(180deg);
}

.pre-btn {
  right: 0;
}

.nxt-btn i,
.pre-btn i {
  opacity: 0.5;
}

.nxt-btn:hover i,
.pre-btn:hover i {
  opacity: 1;
}

#store-add-to-cart-login-a.store-add-to-cart-added-class {
  background-color: var(--white);
  background-color: #699bfe10;
  color: var(--firstcolor);
  border: 2px dashed #699bfe90;
  font-size: 15px;

  i.fa-shopping-cart {
    margin-right: 8px;
    font-size: 17px;
  }
}

#store-add-to-cart-login-a.store-add-to-cart-added-class:hover {
  /* border: 2px solid #699bfe90; */
  background-color: #699bfe10;
  box-shadow: none;
}




#store-add-to-cart-login-a {
  font-family: vazir-extrabold;
  font-size: 17px;
  color: var(--white);
  background-color: var(--firstcolor);
  border-radius: 12px;
  padding: 15px 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .3s;
}

#store-add-to-cart-login-a span {
  color: #ffffff99;
  font-size: 13px;
  font-family: vazir-light;
  margin: 0 5px 0 0;
}

#store-add-to-cart-login-a:hover {
  box-shadow: 0 0 15px var(--firstcolor);
}








/* ------ Start Login ------ */
.login {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-form {
  width: 330px;
  background: var(--white);
  height: 300px;
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 0 50px var(--blue);
}

.login-form div {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.login-form div input {
  width: 200px;
  height: 30px;
  font-family: sans-serif;
  font-size: 15px;
  background: transparent;
  outline: none;
  border: none;
  box-shadow: 0 0 5px #969696;
  border-radius: 100px;
  padding: 10px 20px;
}

.login-form div label,
.login-section-incorrect div label {
  font-size: 18px;
  font-family: vazir-light;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-form input[type="submit"],
.login-section-incorrect input[type="submit"] {
  border: none;
  font-size: 24px;
  font-family: vazir-light;
  padding: 3px 0;
  border-radius: 3px 3px 15px 15px;
  cursor: pointer;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-form input[type="submit"]:hover,
.login-section-incorrect input[type="submit"]:hover {
  background: var(--lightblue1);
  color: var(--white);
}

.login-section {
  height: 200px;
}

#admin-login-section {
  width: auto;
  height: 380px;
  background-color: var(--bodyblack);
}

#admin-login-section h1 {
  text-align: center;
  font-family: vazir-regular;
  color: #0fbcf9;
}

#admin-login-section label {
  color: var(--white);
}

#admin-login-section div input {
  color: var(--white);
}

#admin-body {
  background-color: var(--black);
}

.g-recaptcha {
  margin-bottom: -40px;
  border-radius: 15px 15px 3px 3px;
  overflow: hidden;
  width: auto;
  position: relative;
}

.g-recaptcha-content {
  margin-bottom: 0;
  border-radius: 0;
}

.panel-table {
  border-collapse: collapse;
  margin: 0px 0;
  font-size: 16px;
  width: 100%;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
  font-family: vazir-light;
}

.panel-table thead tr {
  background-color: #42506e;
  color: var(--white);
  text-align: left;
  font-weight: bold;
  font-size: 18px;
}

.panel-table thead th {
  padding: 30px 0;
}

.panel-table td,
.panel-table th {
  padding: 12px 15px;
  text-align: center;
}

.panel-table tbody td:nth-last-child() {
  max-width: 300px;
}

.panel-table tbody tr {
  border-bottom: 1px solid #dddddd;
}

.panel-table tbody tr td {
  text-align: justify;
}

.middle-td {
  min-width: 100px;
}

.panel-table tbody tr:nth-of-type(even) {
  background-color: #f3f3f3;
}

.panel-table tbody tr:last-of-type {
  border-bottom: 10px solid var(--firstcolor);
}

.panel-table tbody .active {
  color: var(--firstcolor);
}

#last-td-table {
  min-width: 300px;
  max-width: 650px;
}

.delete-btn {
  border-radius: 50%;
  width: 40px;
  height: 40px;
  color: crimson;
  background-color: rgb(250, 223, 228);
  border: none;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.panel-table tr {
  position: relative;
}

#delete-td {
  min-width: 70px;
}



.product-feature-back {
  display: flex;
  align-items: center;
  width: 90%;
  max-width: 1300px;
  margin: 00px auto 50px auto;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  padding: 40px 0 0 0;
  /* border-top: 1px solid #efeeee; */
  font-family: vazir-regular;
  color: #6b6b6b;
  font-size: 13px;
  opacity: .5;
}

.product-feature-div {
  width: 40%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-width: 250px;
  gap: 40px;

}

.product-feature {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.product-feature img {
  width: 40px;
  filter: grayscale(100%);
  opacity: .8;
}


#container-amazing-start-home.container-amazing-img {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #6782b480;
  font-family: vazir-extrabold;
  font-size: 16px;
  color: var(--white);
  border-radius: 20px;
  pointer-events: none;
  min-width: 240px;
  margin-right: 15px;
}

#container-amazing-start-home.container-amazing-img h2 {
  text-align: center;
}


#container-single-product {
  background-color: var(--white);
  box-shadow: 0 0 10px #ebebeb;
  margin-top: 30px;
}

.container-amazing#container-single-product .container-amazing-img {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #6782b480;
  font-family: vazir-extrabold;
  font-size: 16px;
  color: var(--white);
  border-radius: 20px;
  pointer-events: none;
  min-width: 240px;
}

.container-amazing#container-single-product #container-amazing-product-back .container-link-products {
  background-color: var(--newcolor);
}

#addtocart-footer-back-disable-btn {
  opacity: .5;
  /* pointer-events: none; */
}

#addtocart-footer-back-disable-btn::after {
  content: '';
}

.addtocart-disable-btn-hover {
  position: absolute;
  bottom: -55px;
  background-color: var(--bodyblack);
  min-width: 360px;
  padding: 15px 20px;
  border-radius: 10px;
  left: 20%;
  opacity: 0;
  visibility: hidden;
  transition: .3s;
  pointer-events: none;
}

.addtocart-disable-btn-hover::before {
  content: '';
  top: -6px;
  width: 15px;
  height: 15px;
  transform: rotate(45deg);
  border-radius: 2px;
  background-color: var(--bodyblack);
  position: absolute;
  left: 20px;
}

.addtocart-disable-btn-hover p {
  font-size: 14px;
  font-family: vazir-light;
  color: var(--white);

}

#addtocart-footer-back-disable-btn:hover~.addtocart-disable-btn-hover {
  opacity: 1;
  visibility: visible;
}

















/*      login-user       */

#login-section {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-section-back {
  width: 99%;
  max-width: 800px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 0 50px 0;
}

.login-section-div {
  width: 100%;
  max-width: 400px;
  height: auto;
  background-color: var(--mainwhite);
  /* padding: 15px 20px; */
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  box-shadow: 5px 7px 10px #9e9e9e;
}

.login-section-title h1 {
  font-size: 40px;
  font-family: vazir-regular;
  line-height: 80px;
  color: rgb(94, 94, 94);
}

.login-section-switch {
  font-family: vazir-regular;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.login-section-switch a {
  width: 143px;
  line-height: 45px;
  margin: 5px 1px;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--mainwhite);
  color: var(--black);
  border-radius: 12px;
  transition: 0.3s;
  border: 1px solid #00000050;
}

.login-section-switch a:hover {
  background-color: #00000010;
}

#signup-a {
  background: linear-gradient(130deg, var(--firstcolor), var(--secondcolor));
  animation: animated-gradient 3s linear infinite;
  background-size: 150% 150%;
  color: var(--mainwhite);
  border: none;
}

/* .login-form-login{display: none;} */
.login-section-form form {
  font-family: vazir-light;
}

.login-section-form form div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 304px;
  position: relative;
  margin: 20px 0;
}

.login-section-form form div label {
  position: absolute;
  right: 10px;
  color: #5e5e5e;
  font-size: 15px;
  padding: 0 5px;
  transition: 0.4s;
  background-color: var(--bodycolor);
}

.login-section-form form div input {
  width: 100%;
  height: 45px;
  border-radius: 6px;
  outline: none;
  border: none;
  background: var(--white);
  font-size: 17px;
  font-family: vazir-light;
  padding: 0 10px;
  box-shadow: 1px 1px 7px #00000030;
  border-right: 4px solid #00d6ab;
  transition: 0.3s;
}

.login-section-form form input:focus {
  box-shadow: 0 0 10px #00ecbd;
}

.login-section-form form input:focus~label {
  top: -12px;
}

.login-section-form form input[type="submit"] {
  width: 304px;
  height: 45px;
  border-radius: 12px;
  font-size: 25px;
  font-family: vazir-regular;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border: none;
  color: white;
  background: linear-gradient(130deg, var(--secondcolor), var(--firstcolor));
  animation: animated-gradient 3s linear infinite;
  background-size: 200% 200%;
  cursor: pointer;
}

/* ------user account------ */
.user-account {
  width: 98%;
  max-width: 1100px;
  /* background-color: #009879; */
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

.user-account-links-back.usernav-content {
  width: 290px;
  display: flex;
  position: relative;
  box-shadow: 0 0 8px #d1d1d1;
}

.user-account-links-back.usernav-content a,
.user-account-links-back.usernav-content .usernav-content-btns {
  padding: 35px 5px;
  color: var(--mainblack);
}

.user-account-links-back.usernav-content a:nth-child(1),
.user-account-links-back.usernav-content a:nth-child(1) .usernav-content-btns {
  padding: 45px 5px;
  cursor: unset;
}

.user-account-links-back.usernav-content a:nth-child(1) p {
  font-size: 15px;
}

.user-account #fa-edit {
  position: absolute;
  left: 0;
  font-size: 20px;
  color: var(--firstcolor);
  cursor: pointer;
}

.user-account-links-back.usernav-content p {
  font-size: 16px;
}

.user-account-content {
  width: 100%;
  max-width: 790px;
  min-height: 300px;
  border-radius: 10px;
  margin: 0 20px;
}

.user-account-notif {
  width: 100%;
  height: 60px;
  border-radius: 10px;
  box-shadow: 0 0 8px #d1d1d1;
  background-color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  font-size: 15px;
  font-family: vazir-light;
  color: #ffae00;
  margin-bottom: 20px;
}

.user-account-notif p {
  display: flex;
  align-items: center;
  justify-content: center;
}

.user-account-notif p i {
  padding-left: 5px;
}

.user-account-notif a {
  color: var(--firstcolor);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.user-account-notif a i {
  padding: 0 5px 0 0;
}

.user-account-tabs-back {
  width: 100%;
  max-width: 790px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 8px #d1d1d1;
  background-color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.user-account-tabs {
  width: 100%;
}

.user-account-tab-show {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  overflow: hidden;
}

.user-account-tab-show div {
  display: flex;
  flex-direction: column;
  font-family: vazir-light;
  padding: 10px 30px;
  border: 1px solid #e7e7e7;
  /* box-shadow: 0 0 3px #252525; */
  position: relative;
}

.fa-edit-btn {
  margin-left: 30px;
  margin-bottom: 0;
}

#fa-edit-btn-a {
  position: absolute;
  bottom: 50%;
  transform: translateY(-50%);
  left: 0;
}

.user-account-tab-show div:nth-child(3) {
  border-top: none;
  border-bottom: none;
}

.user-account-tab-show div:nth-child(4) {
  border-right: none;
  border-top: none;
  border-bottom: none;
}

.user-account-tab-show div:nth-child(2) {
  border-right: none;
}

.user-account-tab-show div:nth-child(6) {
  border-right: none;
}

.user-account-tab-show div h3 {
  font-size: 16px;
  color: var(--firstcolor);
  font-weight: normal;
  padding: 10px 0;
}

.user-account-tab-show div p {
  text-align: left;
}

#user-account-content-links {
  display: none;
  margin-bottom: 20px;
}

.user-account-tab-show div a {
  color: var(--mainblack);
  padding: 20px 0 0 0;
  transition: 0.2s;
}

.user-account-tab-show div a:hover {
  color: #00a2ff;
}

#user-account-tab-show div input {
  border: none;
  background: none;
  width: auto;
  text-align: left;
  font-size: 20px;
  outline: none;
  pointer-events: none;
}

#user-account-tab-edit div {
  border: none;
  border-bottom: 1px solid #e7e7e7;
  min-height: 80px;
}

#user-account-tab-edit div input {
  padding: 10px 15px;
  font-size: 16px;
  font-family: vazir-light;
  border-radius: 10px;
  border: 1px solid #eeeeee;
  outline: none;
  transition: 0.3s;
}

#user-account-tab-edit div input:focus {
  border: 1px solid transparent;
  box-shadow: 0 0 15px 1px var(--secondcolor);
}

#user-account-tab-edit div #user-account-submit {
  font-size: 22px;
  font-family: vazir-light;
  border-radius: 15px;
  width: 250px;
  padding: 10px 0;
  border: none;
  box-shadow: 1px 3px 7px #cccccc;
  background: var(--firstcolor);
  cursor: pointer;
  color: var(--mainwhite);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

#user-account-edit-pass-btn {
  width: 120px;
  font-size: 16px;
  font-family: vazir-light;
  padding: 10px 0;
  background-color: #bdbdbd;
  /* backdrop-filter: blur(3px); */
  position: absolute;
  color: var(--mainwhite);
  left: 50px;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  box-shadow: 1px 3px 7px #cccccc;
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

#user-account-change-pass-back {
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  background-color: #00000050;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.user-account-change-pass {
  min-width: 300px;
  height: auto;
  background-color: var(--mainwhite);
  border-radius: 12px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  z-index: 1;
}

#user-account-change-pass-close {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  left: 0;
  top: 0;
  z-index: 0;
}

#user-account-change-pass-close a {
  padding: 1000px;
  cursor: unset;
}

#user-account-close-btn {
  position: absolute;
  top: 0;
  right: 30px;
  font-size: 35px;
  color: black;
}

#user-account-change-pass-btns {
  display: flex;
  flex-direction: row;
  width: 100%;
}

#user-account-change-pass-btns button,
#user-account-change-pass-btns a {
  width: 120px;
  height: 50px;
  font-family: vazir-light;
  font-size: 17px;
  border: none;
  border-radius: 10px;
  background-color: var(--firstcolor);
  cursor: pointer;
  margin: 0 10px;
  color: var(--mainwhite);
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

#user-account-change-pass-btns a {
  width: 80px;
  background-color: rgb(253, 103, 133);
  font-size: 15px;
}

#user-account-change-pass-back div {
  display: flex;
  flex-direction: column;
  width: 100%;
  font-size: 16px;
  font-family: vazir-light;
  padding: 0;
  margin: 0;
}

#user-account-change-pass-back div input {
  padding: 10px 15px;
  font-size: 16px;
  font-family: vazir-light;
  border-radius: 10px;
  border: 1px solid #cccccc;
  outline: none;
  transition: 0.3s;
  margin: 5px 0;
}

#user-account-change-pass-back div input:focus {
  border: 1px solid transparent;
  box-shadow: 0 0 15px 1px var(--lightblue1);
}

.user-account-change-pass form {
  height: 100%;
  width: 100%;
  position: relative;
  padding: 40px 30px;
}

#user-account-change-pass-back #user-account-change-pass-btns {
  flex-direction: row;
  margin-top: 20px;
}

#user-account-change-pass-back #user-account-close-btn {
  position: absolute;
  top: 5px;
  right: 10px;
  font-size: 20px;
  color: #bbbbbb;
  font-weight: normal;
}

#user-account-id-lang-en i {
  padding-right: 10px;
}

.addresses-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  font-family: vazir-light;
  /* border-bottom: 1px solid #e0e0e0; */
  box-shadow: 0 0 10px #cccccc;
  margin-bottom: 20px;
}

.addresses-title h2 {
  font-family: vazir-regular;
  font-weight: normal;
  font-size: 23px;
}

.addresses-title .add-address-a {
  font-size: 17px;
  padding: 10px 20px;
  border-radius: 10px;
  background-color: transparent;
  border: 1px solid var(--firstcolor);
  color: var(--firstcolor);
}

.addresses-content {
  display: flex;
  flex-direction: column;
  width: 100%;
  justify-content: center;
  gap: 20px;
  align-items: center;
}

.address-div {
  width: 100%;
  padding: 10px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-family: vazir-light;
}

.address-div .address-title {
  font-family: vazir-regular;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.address-div .address-title h3 {
  font-weight: normal;
  color: #414141;
}

.address-div .address-title h3 i {
  color: var(--firstcolor);
  margin-left: 5px;
}

.address-div .address-content {
  /* display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px,.5fr)); */
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  padding: 20px 30px 40px 30px;
  color: #737373;
  border-bottom: 1px solid #e0e0e0;
}

.address-content-div {
  width: 40%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px;
}

.address-content-div h4 {
  font-weight: normal;
}

#address-menu-input {
  opacity: 0;
  pointer-events: none;
}

.address-menu {
  position: relative;
}

.address-menu label {
  overflow: hidden;
  width: 30px;
  cursor: pointer;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.address-menu label:hover {
  background-color: #e4e4e4;
}

.address-menu div {
  display: none;
  position: absolute;
  left: 0;
  width: 220px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 0 10px #cccccc;
  background-color: var(--mainwhite);
  flex-direction: column;
  overflow: hidden;
}

.address-menu div form button,
.address-menu div a {
  width: 100%;
  padding: 12px 15px;
  border: none;
  cursor: pointer;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 16px;
  font-family: vazir-light;
  color: #353535;
}

.address-menu div form button i,
.address-menu div a i {
  margin-left: 10px;
  font-size: 17px;
}

.address-menu div a .fa-edit {
  color: var(--firstcolor);
}

.address-menu div form button .fa-trash {
  color: crimson;
}

.address-menu div form button:hover,
.address-menu div a:hover {
  background-color: #ececec;
}

.address-menu:hover div {
  display: flex;
}

.add-address {
  min-width: 600px;
}

.add-address form div input {
  width: 100%;
}

#user-account-change-pass-back #add-address-city-and-code {
  display: flex;
  flex-direction: row;
  gap: 20px;
}

#add-address-city-and-code input::-webkit-outer-spin-button,
#add-address-city-and-code input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

.add-address form textarea {
  width: 100%;
  height: 150px;
  border-radius: 10px;
  border: 1px solid #cecece;
  resize: none;
  outline: none;
  padding: 10px 15px;
  font-size: 16px;
  font-family: vazir-light;
  margin-top: 5px;
  transition: 0.3s;
}

.add-address form textarea:focus {
  border-color: transparent;
  box-shadow: 0 0 10px #5dffe7;
}

#user-account-change-pass-back #add-address-textarea {
  margin-top: 10px;
}

#add-address-p {
  font-family: vazir-light;
  color: #3e3e3e;
  font-size: 15px;
  margin-bottom: 20px;
}







/* ----  User Account Orders  ----- */
.user-account-orders {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  padding: 20px 15px;
}

.user-account-order {
  width: 100%;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  border: 1px solid #dddddd;
  border-radius: 15px;
  padding: 20px 30px;
  position: relative;
  /* box-shadow:  0 0 10px #d0d0d0; */
}

.user-account-order-information {
  width: 100%;
  display: flex;
  border-bottom: 1px solid #dddddd;
  flex-direction: column;
  padding-bottom: 15px;
}

.user-account-order-information div {
  width: 100%;
  display: flex;
  align-items: center;
}

.order-information-top {
  justify-content: space-between;
  margin-bottom: 20px;
}

.order-information-bottom {
  gap: 20px;
}

.order-information-top h3 {
  font-size: 17px;
  font-family: vazir-extrabold;
  color: #2ec9aa;
  display: flex;
  align-items: center;
  gap: 10px;
}

.order-information-top h3 i {
  font-size: 19px;
  color: #2ec9aa90;
}

.order-information-top h3 i.fa-check-circle {
  color: gold;
}

.order-information-bottom p {
  font-family: vazir-light;
  font-size: 15px;
  color: #a0a0a0;
}

.order-information-bottom p span {
  color: #525252;
  font-weight: bold;
}

#user-account-order-link {
  width: 100%;
  height: 100%;
  /* background-color: #00000020; */
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.user-account-order-product {
  width: 100%;
  display: flex;
  align-items: center;
  margin-top: 20px;
  gap: 20px;

}

.user-account-order-product .order-product {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  border: 1px solid #d8d8d8;
}

.order-product-img {
  width: 100%;
  height: 100%;
}

.order-product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.order-product-num {
  font-size: 10px;
  font-family: vazir-light;
  color: var(--white);
  background-color: #2ec9aa;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 20px;
  height: 20px;
  border-radius: 0 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}


.user-account-single-order .order-information-bottom {
  padding-bottom: 20px;
}

.user-account-single-order .order-information-bottom-border {
  border-bottom: 1px solid #dddddd;
}

.order-information-bottom-padding {
  padding: 20px 0 0 0;
}

.user-account-single-order .user-account-order-information {
  padding-bottom: 0;
}

.user-account-order-code-product {
  border-bottom: 1px solid #dddddd;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.carts-back.order-code-carts-back {
  border: 1px solid #dddddd;
  box-shadow: none;
}

.carts-back.order-code-carts-back .cart {
  border-bottom: 1px solid #dddddd;
  height: 210px;
  padding: 20px 20px;
}

.carts-back.order-code-carts-back .cart .cart-content .cart-title h2 {
  font-size: 17px;
  font-family: vazir-extrabold;
  padding: 0;
  margin: 0;
}

.carts-back.order-code-carts-back .cart .cart-img img {
  height: 80px;
}

.carts-back.order-code-carts-back .cart .cart-content .cart-price h3 {
  font-family: vazir-extrabold;
  font-size: 17px;
}

.carts-back.order-code-carts-back .cart .cart-content i {
  color: #2ec9aa;
}

.carts-back.order-code-carts-back .cart .cart-img #addtocart-number {
  width: 65px;
  border-color: #2ec9aa;
}

.carts-back.order-code-carts-back .cart .cart-img #addtocart-number span {
  border: none;
}

.carts-back.order-code-carts-back .cart .cart-img #addtocart-number span input {
  color: #2ec9aa;
}










/*   ----   CART    ----    */
.cart-section-back {
  width: 99%;
  max-width: 1200px;
  display: flex;
  justify-content: center;
  margin-top: 0px;
}

.carts-div {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 20px;
  padding: 30px 0;
}

.carts-back {
  width: 100%;
  max-width: 850px;
  min-width: 300px;
  height: auto;
  padding: 0 20px;
  background: #ffffff;
  border-radius: 10px;
  /* border: 2px solid #dfdfdf; */
  box-shadow: 0 0 10px #c4c4c4;
}

.carts-bill {
  width: 100%;
  max-width: 300px;
  min-width: 250px;
  height: 320px;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 0 10px #c4c4c4;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.carts-back .cart {
  height: 260px;
  display: flex;
  gap: 20px;
  padding: 30px 40px;
  border-bottom: 2px solid #dfdfdf;
  position: relative;
}

.cart .cart-img {
  width: 20%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.cart .cart-img img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 7px;
}

.cart .cart-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-family: vazir-light;
}

.cart .cart-content .cart-title h2 {
  font-size: 26px;
  margin-top: -10px;
  font-weight: 500;
  font-family: vazir-regular;
}

.cart .cart-content .cart-information p {
  font-size: 15px;
  color: #525252;
  margin: 2px 5px;
}

.cart .cart-content .cart-information p i {
  font-size: 13px;
  color: var(--firstcolor);
  margin: 0 5px;
}

.cart-content .cart-price div {
  display: flex;
  gap: 10px;
}

.carts-bill {
  font-family: vazir-regular;
}

.carts-bill .carts-bill-content {
  display: flex;
  flex-direction: column;
  margin: 0px 20px;
  padding: 10px 0px;
}

.carts-bill .carts-bill-btn {
  display: flex;
  flex-direction: column;
  margin: 0px 20px;
  padding: 10px 0px;
  border-top: 2px solid #dfdfdf;
}

.carts-bill-txt {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #727272;
  margin: 10px 0;
  font-size: 15px;
}

.carts-bill-txt-last {
  color: #636363;
  font-size: 14px;
  font-family: vazir-light;
}

.cart-bill-full-price {
  color: #616161;
  font-size: 15px;
  margin-bottom: 15px;
  font-weight: 600;
  margin-top: 5px;
}

.carts-bill-btn form button {
  width: 100%;
  padding: 10px 0;
  font-family: vazir-regular;
  font-size: 18px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  color: var(--mainwhite);
  background: linear-gradient(145deg, var(--firstcolor), var(--secondcolor));
  transition: 0.3s;
}

.cart-not-product {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 5px;
}

.container-amazing .product {
  width: 260px;
}

.cart-not-product-content {
  width: 100%;
  max-width: 320px;
  background-color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 30px;
  border-radius: 30px;
  box-shadow: 0 10px 20px #00000020;
  padding: 10px 20px;
  font-family: vazir-extrabold;
  height: auto;
  justify-content: space-evenly;
  color: #2c2c2c;
  text-align: center;
  gap: 20px;
}

.cart-not-product-content img {
  object-fit: contain;
  width: 80%;
}

.cart-not-product-content a {
  color: var(--blue);
  font-size: 18px;
  cursor: pointer;
}

.cart-img {
  position: relative;
}

.cart #addtocart-number {
  width: 110px;
  height: 40px;
  font-size: 10px;
  /* margin-bottom: 20px; */
  transform: translate(unset);
  top: unset;
  right: 50%;
  transform: translateX(50%);
  bottom: 5px;

}

.cart-delete {
  background: none;
  border: none;
  font-size: 16px;
  color: rgb(245, 77, 110);
  width: 35px;
  cursor: pointer;
}

#addtocart-number-min-cart.addtocart-number-min {
  padding: 0;
  width: 200px;
  margin: 0;
  cursor: default;
}

#addtocart-number-plus-cart.addtocart-number-plus {
  padding: 0;
  width: 200px;
  margin: 0;
  cursor: default;
  display: flex;
  align-items: center;
  justify-content: center;
}

.number-min-cart {
  background: none;
  border: none;
  font-size: 24px;
  color: #363636;
  width: 100%;
  cursor: pointer;
}

.cart .addtocart-number-num-input {
  pointer-events: none;
}

.cart .addtocart-number-num {
  pointer-events: none;
}

.view-product-cart {
  position: absolute;
  left: 20px;
  bottom: 20px;
}

#view-product-cart {
  position: absolute;
  left: unset;
  right: 20px;
  bottom: 20px;
}

.view-product-cart a {
  font-size: 17px;
  font-family: vazir-light;
  color: #2fb3ff;
  padding: 10px 20px;
}

.view-product-cart a i {
  color: #5fc4ff;
}

#login-user-cart {
  position: relative;
}

.carts-num-rows {
  position: absolute;
  top: -6px;
  right: -7px;
  background-color: var(--secondcolor);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 15px;
  color: var(--mainwhite);
  width: 22px;
  height: 22px;
  font-family: sans-serif;
  padding-left: 2px;
}

/* ----------order---------- */
.continue-order {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.continue-order-back {
  width: 95%;
  max-width: 1200px;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.order-header {
  width: 100%;

  justify-content: center;
  min-height: 150px;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.order-header-top,
.order-header-bottom {
  width: 100%;
  max-width: 900px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.order-header-span {
  width: 100%;
  height: 2px;
  background-color: #d8d8d8;
}

.order-header-div {
  width: auto;
  font-family: vazir-light;
  font-size: 16px;
  margin-top: 10px;
}

.order-header-icon {
  width: 60px;
  height: 25px;
  /* padding: 5px 10px; */
  border-radius: 50%;
  background-color: var(--firstcolor);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 20px;
  font-family: sans-serif;
  color: var(--mainwhite);
  font-size: 15px;
}

.user-checkout-tabs {
  min-width: 500px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--mainwhite);
  border-radius: 15px;
  box-shadow: 3px 5px 10px #b3b3b3;
  margin-bottom: 50px;
}

.checkout-time {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.checkout-time-back {
  width: 60%;
  max-width: 1200px;
  min-width: 700px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}

.checkout-time-address {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-self: center;
  gap: 10px;
  border-radius: 15px;
  box-shadow: 3px 5px 10px #cacaca;
  background: var(--white);
  padding: 20px 20px;
  align-items: center;
}

#radio-checkout-back {
  width: 90%;
  transition: 0.3s;
  font-family: vazir-light;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #e1e1e1;
  padding-bottom: 10px;
}

#radio-checkout-back label {
  cursor: pointer;
  background: #00000050;
  border-radius: 10px;
  width: 100%;
  overflow: hidden;
}

#radio-checkout-back label h2,
#radio-checkout-back label p {
  cursor: pointer;
  /* background: #d81e1e50;    */
  width: 100%;
  padding: 0px 70px 10px 70px;
  transition: 0.3s;
  color: #6c6c6c;
}

#radio-checkout-back label h2 {
  font-size: 19px;
  color: #363636;
  padding: 20px 70px 10px 20px;
}

#radio-checkout-back label h2 i {
  color: var(--firstcolor);
}

#radio-checkout-back input {
  display: none;
}

#radio-checkout-back input:checked~label #radio-checkout-icon i {
  display: flex;
}

#radio-checkout-icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 25px;
  height: 25px;
  background-color: var(--mainwhite);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  margin: 0 20px;
  border: 1px solid #bfbfbf;
}

#radio-checkout-icon i {
  display: none;
  font-size: 19px;
  color: var(--firstcolor);
}

#checkout-time-address-notif {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  background-color: #699bfe30;
  backdrop-filter: blur(8px);
  border-radius: 15px;
  padding: 18px 20px;
  gap: 15px;
  cursor: default;
  transition: .3s;
}

#checkout-time-address-notif p {
  font-family: vazir-light;
  font-size: 15px;
}

#checkout-time-address-notif .fa-exclamation-circle {
  color: #ed4365;
  font-size: 19px;
}


.checkout-time-address-title {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px;
}

.checkout-time-address-title-h {
  text-align: right;
  width: 100%;
  font-family: vazir-extrabold;
  font-weight: normal;
  font-size: 20px;
  color: #414141;
}

.checkout-time-address-title .add-address-a {
  font-family: vazir-light;
  font-size: 18px;
  padding: 13px 0;
  background-color: var(--firstcolor);
  color: var(--mainwhite);
  border-radius: 10px;
  width: 180px;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}

.radio-checkout-back-edit {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #1e9be3;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.checkout-time-side {
  width: 300px;
  height: 100%;
  background-color: var(--mainwhite);
  border-radius: 10px;
  box-shadow: 3px 5px 10px #cacaca;
  padding: 0px 15px;
  font-family: vazir-light;
  display: flex;
  justify-content: center;
  flex-direction: column;
  position: relative;
}

.checkout-time-side-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 5px;
  border-bottom: 1px solid #dddddd;
}

.checkout-time-side-send,
.checkout-time-side-bottom {
  display: flex;
  flex-direction: column;
  gap: 25px;
  padding: 20px 5px;
  border-bottom: 1px solid #dddddd;
}

.checkout-time-side h3 {
  color: #525252;
  font-size: 15px;
}

.checkout-time-side h3 span {
  color: #616161;
  font-size: 14px;
}

.checkout-time-side p {
  text-align: justify;
  color: #5c5c5c;
  font-size: 15px;
}

.checkout-time-side p span {
  /* color: #414141; */
  font-size: 12px;
}

.checkout-time-side-bottom .discount h3,
.checkout-time-side-bottom .discount p {
  color: var(--firstcolor);
}

.checkout-time-side-send div,
.checkout-time-side-bottom div {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.checkout-time-side-btn {
  width: 100%;
}

.checkout-time-side-btn button {
  width: 100%;
  background-color: var(--firstcolor);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 0;
  font-size: 18px;
  font-family: vazir-regular;
  color: var(--mainwhite);
  border-radius: 10px;
  border: none;
  cursor: pointer;
}

.checkout-time-bottom {
  width: 100%;
  height: auto;
  background-color: var(--mainwhite);
  border-radius: 10px;
  box-shadow: 3px 5px 10px #b7b7b7;
  padding: 20px 15px;
  margin-bottom: 30px;
}

.checkout-time-bottom-title {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 10px 20px;
}

.checkout-time-bottom-tilte-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.checkout-time-bottom-tilte-icon i {
  font-size: 30px;
  color: var(--firstcolor);
}

.checkout-time-bottom-tilte-txt {
  font-family: vazir-light;
  color: #585858;
}

.checkout-time-bottom-tilte-txt h1 {
  font-size: 21px;
  color: #353535;
  font-family: vazir-extrabold;
}

.checkout-time-products {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.checkout-time-product {
  width: 100px;
  height: auto;
  border-radius: 10px;
  /* box-shadow:inset 3px 5px 7px #b0b0b0; */
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  overflow: hidden;
  transition: 0.3s;
  /* background-color: var(--bodycolor); */
}

.checkout-time-product-img {
  width: 100px;
  height: 100px;
  overflow: hidden;
  border-radius: 10px;
  position: relative;
  /* box-shadow: 0 0 10px #ffffff; */
}

.checkout-time-product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-filter: grayscale(10%);
  filter: grayscale(10%);
  transition: 0.3s;
}

.checkout-time-product:hover .checkout-time-product-img img {
  -webkit-filter: none;
  transition: 0.3s;
  filter: none;
  transform: scale(1.08);
}

.checkout-time-product-number {
  position: absolute;
  font-family: sans-serif;
  font-size: 13px;
  width: 20px;
  height: 20px;
  border-radius: 0 10px;
  background-color: var(--firstcolor);
  display: flex;
  align-items: center;
  justify-content: center;
  bottom: 0;
  left: 0;
  color: var(--mainwhite);
}

.checkout-time-product-name {
  width: 100%;
}

.checkout-time-product-name p {
  font-family: vazir-light;
  font-size: 12px;
  padding-right: 5px;
  color: #595959;
}

.checkout-time-product-name-price {
  text-align: left;
  font-size: 13px;
  padding-top: 1px;
}

.checkout-time-product-name-price span {
  font-size: 11px;
}

#checkout-shopping-address {
  background-color: var(--firstcolor);
  gap: 10px;
  font-family: vazir-extrabold;
  width: 100%;
  padding: 15px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  border-radius: 15px;
  transition: .3s;
}

#checkout-shopping-address:hover {
  box-shadow: 0 0 20px var(--firstcolor);
}

.back-cart a {
  position: absolute;
  bottom: -10px;
  right: 10px;
  font-size: 15px;
  font-family: vazir-light;
  color: #169ae7;
  padding-bottom: 20px;
}

.back-cart-body {
  position: absolute;
  top: 10px;

  right: 10px;
}

.back-cart-body a {
  color: #00a2ff;
  font-family: vazir-light;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 19px;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 2px solid #00a2ff;
  /* background-color: rgb(244, 114, 140); */
  /* color: var(--mainwhite); */
}

.back-cart-body a:hover~.back-cart-body-notif {
  /* display: flex; */
  opacity: 0.9;
}

.back-cart-body-notif {
  padding: 10px 15px;
  font-family: vazir-light;
  font-size: 14px;
  border-radius: 7px;
  color: var(--mainwhite);
  background-color: var(--mainblack);
  position: relative;
  margin-top: 10px;
  margin-right: 20px;
  pointer-events: none;
  opacity: 0;
  /* display: none; */
  transition: 0.2s;
}

.back-cart-body-notif span {
  width: 0px;
  height: 0px;
  border: 8px solid transparent;
  border-right: 8px solid var(--mainblack);
  position: absolute;
  top: -8px;
  right: 0;
}

.checkout-payment {
  display: flex;
  justify-content: center;
  width: 100%;
  min-width: 1200px;
  gap: 20px;
}

.payment-back {
  width: 60%;
  max-width: 1100px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}

.payment-method {
  width: 100%;
  padding: 30px 20px;
  border-radius: 10px;
  background-color: var(--mainwhite);
  box-shadow: 3px 5px 10px #cccccc;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.payment-method-title {
  display: flex;
  align-items: center;
  font-family: vazir-regular;
  font-size: 19px;
  padding-bottom: 30px;
  /* border-bottom: 1px solid #e1e1e1; */
}

.payment-method-div {
  width: 100%;
}

.payment-method-div {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* gap: 15px; */
  /* background-color: #00000080; */
  align-items: center;
}

.payment-method-div .method {
  width: 95%;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #efeeee;
  padding: 0;
  cursor: pointer;
}

.payment-method-div .method input {
  display: none;
}

.payment-method-div .method label {
  display: flex;
  align-items: center;
  gap: 15px;
  font-family: vazir-light;
  font-size: 18px;
  cursor: pointer;
  color: #4b4b4b;
  width: 100%;
  height: auto;
  padding: 25px 0;
}

.payment-method-div .method label div {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.payment-method-checkbox {
  width: 25px;
  height: 25px;
  border-radius: 5px;
  background-color: transparent;
  border: 1px solid #cacaca;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.payment-method-checkbox i {
  font-size: 15px;
  color: #00a2ff;
  transition: 0.3s;
  display: none;
}

.payment-method-icon i {
  font-size: 32px;
  transition: 0.2s;
  color: #6b6b6b;
}

.payment-method-txt p {
  font-size: 17px;
  font-family: vazir-regular;
}

.payment-method-div .method input:checked~label .payment-method-checkbox i {
  display: unset;
}

.payment-method-div .method input:checked~label .payment-method-checkbox {
  border: 2px solid #00a2ff;
}

.payment-method-div .method input:checked~label .payment-method-icon i {
  color: #00a2ff;
}

/* .payment-method-div .method:last-child {
  border-bottom: none;
  pointer-events: none;
  opacity: 0.6;
}

.payment-method-div .method:last-child p {
  text-decoration-line: line-through;
} */

.payment-discount {
  display: flex;
  align-items: center;
  gap: 5px;
}

.payment-discount input {
  padding: 10px 15px;
  font-size: 18px;
  font-family: vazir-light;
  border-radius: 7px;
  border: 1px solid #d8d8d8;
  outline: none;
  width: 100%;
  max-width: 400px;
  transition: 0.3s;
}

.payment-discount button {
  padding: 0px 15px;
  height: 49px;
  font-size: 18px;
  border-radius: 7px;
  border: 1px solid #d8d8d8;
  outline: none;
  background-color: transparent;
  cursor: pointer;
  transition: 0.3s;
}

.payment-method-full-price {
  margin-top: 30px;
  display: flex;
  font-family: vazir-light;
  font-size: 16px;
  align-items: center;
  gap: 10px;
  color: #5e5e5e;
}

.payment-method-full-price h5 {
  font-weight: normal;
  font-size: 15px;
}

.payment-products {
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

#payment-method-title-card {
  padding-top: 30px;
}

#div-hidden {
  visibility: hidden;
  opacity: 0;
  height: 0;
  position: absolute;
  top: -100%;
}





/* ----------------------------------------- */
/* ---------- START CODES SECTION ---------- */

.codes-section {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin: 30px 0 100px 0;
}

.codes-back {
  width: 95%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.codes-search-div {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  h1{
    font-family: vazir-extrabold;
    font-size: 22px;
    color: var(--fontcolor1);
  }
}

.codes-search-div form {
  width: 100%;
  max-width: 600px;
  border: 1px solid #e7e7e7;
  padding: 5px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background-color: var(--white);
  transition: .3s;
}

.codes-search-div form:hover {
  border-color: var(--secondcolor);
}

.codes-search-div form input {
  font-family: vazir-light;
  font-size: 16px;
  color: var(--mainblack);
  padding: 10px 15px;
  width: 100%;
  border-radius: 30px;
  outline: none;
  border: none;
}

.codes-search-div form button {
  width: 55px;
  height: 50px;
  border-radius: 30px;
  font-size: 20px;
  color: var(--white);
  background-color: var(--firstcolor);
  cursor: pointer;
  border: none;
  transition: .3s;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.codes-search-div form a {
  padding: 0 20px 0 5px;
  border-radius: 30px;
  font-size: 20px;
  color: crimson;
  cursor: pointer;
  border: none;
  transition: .3s;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.codes-search-div form button span {
  font-family: vazir-extrabold;
  visibility: hidden;
  font-size: 15px;
  /* display: none; */
  transition: .3s;
  transform: translateX(-40px);
  opacity: 0;
  width: 0;
}

.codes-search-div form button i {
  transition: .9s;
}

.codes-search-div form button:hover {
  width: 150px;
  box-shadow: 0 7px 10px #699bfe;
  gap: 5px;
}

.codes-search-div form button:hover i {
  animation: codes-search-div-i 1s ease-in-out;
  /* text-shadow: 0 0px 10px var(--white); */
  color: #ffffff90;
}

.codes-search-div form button:hover span {
  visibility: visible;
  transform: translateX(0px);
  opacity: 1;
  width: auto;
}

@keyframes codes-search-div-i {
  0% {
    transform: translateX(-5px);
  }

  50% {
    transform: translateX(10px) rotate(20deg);
  }

  70% {
    transform: translateX(-2px);
  }

  90% {
    transform: translateX(6px);
  }

  100% {
    transform: translateX(0px);
  }
}



.codes-all-back {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, .5fr));
  gap: 20px;
  border-top: 2px dashed #00000020;
  padding-top: 30px;
  margin-top: 20px;
}

.code-div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  height: 100%;
  background-color: var(--white);
  padding: 15px 20px;
  border-radius: 20px 8px 8px 20px;
  /* box-shadow: 0 10px 15px #00000015; */
  cursor: pointer;
  border-right: 5px solid var(--firstcolor);
  /* border: 2px dashed var(--firstcolor); */
  border: 1px solid #00000015;
  border-radius: 15px;
  transition: .3s;
}

.code-div .code-icon i {
  font-size: 22px;
  color: var(--secondcolor);
  /* box-shadow: 0 0 20px var(--firstcolor); */
  border-radius: 50%;
  transition: .3s;
}

#codes-all-back-a-back:hover{
  .code-div.codes-all-code-div{
    .code-icon i {
      color: var(--firstcolor);
    }

    /* transform: scale(1.05); */
    border-color: var(--firstcolor);
  }

}

.code-div .code-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0px;
  height: 100%;
  width: 100%;

  span{
    font-family: vazir-extrabold;
    font-size: 15px;
    color: var(--fontcolor1);
  }
  p#codes-code-content-code-p{
    font-family: vazir-extrabold;
    font-size: 16px;
    text-align: left;
    color: var(--firstcolor);
    margin-top: 10px;
  }
}

.code-div .code-content h1 {
  font-family: vazir-extrabold;
  font-size: 20px;
  color: var(--fontcolor1);
  text-align: justify;
  margin-bottom: 20px;
}

.code-div .code-content h3 {
  font-family: vazir-light;
  font-size: 14px;
  color: #606060;
  margin-top: auto;
  padding-top: 5px;
}

.code-div .code-content h3 span {
  color: var(--firstcolor);
}

.code-div .code-content p {
  font-family: vazir-extrabold;
  font-size: 13px;
  margin-right: auto;
  color: var(--secondcolor);
}

#codes-all-a {
  font-family: vazir-extrabold;
  color: var(--blue);
  margin: 20px 0;
  font-size: 15px;
}

.code-div.code-div-find-search {
  border: 2px dashed #00caa2;
  border-radius: 20px;
  /* box-shadow: 0 0px 30px #00caa270; */
  max-width: 300px;
}

.code-div.code-div-find-search.code-div-find-search-one {
  transform: scale(1.2);
}

.code-div.code-div-find-search i {
  color: var(--white);
  background-color: #00caa2;
  /* box-shadow: 0 0 20px #00caa2; */
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  padding-right: .5px;
}

.code-div.code-div-find-search {
  span{
    font-family: vazir-extrabold;
    font-size: 15px;
    color: var(--fontcolor1);
    text-align: justify;
    line-height: 27px;
    margin-bottom: 10px;
  }
  p {
    color: var(--firstcolor);
    font-size: 16px;
  }
}

.codes-search-find.codes-all-back {
  border: none;
  margin-bottom: 40px;
  margin-top: 30px;
}

.codes-all-back-one.codes-search-find.codes-all-back {
  display: flex;
  align-items: center;
  justify-content: center;
}

.codes-search-unfind {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

}

.codes-search-unfind h1 {
  font-family: vazir-extrabold;
  color: #313131;
}

.codes-search-unfind p {
  color: #313131;
  font-size: 70px;
  animation: codes-search-unfind-p 3s ease-in-out infinite;
  margin-bottom: 20px;
  pointer-events: none;
}

.codes-search-unfind a {
  font-family: vazir-extrabold;
  color: var(--blue);
  font-size: 14px;
  margin-top: 10px;
}

@keyframes codes-search-unfind-p {
  0% {
    transform: rotate(0) translateX(0) scale(1);
  }

  30% {
    transform: rotate(30deg) translateX(20px) scale(1.2);
    margin-right: -100px;
  }

  80% {
    transform: rotate(-30deg) translateX(-20px) scale(1.2);
    margin-right: 100px;
  }

  100% {
    transform: rotate(0) translateX(0) scale(1);
  }
}


.open-code-back {
  width: 100%;
  min-height: 400px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  position: relative;
  z-index: 0;
  top: 0;
  left: 0;
  display: none;
}

.open-code-back.open-code-back-opened {
  display: flex;
}

.open-code-div {
  background: var(--white);
  padding: 15px 20px;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  box-shadow: 0 12px 20px #00000015;
  z-index: 1;
  width: 95%;
  max-width: 1000px;
  height: auto;
  transition: .3s;
  transform: translateY(-40px);
}

.open-code-back.open-code-back-opened .open-code-div {
  transform: translateY(0);
}

.open-code-div .code-div {
  cursor: default;
  width: 100%;
}

.open-code-div .fa-close {
  cursor: pointer;
}

#close-code-back {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  background-color: #00000030;
  backdrop-filter: blur(8px);
  /* z-index: 101; */
  top: 0;
  left: 0;
  opacity: 0;
  transition: .3s;
  cursor: default;
}

.open-code-back.open-code-back-opened #close-code-back {
  opacity: 1;
}

.open-code-div .code-div .code-content h4 {
  font-family: vazir-light;
  font-size: 14px;
  color: #666666;
  margin: 20px 0 10px 0;
  text-align: justify;
  line-height: 30px;
}

#codes-all-back-a-back {
  height: 100%;
}

.open-code-div .code-div .code-content {
  align-items: flex-start;
  justify-content: flex-start;
  padding-left: 10px;
}

.open-code-back.open-code-back-opened .open-code-div .code-div {
  flex-direction: column;
  border-right: none;
  border-top: 8px solid var(--firstcolor);
  border-radius: 10px 10px 20px 20px;
}






#open-code-div-back.open-code-back.open-code-back-opened {

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;

  .codes-search-div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 30px 30px;
    background-color: var(--white);
    border: 1px solid #00000015;
    border-radius: 25px;
    width: 95%;
    max-width: 1000px;

    p {
      font-size: 25px;
      color: var(--firstcolor);
      font-family: vazir-extrabold;
    }
  }

  .open-code-div {
    box-shadow: none;
    border: 1px solid #00000015;
    border-radius: 25px;
  }

  .code-div {
    box-shadow: none;
    border: none;
    padding: 5px 19px 15px 19px;
  }

  .code-content span {
    font-family: vazir-extrabold;
    font-size: 18px;
    color: var(--fontcolor1);
    margin-bottom: 20px;

    span {
      color: var(--fontcolor1);
    }
  }

  #open-code-text-div-id {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
    text-align: justify;

    h2 {
      font-family: vazir-regular;
      font-size: 18px;
      color: var(--firstcolor);

    }

    p {
      font-size: 16px;
      color: var(--fontcolor2);
      font-family: vazir-light;
      line-height: 30px;
      text-align: justify;
      direction: rtl;
      margin: 0;
    }

    a {
      color: var(--blue);
      font-family: vazir-light;
    }

    ul {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      justify-content: center;
      gap: 5px;
      margin: 0 20px;

      li {
        font-family: vazir-light;
        font-size: 15px;
        color: var(--fontcolor2);
      }
    }
  }


}













/*      footer       */

.footer-top {
  position: absolute;
  bottom: 0;
  left: 0;
  margin-bottom: 309px;
  width: 100%;
  height: 130px;
}

.footer-top-animation {
  width: 100%;
  position: relative;
  overflow: hidden;
  height: 130px;
}

.footer-top-animation .wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: url(../images/image--footer.png);
  background-size: 1000px 100px;
}

.footer-top-animation .wave1 {
  animation: animefooter 20s linear infinite;
  z-index: 5;
  opacity: 1;
  animation-delay: 0s;
  bottom: 0;
}

.footer-top-animation .wave2 {
  animation: animefooter2 10s linear infinite;
  z-index: 4;
  opacity: 0.5;
  animation-delay: -5s;
  bottom: 10px;
}

.footer-top-animation .wave3 {
  animation: animefooter 20s linear infinite;
  z-index: 3;
  opacity: 0.2;
  animation-delay: -2s;
  bottom: 15px;
}

.footer-top-animation .wave4 {
  animation: animefooter2 5s linear infinite;
  z-index: 2;
  opacity: 0.7;
  animation-delay: -5s;
  bottom: 20px;
}

@keyframes animefooter {
  0% {
    background-position-x: 0;
  }

  100% {
    background-position-x: 1000px;
  }
}

@keyframes animefooter2 {
  0% {
    background-position-x: 0;
  }

  100% {
    background-position-x: -1000px;
  }
}

.footer {
  width: 100%;
  height: auto;
  background-color: var(--secondcolor);
  position: relative;
  order: 1000;
  bottom: 0;
  display: flex;
  justify-content: center;
  color: #3c3c3c;
  box-shadow: 0 0 100px 30px var(--secondcolor);
}

.back-footer {
  width: 100%;
  display: flex;
  justify-content: space-evenly;
  max-width: 1280px;
  padding: 20px 0;
  height: 100%;
  flex-wrap: wrap;
  margin: 0 10px;
}

.footer-div {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  width: 100%;
  max-width: 400px;
  /* background: var(--mainblack); */
}

.footer-div span {
  font-family: vazir-extrabold;
  font-size: 25px;
  color: var(--fontcolor1);
  text-align: center;
}

.footer-div p {
  font-family: vazir-light;
  font-size: 15px;
  line-height: 30px;
  color: var(--mainblack);
  margin-bottom: 20px;
  text-align: center;
}

.footer-div h1 {
  font-family: vazir-extrabold;
  font-size: 40px;
  color: #000000;
  text-align: center;
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-links a {
  font-size: 17px;
  font-family: vazir-light;
  color: #424242;
  margin: 0 3px;
  transition: 0.3s;
  border: 2px solid transparent;
}

.footer-links a:hover {
  color: var(--firstcolor);
}

#footer-Copyright {
  font-size: 16px;
  color: #ffffff;
  font-family: sans-serif;
  margin: 20px 0;
}

#footer-Copyright a {
  color: #424767;
}

.footer-links span {
  width: 2px;
  height: 20px;
  background: #00000050;
  margin: 0 5px;
  border-radius: 20px;
  opacity: 0.7;
}

#footer-m {
  width: 250px;
}

#footer-m div a {
  display: flex;
  align-items: center;
  color: #3e3e3e;
  font-size: 18px;
  font-family: vazir-light;
  cursor: pointer;
  transition: 0.3s;
}

#footer-m div a:hover {
  color: var(--firstcolor);
}

#footer-m div a:hover i {
  box-shadow: 0 0 20px var(--secondcolor);
}

#footer-m div a i,
.footer-socialmedia i {
  font-size: 25px;
  width: 50px;
  height: 50px;
  background-color: #ffffff70;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 30px;
  color: var(--firstcolor);
}

#footer-m div a p:nth-child(1) {
  font-size: 20px;
}

#footer-m div a p:nth-child(2) {
  font-size: 15px;
}

.footer-div h2 {
  font-size: 32px;
  font-family: vazir-regular;
  color: var(--secondcolor);
}

.footer-socialmedia {
  display: flex;
}

.footer-socialmedia a {
  cursor: pointer;
  transition: 0.3s;
}

.footer-socialmedia i {
  border-radius: 15px;
  margin: 0 15px;
  color: var(--secondcolor);

}

.footer-socialmedia a:hover {
  color: var(--firstcolor);
}

.footer-socialmedia a:hover i {
  box-shadow: 0 0 20px var(--secondcolor);
}

.footer-div h1 span {
  color: var(--firstcolor);
}

#footer-l p {
  font-size: 15px;
  text-align: justify;
  text-justify: inter-word;
  font-family: vazir-light;
}

/* ------learn------ */
.learn,
.service {
  height: 100vh;
  margin-bottom: 450px;
}

/* ------language------ */
#lang-div {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: flex-end;
  background: transparent;
}

#lang-div a {
  color: var(--mainblack);
  opacity: 0.7;
  font-size: 17px;
  font-family: vazir-light;
  line-height: 35px;
  margin-bottom: -5px;
}

#lang-div a:hover {
  color: var(--firstcolor);
}

#footer {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-lang {
  display: none;
  width: 100%;
  background: var(--mainblack);
  padding: 3px;
  font-size: 16px;
  font-family: vazir-light;
  display: flex;
  justify-content: center;
}

.footer-lang a {
  padding: 0 10px;
  color: #5f5f5f;
}

.footer-lang a:hover {
  color: var(--firstcolor);
}

/* ------------------media */
@media screen and (max-width: 1150px) {

  .home,
  .about,
  .gallery,
  .single-product,
  .contact,
  .store {
    margin-top: 100px;
  }

  .blog-content-back,
  .blog-content-back.home {
    margin-top: 0;
  }

  .codes-section {
    margin-top: 140px;
    margin-bottom: 100px;
  }

  .user-account {
    margin-top: 0;
  }

  .menu-icon {
    position: relative;
    margin-left: -15px;
    /* margin-top: -5px; */
  }

  .navbar-middle-title-div-phone .navbar-middle-link {
    position: relative;
  }

  .navbar {
    position: fixed;
  }

  #navbar-back-indesktop {
    display: none;
  }

  #navbar-back-inphone {
    display: flex;
  }

  /* .usernav-btn{margin-right: ;} */

  /* .navbar-down .navbar-middle-title-div-phone{
    padding: 6px 0 0 0;
  } */
  #phone-bottom-form {
    transition: .4s;
  }

  .navbar-down #phone-bottom-form {

    opacity: 0;
    visibility: hidden;
  }

  .navbar-bottom {
    display: none;
  }

  .navbar {
    /* min-height: 100px; */
    height: auto;
    position: fixed;
    /* padding: 10px 0px; */
  }

  .navbar-down {
    min-height: unset;
    height: auto;
  }

  .navbar-down .navbar-middle {
    margin-top: 2px;
  }

  .blog-content {
    margin-top: 100px;
  }

  .blog-home {
    margin-top: 100px;
    margin-bottom: -80px;
  }
}

@media screen and (max-width: 1099px) {
  .home-article {
    height: 1000px;
  }
}

@media screen and (max-width: 1070px) {
  .footer {
    height: 550px;
  }

  .footer-div {
    margin: 20px 10px;
    min-height: 200px;
  }

  .footer-top {
    margin-bottom: 549px;
  }

  .home,
  .about,
  .learn,
  .single-product,
  .gallery,
  .contact,
  .service,
  .store {
    margin-bottom: 100px;
  }

  #footer-r {
    order: 3;
  }

  #footer-m {
    order: 2;
  }

  #footer-l {
    order: 1;
  }

  #footer-Copyright {
    text-align: center;
  }

  .user-account-links {
    display: none;
  }

  #user-account-content-links {
    display: flex;
    width: 100%;
  }

  .user-account-content {
    width: 100%;
    max-width: none;
    min-height: none;
    border-radius: 10px;
    margin: 0 20px;
  }

  .user-account-links-back.usernav-content {
    width: 100%;
    margin-top: 20px;
  }

  .user-account-tabs-back {
    max-width: none;
  }

  .user-account-tab-show {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(430px, 1fr));
    overflow: hidden;
  }

  .user-account-notif {
    height: auto;
    padding: 10px 15px;
    flex-wrap: wrap;
    margin-bottom: 20px;
  }

  .user-account-notif p {
    min-width: 200px;
    text-align: justify;
    line-height: 30px;
  }

  .user-account-notif p i {
    padding-left: 10px;
  }

  .user-account-notif a {
    min-width: 100px;
    margin-right: 20px;
    padding: 10px 0 10px 0;
  }

  .img-slider {
    flex-wrap: wrap;
    height: auto;

  }

  #img-slider-side-back {
    flex-direction: row;
    width: 100%;
    max-height: 200px;
    order: 1;
    overflow: hidden;
  }

  .img-slider-side {
    width: 100%;
    min-width: 200px;
    height: 100%;
    max-height: 200px;
    overflow: hidden;
    object-fit: cover;
  }

  /* single page */
  .top-product {
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
  }

  .img-product {
    width: 70%;
    max-width: none;
  }

  .content-product {
    min-width: 60%;
    max-width: 430px;
  }

  .addtocart {
    min-width: 240px;
    width: 35%;
    max-width: none;
  }


  .img-slider-div-back {
    gap: 20px;
  }















}


@media screen and (max-width: 950px) {



  /* .navbar-middle-title-div.navbar-middle-title-div-desktop,.navbar-middle-link.navbar-middle-link-desktop{
    display: none;
  } */


  #index-circle {
    display: none;
  }

  .option-products {
    width: 95%;
  }


  .single-product {
    margin-top: 110px;
  }

  /* .navbar-middle-link {
    display: none;
  } */




  .second-gallery {
    display: none;
  }

  .back-gallery {
    margin: 0 20px;
  }

  .first-gallery-right,
  .first-gallery-middle,
  .first-gallery-left {
    width: 100%;
    max-width: 300px;
    height: auto;
  }

  .first-gallery-middle img {
    height: auto;
  }

  .first-gallery-right-bottom img {
    display: none;
  }

  .user-account-tab-show div {
    border: none;
    border-bottom: 1px solid #e7e7e7;
    min-height: 90px;
  }

  .user-account-tab-show div:nth-child(3) {
    border-top: none;
    border-bottom: 1px solid #e7e7e7;
  }

  .user-account-tab-show div:nth-child(4) {
    border-right: none;
    border-top: none;
  }

  .user-account-tab-show div:nth-child(2) {
    border-right: none;
  }

  .carts-div {
    flex-direction: column;
  }

  .carts-back {
    max-width: none;
  }

  .carts-bill {
    width: 100%;
    max-width: none;
  }

  .cart-img {
    min-width: 100px;
  }

  #img-slider-back {
    width: 100%;
    /* height: 300px; */
  }

  .img-slider {
    height: auto;
    padding-bottom: 0px;
  }

  .img-slider-navigation {
    height: 300px;
    min-height: 0;
  }

  .img-slider .prev-btn,
  .img-slider .next-btn {
    opacity: 1;
  }

  .img-slider span {
    opacity: 1;
  }

  .select-img-product .image {
    display: flex;
    width: 20%;
  }

  .navbar-middle-title-div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
  }

  .container-amazing {
    width: 100%;
    border-radius: 0;
  }

  .container-arrow {
    margin: 0 10px;
  }

  #contact-us-section {
    padding: 0 20px;
  }

  .contact-us-section-back {
    flex-direction: column;
  }

  .contact-us-img {
    order: -1;
    min-height: 0;
    max-width: 600px;

  }

  .contact-us-contnet {
    width: 100%;
    padding: 0;
    max-width: 600px;
  }

  .contact-us-contnet-title {
    display: none;
  }

  #contact-us-img-title {
    display: block;
  }

  .contact-us-img-back {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
  }

  .contact-us-img-back img {
    max-width: 400px;
  }

  #contact-us-content-link-back {
    display: flex;
  }

  .contact-us-img-link-back {
    display: none;
  }

  .option-product-back {
    width: 100%;
    justify-content: flex-start;
    gap: 5%;
    padding: 0 auto;
  }

  .option-product {
    width: 20%;
    height: 90px;
    border-radius: 20px;
    padding: 5px 0;
  }

  .img-slider-div-back {
    flex-direction: column;
  }

  #pages-banner {
    width: 60%;
    height: 70vh;
  }

  @keyframes pages-banner {
    0% {
      width: 0%;
      height: 0vh;
    }

    100% {
      width: 60%;
      height: 70vh;
    }
  }

  .img-slider-back {
    order: 1;
  }

  .home-content-div {
    order: -1;
    margin-top: 80px;
  }

  .banner-short {
    height: 150px;
  }

  .banner-short-link {
    position: absolute;
    top: 20px;
    left: 20px;
  }

  .banner-short-back {
    padding: 10px 20px;
    flex-direction: column;
    position: relative;
    align-items: flex-start;
  }

  .banner-short-title h2 {
    font-size: 22px;
  }

  .banner-short-title i {
    font-size: 25px;
  }

  .back-store {
    flex-direction: column;
    padding: 20px 30px 20px 30px;
  }

  .store-filter-section {
    position: relative;
    width: 100%;
    right: unset;
    margin-bottom: 10px;
    min-height: unset;
    background-color: transparent;
    border: none;
    gap: 5px;
    padding-top: 0;
  }

  .products-back-link {
    display: none;
  }

  .store-filter-section .filter-title {
    display: none;
  }

  .blog-content {
    flex-direction: column;
    align-items: center;
  }

  .aside {
    width: 100%;
    min-height: 0;
    margin-top: 20px;
  }

  .blog-content-back {
    min-width: 0;
  }

  .blog-content {
    padding: 0 10px;
  }

  #blog-content-single .blog-content-div-img {
    min-height: 0;
  }

  .blog-content-back,
  .blog-content-back.home {
    min-height: 0;
    margin-bottom: 0;
    padding-bottom: 0;
  }
}


@media screen and (max-width: 710px) {
  .footer {
    height: 800px;
  }

  .codes-section {
    margin-top: 140px;
    margin-bottom: 100px;
  }

  .codes-all-back {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .code-div.code-div-find-search {
    max-width: unset;
  }

  .code-div .code-content {
    width: 100%;
  }

  .navbar {
    height: 77px;
  }

  #navbar-middle-title-div-a {
    font-size: 25px;
  }

  .navbar-back {
    width: 100%;
  }

  .navbar-middle-link span {
    margin: 0 0 0 10px;
  }

  .navbar-middle {
    padding: 15px 20px 15px 10px;
  }

  .navbar-down {
    height: 77px;
  }

  .footer-div {
    margin: 20px 10px;
    min-height: 200px;
  }

  .footer-top {
    margin-bottom: 799px;
  }

  #footer-m {
    width: 100%;
    margin-right: -50px;
  }

  .carts-back .cart {
    height: auto;
    padding-bottom: 50px;
    flex-direction: column;
  }

  #addtocart-number {
    position: relative;
  }

  .cart .cart-img img {
    object-fit: contain;
  }

  .cart .cart-content .cart-title h2 {
    font-size: 17px;
    font-family: vazir-extrabold;
  }

  .cart .cart-img {
    width: 90%;
    margin: 0 auto;
  }

  .cart .cart-content .cart-information p {
    font-size: 14px;
  }

  .cart .cart-content .cart-value h3 {
    font-size: 15px;
    color: var(--firstcolor);
    font-family: vazir-extrabold;
  }

  .cart-price p {
    font-size: 14px;
  }

  .cart #addtocart-number {
    width: 230px;
  }

  .checkout-time {
    flex-direction: column;
  }

  .checkout-time-back {
    min-width: 100%;
  }

  #continue-order form {
    width: 90%;
    padding: 30px 0 20px 0;
  }

  .order-header-icon {
    margin: 0;
  }

  .checkout-time-address,
  .checkout-time-bottom {
    box-shadow: 0 10px 15px #00000015;
  }

  .checkout-time-side {
    width: 100%;
  }

  .checkout-payment {
    flex-direction: column;
    min-width: 100%;
  }

  .payment-back {
    width: 100%;
  }

  .add-address {
    min-width: 90%;
  }

  .user-account-change-pass form {
    padding: 40px 15px 10px 15px;
  }

  .checkout-time-address-title .add-address-a {
    font-size: 15px;
  }

  .checkout-time-address {
    padding: 10px 15px;
  }

  #radio-checkout-back label h2 {
    padding-bottom: 40px;
  }

  .checkout-time-address-title-h {
    font-size: 16px;
  }

  #radio-checkout-back {
    width: 100%;
  }



  .home,
  .about,
  .single-product,
  .learn,
  .gallery,
  .contact,
  .service,
  .store {
    margin-bottom: 100px;
  }

  .footer-links {
    flex-wrap: wrap;
  }

  #footer-Copyright {
    font-size: 15px;
  }

  /* single page */
  .top-product {
    flex-direction: column;
    align-items: center;
    flex-wrap: nowrap;
  }

  .img-product {
    width: 100%;
    max-width: none;
  }

  .content-product {
    min-width: 100%;
  }

  .addtocart {
    min-width: none;
    width: 100%;
    max-width: none;
  }

  .product-feature-back {
    flex-direction: column;
    align-items: center;
  }

  .product-feature-div {
    width: 100%;
    justify-content: space-evenly;
  }

  #contact-us-section {
    padding: 0 0px;
  }

  .contact-us-section-back {
    width: 100%;
  }

  .contact-us-contnet-form-name div {
    flex-direction: column;
    width: 100%;
  }

  .contact-us-contnet-form-name {
    width: 100%;
  }

  .contact-us-contnet-form form input {
    width: 100%;
    min-width: 100%;
  }

  .contact-us-location-div iframe {
    max-height: 500px;
    margin-bottom: auto;
  }

  .contact-us-section-back {
    padding: 20px;
  }

  .contact-us-contnet-form form {
    padding: 0 10px;
  }

  .contact-us-location-div iframe {
    max-height: unset;
  }

  .about-us-top,
  .about-us-services {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }

  .about-us-services-img {
    order: -1;
    margin-bottom: 20px;
  }

  .about-us-top-img img {
    max-width: 500px;
  }

  .about-us-company-information {
    width: 95%;
    padding: 20px 15px;
  }

  .products {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    padding: 0;
  }

  .products .content-div h4 {
    font-size: 14px;
  }

  .back-store {
    padding: 10px 15px 10px 15px;
  }

  .store-filter-section {
    padding: 0 10px;
  }
}

@media screen and (max-width: 920px),
(min-width: 450px) {

  /* .navbar-open-menu .navbar-middle-title-div img {
    opacity: 0;
    width: 30px;
  }

  .phone-navbar {
    margin-top: -6px;
  }

  .navbar-middle-title-div img {
    width: 70px;
  } */
  .navbar-middle-title-div-phone-bottom form {
    padding: 0;
  }

  .img-slide-info-div a {
    width: 140px;
  }
}

@media screen and (max-width: 450px) {

  /* .navbar-middle {
    margin-right: 15px;
  } */
  /* 
  .navbar-middle-title-div img {
    display: none;
  } */
  .add-comment-nouser {
    flex-wrap: wrap;
    justify-content: center;
  }

  .add-comment-nouser p {
    text-align: center;
    padding: 0;
  }

  form.add-comment-nouser {
    border-radius: 30px;
  }

  .comments-back {
    /* width: 100%; */
    align-items: center;
    margin: 0 auto;
  }

  .codes-search-unfind h1 {
    text-align: center;
  }

  .navbar-middle-title-div h1 {
    font-size: 20px;
  }

  .back-footer {
    flex-wrap: wrap;
    height: auto;
    align-items: center;
  }

  #products-home {
    padding: 20px 15px;
    padding-top: 70px;
    border-right: none;
    border-left: none;

  }

  #products-home .products-home-title {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  #products-home .products-home-title h1 {
    font-size: 25px;
  }

  .footer-lmr {
    margin: 10px 0;
    min-width: 160px;
  }

  /* .footer{height: auto;} */
  /* .home,.about,.gallery,.contact,.store{
        margin-bottom: 500px;
    } */
  .footer-l {
    margin-top: -70px;
  }

  .footer-title-flwus h2 {
    font-size: 19px;
    margin-right: 24px;
    opacity: 0.8;
  }

  .categorie-name p {
    font-size: 16px;
    color: var(--firstcolor);
  }

  .categorie-name h3 {
    font-size: 16px;
    color: var(--firstcolor);
  }

  .navbar-middle-title-div.navbar-middle-title-div-desktop a {
    font-size: 25px;
    color: var(--firstcolor);
    text-shadow: none;
  }

  .user-account-tab-show {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    overflow: hidden;
  }

  .img-slider {
    flex-wrap: wrap;
    height: auto;

  }

  #img-slider-side-back {
    flex-direction: row;
    width: 100%;
    max-height: none;
    order: 1;
    overflow: hidden;
    /* flex-wrap: wrap; */
  }

  .img-slider-side {
    width: 100%;
    min-width: 100px;
    height: 100%;
    max-height: none;
    overflow: hidden;
    object-fit: cover;
  }

  /* .option-product {
    min-width: 100px;
    width: 40%;
  } */
  .option-product-icon img {
    /* height: 100%; */
    max-width: 40px;
  }

  .option-product h2 {
    font-family: vazir-light;
    font-weight: 400;
    font-size: 10px;
    color: rgb(51, 51, 51);
    pointer-events: none;
    margin-top: 10px;
  }

  .img-product {
    max-height: 250px;
  }

  .img-product-selected img {
    max-height: 170px;
  }

  .select-img-product {
    align-items: center;
    justify-content: center;
  }

  .select-img-product .image {
    width: 20%;
    height: 60px;
  }

  .addtocart-footer-back-phone {
    display: flex;
  }

  #addtocart-footer-back.addtocart-footer-back-phone {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--mainwhite);
    z-index: 10;
    box-shadow: 0 0 8px #18181810;
    border-radius: 12px 12px 0 0;
    height: 80px;
    padding: 0;
    /* background-color: rgb(240, 240, 240); */
    display: flex;
    align-items: center;
    flex-direction: column;
    /* border-top: 2px dashed #aaa; */
  }

  #addtocart-footer-back.addtocart-footer-back-phone #addtocart-footer-back-store {
    display: none;
  }

  #addtocart-footer-back.addtocart-footer-back-phone #addtocart-footer {
    border: none;
    margin: 0;
    gap: 0;
    order: 1;
    width: 35%;
  }

  #addtocart-footer-back.addtocart-footer-back-phone form {
    display: flex;
    flex-direction: row;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    margin: 0;
    padding: 0 10px;
  }

  #addtocart-footer-back.addtocart-footer-back-phone #addtocart-number {
    display: none;
  }

  #addtocart-footer-back.addtocart-footer-back-phone button {
    height: 50px;
    width: 60%;
    order: 0;
  }

  #addtocart-footer-back.addtocart-footer-back-phone .addtocart-full-price {
    width: 80%;
    min-width: none;
  }

  #addtocart-footer-back.addtocart-footer-back-phone .addtocart {
    height: auto;
  }

  .addtocart-footer-back-phone button {
    width: 100%;
    height: 55px;
    border: none;
    background: linear-gradient(130deg,
        var(--secondcolor),
        var(--firstcolor));
    font-family: vazir-regular;
    color: var(--mainwhite);
    border-radius: 10px;
    font-size: 16px;
    cursor: pointer;
    /* box-shadow: 0 0 5px var(--firstcolor),0 0 10px var(--secondcolor); */

  }

  .addtocart-footer-back-phone div {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: vazir-light;
  }

  .container-arrow {
    display: none;
  }

  .home-content-div-back h1 {
    font-size: 26px;
    line-height: 45px;
  }

  .home-content-div-back p {
    font-size: 15px;
  }

  .img-slider .img-slide img {
    width: 98%;
  }

  .banner-short-title h2 {
    font-size: 20px;
  }

  .banner-short-link a {
    padding: 10px 10px;
    font-size: 13px;
  }

  .categorie-img {
    width: 100px;
  }

  .categories-div .categorie {
    width: 110px;
  }

  /* .blog-content-div-img{
    height: 230px;
    max-width: unset;
  } */
}

@media (max-width: 400px) {
  .products {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    align-items: center;
    justify-content: center;
    padding: 0 auto;
    margin: 0 auto;
  }

  .blog-content-div-img {
    height: auto;
  }

  .blog-content-div {
    flex-direction: column;
  }
}




/*      Fonts        */
@font-face {
  font-family: vazir-regular;
  src: url(../fonts/vazir/Vazirmatn-Regular.ttf);
}

@font-face {
  font-family: vazir-light;
  src: url(../fonts/vazir/Vazirmatn-Light.ttf);
}

@font-face {
  font-family: vazir-extrabold;
  src: url(../fonts/vazir/Vazirmatn-ExtraBold.ttf);
}

/* ------ Admin Section ------ */
#admin-body {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  min-height: 100vh;
  background-color: var(--bodyblack);
}

#Admin-body .single-product {
  margin: 0px 0;
  padding: 40px 0;
  border-bottom: 5px solid var(--firstcolor);
  background-color: #eeeeee;
}

.admin-content {
  width: 100%;
  min-height: 100vh;
  padding: 90px 320px 50px 20px;
  background-color: var(--bodycolor);
  display: flex;
  flex-direction: column;
  align-items: center;
  /* justify-content: center; */
}

.admin-content-back {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

#showedit-section {
  padding: 0;
  position: relative;
  /* background-color: #00000015; */
}

#showedit-back-link {
  font-family: vazir-light;
  font-size: 17px;
  color: var(--firstcolor);
  position: absolute;
  left: 20px;
  top: 20px;
  padding: 12px 15px;
  border-radius: 10px;
  background-color: #6782b430;
}

#showedit-section .admin-add-product-title {
  margin: 20px 30px;
  padding-right: 50px;
}



/* START ADMIN MENU */

#admin-menu {
  width: 300px;
  height: 100%;
  min-height: 100vh;
  overflow: hidden;
  overflow-y: auto;
  background-color: #111827;
  color: var(--white);
  /* padding-top: 4400px; */
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
}

.admin-menu .admin-menu-title a {
  font-family: vazir-regular;
  font-size: 16px;
  color: var(--white);
  width: 100%;
  text-align: center;
  line-height: 100px;
  text-shadow: 0 0 20px #b3b5f1, 0 0 15px #8689ec, 0 0 10px #686ce0, 0 0 5px #4c50cc;
}

.admin-menu-ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  /* gap: 10px; */
}

.admin-menu-ul li {
  width: 100%;
  min-height: 70px;
  /* border-top: 1px solid #e9e9e920; */
  /* background-color: var(--blue); */
  position: relative;
}

/* .admin-menu-ul li::before{
  content: '';
  position: absolute;
  left: -17px;
  top: 50%;
  width: 30px;
  height: 30px;
  background-color: #fcfcfc;
  transform: translateY(-50%) rotate(45deg);
  border-radius: 7px;
} */
/* .admin-menu-ul li::after{
  content: '';
  position: absolute;
  left: 0px;
  top: 10px;
  width: 10px;
  height: 10px;
  transform: rotate(45deg);
  border-radius: 15px;
  border-bottom: 20px solid #fcfcfc;
  border-left: 10px solid #fcfcfc;
} */



#admin-menu-ul-a {
  width: 100%;
  padding: 0px 20px;
  height: 70px;
  color: #e0e0e0;
  font-family: vazir-light;
  font-size: 20px;
  /* background-color: var(--lightblue2); */
  position: absolute;
  display: flex;
  align-items: center;
  gap: 20px;
  border-right: 5px solid transparent;
  border-left: 5px solid #111827;
  border-radius: 5px;
  transition: .3s;
  cursor: pointer;
}

#admin-menu-ul-a:hover {
  gap: 30px;
  border-right: 5px solid #3071e7;
  border-radius: 5px;
  background-color: #242d41;
  color: #b8c6e7;
}

#admin-menu-ul-a i {
  transition: margin .3s, transform .7s;
}

#admin-menu-ul-a:hover i {
  margin-right: 10px;
  /* transform: rotate(-360deg); */
}

.admin-menu-ul-div {
  background-color: #2a3244;
  margin: 10px 15px;
  margin-top: 80px;
  border-radius: 7px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 1;
  overflow: hidden;
}

.admin-menu-ul-div::before {
  content: '';
  position: absolute;
  width: 15px;
  height: 15px;
  border-radius: 3px;
  transform: rotate(45deg);
  top: -7px;
  right: 15px;
  z-index: -1;
  background-color: #2a3244;
}

.admin-menu-ul-div a {
  font-family: vazir-light;
  color: #dee8f7;
  font-size: 16px;
  width: 100%;
  line-height: 50px;
  padding: 0 25px 0 0;
  transition: .3s;
}

.admin-menu-ul-div a:hover {
  background-color: #404b61;
  padding: 0 35px 0 0;
}

.admin-menu-ul-div {
  height: 0;
  margin: 0;
  transition: .3s;
}

.admin-menu-a-contact-open~.admin-menu-ul-div {
  height: auto;
  margin: 10px 15px;
  margin-top: 80px;
}

#admin-menu-ul-a .fa-caret-left {
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  transition: .3s;
  color: #56627a;
}

#admin-menu-ul-a.admin-menu-a-contact-open .fa-caret-left {
  transform: translateY(-50%) rotate(-90deg);

}




.admin-nav {
  width: 100%;
  height: 70px;
  background-color: var(--navcolor);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 30px;
  gap: 20px;
  position: fixed;
  z-index: 99;
  box-shadow: 0 0 10px #00000035;
  border-bottom: 3px solid #556280;
}

.admin-nav-user .admin-nav-user-btn {
  border-radius: 50%;
  width: 40px;
  height: 40px;
  overflow: hidden;
  cursor: pointer;
  background-color: var(--white);
}

.admin-nav-user .admin-nav-user-btn img {
  width: 103%;
  height: 103%;
  object-fit: cover;
}

.admin-nav-notif-btn {
  border-radius: 50%;
  width: 40px;
  height: 40px;
  overflow: hidden;
  border: 1px solid #d6d6d6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #494949;
  cursor: pointer;
}

.admin-nav-notif-btn a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  color: #494949;
  justify-content: center;
}

.admin-nav-div {
  position: relative;
}

.admin-nav-div-child-back {
  min-width: 250px;
  min-height: auto;
  left: -40px;
  padding: 15px 20px 0 20px;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 130%;
  transition: .4s;

}

.admin-nav-div-child-back ul {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;

}

.admin-nav-div-child-back ul li {
  width: 100%;
  height: auto;
  list-style: none;
}

.admin-nav-div-child-back ul li a {
  width: 100%;
  margin: 0 auto;
  height: 55px;
  display: flex;
  align-items: center;
  padding: 0 20px;
  font-family: vazir-light;
  font-size: 14px;
  justify-content: flex-end;
  color: #565656;
  transition: .3s;
  border-bottom: 1px solid #f6f6f6;
}

.admin-nav-div-child-back ul li:last-child a.admin-nav-div-last-child-a {
  border-bottom: 1px solid transparent;
  background-color: #f8f8f8;
  color: crimson;
}

.admin-nav-div-child-back ul li a i {
  font-size: 19px;
  width: 35px;
  padding-left: 10px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  transition: .3s;
}

.admin-nav-div-child-back ul li a:hover {
  background-color: #f8f8f8;
  padding-right: 25px;
}

.admin-nav-div-child-back ul li a:hover i {
  width: 40px;
}

.admin-nav-div-child {
  width: 100%;
  height: auto;
  min-height: 100px;
  border-radius: 15px;
  background-color: var(--white);
  box-shadow: 1px 3px 15px 2px #cecece;
  overflow: hidden;
}

.admin-nav-div-child::before {
  content: '';
  width: 15px;
  height: 15px;
  border-radius: 3px;
  position: absolute;
  top: 9px;
  left: 53px;
  background-color: var(--white);
  transform: rotate(45deg);
  z-index: -1;
}

.admin-nav-div:hover .admin-nav-div-child-back {
  opacity: 1;
  visibility: visible;
  top: 100%;

}



#admin-menu::-webkit-scrollbar {
  width: 12px;
}

#admin-menu::-webkit-scrollbar-track {
  background-color: #111827;
}

#admin-menu::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background-color: #111827;
  box-shadow: none;
  cursor: pointer;
}

#admin-menu:hover::-webkit-scrollbar-thumb {
  background-color: #343d52;
}

#admin-body::-webkit-scrollbar {
  width: 12px;
}

#admin-body::-webkit-scrollbar-track {
  background-color: #24273a;
}

#admin-body::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: var(--purple);
  box-shadow: none;
  cursor: pointer;
}


/* --------- admin content -------- */
.admin-content {
  width: 100%;
  min-height: 100vh;
  padding: 90px 320px 50px 20px;
  background-color: var(--bodycolor);
  position: absolute;
  top: 0;
  right: 0;
}

.admin-content-back {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.admin-content-title h1 {
  font-family: vazir-extrabold;
  font-size: 30px;
  color: #353535;
}

#admin-content-title-slider h1 {
  font-size: 20px;
  color: #5d5d5d;
}

.admin-dashboard-header {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.admin-dashboard-header-link {
  height: 150px;
  background-color: var(--white);
  border-radius: 15px;
  box-shadow: 0 0 15px 1px #d0d0d0;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10%;
}

.admin-dashboard-header-link .header-link-img img {
  width: 100px;
}

.admin-dashboard-header-link .header-link-contnet {
  font-family: vazir-light;
  font-size: 20px;
  color: #2c2c2c;
}

.admin-dashboard-header-link .header-link-contnet p {
  font-family: vazir-light;
  font-size: 16px;
  color: #6a6a6a;
  margin-top: -5px;
}

#contact-admin-link-sort {
  margin: -10px 20px -20px 0;
}

.product-list-back-link-sort#contact-admin-link-sort {
  width: 100%;
  margin: 0px 40px 20px 0;
  position: relative;
}

.product-list-back-link-classification#contact-admin-link-sort {
  width: 100%;
  margin: 20px 40px 20px 0;
  position: relative;
}

.product-list-back-link-classification#contact-admin-link-sort a {
  font-size: 15px;
  color: #323232;
  padding: 0 25px;
  border-left: 1px solid rgb(227, 227, 227);
}

.product-list-back-link-classification#contact-admin-link-sort p {
  font-size: 16px;
  color: #222222;
}

.product-list-back-link-classification#contact-admin-link-sort .products-back-link-sort-div {
  gap: 20px 0px;
  flex-wrap: wrap;
}

#contact-admin-link-sort a {
  font-family: vazir-light;
  font-size: 17px;
  color: #3d4b70;
}

.admin-dashboard-table {
  width: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 15px 15px 7px 7px;
  background-color: var(--white);
  box-shadow: 0 0 15px 1px #d0d0d0;
  min-height: 400px;
  overflow: hidden;
  border-bottom: 5px solid #3a4764;
}

.admin-dashboard-table-header {
  width: 100%;
  display: flex;
  height: 80px;
  border-bottom: 1px solid #e1e1e1;
  background-color: #3a4764;
  padding: 0 30px;
  align-items: center;
  gap: 20px;
}

.admin-dashboard-table-header div {
  border-left: 1px solid #e6e6e6;
  font-family: vazir-light;
  font-size: 17px;
  color: #f0f0f0;
  padding: 5px 0;
}

.admin-dashboard-table-header div:last-child {
  border-left: 1px solid transparent;
}

#admin-list-search-form {
  display: flex;
  align-items: center;
  gap: 10px;
}

#admin-list-search-form input {
  font-family: vazir-light;
  color: #333333;
  font-size: 16px;
  border: 1px solid #00000030;
  border-radius: 15px;
  padding: 12px 15px;
  background-color: #fdfdfd;
  outline: none;
  width: 300px;
  transition: .3s;
}

#admin-list-search-form input:focus {
  border-color: #00000050;
}

#admin-list-search-form button {
  font-size: 18px;
  color: var(--white);
  background-color: #3A4764;
  border-radius: 15px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: .3s;
}

#admin-list-search-form button:hover {
  transform: scale(1.1);
  text-shadow: 0 0 10px var(--white);
}

#admin-list-search-form a {
  font-size: 22px;
  color: crimson;
  background-color: var(--white);
  border-radius: 15px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: .3s;
  border: 1px solid crimson;
}

#admin-list-search-form a:hover {
  transform: scale(1.05);
  background-color: crimson;
  color: var(--white);
  box-shadow: 0 0 10px crimson;
}


.admin-dashboard-table-content-back {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;

}

.dashboard-table-header-name {
  display: flex;
  align-items: center;
  gap: 10px;
}

.dashboard-table-header-name img {
  width: 45px;
  height: 45px;
  object-fit: cover;
  border-radius: 50%;
  transition: .2s;
  background-color: var(--white);
  opacity: .8;

}

.admin-dashboard-table-content {
  width: 100%;
  display: flex;
  min-height: 70px;
  border-bottom: 1px solid #e1e1e1;
  padding: 0 30px;
  align-items: center;
  gap: 10px;
  font-family: vazir-light;
}

.dashboard-table-content-name {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
}

.admin-dashboard-table-content div {
  border-left: 1px solid #e6e6e6;
  font-family: vazir-light;
  font-size: 14px;
  color: #525252;
  padding: 5px 0;
}

.admin-dashboard-table-content div:last-child {
  border-left: 1px solid transparent;
}

.dashboard-table-content-name img {
  width: 45px;
  height: 45px;
  object-fit: cover;
  opacity: .9;
  border-radius: 50%;
  transition: .2s;
}

.admin-dashboard-table-content:hover .dashboard-table-content-name img {
  opacity: 1;
}

.dashboard-table-content-txt p {
  padding: 10px 0;
  font-size: 15px;
  color: #6a6a6a;
  text-align: justify;
}

#dashboard-table-content-txt-links {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}

#dashboard-table-content-txt-a {
  font-size: 25px;
  color: #6c7ee4;
  margin: 0 2px;
}


#home-admin-edit-web-link-back {
  display: flex;
  flex-direction: column;
  align-items: flex-start;

}

#home-admin-edit-web-link-back label {
  font-family: vazir-light;
  font-size: 18px;
  color: #6166f2;
  margin-bottom: -10px;
  margin-top: 10px;
}

.admin-home-content {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 0 15px #cecece;
  overflow: hidden;
  padding: 20px 25px;
  background-color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.admin-home-content-name,
.admin-home-content-name form {
  width: 100%;
  min-height: 130px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  gap: 50px;
}

.admin-content-name-inputs {
  width: 40%;
  min-width: 600px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
}

.admin-content-name-inputs input {
  border: 1px solid #cecece;
  font-family: vazir-light;
  font-size: 20px;
  padding: 10px 15px;
  border-radius: 10px;
  outline: none;
  background-color: transparent;
  transition: .3s;
}

.admin-content-name-inputs input:focus {
  border-right: 7px solid #8495ba;
  box-shadow: 0 0 10px #cccccc;
}

.admin-content-name-inputs a {
  font-family: vazir-light;
  font-size: 20px;
  color: #3e4f72;
  background-color: #e3ebff;
  border: 1px solid #3e4f72;
  border-radius: 12px;
  padding: 10px 30px;
  transition: .3s;
}

.admin-content-name-inputs a:hover {
  background-color: #3e4f72;
  color: #ffffff;
}

.admin-content-name-buttons {
  width: 30%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.admin-content-name-buttons button {
  border: 1px solid #cecece;
  background-color: #384563;
  font-family: vazir-light;
  color: var(--white);
  font-size: 20px;
  padding: 12px 45px;
  border-radius: 15px;
  cursor: pointer;
}


.admin-home-content-txt {
  padding: 20px;
}

.admin-home-content-txt form {
  flex-direction: column;
}

.admin-home-content-txt form .admin-content-name-buttons {
  width: 100%;
}

.admin-home-content-txt form .admin-content-name-inputs {
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 30px;
  padding: 10px 0;
}

#admin-content-name-textarea {
  width: 80%;
  height: 200px;
  border-radius: 15px;
  background-color: var(--white);
  border: 1px solid #e1e1e1;
  resize: vertical;
  outline: none;
  padding: 12px 15px;
  color: #545454;
  font-family: vazir-light;
  font-size: 16px;
}

.admin-content-txt-name-inputs {
  width: 40%;
  display: flex;
  flex-direction: column;
  gap: 80px;
}



.admin-work-samples .admin-content-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 30px;
}

.admin-work-samples .admin-content-title a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 150px;
  height: 55px;
  background-color: #4a5c82;
  color: var(--white);
  font-family: vazir-light;
  font-size: 16px;
  border-radius: 12px;
  transition: .3s;
}

.admin-work-samples .admin-content-title a:hover {
  box-shadow: 0 0 20px 2px #adc2e9;
}

.admin-work-samples .dashboard-table-content-name {
  width: 25%;
}

.admin-work-samples .dashboard-table-content-phone {
  width: 30%;
  overflow: hidden;
}

#dashboard-table-content-date {
  max-width: 100px;
  text-align: center;
}

#dashboard-table-content-view {
  max-width: 70px;
  text-align: center;
}

.admin-work-samples .dashboard-table-content-txt {
  width: 35%;
}

#dashboard-table-header-txt-edit {
  width: 5%;
  min-width: 70px;
  position: relative;
}

#dashboard-table-header-txt-delete {
  width: 5%;
  min-width: 70px;
  position: relative;
}

#dashboard-table-header-txt-edit a {
  font-size: 25px;
  color: #0dc981;
  position: absolute;
  top: 50%;
  left: 65%;
  transform: translate(-50%, -50%);
}

#dashboard-table-header-txt-delete button {
  font-size: 25px;
  color: crimson;
  position: absolute;
  top: 50%;
  left: 70%;
  transform: translate(-50%, -50%);
  border: none;
  cursor: pointer;
}

.contact-table-header-eye a {
  color: var(--blue);
  font-size: 25px;
  margin: 0 auto;
  margin-right: 10%;
}

.admin-work-samples .dashboard-table-header-name {
  width: 25%;
}

.admin-work-samples .dashboard-table-header-phone {
  width: 30%;
}

.admin-work-samples .dashboard-table-header-txt {
  width: 35%;
}

.contact-table-header-eye {
  position: relative;
}

#contact-unseen-sapn {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: var(--secondcolor);
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  margin-top: -2px;
}



/* admin-home-slider */

.admin-home-slider-back {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.admin-home-slider-back form {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.admin-home-slider-div {
  width: 100%;
  display: flex;
  align-items: center;
  font-family: vazir-light;
  gap: 10px;
  font-size: 19px;
  padding: 0 15px;
  color: #6e6e6e;
  flex-wrap: wrap;
}



.admin-home-slider-div label {
  cursor: pointer;
  padding: 12px 10px;

}

.admin-home-slider-div button {
  font-size: 17px;
  font-family: vazir-light;
  border: none;
  background-color: #364361;
  color: var(--white);
  padding: 12px 45px;
  border-radius: 10px;
  margin-right: auto;
  margin-top: 20px;
  cursor: pointer;
}

.admin-home-slider-product {
  width: 95%;
  height: auto;
  border-radius: 20px;
  background-color: #f5f5f5;
  margin: 0px auto;
  padding: 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  max-height: 400px;
  overflow-y: scroll;
  opacity: .7;
  pointer-events: none;
}

.admin-product-slider-home {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.admin-product-slider-home input:checked~label .slider-home-checkbox i {
  display: block;
}

.admin-product-slider-home input {
  display: none;
}

.admin-product-slider-home p {
  font-size: 14px;

}

.admin-product-slider-home label {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.slider-home-checkbox {
  width: 20px;
  height: 20px;
  border: 1px solid #c2c2c2;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-home-checkbox i {
  color: #009879;
  font-size: 15px;
  display: none;
}

.admin-slider-radio-free-choose:checked~.admin-home-slider-product {
  pointer-events: unset;
  opacity: 1;
}

.admin-home-slider-div input~.admin-home-slider-product {
  display: none;
}

.admin-home-slider-div input:checked~.admin-home-slider-product {
  pointer-events: unset;
  opacity: 1;
  display: grid;
}



#admin-symbol-back .option-products {
  margin: 0;
}

#admin-content-title-symbol {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

#admin-content-title-symbol a {
  font-family: vazir-light;
  font-size: 15px;
  border-radius: 10px;
  border: 1px solid #48587a;
  color: #405582;
  padding: 10px 20px;
}

.symbol-add-div input[type="text"] {
  font-family: vazir-light;
  font-size: 17px;
  color: #535353;
  border-radius: 10px;
  border: 1px solid #d9d9d9;
  background-color: var(--white);
  padding: 12px 15px;
  outline: none;
  width: 90%;
  margin: 20px 0;
  transition: .3s;
}

.symbol-add-div input[type="text"]:focus {
  border-right: 6px solid #6166f2;
}


#admin-banner-back {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

#admin-banner-back div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
}

#admin-banner-back div a#edit-work-samples-div-img {
  width: 100%;
  height: 200px;
  position: relative;
  overflow: hidden;
}

#admin-banner-back div a#edit-work-samples-div-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.admin-banner-back-div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background-color: #00000010;
  padding: 10px;
  border-radius: 15px;
}

.admin-banner-back-div input {
  width: 100%;
  font-size: 15px;
  color: #6a6a6a;
  border-radius: 10px;
  border: 1px solid #00000015;
  padding: 12px 15px;
  font-family: vazir-light;
  text-align: left;
  direction: left;
}

#admin-banner-back.admin-home-slider-back form button {
  font-family: vazir-light;
  padding: 15px 0;
  font-size: 20px;
  color: var(--white);
  background: linear-gradient(130deg, #5b6e98, #33456d);
  border: none;
  border-radius: 15px;
  cursor: pointer;
  margin-top: 30px;
}


.admin-edit-price-top {
  width: 100%;
  max-width: 450px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  /* box-shadow: 0 10px 20px #5b6e9830; */
  /* border: 2px dashed #5b6e9880; */
  padding: 20px 30px;
  border-radius: 20px;
  margin: 15px 0 30px 0;
}

.admin-edit-price-top-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;

}

.admin-edit-price-top-top div {
  display: flex;
  align-items: center;
}

.admin-edit-price-top-top div input {
  display: none;
}

.admin-edit-price-top-top div input#edit-price-top-radio1:checked~label {
  background-color: #009879;
  box-shadow: 0 6px 15px #009879;
  color: var(--white);
}

.admin-edit-price-top-top div input#edit-price-top-radio2:checked~label {
  background-color: crimson;
  box-shadow: 0 6px 15px crimson;
  color: var(--white);
}

.admin-edit-price-top-top div label {
  font-family: vazir-extrabold;
  font-size: 15px;
  padding: 20px 30px;
  cursor: pointer;
  border-radius: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.admin-edit-price-top-top div label p {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.admin-edit-price-top-top div input#edit-price-top-radio1~label {
  /* background-color: #c2faef; */
  /* border: 1px solid #c2faef; */
  color: #009879;
}

.admin-edit-price-top-top div input#edit-price-top-radio2~label {
  /* background-color: #fed0da; */
  /* border: 1px solid #fed0da; */
  color: #dc143c;
}

.admin-edit-price-top-bottom {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.admin-edit-price-top-bottom input {
  width: 100%;
  padding: 15px 20px;
  border: 1px solid #00000025;
  border-radius: 10px;
  font-size: 14px;
  color: var(--mainblack);
  font-family: vazir-extrabold;
  outline: none;
  text-align: center;
}

.admin-edit-price-top-bottom input::-webkit-outer-spin-button,
.admin-edit-price-top-bottom input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

.admin-edit-price-top-bottom input[type=number] {
  -moz-appearance: textfield;
}

.admin-edit-price-top-bottom select {
  padding: 15px 20px;
  border: 1px solid #00000025;
  border-radius: 10px;
  font-size: 14px;
  color: #00000090;
  font-family: vazir-extrabold;
  outline: none;
  text-align: center;
}

.admin-home-slider-div-edit-price {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.admin-home-slider-div-edit-price button {
  padding: 18px 60px;
  border-radius: 15px;
  border: none;
  background: linear-gradient(130deg, #a4bdf1, #6d89c7);
  color: var(--white);
  font-family: vazir-extrabold;
  font-size: 17px;
  cursor: pointer;
  box-shadow: 0 10px 20px #a4bdf1;
  margin: 20px auto 10px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}








.addproduct-form {
  width: 100%;
  max-width: 910px;
  height: auto;
  padding: 10px 0px 150px 0;
  display: flex;
  align-items: center;
  gap: 30px 20px;
  flex-wrap: wrap;
  position: relative;
  /* margin-bottom: 20px; */
}

.admin-add-product-title {
  width: 100%;
  padding-top: 20px;
  margin-right: 40px;
  margin-bottom: 40px;
  font-family: vazir-extrabold;
  font-size: 35px;
  color: #556489;
  font-weight: normal;
}

.admin-add-product {
  display: flex;
  align-items: center;
  gap: 20px;
  border-radius: 30px 11px 11px 30px;
  border-right: 10px solid var(--firstcolor);
  padding: 20px 30px;
  box-shadow: 0 10px 20px #00000010;
  background-color: var(--white);
  width: 100%;
}

.admin-add-product .fa-exclamation-circle {
  font-size: 40px;
  color: var(--firstcolor);
  border-radius: 50%;
  box-shadow: 0 0 30px var(--firstcolor);
}

.admin-add-product.admin-add-product-codes .addproduct-form {
  padding: 10px 0;
}

.admin-add-product.admin-add-product-codes .addproduct-form #product_name_div input {
  width: 100%;
  box-shadow: none;
  border: 2px dashed #00000015;
}

.admin-add-product.admin-add-product-codes .addproduct-form #product_name_div textarea {
  width: 100%;
  font-family: vazir-light;
  border: 2px dashed #00000015;
  font-size: 15px;
  border-radius: 15px;
  padding: 15px 20px;
  resize: vertical;
  min-height: 200px;
}

.admin-content-blog #product_name_div textarea {
  width: 100%;
  font-family: vazir-light;
  border: 1px solid #00000015;
  font-size: 15px;
  border-radius: 15px;
  padding: 15px 20px;
  resize: vertical;
  min-height: 160px;
  outline: none;
}

.add-product-available-back {
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: -130px;
  transition: .4s;
  margin-left: -10px;
}

.add-product-available-back p {
  font-family: vazir-extrabold;
  font-size: 20px;
  color: #616161;
}

.add-product-available-back input {
  display: none;
}

.add-product-available-back #product_is_available_label {
  width: 100px;
  height: 60px;
  border-radius: 100px;
  border: 1px solid #00000020;
  background-color: var(--white);
  padding: 5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  transition: .3s;
  color: var(--white);
  font-size: 20px;
}

#product_is_available_label .add-product-available-div {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  background: linear-gradient(130deg, #dc143c, #ea3c5f);
  transition: .4s;
  transform: rotate(270deg);
}

#product_is_available_label:hover .add-product-available-div {
  box-shadow: 0 0 10px #ea3c5f;
}

#product_is_available_label .add-product-available-div i.fa-check {
  display: none;
}

.addproduct-form div {
  display: flex;
  /* width: 100%; */
  /* align-items: center; */
}

.add-product-available-back input:checked~#product_is_available_label .add-product-available-div {
  transition: .4s;
  margin-left: 38px;
  background: linear-gradient(130deg, #18f2c6, #4bf2d0);
  transform: rotate(360deg);
}

.add-product-available-back input:checked~#product_is_available_label:hover .add-product-available-div {
  box-shadow: 0 0 10px #4bf2d0;
}

.add-product-available-back input:checked~#product_is_available_label .add-product-available-div i.fa-check {
  display: block;
}

.add-product-available-back input:checked~#product_is_available_label .add-product-available-div i.fa-times {
  display: none;
}














.addproduct-form div label {
  font-size: 20px;
}

#product_introduction {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: 20px;
  align-items: flex-start;
}

#product_introduction label {
  font-size: 30px;
  width: 200px;
}

#product_introduction {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

#admin-product-model-textarea {
  width: 100%;
  border: 1px solid #00000020;
  border-radius: 15px;
  resize: vertical;
  margin-top: -20px;
  padding: 15px 20px;
  outline: none;
  color: var(--mainblack);
  font-size: 15px;
  font-family: vazir-light;
}

#product_introduction textarea#admin-product-model-textarea {
  min-height: 150px;
  max-height: 300px;
}

#product_introduction textarea {
  min-height: 400px;
}

#product_introduction label {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;

}

#product_introduction label h2 {
  font-size: 20px;
  font-family: vazir-light;
}

#product_introduction label p {
  font-size: 16px;
  font-family: vazir-light;
  color: #5c5c5c;
}

#product_information {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

#product_information textarea {
  min-height: 600px;
}

#product_information label {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;

}

#product_information label h2 {
  font-size: 20px;
  font-family: vazir-light;
}

#product_information label p {
  font-size: 16px;
  font-family: vazir-light;
  color: #5c5c5c;
}



#product_introduction_show_edit {
  padding: 30px;
  border-radius: 30px;
  background-color: var(--white);
  font-family: vazir-light;
  display: flex;
  flex-direction: column;
  width: 100%;
  box-shadow: 0 0 20px 2px #00000020;
  min-height: 250px;
}

#product_introduction_edit-link {
  font-family: vazir-extrabold;
  padding: 15px 15px;
  border-radius: 0px 20px 0px 30px;
  font-size: 14px;
  background-color: #51648e;
  margin-right: auto;
  margin-top: auto;
  color: var(--white);
  margin-bottom: -30px;
  margin-left: -30px;
  transition: .3s;
}

#product_introduction_edit-link:hover {
  text-shadow: 0 0 10px var(--white);
  transform: scale(1.1);
  border-radius: 15px;
}





.addproduct-form label {
  font-family: vazir-light;
  font-size: 18px;
  font-weight: normal;
  /* margin: 0 10px; */
  width: 140px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.addproduct-form input[type="text"] {
  width: 300px;
  padding: 12px 15px;
  font-size: 17px;
  font-family: vazir-light;
  outline: none;
  border-radius: 15px;
  border: none;
  box-shadow: 0px 0px 10px 1px #00000020;
  color: var(--mainblack);
}

.addproduct-form input[type="number"] {
  width: 300px;
  padding: 12px 15px;
  font-size: 17px;
  font-family: vazir-light;
  outline: none;
  border-radius: 15px;
  border: none;
  box-shadow: 0px 0px 10px 1px #00000020;
  color: var(--mainblack);
}

.addproduct-form #product_name_div {
  width: 100%;
}

.addproduct-form #product_name_div input {
  width: 760px;
}

.addproduct-submit-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.addproduct-form button[type="submit"] {
  font-family: vazir-extrabold;
  font-size: 20px;
  width: 250px;
  height: 70px;
  background: linear-gradient(130deg, #6f85b2, #a2b5dd);
  border: none;
  border-radius: 15px;
  color: var(--white);
  box-shadow: 0 0 20px 3px #96acd7;
  cursor: pointer;
  transition: .3s;
}

.addproduct-form button[type="submit"]:hover {
  box-shadow: 0 0 40px 6px #96acd7;
}

#draft-btn {
  font-family: vazir-extrabold;
  font-size: 18px;
  width: 300px;
  height: 70px;
  background: var(--white);
  border: 1px solid #96acd7;
  border-radius: 15px;
  color: #475778;
  box-shadow: 0 0 20px #96acd7;
  cursor: pointer;
  transition: .3s;
}

#custom-file-input::-webkit-file-upload-button {
  visibility: hidden;
}

#custom-file-input {
  width: 200px;
}

#custom-file-input::before {
  content: "افزودن عکس";
  display: block;
  background: transparent;
  border: 1px solid #475778;
  border-radius: 10px;
  padding: 12px 5px;
  width: 180px;
  outline: none;
  white-space: nowrap;
  -webkit-user-select: none;
  cursor: pointer;
  text-shadow: 1px 1px #fff;
  font-weight: 700;
  font-size: 16px;
  font-family: vazir-light;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #475778;
  transition: 0.3s;
}

#custom-file-input:hover::before {
  background: var(--mainwhite);
}

#custom-file-input1::-webkit-file-upload-button {
  visibility: hidden;
}

#custom-file-input1 {
  width: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#custom-file-input1::before {
  content: "افزودن عکس اول + ";
  display: block;
  background: transparent;
  border: 1px solid var(--firstcolor);
  border-radius: 10px;
  width: 590px;
  height: 150px;
  outline: none;
  white-space: nowrap;
  -webkit-user-select: none;
  cursor: pointer;
  text-shadow: 1px 1px #fff;
  font-weight: 700;
  font-size: 26px;
  font-family: vazir-light;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--firstcolor);
  transition: 0.3s;
}

#custom-file-input1:hover::before {
  background: var(--mainwhite);
}

.addproduct-otherimg-div {
  gap: 20px;
}

.addproduct-img-div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 100%;
  /* background: #00a080; */
  margin-right: 50px;
}

.open-video-section-btn {
  width: 270px;
  height: 90%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: vazir-extrabold;
  color: #414141;
  font-size: 22px;
  background-color: #E2EAF8;
  cursor: pointer;
  border-radius: 10px;
  margin-left: 20px;
  margin-top: -2px;
  border: 2px solid #00000045;
  transition: .3s;
}

.open-video-section-btn:hover {
  background-color: #364361;
  color: var(--white);
}

#product_price::-webkit-outer-spin-button,
#product_price::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

#product_price[type=number] {
  -moz-appearance: textfield;
}

#select_language {
  /* appearance: none; */
  width: 300px;
  padding: 10px;
  background-color: #fff;
  border: none;
  color: var(--mainWhite);
  font-size: 19px;
  font-family: vazir-light;
  cursor: pointer;
  position: relative;
  border-radius: 10px;
  transition: 0.4s;
  font-weight: 500;
  box-shadow: 2px 4px 5px #96969650;
}

.product-groupping-section {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
}

#product-video-section {
  display: none;
}

#product-video-section .product-groupping-back {
  height: 430px;
}

#product-video-section .product-groupping-title h1 {
  text-align: center;
  margin: 0 auto;
}

#product-video-section .product-groupping-back textarea {
  width: 100%;
  height: 200px;
  outline: none;
  border: none;
  border-radius: 5px;
  background-color: var(--bodycolor);
  font-family: vazir-light;
  font-size: 15px;
  color: #4c4c4c;
  padding: 10px 12px;
  resize: none;
  box-shadow: 0 0 5px #00000050;
}

#product-video-section .product-groupping-back p {
  font-family: vazir-light;
  font-size: 16px;
  color: var(--blue);
  text-decoration: underline;
  cursor: pointer;
}

#product-video-section .product-groupping-back textarea::-webkit-scrollbar {
  width: 5px;
}

#product-video-section .product-groupping-back textarea::-webkit-scrollbar-track {
  background-color: transparent;
}

#product-video-section .product-groupping-back textarea::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background-color: #dcdcdc;
}

#product-video-section .product-groupping-back div {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: flex-start;
  margin-top: 10px;
}

#product-video-section .product-groupping-back div label {
  width: 100%;
  font-size: 17px;
  color: #464646;
  padding-right: 20px;
}

#product-groupping-section {
  display: none;
}

#product-groupping-section2 {
  display: none;
}

.image-video-div {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--firstcolor);
}

.select-img-product div.image-video-div {
  border: 2px solid var(--secondcolor);

}

#learn-video-section {
  z-index: 120;
}

#learn-video-section .product-groupping-back {
  width: 90%;
  max-width: none;
}


#list-draft-upload-btn {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background-color: var(--white);
  color: #25dbb6;
  font-size: 15px;
  font-family: vazir-light;
  padding: 10px 0;
  border: 1px solid #41eac8;
  cursor: pointer;
  transition: .3s;
}

#list-draft-upload-btn:hover {
  background-color: #25dbb6;
  color: var(--white);
  box-shadow: 0 0 15px #25dbb6;
}




.product-groupping-blur {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 100;
  background-color: #00000025;
  backdrop-filter: blur(5px);
}

.product-groupping-back {
  width: 90%;
  height: 90vh;
  max-width: 400px;
  max-height: 700px;
  z-index: 101;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--white);
  border-radius: 20px;
  box-shadow: 3px 5px 20px 1px #cdcdcd;
  display: flex;
  flex-direction: column;
  background-color: #556489;
  overflow: hidden;
}

.product-groupping-title {
  width: 100%;
  height: 80px;
  background-color: #556489;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 35px;
  font-family: vazir-light;
  font-weight: normal;
  color: var(--white);
  font-size: 16px
}

.product-groupping-title i {
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  font-size: 20px;
  cursor: pointer;
}

.product-groupping-content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px 30px;
  background-color: var(--white);
  overflow-y: scroll;
  border-radius: 20px 20px 20px 20px;
  border-bottom: 7px solid #556489;
}

.product-groupping-content::-webkit-scrollbar {
  width: 6px;
}

.product-groupping-content::-webkit-scrollbar-track {
  background-color: transparent;
}

.product-groupping-content::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background-color: #556489;
  box-shadow: none;
  cursor: pointer;
}

.groupping-content-div {
  display: flex;
  flex-direction: column;
  width: 100%;
  font-family: vazir-light;
}

.groupping-content-div input[type="checkbox"] {
  display: none;
}

.groupping-content-div label {
  width: auto;
  cursor: pointer;
}

.groupping-content-div label h2 {
  font-weight: normal;
  font-size: 18px;
  font-family: vazir-regular;
  color: #2c2c2c;
  padding: 5px 0;
  margin: 5px 0;
}

.groupping-content-div label i {
  font-size: 14px;
  margin-right: 15px;
  color: #556489;
  transition: .3s;
}

.groupping-content-div-p {
  display: flex;
  flex-direction: column;
  padding: 0 20px;
  height: 0;
  overflow: hidden;
  transition: .3s;
}

.groupping-content-div-p label p {
  font-size: 16px;
  color: #404040;
}

.groupping-content-div input[type="checkbox"]:checked~.groupping-content-div-p {
  height: auto;
  overflow: unset;
}

.groupping-content-div input[type="checkbox"]:checked~label i {
  transform: rotate(90deg);
}

.groupping-content-div input[type="checkbox"]:checked~label h2 {
  visibility: hidden;
  display: none;
}

.groupping-content-div-p div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
}

.groupping-content-div-p div label {
  width: 100%;
  border-right: 3px solid transparent;
  padding: 7px 10px;
  order: 0;
  border-radius: 5px;
}

.groupping-content-div-p div input {
  order: 1;
}

.groupping-content-div-p div input:checked~label {
  border-right: 3px solid var(--secondcolor);
}

.product-groupping-btn {
  width: 300px;
  background-color: var(--white);
  border: 1px solid #a0b5dd;
  height: 55px;
  font-family: vazir-light;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  border-radius: 10px;
  box-shadow: 0 0 10px 2px #00000015;
  margin-right: 140px;
  color: #576890;
  cursor: pointer;
}

#product-groupping-section2 .product-groupping-back {
  max-width: 400px;
}

#product-groupping-section2 .groupping-content-div {
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
  padding: 0 10px;
}

#product-groupping-section2 .groupping-content-div input {
  display: block;
  order: 1;
  cursor: pointer;
}

#product-groupping-section2 .groupping-content-div label {
  order: 0;
  width: 100%;
}

.circle-color {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 3px solid var(--white);
  transition: .3s;
  box-shadow: 0 0 0px 3px rgba(131, 131, 131, 0.208);
  margin-left: 30px;
}

#product-groupping-section2 .groupping-content-div input:checked~label .circle-color {
  border: 3px solid var(--newcolor);
  color: blu;
}


#product-groupping-section2 .groupping-content-div #groupping-content-input-price input {
  display: none;
  width: 200px;
  font-size: 16px;
  margin-left: 30px;
  /* -moz-appearance: textfield; */
  -webkit-appearance: none;
  -moz-display-property: none;
  -webkit-display-property: none;
}

#product-groupping-section2 .groupping-content-div #groupping-content-input-price input::-webkit-outer-spin-button,
#product-groupping-section2 .groupping-content-div #groupping-content-input-price input::-webkit-inner-spin-button {
  display: none;
}

.groupping-content-div input[type="checkbox"]:checked~#groupping-content-input-price input {
  display: block;
}

#product-groupping-section2 .groupping-content-div input[type="checkbox"]:checked~#groupping-content-input-price input {
  display: flex;
}

#admin-content-classification {
  /* position: relative; */
}

#product-classification {
  max-width: 800px;
  position: unset;
  z-index: 0;
  top: unset;
  left: unset;
  transform: translate(0, 0);
}

#product-classification .product-groupping-title a {
  color: var(--white);
}

#product-classification .product-groupping-title a i {
  border: 1px solid var(--white);
  padding: 5px 6px;
  border-radius: 8px;
}

#product-classification .groupping-content-div {
  border-bottom: 1px solid #efefef;
}

#product-classification .groupping-content-div label#classification-label-checkbox {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 22px 10px;
  position: relative;
}

#product-classification .product-groupping-content {
  gap: 0;
}

#product-classification .groupping-content-div label h2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
}

#product-classification .groupping-content-div label h2 img {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  margin-left: 10px;
}

.classification-edit {
  display: flex;
  align-items: center;
  gap: 5px;
}

#product-classification .groupping-content-div-p {
  background-color: #eff3fb;
  margin: 0 20px;
  border-radius: 20px;
}

#groupping-content-div-classification {
  border-bottom: 1px solid #ebebeb;
}

.groupping-content-div-p .classification-edit a {
  color: var(--firstcolor);
  padding: 0 5px;
}

.groupping-content-div-p .classification-edit a i {
  font-size: 15px;

}

.classification-edit a i {
  font-size: 17px;
}

.classification-edit a i.fa-trash {
  color: #ee4869;
}

.groupping-content-div input[type="checkbox"]:checked~#classification-label-checkbox .classification-edit a i {
  transform: rotate(0);
}

#classification-add-page .contact-view-message-back {
  max-width: 400px;
  min-height: 200px;
}

#classification-delete-page .contact-view-message-back {
  max-width: 500px;
  min-height: 160px;
  padding: 30px;
}

#classification-add-page input {
  width: 100%;
  font-family: vazir-light;
  outline: none;
  padding: 12px 15px;
  border: 1px solid #e8e8e8;
  background-color: var(--white);
  border-radius: 15px;
  font-size: 16px;
  margin-bottom: 10px;
}

#classification-delete-page p {
  border: none;
  box-shadow: none;
  width: auto;
  margin: 0 auto;
}

#classification-delete-page form div {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 0 70px;
  /* margin-top: 20px; */
}

#classification-delete-page form div button {
  width: 100%;
  height: 50px;
  background-color: #6782b475;

  font-size: 17px;
}

#classification-delete-page form div a {
  width: 100%;
  height: 50px;
  position: relative;
  background-color: #6782b4;
  display: flex;
  align-items: center;
  justify-content: center;
  top: unset;
  right: unset;
  border-radius: 15px;
  color: var(--white);
  font-size: 17px;
  font-family: vazir-extrabold;
}

#add-product-price-div-p-back {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background-color: #f0f0f0;
  border: 1px solid #cfcfcf;
  padding: 10px;
  border-radius: 20px;
  margin-right: -20px;
}

#add-product-price-div-p-back p {
  font-family: vazir-light;
  color: #888888;
  max-width: 300px;
  text-align: justify;
}

.product-price-call-div {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 300px;
}

#call_for_price_label {
  font-size: 16px;
  color: #525252;
  padding: 5px 20px 10px 20px;
  cursor: pointer;
  width: 90%;
}

.product-price-call-div input[type="number"] {
  display: none;
  background: transparent;
  box-shadow: none;
  border: 1px solid #00000025;
  font-size: 15px;
  text-align: center;
}

.product-price-call-div input[type="checkbox"]:checked~input[name="call_for_price_phone"] {
  display: block;
}























/* ----- Admin User ----- */
.admin-user {
  display: flex;
  align-items: center;
  justify-content: center;
}

.admin-cart {
  width: 400px;
  height: 450px;
  background: var(--mainwhite);
  border-radius: 15px;
  box-shadow: 3px 6px 15px #96969690;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  padding: 20px 0;
}

.admin-cart-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: vazir-extrabold;
  font-size: 18px;
  font-weight: normal;
  color: var(--mainblack);
}

.admin-cart-title img {
  width: 150px;
}

.admin-cart-content {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  height: 200px;
  font-family: vazir-light;
  font-size: 20px;
}

.admin-cart-content div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 300px;
}

.admin-cart-content .admin {
  width: 200px;
  height: 50px;
  background: var(--bodycolor);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 10px 15px;
  border-radius: 10px;
  color: #009879;
  transition: 0.3s;
}

.admin-cart-content .admin:hover {
  box-shadow: 3px 5px 5px #4e4e4e30;
}

.admin-cart-content .password button {
  padding: 12px 15px;
  border: none;
  background-color: var(--bodycolor);
  color: var(--firstcolor);
  border-radius: 10px;
  font-size: 18px;
  font-family: vazir-regular;
  transition: 0.3s;
  cursor: pointer;
}

.admin-cart-content .password button:hover {
  background-color: var(--firstcolor);
  color: var(--mainwhite);
  box-shadow: 0px 0px 10px var(--firstcolor);
}

.change_password {
  height: 250px;
  display: none;
}

.change_password form {
  width: 330px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  height: 100%;
  margin-top: -10px;
}

.change_password form div {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.change_password form div label {
  font-size: 18px;
  font-family: vazir-light;
}

.change_password form div input {
  padding: 10px 12px;
  width: 220px;
  font-size: 16px;
  font-family: vazir-regular;
  border: none;
  outline: none;
  box-shadow: 3px 5px 5px #00000030;
  border-radius: 15px;
  text-align: left;
  background-color: var(--bodycolor);
}

#change-password-btn {
  justify-content: space-around;
}

#change-password-btn button {
  /* width: 100px; */
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  font-family: vazir-light;
  font-size: 19px;
  border-radius: 12px;
  cursor: pointer;
}

#save-btn {
  width: 170px;
  background: var(--firstcolor);
  color: var(--mainwhite);
  padding: 12px 30px;
}

#cancel-btn {
  width: 100px;
  color: crimson;
  background-color: #00000010;
}

.edit-btn {
  border-radius: 50%;
  width: 35px;
  height: 35px;
  color: var(--mainwhite);
  background: #7588b3;
  font-size: 18px;
  border: none;
  cursor: pointer;
}

.admin-login-notif {
  width: 400px;
  font-size: 18px;
  font-family: vazir-light;
  font-weight: normal;
  height: 60px;
  background-color: crimson;
  border-radius: 15px;
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mainwhite);
  z-index: 100;
}

.login-section-incorrect {
  box-shadow: 0 0 50px crimson;
}

#admin-login-section.login-section-incorrect h1 {
  color: crimson;
}

.admin-login-notif#admin-login-notif-succes {
  background-color: #00caa2;
}



/* --------- Strat Admin Content & About --------- */

/* --------- admin content -------- */
.admin-content {
  width: 100%;
  min-height: 100vh;
  padding: 90px 320px 50px 20px;
  background-color: var(--bodycolor);
}

.admin-content-back {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.admin-content-title h1 {
  font-family: vazir-extrabold;
  font-size: 30px;
  color: #353535;
}

.admin-dashboard-header {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.admin-dashboard-header-link {
  height: 150px;
  background-color: var(--white);
  border-radius: 15px;
  box-shadow: 0 0 15px 1px #d0d0d0;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10%;
}

.admin-dashboard-header-link .header-link-img img {
  width: 100px;
}

.admin-dashboard-header-link .header-link-contnet {
  font-family: vazir-light;
  font-size: 20px;
  color: #2c2c2c;
}

.admin-dashboard-header-link .header-link-contnet p {
  font-family: vazir-light;
  font-size: 16px;
  color: #6a6a6a;
  margin-top: -5px;
}

.admin-dashboard-table {
  width: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 15px 15px 7px 7px;
  background-color: var(--white);
  box-shadow: 0 0 15px 1px #d0d0d0;
  min-height: 400px;
  overflow: hidden;
  border-bottom: 5px solid #3a4764;
}

.admin-dashboard-table-header {
  width: 100%;
  display: flex;
  height: 80px;
  border-bottom: 1px solid #e1e1e1;
  background-color: #3a4764;
  padding: 0 30px;
  align-items: center;
  gap: 10px;
}

.admin-dashboard-table-header div {
  border-left: 1px solid #e6e6e6;
  font-family: vazir-light;
  font-size: 15px;
  color: #f0f0f0;
  padding: 5px 0;
  width: 100%;
}

.admin-dashboard-table-header div:last-child {
  border-left: 1px solid transparent;
}


.admin-dashboard-table-content-back {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;

}

.dashboard-table-header-name {
  display: flex;
  align-items: center;
  gap: 10px;
}

.dashboard-table-header-name img {
  width: 45px;
  height: 45px;
  object-fit: cover;
  border-radius: 50%;
  transition: .2s;
  background-color: var(--white);
  opacity: .8;

}

.admin-dashboard-table-content {
  width: 100%;
  display: flex;
  min-height: 70px;
  border-bottom: 1px solid #e1e1e1;
  padding: 0 30px;
  align-items: center;
  gap: 10px;
  font-family: vazir-light;
  transition: .1s;
}

.dashboard-table-content-name {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
}

.admin-dashboard-table-content div {
  border-left: 1px solid #e6e6e6;
  font-family: vazir-light;
  font-size: 14px;
  color: #525252;
  padding: 5px 0;
  width: 100%;
}

.admin-dashboard-table-content div:last-child {
  border-left: 1px solid transparent;
}

.dashboard-table-content-name img {
  width: 45px;
  height: 45px;
  object-fit: cover;
  opacity: .9;
  border-radius: 50%;
  transition: .2s;
}

.admin-dashboard-table-content:hover {
  background-color: #eeeeee;
}

.admin-dashboard-table-content:hover .dashboard-table-content-name img {
  opacity: 1;
}

.dashboard-table-content-txt#product-list-small-table,
.dashboard-table-header-txt#product-list-small-table {
  max-width: 150px;
}

.dashboard-table-content-topic#product-list-small-table,
.dashboard-table-header-topic#product-list-small-table {
  max-width: 90px;
}

.dashboard-table-content-topic#product-list-small-table2,
.dashboard-table-header-topic#product-list-small-table2 {
  max-width: 50px;
}

#product-list-not-available {
  color: var(--secondcolor);
}

#product-list-is-available {
  color: #009879;
}

.dashboard-table-content-name {
  width: 30%;
}

.dashboard-table-content-phone {
  width: 15%;
}

.dashboard-table-content-topic {
  width: 20%;
}

.dashboard-table-content-txt {
  width: 35%;
}

.dashboard-table-content-txt p {
  padding: 10px 0;
  font-size: 15px;
  color: #6a6a6a;
  text-align: justify;
}

#dashboard-table-content-txt-links {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}

#dashboard-table-content-txt-a {
  font-size: 25px;
  color: #6c7ee4;
  margin: 0 2px;
}


#home-admin-edit-web-link-back {
  display: flex;
  flex-direction: column;
  align-items: flex-start;

}

#home-admin-edit-web-link-back label {
  font-family: vazir-light;
  font-size: 18px;
  color: #6166f2;
  margin-bottom: -10px;
  margin-top: 10px;
}

.admin-home-content {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 0 15px #cecece;
  overflow: hidden;
  padding: 20px 25px;
  background-color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.admin-home-content-name,
.admin-home-content-name form {
  width: 100%;
  min-height: 130px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  gap: 50px;
}

.admin-content-name-inputs {
  width: 40%;
  min-width: 600px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
}

.admin-content-name-inputs input {
  border: 1px solid #cecece;
  font-family: vazir-light;
  font-size: 20px;
  padding: 10px 15px;
  border-radius: 10px;
  outline: none;
  background-color: transparent;
  transition: .3s;
}

.admin-content-name-inputs input:focus {
  border-right: 7px solid #8495ba;
  box-shadow: 0 0 10px #cccccc;
}

.admin-content-name-inputs a {
  font-family: vazir-light;
  font-size: 20px;
  color: #3e4f72;
  background-color: #e3ebff;
  border: 1px solid #3e4f72;
  border-radius: 12px;
  padding: 10px 30px;
  transition: .3s;
}

.admin-content-name-inputs a:hover {
  background-color: #3e4f72;
  color: #ffffff;
}

.admin-content-name-buttons {
  width: 30%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.admin-content-name-buttons button {
  border: 1px solid #cecece;
  background-color: #384563;
  font-family: vazir-light;
  color: var(--white);
  font-size: 20px;
  padding: 12px 45px;
  border-radius: 15px;
  cursor: pointer;
}


.admin-home-content-txt {
  padding: 20px;
}

.admin-home-content-txt form {
  flex-direction: column;
}

.admin-home-content-txt form .admin-content-name-buttons {
  width: 100%;
}

.admin-home-content-txt form .admin-content-name-inputs {
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 30px;
  padding: 10px 0;
}

#admin-content-name-textarea {
  width: 80%;
  height: 200px;
  border-radius: 15px;
  background-color: var(--white);
  border: 1px solid #e1e1e1;
  resize: vertical;
  outline: none;
  padding: 12px 15px;
  color: #545454;
  font-family: vazir-light;
  font-size: 16px;
}

.admin-content-txt-name-inputs {
  width: 40%;
  display: flex;
  flex-direction: column;
  gap: 80px;
}







.admin-work-samples .admin-content-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 30px;
}

.admin-work-samples .admin-content-title a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 150px;
  height: 55px;
  background-color: #4a5c82;
  color: var(--white);
  font-family: vazir-light;
  font-size: 16px;
  border-radius: 12px;
  transition: .3s;
}

.admin-work-samples .admin-content-title a:hover {
  box-shadow: 0 0 20px 2px #adc2e9;
}

.admin-work-samples .dashboard-table-content-name {
  width: 25%;
}

.admin-work-samples .dashboard-table-content-phone {
  width: 30%;
  overflow: hidden;
}

.admin-work-samples .dashboard-table-content-txt {
  width: 35%;
}

#dashboard-table-header-txt-edit {
  width: 5%;
  min-width: 70px;
  position: relative;
}

#dashboard-table-header-txt-delete {
  width: 5%;
  min-width: 70px;
  position: relative;
}

#dashboard-table-header-txt-edit a {
  font-size: 25px;
  color: #0dc981;
  position: absolute;
  top: 50%;
  left: 65%;
  transform: translate(-50%, -50%);
}

#dashboard-table-header-txt-delete a {
  font-size: 25px;
  color: crimson;
  position: absolute;
  top: 50%;
  left: 70%;
  transform: translate(-50%, -50%);
}


.admin-work-samples .dashboard-table-header-name {
  width: 25%;
}

.admin-work-samples .dashboard-table-header-phone {
  width: 30%;
}

.admin-work-samples .dashboard-table-header-txt {
  width: 35%;
}






















































.admin-contact-edit {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  padding: 10px 15px;
  border-radius: 15px;
  background-color: var(--white);
  font-family: vazir-light;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px #dadada;
}

.admin-contact-edit form {
  width: 100%;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
}

.admin-contact-edit form .contact-admin-form-input-back {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.contact-admin-form-input-back label {
  min-width: 120px;
  font-size: 17px;
  color: #363636;
}

.contact-admin-form-input-back input {
  width: 100%;
  border: 1px solid #d3d3d3;
  border-radius: 12px;
  padding: 12px 15px;
  font-family: vazir-light;
  outline: none;
  font-size: 15px;
  transition: .3s;
}

.contact-admin-form-input-back input:focus {
  border-right: 6px solid var(--blue);
  box-shadow: 0 0 10px #c9c9c9;
}

.contact-form-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-form-submit button {
  font-family: vazir-light;
  font-size: 18px;
  border-radius: 12px;
  border: 1px solid #dcdcdc;
  cursor: pointer;
  background-color: #d8e1f7;
  padding: 10px 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .3s;
}

.contact-form-submit button:hover {
  background-color: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}

.admin-dashboard-table-content .contact-table-header-eye {
  max-width: 50px;
  min-width: none;
}

.admin-dashboard-table-header .contact-table-header-eye {
  max-width: 50px;
  min-width: none;
}

.admin-dashboard-table-content .contact-table-header-eye a {
  color: var(--secondcolor);
  font-size: 21px;
  margin: 0 auto;
  margin-right: 0px;
}

.admin-dashboard-table-header .dashboard-table-header-name,
.dashboard-table-content-name {
  min-width: 300px;
}

#order-view-message::-webkit-scrollbar {
  width: 10px;
  z-index: 101;
}

#order-view-message::-webkit-scrollbar-track {
  z-index: 101;
  background-color: transparent;
}

#order-view-message::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background-color: var(--blue);
  z-index: 101;
  box-shadow: inset 0 0 10px 1px #b6b8f2;
}

#order-view-message {
  z-index: 100;
  height: 100%;
  overflow: hidden;
  overflow-y: auto;
  align-items: flex-start;
}

#order-view-message .contact-view-message-back {
  min-height: 100%;
  margin: 20px 0;
  width: 100vw;
  top: 0;
  max-width: 800px;
  justify-content: flex-start;
}

#order-view-message .order-options-back {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

#order-view-message .order-options-back p {
  border: none;
  box-shadow: none;
  font-size: 17px;
  width: 100%;
  max-width: 300px;
}

#order-view-message .order-options-back label {
  pointer-events: none;
}

#order-view-message p {
  border-color: #d9e2f4;
  box-shadow: 0 0 10px #e5eeff;
  color: #585858;
}

#order-view-message-web-text p {
  min-height: 100px;
  height: 100px;
}

#order-view-message-div {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

#order-view-message-div label {
  width: 160px;
}

#order-view-message-div p {
  border: none;
  box-shadow: none;
}









.contact-view-message {
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  overflow-y: auto;
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  top: 0;
  left: 0;

}

.contact-view-message-close-back {
  width: 100%;
  min-height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  cursor: default;
  background-color: #00000050;
  backdrop-filter: blur(3px);
}

.contact-view-message-back {
  width: 100%;
  max-width: 600px;
  min-height: 500px;
  border-radius: 15px;
  background-color: var(--white);
  box-shadow: 0 0 10px #00000020;
  padding: 50px 30px 30px 30px;
  font-family: vazir-light;
  font-size: 17px;
  z-index: 2;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.contact-view-message-back a {
  position: absolute;
  top: 10px;
  right: 20px;
  color: var(--blue);
  font-size: 20px;
}

.contact-view-message-div {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.contact-view-message-div a {
  position: relative;
  font-size: 16px;
  font-family: vazir-light;
  color: var(--white);
  background-color: var(--secondcolor);
  border-radius: 5px;
  padding: 12px 25px;
  margin: -20px auto 0 20px;
}

.contact-view-message-back p {
  width: 100%;
  border: 1px solid #cacaca;
  background-color: transparent;
  box-shadow: 0 0 10px #e2e2e2;
  height: 50px;
  display: flex;
  align-items: center;
  padding: 0 10px;
  border-radius: 12px;
  color: #303030;
  transition: .3s;
}

.contact-view-message-div-topic {
  width: 100%;
}

.contact-view-message-div-txt {
  width: 100%;
}

.contact-view-message-div-txt p {
  min-height: 200px;
  height: auto;
  text-align: justify;
  line-height: 30px;
  font-size: 15px;
  align-items: flex-start;
  padding: 12px 15px;
}

/* .add-work-samples textarea{
  min-height: 600px;
} */
#add-text-1-textarea {
  min-height: 200px;
  height: 200px;
  width: 100%;
}

#admin-add-work-samples-table-1 {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}

#admin-add-work-samples-table-1 form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

#admin-add-work-samples-table {
  max-width: 700px;
  margin: 0 auto;
  padding: 20px;
}

#admin-add-work-samples-table form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.add-work-samples-img {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.samples-status-back {
  width: 300px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  background-color: #e4e4e4;
  padding: 12px 20px;
  border-radius: 12px;

}

.samples-radio-back {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
}

.samples-radio-back input {
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  cursor: pointer;
  position: absolute;
}

.samples-radio-back label {
  width: 100%;
  cursor: pointer;
  background-color: #d8d8d8;
  font-family: vazir-light;
  font-size: 18px;
  padding: 12px 20px;
  padding-right: 40px;
  border-radius: 12px;
  transition: .3s;
}

.samples-radio-back label:hover {
  background-color: #879cc7;
  color: var(--white);
}

.samples-radio-back input:checked~label {
  background-color: #6e81a9;
  color: var(--white);
}

.add-work-samples-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.add-work-samples-submit button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 100px;
  border: none;
  font-family: vazir-light;
  color: var(--white);
  border-radius: 12px;
  font-size: 19px;
  background: linear-gradient(130deg, var(--lightblue1), var(--blue));
  cursor: pointer;
}








#custom-file-input1::-webkit-file-upload-button {
  visibility: hidden;
}

#custom-file-input1 {
  width: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -3px 0 0 0;
}

#custom-file-input1::before {
  content: 'افزودن عکس  + ';
  display: block;
  background: #e2eaf8;
  border: 2px solid #b5b5b5;
  border-radius: 10px;
  width: 340px;
  height: 170px;
  outline: none;
  white-space: nowrap;
  -webkit-user-select: none;
  cursor: pointer;
  font-weight: 700;
  font-size: 26px;
  font-family: vazir-light;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666666;
  transition: .3s;
}

#custom-file-input1:hover::before {
  background: #364361;
  color: var(--white);
}

.custom-file-input1-admin#custom-file-input1::before {
  content: 'افزودن عکس  + ';
  display: block;
  background: #e2eaf8;
  border: 2px solid #b5b5b5;
  border-radius: 10px;
  width: 300px;
  height: 170px;
  outline: none;
  white-space: nowrap;
  -webkit-user-select: none;
  cursor: pointer;
  font-weight: 700;
  font-size: 26px;
  font-family: vazir-light;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666666;
  transition: .3s;
}



.add-work-samples {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.add-work-samples input,
.add-work-samples textarea {
  width: 100%;
  font-family: vazir-light;
  font-size: 17px;
  padding: 10px 15px;
  border-radius: 12px;
  background-color: transparent;
  border: 1px solid #d5d5d5;
  outline: none;
  transition: .3s
}

.add-work-samples input:focus {
  border-right: 6px solid #8ca2d3;
  box-shadow: 0 0 10px #d8d8d8;
}

.add-work-samples textarea {
  resize: none;
  height: 200px;
}

.contact-view-message-back#sample-edit-photo-back {
  min-height: 350px;
  max-width: 440px;
  padding: 10px;
}

.contact-view-message-back form {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
}

.contact-view-message-back form button {
  width: 200px;
  padding: 15px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  font-size: 17px;
  font-family: vazir-light;
  font-weight: 600;
  cursor: pointer;
  background-color: #3071e7;
  color: var(--white);
  border: none;
}

#edit-work-samples-div-img {
  width: 340px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #d1dbf5;
  border: 2px solid #5a678b;
  color: #3d4b70;
  font-size: 25px;
  font-weight: 700;
  font-family: vazir-light;
  border-radius: 15px;
}

#sample-table-trash-btn {
  font-size: 25px;
  color: crimson;
  position: absolute;
  top: 50%;
  left: 70%;
  transform: translate(-50%, -50%);
  border: none;
  background-color: transparent;
  cursor: pointer;
}




.edit-learn-div-img#edit-work-samples-div-img {
  width: 550px;
  margin: 0 auto;
}

.add-learn-img #custom-file-input1 {
  width: 550px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.add-learn-img #custom-file-input1::before {
  content: 'افزودن عکس  + ';
  display: block;
  background: #e2eaf8;
  border: 2px solid #b5b5b5;
  border-radius: 10px;
  width: 540px;
  height: 170px;
  outline: none;
  white-space: nowrap;
  -webkit-user-select: none;
  cursor: pointer;
  font-weight: 700;
  font-size: 26px;
  font-family: vazir-light;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666666;
  transition: .3s;
}

.add-learn-img #custom-file-input1:hover::before {
  background: #364361;
  color: var(--white);
}

.contact-view-message {
  z-index: 101;
}

.add-learn-img .custom-file-input1-admin#custom-file-input1::before {
  content: 'افزودن عکس  + ';
  display: block;
  background: #e2eaf8;
  border: 2px solid #b5b5b5;
  border-radius: 10px;
  width: 200px;
  height: 170px;
  outline: none;
  white-space: nowrap;
  -webkit-user-select: none;
  cursor: pointer;
  font-weight: 700;
  font-size: 26px;
  font-family: vazir-light;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666666;
  transition: .3s;
}

.add-learn-img .custom-file-input1-admin#custom-file-input1:hover::before {
  background: #364361;
  color: var(--white);
}

.learn-section-back-single {
  width: 92%;
  max-width: 1100px;
  display: flex;
  flex-direction: column;
}

.learn-single-top {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-bottom: 60px;
  gap: 30px;
}

.learn-single-top-img {
  width: 100%;
  max-width: 550px;
  max-height: 350px;
  overflow: hidden;
  border-radius: 25px;
}

.learn-single-top-img img {
  width: 100%;
  object-fit: cover;
}

.learn-single-top-txt {
  width: 100%;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  font-family: vazir-light;
}

.learn-single-top-txt-link {
  margin-top: -20px;
  margin-bottom: 30px;
  margin-right: -50px;
  display: flex;
  align-items: center;
  color: #acacac;
  font-size: 10px;
  gap: 10px;
}

.learn-single-top-txt-link i {
  margin-top: -2px;
  display: flex;
  align-items: center;
  color: #bdbdbd;
  font-size: 10px;
  gap: 10px;
}

.learn-single-top-txt-link a {
  font-size: 14px;
  font-family: vazir-regular;
  color: #979797;
}

.learn-single-top-txt h1 {
  max-width: 80%;
  font-size: 35px;
  color: #4b4b4b;
  font-family: vazir-extrabold;
  margin-bottom: 30px;
  line-height: 53px;
  word-spacing: -5px;
}

.learn-single-top-txt h3 {
  max-width: 100%;
  font-size: 24px;
  color: #a89ff3;
  font-family: vazir-extrabold;
  margin-bottom: 10px;
  margin-top: 10px;
}

.learn-single-top-txt p {
  max-width: 90%;
  font-size: 17px;
  color: #666666;
  line-height: 30px;
  text-align: justify;
  font-family: vazir-light;
}


.learn-single-bottom {
  font-size: 16px;
  font-family: vazir-light;
  text-align: justify;
  line-height: 30px;
  color: #505050;
}

.learn-single-bottom p {
  font-family: vazir-light;
  text-align: justify;
}

.learn-single-bottom h1,
.learn-single-bottom h2,
.learn-single-bottom h3 {
  margin: 20px 0;
}




.admin-learn-edit-text {
  width: 100%;
  padding: 20px 30px;
  background-color: var(--white);
  box-shadow: 0 0 10px #d5d5d5;
  border-radius: 20px;
}

.admin-learn-edit-text form {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.admin-learn-edit-text form input {
  width: 100%;
  padding: 12px 20px;
  border-radius: 12px;
  border: 1px solid #c9c9c9;
  font-size: 17px;
  font-family: vazir-light;
  margin-bottom: 20px;
  outline: none;
  color: #767676;
}

.admin-learn-edit-text form label {
  font-size: 16px;
  font-family: vazir-regular;
  color: #969696;
  margin-bottom: 10px;
}

.admin-learn-edit-text-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.admin-learn-edit-text-submit button {
  width: 200px;
  padding: 12px 0;
  font-size: 20px;
  font-family: vazir-light;
  background-color: #738cc0;
  border: none;
  color: var(--white);
  border-radius: 12px;
  cursor: pointer;
  margin-top: 10px;
  transition: .3s;
}

.admin-learn-edit-text-submit button:hover {
  background-color: #6376a0;
}





#add-work-team-links-back {
  flex-direction: row;
  gap: 0;
  justify-content: space-between;
}

.team-link-back {
  position: relative;
  width: 31%;
  overflow: hidden;
  border-radius: 12px;
}

.team-link-back input {
  padding-left: 60px;
  text-align: left;
}

.team-link-back label {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background-color: #d8d8d8;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: vazir-light;
  font-size: 16px;
  transition: .2s;
}

.team-link-back input:focus~label {
  background-color: #8ca3ed;
  color: var(--white);
}

.team-link-back input::-webkit-outer-spin-button,
.team-link-back input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}





.admin-texts-back {
  width: 100%;
  border-radius: 20px;
  background-color: var(--white);
  box-shadow: 0 0 15px #dadada;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.admin-texts-back form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 150px;
  padding: 20px 30px;
  font-family: vazir-light;
  font-size: 19px;
}

.admin-texts-back form textarea {
  width: 100%;
  padding: 12px 15px;
  font-family: vazir-light;
  font-size: 16px;
  outline: none;
  background-color: var(--white);
  border: 1px solid #e8e8e8;
  border-radius: 13px;
  color: #747474;
}

.admin-texts-back form input {
  width: 100%;
  padding: 12px 15px;
  font-family: vazir-light;
  font-size: 17px;
  outline: none;
  background-color: var(--white);
  border: 1px solid #e8e8e8;
  border-radius: 13px;
  color: #747474;
}

.admin-texts-back form label {
  margin: 25px 0 15px 0;

}

.admin-texts-back form label:nth-child(1) {
  margin: 0px 0 15px 0;
  margin-top: 0;
}

.admin-texts-back form button {
  width: 220px;
  padding: 12px 15px;
  font-family: vazir-light;
  font-size: 18px;
  outline: none;
  background-color: #4f5f83;
  border: 1px solid #e8e8e8;
  border-radius: 13px;
  color: var(--white);
  margin-top: 30px;
  margin-right: auto;
  cursor: pointer;
}


#form-about-text label {
  font-family: vazir-regular;
  font-size: 18px;
  color: #505050;
  margin-left: auto;
  margin-right: 5px;
  margin-bottom: -10px;
  margin-top: 10px;
}

#form-about-text label:nth-child(1) {
  margin-top: 0px;
}





















#admin-order-view .contact-view-message-back {
  width: 100%;
  max-width: 900px;
  min-height: 500px;
  max-height: 90vh;
  border-radius: 15px;
  background-color: transparent;
  box-shadow: none;
  padding: 0;
  margin-top: 30px;
  font-family: vazir-light;
  font-size: 17px;
  z-index: 2;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  gap: 20px;
}

/* #admin-order-view .user-account-order{
  position: relative;
  background-color: #00000015;
  top: 0;
  margin-top: ;
} */
#admin-order-view .contact-view-message-back a {
  position: absolute;
  top: 10px;
  right: 20px;
  color: var(--blue);
  font-size: 20px;
}

#admin-order-view .contact-view-message-div {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

#admin-order-view .contact-view-message-div a {
  position: relative;
  font-size: 16px;
  font-family: vazir-light;
  color: var(--white);
  background-color: var(--secondcolor);
  border-radius: 5px;
  padding: 12px 25px;
  margin: -20px auto 0 20px;
}

#admin-order-view .contact-view-message-back p {
  width: 100%;
  border: none;
  background-color: transparent;
  box-shadow: none;
  height: auto;
  display: flex;
  align-items: center;
  /* gap: 30px; */
  padding: 0 10px;
  border-radius: 12px;
  color: #303030;
  transition: .3s;
}

#admin-order-view .contact-view-message-div-topic {
  width: 100%;
}

#admin-order-view .contact-view-message-div-txt {
  width: 100%;
}

#admin-order-view .contact-view-message-div-txt p {
  min-height: 200px;
  height: auto;
  text-align: justify;
  line-height: 30px;
  font-size: 15px;
  align-items: flex-start;
  padding: 12px 15px;
}

#admin-order-view .order-information-bottom p {
  gap: 30px;
}

#admin-order-view .cart-value {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
}

#admin-order-view .cart-value p {
  padding: 0;
  font-size: 14px;
  min-width: 80px;
}

#admin-order-view .cart-value:nth-child(1) h3 {
  font-size: 15px;
  color: #aaaaaa;
}

#admin-order-information-top {
  width: 107.8%;
  margin-right: -31px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -21px;
  margin-bottom: 20px;
  background-color: #3a4764;
  padding: 15px;
  border-radius: 15px 15px 0 0;
}

#admin-order-information-top form {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-evenly;
}

#admin-order-information-top form label {
  color: var(--white);
}

#admin-order-information-top form button {
  width: 170px;
  height: 50px;
  font-size: 16px;
  background-color: transparent;
  border: 1px solid #dddddd;
  color: var(--white);
}

#admin-order-information-top form select {
  width: 200px;
  height: 50px;
  display: flex;
  align-items: center;
  border-radius: 15px;
  border: none;
  /* padding: 0 20px; */
  /* box-shadow: 0 0 10px 1px #cccccc; */
  font-family: vazir-extrabold;
  font-size: 19px;
  cursor: pointer;
  outline: none;
  color: var(--white);
  background-color: transparent;
  text-shadow: 0 0 10px var(--white);
}

#admin-order-information-top form option {
  color: #3a4764;
  font-size: 14px;
}