@charset "UTF-8";
@font-face {
  font-family: "IRANYekanX-Bold";
  src: url("../fonts/IRANYekanX/IRANYekanX-Bold.eot") format("embedded-opentype"), url("../fonts/IRANYekanX/IRANYekanX-Bold.woff") format("woff"), url("../fonts/IRANYekanX/IRANYekanX-Bold.ttf") format("truetype");
  font-style: normal;
  font-weight: bold;
}
@font-face {
  font-family: "IRANYekanX-Medium";
  src: url("../fonts/IRANYekanX/IRANYekanX-Medium.eot") format("embedded-opentype"), url("../fonts/IRANYekanX/IRANYekanX-Medium.woff") format("woff"), url("../fonts/IRANYekanX/IRANYekanX-Medium.ttf") format("truetype");
  font-style: normal;
}
@font-face {
  font-family: "IRANYekanX-Regular";
  src: url("../fonts/IRANYekanX/IRANYekanX-Regular.eot") format("embedded-opentype"), url("../fonts/IRANYekanX/IRANYekanX-Regular.woff") format("woff"), url("../fonts/IRANYekanX/IRANYekanX-Regular.ttf") format("truetype");
  font-style: normal;
}
* {
  margin: 0;
  padding: 0;
  outline: none;
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
  font-family:IRANYekanX-Regular;
  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;
}

.tooltip-btn {
  padding: 0;
  border: 0;
  background: transparent;
  font-size: 16px;
}

.tooltip {
  font-size: 14px;
  font-family: "IRANYekanX-Regular";
}

.tooltip-inner {
  font-size: 11px;
  font-family: "IRANYekanX-Regular";
  font-weight: 300;
  line-height: 1.8;
}

.line {
  width: 100%;
  height: 2px;
  background: #ececec;
  margin: 25px 0;
}

.AZ-page-title {
  font-size: 16px;
  color: #000;
  font-family: "IRANYekanX-Bold";
}

.AZ-field-group {
  display: flex;
  flex-direction: column;
  background: transparent;
}
.AZ-field-group .field-inner {
  position: relative;
  display: flex;
  align-items: center;
  border: 1px solid rgb(193, 193, 193);
  border-radius: 10px;
  flex-grow: 1;
  background: #fff;
}
.AZ-field-group .field-inner:focus-within {
  border: 1px solid #3b82f6;
}
.AZ-field-group .field-inner span {
  font-size: 16px;
  font-family: "IRANYekanX-Medium";
  color: #4a4a4a;
  padding: 0 10px;
}
.AZ-field-group .field-inner .field-currency {
  font-size: 12px;
  color: #495057;
  font-family: "IRANYekanX-Medium";
  background: #f3f3f3;
  padding: 5px 10px;
  border-radius: 10px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.AZ-field-group label {
  font-size: 14px;
  color: #212121;
  font-family: "IRANYekanX-Regular";
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.AZ-field-group label span {
  font-size: 14px;
  color: red;
}
.AZ-field-group input,
.AZ-field-group textarea {
  font-size: 14px;
  color: #000;
  font-family: "IRANYekanX-Regular";
  padding: 8px;
  flex-grow: 1;
  background-color: transparent;
  border: 0;
  transition: all 0.2s linear;
  min-width: 50px;
}
.AZ-field-group input {
  height: 40px;
}
.AZ-field-group .help-text {
  font-size: 10px;
  color: #000;
  font-family: "IRANYekanX-Regular";
}
.AZ-field-group .help-text span {
  color: red;
}
.AZ-field-group.err .field-inner {
  border: 1px solid #ed2e2e;
}
.AZ-field-group.err .err-text {
  font-size: 12px;
  color: #ed2e2e;
  font-family: "IRANYekanX-Regular";
  margin-top: 8px;
}

.form-control[readonly] {
  background-color: #fff;
}

.AZ-checkbox-group label {
  font-size: 12px;
  font-family: "IRANYekanX-Medium";
  color: #43444a;
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  padding-right: 24px;
  display: flex;
  align-items: center;
  gap: 4px;
  text-align: right;
}
.AZ-checkbox-group label::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "icomoon";
  color: #fff;
  font-size: 14px;
  border: 1px solid #54555d;
  transition: all 0.2s linear;
  background: #fff;
}
.AZ-checkbox-group input {
  display: none;
}
.AZ-checkbox-group input:checked ~ label::after {
  content: "\e909";
  background: #3b82f6;
  border: 1px solid #3b82f6;
}

.AZ-radio-group label {
  font-size: 13px;
  color: #1e1e1e;
  font-family: "IRANYekanX-Regular";
  position: relative;
  cursor: pointer;
  padding-right: 28px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  display: flex;
  align-items: center;
  gap: 4px;
  text-align: right;
}
.AZ-radio-group label span {
  color: #757575;
}
.AZ-radio-group label a {
  color: #8c1e82;
}
.AZ-radio-group label::after {
  content: "";
  font-family: "icomoon";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  border-radius: 50px;
  border: 0.5px solid #757575;
  background: #fff;
  transition: all 0.2s linear;
}
.AZ-radio-group input {
  display: none;
}
.AZ-radio-group input:checked ~ label::after {
  background: #43a047;
  border: 2px solid #fff;
  outline: 1px solid #43a047;
}

.AZ-cancel-btn,
.AZ-danger-btn,
.AZ-warning-btn,
.AZ-main-btn,
.AZ-primary-btn,
.AZ-secondary-btn {
  font-size: 15px;
  color: #fff;
  font-family: "IRANYekanX-Regular";
  padding: 8px 20px;
  transition: all 0.2s linear;
  border-radius: 10px;
  background: #3b82f6;
  border: 0;
}
.AZ-cancel-btn:hover,
.AZ-danger-btn:hover,
.AZ-warning-btn:hover,
.AZ-main-btn:hover,
.AZ-primary-btn:hover,
.AZ-secondary-btn:hover {
  color: #ffffff;
  background: #005bab;
}
.AZ-cancel-btn.disabled,
.AZ-danger-btn.disabled,
.AZ-warning-btn.disabled,
.AZ-main-btn.disabled,
.AZ-primary-btn.disabled,
.AZ-secondary-btn.disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.AZ-cancel-btn span,
.AZ-danger-btn span,
.AZ-warning-btn span,
.AZ-main-btn span,
.AZ-primary-btn span,
.AZ-secondary-btn span {
  font-size: 24px;
}

.AZ-secondary-btn {
  background: #43a047;
  color: #fff;
}
.AZ-secondary-btn:hover {
  color: #fff;
  background: rgb(75, 164, 67);
}

.AZ-main-btn {
  background: transparent;
  border: 1px solid #3b82f6;
  color: #3b82f6;
}
.AZ-main-btn:hover {
  color: #fff;
  background: #3b82f6;
}

.AZ-cancel-btn {
  background: #c4c4c4;
  color: #000;
}
.AZ-cancel-btn:hover {
  color: #fff;
  background: #9d9d9d;
}

.AZ-danger-btn {
  background: rgb(255, 38, 0);
  color: #fff;
}
.AZ-danger-btn:hover {
  color: #fff;
  background: rgb(154, 0, 0);
}

.AZ-warning-btn {
  background: rgb(255, 174, 0);
  color: #fff;
}
.AZ-warning-btn:hover {
  color: #fff;
  background: rgb(207, 142, 1);
}

.AZ-section-title {
  font-size: 18px;
  color: #000;
  font-family: "IRANYekanX-Bold";
  margin-bottom: 5px;
  position: relative;
}

.AZ-section-text {
  font-size: 14px;
  color: #000;
  font-family: "IRANYekanX-Regular";
  text-align: justify;
}
.AZ-section-text span,
.AZ-section-text a {
  color: #3b82f6;
  transition: all 0.2s linear;
}
.AZ-section-text a:hover {
  color: #005bab;
}
.AZ-section-text span {
  font-size: 20px;
}

.AZ-section-desc {
  font-size: 14px;
  color: #848484;
  font-family: "IRANYekanX-Regular";
}
.AZ-section-desc span {
  color: red;
}
.AZ-section-desc a {
  color: #3b82f6;
  text-decoration: underline;
  transition: all 0.2s linear;
}
.AZ-section-desc a:hover {
  color: #005bab;
}

.AZ-notif-banner {
  max-height: 100px;
  overflow: hidden;
}

.AZ-header {
  position: relative;
  z-index: 10;
  background: #fff;
}
.AZ-header .login-btn {
  font-size: 14px;
  padding: 8px 10px;
  white-space: nowrap;
}
.AZ-header .login-btn span {
  font-size: 20px;
}
.AZ-header .navbar-top,
.AZ-header .navbar-bottom {
  border-bottom: 1px solid #ebeced;
  padding: 15px 0;
}
.AZ-header .navbar-toggler {
  color: #323232;
  font-size: 24px;
  padding: 0;
}
.AZ-header .navbar-toggler:focus {
  box-shadow: none;
}
.AZ-header .navbar-brand {
  margin: 0;
}
.AZ-header .navbar-brand img {
  width: 163px;
}
.AZ-header .nav-link {
  font-size: 14px;
  color: #323338;
  font-family: "IRANYekanX-Medium";
  transition: all 0.2s linear;
  white-space: nowrap;
  position: relative;
  background: transparent;
}
.AZ-header .nav-link span {
  font-size: 20px;
  color: #2f69c7;
}
.AZ-header .nav-link .arrow {
  opacity: 0;
  transition: all 0.2s linear;
  font-size: 16px;
}
.AZ-header .nav-action {
  font-style: 20px;
  color: #54555d;
  min-width: 36px;
  height: 36px;
  border: 1px solid #ebeced;
  border-radius: 8px;
  background: #fafafa;
  padding: 8px;
  transition: all 0.2s linear;
}
.AZ-header .nav-action .price {
  font-size: 12px;
  color: #54555d;
  font-family: "IRANYekanX-Regular";
}
.AZ-header .nav-action:hover {
  background: #ebeced;
}
.AZ-header .line {
  width: 1px;
  height: 28px;
  background: #cdced0;
}
.AZ-header .dropdown-user .dropdown-menu {
  border-radius: 8px;
  padding: 10px 8px;
  background: #fafafa;
  border: 1px solid #ebeced;
  min-width: 220px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
  margin-top: 10px;
}
.AZ-header .dropdown-user .dropdown-menu::before {
  content: "";
  position: absolute;
  bottom: calc(100% + 1px);
  left: 20px;
  border-bottom: 10px solid #fff;
  border-right: 8px solid transparent;
  border-left: 8px solid transparent;
}
.AZ-header .dropdown-user li {
  border-bottom: 1px solid #eff1f6;
}
.AZ-header .dropdown-user li:last-child {
  border-bottom: 0;
}
.AZ-header .dropdown-user .dropdown-item {
  font-size: 12px;
  color: #323338;
  font-family: "IRANYekanX-Medium";
  transition: all 0.2s linear;
  padding: 8px;
  border-radius: 4px;
  white-space: nowrap;
  position: relative;
}
.AZ-header .dropdown-user .dropdown-item:hover {
  background: #c4d9fc;
}
.AZ-header .dropdown-user .dropdown-item span {
  font-size: 16px;
  color: #43444a;
  transition: all 0.2s linear;
}
.AZ-header .AZ-search-wrapper {
  height: 48px;
  min-width: 500px;
}
.AZ-header .navbar-btn {
  font-size: 12px;
  color: #3b82f6;
  font-family: "IRANYekanX-Regular";
  border: 1px solid #3b82f6;
  background: transparent;
  transition: all 0.2s linear;
  border-radius: 8px;
  padding: 8px;
}
.AZ-header .navbar-btn:hover {
  background: #3b82f6;
  color: #fff;
}

.AZ-search-wrapper {
  background: #fff;
  border: 1px solid #ebeced;
  height: 40px;
  overflow: hidden;
  border-radius: 8px;
  min-width: 350px;
}
.AZ-search-wrapper input {
  font-size: 14px;
  color: #191a1c;
  font-family: "IRANYekanX-Regular";
  background: transparent;
  flex-grow: 1;
  padding: 10px;
  height: 100%;
  border-radius: 0;
  border: 0;
}
.AZ-search-wrapper input::-moz-placeholder {
  color: #909197;
}
.AZ-search-wrapper input::placeholder {
  color: #909197;
}
.AZ-search-wrapper input:focus {
  box-shadow: none;
}
.AZ-search-wrapper button {
  font-size: 24px;
  color: #fff;
  height: 100%;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #3b82f6;
  border: 0;
  border-radius: 0;
}
.AZ-search-wrapper:focus-within {
  border-color: #3b82f6;
}

.has-submenu {
  position: relative;
}
.has-submenu > .nav-link .arrow {
  opacity: 1;
}
.has-submenu .submenu {
  position: absolute;
  right: 0;
  top: 100%;
  border-radius: 8px;
  padding: 8px;
  background: #fafafa;
  border: 1px solid #ebeced;
  min-width: 200px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s linear;
  transform: translateY(20px);
}
.has-submenu .submenu .submenu-link {
  font-size: 12px;
  color: #323338;
  font-family: "IRANYekanX-Medium";
  transition: all 0.2s linear;
  padding: 8px;
  border-radius: 4px;
  white-space: nowrap;
  position: relative;
}
.has-submenu .submenu .submenu-link:hover {
  background: #c4d9fc;
}
.has-submenu .submenu .submenu-link .arrow {
  font-size: 16px;
  color: #43444a;
  opacity: 0;
  transition: all 0.2s linear;
}
.has-submenu:hover > .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.has-submenu:hover > .nav-link .arrow {
  transform: rotate(180deg);
}
.has-submenu .level-five .submenu,
.has-submenu .level-four .submenu,
.has-submenu .level-three .submenu,
.has-submenu .level-two .submenu {
  right: 100%;
  top: 0;
}
.has-submenu .level-five > .submenu-link .arrow,
.has-submenu .level-four > .submenu-link .arrow,
.has-submenu .level-three > .submenu-link .arrow,
.has-submenu .level-two > .submenu-link .arrow {
  opacity: 1;
}
.has-submenu .level-five:hover > .submenu-link .arrow,
.has-submenu .level-four:hover > .submenu-link .arrow,
.has-submenu .level-three:hover > .submenu-link .arrow,
.has-submenu .level-two:hover > .submenu-link .arrow {
  transform: rotate(90deg);
}
.has-submenu .level-five:hover > .submenu,
.has-submenu .level-four:hover > .submenu,
.has-submenu .level-three:hover > .submenu,
.has-submenu .level-two:hover > .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#accordian {
  width: 100%;
  min-height: 50vh;
  height: 100%;
  text-align: left;
  overflow-y: auto;
  padding-bottom: 60px;
}
#accordian ul {
  padding: 0;
  margin: 0;
  width: 100%;
}
#accordian ul li.active > a {
  background: #d8e6fd;
}
#accordian ul li.active > a::after {
  color: #235097;
}
#accordian ul li a {
  font-size: 14px;
  color: #323338;
  font-family: "IRANYekanX-Regular";
  width: 100%;
  padding: 16px;
  transition: all 0.2s linear;
  position: relative;
  text-align: left;
  transition: all 0.2s linear;
  border-bottom: 1px solid #ebeced;
}

#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 > 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;
}

#accordian > ul > li > ul a:not(:only-child)::after,
#accordian > ul > li > ul > li > ul a:not(:only-child)::after,
#accordian > ul > li > ul > li > ul > li > ul a:not(:only-child)::after,
#accordian > ul > li > ul > li > ul > li > ul > li > ul a:not(:only-child)::after {
  font-size: 18px;
  color: #323338;
  top: 15px;
  left: 20px;
}
#accordian > ul > li > ul li.active > a,
#accordian > ul > li > ul > li > ul li.active > a,
#accordian > ul > li > ul > li > ul > li > ul li.active > a,
#accordian > ul > li > ul > li > ul > li > ul > li > ul li.active > a {
  background: #ebf2fe;
  border: 1px solid #ebeced;
}
#accordian > ul > li > ul li.active > a::after,
#accordian > ul > li > ul > li > ul li.active > a::after,
#accordian > ul > li > ul > li > ul > li > ul li.active > a::after,
#accordian > ul > li > ul > li > ul > li > ul > li > ul li.active > a::after {
  color: #235097;
}

#accordian ul:not(:has(ul)) a:last-child {
  padding: 5px 35px 5px 5px;
  border-bottom: 0;
}
#accordian ul:not(:has(ul)) a:last-child p {
  border-bottom: 1px solid #ebeced;
  flex-grow: 1;
  width: 100%;
  text-align: right;
  padding: 7px 0;
}
#accordian ul:not(:has(ul)) a:last-child::before {
  content: "\e9d5";
  font-family: "icomoon";
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  color: #3b82f6;
}

#accordian a:not(:only-child):after {
  content: "\e90d";
  position: absolute;
  left: 15px;
  top: 15px;
  font-size: 24px;
  font-family: "icomoon";
  display: inline-block;
  transition: all 0.2s linear;
  color: #323338;
  display: block;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#accordian .active > a:not(:only-child):after {
  transform: rotate(180deg);
}

.AZ-footer {
  background: #eff1f6;
}
.AZ-footer .back-btn {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  color: #fff;
  background: #3b82f6;
  position: absolute;
  left: 10px;
  top: 0;
  z-index: 1;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
}
.AZ-footer .back-btn span {
  font-size: 24px;
}
.AZ-footer .footer-content {
  padding: 40px 0;
}
.AZ-footer .col-right {
  border-left: 1px solid #cdced0;
  padding-left: 50px;
}
.AZ-footer .col-right::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  border-left: 112px solid #fafafa;
  border-bottom: 88px solid transparent;
}
.AZ-footer .col-left {
  padding-right: 50px;
}
.AZ-footer .footer-link {
  font-size: 14px;
  color: #43444a;
  font-family: "IRANYekanX-Regular";
  transition: all 0.2s linear;
  padding: 5px 0;
}
.AZ-footer .footer-link:hover {
  color: #3b82f6;
}
.AZ-footer .footer-link span {
  color: #3b82f6;
  font-size: 18px;
}
.AZ-footer .footer-text {
  font-size: 14px;
  color: #43444a;
  font-family: "IRANYekanX-Regular";
  text-align: justify;
}
.AZ-footer .footer-text span {
  font-family: "IRANYekanX-Bold";
}
.AZ-footer .footer-title {
  font-size: 18px;
  color: #235097;
  font-family: "IRANYekanX-Bold";
  transition: all 0.2s linear;
  margin-bottom: 20px;
}
.AZ-footer .footer-brand img {
  width: 183px;
}
.AZ-footer .namad-box {
  width: 77px;
  height: 90px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}
.AZ-footer .namad-box img {
  max-width: 100%;
  max-height: 100%;
}
.AZ-footer .footer-copyright {
  font-size: 12px;
  color: #43444a;
  font-family: "IRANYekanX-Regular";
  border-top: 1px solid #cdced0;
  padding: 15px 0;
}
.AZ-footer .AZ-social a {
  font-size: 24px;
  color: #72737a;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: 1px solid #72737a;
  transition: all 0.2s linear;
}
.AZ-footer .AZ-social a:hover {
  background: #3b82f6;
  color: #fff;
}
.AZ-footer .support-box--img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.08);
}
.AZ-footer .support-box--link {
  font-size: 14px;
  color: #54555d;
  font-family: "IRANYekanX-Regular";
  transition: all 0.2s linear;
}
.AZ-footer .support-box--link span {
  color: #3c80ff;
}
.AZ-footer .support-box--link:hover {
  color: #3c80ff;
}
.AZ-footer .collaps-menu {
  width: 100%;
}
.AZ-footer .collaps-menu .dropdown-toggle {
  font-size: 14px;
  color: #235097;
  font-family: "IRANYekanX-Regular";
  width: 100%;
  border: 1px solid #3b82f6;
  background: transparent;
  border-radius: 8px 8px 0 0;
  padding: 16px;
  text-align: justify;
  position: relative;
}
.AZ-footer .collaps-menu .dropdown-toggle::after {
  position: absolute;
  left: 16px;
  top: 50%;
}
.AZ-footer .collaps-menu .dropdown-toggle.collapsed {
  border-radius: 8px;
  border: 1px solid #235097;
}
.AZ-footer .collaps-menu .card-body {
  width: 100%;
  padding: 15px;
  border-radius: 0 0 8px 8px;
  border: 1px solid #3b82f6;
  border-top: 0;
}

.AZ-login-page {
  padding: 50px 0;
  height: 100vh;
  min-height: 100vh;
}
.AZ-login-page .ruls-error {
  font-size: 12px;
  color: red;
  font-family: "IRANYekanX-Regular";
}
.AZ-login-page .ruls a {
  display: contents;
}
.AZ-login-page .tabs {
  background: rgb(227, 227, 227);
  border-radius: 40px;
  overflow: hidden;
  border: 0;
}
.AZ-login-page .tabs li {
  width: 50%;
}
.AZ-login-page .tabs .tab-link {
  padding: 8px;
}
.AZ-login-page .login-links .login-menu-item {
  border-left: 1px solid rgb(229, 229, 229);
  padding: 0 10px;
}
.AZ-login-page .login-links .login-menu-item:last-child {
  border-left: 0;
}
.AZ-login-page .login-links .login-link {
  font-size: 14px;
  color: #000;
  font-family: "IRANYekanX-Regular";
  transition: all 0.2s linear;
}
.AZ-login-page .login-links .login-link:hover {
  color: #3b82f6;
}
.AZ-login-page .login-list {
  margin-right: 20px;
}
.AZ-login-page .login-list li {
  font-size: 14px;
  color: #000;
  font-family: "IRANYekanX-Regular";
  padding-right: 3px;
  padding: 2px 0;
}
.AZ-login-page .login-list li::marker {
  content: "\e90e";
  font-family: "icomoon";
  color: #43a047;
}
.AZ-login-page .login-brand {
  margin-bottom: 20px;
}
.AZ-login-page .login-brand img {
  width: 150px;
}
.AZ-login-page .login-title {
  font-size: 18px;
  color: #000;
  text-decoration: underline;
  font-family: "IRANYekanX-Medium";
}
.AZ-login-page .AZ-login-box {
  border-radius: 20px;
  border: 1px solid rgb(232, 232, 232);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 50px;
  height: 100%;
}
.AZ-login-page .col-left .col-right {
  padding: 0 20px;
}
.AZ-login-page .col-left .AZ-section-text {
  text-align: center;
}
.AZ-login-page .col-right {
  border-left: 1px solid rgb(232, 232, 232);
}

.AZ-login-box .err-text {
  color: red;
  font-family: "IRANYekanX-Regular";
  font-size: 12px;
  margin-top: 5px;
}

.get-code-again #countdownText {
  font-size: 12px;
  font-family: "IRANYekanX-Regular";
  color: #000;
}
.get-code-again #resendBtn,
.get-code-again #countdown {
  font-size: 12px;
  font-family: "IRANYekanX-Regular";
  color: #3b82f6;
}
.get-code-again #resendBtn {
  text-decoration: underline;
}

.change-number {
  font-size: 12px;
  font-family: "IRANYekanX-Medium";
  color: #3b82f6;
  transition: all 0.2s linear;
}
.change-number:hover {
  color: #005bab;
}

.number-code {
  direction: ltr;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  flex-direction: column;
}

.code-input {
  font-size: 20px;
  color: #3b82f6;
  font-family: "IRANYekanX-Bold";
  text-align: center;
  outline: none;
  direction: ltr;
  width: 56px;
  height: 56px;
  border-radius: 8px;
  border: 1px solid #43598c;
  background: transparent;
}
.code-input.active {
  border: 1px solid #3b82f6;
}
.code-input.err {
  border-color: red;
}

.back-btn {
  font-size: 14px;
  color: #333;
  font-family: "IRANYekanX-Regular";
  transition: all 0.2s linear;
  padding: 3px 10px;
  background: #ececec;
  border-radius: 5px;
}
.back-btn span {
  font-size: 12px;
}
.back-btn:hover {
  color: #005bab;
}

.tabs {
  overflow-x: auto;
  padding: 4px;
  width: 100%;
  border-bottom: 1px solid rgb(214, 214, 214);
}
.tabs .tab-link {
  font-size: 14px;
  color: #000;
  font-family: "IRANYekanX-Regular";
  padding: 8px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  transition: all 0.2s linear;
  border-radius: 40px;
  white-space: nowrap;
}
.tabs .tab-link .number {
  padding: 3px;
  border-radius: 3px;
  background: rgb(235, 235, 235);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #000;
  font-family: "IRANYekanX-Medium";
  min-width: 10px;
  height: 15px;
  padding-top: 5px;
  transition: all 0.2s linear;
}
.tabs .tab-link .color {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.tabs .tab-link.pending .color {
  background: #2a6cd7;
}
.tabs .tab-link.canceled .color {
  background: red;
}
.tabs .tab-link.full .color {
  background: #43a047;
}
.tabs .tab-link.confirmed .color {
  background: orange;
}
.tabs .active .tab-link {
  background: #3b82f6;
  color: #fff;
}
.tabs .active .tab-link .number {
  background: #005bab;
  color: #fff;
}

.AZ-search-container {
  background: rgb(245, 245, 245);
  border: 1px solid rgb(245, 245, 245);
  display: flex;
  align-items: center;
  min-width: 300px;
  border-radius: 10px;
  height: 45px;
}
.AZ-search-container input {
  background: transparent;
  flex-grow: 1;
  font-size: 13px;
  color: #000;
  font-family: "IRANYekanX-Medium";
  padding: 10px;
  height: 100%;
  border: 0;
}
.AZ-search-container input:focus {
  background: transparent;
  box-shadow: none;
}
.AZ-search-container button {
  font-size: 20px;
  color: #000;
  padding-left: 16px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  height: 100%;
}
.AZ-search-container:focus-within {
  border-color: #3b82f6;
}

.table-container {
  overflow-x: auto;
}

.swiper-slide {
  height: auto;
}

.tableSwiper .swiper-slide {
  width: -moz-fit-content !important;
  width: fit-content !important;
  border-radius: 15px;
  min-width: 100%;
}
.tableSwiper .swiper-wrapper {
  border-radius: 15px;
}

.table-wrapper {
  width: 100%;
  background: #ececec;
  border-radius: 10px;
}
.table-wrapper .table-btn {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f3f3f3;
}
.table-wrapper .table-btn span {
  color: #333 !important;
}
.table-wrapper .eitaa-btn {
  background: rgb(251, 242, 226);
}
.table-wrapper .eitaa-btn span {
  color: orange !important;
}
.table-wrapper .telegram-btn {
  background: rgb(225, 245, 255);
}
.table-wrapper .telegram-btn span {
  color: #3b82f6 !important;
}
.table-wrapper .whatsapp-btn {
  background: rgb(226, 251, 238) !important;
}
.table-wrapper .whatsapp-btn span {
  color: #43a047 !important;
}
.table-wrapper tfoot td {
  padding: 10px 15px;
}
.table-wrapper tfoot tr:nth-child(even) td {
  background: #fff;
}
.table-wrapper thead th {
  font-size: 12px;
  color: #414141;
  font-family: "IRANYekanX-Bold";
  padding: 10px 15px;
  white-space: nowrap;
  position: relative;
  z-index: 1;
  font-weight: 400;
}
.table-wrapper thead th span {
  color: #3b82f6;
}
.table-wrapper td,
.table-wrapper th {
  border: none;
  text-align: right;
  vertical-align: middle;
  border: 1px solid #fff;
}
.table-wrapper tbody tr {
  position: relative;
}
.table-wrapper tbody tr:hover {
  background: #d2f1f0;
}
.table-wrapper tbody td {
  padding: 10px 15px;
  transition: all 0.2s linear;
}
.table-wrapper tbody td .table-text {
  font-size: 13px;
  color: #000;
  font-family: "IRANYekanX-Regular";
  white-space: nowrap;
}
.table-wrapper .table-text {
  font-size: 14px;
  color: #000000;
  font-family: "IRANYekanX-Regular";
}
.table-wrapper .success,
.table-wrapper .secondary,
.table-wrapper .primary,
.table-wrapper .danger {
  font-size: 13px;
  color: #43a047;
  font-family: "IRANYekanX-Regular";
  background: #c9f2ce;
  padding: 2px 10px;
  border-radius: 40px;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  gap: 4px;
}
.table-wrapper .success span,
.table-wrapper .secondary span,
.table-wrapper .primary span,
.table-wrapper .danger span {
  font-size: 16px;
  color: #43a047 !important;
}
.table-wrapper .secondary {
  background: #c9c9c9;
  color: #000;
}
.table-wrapper .secondary span {
  color: #000 !important;
}
.table-wrapper .danger {
  background: rgba(255, 205, 1, 0.1);
  color: #ff8d01;
}
.table-wrapper .danger span {
  color: red !important;
}
.table-wrapper .primary {
  background: rgba(177, 232, 255, 0.38);
  color: #3b82f6;
}
.table-wrapper .primary span {
  color: #3b82f6 !important;
}
.table-wrapper .product-img {
  min-width: 80px;
  width: 80px;
  background: #fff;
  border-radius: 3px;
}
.table-wrapper .product-img::after {
  padding-bottom: 70%;
}
.table-wrapper .product-img img {
  max-width: 100%;
  max-height: 100%;
}
.table-wrapper .product-title {
  font-size: 14px;
  color: #000;
  font-family: "IRANYekanX-Medium";
  text-align: right;
}
.table-wrapper .action-btn {
  font-size: 12px;
  color: #3b82f6;
  font-family: "IRANYekanX-Regular";
  width: auto;
  height: auto;
  white-space: nowrap;
  padding: 0 5px;
  border-left: 1px solid rgb(178, 178, 178);
  border-radius: 0;
  background: transparent;
}
.table-wrapper .action-btn:hover {
  color: #005bab;
  background: transparent;
}
.table-wrapper .action-btn:last-child {
  border-left: 0;
}
.table-wrapper .edit-btn {
  color: rgb(255, 132, 0);
}
.table-wrapper .edit-btn:hover {
  color: rgb(255, 111, 0);
}
.table-wrapper .delete-btn {
  color: red;
}
.table-wrapper .delete-btn:hover {
  color: rgb(193, 16, 3);
}
.table-wrapper .old-price span {
  font-size: 12px;
  color: gray;
  font-family: "IRANYekanX-Regular";
  text-decoration: line-through;
  text-align: center;
}
.table-wrapper .price {
  font-size: 14px;
  color: #000000;
  font-family: "IRANYekanX-Medium";
  text-align: center;
}
.table-wrapper .price span {
  font-size: 14px;
  color: #000000;
  font-family: "IRANYekanX-Medium";
}
.table-wrapper .profile-img {
  min-width: 50px;
}
.table-wrapper .profile-img::after {
  padding-bottom: 100%;
}
.table-wrapper .username {
  font-size: 14px;
  color: #000;
  font-family: "IRANYekanX-Regular";
}
.table-wrapper .edit-date {
  font-size: 12px;
  color: rgb(255, 132, 0);
  font-family: "IRANYekanX-Regular";
}
.table-wrapper .AZ-danger-btn {
  font-size: 10px;
  padding: 3px 10px;
}

.custom-select {
  min-width: 100px;
  flex-grow: 1;
  min-height: 40px;
  position: relative;
  border-radius: 10px;
  border: 1px solid #cacaca;
  background: #fff;
}
.custom-select .select-trigger {
  font-size: 13px;
  font-family: "IRANYekanX-Regular";
  color: #000;
  border-radius: 10px;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  padding: 6px 10px;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  z-index: 1;
}
.custom-select .select-trigger::before {
  content: "\e90d";
  font-family: "icomoon";
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  font-size: 16px;
  color: #3b82f6;
}
.custom-select .select-options {
  font-size: 13px;
  font-family: "IRANYekanX-Regular";
  color: #114b5f;
  display: none;
  position: absolute;
  top: 110%;
  left: 0;
  width: 100%;
  background-color: #fff;
  border-radius: 10px;
  z-index: 10;
  overflow: hidden;
}
.custom-select .select-options .option {
  padding: 5px 10px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  color: #114b5f;
}
.custom-select .select-options .option.active, .custom-select .select-options .option:hover {
  background-color: rgb(242, 246, 249);
  color: #3b82f6;
}
.custom-select.open .select-options {
  display: block;
}

.AZ-box {
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(74, 74, 74, 0.1);
}
.AZ-box--header {
  background: #fafafa;
  border: 1px solid #ebeced;
  padding: 16px 24px;
  border-radius: 10px 10px 0 0;
}

.AZ-border-box {
  border: 1px solid rgb(185, 185, 185);
  padding: 20px;
  border-radius: 10px;
}

.add-product-btn {
  padding: 5px 10px;
  background: #43a047;
  font-size: 15px;
}

.AZ-pagination .page-link {
  font-size: 14px;
  color: #323338;
  font-family: "IRANYekanX-Medium";
  padding-top: 8px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #fff;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.08);
  border: 0;
}
.AZ-pagination .page-item.active .page-link {
  background: #3b82f6;
  color: #fff;
}
.AZ-pagination .page-prev {
  font-size: 22px;
  padding-top: 4px;
}
.AZ-pagination .page-item:first-child .page-link {
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}
.AZ-pagination .page-item:last-child .page-link {
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}

.modal-wrapper .modal-content {
  border: 0;
  border-radius: 10px;
}
.modal-wrapper .modal-title {
  font-size: 16px;
  color: #43444a;
  font-family: "IRANYekanX-Bold";
}
.modal-wrapper .modal-title span {
  font-size: 24px;
  color: #005bab;
}
.modal-wrapper .delete-title span {
  font-size: 24px;
  color: #ff3333;
}
.modal-wrapper .btn-secondary .btn-danger {
  font-family: "IRANYekanX-Regular";
}
.modal-wrapper .modal-text {
  font-size: 14px;
  color: #323338;
  font-family: "IRANYekanX-Regular";
}

.modal-fullscreen .modal-content {
  height: calc(100% - 40px);
  margin: 20px;
}

.upload-container-product {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
}
.upload-container-product .upload-corner {
  position: absolute;
  top: 50%;
  left: 50%;
  right: unset;
  transform: translate(-50%, -50%);
  width: 100%;
}
.upload-container-product .upload-corner span {
  font-size: 20px;
  color: gray;
}
.upload-container-product .upload-corner p {
  font-size: 14px;
  color: gray;
  font-family: "IRANYekanX-Regular";
}
.upload-container-product .upload-note {
  font-size: 13px;
  color: gray;
  font-family: "IRANYekanX-Regular";
}
.upload-container-product .thumbnail-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: unset;
  gap: 8px;
  margin-bottom: 0;
  min-height: unset;
  flex-grow: 1;
}

.uoload-info {
  height: 100%;
  padding: 15px;
  border-radius: 10px;
  background: #f2f2f2;
}
.uoload-info--title {
  font-size: 14px;
  color: #000;
  font-family: "IRANYekanX-Medium";
  margin-bottom: 5px;
}
.uoload-info--list {
  margin-right: 20px;
}
.uoload-info--list li {
  list-style-type: disc;
  font-size: 14px;
  color: #000;
  font-family: "IRANYekanX-Regular";
  padding: 5px 0;
}

.card-header {
  border-bottom: 1px solid #ececec;
  padding: 0;
}
.card-header .nav-item {
  padding: 10px 15px;
  margin: 0;
  height: unset;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-header .nav-item .nav-link {
  font-size: 14px;
  color: #000;
  font-family: "IRANYekanX-Regular";
  border: 0;
}
.card-header .nav-item:hover {
  background-color: transparent;
  color: #3b82f6;
  transform: unset;
  border: 0;
}
.card-header .nav-item:hover .nav-link {
  border: 0;
}
.card-header .nav-tabs .nav-item.show .nav-link,
.card-header .nav-tabs .nav-link.active {
  color: #495057;
  background-color: #ececec;
  border-color: unset;
}

.image-upload-one {
  display: flex;
  justify-content: center;
}

.form-input {
  width: 88px;
  height: 88px;
  border: 1px solid #cccccc;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
}
.form-input .file-h {
  position: relative;
  z-index: 1;
}
.form-input::after {
  padding-bottom: 100%;
}
.form-input input {
  display: none;
}
.form-input label {
  display: block;
  width: 100%;
  height: 100%;
  background: #f9f9f9;
  border-radius: 10px;
  cursor: pointer;
  position: absolute;
  border: none;
  background-image: url("../img/user.png");
  background-repeat: no-repeat;
  background-size: cover;
}

.delete_icon,
.edit_icon {
  font-size: 12px;
  color: rgb(255, 136, 0);
  font-family: "IRANYekanX-Regular";
  padding: 5px 17px;
  border-radius: 24px;
  border: 1px solid #c4c4c4;
  transition: all 0.2s linear;
  background: rgb(255, 255, 230);
  border: 0;
}
.delete_icon:hover,
.edit_icon:hover {
  background: #c4c4c4;
}
.delete_icon span,
.edit_icon span {
  font-size: 18px;
}

.delete_icon {
  background: rgb(253, 239, 239);
  border-color: red;
  color: red;
}

.box-divider {
  margin-bottom: 30px;
}

.select2-container {
  width: 100% !important;
}

.select2-container--default .select2-selection--single {
  min-height: 40px;
  border: 1px solid rgb(193, 193, 193);
  border-radius: 10px;
  display: flex;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  font-size: 14px;
  color: #2c2c2c;
  font-family: "IRANYekanX-Regular";
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.select2-results__option {
  font-size: 14px;
  color: #2c2c2c;
  font-family: "IRANYekanX-Regular";
}

.select2-multiple .select2-container {
  width: 100% !important;
  min-width: 100% !important;
}

.select2-container--default .select2-selection--multiple {
  background: #fff;
  border: 1px solid #d9d9d9;
  border-radius: 8px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
  border: 0;
  border-radius: 8px;
  background: #d9d9d9;
  font-size: 14px;
  color: #1e1e1e;
  font-family: "IRANSansX-Regular";
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: #3b82f6 transparent transparent transparent;
}

.select2-container--default .select2-selection--multiple {
  height: 40px !important;
  border: 1px solid rgb(193, 193, 193);
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
  border-color: #3b82f6;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
  font-size: 12px;
  font-family: "IRANYekanX-Regular";
}

.edit-email {
  font-size: 13px;
  color: #3b82f6;
  font-family: "IRANYekanX-Regular";
  text-decoration: underline;
  transition: all 0.2s linear;
}
.edit-email:hover {
  color: #005bab;
}

.AZ-upload-file {
  width: 100%;
  height: 40px;
}
.AZ-upload-file .custom-file {
  width: auto;
  cursor: pointer;
  height: 100%;
}
.AZ-upload-file .custom-file-input {
  height: 3.3125rem;
  display: none;
}
.AZ-upload-file .custom-file-label {
  font-size: 13px;
  color: #114b5f;
  font-family: "IRANYekanX-Regular";
  display: block;
  border: none;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  cursor: pointer;
  height: 100%;
  padding: 8px 6px;
  border-radius: 10px;
  background: transparent;
  border: 1px solid rgb(193, 193, 193);
  width: 100%;
  position: relative;
  background: #fff;
}
.AZ-upload-file .custom-file-label::after {
  content: "آپلود";
  font-size: 14px;
  font: "IRANYekanX-Regular";
  position: absolute;
  left: 3px;
  top: 50%;
  transform: translateY(-50%);
  padding: 3px 10px;
  color: #fff;
  border-radius: 10px;
  background-color: #114b5f;
}

.AZ-accordion .accordion-item {
  width: 100%;
  margin-bottom: 9px;
  padding: 0;
  background: #ececec;
  border: 0;
  border-radius: 10px;
}
.AZ-accordion .accordion-item.open .open-accordion {
  transform: rotate(180deg);
}
.AZ-accordion .accordion-content {
  padding: 16px;
  border-radius: 0 0 10px 10px;
}
.AZ-accordion .accordion-item__button {
  border: none;
  width: 100%;
  transition: all 0.2s linear;
  cursor: pointer;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  text-align: right;
  padding: 16px;
  border-radius: 10px 10px 0 0;
  background: #d0ebff;
}
.AZ-accordion .accordion-item__button span {
  font-size: 14px;
  color: #000;
  font-family: "IRANYekanX-Regular";
}
.AZ-accordion .accordion-item__button p {
  font-size: 14px;
  font-family: "IRANYekanX-Medium";
  color: #000000;
}
.AZ-accordion .accordion-item__button .desc {
  color: #4a4a4a;
  font-size: 12px;
  font-family: "IRANYekanX-Regular";
}
.AZ-accordion .accordion-item__button .open-accordion {
  font-size: 15px;
  color: #000;
  min-width: 27px;
  min-height: 27px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s linear;
}
.AZ-accordion .accordion-item__button .accordion-order-date {
  white-space: nowrap;
}
.AZ-accordion .spotplayer-accordion .accordion-item__button {
  background: #6310d7;
  color: white;
}
.AZ-accordion .spotplayer-accordion .accordion-item__button .desc,
.AZ-accordion .spotplayer-accordion .accordion-item__button p {
  color: #fff;
}

.AZ-time-box {
  padding: 5px;
  border-radius: 10px;
  border: 1px solid #fff;
  background: #e3f2fd;
}
.AZ-time-box .box--number {
  font-size: 12px;
  color: #000;
  font-family: "IRANYekanX-Regular";
  min-width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  padding-top: 5px;
}
.AZ-time-box .box-title {
  font-size: 10px;
  color: #4a4a4a;
  font-family: "IRANYekanX-Medium";
}
.AZ-time-box .box-time {
  font-size: 12px;
  color: #000;
  font-family: "IRANYekanX-Regular";
}
.AZ-time-box .box-time span {
  font-size: 10px;
  color: #495057;
}
.AZ-time-box .delete-time {
  min-width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: red;
  background: rgb(255, 237, 237);
  transition: all 0.2s linear;
  border: 0;
}
.AZ-time-box .delete-time:hover {
  background: red;
  color: #fff;
}
.AZ-time-box .date-field {
  font-size: 12px;
  border: 0;
  width: 70px;
  background: transparent;
}
.AZ-time-box .form-control {
  padding: 0;
  width: 0;
  visibility: hidden;
}
.AZ-time-box .time-display {
  font-size: 12px;
  color: #000;
  font-family: "IRANYekanX-Regular";
  width: 40px;
}
.AZ-time-box .time-picker-wrapper {
  cursor: pointer;
}

.AZ-add-product-page .resume-link {
  font-size: 10px;
  color: red;
  text-decoration: underline;
  white-space: nowrap;
}
.AZ-add-product-page .resume-link.success {
  color: #43a047;
}

.progressbar-dashboard {
  margin-bottom: 40px;
  overflow: hidden;
  counter-reset: step;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.progressbar-dashboard li {
  position: relative;
  width: 33%;
  min-height: 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.progressbar-dashboard li a {
  padding: 15px;
  height: 100%;
  min-height: 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 12px;
  font-family: "IRANYekanX-Regular";
  color: #000;
  position: relative;
  z-index: 10;
}
.progressbar-dashboard li a span {
  font-size: 10px;
  display: block;
  font-family: "IRANYekanX-Regular";
}
.progressbar-dashboard li::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 30px;
  height: 100%;
  border-right: 35px solid #e7e7e7;
  border-top: 35px solid transparent;
  border-bottom: 35px solid transparent;
  transition: all 0.2s linear;
}
.progressbar-dashboard li::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: calc(100% - 35px);
  background: #e7e7e7;
  height: 100%;
  transition: all 0.2s linear;
  border-radius: 0 5px 5px 0;
  height: 100%;
}
.progressbar-dashboard li:last-child::after {
  content: none;
}
.progressbar-dashboard li:last-child::before {
  width: 100%;
  border-radius: 5px;
}
.progressbar-dashboard li:last-child p {
  text-align: center;
}
.progressbar-dashboard li:last-child.active:before {
  background: #ff8600;
}
.progressbar-dashboard li:hover::after {
  border-right: 35px solid #3b82f6;
}
.progressbar-dashboard li:hover::before {
  background: #3b82f6;
}
.progressbar-dashboard li:hover a {
  color: #fff;
}

.AZ-wallet-page .wallet-box {
  width: 50%;
  margin: auto;
}
.AZ-wallet-page .note {
  font-size: 13px;
  color: #000;
  font-family: "IRANYekanX-Regular";
  margin-top: 5px;
}
.AZ-wallet-page .note span {
  color: red;
  font-family: "IRANYekanX-Regular";
}
.AZ-wallet-page .payout-info {
  list-style-type: disc;
  background: rgb(255, 255, 236);
  padding: 10px;
  border-radius: 10px;
}
.AZ-wallet-page .payout-info ul {
  margin-right: 10px;
}
.AZ-wallet-page .payout-info--text {
  font-size: 12px;
  color: #000;
  font-family: "IRANYekanX-Regular";
  list-style-type: disc;
}
.AZ-wallet-page .bank-account__add-btn {
  font-size: 14px;
  color: #3b82f6;
  font-family: "IRANYekanX-Regular";
  text-decoration: underline;
  transition: all 0.2s linear;
}
.AZ-wallet-page .bank-account__add-btn:hover {
  color: #005bab;
}

.message-box {
  background: rgb(248, 245, 233);
  padding: 10px;
  border-radius: 5px;
}
.message-box p {
  font-size: 12px;
  color: rgb(195, 91, 0);
  font-family: "IRANYekanX-Regular";
}
.message-box p span {
  font-size: 16px;
}

.success-message {
  background: rgb(232, 255, 246);
}
.success-message p {
  color: #43a047;
}

.warning-message {
  background: #fee8cc;
}
.warning-message p {
  color: #323338;
}
.warning-message p span {
  color: #c97000;
}

.payoutReceipt-modal .payoutReceipt-list li {
  border-bottom: 1px solid #ececec;
  padding: 5px 0;
}
.payoutReceipt-modal .payoutReceipt-list li:last-child {
  border-bottom: 0;
}
.payoutReceipt-modal .payoutReceipt-list .list-title {
  font-size: 12px;
  color: #495057;
  font-family: "IRANYekanX-Regular";
}
.payoutReceipt-modal .payoutReceipt-list .list-text {
  font-size: 14px;
  color: #000;
  font-family: "IRANYekanX-Regular";
}
.payoutReceipt-modal .payoutReceipt-list .list-text span {
  font-size: 14px;
  color: #000;
  font-family: "IRANYekanX-Regular";
}

.bg-wheat {
  background: wheat;
}

.AZ-orders-page .table-wrapper td,
.AZ-orders-page .table-wrapper th {
  border: 1px solid #ececec;
  background: #fff;
}
.AZ-orders-page .AZ-accordion .accordion-item.open .open-accordion {
  transform: unset;
}
.AZ-orders-page .AZ-accordion .accordion-item.open > div > .accordion-item__button > div > .open-accordion {
  transform: rotate(180deg);
}
.AZ-orders-page .AZ-accordion .accordion-item.open > .accordion-item__button > div > .open-accordion {
  transform: rotate(180deg);
}
.AZ-orders-page .AZ-accordion .accordion-item__button {
  border-radius: 10px 10px 10px 0;
  padding: 16px 5px;
  height: 80px;
}
.AZ-orders-page .AZ-accordion .accordion-item__button p {
  font-size: 12px;
}
.AZ-orders-page .AZ-accordion .accordion-item__button span {
  font-size: 14px;
}
.AZ-orders-page .AZ-accordion .accordion-item__button .accordion-order-title {
  font-family: "IRANYekanX-Bold";
  font-size: 13px;
  margin-bottom: 10px;
  white-space: nowrap;
}
.AZ-orders-page .AZ-accordion .accordion-item__button .accordion-order--img {
  width: 90px;
  border-radius: 3px;
  background: #fff;
}
.AZ-orders-page .AZ-accordion .accordion-item__button .accordion-order--img::after {
  padding-bottom: 60%;
}
.AZ-orders-page .AZ-accordion .accordion-item__button .accordion-order--img img {
  max-width: 100%;
  max-height: 100%;
}
.AZ-orders-page .AZ-accordion .accordion-item__button .table-btn span {
  color: #333 !important;
  font-size: 18px;
}
.AZ-orders-page .AZ-accordion .AZ-checkbox-group label {
  padding: 10px 22px 10px 0;
}
.AZ-orders-page .AZ-accordion .AZ-warning-btn {
  padding: 5px 20px;
  font-size: 12px;
}
.AZ-orders-page .AZ-accordion .accordion-status {
  height: 80px;
  border-radius: 0 10px 10px 0;
  padding: 10px;
}
.AZ-orders-page .AZ-accordion .accordion-status .accordion-order-code {
  color: #fff;
}
.AZ-orders-page .AZ-accordion .canceled .accordion-status:first-child {
  background: red;
}
.AZ-orders-page .AZ-accordion .full .accordion-status {
  background: #43a047;
}
.AZ-orders-page .AZ-accordion .confirmed .accordion-status:first-child {
  background: orange;
}
.AZ-orders-page .AZ-accordion .pending .accordion-status:first-child {
  background: #3b82f6;
}

.dashboard-sidebar {
  height: unset !important;
}

.swiper-button-prev,
.swiper-button-next,
.swiper-rtl .swiper-button-next {
  left: 0;
  right: auto;
  margin-top: 0;
}
.swiper-button-prev::after,
.swiper-button-next::after,
.swiper-rtl .swiper-button-next::after {
  font-size: 14px;
  min-width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fff;
  color: #000;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.swiper-rtl .swiper-button-prev {
  right: 0;
}

.profile-action {
  width: auto !important;
  border-radius: 40px !important;
}

.notification-text {
  font-size: 0.75rem;
  text-align: right;
}

.notification-dropdown .dropdown-menu {
  left: 0 !important;
  width: 300px;
  right: unset !important;
  max-height: 400px;
  overflow-y: auto;
  border-radius: 10px;
  box-shadow: var(--shadow);
}
.notification-dropdown .empty-icon {
  margin-bottom: 0;
  font-size: 30px;
}

.mobile-nav-item {
  padding: 0 !important;
}

.AZ-page {
  background: #fafafa;
  min-height: 100vh;
}

.timer-wwrapper {
  border-bottom: 2px solid #43444a;
  padding-bottom: 5px;
  margin-bottom: 10px;
}
.timer-wwrapper .timer-text {
  font-size: 12px;
  color: #43444a;
  font-family: "IRANYekanX-Medium";
}
.timer-wwrapper.short-time {
  border-bottom: 2px solid #ff0000;
}
.timer-wwrapper.short-time .number {
  color: #ff0000;
}
.timer-wwrapper.short-time .part {
  color: #ff0000;
}

.amazing-offer-time {
  direction: ltr;
}
.amazing-offer-time .number {
  font-family: "IRANYekanX-Medium";
  font-size: 12px;
  color: #43444a;
}
.amazing-offer-time .part {
  font-size: 12px;
  display: flex;
  align-items: center;
  margin: 0 1px;
  gap: 2px;
  color: #43444a;
}
.amazing-offer-time .part:last-child .text {
  display: none;
}

.AZ-products-page {
  padding: 40px 0;
}
.AZ-products-page .tabs {
  background: #fff;
  border-radius: 10px;
  padding: 16px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
}
.AZ-products-page .tabs .tab-link {
  border-radius: 8px;
  color: #43444a;
}
.AZ-products-page .tabs .tab-link span {
  font-size: 12px;
  color: #54555d;
  font-family: "IRANYekanX-Medium";
}
.AZ-products-page .tabs .tab-link span .icon-star {
  color: #ffd829;
}
.AZ-products-page .tabs li {
  width: 33%;
}
.AZ-products-page .tabs .active .tab-link {
  background: #ebf2fe;
  font-family: "IRANYekanX-Bold";
  border: 1px solid #ebeced;
}
.AZ-products-page .tabContent {
  border-radius: 10px;
  background: white;
  padding: 16px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
}
.AZ-products-page .tabContainer--title {
  font-size: 16px;
  color: #323338;
  font-family: "IRANYekanX-Bold";
}
.AZ-products-page .tabContainer--title span {
  color: #3b82f6;
}
.AZ-products-page .provider-box {
  background-color: #ebf2fe;
  border-radius: 10px;
  padding: 16px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  position: relative;
}
.AZ-products-page .provider-box::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-image: url("../images/bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  opacity: 0.08;
}
.AZ-products-page .provider-box--content {
  position: relative;
  z-index: 1;
}

.product-tooltip {
  opacity: 1;
}
.product-tooltip .tooltip-inner {
  color: #43444a !important;
  font-size: 12px;
  font-family: "IRANYekanX-Medium";
  background: #d9ecda !important;
  border-radius: 20px;
}
.product-tooltip .tooltip-arrow::before {
  border-top-color: #d9ecda !important;
  border-bottom-color: #d9ecda !important;
}
.product-tooltip .bs-tooltip-top .tooltip-arrow::before {
  border-top-color: #d9ecda !important;
}
.product-tooltip .bs-tooltip-bottom .tooltip-arrow::before {
  border-bottom-color: #d9ecda !important;
}
.product-tooltip .bs-tooltip-right .tooltip-arrow::before {
  border-right-color: #d9ecda !important;
}
.product-tooltip .bs-tooltip-left .tooltip-arrow::before {
  border-left-color: #d9ecda !important;
}

.AZ-product-card {
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
  box-shadow: 1px 0 4px 0 rgba(0, 0, 0, 0.04);
  position: relative;
}
.AZ-product-card .product-card--img {
  width: 100%;
}
.AZ-product-card .product-card--img::after {
  padding-bottom: 60%;
}
.AZ-product-card .product-card--progress {
  padding: 4px 8px;
  border-radius: 8px;
  background: #ebeced;
}
.AZ-product-card .progress {
  height: 22px;
}
.AZ-product-card .product-card--title {
  font-size: 14px;
  font-family: "IRANYekanX-Medium";
  color: #222225;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: right;
}
.AZ-product-card .product-card--text {
  font-size: 12px;
  font-family: "IRANYekanX-Bold";
  color: #3b82f6;
}
.AZ-product-card .product-card--body {
  padding: 16px;
}
.AZ-product-card .product-card--price {
  font-size: 16px;
  font-family: "IRANYekanX-Medium";
  color: #3b82f6;
}
.AZ-product-card .old-price {
  font-size: 12px;
  font-family: "IRANYekanX-Regular";
  color: #909197;
  text-decoration: line-through;
}
.AZ-product-card .rate {
  font-size: 12px;
  font-family: "IRANYekanX-Medium";
  color: #222225;
}
.AZ-product-card .rate span {
  font-size: 16px;
  color: #ffd829;
}
.AZ-product-card .product-card--details {
  font-size: 12px;
  font-family: "IRANYekanX-Regular";
  color: #43444a;
}
.AZ-product-card .product-card--details span {
  font-size: 16px;
  color: #3b82f6;
}
.AZ-product-card .card-actions {
  position: absolute;
  top: 10px;
  width: 100%;
  left: 0;
  z-index: 1;
}
.AZ-product-card .discount-tag {
  font-size: 12px;
  font-family: "IRANYekanX-Regular";
  color: #fff;
  background: #ff0000;
  border-radius: 0 24px 24px 0;
  padding: 4px 16px 4px 8px;
}
.AZ-product-card .like-btn {
  font-size: 20px;
  color: #fff;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 8px;
  background: rgba(255, 255, 255, 0.33);
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.AZ-product-card .type--tag {
  font-size: 12px;
  color: #fb8c00;
  font-family: "IRANYekanX-Regular";
  padding: 0 8px;
  border-radius: 40px;
  background: #fff3e5;
  display: flex;
  align-items: center;
  gap: 4px;
}

.progress-bar {
  font-size: 14px;
  font-family: "IRANYekanX-Regular";
  padding-top: 3px;
}

.progress-success .progress-bar {
  background: linear-gradient(to bottom left, #009887, #0a695b);
}

.progress-warning .progress-bar {
  background: linear-gradient(to bottom left, #f59925, #c97000);
}

.progress-danger .progress-bar {
  background: linear-gradient(to bottom left, #fc6565, #ff3333);
}

.like-btn .active {
  color: #ed2e2e;
}

.delete-filter {
  font-size: 14px;
  color: #ff3333;
  font-family: "IRANYekanX-Medium";
  transition: all 0.2s linear;
}
.delete-filter:hover {
  color: #fc6565;
}

.filter-modal .AZ-sidebar {
  box-shadow: none;
}
.filter-modal .AZ-accordion .accordion-content {
  padding-top: 0;
}
.filter-modal .AZ-accordion .accordion-item:first-child {
  border-top: 0;
}

.AZ-toolbar-products {
  background: #fff;
  padding: 8px 16px;
  box-shadow: 1px 0 4px 0 rgba(0, 0, 0, 0.04);
  border-radius: 8px;
}
.AZ-toolbar-products .filter-btn {
  font-size: 12px;
  color: #43444a;
  font-family: "IRANYekanX-Regular";
  border-radius: 8px;
  padding: 8px;
  background: #fff;
  box-shadow: 1px 0 4px 0 rgba(0, 0, 0, 0.04);
}
.AZ-toolbar-products .filter-btn span {
  font-size: 20px;
  color: #72737a;
}
.AZ-toolbar-products .custom-select {
  min-width: 150px;
  flex-grow: unset;
  border: 1px solid #ebeced;
  background: #fafafa;
}
.AZ-toolbar-products .select2-container--default .select2-selection--single {
  border: 1px solid #ebeced;
  background: #fafafa;
  min-width: 200p;
}
.AZ-toolbar-products .select2-container {
  min-width: 200px;
}

.radio .filter__title {
  font-size: 14px;
  color: #43444a;
  font-family: "IRANYekanX-Medium";
}
.radio .radio__toggle {
  position: relative;
  width: 64px;
  height: 32px;
  margin: 0;
  vertical-align: top;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  transition: all 0.2s linear;
  box-sizing: border-box;
  cursor: pointer;
  display: flex;
  align-items: center;
  background: transparent;
  border-radius: 15px;
  border: 1px solid #54555d;
}
.radio .radio__toggle::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 24px;
  height: 24px;
  background-color: #000000;
  border-radius: 50%;
  transform: translate(calc(100% - 20px), -50%);
  transition: all 0.5s cubic-bezier(0.2, 0.85, 0.32, 1.2);
  box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.25);
}
.radio .radio__toggle:checked {
  background: #3b82f6;
  border-color: #3b82f6;
}
.radio .radio__toggle:checked::after {
  left: 50%;
  transform: translate(calc(100% - 20px), -50%);
  background: #fff;
}

.AZ-sticky {
  position: sticky;
  top: 20px;
  left: 0;
  width: 100%;
}

.AZ-sidebar {
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
}
.AZ-sidebar .line {
  background: #ebeced;
  margin: 0;
}
.AZ-sidebar .sidebar-title {
  font-size: 16px;
  color: #43444a;
  font-family: "IRANYekanX-Bold";
  padding: 16px;
}
.AZ-sidebar .sidebar-title span {
  font-size: 24px;
  color: #72737a;
}
.AZ-sidebar .box-slice {
  border-top: 1px solid #cdced0;
  padding: 16px;
}
.AZ-sidebar .box-slice .box-title {
  font-size: 14px;
  color: #43444a;
  font-family: "IRANYekanX-Medium";
  margin-bottom: 15px;
}
.AZ-sidebar .AZ-accordion .accordion-item {
  margin-bottom: 0;
  background: transparent;
  border-radius: 0;
  border-top: 1px solid #cdced0;
}
.AZ-sidebar .AZ-accordion .accordion-content {
  border-radius: 0;
}
.AZ-sidebar .AZ-accordion .accordion-item__button {
  padding: 16px;
  border-radius: 0;
  background: transparent;
}
.AZ-sidebar .AZ-accordion .accordion-item__button p {
  font-size: 14px;
  color: #43444a;
}
.AZ-sidebar .AZ-accordion .accordion-item__button .open-accordion {
  font-size: 22px;
  color: #43444a;
  min-width: unset;
  min-height: unset;
  border-radius: 0;
  background: transparent;
}
.AZ-sidebar .AZ-checkbox-group .clr {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-image: linear-gradient(to bottom left, #3c80ff, #2458b8);
}
.AZ-sidebar .AZ-checkbox-group .clr.primary {
  background-image: linear-gradient(to bottom left, #3c80ff, #2458b8);
}
.AZ-sidebar .AZ-checkbox-group .clr.warning {
  background-image: linear-gradient(to bottom left, #c97000, #c97000);
}
.AZ-sidebar .AZ-checkbox-group .clr.success {
  background-image: linear-gradient(to bottom left, #009887, #0a695b);
}
.AZ-sidebar .AZ-checkbox-group .clr.danger {
  background-image: linear-gradient(to bottom left, #fc6565, #ff3333);
}

.empty-box {
  margin: 50px 0;
}
.empty-box .img-box {
  width: 376px;
  height: 376px;
  background-image: radial-gradient(closest-side, #89b4fa, rgba(137, 180, 250, 0));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.empty-box .img-box img {
  width: 280px;
}
.empty-box .empty-title {
  font-size: 24px;
  color: #222225;
  font-family: "IRANYekanX-Bold";
}
.empty-box .empty-text {
  font-size: 16px;
  color: #43444a;
  font-family: "IRANYekanX-Medium";
}

.dropdown-menu {
  text-align: right !important;
}

.productsSwiper .swiper-slide,
.mostVisitedSwiper .swiper-slide {
  width: 320px;
}
.productsSwiper .AZ-product-card,
.mostVisitedSwiper .AZ-product-card {
  width: 100%;
}

.AZ-product-page {
  padding: 40px 0;
}
.AZ-product-page .cart-btn {
  font-size: 16px;
  padding: 10px 16px;
}
.AZ-product-page .similar-products {
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}
.AZ-product-page .similar-products--head {
  background: #fafafa;
  border-bottom: 1px solid #ebeced;
  padding: 16px 24px;
}
.AZ-product-page .similar-products--body {
  padding: 16px;
}
.AZ-product-page .similar-products--title {
  font-size: 15px;
  color: #323338;
  font-family: "IRANYekanX-Bold";
}
.AZ-product-page .similar-products--title span {
  font-size: 24px;
}
.AZ-product-page .cancel-box a {
  font-size: 12px;
  color: #3b82f6;
  font-family: "IRANYekanX-Medium";
}
.AZ-product-page .cancel-box a span {
  font-size: 18px;
  color: #235097;
}
.AZ-product-page .category-title {
  font-size: 14px;
  color: #43444a;
  font-family: "IRANYekanX-Regular";
}
.AZ-product-page .category-link {
  font-size: 14px;
  color: #3b82f6;
  font-family: "IRANYekanX-Regular";
  transition: all 0.2s linear;
}
.AZ-product-page .category-link:hover {
  text-decoration: underline;
}
.AZ-product-page .product--progress {
  padding: 16px;
  border-radius: 8px;
  background: #ebf2fe;
}
.AZ-product-page .product--progress--title {
  font-size: 14px;
  color: #2f69c7;
  font-family: "IRANYekanX-Regular";
}
.AZ-product-page .product--progress--title span {
  font-size: 16px;
  color: #c97000;
}
.AZ-product-page .product--progress--details {
  font-size: 12px;
  color: #323338;
  font-family: "IRANYekanX-Regular";
}
.AZ-product-page .tabs-wrapper {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
}
.AZ-product-page .tabs {
  background: #fafafa;
  border-bottom: 0;
}
.AZ-product-page .tabs .tab-link {
  font-size: 14px;
  color: #222225;
  font-family: "IRANYekanX-Medium";
  background: #fafafa;
  border-left: 1px solid #ebeced;
  padding: 16px;
  border-radius: 0;
}
.AZ-product-page .tabs .tab-link span {
  font-size: 24px;
  color: #222225;
}
.AZ-product-page .tabs .tab-link p span {
  font-size: 14px;
  color: #3b82f6;
}
.AZ-product-page .tabs li {
  width: 20%;
}
.AZ-product-page .tabs li:last-child .tab-link {
  border-left: 0;
}
.AZ-product-page .tabs li.active .tab-link {
  background: #3b82f6;
  color: #fff;
}
.AZ-product-page .tabs li.active .tab-link span {
  color: #fff;
}
.AZ-product-page .tabContent {
  background: #fff;
  padding: 16px;
}
.AZ-product-page .course-features {
  background: #fafafa;
  border: 1px solid #cdced0;
  border-radius: 8px;
  height: 100%;
  padding: 8px 16px;
}
.AZ-product-page .course-features .icon-box {
  font-size: 18px;
  color: #3b82f6;
}
.AZ-product-page .course-features .features-title {
  font-size: 14px;
  color: #222225;
  font-family: "IRANYekanX-Bold";
}
.AZ-product-page .course-features .features-text {
  font-size: 14px;
  color: #43444a;
  font-family: "IRANYekanX-Regular";
}
.AZ-product-page .product-page-btns {
  position: absolute;
  top: -10px;
  right: -20px;
  z-index: 1;
}
.AZ-product-page .productDetails-box {
  background: #fff;
  padding: 24px;
  box-shadow: 1px 0 4px 0 rgba(0, 0, 0, 0.04);
  border-radius: 16px;
}
.AZ-product-page .product-title {
  font-size: 18px;
  color: #191a1c;
  font-family: "IRANYekanX-Bold";
}
.AZ-product-page .product-title--EN {
  font-size: 14px;
  color: #72737a;
  font-family: "IRANYekanX-Regular";
}
.AZ-product-page .details-box {
  background: #fafafa;
  border-radius: 8px;
  border: 1px solid #ebeced;
  padding: 8px 16px;
  height: 100%;
}
.AZ-product-page .details-box--title {
  font-size: 14px;
  color: #222225;
  font-family: "IRANYekanX-Bold";
}
.AZ-product-page .details-box--title span {
  font-size: 20px;
  color: #235097;
}
.AZ-product-page .details-box--title .icon-star {
  font-size: 16px;
  color: #ffd829;
}
.AZ-product-page .details-box--text {
  font-size: 14px;
  color: #323338;
  font-family: "IRANYekanX-Regular";
}
.AZ-product-page .details-box--text a {
  color: #2f69c7;
}
.AZ-product-page .details-box--text a:hover {
  text-decoration: underline;
}
.AZ-product-page .product-btns {
  font-size: 24px;
  color: #222225;
  background: #fff;
  box-shadow: 1px 0 4px 0 rgba(0, 0, 0, 0.04);
  border-radius: 8px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.AZ-product-page .resume-dropdown .dropdown-toggle {
  font-size: 14px;
  font-family: "IRANYekanX-Regular";
  color: #2f69c7;
  background: transparent;
  border: 0;
}
.AZ-product-page .resume-dropdown .dropdown-toggle::after {
  content: none;
}
.AZ-product-page .resume-dropdown .dropdown-menu {
  width: 300px;
  border: 0;
  background: #d8e6fd;
  padding: 0 16px 16px;
  border-radius: 16px;
}
.AZ-product-page .resume-dropdown .shape-img {
  position: relative;
}
.AZ-product-page .resume-dropdown .shape-img::before, .AZ-product-page .resume-dropdown .shape-img::after {
  content: "";
  position: absolute;
  right: calc(100% - 3px);
  top: -20px;
  width: 20px;
  height: 20px;
  border-radius: 0 0 15px 0;
  box-shadow: 5px 5px 0 0 #d8e6fd;
}
.AZ-product-page .resume-dropdown .shape-img::before {
  right: unset;
  left: calc(100% - 3px);
  border-radius: 0 0 0 15px;
  box-shadow: -5px 5px 0 0 #d8e6fd;
}
.AZ-product-page .resume-dropdown .profile-img {
  width: 80px;
  border-radius: 50%;
  margin-top: -40px;
  border: 10px solid #d8e6fd;
}
.AZ-product-page .resume-dropdown .profile-img::after {
  padding-bottom: 100%;
}
.AZ-product-page .resume-dropdown .username {
  font-size: 14px;
  color: #222225;
  font-family: "IRANYekanX-Bold";
}
.AZ-product-page .resume-dropdown .resume-text {
  font-size: 14px;
  color: #43444a;
  font-family: "IRANYekanX-Regular";
}

.view-all {
  font-size: 12px;
  color: #3b82f6;
  font-family: "IRANYekanX-Regular";
  display: flex;
  background: transparent;
  border: 0;
}
.view-all span {
  font-size: 16px;
}

.help-dropdown .dropdown-toggle::before, .help-dropdown .dropdown-toggle::after {
  content: none;
}
.help-dropdown .view-cart-link {
  font-size: 13px;
  color: #909197;
  font-family: "IRANYekanX-Medium";
}
.help-dropdown .view-cart-link span {
  font-size: 20px;
}
.help-dropdown .dropdown-menu {
  background: #d9ecda;
  padding: 16px;
  border-radius: 10px;
  border: 0;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  z-index: 1;
  min-width: 500px;
}
.help-dropdown .help-dropdown--title {
  font-size: 16px;
  color: #323338;
  font-family: "IRANYekanX-Bold";
}
.help-dropdown .help-dropdown--title span {
  font-size: 24px;
  color: #009887;
}
.help-dropdown .help-dropdown--text {
  font-size: 14px;
  color: #43444a;
  font-family: "IRANYekanX-Regular";
}
.help-dropdown .help-dropdown--text span {
  color: #009887;
  font-size: 20px;
}
.help-dropdown .help-buy-btn {
  position: relative;
  height: 40px;
  width: calc(100% - 32px);
  margin: auto;
}
.help-dropdown .help-buy-btn .arrow-double {
  position: relative;
  z-index: 10;
  transform: rotate(180deg);
  font-size: 24px;
  color: #c97000;
}
.help-dropdown .help-buy-btn::before, .help-dropdown .help-buy-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  width: 28px;
  height: 28px;
  background: #fff;
  border-radius: 0 0 0 5px;
  transform: translateY(-50%) rotate(45deg);
  border-left: 1px dashed #fdd199;
  border-bottom: 1px dashed #fdd199;
}
.help-dropdown .help-buy-btn::before {
  border: 0;
  right: unset;
  left: -16px;
  border-right: 1px dashed #fdd199;
  border-top: 1px dashed #fdd199;
}
.help-dropdown .help-buy-btn p {
  font-size: 14px;
  color: #323338;
  font-family: "IRANYekanX-Medium";
  background: #fff3e5;
  border-top: 1px dashed #fdd199;
  border-bottom: 1px dashed #fdd199;
  height: 100%;
}
.help-dropdown .help-buy-btn p span {
  color: #c97000;
  font-size: 20px;
}

.presentation-box {
  border-radius: 8px;
  padding: 16px;
  border: 1px solid #cdced0;
  background: #fafafa;
  margin-bottom: 10px;
}
.presentation-box--profile {
  width: 103px;
  border-radius: 8px;
}
.presentation-box--profile::after {
  padding-bottom: 100%;
}
.presentation-box--username {
  font-size: 18px;
  color: #191a1c;
  font-family: "IRANYekanX-Bold";
}
.presentation-box--post {
  font-size: 14px;
  color: #191a1c;
  font-family: "IRANYekanX-Regular";
}
.presentation-box--text {
  font-size: 16px;
  color: #323338;
  font-family: "IRANYekanX-Regular";
}

.add-comment-wrapper .add-comment--box {
  background: white;
  border-radius: 8px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
  padding: 8px;
  height: 100%;
}
.add-comment-wrapper .progress {
  width: 100%;
  height: 10px;
}
.add-comment-wrapper .progress-bar {
  background: #ffd829;
}
.add-comment-wrapper .stars span {
  font-size: 24px;
  color: #ffd829;
}
.add-comment-wrapper .total {
  font-size: 12px;
  color: #54555d;
  font-family: "IRANYekanX-Regular";
}
.add-comment-wrapper .rating {
  font-size: 32px;
  color: #2f69c7;
  font-family: "IRANYekanX-Bold";
}

.comment-box .stars span {
  font-size: 16px;
  color: #ffd829;
}
.comment-box--username {
  font-size: 16px;
  font-family: "IRANYekanX-Bold";
  color: #323338;
}
.comment-box--profile {
  width: 24px;
  border-radius: 50%;
}
.comment-box--profile::after {
  padding-bottom: 100%;
}
.comment-box--date {
  font-size: 12px;
  color: #72737a;
  font-family: "IRANYekanX-Regular";
}
.comment-box--action {
  font-size: 12px;
  color: #54555d;
  font-family: "IRANYekanX-Regular";
  border: 1px solid #cdced0;
  border-radius: 10px;
  padding: 4px 8px;
  background: transparent;
  transition: all 0.2s linear;
}
.comment-box--action span {
  font-size: 20px;
  color: #975400;
}
.comment-box--action:hover {
  background: #cdced0;
}
.comment-box .comment-number {
  font-size: 14px;
  color: #54555d;
  font-family: "IRANYekanX-Regular";
}

.sort-title {
  font-size: 14px;
  color: #323338;
  font-family: "IRANYekanX-Bold";
}
.sort-title span {
  font-size: 24px;
}

.sort-link {
  font-size: 14px;
  color: #43444a;
  font-family: "IRANYekanX-Regular";
}
.sort-link.active {
  color: #3b82f6;
  font-family: "IRANYekanX-Bold";
}
.sort-link:hover {
  color: #3b82f6;
}

.empty-comments {
  font-size: 14px;
  color: #323338;
  font-family: "IRANYekanX-Bold";
}

.add-comments-btn {
  font-size: 16px;
  color: #3b82f6;
  font-family: "IRANYekanX-Medium";
  border: 1px solid #3b82f6;
  background: transparent;
  transition: all 0.2s linear;
  border-radius: 8px;
  padding: 8px 16px;
  width: 230px;
}
.add-comments-btn span {
  font-size: 24px;
}
.add-comments-btn:hover {
  background: #3b82f6;
  color: #fff;
}

.provider-box--text, .provider-box--desc {
  font-size: 14px;
  color: #72737a;
  font-family: "IRANYekanX-Regular";
}
.provider-box--text {
  font-family: "IRANYekanX-Regular";
}
.provider-box .location {
  font-size: 14px;
  color: #235097;
  font-family: "IRANYekanX-Regular";
}
.provider-box .location span {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #fafafa;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
  transition: all 0.2s linear;
  font-size: 20px;
  color: #235097;
  display: flex;
  align-items: center;
  justify-content: center;
}
.provider-box .location:hover span {
  background: #3b82f6;
  color: #fff;
}
.provider-box--username {
  font-size: 16px;
  color: #323338;
  font-family: "IRANYekanX-Bold";
}
.provider-box--contact-list .contact-link {
  font-size: 14px;
  color: #235097;
  font-family: "IRANYekanX-Regular";
}
.provider-box--contact-list .contact-link span {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 20px;
  color: #235097;
  background: #ebf2fe;
  border: 1px solid #d8e6fd;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s linear;
}
.provider-box--contact-list .contact-link:hover span {
  background: #235097;
  color: #ebf2fe;
}

.download-link {
  font-size: 14px;
  color: #2f69c7;
  font-family: "IRANYekanX-Medium";
  transition: all 0.2s linear;
}
.download-link span {
  font-size: 24px;
}
.download-link:hover {
  color: #235097;
}

.AZ-product-page .swiper-container {
  overflow: hidden;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.AZ-product-page .swiper-container-wrapper {
  display: flex;
  flex-flow: row nowrap;
  gap: 10px;
  border-bottom: 1px solid #cdced0;
  padding-bottom: 20px;
  height: 430px;
}
.AZ-product-page .swiper-pagination {
  left: 5px;
  bottom: 5px;
  right: unset;
  width: unset;
  background: rgba(28, 28, 28, 0.26);
  border-radius: 40px;
  padding: 5px 10px;
  display: flex;
}
.AZ-product-page .swiper-pagination .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 1;
  border: 1px solid transparent;
  outline: 1px solid #ffffff;
  background: transparent;
}
.AZ-product-page .swiper-pagination .swiper-pagination-bullet-active {
  background: #fff;
  border: 1.5px solid rgba(28, 28, 28, 0.5);
}
.AZ-product-page .swiper-button-next, .AZ-product-page .swiper-button-prev {
  color: #000;
}
.AZ-product-page .swiper-slide {
  text-align: center;
  background-size: cover;
  background-position: center;
  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-active .title {
  margin-bottom: 0.5rem;
  font-size: 24px;
  color: #000;
  transition: opacity 0.5s ease 0.5s;
}
.AZ-product-page .swiper-slide-active .description {
  font-size: 16px;
  color: #777;
  transition: opacity 0.5s ease 0.75s;
}
.AZ-product-page .gallery-top {
  position: relative;
  width: 85%;
}
.AZ-product-page .gallery-img {
  width: 100%;
  border-radius: 10px;
}
.AZ-product-page .gallery-img::after {
  padding-bottom: 60%;
}
.AZ-product-page .gallery-img img {
  max-height: 100%;
  max-width: 100%;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.AZ-product-page .gallery-img video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.AZ-product-page .gallery-thumbs {
  width: 15%;
  height: 350px;
  height: 100%;
  padding-top: 10px;
}
.AZ-product-page .gallery-thumbs .swiper-wrapper {
  flex-direction: column;
}
.AZ-product-page .gallery-thumbs .swiper-slide {
  width: 100%;
  opacity: 0.75;
  cursor: pointer;
  border-radius: 8px;
}
.AZ-product-page .gallery-thumbs .thumb-img {
  width: 100%;
  border-radius: 8px;
}
.AZ-product-page .gallery-thumbs .thumb-img::after {
  padding-bottom: 70%;
}
.AZ-product-page .gallery-thumbs .thumb-img video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.AZ-product-page .gallery-thumbs .swiper-slide-thumb-active {
  opacity: 1;
}

.AZ-sidebar-product {
  background: #fff;
  box-shadow: 1px 0 4px 0 rgba(0, 0, 0, 0.04);
  border-radius: 16px;
}
.AZ-sidebar-product .sidebar-div-title {
  font-size: 14px;
  color: #323338;
  font-family: "IRANYekanX-Medium";
}
.AZ-sidebar-product .sidebar-product--head {
  padding: 8px 16px;
  background: #ebf2fe;
  border-radius: 16px 16px 0 0;
}
.AZ-sidebar-product .sidebar-title {
  font-size: 18px;
  color: #323338;
  font-family: "IRANYekanX-Bold";
}
.AZ-sidebar-product .sidebar-title span {
  font-size: 28px;
  color: #3b82f6;
}
.AZ-sidebar-product .timer-text {
  font-size: 12px;
  color: #72737a;
  font-family: "IRANYekanX-Regular";
}
.AZ-sidebar-product .short-time .timer-text {
  color: #ff0000;
}
.AZ-sidebar-product .sidebar-product--body {
  padding: 16px;
}
.AZ-sidebar-product .product-price {
  font-size: 20px;
  color: #2f69c7;
  font-family: "IRANYekanX-Bold";
}
.AZ-sidebar-product .old-price {
  font-size: 12px;
  color: #54555d;
  font-family: "IRANYekanX-Regular";
  text-decoration: line-through;
}
.AZ-sidebar-product .discount-tag {
  font-size: 12px;
  color: #ffffff;
  font-family: "IRANYekanX-Medium";
  padding: 3px 8px 2px;
  border-radius: 40px;
  background: #ff0000;
}
.AZ-sidebar-product .username-title {
  font-size: 14px;
  color: #323338;
  font-family: "IRANYekanX-Medium";
}
.AZ-sidebar-product .username {
  font-size: 14px;
  color: #2f69c7;
  font-family: "IRANYekanX-Medium";
}
.AZ-sidebar-product .read-more {
  font-size: 14px;
  color: #3b82f6;
  font-family: "IRANYekanX-Regular";
}
.AZ-sidebar-product .read-more span {
  font-size: 20px;
  color: #3b82f6;
}
.AZ-sidebar-product .amazing-offer-time .part {
  font-size: 18px;
  color: #54555d;
}
.AZ-sidebar-product .amazing-offer-time .seconds .number {
  background: #ff3333;
  color: #fff;
}
.AZ-sidebar-product .amazing-offer-time .number {
  font-size: 12px;
  color: #ff3333;
  width: 30px;
  height: 30px;
  border: 1px solid #ff3333;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fafafa;
  padding-top: 3px;
}
.AZ-sidebar-product .provider--profile-img {
  min-width: 64px;
  width: 64px;
}
.AZ-sidebar-product .provider--profile-img .award-profile {
  width: 20px;
  height: 20px;
  font-size: 16px;
}
.AZ-sidebar-product .provider--profile-img .award-profile .icon-tick {
  color: #43a047;
}

.provider--profile-img {
  min-width: 100px;
  width: 100px;
  border-radius: 50%;
  overflow: visible;
}
.provider--profile-img img {
  border-radius: 50%;
}
.provider--profile-img::after {
  padding-bottom: 100%;
}
.provider--profile-img .award-profile {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #d9ecda;
  font-size: 24px;
  color: #43a047;
  display: flex;
  align-items: center;
  justify-content: center;
}
.provider--profile-img .award-profile .icon-tick {
  color: #43a047 !important;
}

.AZ-social-box {
  background: #fff;
  border-radius: 8px;
  padding: 8px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
}
.AZ-social-box .social-title {
  font-size: 16px;
  color: #323338;
  font-family: "IRANYekanX-Medium";
}
.AZ-social-box .social-text {
  font-size: 14px;
  color: #323338;
  font-family: "IRANYekanX-Regular";
}
.AZ-social-box .social-percentage {
  font-size: 16px;
  color: #43444a;
  font-family: "IRANYekanX-Medium";
  border: 1px solid #3b82f6;
  background: #fafafa;
  border-radius: 40px;
  padding: 4px 24px;
}

.AZ-social-wrapper .social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #fafafa;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
  transition: all 0.2s linear;
}
.AZ-social-wrapper .social-link span {
  color: #54555d;
  font-size: 24px;
}
.AZ-social-wrapper .social-link img {
  width: 20px;
}
.AZ-social-wrapper .social-link:hover {
  background: #3b82f6;
}
.AZ-social-wrapper .social-link:hover span {
  color: #fff;
}

.accordion-calendar .accordion-item {
  background: #ebf2fe;
}
.accordion-calendar .accordion-item__button {
  border-radius: 16px 16px 0 0;
  background: #ebf2fe;
  border-bottom: 1px solid #c4d9fc;
}
.accordion-calendar .accordion-item__button p {
  font-size: 16px;
}
.accordion-calendar .accordion-item__button p span {
  font-size: 28px;
  color: #2f69c7;
}
.accordion-calendar .accordion-item__button .open-accordion {
  font-size: 24px;
  color: #323338;
  min-width: unset;
  min-height: unset;
  border-radius: 0;
  background: transparent;
}
.accordion-calendar .calendar-box {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #cdced0;
}
.accordion-calendar .calendar-box:nth-child(even) {
  background: #ebeced;
}
.accordion-calendar .calendar-box--number {
  font-size: 14px;
  font-family: "IRANYekanX-Regular";
  color: #fff;
  background: #2f69c7;
  padding: 16px 8px;
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
}
.accordion-calendar .calendar-box--body {
  padding: 8px;
}
.accordion-calendar .calendar-box .calendar--text {
  font-size: 14px;
  color: #235097;
  font-family: "IRANYekanX-Regular";
}
.accordion-calendar .calendar-box .calendar--title {
  font-size: 14px;
  color: #323338;
  font-family: "IRANYekanX-Medium";
}
.accordion-calendar .calendar-list .calendar-item p {
  font-size: 14px;
  color: #222225;
  font-family: "IRANYekanX-Medium";
}
.accordion-calendar .calendar-list .calendar-item span {
  font-size: 14px;
  color: #2f69c7;
  font-family: "IRANYekanX-Regular";
}

.quantity-field {
  border: 1px solid #cdced0;
  background: #fafafa;
  border-radius: 4px;
  overflow: hidden;
  height: 35px;
}
.quantity-field .value-button {
  font-size: 18px;
  color: #323338;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ebeced;
  border: 0;
  border-left: 1px solid #cdced0;
}
.quantity-field .number {
  font-size: 13px;
  color: #54555d;
  font-family: "IRANYekanX-Regular";
  background: transparent;
  border: 0;
  height: 100%;
}

article h1 {
  font-size: 20px;
  color: #222225;
  font-family: "IRANYekanX-Bold";
}
article h2,
article h3,
article h4,
article h5 {
  font-size: 18px;
  color: #222225;
  font-family: "IRANYekanX-Bold";
  margin-bottom: 10px;
  margin-top: 25px;
}
article p {
  font-size: 16px;
  color: #323338;
  font-family: "IRANYekanX-Regular";
  margin-bottom: 15px;
  line-height: 1.8;
  text-align: justify;
}
article ul {
  margin-right: 20px;
  margin-bottom: 10px;
}
article ul li {
  list-style-type: disc;
  padding: 5px 0;
  font-size: 16px;
  color: #222225;
  font-family: "IRANYekanX-Regular";
}
article ul li span {
  font-family: "IRANYekanX-Bold";
}
article ul li::marker {
  color: #3b82f6;
  font-size: 22px;
}
article img {
  width: 50%;
  border-radius: 15px;
  margin-bottom: 15px;
}

.comments-modal .custom-select {
  min-width: 200px;
}
.comments-modal .AZ-radio-scoring {
  flex-grow: 1;
}
.comments-modal .AZ-radio-scoring label {
  font-size: 14px;
  color: #54555d;
  font-family: "IRANYekanX-Regular";
  width: 100%;
  border: 1px solid #ebeced;
  background: #fafafa;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  padding: 8px;
  border-radius: 10px;
  transition: all 0.2s linear;
}
.comments-modal .AZ-radio-scoring label span {
  font-size: 16px;
  color: #ffd829;
}
.comments-modal .AZ-radio-scoring input {
  display: none;
}
.comments-modal .AZ-radio-scoring input:checked ~ label {
  background: #ebeced;
  border-color: #3b82f6;
}

.scoring .scoring-text {
  font-size: 24px;
  font-family: "Kalameh-Regular";
  color: #414141;
  display: grid;
  text-align: center;
  cursor: pointer;
}
.scoring .rating input {
  display: none;
}
.scoring .rating label {
  float: right;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.scoring .rating label span {
  font-size: 24px;
  color: gray;
}
.scoring .rating input:checked ~ label span {
  color: #ffc500;
}

.commentsSwiper .swiper-slide {
  width: 280px;
}

.accordion-tabs .accordion-item {
  border-radius: 10px;
  background: #fff;
}
.accordion-tabs .accordion-item .accordion-item__button {
  background: transparent;
}
.accordion-tabs .accordion-item .accordion-item__button .open-accordion {
  width: unset;
  height: unset;
  background: transparent;
  border-radius: unset;
}
.accordion-tabs .accordion-item.open .accordion-item__button {
  background: #3b82f6;
}
.accordion-tabs .accordion-item.open .accordion-item__button p,
.accordion-tabs .accordion-item.open .accordion-item__button span {
  color: #fff;
}

.AZ-cart-page {
  padding: 40px 0;
}
.AZ-cart-page .quantity-field {
  border: 1px solid #ebeced;
  height: 40px;
  border-radius: 8px;
  background: transparent;
}
.AZ-cart-page .quantity-field .value-button {
  border-left: 0;
  background: transparent;
  width: 40px;
  height: 40px;
}
.AZ-cart-page .quantity-field .number {
  border: 1px solid #ebeced;
  border-top: 0;
  border-bottom: 0;
}
.AZ-cart-page .AZ-accordion .accordion-item {
  background: #ebeced;
  border-radius: 10px;
  border: 1px solid #cdced0;
}
.AZ-cart-page .AZ-accordion .accordion-item__button {
  background: transparent;
  padding: 12px 24px;
}
.AZ-cart-page .AZ-accordion .accordion-item__button p {
  font-family: "IRANYekanX-Bold";
}
.AZ-cart-page .AZ-accordion .accordion-item__button p span {
  font-size: 24px;
  color: #3b82f6;
}
.AZ-cart-page .AZ-accordion .accordion-item__button .open-accordion {
  font-size: 24px;
  min-width: unset;
  min-height: unset;
  border-radius: 0;
  background: transparent;
}
.AZ-cart-page .AZ-accordion .accordion-content {
  padding-top: 0;
}
.AZ-cart-page .AZ-accordion .accordion-content p {
  font-size: 14px;
  color: #323338;
  font-family: "IRANYekanX-Regular";
}
.AZ-cart-page .payment-title {
  font-size: 20px;
  color: #222225;
  font-family: "IRANYekanX-Bold";
}
.AZ-cart-page .payment-text {
  font-size: 16px;
  color: #43444a;
  font-family: "IRANYekanX-Medium";
}
.AZ-cart-page .line {
  background: #629bf8;
}
.AZ-cart-page .AZ-sidebar .line {
  background: #ebeced;
  margin: 0;
}
.AZ-cart-page .payment-details-list .payment-details--title {
  font-size: 16px;
  color: #43444a;
  font-family: "IRANYekanX-Medium";
}
.AZ-cart-page .payment-details-list .payment-details--title span {
  font-size: 24px;
  color: #2f69c7;
}
.AZ-cart-page .payment-details-list .payment-details--text {
  font-size: 16px;
  color: #43444a;
  font-family: "IRANYekanX-Regular";
}
.AZ-cart-page .arrow-text {
  font-size: 32px;
  color: #3b82f6;
}
.AZ-cart-page .arrow-text.orange {
  color: #c97000;
}
.AZ-cart-page .head-box {
  background: #ebf2fe;
  padding: 16px 24px;
}
.AZ-cart-page .box-title {
  font-size: 16px;
  color: #323338;
  font-family: "IRANYekanX-Bold";
}
.AZ-cart-page .box-title span {
  color: #3c80ff;
  font-size: 24px;
}
.AZ-cart-page .cart-wrapper {
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}
.AZ-cart-page .cart-box {
  padding: 24px;
  border-bottom: 1px solid #ebeced;
}
.AZ-cart-page .cart-box:last-child {
  border-bottom: 0;
}
.AZ-cart-page .cart-box--body {
  min-height: 150px;
  height: 150px;
}
.AZ-cart-page .cart-box--img {
  width: 220px;
  border-radius: 16px;
}
.AZ-cart-page .cart-box--img::after {
  padding-bottom: 70%;
}
.AZ-cart-page .cart-box--title {
  font-size: 16px;
  color: #43444a;
  font-family: "IRANYekanX-Bold";
}
.AZ-cart-page .cart-box--details {
  font-size: 16px;
  color: #72737a;
  font-family: "IRANYekanX-Regular";
}
.AZ-cart-page .cart-box--details--icon {
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.AZ-cart-page .cart-box .delete-btn {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #ff3333;
  border: 1px solid #ff3333;
  border-radius: 8px;
  transition: all 0.2s linear;
}
.AZ-cart-page .cart-box .delete-btn:hover {
  background: #ff3333;
  color: #fff;
}
.AZ-cart-page .cart-box .old-price {
  font-size: 14px;
  color: #ff3333;
  font-family: "IRANYekanX-Regular";
  text-decoration: line-through;
}
.AZ-cart-page .cart-box .discount-tag {
  font-size: 12px;
  color: #fff;
  font-family: "IRANYekanX-Medium";
  background: #ff3333;
  border-radius: 40px;
  padding: 4px 16px;
}
.AZ-cart-page .share-link {
  background: #fff3e5;
  border-radius: 10px;
  padding: 8px 16px;
}
.AZ-cart-page .share-link .invite-text {
  font-size: 12px;
  color: #323338;
  font-family: "IRANYekanX-Medium";
}
.AZ-cart-page .discount-box {
  padding: 16px;
  border-radius: 10px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
  background: #fff;
}
.AZ-cart-page .discount-box .discount-field {
  background: #fafafa;
  overflow: hidden;
  border-radius: 8px;
  height: 50px;
}
.AZ-cart-page .discount-box .discount-field input {
  font-size: 14px;
  caret-color: #54555d;
  font-family: "IRANYekanX-Regular";
  flex-grow: 1;
  padding: 16px;
  height: 100%;
  border: 0;
  background: transparent;
}
.AZ-cart-page .discount-box .discount-field button {
  border-radius: 0;
  height: 100%;
}
.AZ-cart-page .sidebar-body {
  padding: 16px;
}
.AZ-cart-page .sidebar-body li {
  padding: 16px 0;
}
.AZ-cart-page .sidebar-body .list-title {
  font-size: 14px;
  color: #323338;
  font-family: "IRANYekanX-Medium";
}
.AZ-cart-page .sidebar-body .list-title span {
  font-size: 18px;
}
.AZ-cart-page .sidebar-body .list-price {
  font-size: 14px;
  color: #43444a;
  font-family: "IRANYekanX-Regular";
}
.AZ-cart-page .sidebar-body .list-price.discount {
  color: #43444a;
}
.AZ-cart-page .sidebar-body .list-price.discount span {
  color: #ff3333;
}
.AZ-cart-page .sidebar-body .select2-container--default.select2-container--focus {
  font-size: 16px;
}
.AZ-cart-page .sidebar-body .discount {
  color: #ff3333;
}
.AZ-cart-page .sidebar-body .total {
  font-size: 16px;
}
.AZ-cart-page .sidebar-body .total span {
  color: #3b82f6;
}
.AZ-cart-page .message-text {
  font-size: 14px;
  color: #323338;
  font-family: "IRANYekanX-Medium";
  margin: 16px 0;
}
.AZ-cart-page .message-text span {
  font-size: 24px;
  color: #368039;
  min-width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #d9ecda;
  display: flex;
  align-items: center;
  justify-content: center;
}

.share-link #link {
  font-size: 14px;
  font-family: "IRANYekanX-Medium";
  color: #235097;
  flex-grow: 2;
  border: none;
  text-align: center;
  height: 100%;
  padding: 0;
  border-radius: 0;
  height: 0;
  width: 0;
  opacity: 0;
}
.share-link #copy button {
  font-size: 12px;
  font-family: "IRANYekanX-Medium";
  color: #235097;
  display: block;
  position: relative;
  cursor: pointer;
  background: transparent;
  border: 0;
}
.share-link #copy button span {
  color: #235097;
  font-size: 20px;
}
.share-link #copy button.copied::after {
  content: "با موفقیت کپی شد";
  position: absolute;
  top: 0px;
  left: 35px;
  display: block;
  white-space: nowrap;
  padding: 3px 10px;
  font-size: 12px;
  font-family: "IRANYekanX-Regular";
  color: #fff;
  background-color: #3b82f6;
  opacity: 1;
  will-change: opacity, transform;
  animation: showcopied 1.5s ease;
  border-radius: 4px;
}

@keyframes showcopied {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }
  70% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
  }
}
.cart-progress {
  position: relative;
}
.cart-progress::after {
  content: "";
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  height: 4px;
  width: 90%;
  background: #ebeced;
}
.cart-progress .progress-item {
  position: relative;
  z-index: 1;
}
.cart-progress .progress-item span {
  font-size: 20px;
  color: #54555d;
  width: 36px;
  height: 36px;
  background: #ebeced;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.cart-progress .progress-item p {
  font-size: 16px;
  color: #43444a;
  font-family: "IRANYekanX-Regular";
}
.cart-progress .active span {
  background: #2f69c7;
  color: #ebf2fe;
  border: 1px solid #fff;
  outline: 1px solid #b1cdfb;
}
.cart-progress .active p {
  font-family: "IRANYekanX-Medium";
}
.cart-progress .prev span {
  background: #2f69c7;
  color: #ebf2fe;
  border: 1px solid #fff;
  outline: 1px solid #235097;
}

.AZ-navbar-bottom {
  background: #eff1f6;
  box-shadow: 0 -2px 4px 0 rgba(0, 0, 0, 0.04);
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}
.AZ-navbar-bottom .nav-bottom-link {
  font-size: 12px;
  color: #43444a;
  font-family: "IRANYekanX-Regular";
  padding: 15px 0 5px;
}
.AZ-navbar-bottom .nav-bottom-link .nav-bottom--icon {
  color: #43444a;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.AZ-navbar-bottom .nav-bottom-link.active {
  color: #222225;
  font-family: "IRANYekanX-Bold";
}
.AZ-navbar-bottom .nav-bottom-link.active .nav-bottom--icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #3b82f6;
  border: 4px solid #fff;
  color: #fff;
  margin-top: -25px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.badge {
  font-size: 12px;
  color: #183668;
  font-family: "IRANYekanX-Regular";
  background: #89b4fa;
  width: 20px;
  height: 20px;
}

.follow-btn.following {
  background: transparent;
  border: 1px solid #3b82f6;
  color: #3b82f6;
}
.follow-btn.loading {
  pointer-events: none;
  background: #6c757d;
}
.follow-btn.loading .loader {
  display: block;
}
.follow-btn .loader {
  width: 16px;
  height: 16px;
  border: 3px solid #fff;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  display: none;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.cards-wrapper .comment-box {
  display: none;
}
.cards-wrapper .comment-box.visible {
  display: block;
}

.AZ-profile-page {
  padding: 50px 0;
}
.AZ-profile-page .tabs {
  background: #fff;
  border-radius: 10px;
  padding: 16px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
}
.AZ-profile-page .tabs .tab-link {
  border-radius: 8px;
  color: #43444a;
}
.AZ-profile-page .tabs .tab-link span {
  font-size: 12px;
  color: #54555d;
  font-family: "IRANYekanX-Medium";
}
.AZ-profile-page .tabs .tab-link span .icon-star {
  color: #ffd829;
}
.AZ-profile-page .tabs li {
  width: 33%;
}
.AZ-profile-page .tabs .active .tab-link {
  background: #ebf2fe;
  font-family: "IRANYekanX-Bold";
  border: 1px solid #ebeced;
}
.AZ-profile-page .tabContent {
  border-radius: 10px;
  background: white;
  padding: 16px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
}
.AZ-profile-page .wallet-field-info {
  font-size: 14px;
  color: #323338;
  font-family: "IRANYekanX-Regular";
}
.AZ-profile-page .wallet-field-info span {
  font-family: "IRANYekanX-Bold";
  color: #c97000;
  display: contents;
}
.AZ-profile-page .table-wrapper td,
.AZ-profile-page .table-wrapper th {
  border: 1px solid #ebeced;
}
.AZ-profile-page .table-wrapper thead th {
  background: #fff;
}
.AZ-profile-page .table-wrapper tbody tr td {
  background: #fafafa;
}
.AZ-profile-page .table-wrapper tbody tr:nth-child(even) td {
  background: #eff1f6;
}
.AZ-profile-page .table-wrapper .table-price {
  font-size: 14px;
  color: #3b82f6;
  font-family: "IRANYekanX-Regular";
}
.AZ-profile-page .table-wrapper .table-price span {
  color: #43444a;
}
.AZ-profile-page .table-wrapper .product-img {
  width: 85px;
  border-radius: 8px;
}
.AZ-profile-page .table-wrapper .product-img::after {
  padding-bottom: 60%;
}
.AZ-profile-page .table-wrapper .success,
.AZ-profile-page .table-wrapper .secondary,
.AZ-profile-page .table-wrapper .primary,
.AZ-profile-page .table-wrapper .danger,
.AZ-profile-page .table-wrapper .warning {
  font-size: 10px;
  padding: 4px 8px;
  border-radius: 40px;
}
.AZ-profile-page .table-wrapper .success span,
.AZ-profile-page .table-wrapper .secondary span,
.AZ-profile-page .table-wrapper .primary span,
.AZ-profile-page .table-wrapper .danger span,
.AZ-profile-page .table-wrapper .warning span {
  font-size: 12px;
}
.AZ-profile-page .table-wrapper .danger {
  background: #ffcccc;
  color: #cc0000;
}
.AZ-profile-page .table-wrapper .danger span {
  color: #cc0000 !important;
}
.AZ-profile-page .table-wrapper .warning {
  background: #fee8cc;
  color: #975400;
}
.AZ-profile-page .table-wrapper .warning span {
  color: #975400 !important;
}
.AZ-profile-page .follow-list li {
  padding: 16px;
}
.AZ-profile-page .follow-list li:nth-child(even) {
  background: #eff1f6;
}
.AZ-profile-page .follow-list .follow-img {
  width: 40px;
  border-radius: 50%;
}
.AZ-profile-page .follow-list .follow-img::after {
  padding-bottom: 100%;
}
.AZ-profile-page .follow-list .follow-title {
  font-size: 14px;
  color: #43444a;
  font-family: "IRANYekanX-Regular";
}
.AZ-profile-page .menu-btn {
  font-size: 14px;
  color: #54555d;
  font-family: "IRANYekanX-Medium";
  background: #eff1f6;
  border-radius: 16px 0 0 16px;
  padding: 32px 8px;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
  position: absolute;
  right: 100%;
  z-index: 100;
  bottom: 30vh;
  writing-mode: sideways-lr;
  text-orientation: mixed;
  border: 0;
}
.AZ-profile-page .menu-btn span {
  transform: rotate(90deg);
}
.AZ-profile-page .menu-btn .open {
  display: flex;
}
.AZ-profile-page .menu-btn .close {
  display: none;
}
.AZ-profile-page .menu-btn.show .open {
  display: none;
}
.AZ-profile-page .menu-btn.show .close {
  display: flex;
}
.AZ-profile-page .dashboard-box {
  background: #eff1f6;
  border-radius: 8px;
  padding: 8px 16px;
  height: 100%;
  overflow: hidden;
}
.AZ-profile-page .dashboard-box--title {
  font-size: 14px;
  color: #323338;
  font-family: "IRANYekanX-Regular";
}
.AZ-profile-page .dashboard-box--title span {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #afb0b3;
}
.AZ-profile-page .dashboard-box--price {
  font-size: 14px;
  color: #323338;
  font-family: "IRANYekanX-Bold";
}
.AZ-profile-page .dashboard-box--list {
  margin-right: 20px;
}
.AZ-profile-page .dashboard-box--list li {
  list-style-type: disc;
  font-size: 14px;
  color: #323338;
  font-family: "IRANYekanX-Regular";
  padding: 3px 0;
}
.AZ-profile-page .dashboard-box--list li::marker {
  color: #afb0b3;
  font-size: 17px;
}
.AZ-profile-page .dashboard-box--header {
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.1);
}
.AZ-profile-page .dashboard-box--body {
  background: #fafafa;
}
.AZ-profile-page .dashboard-box.purple {
  background: #b1cdfb;
}
.AZ-profile-page .dashboard-box.blue {
  background: #9be2ee;
}
.AZ-profile-page .dashboard-box.green {
  background: #b4d9b5;
}
.AZ-profile-page .profile-box {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.AZ-profile-page .profile-box--head {
  background: #ebf2fe;
  padding: 10px 24px;
}
.AZ-profile-page .profile-box .box-title {
  font-size: 16px;
  color: #323338;
  font-family: "IRANYekanX-Bold";
}
.AZ-profile-page .profile-box .box-title span {
  font-size: 24px;
  color: #3c80ff;
}
.AZ-profile-page .profile-box .box-title .number {
  font-size: 14px;
  color: #3b82f6;
  font-family: "IRANYekanX-Regular";
}
.AZ-profile-page .dropdown-order {
  border-right: 1px solid #ebeced;
  padding-right: 10px;
}
.AZ-profile-page .dropdown-order .dropdown-menu {
  border-radius: 8px;
  padding: 10px 8px;
  background: #fafafa;
  border: 1px solid #ebeced;
  min-width: 200px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
  margin-top: 10px;
}
.AZ-profile-page .dropdown-order .dropdown-toggle {
  border: 0;
  background: transparent;
}
.AZ-profile-page .dropdown-order .dropdown-toggle::after {
  content: none;
}
.AZ-profile-page .dropdown-order-link {
  font-size: 14px;
  color: #43444a;
  font-family: "IRANYekanX-Medium";
  padding: 8px;
  border-radius: 4px;
  transition: all 0.2s linear;
}
.AZ-profile-page .dropdown-order-link span {
  color: #72737a;
  font-size: 16px;
}
.AZ-profile-page .dropdown-order-link:hover {
  background: #c4d9fc;
}
.AZ-profile-page .order-box {
  background: #fafafa;
  border-radius: 8px;
  border: 1px solid #ebeced;
  padding: 8px 16px;
  margin-bottom: 12px;
}
.AZ-profile-page .order-box .amazing-offer-time .part {
  font-size: 12px;
  color: #afb0b3;
}
.AZ-profile-page .order-box .amazing-offer-time .number {
  color: #afb0b3;
}
.AZ-profile-page .order-box .col-right {
  border-left: 1px solid #ebeced;
  padding-left: 16px;
}
.AZ-profile-page .order-box--code {
  font-size: 16px;
  color: #222225;
  font-family: "IRANYekanX-Medium";
}
.AZ-profile-page .order-box--code span {
  color: #54555d;
}
.AZ-profile-page .order-box--body {
  background: #ffffff;
  border-radius: 8px;
  padding: 8px 16px;
}
.AZ-profile-page .order-box--img {
  min-width: 156px;
  border-radius: 8px;
}
.AZ-profile-page .order-box--img::after {
  padding-bottom: 60%;
}
.AZ-profile-page .order-box .discount-tag {
  position: absolute;
  top: 5px;
  left: 0;
  font-size: 12px;
  font-family: "IRANYekanX-Regular";
  color: #fff;
  background: #ff3333;
  border-radius: 0 24px 24px 0;
  padding: 2px 8px 2px 8px;
}
.AZ-profile-page .order-box--details {
  font-size: 12px;
  color: #54555d;
  font-family: "IRANYekanX-Regular";
}
.AZ-profile-page .order-box--details span {
  font-size: 18px;
  color: #3c80ff;
}
.AZ-profile-page .order-box--status {
  font-size: 12px;
  color: #43444a;
  font-family: "IRANYekanX-Regular";
  background: #ebeced;
  border-radius: 40px;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.AZ-profile-page .order-box--status span {
  font-size: 16px;
}
.AZ-profile-page .order-box .status-cencel {
  background: #ffe5e5;
  color: #cc0000;
}
.AZ-profile-page .order-box .status-primary {
  background: #ebf2fe;
  color: #2f69c7;
}
.AZ-profile-page .order-box .status-success {
  background: #ecf5ed;
  color: #368039;
}
.AZ-profile-page .order-box .status-danger {
  background: #fff3e5;
  color: #c97000;
}
.AZ-profile-page .order-box .status-warning {
  background: #fffbe4;
  color: #886c00;
}
.AZ-profile-page .order-box--number {
  font-size: 12px;
  color: #54555d;
  font-family: "IRANYekanX-Regular";
}
.AZ-profile-page .order-box--price {
  font-size: 14px;
  color: #54555d;
  font-family: "IRANYekanX-Bold";
}
.AZ-profile-page .order-box--old-price {
  font-size: 10px;
  color: #ff3333;
  font-family: "IRANYekanX-Regular";
  text-decoration: line-through;
}
.AZ-profile-page .order-box--title {
  font-size: 16px;
  color: #222225;
  font-family: "IRANYekanX-Bold";
}
.AZ-profile-page .order-box--type {
  font-size: 12px;
  color: #fb8c00;
  font-family: "IRANYekanX-Regular";
}
.AZ-profile-page .order-box--actions {
  font-size: 12px;
  color: #72737a;
  font-family: "IRANYekanX-Regular";
  padding: 8px;
  border-radius: 8px;
}
.AZ-profile-page .order-box--actions span {
  font-size: 16px;
}
.AZ-profile-page .order-box .h-140 {
  min-height: 146px;
}
.AZ-profile-page .order-box .calendar-action {
  border: 1px solid #3b82f6;
  color: #3b82f6;
  background: transparent;
}
.AZ-profile-page .order-box .calendar-action.desable {
  border: 1px solid #bebfc2;
  color: #bebfc2;
}
.AZ-profile-page .order-box .link-action span {
  color: #3b82f6;
}
.AZ-profile-page .order-box .report-action span {
  color: #ffd000;
}
.AZ-profile-page .order-box .comment-action span {
  color: #3b82f6;
}
.AZ-profile-page .order-box .cancel-action span {
  color: #ff0000;
}
.AZ-profile-page .order-box .share-link #copy button {
  font-size: 12px;
  color: #72737a;
  font-family: "IRANYekanX-Regular";
}
.AZ-profile-page .order-box .share-link #copy button span {
  color: #3b82f6;
  font-size: 16px;
}

.notif-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.notif-list .notif-item {
  background: #eff1f6;
  border-radius: 8px;
  border: 1px solid #ebeced;
  padding: 16px;
}
.notif-list .notif-text {
  font-size: 14px;
  color: #323338;
  font-family: "IRANYekanX-Regular";
}
.notif-list .notif-date {
  font-size: 12px;
  color: #323338;
  font-family: "IRANYekanX-Medium";
}

.AZ-profile-sidebar {
  position: relative;
  background: #fff;
  border-radius: 16px;
  margin-top: 40px;
}
.AZ-profile-sidebar .blocked-amount {
  font-size: 14px;
  color: #2f69c7;
  font-family: "IRANYekanX-Regular";
}
.AZ-profile-sidebar .blocked-amount .icon {
  font-size: 18px;
}
.AZ-profile-sidebar .blocked-amount--title {
  font-size: 10px;
  color: #43444a;
  font-family: "IRANYekanX-Regular";
}
.AZ-profile-sidebar .profile-img {
  width: 100px;
  border-radius: 50%;
  margin-top: -50px;
  border: 10px solid #fff;
  border-top: 5px solid #fff;
}
.AZ-profile-sidebar .profile-img::after {
  padding-bottom: 100%;
}
.AZ-profile-sidebar .profile-img .edit_icon {
  position: absolute;
  bottom: 5px;
  right: 5px;
  z-index: 1;
  width: 32px;
  height: 32px;
  background: #fafafa;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.AZ-profile-sidebar .profile-img .edit_icon span {
  font-size: 16px;
  color: #3c80ff;
}
.AZ-profile-sidebar .shape-img::before, .AZ-profile-sidebar .shape-img::after {
  content: "";
  position: absolute;
  right: calc(100% - 4px);
  top: -25px;
  width: 25px;
  height: 25px;
  border-radius: 0 0 25px 0;
  box-shadow: 4px 4px 0 2px #fff;
}
.AZ-profile-sidebar .shape-img::before {
  right: unset;
  left: calc(100% - 4px);
  border-radius: 0 0 0 25px;
  box-shadow: -4px 4px 0 2px #fff;
}
.AZ-profile-sidebar .profile-list li {
  border-bottom: 1px solid #ebeced;
}
.AZ-profile-sidebar .profile-list li:last-child {
  border-bottom: 0;
}
.AZ-profile-sidebar .profile-link {
  font-size: 14px;
  color: #222225;
  font-family: "IRANYekanX-Medium";
  padding: 20px 16px;
  position: relative;
  width: 100%;
  transition: all 0.2s linear;
}
.AZ-profile-sidebar .profile-link span {
  font-size: 24px;
  transition: all 0.2s linear;
}
.AZ-profile-sidebar .profile-link.active {
  border-right: 4px solid #3b82f6;
  background: #ebf2fe;
}
.AZ-profile-sidebar .profile-link.active span {
  color: #3c80ff;
}
.AZ-profile-sidebar .profile-link:hover span {
  color: #3c80ff;
}
.AZ-profile-sidebar .profile-username {
  font-size: 16px;
  color: #222225;
  font-family: "IRANYekanX-Bold";
}

.login-modal .modal-content {
  width: 420px;
}
.login-modal .login-img {
  width: 178px;
}
.login-modal .modal-title {
  font-size: 15px;
  color: #323338;
  font-family: "IRANYekanX-Medium";
}
.login-modal .login-title {
  font-size: 16px;
  color: #235097;
  font-family: "IRANYekanX-Bold";
}
.login-modal .login-links li {
  border-left: 1px solid #3b82f6;
}
.login-modal .login-links li:last-child {
  border-left: 0;
}
.login-modal .login-links .login--link {
  font-size: 12px;
  color: #323338;
  font-family: "IRANYekanX-Regular";
  padding: 0 10px;
  transition: all 0.2s linear;
}
.login-modal .login-links .login--link:hover {
  color: #3b82f6;
}

.paymentReceipt-modal .paymentReceipt--list li {
  padding: 5px 0;
}
.paymentReceipt-modal .paymentReceipt--list--title {
  font-size: 14px;
  color: #323338;
  font-family: "IRANYekanX-Bold";
}
.paymentReceipt-modal .paymentReceipt--list--text {
  font-size: 14px;
  color: #54555d;
  font-family: "IRANYekanX-Regular";
}

.AZ-breadcrumb-section {
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.08);
  background: #fafafa;
  padding: 12px 0;
}
.AZ-breadcrumb-section .breadcrumb-item {
  display: flex;
  align-items: center;
  justify-content: center;
}
.AZ-breadcrumb-section .breadcrumb-item a {
  font-size: 12px;
  color: #43444a;
  font-family: "IRANYekanX-Regular";
  display: flex;
  align-items: center;
  justify-content: center;
}
.AZ-breadcrumb-section .active {
  font-size: 12px;
  color: #2f69c7;
  font-family: "IRANYekanX-Regular";
}
.AZ-breadcrumb-section .breadcrumb-item + .breadcrumb-item {
  padding-right: 0.5rem;
  padding-left: 0;
}
.AZ-breadcrumb-section .breadcrumb-item + .breadcrumb-item::before {
  float: right;
  padding-left: 0.5rem;
  padding-right: 0;
  color: #6c757d;
  content: "\e90c";
  font-family: "icomoon";
  font-size: 20px;
  color: #3b82f6;
  display: flex;
  align-items: center;
  justify-content: center;
}

.eventCalendar-modal .calendar-list {
  border-bottom: 1px solid #ebeced;
}
.eventCalendar-modal .unverified .calendar-box--number {
  color: #323338;
  background: #fff3e5;
}
.eventCalendar-modal .unverified .btn-approve {
  font-size: 14px;
  color: #3b82f6;
  font-family: "IRANYekanX-Medium";
  padding: 0 10px;
}
.eventCalendar-modal .unverified .btn-approve span {
  font-size: 24px;
  color: #975400;
}
.eventCalendar-modal .approve-icon {
  font-size: 24px;
  color: #009887;
  padding: 0 10px;
}

.toast-container {
  z-index: 100;
  max-width: 300px;
}
.toast-container .toast {
  background: #d9ecda;
  border-radius: 15px;
  overflow: hidden;
}
.toast-container .toast-body {
  font-size: 13px;
  color: #191a1c;
  font-family: "IRANYekanX-Regular";
}
.toast-container.toast-warning .toast {
  background: #fee8cc;
}
.toast-container.toast-warning .toast span {
  color: #c97000;
}

.AZ-blog-page {
  padding: 25px 0 80px;
}
.AZ-blog-page .swiper-pagination-bullet {
  opacity: 1;
  width: 10px;
  height: 10px;
  border: 2px solid #fff;
  outline: 1px solid #54555d;
  background: transparent;
}
.AZ-blog-page .swiper-pagination-bullet-active {
  background: #54555d;
}
.AZ-blog-page .blogSwiper .swiper-slide {
  width: 320px;
}
.AZ-blog-page .blogSwiper .AZ-post-card {
  width: 100%;
}
.AZ-blog-page .similar-articles .swiper-button-prev,
.AZ-blog-page .similar-articles .swiper-button-next {
  transform: rotate(180deg);
  right: -15px;
}
.AZ-blog-page .similar-articles .swiper-button-prev::after,
.AZ-blog-page .similar-articles .swiper-button-next::after {
  min-width: 40px;
  height: 40px;
  box-shadow: none;
  background: #ebeced;
}
.AZ-blog-page .similar-articles .swiper-button-next {
  left: -15px;
  right: unset;
}
.AZ-blog-page .AZ-section-title {
  font-size: 16px;
}
.AZ-blog-page .sort-title {
  font-size: 12px;
}
.AZ-blog-page .sort-link {
  font-size: 12px;
}
.AZ-blog-page .post-img {
  width: 60%;
  border-radius: 32px;
  margin: 0 auto 30px;
}
.AZ-blog-page .post-img::after {
  padding-bottom: 60%;
}
.AZ-blog-page .post-title {
  font-size: 24px;
  color: #43444a;
  font-family: "IRANYekanX-Medium";
  margin-bottom: 20px;
  line-height: 1.6;
  text-align: justify;
}
.AZ-blog-page .post-details li {
  border-left: 1px solid #cdced0;
  padding-left: 10px;
  margin-left: 10px;
}
.AZ-blog-page .post-details li:last-child {
  border-left: 0;
  padding-left: 0;
  margin-left: 0;
}
.AZ-blog-page .post-detail {
  font-size: 12px;
  color: #235097;
  font-family: "IRANYekanX-Regular";
}
.AZ-blog-page .post-detail span {
  font-size: 18px;
}
.AZ-blog-page .rate span {
  color: #ffd829;
}
.AZ-blog-page .add-comments-btn {
  width: unset;
}
.AZ-blog-page .AZ-box {
  background: #fff;
}
.AZ-blog-page .filter-box {
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.08);
  background: #fff;
  border-radius: 10px;
  padding: 16px;
}
.AZ-blog-page .search-group {
  border-radius: 8px;
  background: #fff;
  border: 1px solid #cdced0;
  height: 48px;
  width: 540px;
}
.AZ-blog-page .search-group input {
  font-size: 14px;
  font-family: "IRANYekanX-Regular";
  height: 100%;
  background: transparent;
  flex-grow: 1;
  border: 0;
  padding: 5px;
}
.AZ-blog-page .search-group button {
  padding: 0 10px;
  font-size: 24px;
  color: #54555d;
  background: transparent;
  border: 0;
  height: 100%;
}
.AZ-blog-page .search-group:focus-within {
  border-color: #3b82f6;
}
.AZ-blog-page .custom-select {
  width: 172px;
  min-width: 172px;
  flex-grow: unset;
}
.AZ-blog-page .AZ-checkbox-category label {
  font-size: 14px;
  color: #235097;
  font-family: "IRANYekanX-Regular";
  padding: 4px 16px;
  border-radius: 40px;
  background: #ebf2fe;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: all 0.2s linear;
}
.AZ-blog-page .AZ-checkbox-category input {
  display: none;
}
.AZ-blog-page .AZ-checkbox-category input:checked ~ label {
  background: #3b82f6;
  color: #fff;
}
.AZ-blog-page .AZ-checkbox-category:hover label {
  background: #d7e2f5;
}
.AZ-blog-page .categorySwiper {
  padding: 0 20px;
}
.AZ-blog-page .categorySwiper .swiper-slide {
  width: auto;
}
.AZ-blog-page .categorySwiper .swiper-button-next,
.AZ-blog-page .categorySwiper .swiper-button-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.AZ-blog-page .categorySwiper .swiper-button-next::after,
.AZ-blog-page .categorySwiper .swiper-button-prev::after {
  background: #3b82f6;
  color: #fff;
}

.AZ-page-header {
  background-image: linear-gradient(to bottom, #89b4fa, #fafafa);
  padding: 50px 0;
}
.AZ-page-header .AZ-section-title {
  font-size: 28px;
  color: #43444a;
  font-family: "IRANYekanX-Bold";
  margin-bottom: 20px;
}
.AZ-page-header .AZ-section-text {
  font-size: 20px;
  color: #43444a;
  font-family: "IRANYekanX-Regular";
}

.AZ-post-card {
  background: #eff1f6;
  border: 1px solid #ebeced;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  border-radius: 10px;
  height: 100%;
}
.AZ-post-card .post-card--img {
  width: 100%;
}
.AZ-post-card .post-card--img::after {
  padding-bottom: 60%;
}
.AZ-post-card .post-card--img img {
  transition: all 0.2s linear;
}
.AZ-post-card .post-card--title {
  font-size: 14px;
  color: #222225;
  font-family: "IRANYekanX-Bold";
  margin-bottom: 8px;
  transition: all 0.2s linear;
}
.AZ-post-card .post-card--text {
  font-size: 12px;
  color: #43444a;
  font-family: "IRANYekanX-Regular";
  text-align: justify;
}
.AZ-post-card .post-card--details {
  font-size: 10px;
  color: #2f69c7;
  font-family: "IRANYekanX-Regular";
}
.AZ-post-card .post-card--details span {
  font-size: 18px;
}
.AZ-post-card .post-card--footer {
  border-top: 1px solid #ffffff;
  padding-top: 10px;
  margin-top: 10px;
}
.AZ-post-card .post-card--body {
  padding: 8px 16px;
}
.AZ-post-card:hover .post-card--img img {
  transform: scale(1.05);
}
.AZ-post-card:hover .post-card--title {
  color: #005bab;
}

.AZ-category-page {
  overflow-x: hidden;
}
.AZ-category-page .tabs {
  background: #ebeced;
  padding: 0;
  border-left: 1px solid #cdced0;
  min-height: 80vh;
}
.AZ-category-page .tabs .tab-link {
  font-size: 12px;
  color: #323338;
  font-family: "IRANYekanX-Medium";
  padding: 16px;
  border-radius: 0;
  border-bottom: 1px solid #cdced0;
}
.AZ-category-page .tabs .tab-link span {
  font-size: 20px;
  color: #2f69c7;
}
.AZ-category-page .tabs .active .tab-link {
  background: #c4d9fc;
}

.AZ-slider-section {
  margin: 30px 0 40px;
}
.AZ-slider-section .slider-img {
  width: 100%;
  border-radius: 16px;
}
.AZ-slider-section .slider-img::after {
  padding-bottom: 30%;
}
.AZ-slider-section .swiper-pagination {
  gap: 5px;
  display: flex;
  justify-content: center;
  bottom: 15px;
}
.AZ-slider-section .swiper-pagination-bullet {
  width: 11px;
  height: 11px;
  background: #909197;
  opacity: 1;
}
.AZ-slider-section .swiper-pagination-bullet-active {
  background: #ffffff;
  outline: 5px solid #fff;
  border: 1px solid #3b82f6;
}

.AZ-about-section {
  margin-bottom: 50px;
}
.AZ-about-section .about-box {
  background: #ffffff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
  padding: 24px 40px;
  border-radius: 16px;
}
.AZ-about-section .details-box {
  border: 1px solid #bebfc2;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.16);
  background: #ebeced;
  border-radius: 0 24px 0 24px;
  padding: 16px;
  height: 100%;
  overflow: hidden;
  position: relative;
}
.AZ-about-section .details-box--title {
  font-size: 16px;
  font-family: "IRANYekanX-Medium";
  color: #183668;
  margin-bottom: 10px;
}
.AZ-about-section .details-box--title span {
  font-size: 20px;
}
.AZ-about-section .details-box--text {
  font-size: 14px;
  font-family: "IRANYekanX-Regular";
  color: #43444a;
  margin-bottom: 10px;
  text-align: justify;
}
.AZ-about-section .details-box .more-btn {
  font-size: 12px;
  color: #ffffff;
  font-family: "IRANYekanX-Regular";
  background: #ff3333;
  border-radius: 8px 24px 8px 0;
  padding: 8px 15px;
  position: absolute;
  left: 0;
  bottom: 0;
}
.AZ-about-section .details-box.blue {
  border: 1px solid #629bf8;
  background: #ebf2fe;
}
.AZ-about-section .details-box.green {
  border: 1px solid #69b36c;
  background: #ecf5ed;
}
.AZ-about-section .AZ-section-title {
  font-size: 20px;
}
.AZ-about-section .AZ-section-desc {
  font-size: 18px;
  color: #3b82f6;
  font-family: "IRANYekanX-Medium";
}
.AZ-about-section .AZ-section-text {
  font-size: 16px;
}
.AZ-about-section .col-left {
  padding-right: 50px;
}
.AZ-about-section .col-right {
  border-left: 1px solid #ebeced;
  padding-left: 50px;
}

.AZ-banner-section {
  margin-bottom: 50px;
}
.AZ-banner-section .banner-img {
  width: 100%;
  border-radius: 16px;
}
.AZ-banner-section .banner-img::after {
  padding-bottom: 16%;
}

.AZ-workshop-section {
  margin-bottom: 40px;
}
.AZ-workshop-section .workshop-card {
  background: #ffffff;
  padding: 8px 16px;
  border-radius: 16px;
  border: 1px solid #ebeced;
}
.AZ-workshop-section .workshop-card--profile {
  width: 56px;
  border-radius: 50%;
}
.AZ-workshop-section .workshop-card--profile::after {
  padding-bottom: 100%;
}
.AZ-workshop-section .workshop-card--content {
  border-right: 1px solid #ebeced;
  padding-right: 10px;
}
.AZ-workshop-section .workshop-card--title {
  font-size: 14px;
  color: #2f69c7;
  font-family: "IRANYekanX-Bold";
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.AZ-workshop-section .workshop-card--username {
  font-size: 10px;
  color: #43444a;
  font-family: "IRANYekanX-Regular";
  display: block;
}
.AZ-workshop-section .workshop-card .product-card--progress {
  background: #ebeced;
  border-radius: 40px;
  height: 16px;
  padding: 4px;
}
.AZ-workshop-section .workshop-card .product-card--progress .progress {
  height: 8px;
}
.AZ-workshop-section .workshop-card .product-card--text {
  font-size: 10px;
  color: #43444a;
  font-family: "IRANYekanX-Regular";
}
.AZ-workshop-section .workshop-card--icon {
  font-size: 18px;
  transition: all 0.2s linear;
}
.AZ-workshop-section .workshop-card:hover .workshop-card--icon {
  transform: translateX(-10px);
}

.AZ-title-homepage {
  font-size: 18px;
  color: #122a50;
  font-family: "IRANYekanX-Medium";
  padding-right: 40px;
  position: relative;
}
.AZ-title-homepage::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  height: 1.5px;
  width: 24px;
  background: #89b4fa;
}
.AZ-title-homepage::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 26px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #3b82f6;
}

.AZ-blog-section {
  padding: 40px 0;
  margin-bottom: 40px;
  background: #eff1f6;
}
.AZ-blog-section .post-card {
  position: relative;
}
.AZ-blog-section .post-card--body {
  -webkit-mask-image: url("../images/Subtract.png");
          mask-image: url("../images/Subtract.png");
  -webkit-mask-position: left bottom;
          mask-position: left bottom;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: cover;
          mask-size: cover;
  background: #fff;
  padding: 8px 8px 15px 8px;
  border-radius: 8px;
}
.AZ-blog-section .post-card--img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 10px;
}
.AZ-blog-section .post-card--img::after {
  padding-bottom: 50%;
}
.AZ-blog-section .post-card--img img {
  transition: all 0.2s linear;
}
.AZ-blog-section .post-card--text {
  font-size: 14px;
  color: #222225;
  font-family: "IRANYekanX-Bold";
  transition: all 0.2s linear;
  padding-left: 60px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.AZ-blog-section .post-card--text::after {
  color: #005bab;
}
.AZ-blog-section .post-card--btn {
  font-size: 24px;
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: all 0.2s linear;
  position: absolute;
  left: 0;
  bottom: 0;
  background: radial-gradient(closest-side, #b7b8bc 0%, #6d759f 100%);
  transition: all 0.2s linear;
}
.AZ-blog-section .post-card:hover .post-card--btn {
  transform: rotate(-45deg);
}
.AZ-blog-section .post-card:hover .post-card--img img {
  transform: scale(1.05);
}

.AZ-event-section {
  margin-bottom: 40px;
  overflow-x: hidden;
}
.AZ-event-section .event-img {
  width: 100%;
  max-height: 124px;
  overflow: hidden;
  padding: 10px;
}
.AZ-event-section .event-img img {
  max-width: 100%;
  max-height: 100%;
  transition: all 0.2s linear;
  padding-bottom: 8px;
  filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25));
}
.AZ-event-section .event-img:hover img {
  transform: scale(0.9);
}

.AZ-package-section {
  margin-bottom: 40px;
}
.AZ-package-section .package-img {
  width: 100%;
  border-radius: 8px;
}
.AZ-package-section .package-img::after {
  padding-bottom: 50%;
}
.AZ-package-section .package-img img {
  transition: all 0.2s linear;
}
.AZ-package-section .package-img:hover img {
  transform: scale(1.1);
}

.tippy-tooltip.custom-theme {
  background-color: white;
  color: black;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
}
.tippy-tooltip.custom-theme[data-placement^=top] .tippy-arrow {
  border-top-color: white;
}
.tippy-tooltip.custom-theme[data-placement^=bottom] .tippy-arrow {
  border-bottom-color: white;
}
.tippy-tooltip.custom-theme[data-placement^=left] .tippy-arrow {
  border-left-color: white;
}
.tippy-tooltip.custom-theme[data-placement^=right] .tippy-arrow {
  border-right-color: white;
}

.nav-section .swiper-button-next,
.nav-section .swiper-button-prev {
  position: unset;
  min-width: 40px;
  height: 40px;
  border-radius: 8px;
  background: transparent;
  box-shadow: none;
  border: 1px solid #cdced0;
  transition: all 0.2s linear;
}
.nav-section .swiper-button-next:hover,
.nav-section .swiper-button-prev:hover {
  background: #cdced0;
}
.nav-section .swiper-button-next::after,
.nav-section .swiper-button-prev::after {
  content: none;
}
.nav-section .swiper-button-next span,
.nav-section .swiper-button-prev span {
  font-size: 24px;
  color: #3b82f6;
}
.nav-section .navs {
  border-left: 1px solid #cdced0;
  padding-left: 10px;
}
.nav-section .navs.border-right {
  border-left: 0;
  border-right: 1px solid #cdced0;
  padding-right: 10px;
  padding-left: 0;
}
.nav-section .view-all {
  font-size: 14px;
  font-family: "IRANYekanX-Medium";
}

.AZ-products-section {
  margin-bottom: 40px;
}
.AZ-products-section .nav-section .swiper-button-next,
.AZ-products-section .nav-section .swiper-button-prev {
  background: #fff;
}
.AZ-products-section .tabs {
  border-bottom: 0;
  padding: 0;
  margin: 0;
}
.AZ-products-section .tabs .tab-link {
  font-size: 12px;
  color: #183668;
  padding: 8px 16px;
  border: 1px solid #ebeced;
  background: #ffffff;
}
.AZ-products-section .tabs .active .tab-link {
  background: #3b82f6;
  color: #fff;
}
.AZ-products-section .products-box {
  padding: 24px 16px;
  background: #eff1f6;
  border-radius: 16px;
}
.AZ-products-section .products-box .AZ-title-homepage {
  padding: 0;
}
.AZ-products-section .products-box .AZ-title-homepage::before, .AZ-products-section .products-box .AZ-title-homepage::after {
  content: none;
}

.share-modal .share-link {
  border-radius: 8px;
  border: 1px solid #909197;
  height: 48px;
  padding: 2px;
}
.share-modal .share-link #link {
  height: 100%;
  padding: 8px 16px;
  border-radius: 0;
  width: unset;
  opacity: 1;
  min-width: 50px;
  background: transparent;
  height: unset;
}
.share-modal .share-link #copy {
  height: 100%;
}
.share-modal .share-link #copy button {
  background: #f5f5f5;
  height: 100%;
  padding: 5px;
  white-space: nowrap;
  border-radius: 8px;
}
.share-modal .share-link #copy button span {
  font-size: 18px;
}

.report-modal .modal-title span {
  color: #ffd000;
}

.invoice-modal .row-overflow {
  overflow-x: auto;
}
.invoice-modal .col-7 {
  max-width: unset !important;
  flex-grow: 1;
}
.invoice-modal .table-wrapper td,
.invoice-modal .table-wrapper th {
  border: 1px solid #bebfc2;
}
.invoice-modal .table-wrapper tfoot td {
  text-align: center;
}
.invoice-modal .table-wrapper thead th {
  white-space: wrap;
  text-align: center;
}
.invoice-modal .table-wrapper tbody td {
  text-align: center;
  background: #fff;
}
.invoice-modal .table-wrapper .vertical-align--top {
  vertical-align: top;
}
.invoice-modal .invoice-box {
  border: 1px solid #bebfc2;
  background: #fafafa;
  border-radius: 8px;
  padding: 8px;
  height: 100%;
}
.invoice-modal .invoice-box--title {
  font-size: 12px;
  color: #222225;
  font-family: "IRANYekanX-Regular";
  white-space: nowrap;
}
.invoice-modal .invoice-box--text {
  font-size: 12px;
  color: #222225;
  font-family: "IRANYekanX-Bold";
  white-space: nowrap;
}
.invoice-modal .box-title {
  font-size: 12px;
  color: #222225;
  font-family: "IRANYekanX-Medium";
  writing-mode: sideways-lr;
  text-orientation: mixed;
}

@media (min-width: 576px) {
  .login-modal .modal-dialog {
    max-width: 448px;
  }
}
@media screen and (max-width: 1200px) {
  .AZ-header .navbar-brand img {
    width: 130px;
  }
  .AZ-header .AZ-search-wrapper {
    min-width: 350px;
  }
  .AZ-header .nav-link {
    font-size: 12px;
    padding: 0 5px !important;
  }
  .AZ-header .nav-link span {
    font-size: 16px;
  }
  .AZ-header .navbar-btn {
    padding: 5px;
  }
  .AZ-profile-page .order-box--actions p {
    display: none;
  }
  .AZ-login-box .code-input {
    font-size: 18px;
    width: 40px;
    height: 40px;
  }
  .AZ-upload-file .custom-file-label {
    font-size: 11px;
  }
  .AZ-orders-page .AZ-accordion .accordion-item__button span {
    font-size: 11px;
  }
  .AZ-orders-page .AZ-accordion .accordion-item__button .accordion-order-title {
    font-size: 12px;
  }
  .radio .filter__title {
    font-size: 14px;
  }
  .radio .radio__toggle {
    position: relative;
    width: 54px;
    height: 22px;
  }
  .radio .radio__toggle::after {
    width: 15px;
    height: 15px;
    transform: translate(calc(100% - 12px), -50%);
  }
  .radio .radio__toggle:checked::after {
    transform: translate(calc(100% - 10px), -50%);
  }
  .AZ-sidebar .AZ-accordion .accordion-item__button p {
    font-size: 14px;
  }
  .timer-wwrapper .timer-text {
    font-size: 10px;
  }
  .AZ-product-card .product-card--price {
    font-size: 14px;
  }
  .AZ-product-card .product-card--details {
    font-size: 12px;
  }
  .AZ-product-card .product-card--details span {
    font-size: 16px;
  }
  .AZ-product-card .type--tag {
    font-size: 12px;
  }
  .AZ-product-card .product-card--title {
    font-size: 13px;
    white-space: wrap;
    overflow: visible;
    text-overflow: unset;
    line-height: 1.5;
  }
  .AZ-product-card .product-card--img {
    height: -webkit-fill-available;
  }
  .AZ-product-page .productDetails-box {
    padding: 16px;
  }
  .AZ-product-page .details-box--title {
    font-size: 12px;
  }
  .AZ-product-page .course-features .features-title {
    font-size: 12px;
  }
  .AZ-cart-page .AZ-accordion .accordion-item__button {
    padding: 12px 16px;
  }
  .AZ-cart-page .share-link img {
    width: 24px;
  }
  .AZ-cart-page .share-link #copy button span {
    color: #235097;
    font-size: 18px;
  }
  .AZ-cart-page .cart-box--details--icon {
    font-size: 18px;
  }
  .AZ-cart-page .cart-box {
    padding: 16px;
  }
  .AZ-cart-page .message-text {
    font-size: 12px;
  }
  .AZ-cart-page .box-title {
    font-size: 16px;
  }
  .AZ-cart-page .sidebar-body .list-title {
    font-size: 12px;
  }
  .AZ-cart-page .sidebar-body .list-price {
    font-size: 12px;
  }
  .AZ-cart-page .cart-box .discount-tag {
    font-size: 10px;
  }
  .AZ-cart-page .cart-box .old-price {
    font-size: 12px;
  }
  .AZ-cart-page .cart-box--details {
    font-size: 14px;
  }
  .AZ-cart-page .AZ-accordion .accordion-item__button p {
    font-size: 12px;
  }
  .AZ-cart-page .AZ-accordion .accordion-item__button p span {
    font-size: 20px;
  }
  .AZ-cart-page .AZ-accordion .accordion-content p {
    font-size: 12px;
  }
  .cart-progress .progress-item p {
    font-size: 12px;
  }
}
@media screen and (max-width: 991px) {
  .w-md-100 {
    width: 100%;
  }
  .AZ-header .navbar-brand img {
    width: 36px;
  }
  .AZ-header .AZ-search-wrapper {
    height: 40px;
    width: 100%;
    min-width: 100%;
  }
  .AZ-header .line {
    display: none;
  }
  .AZ-login-page {
    padding: 30px 0;
  }
  .AZ-login-page form {
    height: 100%;
  }
  .AZ-login-page .login-brand img {
    width: 150px;
  }
  .AZ-login-page .col-right {
    border-left: 0;
    margin-top: 30px;
  }
  .AZ-login-page .login-title {
    font-size: 16px;
  }
  .AZ-login-page .AZ-login-box {
    gap: 30px;
  }
  .AZ-login-page .login-links .login-link {
    font-size: 12px;
  }
  .dashboard-content {
    padding: 15px 15px 70px 15px !important;
  }
  .progressbar-dashboard {
    margin-bottom: 0;
    overflow: unset;
    counter-reset: step;
    flex-direction: column;
    gap: 45px;
    width: 100%;
  }
  .progressbar-dashboard li {
    align-items: center;
    width: 100%;
  }
  .progressbar-dashboard li::before {
    width: 100%;
  }
  .progressbar-dashboard li::after {
    left: 50%;
    transform: translateX(-50%);
    top: 100%;
    width: 30px;
    height: 100%;
    border-right: 35px solid transparent;
    border-top: 35px solid #f1f1f1;
    border-left: 35px solid transparent;
    border-bottom: unset;
  }
  .progressbar-dashboard li:hover::after {
    border-right: 35px solid transparent;
    border-top: 35px solid #3b82f6;
  }
  .AZ-wallet-page .wallet-box {
    width: 100%;
    margin: auto;
  }
  .AZ-orders-page .AZ-accordion .accordion-item__button {
    border-radius: 10px 10px 10px 0;
    height: unset;
  }
  .AZ-orders-page .AZ-accordion .accordion-status {
    height: unset;
    width: 100%;
    border-radius: 10px 10px 0 0;
    padding: 10px;
  }
  .AZ-toolbar-products {
    background: transparent;
    padding: 0;
    box-shadow: none;
    border-radius: 0;
  }
  .AZ-toolbar-products .custom-select {
    min-width: 110px;
    flex-grow: 1;
  }
  .AZ-toolbar-products .custom-select {
    border: 0;
    box-shadow: 1px 0 4px 0 rgba(0, 0, 0, 0.04);
    background: #fff;
  }
  .AZ-toolbar-products .select2-container--default .select2-selection--single {
    border: 0;
    background: #fff;
    min-width: 120px;
  }
  .custom-select {
    min-height: 36px;
  }
  .custom-select .select-trigger {
    font-size: 12px;
  }
  .select2-container--default .select2-selection--single {
    min-height: 36px;
  }
  .select2-container--default .select2-selection--single .select2-selection__rendered {
    min-height: 36px;
    font-size: 12px;
  }
  .empty-box .img-box {
    width: 246px;
    height: 246px;
  }
  .empty-box .img-box img {
    width: 150px;
  }
  .empty-box img {
    width: 150px;
  }
  .empty-box .empty-title {
    font-size: 16px;
  }
  .empty-box .empty-text {
    font-size: 14px;
  }
  .AZ-product-page .gallery-top {
    width: 100%;
  }
  .AZ-product-page .gallery-img {
    border-radius: 8px;
  }
  .AZ-product-page .swiper-container-wrapper {
    height: unset;
    padding-bottom: 0;
    border-bottom: 0;
  }
  .AZ-product-page .AZ-sidebar {
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }
  .AZ-product-page .AZ-sidebar .AZ-accordion .accordion-item:first-child {
    border-top: 0;
  }
  .AZ-product-page .product-page-btns {
    position: unset;
  }
  .AZ-product-page .productDetails-box {
    padding: 20px;
  }
  .AZ-product-page .help-dropdown .help-buy-btn {
    width: 100%;
    height: 45px;
  }
  .AZ-product-page .help-dropdown .help-buy-btn .arrow-double {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%) rotate(90deg);
    font-size: 16px;
  }
  .AZ-product-page .help-dropdown .help-buy-btn p {
    border: 1px dashed #fdd199;
    border-radius: 8px;
  }
  .AZ-product-page .help-dropdown .help-buy-btn::after {
    content: none;
  }
  .AZ-product-page .help-dropdown .help-buy-btn::before {
    width: 20px;
    height: 20px;
    left: 50%;
    border-right: 0;
    border-left: 1px dashed #fdd199;
    transform: translateX(-50%) rotate(45deg);
    top: calc(100% - 10px);
    border-radius: 6px 0 0 0;
  }
  .productsSwiper .AZ-product-card .product-card--img {
    min-width: 100%;
    width: 100%;
  }
  .productsSwiper .AZ-product-card .product-card--img::after {
    padding-bottom: 60%;
  }
  .productsSwiper .AZ-product-card .product-card--body {
    width: 100%;
  }
  .AZ-footer .footer-text {
    font-size: 12px;
  }
  .AZ-footer .col-right {
    border-left: 0;
    padding-left: 0;
    padding: 0 10px;
  }
  .AZ-footer .col-right .footer-content {
    padding-bottom: 0;
  }
  .AZ-footer .col-left {
    padding-right: 0;
    padding: 0 10px;
  }
  .AZ-footer .support-box--link {
    font-size: 12px;
  }
  .AZ-footer .cpntact-list a {
    border-left: 1px solid #3c80ff;
    padding-left: 8px;
  }
  .AZ-footer .footer-link {
    font-size: 12px;
    padding: 3px 0;
  }
  .AZ-cart-page .payment-title {
    font-size: 16px;
  }
  .AZ-cart-page .payment-text {
    font-size: 12px;
  }
  .AZ-cart-page .AZ-section-text {
    font-size: 12px;
  }
  .AZ-cart-page .payment-details-list .payment-details--text,
  .AZ-cart-page .payment-details-list .payment-details--title {
    font-size: 12px;
  }
  .AZ-cart-page .payment-details-list .payment-details--title span {
    font-size: 16px;
  }
  .AZ-cart-page .box-title {
    font-size: 14px;
  }
  .AZ-cart-page .cart-box--img {
    width: 100%;
  }
  .AZ-cart-page .cart-box--body {
    min-height: auto;
    height: auto;
    width: 100%;
  }
  .AZ-cart-page .cart-box--title {
    font-size: 14px;
    margin-bottom: 15px;
  }
  .AZ-cart-page .cart-box--details {
    font-size: 12px;
  }
  .AZ-cart-page .cart-box .discount-tag {
    font-size: 10px;
  }
  .AZ-cart-page .cart-box .old-price {
    font-size: 12px;
  }
  .AZ-cart-page .share-link #link {
    height: 5px;
    min-width: 50px;
  }
  .AZ-cart-page .share-link #copy button {
    font-size: 12px;
  }
  .AZ-products-page .tabContainer--title {
    font-size: 14px;
  }
  .AZ-products-page .tabs {
    padding: 8px;
  }
  .AZ-products-page .tabs li {
    width: auto;
    flex-grow: 1;
  }
  .AZ-products-page .tabs .tab-link {
    padding: 8px;
    font-size: 12px;
  }
  .AZ-products-page .tabs .tab-link span {
    display: none;
  }
  .add-comments-btn {
    font-size: 14px;
    padding: 8px;
    width: auto;
  }
  .provider-box--text, .provider-box--desc {
    font-size: 12px;
  }
  .provider-box .location {
    padding: 8px 0;
  }
  .provider-box .location span {
    width: 32px;
    height: 32px;
    background: #ebf2fe;
  }
  .provider-box .AZ-social-wrapper .social-link {
    background: transparent;
  }
  .AZ-profile-page {
    padding: 10px 0;
  }
  .AZ-profile-page .follow-list .follow-title {
    font-size: 12px;
  }
  .AZ-profile-page .follow-list .follow-img {
    width: 32px;
  }
  .AZ-profile-page .follow-list .AZ-main-btn,
  .AZ-profile-page .follow-list .AZ-primary-btn {
    font-size: 12px;
    padding: 8px;
  }
  .AZ-profile-page.AZ-orders-page .profile-box {
    background: transparent;
    border-radius: 0;
    box-shadow: none;
  }
  .AZ-profile-page.AZ-orders-page .tabContent {
    border-radius: 0;
    background: transparent;
    padding: 0;
    box-shadow: none;
  }
  .AZ-profile-page .tabs .tab-link {
    font-size: 12px;
    padding: 8px 16px;
  }
  .AZ-profile-page .tabs li {
    width: auto;
  }
  .AZ-profile-page .order-box--actions span {
    font-size: 20px;
  }
  .AZ-profile-page .order-box .share-link #copy button span {
    font-size: 20px;
  }
  .AZ-profile-page .AZ-sticky {
    position: fixed;
    top: 0;
    right: -300px;
    min-height: 100vh;
    background: yellow;
    width: 300px;
    z-index: 10;
    display: flex;
    align-items: center;
    transition: all 0.2s linear;
  }
  .AZ-profile-page .AZ-sticky.open {
    right: 0;
  }
  .AZ-search-wrapper {
    min-width: 100%;
  }
  .AZ-profile-sidebar {
    border-radius: 0;
    width: 300px;
    transition: all 0.2s linear;
    z-index: 100;
    padding: 20px 0;
    overflow-y: auto;
    height: 100vh;
    min-height: 100vh;
    margin-top: 0;
  }
  .AZ-profile-sidebar .profile-list {
    margin-bottom: 30px;
  }
  .AZ-profile-sidebar .profile-link {
    padding: 16px 24px;
  }
  .AZ-profile-sidebar .profile-img {
    margin-top: unset;
    border: 0;
  }
  .AZ-profile-sidebar .profile-img .edit_icon {
    position: absolute;
    bottom: 0;
    right: 0;
  }
  .AZ-profile-sidebar .shape-img::before,
  .AZ-profile-sidebar .shape-img::after {
    content: none;
  }
  .AZ-profile-page .wallet-field-info {
    font-size: 12px;
  }
  .AZ-profile-page .profile-box .box-title {
    font-size: 14px;
  }
  .AZ-profile-page .profile-box .box-title span {
    font-size: 20px;
  }
  .AZ-profile-page .profile-box--head {
    padding: 12px 16px;
  }
  .AZ-profile-page .profile-box--head .AZ-primary-btn,
  .AZ-profile-page .profile-box--head .AZ-secondary-btn {
    font-size: 12px;
    padding: 8px;
  }
  .AZ-profile-page .empty-box .empty-text {
    font-size: 12px;
  }
  .AZ-profile-page .empty-box img {
    width: 64px;
  }
  .AZ-profile-page .dashboard-box {
    padding: 4px 8px;
  }
  .AZ-profile-page .dashboard-box img {
    width: 40px;
  }
  .AZ-profile-page .dashboard-box--price {
    font-size: 12px;
  }
  .AZ-profile-page .dashboard-box--title {
    font-size: 12px;
  }
  .AZ-profile-page .dropdown-order-link {
    font-size: 12px;
  }
  .AZ-profile-page .order-box {
    padding: 8px;
  }
  .AZ-profile-page .order-box--body {
    padding: 8px;
  }
  .AZ-profile-page .order-box .h-140 {
    min-height: unset;
  }
  .AZ-profile-page .order-box .col-right {
    border-left: 0;
    padding-left: 0;
  }
  .AZ-profile-page .order-box--code {
    font-size: 12px;
  }
  .AZ-profile-page .order-box--img {
    min-width: 100px;
    border-radius: 8px;
  }
  .AZ-profile-page .order-box--status, .AZ-profile-page .order-box--number {
    font-size: 10px;
  }
  .AZ-profile-page .order-box--title {
    font-size: 14px;
  }
  .AZ-profile-page .order-box--price {
    font-size: 12px;
  }
  .AZ-profile-page .order-box .discount-tag {
    font-size: 10px;
    padding: 2px 8px 0 8px;
  }
  .eventCalendar-modal .approve-icon {
    font-size: 16px;
  }
  .eventCalendar-modal .calendar-box .calendar--text {
    font-size: 12px;
  }
  .eventCalendar-modal .calendar-box .calendar--title {
    font-size: 12px;
  }
  .eventCalendar-modal .unverified .btn-approve {
    font-size: 12px;
  }
  .eventCalendar-modal .unverified .btn-approve span {
    font-size: 16px;
  }
  .AZ-slider-section .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
  }
  .AZ-slider-section .slider-img::after {
    padding-bottom: 53%;
  }
  .AZ-about-section .about-box {
    box-shadow: unset;
    padding: 24px;
    border-radius: 0;
    padding: 24px 20px;
  }
  .AZ-about-section .details-box {
    padding: 16px 8px 24px 8px;
  }
  .AZ-about-section .details-box--text {
    font-size: 12px;
  }
  .AZ-about-section .details-box--title {
    font-size: 14px;
  }
  .AZ-about-section .more-btn {
    padding: 6px 16px;
  }
  .AZ-about-section .col-right {
    border-left: 0;
    padding-left: 10px;
  }
  .AZ-about-section .col-left {
    padding-right: 10px;
  }
  .AZ-about-section .AZ-section-title {
    font-size: 18px;
  }
  .AZ-about-section .AZ-section-desc {
    font-size: 14px;
  }
  .AZ-about-section .AZ-section-text {
    font-size: 15px;
  }
  .AZ-about-section .AZ-primary-btn,
  .AZ-about-section .AZ-secondary-btn {
    font-size: 12px;
    padding: 8px;
  }
  .AZ-about-section .AZ-primary-btn span,
  .AZ-about-section .AZ-secondary-btn span {
    font-size: 16px;
  }
  .AZ-event-section .row {
    overflow-x: auto;
  }
  .AZ-event-section .col {
    width: 133px;
  }
  .AZ-event-section .event-img {
    padding: 5px 5px 10px 5px;
  }
  .AZ-title-homepage {
    font-size: 15px;
  }
  .AZ-banner-section .banner-img::after {
    padding-bottom: 50%;
  }
  .nav-section .view-all {
    font-size: 13px;
  }
  .pl-0 {
    padding-left: 0;
  }
  .AZ-blog-section .post-card--btn {
    font-size: 20px;
    width: 32px;
    height: 32px;
  }
  .AZ-blog-section .post-card--text {
    font-size: 12px;
    font-family: "IRANYekanX-Medium";
  }
  .support-modal .AZ-primary-btn,
  .support-modal .AZ-secondary-btn {
    width: 100%;
  }
  .AZ-products-section .products-box {
    border-radius: 0;
  }
  .AZ-blog-page {
    padding: 30px 0 60px;
  }
  .AZ-blog-page .filter-box {
    background: transparent;
    padding: 0;
    box-shadow: none;
  }
  .AZ-blog-page .filter-box .custom-select {
    width: 100%;
    min-width: 100%;
  }
  .AZ-blog-page .search-group {
    width: 100%;
  }
  .AZ-blog-page .blogSwiper .swiper-slide {
    width: 270px;
  }
  .AZ-blog-page .post-detail {
    font-size: 10px;
  }
  .AZ-blog-page .post-detail span {
    font-size: 14px;
  }
  .AZ-blog-page .post-img {
    width: 100%;
    border-radius: 10px;
  }
  .AZ-blog-page .post-title {
    font-size: 14px;
    font-family: "IRANYekanX-Bold";
  }
  .invoice-modal .table-wrapper td,
  .invoice-modal .table-wrapper th {
    min-width: 100px;
  }
}
@media screen and (max-width: 768px) {
  .w-sm-100 {
    width: 100%;
  }
  .AZ-search-container {
    min-width: 100%;
  }
  .profile-action .user-avatar-sm {
    min-width: 32px !important;
    height: 32px !important;
    border: 0;
  }
  .AZ-accordion .accordion-item__button {
    padding: 10px;
  }
  .table-wrapper .success,
  .table-wrapper .secondary,
  .table-wrapper .primary,
  .table-wrapper .danger {
    font-size: 10px;
  }
  .table-wrapper thead th {
    font-size: 11px;
  }
  .table-wrapper tbody td .table-text {
    font-size: 11px;
  }
  .table-wrapper .table-btn {
    width: 25px;
    height: 25px;
  }
  .table-wrapper .table-btn span {
    font-size: 12px;
  }
  .table-wrapper .price span {
    font-size: 11px;
  }
  .table-wrapper .product-title {
    font-size: 12px;
  }
  .table-wrapper .action-btn {
    font-size: 10px;
    height: unset;
    min-height: unset;
    min-width: auto;
  }
  .table-wrapper .username {
    font-size: 12px;
  }
  .mobile-nav-item {
    padding: 6px 8px;
    font-size: 11px;
    font-weight: 800;
  }
  .AZ-orders-page .AZ-accordion .accordion-item__button span {
    font-size: 11px;
  }
  .AZ-orders-page .AZ-accordion .accordion-item__button .button-details {
    position: relative;
  }
  .AZ-orders-page .AZ-accordion .accordion-item__button .button-details > p,
  .AZ-orders-page .AZ-accordion .accordion-item__button .button-details div {
    border-left: 1px solid rgb(177, 177, 177);
    position: relative;
  }
  .AZ-orders-page .AZ-accordion .accordion-item__button .button-details > p:last-child,
  .AZ-orders-page .AZ-accordion .accordion-item__button .button-details div:last-child {
    border-left: 0;
    padding-left: 0;
  }
  .profile-action {
    width: auto !important;
    border-radius: 40px !important;
  }
  .profile-action .icon-keyboard_arrow_down {
    display: none;
  }
  .AZ-product-page .details-box--title {
    font-size: 12px;
  }
  .AZ-product-page .details-box--text {
    font-size: 12px;
  }
  .AZ-product-page .resume-dropdown .dropdown-toggle {
    font-size: 12px;
  }
  .AZ-product-page .product-title {
    font-size: 16px;
  }
  .AZ-product-page .similar-products--title {
    font-size: 14px;
    font-family: "IRANYekanX-Medium";
  }
  .productsSwiper .swiper-slide {
    width: 300px;
  }
  .AZ-page-header {
    padding: 40px 0;
  }
  .AZ-page-header .AZ-section-title {
    font-size: 18px;
  }
  .AZ-page-header .AZ-section-text {
    font-size: 14px;
  }
  .AZ-page-header img {
    width: 178px;
  }
}
@media screen and (max-width: 568px) {
  .help-dropdown .dropdown-menu {
    min-width: unset;
  }
  .modal-mobile .modal-header {
    background: #fafafa;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.0784313725);
  }
  .modal-mobile .btn-close {
    font-size: 12px;
    color: #323338;
    font-family: "IRANYekanX-Regular";
    width: auto;
    height: auto;
    padding: 0;
    background-image: unset;
    opacity: 1;
  }
  .modal-mobile .btn-close span {
    font-size: 28px;
  }
  .modal-mobile .modal-dialog {
    margin: 0;
    height: 100vh;
    height: 100dvh;
  }
  .modal-mobile .modal-content {
    height: 100vh;
    height: 100dvh;
    border-radius: 0;
  }
  .login-modal .modal-content {
    background-image: url("../images/logn-bg-top.png"), url("../images/logn-bg-bottom.png");
    background-repeat: no-repeat, no-repeat;
    background-size: 250px, 250px;
    background-position: left top, right bottom;
  }
  .login-modal .modal-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .login-modal .login-img {
    width: 230px;
  }
  .comments-modal .AZ-radio-scoring label {
    font-size: 12px;
  }
  .comments-modal .AZ-radio-scoring label img {
    width: 24px;
  }
  .comments-modal .AZ-radio-scoring label span {
    font-size: 14px;
  }
  .presentation-box--text {
    font-size: 12px;
  }
  .comment-box--username {
    font-size: 14px;
  }
  .provider-box--username {
    font-size: 14px;
  }
  .provider--profile-img {
    min-width: 48px;
    width: 48px;
  }
  .provider--profile-img .award-profile {
    width: 16px;
    height: 16px;
    font-size: 12px;
  }
  .presentation-box--username {
    font-size: 14px;
  }
  .presentation-box--profile {
    width: 56px;
  }
  .AZ-product-page .course-features {
    padding: 8px 16px;
  }
  .AZ-product-page .course-features .features-title {
    font-size: 14px;
  }
  .AZ-product-page .course-features .features-text {
    font-size: 14px;
  }
  article h2,
  article h3,
  article h4,
  article h5 {
    font-size: 14px;
    line-height: 1.8;
  }
  article p {
    font-size: 14px;
  }
  article ul li {
    padding: 2px 0;
    font-size: 14px;
  }
  .upload-container-product {
    gap: 10px;
    flex-direction: column;
  }
  .upload-container-product .main-preview-box {
    min-width: 100%;
    width: 100%;
  }
  .upload-container-product .thumbnail-item {
    /* width: calc(25% - 6px); */
    width: 120px;
    height: 80px;
  }
  .paymentReceipt-modal .paymentReceipt--list--text,
  .paymentReceipt-modal .paymentReceipt--list--title {
    font-size: 12px;
  }
  .AZ-breadcrumb-section {
    padding: 8px 0;
  }
  .AZ-breadcrumb-section .breadcrumb-item + .breadcrumb-item::before {
    float: right;
    padding-left: 2px;
  }
  .AZ-breadcrumb-section .breadcrumb-item + .breadcrumb-item {
    padding-right: 2px;
  }
}
@media screen and (max-width: 480px) {
  .AZ-section-title {
    font-size: 16px;
    font-family: "IRANYekanX-Medium";
  }
  .upload-container-product .upload-note {
    font-size: 10px;
  }
  .upload-container-product .upload-corner p {
    font-size: 10px;
  }
  .AZ-box {
    padding: 10px;
  }
  .AZ-orders-page .AZ-accordion .accordion-item__button p {
    font-size: 11px;
  }
  .mobile-nav-item {
    font-size: 10px;
    white-space: nowrap;
  }
  .notification-dropdown .dropdown-menu {
    width: 250px;
  }
  .mobile-nav-item {
    padding: 5px !important;
  }
  .mobile-nav-item svg {
    width: 20px !important;
    height: 20px !important;
  }
  .AZ-navbar-bottom .nav-bottom-link {
    font-size: 10px;
    padding: 10px 0 5px;
  }
  .AZ-navbar-bottom .nav-bottom-link .badge {
    font-size: 8px;
    width: 15px;
    height: 15px;
  }
  .AZ-toolbar-products .filter-btn {
    font-size: 10px;
    height: 36px;
  }
  .AZ-toolbar-products .filter-btn span {
    font-size: 15px;
  }
  .AZ-toolbar-products .select2-container {
    min-width: 150px;
  }
  .AZ-toolbar-products .custom-select .select-trigger::before {
    left: 0;
  }
  .AZ-toolbar-products .custom-select .select-trigger {
    font-size: 10px;
  }
  .AZ-toolbar-products .custom-select .select-options {
    font-size: 11px;
  }
  .AZ-toolbar-products .select2-container--default .select2-selection--single .select2-selection__rendered {
    font-size: 10px;
  }
  .select2-results__option {
    font-size: 12px !important;
  }
  .AZ-sidebar-product .product-price {
    font-size: 18px;
  }
  .AZ-orders-page .AZ-accordion .accordion-content {
    padding: 10px;
  }
  .AZ-orders-page .AZ-accordion .accordion-item__button .accordion-order-title {
    white-space: unset;
  }
}




/**
 * =======================================================
 * استایل‌های هماهنگ‌سازی دکمه YITH Wishlist
 * =======================================================
 */

/* حذف استایل‌های پیش‌فرض افزونه و آماده‌سازی برای استایل سفارشی */
.product-page-btns .yith-wcwl-add-to-wishlist {
    margin: 0 !important;
}

.product-page-btns .yith-wcwl-add-to-wishlist a {
    border: none !important;
    background-color: transparent !important;
    color: inherit !important;
    text-indent: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    font-size: 0; /* مخفی کردن متن "افزودن به علاقه‌مندی‌ها" */
}

/* استایل‌دهی اصلی دکمه برای شبیه‌سازی کلاس product-btns */
.product-page-btns .yith-wcwl-add-to-wishlist .yith-wcwl-add-button > a,
.product-page-btns .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse > a,
.product-page-btns .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse > a {
    /* اعمال استایل‌های کلاس .product-btns شما */
    width: 40px; /* عرض دکمه شما */
    height: 40px; /* ارتفاع دکمه شما */
    border-radius: 50%;
    background: #fff !important;
    border: 1px solid #eee !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 20px !important; /* اندازه آیکون شما */
    color: #333 !important;
    transition: all 0.3s ease;
}

.product-page-btns .yith-wcwl-add-to-wishlist a:hover {
    background-color: #f5f5f5 !important;
    border-color: #ddd !important;
}

/* جایگزینی آیکون پیش‌فرض افزونه با آیکون شما */
.product-page-btns .yith-wcwl-add-button > a::before {
    font-family: 'icomoon' !important; /* نام فونت آیکون شما */
    content: "\e90c"; /* کد آیکون icon-heart-o شما */
    font-size: inherit;
    margin: 0;
}

/* استایل برای حالت "اضافه شده" (قلب توپر) */
.product-page-btns .yith-wcwl-wishlistaddedbrowse > a::before,
.product-page-btns .yith-wcwl-wishlistexistsbrowse > a::before {
    font-family: 'icomoon' !important;
    content: "\e90b"; /* کد آیکون icon-heart (قلب توپر) */
    color: red !important; /* رنگ قلب توپر */
}

/* مخفی کردن آیکون پیش‌فرض FontAwesome افزونه */
.product-page-btns .yith-wcwl-icon {
    display: none !important;
}

/* استایل لودر AJAX */
.product-page-btns .yith-wcwl-add-button.loading a {
    pointer-events: none;
}
.product-page-btns .yith-wcwl-add-button.loading a::before {
    content: "\e92a"; /* کد آیکون لودینگ شما (مثلا icon-spinner) */
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}


/* مخفی کردن اجزای بصری افزونه YITH در صفحه محصول */
.custom-wishlist-wrapper .yith-wcwl-icon, 
.custom-wishlist-wrapper .yith-wcwl-add-to-wishlist-button__label,
.custom-wishlist-wrapper svg {
    display: none !important;
}

/* اطمینان از اینکه دکمه نامرئی کل فضا را می‌گیرد */
.custom-wishlist-wrapper .yith-wcwl-add-to-wishlist-button {
    width: 100% !important;
    height: 100% !important;
    display: block !important;
    background: transparent !important;
    border: none !important;
}

/* تنظیم لایه آیکون قالب */
.custom-wishlist-wrapper .wishlist-icon-layer {
    pointer-events: none; /* کلیک از این لایه رد شود و به دکمه افزونه برسد */
}


/* 
 * اصلاح استایل آیکون‌های شبکه‌های اجتماعی در صفحه فروشگاه
*/

.AZ-social-wrapper .social-link {
    /* این ابعاد را می‌توانید برای بزرگ یا کوچک کردن دایره‌ها تغییر دهید */
    width: 44px;
    height: 44px;
    
    /* این بخش برای اطمینان از مرکز بودن آیکون است */
    display: flex;
    align-items: center;
    justify-content: center;
    
    /* این بخش دایره سفید را می‌سازد */
    background-color: #fff;
    border-radius: 50%;
    
    /* یک سایه ملایم برای زیبایی بیشتر، مشابه طرح‌های مدرن */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    
    /* مهم: یک فاصله داخلی ایجاد می‌کند تا آیکون از لبه‌ها فاصله بگیرد */
    padding: 10px; 
    
    box-sizing: border-box; /* تضمین می‌کند که پدینگ به ابعاد اضافه نشود */
    transition: transform 0.2s ease; /* انیمیشن نرم برای هاور */
}

.AZ-social-wrapper .social-link:hover {
    transform: translateY(-2px); /* کمی حرکت به بالا هنگام هاور */
}

/* 
 * این بخش اندازه خود تصویر آیکون را کنترل می‌کند 
*/
.AZ-social-wrapper .social-link img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* تضمین می‌کند که تصویر بدون دفورمه شدن، کاملا داخل کادر قرار بگیرد */
}

/* استایل برای بخش اشتراک لینک دعوت */
.share-link {
    background-color: #fff5e9; /* رنگ پس‌زمینه نارنجی روشن */
    border-radius: 12px;
    padding: 10px 15px;
}

/* استایل برای بخش حاوی اینپوت و دکمه */
.share-link .h-100.flex-grow-1 {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    background-color: #fff;
}

/* استایل برای فیلد لینک */
.share-link .link {
    border: none;
    background: transparent;
    flex-grow: 1; /* باعث می‌شود تمام فضای خالی را پر کند */
    padding: 8px 12px;
    font-size: 14px;
    text-align: left;
    direction: ltr; /* برای نمایش صحیح لینک */
    outline: none; /* حذف حاشیه هنگام کلیک */
}

/* استایل برای دکمه کپی */
.share-link .copy button {
    background-color: #f5f5f5;
    border: none;
    padding: 8px 15px;
    cursor: pointer;
    border-left: 1px solid #e0e0e0;
    white-space: nowrap; /* جلوگیری از شکستن متن دکمه */
}

.share-link .copy button:hover {
    background-color: #e9e9e9;
}
