@font-face {
  font-family: "IRANSans-Bold";
  src: url("../fonts/iransans/eot/IRANSansWeb(FaNum)_Bold.eot") format("embedded-opentype"), url("../fonts/iransans/woff/IRANSansWeb(FaNum)_Bold.woff") format("woff"), url("../fonts/iransans/ttf/IRANSansWeb(FaNum)_Bold.ttf") format("truetype");
  font-style: normal;
}
@font-face {
  font-family: "IRANSans-Medium";
  src: url("../fonts/iransans/eot/IRANSansWeb(FaNum)_Medium.eot") format("embedded-opentype"), url("../fonts/iransans/woff/IRANSansWeb(FaNum)_Medium.woff") format("woff"), url("../fonts/iransans/ttf/IRANSansWeb(FaNum)_Medium.ttf") format("truetype");
  font-style: normal;
}
@font-face {
  font-family: "IRANSans-Light";
  src: url("../fonts/iransans/eot/IRANSansWeb(FaNum)_Light.eot") format("embedded-opentype"), url("../fonts/iransans/woff/IRANSansWeb(FaNum)_Light.woff") format("woff"), url("../fonts/iransans/ttf/IRANSansWeb(FaNum)_Light.ttf") format("truetype");
  font-style: normal;
}
* {
  margin: 0;
  padding: 0;
  outline: none;
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
  direction: rtl;
}

a {
  text-decoration: none;
}

ul {
  padding: 0;
  margin: 0;
}

li {
  list-style: none;
}

p {
  margin: 0;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
}

.my-80 {
  margin: 80px 0;
}

.mt-80 {
  margin-top: 80px;
}

.mb-80 {
  margin-bottom: 80px;
}

.my-100 {
  margin: 100px 0;
}

.mt-100 {
  margin-top: 100px;
}

.mb-100 {
  margin-bottom: 100px;
}

.gap-2 {
  gap: 2px;
}

.gap-4 {
  gap: 4px;
}

.gap-10 {
  gap: 10px;
}

.gap-20 {
  gap: 20px;
}

.AZ-img-container {
  position: relative;
  overflow: hidden;
  display: block;
}
.AZ-img-container::after {
  content: "";
  display: block;
}

.AZ-img-container-inner {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.AZ-img-cover img {
  width: 100% !important;
  height: 100% !important;
  -o-object-fit: cover !important;
     object-fit: cover !important;
}

.AZ-primary-btn,
.AZ-secondary-btn {
  font-size: 16px;
  color: #FFFFFF;
  font-family: "IRANSans-Bold";
  padding: 8px 40px;
  transition: all 0.2s linear;
  background: #D1AD9F;
  border: 1px solid #D1AD9F;
}
.AZ-primary-btn:hover,
.AZ-secondary-btn:hover {
  color: #ffffff;
  background: #000;
  border: 1px solid #000;
}

.AZ-secondary-btn {
  background: #3D3D3D;
  color: #fff;
  border: 1px solid #3D3D3D;
}
.AZ-secondary-btn:hover {
  color: #fff;
  background: #000;
}

.AZ-field-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 25px;
}
.AZ-field-group label {
  font-size: 12px;
  color: #000;
  font-family: "IRANSans-Light";
  margin-bottom: 8px;
}
.AZ-field-group input, .AZ-field-group textarea {
  font-size: 16px;
  color: #000000;
  font-family: "IRANSans-Light";
  background: transparent;
  padding: 10px;
  border: 1px solid #828282;
}
.AZ-field-group input:focus, .AZ-field-group textarea:focus {
  border: 1px solid #D1AD9F;
}
.AZ-field-group input {
  height: 38px;
}

.AZ-radio-geroup {
  margin-bottom: 10px;
}
.AZ-radio-geroup label {
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  padding-right: 45px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.AZ-radio-geroup label p {
  font-size: 18px;
  color: #3D3D3D;
  font-family: "IRANSans-Bold";
}
.AZ-radio-geroup label span {
  font-size: 18px;
  color: #525252;
  font-family: "IRANSans-Light";
}
.AZ-radio-geroup label::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 4px solid #fff;
  outline: 0.5px solid #E0E0E0;
  background: #CCC;
  transition: all 0.2s linear;
}
.AZ-radio-geroup input {
  display: none;
}
.AZ-radio-geroup input:checked ~ label::after {
  background: #3D3D3D;
}

.AZ-checkbox-group {
  margin-bottom: 15px;
}
.AZ-checkbox-group label {
  font-size: 14px;
  color: #000000;
  font-family: "IRANSans-Light";
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  cursor: pointer;
  padding-right: 30px;
}
.AZ-checkbox-group label::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  font-family: "icomoon";
  width: 24px;
  height: 24px;
  border: 1px solid #B5B5B5;
  transition: all 0.2s linear;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
.AZ-checkbox-group input {
  display: none;
}
.AZ-checkbox-group input:checked ~ label::after {
  content: "\e904";
  background: #000;
}

.upload_image .preview-profile-img {
  min-width: 88.664px;
  outline: 1px solid rgba(0, 0, 0, 0.1411764706);
  border-radius: 50%;
}
.upload_image .preview-profile-img::after {
  padding-bottom: 100%;
}
.upload_image .upload-profile-wrapper input {
  display: none;
}
.upload_image .upload-profile-wrapper label {
  font-size: 12px;
  font-family: "IRANSans-Light";
  color: #000000;
  text-decoration: underline;
  transition: all 0.2s linear;
  cursor: pointer;
}

#accordian {
  width: 100%;
  min-height: 100vh;
  height: 100%;
}
#accordian ul {
  padding: 0;
  margin: 0;
  width: 100%;
}
#accordian ul li a {
  position: relative;
}

#accordian > ul.show-dropdown > li.active > a,
#accordian > ul > li > ul.show-dropdown > li.active > a,
#accordian > ul > li > ul > li > ul.show-dropdown > li.active > a,
#accordian > ul > li > ul > li > ul > li > ul.show-dropdown > li.active > a,
#accordian > ul > li > ul > li > ul > li > ul > li > ul.show-dropdown > li.active > a {
  width: 100%;
}

#accordian > ul.show-dropdown > li > a,
#accordian > ul > li > ul.show-dropdown > li > a,
#accordian > ul > li > ul > li > ul.show-dropdown > li > a,
#accordian > ul > li > ul > li > ul > li > ul.show-dropdown > li > a,
#accordian > ul > li > ul > li > ul > li > ul > li > ul.show-dropdown > li > a {
  width: 100%;
  border-bottom: 1px solid #B5B5B5;
}

#accordian > ul > li > ul,
#accordian > ul > li > ul > li > ul,
#accordian > ul > li > ul > li > ul > li > ul,
#accordian > ul > li > ul > li > ul > li > ul > li > ul {
  display: none;
  position: relative;
}

#accordian > ul > li.active > ul.show-dropdown,
#accordian > ul > li > ul > li.active > ul.show-dropdown,
#accordian > ul > li > ul > li > ul > li.active > ul.show-dropdown,
#accordian > ul > li > ul > li > ul > li > ul > li.active > ul.show-dropdown {
  display: block;
  margin-right: 15px;
}

#accordian a:not(:only-child):after {
  content: "\e908";
  position: absolute;
  left: 10px;
  top: 5px;
  font-size: 20px;
  font-family: "icomoon";
  display: inline-block;
  padding-right: 0;
  vertical-align: middle;
  transition: 0.2s;
}

#accordian .active > a:not(:only-child):after {
  transform: rotate(180deg);
}

.AZ-header .search-nav {
  background: #D1AD9F;
  min-width: 400px;
  border-radius: 40px;
  height: 45px;
}
.AZ-header .search-nav input {
  font-size: 12px;
  color: #242424;
  font-family: "IRANSans-Medium";
  background: transparent;
  flex-grow: 1;
  padding: 10px 15px;
  border: 0;
}
.AZ-header .search-nav button {
  font-size: 20px;
  color: #333333;
  padding: 0 20px;
  border: 0;
  background: transparent;
}
.AZ-header .nav-item .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 12px;
  background: #000;
}
.AZ-header .nav-item:last-child .nav-link::after {
  content: none;
}
.AZ-header .nav-link {
  font-size: 12px;
  color: #000000;
  font-family: "IRANSans-Medium";
  padding: 10px 15px !important;
  transition: all 0.2s linear;
  position: relative;
}
.AZ-header .nav-link:hover {
  color: #6A705A !important;
}
.AZ-header .brand-navbar img {
  width: 59px;
}
.AZ-header .nav-icon {
  font-size: 22px;
  color: #3D3D3D;
}
.AZ-header .search-btn::after {
  content: none;
}
.AZ-header .dropdown-search {
  background: transparent;
  border: 0;
  padding: 0;
  left: 0;
  right: unset;
}
.AZ-header .navbar-brand {
  margin-left: 0;
}
.AZ-header .navbar-brand img {
  width: 59px;
}

.has-dropdown:hover .megamenu,
.has-dropdown:hover .dropdown-wrapper {
  display: block;
}
.has-dropdown .dropdown-wrapper {
  min-width: 300px;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 10;
  display: none;
  padding: 10px;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25);
  background: #fff;
}
.has-dropdown .dropdown-wrapper-link {
  font-size: 12px;
  color: #000;
  font-family: "IRANSans-Light";
  white-space: nowrap;
  padding: 8px 5px;
  transition: all 0.2s linear;
}
.has-dropdown .dropdown-wrapper-link:hover {
  background: #D1AD9F;
}
.has-dropdown .profile-btn {
  background: #EDEDED;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 14px;
  font-family: "IRANSans-Light";
}
.has-dropdown .dropdown-wrapper-item {
  border-bottom: 1px solid #B5B5B5;
}
.has-dropdown .dropdown-wrapper-item:last-child {
  border-bottom: 0;
}
.has-dropdown .megamenu {
  width: 100%;
  min-width: 100%;
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 10;
  box-shadow: 0px 0px 11px rgba(0, 0, 0, 0.25);
  background: linear-gradient(82deg, rgba(255, 255, 255, 0) -33.53%, #FFF 45.02%), url("../img/megamenu-bg.png");
  background-repeat: no-repeat, no-repeat;
  background-size: cover, cover;
  background-position: left bottom, center center;
  display: none;
  padding: 20px;
  height: 400px;
  max-height: 400px;
  overflow-y: auto;
}
.has-dropdown .megamenu-link {
  font-size: 14px;
  color: #7A7A7A;
  font-family: "IRANSans-Light";
  padding: 5px 0;
}
.has-dropdown .megamenu-link:hover {
  color: #000;
}
.has-dropdown .megamenu-title {
  font-size: 14px;
  color: #000000;
  font-family: "IRANSans-Medium";
  padding: 5px 0;
  padding-right: 8px;
  border-right: 3px solid #D1AD9F;
}

.offcanvas .offcanvas-title {
  font-size: 20px;
  color: #242424;
  font-family: "IRANSans-Medium";
}
.offcanvas .empty-wrapper .empty-text {
  font-size: 16px;
  color: #242424;
  font-family: "IRANSans-Bold";
}

.offcanvas-menu {
  width: 300px;
}

.offcanvas-cart .offcanvas-header {
  background: #CCC;
}
.offcanvas-cart .offcanvas-footer {
  border-top: 1px solid rgba(0, 0, 0, 0.105);
  padding: 15px;
}
.offcanvas-cart .cart-item-details {
  font-size: 12pxx;
  color: #7A7A7A;
  font-family: "IRANSans-Light";
}
.offcanvas-cart .cart-item {
  transition: all 0.2s linear;
}
.offcanvas-cart .cart-item .cart-item-img {
  min-width: 80px;
}
.offcanvas-cart .cart-item .cart-item-img img {
  max-width: 100%;
  max-height: 100%;
}
.offcanvas-cart .cart-item .cart-item-img::after {
  padding-bottom: 120%;
}
.offcanvas-cart .cart-item .cart-item-title {
  font-size: 14px;
  color: #525252;
  font-family: "IRANSans-Medium";
  margin-bottom: 10px;
}
.offcanvas-cart .cart-item .cart-item-close {
  color: #525252;
  font-size: 20px;
}
.offcanvas-cart .cart-item .cart-item-price {
  font-size: 16px;
  font-family: "IRANSans-Light";
  color: #D71F1F;
}
.offcanvas-cart .cart-item .old-price {
  font-size: 12px;
  font-family: "IRANSans-Light";
  color: #8F8F8F;
  text-decoration: line-through;
}
.offcanvas-cart .cart-item .quantity-field {
  height: 20px;
}
.offcanvas-cart .cart-item:hover {
  background: #f5f5f5;
}
.offcanvas-cart .total {
  font-size: 18px;
  color: #242424;
  font-family: "IRANSans-Bold";
}
.offcanvas-cart .total-price {
  font-size: 18px;
  color: #3D3D3D;
  font-family: "IRANSans-Bold";
}

.AZ-footer {
  padding-bottom: 70px;
  background: #D9D9D9;
}
.AZ-footer .footer-content {
  background: #fff;
}
.AZ-footer .footer-content .container {
  border-top: 1px solid #000;
  padding: 40px 12px;
}
.AZ-footer .footer-title {
  font-size: 20px;
  color: #000000;
  font-family: "IRANSans-Bold";
  margin-bottom: 20px;
}
.AZ-footer .footer-link {
  font-size: 14px;
  color: #000000;
  font-family: "IRANSans-Bold";
  transition: all 0.2s linear;
  padding: 5px 0;
}
.AZ-footer .footer-link:hover {
  color: #D1AD9F;
}
.AZ-footer .footer-brand img {
  width: 111px;
}

.AZ-contact-page {
  padding: 40px 0 0;
  overflow-x: hidden;
}
.AZ-contact-page .AZ-field-group input, .AZ-contact-page .AZ-field-group textarea {
  border-radius: 0;
  border: 0;
  border-bottom: 1px solid #000;
}
.AZ-contact-page .contact-box {
  padding: 86px 25px;
  margin-bottom: -80px;
  z-index: 1;
  position: relative;
  background: #FFF;
  box-shadow: 0px 4px 9px 0px rgba(0, 0, 0, 0.25);
}
.AZ-contact-page .contact-items {
  background: #F0F0F0;
  padding: 75px 30px 75px 50px;
  direction: ltr;
}
.AZ-contact-page .social a {
  background: transparent;
  font-size: 20px;
  color: #000;
}
.AZ-contact-page .contact-link {
  font-size: 20px;
  color: #4D5053;
  font-family: "IRANSans-Light";
  transition: all 0.2s linear;
}
.AZ-contact-page .contact-link:hover {
  color: #AA0000;
}
.AZ-contact-page .contact-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
  color: #D1AD9F;
}
.AZ-contact-page .map-bg,
.AZ-contact-page .header-bg {
  width: 100%;
}
.AZ-contact-page .map-bg::after,
.AZ-contact-page .header-bg::after {
  padding-bottom: 30%;
}

.AZ-social a {
  font-size: 20px;
  color: #292F36;
}

.AZ-location {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  z-index: 1;
  padding: 0;
}
.AZ-location .map {
  position: relative;
  width: 100%;
  height: 100%;
}

.AZ-blog-page {
  padding: 40px 0;
}
.AZ-blog-page .blog-title {
  font-size: 24px;
  color: #000;
  font-family: "IRANSans-Bold";
  line-height: 54px;
}
.AZ-blog-page .blog-banner-square::after {
  padding-bottom: 100%;
}
.AZ-blog-page .blog-banner {
  width: 100%;
  height: 100%;
}
.AZ-blog-page .blog-banner-overlay {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 30px;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  background: linear-gradient(0deg, #000 -6.9%, rgba(0, 0, 0, 0) 100%);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
}
.AZ-blog-page .blog-banner-title {
  font-size: 24px;
  color: #FFFFFF;
  font-family: "IRANSans-Bold";
}
.AZ-blog-page .blog-banner-title span {
  font-size: 24px;
  color: #ffffff;
}
.AZ-blog-page .blog-banner-date {
  font-size: 12px;
  color: #FFFFFF;
  font-family: "IRANSans-Bold";
  position: absolute;
  right: 0;
  top: 0;
  background: #000;
  padding: 3px 20px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.AZ-blog-page .blog-banner-text {
  font-size: 16px;
  color: #FFFFFF;
  font-family: "IRANSans-Bold";
}
.AZ-blog-page .middle-img {
  width: 100%;
  border-radius: 20px;
}
.AZ-blog-page .middle-img::after {
  padding: 30%;
}
.AZ-blog-page .latest-news-list li {
  border-bottom: 1px solid rgba(130, 130, 130, 0.6);
  padding: 10px 0;
}
.AZ-blog-page .latest-news-list li:last-child {
  border-bottom: 0;
}
.AZ-blog-page .latest-news-list .latest-news_title {
  font-size: 18px;
  color: #000000;
  font-family: "IRANSans-Bold";
}
.AZ-blog-page .latest-news-list .latest-news_btn,
.AZ-blog-page .latest-news-list .latest-news_date,
.AZ-blog-page .latest-news-list .latest-news_text {
  font-size: 16px;
  color: #000000;
  font-family: "IRANSans-Medium";
}
.AZ-blog-page .latest-news-list .latest-news_btn {
  text-decoration: underline;
}
.AZ-blog-page .blog-page_about {
  padding-top: 40px;
  margin-top: 40px;
  border-top: 1px solid #000000;
}

.AZ-comments .comment-box {
  margin-bottom: 30px;
}
.AZ-comments .comment-img {
  min-width: 110px;
  border-radius: 50%;
  background: #EEEEEE;
}
.AZ-comments .comment-img::after {
  padding-bottom: 100%;
}
.AZ-comments .comment-name {
  font-size: 16px;
  color: #000000;
  font-family: "IRANSans-Bold";
}
.AZ-comments .comment-text {
  font-size: 16px;
  color: #262626;
  font-family: "IRANSans-Medium";
}
.AZ-comments .reply-btn {
  font-size: 16px;
  color: #262626;
  font-family: "IRANSans-Bold";
  transition: all 0.2s linear;
}
.AZ-comments .reply-btn:hover {
  color: #FFC700;
}
.AZ-comments .reply-box {
  padding-right: 50px;
}

.AZ-post-card .post-card-img {
  width: 100%;
}
.AZ-post-card .post-card-img::after {
  padding-bottom: 50%;
}
.AZ-post-card .post-card-body {
  padding: 10px 0;
}
.AZ-post-card .post-card-title {
  font-size: 16px;
  color: #000000;
  font-family: "IRANSans-Bold";
}
.AZ-post-card .post-card-category {
  font-size: 12px;
  color: #7A7A7A;
  font-family: "IRANSans-Bold";
}
.AZ-post-card .post-card-score {
  font-size: 16px;
  color: #000000;
  font-family: "IRANSans-Bold";
}

.AZ-pagination-wrapper {
  margin-top: 30px;
}
.AZ-pagination-wrapper .pagination {
  gap: 10px;
}
.AZ-pagination-wrapper .pagination .page-link {
  width: 35px;
  height: 35px;
  border: 0;
  font-size: 16px;
  color: #000;
  font-family: "IRANSans-Light";
  border: 1px solid #CCC;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}
.AZ-pagination-wrapper .pagination .page-link:focus {
  box-shadow: unset;
}
.AZ-pagination-wrapper .pagination .page-nav {
  background: #000;
  color: #fff;
  border-radius: 0;
}
.AZ-pagination-wrapper .page-item:first-child .page-link {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.AZ-pagination-wrapper .page-item:last-child .page-link {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.AZ-section-wrapper .line {
  flex-grow: 1;
  height: 1px;
  background: #828282;
}

.AZ-title-wrapper {
  margin-bottom: 20px;
}
.AZ-title-wrapper .line {
  max-width: 133px;
  width: 133px;
  height: 1px;
  background: #828282;
}

.AZ-page-title {
  font-size: 20px;
  color: #000000;
  font-family: "IRANSans-Bold";
  white-space: nowrap;
}

.AZ-section-title {
  font-size: 24px;
  color: #000000;
  margin-bottom: 20px;
  font-family: "IRANSans-Bold";
  position: relative;
}

.AZ-page-text {
  font-size: 16px;
  color: #000000;
  font-family: "IRANSans-Bold";
  line-height: 37px;
}

.AZ-box {
  border: 1px solid #A3A3A3;
  padding: 24px;
  background: #fff;
  margin-bottom: 15px;
}

.AZ-styled-select {
  min-width: 200px;
  min-height: 35px;
  background: #000;
  display: inline-block;
  position: relative;
  overflow: hidden;
}
.AZ-styled-select::before {
  content: "\e908";
  font-family: "icomoon";
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 30px;
  color: #fff;
}
.AZ-styled-select select {
  font-size: 16px;
  padding: 0 10px;
  border: 0;
  position: absolute;
  left: 0;
  top: 0;
  background: transparent;
  font-family: "IRANSans-Bold";
  height: 100%;
  width: 100%;
  color: #FFFFFF;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
}
.AZ-styled-select select option {
  background: #000;
}

.AZ-post-page {
  padding: 40px 0;
}
.AZ-post-page .post-title {
  font-size: 24px;
  color: #000;
  font-family: "IRANSans-Medium";
  line-height: 50px;
}
.AZ-post-page .post-ditails {
  font-size: 16px;
  color: #000000;
  font-family: "IRANSans-Light";
}
.AZ-post-page .social a {
  width: 36.75px;
  height: 36.75px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.2s linear;
  color: #696969;
}
.AZ-post-page .social a:hover {
  color: #FFFFFF;
  background: #D1AD9F;
}
.AZ-post-page .tag {
  font-size: 16px;
  color: #595959;
  font-family: "IRANSans-Medium";
  background: #F2F2F2;
  padding: 5px 10px;
  transition: all 0.2s linear;
}
.AZ-post-page .tag:hover {
  background: #D1AD9F;
  color: #fff;
}
.AZ-post-page .tag-text {
  font-size: 16px;
  color: #595959;
  font-family: "IRANSans-Bold";
  margin: 0;
  white-space: nowrap;
}

article h1, article h2, article h3 {
  font-size: 24px;
  color: #000;
  font-family: "IRANSans-Bold";
  line-height: 50px;
  margin-bottom: 15px;
}
article h2, article h3 {
  margin-top: 30px;
}
article h4, article h5 {
  font-size: 20px;
  color: #000;
  font-family: "IRANSans-Bold";
  margin-bottom: 15px;
  margin-top: 30px;
}
article p {
  font-size: 16px;
  color: #000;
  font-family: "IRANSans-Medium";
  line-height: 40px;
  margin-bottom: 15px;
}
article img {
  width: 100%;
  margin-bottom: 30px;
  border-radius: 20px;
}

.AZ-about-page {
  overflow-x: hidden;
  padding: 40px 0;
}
.AZ-about-page .header-img {
  width: 100%;
  margin-bottom: 50px;
  height: 900px;
  padding: 50px 0;
  position: relative;
}
.AZ-about-page .header-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.AZ-about-page .header-img .about-text {
  position: relative;
  z-index: 1;
}
.AZ-about-page .description-box {
  padding: 80px;
  background: #F1F1F1;
}
.AZ-about-page .description-box .desc-text,
.AZ-about-page .description-box .desc-name {
  font-size: 24px;
  color: #000000;
  font-family: "IRANSans-Medium";
  line-height: 42px;
}
.AZ-about-page .icon-box::before, .AZ-about-page .icon-box::after {
  content: "\e957";
  font-family: "icomoon";
  position: absolute;
  right: 0;
  top: -40px;
  font-size: 30px;
  color: #000;
}
.AZ-about-page .icon-box::before {
  content: "\e956";
  right: unset;
  left: 0;
  top: unset;
  bottom: -10px;
}
.AZ-about-page .icon-box-title {
  font-size: 16px;
  color: #000000;
  font-family: "IRANSans-Bold" !important;
}
.AZ-about-page .icon-box-img {
  font-size: 22px;
  color: #718E99;
}
.AZ-about-page .pr-5 {
  padding-right: 100px;
}
.AZ-about-page .pl-5 {
  padding-left: 100px;
}

.AZ-related-products {
  position: relative;
  padding: 80px 0;
  margin-top: 50px;
}
.AZ-related-products::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 70%;
  width: 100%;
  background: url("../img/Mask group.png"), linear-gradient(95deg, #FFB800 -39.29%, #FFF2C5 103.96%);
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}
.AZ-related-products .view-all {
  font-size: 20px;
  color: #000000;
  font-family: "IRANSans-Medium";
}
.AZ-related-products .view-all span {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #fff;
  color: #828282;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.AZ-related-products.bg-gray::after {
  background: url("../img/Mask group.png"), #F2F2F2;
}

.AZ-product-card {
  display: flex;
  flex-direction: column;
}
.AZ-product-card .product-card-img {
  width: 100%;
}
.AZ-product-card .product-card-img::after {
  padding-bottom: 115%;
}
.AZ-product-card .product-card-body {
  padding: 15px 0;
}
.AZ-product-card .product-card-title {
  font-size: 20px;
  color: #000000;
  font-family: "IRANSans-Medium";
  transition: all 0.2s linear;
  margin-bottom: 15px;
}
.AZ-product-card .old-price {
  font-size: 15px;
  color: #8F8F8F;
  font-family: "IRANSans-Light";
  text-decoration: line-through;
}
.AZ-product-card .product-card-price {
  font-size: 20px;
  color: #000000;
  font-family: "IRANSans-Medium";
}
.AZ-product-card:hover .product-card-title {
  color: #D1AD9F;
}

.product-img {
  width: 100%;
}
.product-img::after {
  padding-bottom: 80%;
}
.product-img img {
  max-width: 100%;
  max-height: 100%;
}

.AZ-menu-item-card {
  background: #fff;
  box-shadow: 1px 3px 11px rgba(0, 0, 0, 0.14);
  border-radius: 16px;
  padding: 20px;
}
.AZ-menu-item-card .size-span {
  font-size: 12px;
  color: #000000;
  font-family: "IRANSans-Medium";
  border-radius: 3px;
  background: #F2F2F2;
  padding: 3px 15px;
  transition: all 0.2s linear;
}
.AZ-menu-item-card .size-span:hover {
  color: #fff;
  background: #FFC700;
}
.AZ-menu-item-card .menu-item-name,
.AZ-menu-item-card .menu-item-price {
  font-size: 16px;
  color: #000000;
  font-family: "IRANSans-Medium";
  margin-top: 10px;
}
.AZ-menu-item-card .menu-item-img {
  width: 100%;
}
.AZ-menu-item-card .menu-item-img::after {
  padding-bottom: 40%;
}
.AZ-menu-item-card .menu-item-img img {
  max-width: 100%;
  max-height: 100%;
}

.AZ-categories-sidebar .category-accordion {
  border: 1px solid #7A7A7A;
}
.AZ-categories-sidebar .category-accordion .accordion-item.open .accordion-item__button .span {
  display: none;
}
.AZ-categories-sidebar .category-accordion .accordion-item__button {
  padding: 15px;
}
.AZ-categories-sidebar .category-accordion .accordion-item__button .span {
  font-size: 16px;
  color: #7A7A7A;
  font-family: "IRANSans-Light";
  display: block;
}
.AZ-categories-sidebar .category-accordion .accordion-content {
  padding: 15px;
  border-top: 1px solid #000;
}
.AZ-categories-sidebar .checkboxes-group {
  border: 1px solid #000;
  padding: 10px;
  overflow-y: auto;
  max-height: 200px;
}
.AZ-categories-sidebar .range-wrapper {
  width: 100%;
  direction: ltr;
  margin: 20px 0;
}
.AZ-categories-sidebar .range-wrapper .range__label {
  color: #607079;
  font-size: 12px;
  font-family: "IRANSans-Medium";
}
.AZ-categories-sidebar .range-wrapper .range__input {
  width: 70px;
  padding: 0;
  background: transparent;
  border: none;
  color: #354752;
  font-size: 16px;
  font-family: "IRANSans-Medium";
  border-bottom: 1px solid #B8B8B8;
  flex-grow: 2;
  margin: 0 20px;
}
.AZ-categories-sidebar .range-wrapper .range-slider {
  margin: 0;
  width: 100%;
  background-image: linear-gradient(to right, #e7e7e7 var(--first-val), rgba(0, 0, 0, 0.7098039216) var(--first-val), rgba(0, 0, 0, 0.7098039216) var(--second-val), #e7e7e7 var(--second-val));
  background-size: 100% 4px;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  position: relative;
  z-index: 1;
  height: 20px;
  border-radius: 4px;
}
.AZ-categories-sidebar .range-wrapper .range-slider__input {
  width: 100%;
  height: 100%;
  padding: 0 !important;
  -webkit-appearance: none;
  background-color: transparent;
}
.AZ-categories-sidebar .range-wrapper .range-slider__input::-webkit-slider-runnable-track {
  background: none;
  height: 100%;
  width: 100%;
}
.AZ-categories-sidebar .range-wrapper .range-slider__input::-moz-range-track {
  background: none;
  height: 100%;
  width: 100%;
}
.AZ-categories-sidebar .range-wrapper .range-slider__input::-webkit-slider-thumb {
  background-color: #000;
  border-radius: 50%;
  pointer-events: auto;
  width: 20px;
  height: 20px;
  -webkit-appearance: none;
}
.AZ-categories-sidebar .range-wrapper .range-slider__input::-moz-range-thumb {
  border: none;
  border-radius: 5px;
  pointer-events: auto;
  width: 20px;
  height: 20px;
  -webkit-appearance: none;
}
.AZ-categories-sidebar .range-wrapper .range-slider__input:last-of-type {
  position: absolute;
}
.AZ-categories-sidebar .range-wrapper .range-slider__input:focus {
  outline: none;
}
.AZ-categories-sidebar .range-wrapper .range-slider__input:not(:only-of-type) {
  pointer-events: none;
  left: 0;
}

.AZ-accordion .accordion-item {
  width: 100%;
  border: none;
  overflow: hidden;
  background: transparent;
  border-bottom: 1px solid #000;
  border-radius: 0;
}
.AZ-accordion .accordion-item:last-child {
  border-bottom: 0;
}
.AZ-accordion .accordion-item:last-child .accordion-item__button::after {
  content: none;
}
.AZ-accordion .accordion-item.open .close-accordion {
  display: flex;
}
.AZ-accordion .accordion-item.open .open-accordion {
  display: none;
}
.AZ-accordion .accordion-item__button {
  border: none;
  width: 100%;
  transition: all 0.2s linear;
  cursor: pointer;
  position: relative;
  font-size: 16px;
  font-family: "IRANSans-Medium";
  color: #000000;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background: transparent;
  text-align: right;
  padding: 20px 0;
}
.AZ-accordion .accordion-item__button .close-accordion,
.AZ-accordion .accordion-item__button .open-accordion {
  display: none;
  margin-right: 10px;
  font-size: 30px;
  color: #000000;
}
.AZ-accordion .accordion-item__button .open-accordion {
  display: flex;
}

.AZ-similarProducts-section {
  padding: 100px 0;
  position: relative;
}
.AZ-similarProducts-section .swiper-button-next:after, .AZ-similarProducts-section .swiper-button-prev:after {
  font-size: 25px;
  color: #000;
}
.AZ-similarProducts-section .swiper-button-next {
  right: -30px;
}
.AZ-similarProducts-section .swiper-button-prev {
  left: -30px;
}

.AZ-product-page .swiper-container {
  overflow: hidden;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 480px) {
  .AZ-product-page .swiper-container {
    min-height: 320px;
  }
}
.AZ-product-page .swiper-container-wrapper {
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 480px) {
  .AZ-product-page .swiper-container-wrapper {
    flex-flow: row-reverse nowrap;
  }
}
.AZ-product-page .swiper-button-next, .AZ-product-page .swiper-button-prev {
  color: #000;
}
.AZ-product-page .swiper-button-next::after, .AZ-product-page .swiper-button-prev::after {
  font-size: 20px;
}
.AZ-product-page .swiper-slide {
  text-align: center;
  background-size: cover;
  background-position: center;
  background-color: #FFF;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
}
.AZ-product-page .swiper-slide .description,
.AZ-product-page .swiper-slide .title {
  display: block;
  opacity: 0;
  transition: 0.5s ease 0.5s;
}
.AZ-product-page .swiper-slide-active .description,
.AZ-product-page .swiper-slide-active .title {
  opacity: 1;
}
.AZ-product-page .swiper-slide img {
  max-height: 100%;
  max-width: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.AZ-product-page .gallery-top {
  position: relative;
  width: 100%;
  margin-bottom: 20px;
}
@media (min-width: 480px) {
  .AZ-product-page .gallery-top {
    width: 80%;
    margin-right: 10px;
  }
}
.AZ-product-page .gallery-top .gallery-img {
  width: 100%;
  height: 100%;
}
.AZ-product-page .gallery-top .gallery-img::after {
  padding-bottom: 120%;
}
.AZ-product-page .gallery-thumbs {
  width: 100%;
}
@media (min-width: 480px) {
  .AZ-product-page .gallery-thumbs {
    width: 20%;
    height: 600px;
    padding: 0;
  }
}
.AZ-product-page .gallery-thumbs .swiper-wrapper {
  flex-direction: row;
}
@media (min-width: 480px) {
  .AZ-product-page .gallery-thumbs .swiper-wrapper {
    flex-direction: column;
  }
}
.AZ-product-page .gallery-thumbs .swiper-slide {
  width: 25%;
  flex-flow: row nowrap;
  height: 100%;
  opacity: 0.75;
  cursor: pointer;
}
@media (min-width: 480px) {
  .AZ-product-page .gallery-thumbs .swiper-slide {
    flex-flow: column nowrap;
    width: 100%;
  }
}
.AZ-product-page .gallery-thumbs .swiper-slide-thumb-active {
  opacity: 1;
}
.AZ-product-page .gallery-thumbs .thumbs-img {
  width: 100%;
  background: yellow;
}
.AZ-product-page .gallery-thumbs .thumbs-img::after {
  padding-bottom: 120%;
}

.AZ-size-radio label {
  font-size: 12px;
  color: #A3A3A3;
  font-family: "IRANSans-Light";
  padding: 8px 10px;
  border: 0.5px solid #CCC;
  background: #FFF;
}
.AZ-size-radio input {
  display: none;
}
.AZ-size-radio input:checked ~ label {
  color: #3D3D3D;
  font-family: "IRANSans-Bold";
}

.AZ-comments-sction {
  padding: 40px 0;
}

.AZ-product-page {
  padding-top: 50px;
}
.AZ-product-page .buy-btn {
  height: 50px;
  padding: 5px;
}
.AZ-product-page .help-link {
  font-size: 12px;
  color: #7A7A7A;
  font-family: "IRANSans-Light";
  text-decoration: underline;
}
.AZ-product-page .help-link:hover {
  color: #000;
}
.AZ-product-page .product-price {
  font-size: 24px;
  color: #000000;
  font-family: "IRANSans-Light";
}
.AZ-product-page .old-price {
  font-size: 16px;
  color: #A3A3A3;
  font-family: "IRANSans-Light";
  text-decoration: line-through;
}
.AZ-product-page .AZ-field-group input,
.AZ-product-page .AZ-field-group textarea {
  border: 0;
  background: #f5f5f5;
}
.AZ-product-page .product-title {
  font-size: 24px;
  color: #000000;
  font-family: "IRANSans-Bold";
}
.AZ-product-page .product-box-title {
  font-size: 16px;
  color: #000000;
  font-family: "IRANSans-Light";
}
.AZ-product-page .product-desc,
.AZ-product-page .product-text {
  font-size: 16px;
  color: #666;
  font-family: "IRANSans-Light";
  margin: 10px 0;
}
.AZ-product-page .product-desc li,
.AZ-product-page .product-text li {
  list-style-type: disc;
  padding: 5px 0;
}
.AZ-product-page .product-desc {
  margin-right: 20px;
}
.AZ-product-page .line {
  flex-grow: 1;
  height: 1px;
  background: #000000;
}

.AZ-color-group input {
  display: none;
}
.AZ-color-group input:checked ~ label {
  outline: 3px solid #000;
}
.AZ-color-group label {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid gray;
  cursor: pointer;
}
.AZ-color-group label.gray {
  background: #767676;
}
.AZ-color-group label.gray2 {
  background: #A6A6A6;
}
.AZ-color-group label.gray3 {
  background: #CDCDCD;
}
.AZ-color-group label.whith {
  background: #FFF;
}
.AZ-color-group label.black {
  background: #000;
}

.range-wrapper {
  width: 100%;
  direction: ltr;
  margin: 20px 0;
}
.range-wrapper .range__label {
  color: #607079;
  font-size: 12px;
  font-family: "IRANSans-Light";
}
.range-wrapper .range__input {
  width: 70px;
  padding: 0;
  background: transparent;
  border: none;
  color: #354752;
  font-size: 16px;
  font-family: "IRANSans-Medium";
  border-bottom: 1px solid #C8D3D9;
  flex-grow: 2;
  margin: 0 20px;
}
.range-wrapper .range-slider {
  margin: 0;
  width: 100%;
  background-image: linear-gradient(to right, #BADDD8 var(--first-val), #AA0000 var(--first-val), #AA0000 var(--second-val), #BADDD8 var(--second-val));
  background-size: 100% 4px;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  position: relative;
  z-index: 1;
  height: 20px;
  border-radius: 4px;
}
.range-wrapper .range-slider__input {
  width: 100%;
  height: 100%;
  padding: 0 !important;
  -webkit-appearance: none;
  background-color: transparent;
}
.range-wrapper .range-slider__input::-webkit-slider-runnable-track {
  background: none;
  height: 100%;
  width: 100%;
}
.range-wrapper .range-slider__input::-moz-range-track {
  background: none;
  height: 100%;
  width: 100%;
}
.range-wrapper .range-slider__input::-webkit-slider-thumb {
  background-color: #A00;
  border-radius: 50%;
  pointer-events: auto;
  width: 20px;
  height: 20px;
  -webkit-appearance: none;
}
.range-wrapper .range-slider__input::-moz-range-thumb {
  border: none;
  border-radius: 5px;
  pointer-events: auto;
  width: 20px;
  height: 20px;
  -webkit-appearance: none;
}
.range-wrapper .range-slider__input:last-of-type {
  position: absolute;
}
.range-wrapper .range-slider__input:focus {
  outline: none;
}
.range-wrapper .range-slider__input:not(:only-of-type) {
  pointer-events: none;
  left: 0;
}

.mask-textarea {
  -webkit-mask-image: url("../img/bg-textarea.png");
          mask-image: url("../img/bg-textarea.png");
  -webkit-mask-position: left top;
          mask-position: left top;
  -webkit-mask-size: cover;
          mask-size: cover;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  border-radius: 0 20px 20px 20px;
  background: #f6f6f6;
  padding: 20px;
  position: relative;
}
.mask-textarea textarea, .mask-textarea input {
  border: 0;
  background: transparent;
}

.scoring {
  position: absolute;
  top: 0;
  left: 20px;
  z-index: 1;
}
.scoring .rating > input {
  display: none;
}
.scoring .rating > label:before {
  margin: 5px;
  font-size: 20px;
  font-family: "icomoon";
  display: inline-block;
  content: "\e915";
}
.scoring .rating > .half:before {
  content: "\e915";
  position: absolute;
}
.scoring .rating > label {
  color: #000000;
  float: right;
}
.scoring .rating > input:checked ~ label,
.scoring .rating:not(:checked) > label:hover,
.scoring .rating:not(:checked) > label:hover ~ label {
  color: #FFD700;
}
.scoring .rating > input:checked + label:hover,
.scoring .rating > input:checked ~ label:hover,
.scoring .rating > label:hover ~ input:checked ~ label,
.scoring .rating > input:checked ~ label:hover ~ label {
  color: #FFED85;
}

.AZ-header-blog {
  padding: 50px 0;
}
.AZ-header-blog .blog-header-big-img {
  width: 100%;
}
.AZ-header-blog .blog-header-big-img .AZ-img-container-inner {
  -webkit-mask-image: url("../img/mask-blog-img.png");
          mask-image: url("../img/mask-blog-img.png");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: cover;
          mask-size: cover;
  border-radius: 20px;
  -webkit-mask-position: center right;
          mask-position: center right;
}
.AZ-header-blog .blog-header-big-img::after {
  padding-bottom: 80%;
}
.AZ-header-blog .header-img {
  width: 100%;
  border-radius: 16px;
  background: #767676;
  padding: 20px;
  flex-grow: 1;
}
.AZ-header-blog .overlay-big-img {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 28%;
  height: 48%;
  border-radius: 16px;
  background: #D9D9D9;
  padding: 20px;
  z-index: 1;
}

.AZ-newslatter-section {
  padding: 50px 0;
}
.AZ-newslatter-section .newslatter-wrapper {
  width: 100%;
  border-radius: 20px 20px 20px 20px;
}
.AZ-newslatter-section .newslatter-wrapper::after {
  padding-bottom: 60%;
}
.AZ-newslatter-section .newslatter-box {
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  border-radius: 0 20px 0 20px;
  border: 20px solid #fff;
  border-top: 0;
  border-right: 0;
  background: #767676;
  padding: 20px;
}
.AZ-newslatter-section .newslatter-box #curved-corner-bottomright {
  width: 20px;
  height: 20px;
  overflow: hidden;
  position: absolute;
  z-index: 1;
  bottom: -40px;
  right: 0;
  background: transparent;
}
.AZ-newslatter-section .newslatter-box #curved-corner-bottomright::after {
  content: "";
  display: block;
  width: 200%;
  height: 200%;
  position: absolute;
  border-radius: 50%;
  top: 0;
  right: 0;
  box-shadow: 10px -10px 0 0 #fff;
  z-index: 1;
}
.AZ-newslatter-section .newslatter-box #curved-corner-topleft {
  width: 20px;
  height: 20px;
  overflow: hidden;
  position: absolute;
  z-index: 1;
  top: 0;
  left: -40px;
}
.AZ-newslatter-section .newslatter-box #curved-corner-topleft::after {
  content: "";
  display: block;
  width: 200%;
  height: 200%;
  position: absolute;
  border-radius: 50%;
  top: 0;
  right: 0;
  box-shadow: 10px -10px 0 0 #fff;
  z-index: 1;
}
.AZ-newslatter-section .newslatter-box #curved-corner-inner-bottomleft {
  width: 20px;
  height: 20px;
  overflow: hidden;
  position: absolute;
  z-index: 1;
  bottom: 0;
  right: 0;
  background: transparent;
}
.AZ-newslatter-section .newslatter-box #curved-corner-inner-bottomleft::after {
  content: "";
  display: block;
  width: 200%;
  height: 200%;
  position: absolute;
  border-radius: 50%;
  bottom: 0;
  right: 0;
  box-shadow: 10px 10px 0 0 #fff;
  z-index: 1;
}
.AZ-newslatter-section .newslatter-box #curved-corner-inner-topleft {
  width: 20px;
  height: 20px;
  overflow: hidden;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  background: transparent;
}
.AZ-newslatter-section .newslatter-box #curved-corner-inner-topleft::after {
  content: "";
  display: block;
  width: 200%;
  height: 200%;
  position: absolute;
  border-radius: 50%;
  top: 0;
  left: 0;
  box-shadow: -10px -10px 0 0 #fff;
  z-index: 1;
}
.AZ-newslatter-section .newslatter-box #curved-corner-inner-bottomright {
  width: 20px;
  height: 20px;
  overflow: hidden;
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  background: transparent;
}
.AZ-newslatter-section .newslatter-box #curved-corner-inner-bottomright::after {
  content: "";
  display: block;
  width: 200%;
  height: 200%;
  position: absolute;
  border-radius: 50%;
  bottom: 0;
  left: 0;
  box-shadow: -10px 10px 0 0 #ffffff;
  z-index: 1;
}
.AZ-newslatter-section .AZ-primary-btn {
  padding: 5px;
}

.AZ-panel-page .container {
  border-top: 1px solid #000;
  padding: 40px 12px;
}
.AZ-panel-page .panel-sidebar {
  background: #F8E2D4;
  overflow: hidden;
}
.AZ-panel-page .dropdown-menu {
  background: #F8E2D4;
  overflow: hidden;
}
.AZ-panel-page .profile-img {
  width: 59.446px;
  border-radius: 100%;
}
.AZ-panel-page .profile-img::after {
  padding-bottom: 100%;
}
.AZ-panel-page .welcome-text {
  border-bottom: 1px solid #000000;
  padding-bottom: 20px;
  width: 100%;
}
.AZ-panel-page .welcome-text,
.AZ-panel-page .panel-link {
  font-size: 12px;
  color: #000000;
  font-family: "IRANSans-Light";
}
.AZ-panel-page .panel-link {
  position: relative;
  padding: 15px 10px;
}
.AZ-panel-page .panel-link span {
  font-size: 18px;
}
.AZ-panel-page .panel-link::after {
  content: "\e907";
  font-family: "icomoon";
  position: absolute;
  left: -50px;
  transition: all 0.2s linear;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  color: #000;
}
.AZ-panel-page .panel-link:hover, .AZ-panel-page .panel-link.active {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.56) 0%, rgba(255, 255, 255, 0) 100%);
}
.AZ-panel-page .panel-link:hover::after, .AZ-panel-page .panel-link.active::after {
  left: 15px;
}
.AZ-panel-page .dropdown-toggle {
  font-size: 13px;
  padding: 5px;
}
.AZ-panel-page .panel-title {
  font-size: 16px;
  color: #000000;
  font-family: "IRANSans-Medium";
  padding: 15px 20px;
  background: #F1F1F1;
  margin-bottom: 30px;
}
.AZ-panel-page .back-btn {
  font-size: 12px;
  color: #000000;
  font-family: "IRANSans-Medium";
}
.AZ-panel-page .back-btn span {
  font-size: 16px;
}

.table-wrapper {
  width: 100%;
}
.table-wrapper td {
  color: #000;
  padding: 15px;
  font-size: 12px;
  font-family: "IRANSans-Light";
  white-space: nowrap;
}
.table-wrapper tr {
  border-bottom: 1px solid #A3A3A3;
}
.table-wrapper .table-descriprion {
  white-space: wrap;
}
.table-wrapper thead {
  border-bottom: 1px solid #000000;
  padding: 10px;
}
.table-wrapper thead th {
  color: #000;
  font-size: 12px;
  font-family: "IRANSans-Light";
  padding: 15px;
  white-space: nowrap;
}
.table-wrapper .product-img {
  width: 78px;
}
.table-wrapper .product-img::after {
  padding-bottom: 100%;
}
.table-wrapper .AZ-primary-btn {
  font-size: 12px;
  padding: 10px 20px;
}

.successful-status,
.danger-status,
.primary-status {
  font-size: 12px;
  color: #000000;
  font-family: "IRANSans-Light";
  display: inline-flex;
  padding: 5px 20px;
}
.successful-status span,
.danger-status span,
.primary-status span {
  font-size: 20px;
}

.successful-status {
  background: #8BB2AF;
}

.danger-status {
  background: rgba(230, 57, 70, 0.21);
}

.primary-status {
  background: rgba(102, 172, 237, 0.21);
}

.progress-cart {
  width: 100%;
  position: relative;
}
.progress-cart::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
  height: 1px;
  background: #000;
  z-index: -1;
}
.progress-cart .progress-number {
  font-size: 14px;
  color: #7A7A7A;
  font-family: "IRANSans-Bold";
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #7A7A7A;
  background: #E0E0E0;
}
.progress-cart .progress-number.prev {
  background: #666;
  border: 1px solid #525252;
  color: #fff;
}
.progress-cart .progress-number.active {
  background: #3D3D3D;
  border: 1px solid #3D3D3D;
  color: #fff;
}

.AZ-cart-page {
  padding: 40px 0;
}
.AZ-cart-page .discountCodeWrapper {
  border: 1px solid var(--06, #A3A3A3);
  height: 48px;
  flex-grow: 1;
}
.AZ-cart-page .discountCodeWrapper button {
  color: #fff;
  font-family: "IRANSans-Medium";
  font-size: 14px;
  height: 100%;
  padding: 5px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: #000;
}
.AZ-cart-page .discountCodeWrapper input {
  color: #262626;
  font-family: "IRANSans-Medium";
  font-size: 14px;
  height: 100%;
  padding: 10px;
  flex-grow: 1;
  border: 0;
  background: transparent;
}
.AZ-cart-page .AZ-payment-gateway label {
  width: 100px;
  height: 96px;
  border: 1px solid #A3A3A3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.AZ-cart-page .AZ-payment-gateway label img {
  max-width: 100%;
  max-height: 100%;
}
.AZ-cart-page .AZ-payment-gateway input {
  display: none;
}
.AZ-cart-page .AZ-payment-gateway input:checked ~ label {
  border: 2px solid #D1AD9F;
  box-shadow: 0px 2px 4px 0px #A3A3A3;
}
.AZ-cart-page .cart-sidebar {
  border: 1px solid #A3A3A3;
  padding: 24px 16px;
}
.AZ-cart-page .sidebar-title {
  font-size: 18px;
  color: #3D3D3D;
  font-family: "IRANSans-Bold";
}
.AZ-cart-page .sidebar-text {
  font-size: 14px;
  color: #525252;
  font-family: "IRANSans-Light";
}
.AZ-cart-page .sidebar-text span {
  color: #3D3D3D;
  font-family: "IRANSans-Bold";
}
.AZ-cart-page .total,
.AZ-cart-page .products-price,
.AZ-cart-page .your-profit {
  font-size: 14px;
  color: #3D3D3D;
  font-family: "IRANSans-Bold";
}
.AZ-cart-page .your-profit {
  color: #D1AD9F;
}
.AZ-cart-page .products-price {
  color: #666;
}
.AZ-cart-page .line {
  width: 100%;
  height: 1px;
  background: #7A7A7A;
  margin: 20px 0;
}
.AZ-cart-page .address-item p {
  font-size: 18px;
  font-family: "IRANSans-Bold";
  color: #3D3D3D;
}
.AZ-cart-page .address-item span {
  font-size: 16px;
  font-family: "IRANSans-Light";
  color: #3D3D3D;
}

.cart-table thead {
  border-bottom: 0;
}
.cart-table thead th {
  background: #F8E2D4;
}
.cart-table thead tr {
  border-bottom: 0;
}
.cart-table .product-name {
  font-size: 16px;
  color: #3D3D3D;
  font-family: "IRANSans-Bold";
}
.cart-table .cart-price {
  font-size: 16px;
  color: #D1AD9F;
  font-family: "IRANSans-Bold";
}
.cart-table .cart-total {
  font-size: 16px;
  color: #3D3D3D;
  font-family: "IRANSans-Bold";
}
.cart-table .old-price {
  font-size: 14px;
  color: #8F8F8F;
  font-family: "IRANSans-Bold";
  text-decoration: line-through;
}
.cart-table .quantity-field {
  height: 22px;
  width: 73px;
}

.AZ-similarProducts-section {
  padding: 50px 0;
}

.quantity-field {
  background: #FFF;
  height: 50px;
  border: 1px solid #3D3D3D;
}
.quantity-field .value-button {
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s linear;
  width: 24px;
  height: 100%;
  background: transparent;
  font-size: 20px;
  color: #000000;
}
.quantity-field .number {
  border: none;
  margin: 0px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "IRANSans-Medium";
  font-size: 16px;
  width: 48px;
  border-radius: 4px;
  background: #FFF;
  text-align: center;
}
.quantity-field .number::-moz-selection {
  background: none;
}
.quantity-field .number::selection {
  background: none;
}
.quantity-field input::-webkit-outer-spin-button,
.quantity-field input::-webkit-inner-spin-button {
  /* display: none; <- Crashes Chrome on hover */
  -webkit-appearance: none;
  margin: 0; /* <-- Apparently some margin are still there even though it's hidden */
}
.quantity-field input[type=number] {
  -moz-appearance: textfield; /* Firefox */
}

.tabs {
  margin-bottom: 40px;
}
.tabs li {
  border-left: 1px solid #000;
  padding: 0 20px;
}
.tabs li:last-child {
  border-left: 0;
}
.tabs .tab-link {
  font-size: 12px;
  color: #000000;
  font-family: "IRANSans-Light";
  padding: 0 20px 10px;
}
.tabs .active .tab-link {
  border-bottom: 3px solid #D5BAB0;
}

.AZ-products-page {
  padding: 40px 0;
  overflow-x: hidden;
}
.AZ-products-page .slider-img {
  width: 100%;
}
.AZ-products-page .slider-img::after {
  padding-bottom: 35%;
}
.AZ-products-page .swiper-button-next, .AZ-products-page .swiper-button-prev {
  width: 36px;
  height: 36px;
  background: #fff;
  bottom: 20px;
  top: unset;
}
.AZ-products-page .swiper-button-next::after, .AZ-products-page .swiper-button-prev::after {
  font-size: 20px;
  color: #000;
}
.AZ-products-page .swiper-button-next {
  left: unset;
  right: 55px;
}

.search-wrapper button {
  width: 34px;
  height: 34px;
  color: #fff;
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  border: 0;
}
.search-wrapper input {
  font-size: 16px;
  color: #000000;
  font-family: "IRANSans-Light";
  height: 34px;
  background: #EDEDED;
  padding: 5px;
  border: 0;
}

.AZ-discounted-goods-section {
  background: #F3F3F3;
}

.cart-back-btn {
  background: transparent;
  color: #3D3D3D;
}

.success-message {
  background: #F3FDFA;
  padding: 10px;
}
.success-message p {
  font-size: 18px;
  color: #00966D;
  font-family: "IRANSans-Bold";
}

.shoping-list {
  border: 1px solid #A3A3A3;
  padding: 24px;
}
.shoping-list .shoping-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.shoping-list .shoping-list-img {
  width: 88px;
}
.shoping-list .shoping-list-img::after {
  padding-bottom: 100%;
}
.shoping-list p {
  font-size: 18px;
  color: #3D3D3D;
  font-family: "IRANSans-Bold";
}
.shoping-list p span {
  font-size: 14px;
  color: #666666;
}

.AZ-banner-section .banner-img {
  width: 100%;
}
.AZ-banner-section .banner-img::after {
  padding-bottom: 30%;
}
.AZ-banner-section .banner-small-img {
  width: 100%;
}
.AZ-banner-section .banner-small-img::after {
  padding-bottom: 20%;
}

.AZ-blog-section {
  padding: 50px 0;
}

.AZ-contact-section {
  margin: 50px 0;
}
.AZ-contact-section .arrow {
  font-size: 30px;
}
.AZ-contact-section .contact-wrapper {
  width: 100%;
}
.AZ-contact-section .contact-wrapper input {
  font-size: 16px;
  color: #000;
  font-family: "IRANSans-Light";
  height: 56px;
  border: 1px solid #000;
  padding: 10px;
  flex-grow: 1;
}
.AZ-contact-section .contact-wrapper button {
  height: 56px;
}

.AZ-category-section {
  padding: 40px 0;
}
.AZ-category-section .category-box {
  width: 100%;
}
.AZ-category-section .category-box::after {
  padding-bottom: 35%;
}
.AZ-category-section .category-content {
  position: absolute;
  padding-left: 10px;
  border-left: 1px solid #000000;
  direction: ltr;
}
.AZ-category-section .category-content .category-name {
  font-size: 16px;
  color: #000;
  font-family: "IRANSans-Light";
}
.AZ-category-section .category-content .category-btn {
  font-size: 12px;
  color: #000;
  font-family: "IRANSans-Light";
}
.AZ-category-section .category-big-box {
  height: 100%;
}
.AZ-category-section .content-center {
  top: 50%;
  transform: translateY(-50%);
}
.AZ-category-section .content-right {
  right: 20px;
}
.AZ-category-section .content-left {
  left: 20px;
}
.AZ-category-section .content-top {
  top: 20px;
}
.AZ-category-section .content-bottom {
  bottom: 20px;
}

.modal-wrapper .modal-content {
  border: 0;
  border-radius: 0;
}
.modal-wrapper .modal-title {
  font-size: 20px;
  color: #525252;
  font-family: "IRANSans-Bold";
}

.login-modal .title-modal-wrapper {
  position: relative;
  margin: 20px 0;
}
.login-modal .title-modal-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: 1px;
  background: #7A7A7A;
}
.login-modal .title-modal-wrapper span {
  font-size: 12px;
  color: #7A7A7A;
  font-family: "IRANSans-Light";
  background: #fff;
  position: relative;
  z-index: 1;
  padding: 0 10px;
}
.login-modal .login-title {
  font-size: 20px;
  color: #525252;
  font-family: "IRANSans-Bold";
}
.login-modal .forget-password {
  font-size: 14px;
  color: #B8B8B8;
  font-family: "IRANSans-Light";
  text-decoration: underline;
}
.login-modal .forget-password:hover {
  color: #000;
}
.login-modal .login-btn {
  font-size: 12px;
  color: #7A7A7A;
  font-family: "IRANSans-Light";
  border: 1px solid #B8B8B8;
  padding: 10px;
  background: transparent;
  transition: all 0.2s linear;
}
.login-modal .login-btn:hover {
  background: #B8B8B8;
  color: #000;
}

.AZ-storeDetails-section {
  margin: 30px 0;
}
.AZ-storeDetails-section img {
  width: 52px;
}
.AZ-storeDetails-section .storeDetails-title {
  font-size: 16px;
  color: #000000;
  font-family: "IRANSans-Medium";
  margin-bottom: 10px;
}
.AZ-storeDetails-section .storeDetails-text {
  font-size: 12px;
  color: #000000;
  font-family: "IRANSans-Light";
}

.pl-0 {
  padding-left: 0;
}

.AZ-slider-section {
  overflow: hidden;
  position: relative;
}
.AZ-slider-section .sliderWrapper {
  width: 100%;
}
.AZ-slider-section .sliderWrapper::after {
  padding-bottom: 40%;
}
.AZ-slider-section .sliderSwiper {
  width: 100%;
  height: 100%;
}
.AZ-slider-section .slider-img {
  width: 70%;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.AZ-slider-section .slider-content {
  position: relative;
  z-index: 10;
  padding: 150px 0 50px;
  opacity: 0;
  transition: 0.5s ease 0.5s;
}
.AZ-slider-section .slider-title {
  font-size: 56px;
  font-family: "IRANSans-Light";
  color: #000000;
  line-height: 100%; /* 56px */
  letter-spacing: 3px;
  margin-bottom: 25px;
}
.AZ-slider-section .slider-desc {
  font-size: 16px;
  font-family: "IRANSans-Light";
  color: #000000;
  border-bottom: 2px solid #D5BAB0;
}
.AZ-slider-section .swiper-slide-active .slider-content {
  opacity: 1;
}
.AZ-slider-section .swiper-pagination {
  left: unset;
  width: auto;
  right: 30px;
  flex-direction: column;
  display: flex;
  gap: 100px;
  bottom: 100px;
}
.AZ-slider-section .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border: 2px solid #000;
  background: transparent;
  opacity: 1;
  position: relative;
}
.AZ-slider-section .swiper-pagination .swiper-pagination-bullet:nth-child(1)::after {
  content: "";
  position: absolute;
  top: calc(100% + 15px);
  left: 50%;
  transform: translateX(-50%);
  height: 70px;
  width: 2px;
  background: #000;
  z-index: 1;
}
.AZ-slider-section .swiper-pagination .swiper-pagination-bullet:nth-child(2)::after {
  content: "";
  position: absolute;
  top: calc(100% + 15px);
  left: 50%;
  transform: translateX(-50%);
  height: 70px;
  width: 2px;
  z-index: 1;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #000;
}
.AZ-slider-section .swiper-pagination .swiper-pagination-bullet-active {
  background: #000;
}

@media screen and (max-width: 991px) {
  .AZ-header .search-nav {
    width: 100%;
    min-width: 100%;
    border-radius: 0;
  }
  .AZ-header .nav-item .nav-link {
    border-bottom: 1px solid #B5B5B5;
  }
  .AZ-header .nav-item .nav-link::after {
    content: none;
  }
  .AZ-header .tabs li {
    flex-grow: 1;
  }
  .table-wrapper table {
    border: 1px solid #DFDFDF;
  }
  .table-wrapper thead tr {
    display: none;
  }
  .table-wrapper .table-descriprion {
    padding-right: 30%;
  }
  .table-wrapper tbody tr:nth-child(odd) {
    background: #f5f5f5;
  }
  .table-wrapper td {
    border: none;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: relative;
    padding: 15px;
  }
  .table-wrapper td:before {
    content: attr(data-label);
    display: flex;
    justify-content: flex-start;
    font-weight: bold;
    width: auto;
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    text-align: center;
    align-items: center;
  }
  .AZ-category-section .category-big-box::after {
    padding-bottom: 100%;
  }
  .AZ-radio-geroup label {
    padding-right: 32px;
  }
  .AZ-radio-geroup label p {
    font-size: 14px;
  }
  .AZ-radio-geroup label span {
    font-size: 10px;
  }
  .AZ-radio-geroup label::after {
    width: 25px;
    height: 25px;
  }
  .w-md-100 {
    width: 100%;
  }
  .AZ-cart-page .address-item span {
    font-size: 14px;
  }
  .AZ-cart-page .address-item p {
    font-size: 14px;
    font-family: "IRANSans-Bold";
    color: #3D3D3D;
  }
  .AZ-cart-page .AZ-payment-gateway {
    width: 100%;
  }
  .AZ-cart-page .AZ-payment-gateway label {
    width: 100%;
    height: 80px;
  }
  .AZ-similarProducts-section {
    padding: 50px 0;
  }
  .AZ-similarProducts-section .swiper-button-next {
    right: 10px;
  }
  .AZ-similarProducts-section .swiper-button-prev {
    left: 10px;
  }
  .AZ-about-page .header-img {
    height: 650px;
  }
  .AZ-about-page .header-img img {
    -o-object-position: center center;
       object-position: center center;
  }
  .AZ-about-page .description-box {
    padding: 50px 20px;
  }
  .AZ-about-page .description-box .desc-text,
  .AZ-about-page .description-box .desc-name {
    font-size: 14px;
    color: #000000;
    font-family: "IRANSans-Medium";
    line-height: 32px;
  }
  .AZ-post-page .tag-text {
    font-size: 12px;
  }
  .AZ-post-page .tag {
    font-size: 12px;
    padding: 5px;
  }
  .AZ-post-page .post-title {
    font-size: 16px;
    line-height: 22px;
  }
  .AZ-post-page .social a {
    width: 30px;
    height: 30px;
  }
  .AZ-comments .reply-box {
    padding-right: 30px;
  }
  article h1, article h2, article h3 {
    font-size: 20px;
  }
  article p {
    font-size: 14px;
    line-height: 30px;
    margin-bottom: 10px;
  }
  .AZ-slider-section .slider-content {
    padding: 40px 0;
  }
  .AZ-slider-section .slider-title {
    font-size: 32px;
    margin-bottom: 10px;
  }
  .AZ-slider-section .slider-desc {
    font-size: 14px;
  }
  .AZ-slider-section .swiper-pagination {
    right: 5px;
    gap: 50px;
    bottom: 30px;
  }
  .AZ-slider-section .swiper-pagination .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
  }
  .AZ-slider-section .swiper-pagination .swiper-pagination-bullet:nth-child(1)::after {
    height: 30px;
  }
  .AZ-slider-section .swiper-pagination .swiper-pagination-bullet:nth-child(2)::after {
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 8px solid #000;
  }
}
@media screen and (max-width: 567px) {
  .AZ-slider-section .sliderWrapper::after {
    padding-bottom: 60%;
  }
  .AZ-slider-section .slider-desc {
    font-size: 10px;
  }
  .AZ-slider-section .slider-title {
    font-size: 20px;
    margin-bottom: 5px;
  }
  .AZ-page-text {
    font-size: 14px;
    font-family: "IRANSans-Medium";
    line-height: 30px;
  }
  .AZ-page-title {
    font-size: 16px;
  }
  .w-sm-100 {
    width: 100%;
  }
  .AZ-category-section .category-content {
    position: absolute;
    padding-left: 10px;
    border-left: 1px solid #000000;
    direction: ltr;
  }
  .AZ-category-section .category-content .category-name {
    font-size: 12px;
  }
  .AZ-category-section .category-content .category-btn {
    font-size: 8px;
  }
  .AZ-storeDetails-section {
    margin: 30px 0;
  }
  .AZ-storeDetails-section img {
    width: 30px;
  }
  .AZ-storeDetails-section .storeDetails-title {
    font-size: 12px;
  }
  .AZ-storeDetails-section .storeDetails-text {
    font-size: 10px;
  }
  .AZ-box {
    padding: 15px;
  }
  .AZ-section-title {
    font-size: 16px;
  }
  .AZ-comments .comment-text {
    font-size: 12px;
  }
  .AZ-comments .comment-img {
    min-width: 50px;
  }
  .AZ-comments .comment-name {
    font-size: 14px;
  }
  .AZ-comments .reply-btn {
    font-size: 12px;
  }
  .AZ-products-page .swiper-button-next {
    right: 45px;
  }
  .AZ-products-page .swiper-button-next,
  .AZ-products-page .swiper-button-prev {
    width: 25px;
    height: 25px;
    bottom: 10px;
  }
  .AZ-products-page .swiper-button-next::after,
  .AZ-products-page .swiper-button-prev::after {
    font-size: 15px;
  }
  .AZ-contact-section .contact-wrapper input {
    height: 40px;
    min-width: 50px;
  }
  .AZ-contact-section .contact-wrapper button {
    height: 40px;
  }
  .AZ-footer {
    padding-bottom: 40px;
  }
  .AZ-footer .footer-title {
    font-size: 16px;
    margin-bottom: 15px;
  }
  .AZ-footer .footer-link {
    font-size: 12px;
  }
  .AZ-contact-page .contact-items {
    padding: 20px;
  }
  .AZ-contact-page .contact-box {
    padding: 20px;
    margin-bottom: 20px;
  }
  .AZ-contact-page .contact-link {
    font-size: 14px;
  }
  .AZ-contact-page .contact-icon {
    width: 30px;
    height: 30px;
  }
}