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

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

a {
  text-decoration: none;
}

ul {
  padding: 0;
  margin: 0;
}

li {
  list-style: none;
}

p {
  margin: 0;
}

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

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

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

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

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

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

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

.gap-2 {
  gap: 2px;
}

.gap-4 {
  gap: 4px;
}

.gap-10 {
  gap: 10px;
}

.gap-20 {
  gap: 20px;
}

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

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

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

.AZ-styled-select {
  min-width: 100%;
  min-height: 45px;
  background: transparent;
  border-radius: 10px;
  border: 1px solid #e3e2e2;
  display: inline-block;
  position: relative;
  overflow: hidden;
}
.AZ-styled-select::before {
  content: "\e916";
  font-family: "icomoon";
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  font-size: 20px;
}
.AZ-styled-select select {
  font-size: 14px;
  padding: 0 10px;
  border: 0;
  position: absolute;
  left: 0;
  top: 0;
  background: transparent;
  
  height: 100%;
  width: 100%;
  color: #000000;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
}

.AZ-field-group {
  margin-bottom: 15px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.AZ-field-group label {
  font-size: 16px;
  color: #1b262c;
  
  margin-bottom: 10px;
}
.AZ-field-group label span {
  font-size: 12px;
}
.AZ-field-group input,
.AZ-field-group textarea {
  font-size: 16px;
  color: #62696c;
  
  border-radius: 10px;
  border: 1px solid #e3e2e2;
  background: rgb(243, 244, 247);
  padding: 0 15px;
}
.AZ-field-group input:focus,
.AZ-field-group textarea:focus {
  border: 1px solid #435fcb;
}
.AZ-field-group input.err,
.AZ-field-group textarea.err {
  border-color: red;
}
.AZ-field-group input {
  height: 45px;
}
.AZ-field-group textarea {
  padding: 15px;
}

.AZ-section-title {
  font-size: 24px;
  color: #242424;
  
  margin-bottom: 20px;
}

.AZ-section-text {
  font-size: 16px;
  color: #333333;
  
}

.AZ-primary-btn,
.AZ-secondary-btn {
  font-size: 14px;
  color: #fff;
  
  border-radius: 10px;
  padding: 10px 20px;
  background: #435fcb;
  transition: all 0.2s linear;
  border: 0;
}
.AZ-primary-btn:hover,
.AZ-secondary-btn:hover {
  color: #ffffff;
}

.AZ-secondary-btn {
  background: #f5f5f5;
  color: #242424;
}
.AZ-secondary-btn:hover {
  color: #242424;
}

.AZ-header {
  box-shadow: 0 5px 8px rgba(118, 120, 139, 0.1);
  background: #fff;
  border-radius: 0;
}
.AZ-header .slogan-header {
  font-size: 14px;
  color: #696161;
  
}
.AZ-header .navbar-toggler {
  color: #242424;
}
.AZ-header .navbar-toggler:focus {
  box-shadow: none;
}
.AZ-header .nav-link {
  font-size: 16px;
  color: #242424;
  
  padding: 0 20px;
  transition: all 0.2s linear;
  overflow: hidden;
  position: relative;
}
.AZ-header .nav-link:hover {
  color: #3350e3;
}
.AZ-header .search-nav {
  background: #ebeffa;
  min-width: 400px;
  border-radius: 40px;
  height: 45px;
}
.AZ-header .search-nav input {
  font-size: 14px;
  color: #242424;
  
  background: transparent;
  flex-grow: 1;
  padding: 10px 15px;
  border: 0;
}
.AZ-header .search-nav button {
  font-size: 20px;
  color: #333333;
  padding: 0 20px;
  border: 0;
  background: transparent;
}
.AZ-header .category-btn {
  font-size: 14px;
  color: #242424;
  
  background: #ebeffa;
  border-radius: 0 0 30px 30px;
  padding: 10px 20px;
  gap: 45px;
}
.AZ-header .category-btn span {
  color: #333333;
  font-size: 20px;
}
.AZ-header .category-btn .grid-icon {
  font-size: 18px;
  color: #435fcb;
}
.AZ-header .login-btn {
  border: 1px solid #d2d5e0;
  padding: 10px;
  border-radius: 15px;
  font-size: 16px;
  color: #242424;
  
}
.AZ-header .nav-icon {
  font-size: 20px;
  color: #242424;
  transition: all 0.2s linear;
}
.AZ-header .nav-icon:hover {
  color: #d2d5e0;
}
.AZ-header .nav-icon .badge {
  
  background: #435fcb;
  font-size: 10px;
}

.has-dropdown {
  position: relative;
  /*******/
  /*******/
}
.has-dropdown .dropdown-link {
  font-size: 16px;
  color: #1b262c;
  
  white-space: nowrap;
  border-radius: 0 5px 5px 0;
  padding: 10px 15px;
  transition: all 0.2s linear;
}
.has-dropdown .dropdown-link:hover {
  background: #f5f5f5;
  margin-right: 10px;
}
.has-dropdown .mainmenu {
  background: none;
  border: 0 solid;
  margin: 0;
  padding: 0;
  min-height: 20px;
  width: 100%;
}
.has-dropdown .mainmenu .collapse ul li:hover > ul {
  display: block;
}
.has-dropdown .mainmenu .collapse ul ul {
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 250px;
  display: none;
}
.has-dropdown .mainmenu .collapse ul ul li {
  position: relative;
}
.has-dropdown .mainmenu .collapse ul ul li:hover > ul {
  display: block;
}
.has-dropdown .mainmenu .collapse ul ul ul {
  position: absolute;
  top: 0;
  right: 100%;
  min-width: 250px;
  display: none;
}
.has-dropdown .mainmenu .collapse ul ul ul li {
  position: relative;
}
.has-dropdown .mainmenu .collapse ul ul ul li:hover ul {
  display: block;
}
.has-dropdown .mainmenu .collapse ul ul ul ul {
  position: absolute;
  top: 0;
  left: -100%;
  min-width: 250px;
  display: none;
  z-index: 1;
}
.has-dropdown .dropdown-toggle::after {
  content: none;
}
.has-dropdown .dropdown-list {
  background: #fff;
  border-radius: 10px;
  border: 1px solid #e7e7e7;
  padding: 0;
}
.has-dropdown .dropdown-list li {
  border-bottom: 1px solid #e7e7e7;
}
.has-dropdown .dropdown-list li:last-child {
  border-bottom: 0;
}

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

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

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

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

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

li.has-children ul.accordion-menu {
  padding: 0 1rem !important;
}

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

#accordian .active > a:not(:only-child):after {
  content: "\e913";
}

.offcanvas .offcanvas-title {
  font-size: 20px;
  color: #242424;
  
}
.offcanvas .empty-wrapper .empty-text {
  font-size: 16px;
  color: #242424;
  
}

.offcanvas-menu {
  width: 300px;
}

.offcanvas-cart .js-quantity {
    height: 35px;
}
.offcanvas-cart .offcanvas-header {
  border-bottom: 1px solid rgba(0, 0, 0, 0.105);
}
.offcanvas-cart .offcanvas-footer {
  border-top: 1px solid rgba(0, 0, 0, 0.105);
  padding: 15px;
}
.offcanvas-cart .cart-item {
  transition: all 0.2s linear;
}
.offcanvas-cart .cart-item .cart-item-img {
  min-width: 80px;
}
.offcanvas-cart .cart-item .cart-item-img img {
  max-width: 100%;
  max-height: 100%;
}
.offcanvas-cart .cart-item .cart-item-img::after {
  padding-bottom: 100%;
}
.offcanvas-cart .cart-item .cart-item-title {
  font-size: 14px;
  color: #242424;
  
  margin-bottom: 10px;
}
.offcanvas-cart .cart-item .cart-item-close {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: transparent;
  transition: all 0.2s linear;
  display: flex;
  align-items: center;
  justify-content: center;
}
.offcanvas-cart .cart-item .cart-item-close:hover {
  background: #ffffff;
}
.offcanvas-cart .cart-item .cart-item-price {
  font-size: 14px;
  
  color: #435fcb;
}
.offcanvas-cart .cart-item .cart-item-count {
  font-size: 14px;
  
  color: #333;
}
.offcanvas-cart .cart-item:hover {
  background: #f5f5f5;
}
.offcanvas-cart .total {
  font-size: 18px;
  color: #242424;
  
}
.offcanvas-cart .total-price {
  font-size: 18px;
  color: #435fcb;
  
}

.AZ-footer {
  /* margin-bottom: 30px; */
  margin: 0;
  padding: 0;
}
.AZ-footer .footer-content {
  padding: 40px 0;
  background: #3c3c3c;
}
.AZ-footer .copyright-text {
  font-size: 14px;
  color: #bfbbc9;
  
  margin-top: 40px;
}
.AZ-footer .footer-text {
  font-size: 16px;
  color: #ffffff;
  
}
.AZ-footer .footer-title {
  font-size: 16px;
  color: #ffffff;
  
  margin-bottom: 15px;
}
.AZ-footer .footer-link {
  font-size: 16px;
  color: #ffffff;
  
  transition: all 0.2s linear;
  padding: 5px 0;
  padding-right: 15px;
  position: relative;
}

.AZ-footer .footer-link:hover {
  color: #0d89cf;
}
.AZ-footer .footer-social {
  margin-bottom: 20px;
}
.AZ-footer .footer-social a {
  color: #ffffff;
  font-size: 25px;
  transition: all 0.2s linear;
}
.AZ-footer .footer-social a:hover {
  color: #435fcb;
}

.store-features {
  padding: 40px 0;
}
.store-features-img {
  width: 50px;
}
.store-features-title {
  font-size: 14px;
  color: #3350e3;
  
  margin-bottom: 5px;
}
.store-features-text {
  font-size: 12px;
  color: #bfbbc9;
  
}

.AZ-title-wrapper {
  padding: 8px;
  background: #f7f7f7;
  display: flex;
  align-items: center;
  gap: 20px;
}
.AZ-title-wrapper .line {
  flex-grow: 1;
  background: rgb(234, 234, 234);
  height: 1px;
}
.AZ-title-wrapper .section-title {
  font-size: 22px;
  color: #242424;
  
  text-align: center;
}

.AZ-blog-card {
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.12);
  background: #fff;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 15px;
}
.AZ-blog-card:hover .blog-card-img img {
  transform: scale(1.1);
}
.AZ-blog-card .blog-card-img {
  width: 100%;
}
.AZ-blog-card .blog-card-img::after {
  padding-bottom: 60%;
}
.AZ-blog-card .blog-card-img img {
  transition: all 0.2s linear;
}
.AZ-blog-card .blog-card-body {
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-grow: 1;
}
.AZ-blog-card .blog-card-date {
  font-size: 12px;
  color: #333333;
  
  position: absolute;
  top: 10px;
  right: 10px;
  background: #fff;
  border-radius: 10px;
  padding: 5px 10px;
}
.AZ-blog-card .blog-card-date span {
  font-size: 18px;
  
}
.AZ-blog-card .blog-card-title {
  font-size: 18px;
  color: #242424;
  
  transition: all 0.2s linear;
}
.AZ-blog-card .blog-card-title:hover {
  color: #3350e3;
}
.AZ-blog-card .blog-card-text {
  font-size: 14px;
  color: #242424;
  
}
.AZ-blog-card .read-more-btn {
  font-size: 16px;
  color: #3350e3;
  
}

.AZ-page-title {
  font-size: 26px;
  color: #242424;
  
  margin-bottom: 10px;
}

.AZ-page-text {
  font-size: 16px;
  color: #333333;
  
}

.AZ-page-desc {
  font-size: 14px;
  color: #a5a5a5;
  
}

.load-more-btn {
  font-size: 14px;
  color: #333333;
  
  padding: 8px 20px;
  border-radius: 5px;
  background: transparent;
  border: 2px solid rgb(226, 226, 226);
}

.AZ-accordion .accordion-item {
  width: 100%;
  border: none;
  overflow: hidden;
  background: #fff;
  padding: 25px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.105);
}
.AZ-accordion .accordion-item:last-child {
  border-bottom: 0;
}
.AZ-accordion .accordion-item.open .accordion-item__button {
  color: #435fcb;
}
.AZ-accordion .accordion-item.open .open-accordion {
  transform: rotate(45deg);
}
.AZ-accordion .accordion-content {
  margin-top: 15px;
}
.AZ-accordion .accordion-content p {
  font-size: 14spx;
  color: #3c3c3c;
  
  line-height: 1.8;
}
.AZ-accordion .accordion-item__button {
  border: none;
  width: 100%;
  transition: all 0.2s linear;
  cursor: pointer;
  position: relative;
  font-size: 16px;
  
  color: #242424;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  background: transparent;
  text-align: right;
}
.AZ-accordion .accordion-item__button .open-accordion {
  margin-right: 10px;
  font-size: 18px;
  color: #afa8a8;
  display: block;
  transition: all 0.2s linear;
}

.show-all {
  width: max-content !important;
  font-size: 16px;
  color: #0d89cf;
  
}
.show-all:hover {
  text-decoration: underline;
  color: #0d89cf;
}

.AZ-blog-section {
  background: #3c3c3c;
  padding: 40px 0;
}
.AZ-blog-section .AZ-blog-card {
  border-radius: 10px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.12);
}
.AZ-blog-section .AZ-blog-card .blog-card-img::after {
  padding-bottom: 80%;
}
.AZ-blog-section .AZ-title-wrapper {
  background: #696161;
}
.AZ-blog-section .AZ-title-wrapper .line {
  background: rgb(129, 120, 120);
}
.AZ-blog-section .AZ-title-wrapper .section-title {
  color: #fff;
}

.AZ-faq-section .section-title {
  min-width: max-content;
}

.box-wrapper {
  border: 2px solid #ccc;
  padding: 20px;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.AZ-faq-section {
  padding: 80px 0;
}

.AZ-category-section .category-box {
  border-radius: 10px;
  width: 100%;
}
.AZ-category-section .category-box::after {
  padding-bottom: 100%;
}
.AZ-category-section .category-box img {
  transition: all 0.2s linear;
}
.AZ-category-section .category-box:hover img {
  transform: scale(1.1);
}
.AZ-category-section .category-title {
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  font-size: 14px;
  color: #242424;
  
  border-radius: 40px;
  background: #fff;
  padding: 8px;
  width: 90%;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.AZ-slider-section {
  margin: 40px 0;
}
.AZ-slider-section .slider-title {
  margin-bottom: 20px;
  font-size: 42px;
  color: #1b262c;
  
}
.AZ-slider-section .slide {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}
.AZ-slider-section .slide::after {
  padding-bottom: 40%;
}
.AZ-slider-section .slide-img {
  width: 60%;
  background: pink;
  height: 100%;
}
.AZ-slider-section .slide-content {
  width: 40%;
  height: 100%;
  position: relative;
}
.AZ-slider-section .slide-content_inner {
  position: relative;
  z-index: 11;
  background: #f6f6f6;
  height: 100%;
}
.AZ-slider-section .slide-content_img {
  width: 40%;
}
.AZ-slider-section .slide-content::after {
  content: "";
  position: absolute;
  top: 0;
  right: -50px;
  width: 100px;
  height: 100%;
  background: #f6f6f6;
  transform: skew(-10deg);
  z-index: 1;
}
.AZ-slider-section .swiper-pagination-bullets.swiper-pagination-horizontal {
  left: 100%;
  width: unset;
}
.AZ-slider-section
  .swiper-pagination-horizontal.swiper-pagination-bullets
  .swiper-pagination-bullet {
  margin: 0;
}
.AZ-slider-section .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
}
.AZ-slider-section .swiper-pagination-bullet-active {
  background: #3350e3;
}

.AZ-product-section {
  padding: 30px 0;
}
.AZ-product-section .products-box {
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.12);
  background: #f7f7f7;
  border-radius: 30px;
  border: 1px solid rgba(0, 0, 0, 0.105);
  overflow: hidden;
}
.AZ-product-section .products-box .col-grid {
  border-left: 1px solid rgba(0, 0, 0, 0.105);
}
.AZ-product-section .products-box .col-grid:last-child {
  border-left: 0;
}

.show-grid [class^="col-"] {
  border: 1px solid rgba(0, 0, 0, 0.105);
}

.AZ-product-card {
  padding: 15px;
}
.AZ-product-card:hover .buy-btn {
  bottom: 0;
}
.AZ-product-card:hover .buy-btn:hover p {
  top: -20px;
}
.AZ-product-card:hover .buy-btn:hover span {
  top: 50%;
}
.AZ-product-card:hover .product-card-links {
  left: 10px;
}
.AZ-product-card .product-card-header {
  border-radius: 30px;
  background: #fff;
}
.AZ-product-card .product-card-header::after {
  padding-bottom: 100%;
}
.AZ-product-card .product-card-header img {
  max-width: 100%;
  max-height: 100%;
}
.AZ-product-card .discount-tag {
  font-size: 12px;
  color: #fff;
  
  position: absolute;
  top: 10px;
  right: 10px;
  background: #435fcb;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 40px;
  padding: 3px 10px;
}
.AZ-product-card .buy-btn {
  position: absolute;
  bottom: -200px;
  right: 0;
  width: 100%;
  background: #435fcb;
  padding: 20px 10px;
  color: #fff;
  font-size: 13px;
  
  transition: all 0.2s linear;
  transition-delay: 0.2s;
  overflow: hidden;
}
.AZ-product-card .buy-btn p,
.AZ-product-card .buy-btn span {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.2s linear;
}
.AZ-product-card .buy-btn span {
  font-size: 20px;
  top: 150%;
}
.AZ-product-card .product-card-links {
  position: absolute;
  left: -100px;
  top: 10px;
  background: red;
  border-radius: 40px;
  padding: 15px;
  background: #fff;
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: all 0.2s linear;
  transition-delay: 0.2s;
}
.AZ-product-card .product-card-links a {
  font-size: 22px;
  color: #242424;
}
.AZ-product-card .product-card-body {
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.AZ-product-card .product-card-title {
  font-size: 14px;
  color: #0f0f0f;
  
  transition: all 0.2s linear;
}
.AZ-product-card .product-card-title:hover {
  color: #3350e3;
}
.AZ-product-card .product-card-oldPrice {
  font-size: 12px;
  color: #bbb;
  
  text-decoration: line-through;
}
.AZ-product-card .product-card-price {
  font-size: 13px;
  color: #435fcb;
  
}
.AZ-product-card .product-card-categories .category-link {
  font-size: 13px;
  color: #555;
  
}
.AZ-product-card .product-card-categories .category-link:hover {
  color: #3350e3;
}
.AZ-product-card .product-card-categories span {
  font-size: 18px;
  
  color: #242424;
}

.AZ-product-card_small .product-card-img {
  width: 80%;
  margin: auto;
  margin-bottom: -30px;
}
.AZ-product-card_small .product-card-img::after {
  padding-bottom: 100%;
}
.AZ-product-card_small .product-card-img img {
  max-width: 100%;
  max-height: 100%;
}
.AZ-product-card_small .product-card-body {
  width: 100%;
  border: 3px solid #f1f1f1;
  padding: 40px 20px;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.AZ-product-card_small .product-card-text {
  font-size: 14px;
  color: #a5a5a5;
  
}
.AZ-product-card_small .product-card-title {
  font-size: 16px;
  color: #242424;
  
  transition: all 0.2s linear;
}
.AZ-product-card_small .product-card-title:hover {
  color: #3350e3;
}
.AZ-product-card_small .product-card-btn {
  font-size: 14px;
  color: #242424;
  
  background: #f1f1f1;
  border-radius: 40px;
  margin-top: -20px;
  padding: 8px 20px;
  transition: all 0.2s linear;
}
.AZ-product-card_small .product-card-btn:hover {
  background: #3350e3;
  color: #fff;
}

.AZ-product-card_horizontal {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  height: 100%;
}
.AZ-product-card_horizontal .product-card-img {
  min-width: 50%;
  width: 50%;
  margin: unset;
  margin-bottom: unset;
  margin-right: -20px;
}
.AZ-product-card_horizontal .product-card-body {
  border: 3px solid #f1f1f1;
  padding: 20px 20px 40px 40px;
}

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

.swiper {
  height: 100%;
}

.swiper-slide {
  height: auto !important;
  text-align: center;
}

.AZ-category-page {
  padding: 40px 0;
}
.AZ-category-page .filter-btn {
  font-size: 16px;
  color: #242424;
  
}
.AZ-category-page .filter-btn span {
  font-size: 16px;
}
.AZ-category-page .show-items {
  font-size: 16px;
  color: #242424;
  
}
.AZ-category-page .show-items-num {
  font-size: 18px;
  color: #696161;
  
}
.AZ-category-page .grid-btn {
  font-size: 35px;
  color: #696161;
}
.AZ-category-page .filter-box {
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.12);
  background: #f7f7f7;
  border-radius: 30px;
  border: 1px solid rgba(0, 0, 0, 0.105);
  padding: 30px;
}
.AZ-category-page .filter-box .filter-box-title {
  font-size: 20px;
  
  color: #3c3c3c;
  margin-bottom: 10px;
}
.AZ-category-page .filter-box .filter-box-link {
  font-size: 14px;
  
  color: #696161;
  padding: 5px 0;
  transition: all 0.2s linear;
}
.AZ-category-page .filter-box .filter-box-link:hover {
  color: #435fcb;
}

.breadcrumb {
  margin-bottom: 0;
}
.breadcrumb .breadcrumb-item {
  font-size: 16px;
  color: #333333;
  
}

.AZ-blog-page {
  padding: 40px 0;
}

.AZ-post-header {
  background: #ebeffa;
}
.AZ-post-header .post-header-title {
  font-size: 42px;
  
  color: #3c3c3c;
  margin-bottom: 10px;
}

.AZ-post-page {
  padding: 40px 0;
}
.AZ-post-page .post-item {
  padding: 10px 0;
}
.AZ-post-page .post-item .post-item-title {
  font-size: 14px;
  color: #333333;
  
  margin-bottom: 10px;
}
.AZ-post-page .post-item .post-item-date {
  font-size: 14px;
  color: #696161;
  
}
.AZ-post-page .comment-item {
  padding: 10px 0;
}
.AZ-post-page .comment-item .comment-item-name {
  font-size: 16px;
  color: #242424;
  
}
.AZ-post-page .comment-item .comment-item-title {
  font-size: 14px;
  color: #696161;
  
}
.AZ-post-page .search-wrapper {
  border: 2px solid #d8d8d8;
  width: 100%;
  border-radius: 40px;
}
.AZ-post-page .search-wrapper input {
  font-size: 14px;
  color: #242424;
  
  background: transparent;
  flex-grow: 1;
  padding: 10px;
  border: 0;
}
.AZ-post-page .search-wrapper button {
  background: transparent;
  padding: 0 10px;
  color: #242424;
  border: 0;
}
.AZ-post-page .line {
  width: 100%;
  height: 2px;
  background: #dfdfdf;
}
.AZ-post-page .categories {
  background: #435fcb;
  border-radius: 5px;
  padding: 0 10px;
  margin-bottom: 20px;
}
.AZ-post-page .categories .category {
  font-size: 12px;
  color: #fff;
  
}
.AZ-post-page .categories span {
  font-size: 20px;
  
  color: #fff;
}
.AZ-post-page .post-title {
  font-size: 32px;
  
  color: #0f0f0f;
  margin-bottom: 20px;
}
.AZ-post-page .author-post {
  font-size: 14px;
  color: #555;
  
  margin-bottom: 20px;
}
.AZ-post-page .author-img {
  width: 30px;
  border-radius: 50%;
}
.AZ-post-page .author-img::after {
  padding-bottom: 100%;
}
.AZ-post-page .post-date {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #fff;
  border-radius: 10px;
  padding: 10px 20px;
  font-size: 20px;
  color: #1b262c;
  
}
.AZ-post-page .post-date span {
  font-size: 14px;
  
}
.AZ-post-page .post-img {
  width: 100%;
  border-radius: 10px;
}
.AZ-post-page .share-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
}
.AZ-post-page .facebook {
  background: #365493;
}
.AZ-post-page .pinterest {
  background: #af1c22;
}
.AZ-post-page .linkedin {
  background: #02649a;
}
.AZ-post-page .telegram {
  background: #2f96c3;
}
.AZ-post-page .x {
  background: #000000;
}
.AZ-post-page .tag-link {
  font-size: 14px;
  color: #3c3c3c;
  
  padding: 3px 10px;
  border-radius: 10px;
  border: 1px solid #d6d6d6;
  transition: all 0.2s linear;
}
.AZ-post-page .tag-link span {
  width: 5px;
  height: 5px;
  background: #d6d6d6;
  border-radius: 50%;
  transition: all 0.2s linear;
}
.AZ-post-page .tag-link:hover {
  color: #435fcb;
  border: 1px solid #435fcb;
}
.AZ-post-page .tag-link:hover span {
  background: #435fcb;
}
.AZ-post-page .post-next span,
.AZ-post-page .post-prev span {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid #d6d6d6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  color: #1b262c;
  transition: all 0.2s linear;
}
.AZ-post-page .post-next .post-nav-title,
.AZ-post-page .post-prev .post-nav-title {
  font-size: 14px;
  color: #afa8a8;
  
  margin-bottom: 5px;
}
.AZ-post-page .post-next .post-nav-text,
.AZ-post-page .post-prev .post-nav-text {
  font-size: 16px;
  color: #242424;
  
}
.AZ-post-page .post-next:hover span,
.AZ-post-page .post-prev:hover span {
  background: #435fcb;
  color: #fff;
}
.AZ-post-page .grid-archive {
  font-size: 25px;
  color: #242424;
}
.AZ-post-page .grid-archive:hover {
  color: #365493;
}
.AZ-box {
  box-shadow: 0px 0px 9px 3px rgba(93, 100, 116, 0.12) !important;
  border-radius: 10px;
  background: #fff;
  padding: 20px;
  margin-bottom: 20px;
}
.AZ-box .box-title {
  font-size: 16px;
  color: #7b85a3;
  
  padding: 10px;
  background: rgb(243, 244, 247);
  margin-bottom: 20px;
}

article h1 {
  font-size: 32px;
  
  color: #0f0f0f;
  margin-top: 30px;
}
article h2,
article h3 {
  font-size: 24px;
  
  color: #0f0f0f;
  margin-top: 30px;
  margin-bottom: 10px;
}
article h4,
article h5 {
  font-size: 22px;
  
  color: #0f0f0f;
  margin-top: 30px;
  margin-bottom: 10px;
}
article a {
  font-size: 16px;
  color: #435fcb;
  
}
article a:hover {
  text-decoration: underline;
}
article p {
  font-size: 16px;
  color: #333333;
  
}
article img {
  width: 100%;
  max-height: 400px;
}

.AZ-product-page {
  padding: 40px 0;
}
.AZ-product-page .product-title {
  font-size: 22px;
  color: #242424;
  
  margin-bottom: 10px;
}
.AZ-product-page .stars {
  font-size: 20px;
  color: rgb(255, 204, 0);
}
.AZ-product-page .comment-num {
  font-size: 14px;
  color: #a5a5a5;
  
}
.AZ-product-page .product-price {
  font-size: 25px;
  color: #435fcb;
  
  margin-bottom: 15px;
}
.AZ-product-page .product-description {
  font-size: 16px;
  color: #333333;
  
  margin-bottom: 10px;
}
.AZ-product-page .product-btns {
  font-size: 16px;
  color: #333333;
  
}
.AZ-product-page .product-btns:hover {
  color: #435fcb;
}
.AZ-product-page .store-features-img {
  width: 30px;
}
.AZ-product-page .line {
  width: 100%;
  height: 1px;
  background: #dcdcdc;
  margin: 15px 0;
}
.AZ-product-page .specifications {
  border-bottom: 1px solid rgb(227, 227, 227);
  border-top: 1px solid rgb(227, 227, 227);
  margin: 80px 0;
  padding-bottom: 30px;
}
.AZ-product-page .specifications ul {
  margin-right: 20px;
  margin-bottom: 20px;
}
.AZ-product-page .specifications ul li {
  font-size: 16px;
  color: #333333;
  
  list-style-type: disc;
  padding: 5px 0;
}
.AZ-product-page .specifications .AZ-section-text {
  margin-bottom: 20px;
}
.AZ-product-page .product-id span {
  font-size: 14px;
  color: #333333;
  
}
.AZ-product-page .product-category {
  font-size: 14px;
  color: #333333;
  
}
.AZ-product-page .product-share {
  font-size: 16px;
  color: #62696c;
}

.fixed-box-product {
  position: fixed;
  background: #fff;
  padding: 10px;
  bottom: 0;
  width: 100%;
  left: 0;
  box-shadow: 0 0 9px rgba(0, 0, 0, 0.12);
  right: 0;
  z-index: 1;
}
.fixed-box-product .product-img {
  width: 80px;
}
.fixed-box-product .product-img::after {
  padding-bottom: 100%;
}
.fixed-box-product .product-img img {
  max-height: 100%;
  max-width: 100%;
}
.fixed-box-product .product-title {
  font-size: 16px;
  color: #242424;
  
  margin-bottom: 5px;
}
.fixed-box-product .stars {
  font-size: 20px;
  color: rgb(255, 204, 0);
}
.fixed-box-product .product-price {
  font-size: 18px;
  color: #435fcb;
  
}

.gallery-container {
  width: 100%;
}
.gallery-container .swiper-container {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.gallery-container .swiper-container .gallery-img {
  width: 100%;
  border-radius: 16px;
}
.gallery-container .swiper-container .gallery-img::after {
  padding-bottom: 100%;
}
.gallery-container .swiper-container .gallery-img img {
  max-height: 100%;
  max-width: 100%;
}
.gallery-container .swiper-container .thumbnail-img {
  width: 100%;
}
.gallery-container .swiper-container .thumbnail-img::after {
  padding-bottom: 100%;
}
.gallery-container .swiper-container .thumbnail-img img {
  max-height: 100%;
  max-width: 100%;
}
.gallery-container .slider-thumbnail {
  position: relative;
  width: 90%;
  margin: auto;
}
.gallery-container .slider-thumbnail .swiper-wrapper .swiper-slide {
  opacity: 0.5;
  overflow: hidden;
  cursor: pointer;
}
.gallery-container
  .slider-thumbnail
  .swiper-wrapper
  .swiper-slide.swiper-slide-thumb-active {
  opacity: 1;
}

.gallery-nav {
  position: absolute;
  top: 50%;
  width: 100%;
}
.gallery-nav .swiper-button-next,
.gallery-nav .swiper-button-prev {
  width: 35px;
  height: 35px;
  background: #435fcb;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
}
.gallery-nav .swiper-button-next::after,
.gallery-nav .swiper-button-prev::after {
  color: #ffffff;
  font-size: 15px;
}

.AZ-tabs-wrapper .tabs li {
  padding: 0 !important;
}
.AZ-tabs-wrapper .tabs .tab-link {
  border-radius: 23px;
  font-size: 16px;
  color: #000000;
  
  padding: 20px;
  position: relative;
}
.AZ-tabs-wrapper .tabs .tab-link::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  background: #435fcb;
  height: 2px;
  transition: all 0.2s linear;
}
.AZ-tabs-wrapper .tabs .tab-link:hover::after {
  width: 100%;
}
.AZ-tabs-wrapper .tabs .active .tab-link::after {
  width: 100%;
}

.scoring .rating > input {
  display: none;
}
.scoring .rating > label:before {
  font-size: 25px;
  font-family: "icomoon";
  display: inline-block;
  content: "\e90b";
}
.scoring .rating > .half:before {
  content: "\e90b";
  position: absolute;
}
.scoring .rating > label {
  color: #b7b7b7;
  float: right;
}
.scoring .rating > input:checked ~ label,
.scoring .rating:not(:checked) > label:hover,
.scoring .rating:not(:checked) > label:hover ~ label {
  color: #ffd700;
}
.scoring .rating > input:checked + label:hover,
.scoring .rating > input:checked ~ label:hover,
.scoring .rating > label:hover ~ input:checked ~ label,
.scoring .rating > input:checked ~ label:hover ~ label {
  color: #ffed85;
}


.js-quantity {
    border-radius: 10px;
    border: 1px solid #E3E2E2;
    background: #FFF;
    height: 45px;
    width: 100px;
}
.js-quantity .change__qty__input{
    border: none;
    margin: 0px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    
    font-size: 16px;
    width: 33%;
    /* border-radius: 4px; */
    background: transparent;
    text-align: center;
}
.js-quantity .col-auto{
    display: flex;
    align-items: center;
    
} 
.js-quantity .plus_btn , 
.js-quantity .minus_btn{ 
    border: none;
    cursor: pointer;
    transition: all .3s linear;
    width: 33%;
    height: 100%;
    background: transparent;
    font-size: 20px;
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.AZ-cart-page{
    padding: 50px 0;
}
.AZ-cart-page .cart-item-img{
    width: 100px;
}
.AZ-cart-page .cart-item-img img{
    max-width: 100%;
    max-height: 100%;
}
.AZ-cart-page .cart-item-img:after{
    padding-bottom: 100%;
}
.AZ-cart-page .cart-item-name{
    font-size: 14px;
    color: #242424;
    
    margin-bottom: 10px;
}
.AZ-cart-page .js-quantity {
    height: 35px;
}
.AZ-cart-page .cart-item-price {
    font-size: 14px;
    
    color: #435fcb;
}
.AZ-cart-page .cart-item{
    padding: 8px;
    background: #f5f5f5;
    margin-bottom: 5px;
}
.AZ-panel-page .dash_auth_thumb {
    width: 80px;
    height: 80px;
}
.AZ-panel-page .dash_auth_thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.AZ-panel-page .dahs_navbar li a i{
    font-size: 20px;
}
.AZ-header-fixed{
    position: fixed;
    width: 100%;
    top: 0;
    transform: translateY(-100%);
    z-index: -1;
}
.AZ-header-fixed .nav-icon {
    display: flex!important;
}
.AZ-header-fixed .navbar{
    padding: 5px 0!important;
}
.AZ-header-fixed.is-sticky{
    animation: show .5s ease-in forwards;
    z-index: 11;
}
@keyframes show {
    0%{
        transform: translateY(-100%);

    }
    100%{
        transform: translateY(0);
    }
}

































@media screen and (max-width: 991px) {
    .AZ-header {
        padding: 0!important;
        position: sticky;
        top: 0;
        left: 0;
        right: 0;
        z-index: 100;
    }
    .AZ-header.is-sticky {
        /* position: sticky;
        top: 0;
        left: 0;
        right: 0; */

        /* animation: show .5s ease-in forwards;
        z-index: 100; */

        /* z-index: 11; */
    }
    /* @keyframes show {
        0%{
            transform: translateY(-100%);
    
        }
        100%{
            transform: translateY(0);
        }
    } */
  .w-md-100 {
    width: 100%;
  }
  .AZ-header .navbar {
    display: none;
  }
  .AZ-footer .footer-brand img {
    width: 50px;
  }
  .AZ-product-card {
    padding: 10px;
  }
  .AZ-product-card .buy-btn {
    bottom: 0;
    width: auto;
    padding: 10px 20px 10px 15px;
    font-size: 20px;
  }
  .AZ-product-card .buy-btn p {
    display: none;
  }
  .AZ-product-card .buy-btn span {
    position: unset;
    transform: unset;
  }
  .AZ-product-card .product-card-links {
    left: 10px;
    border-radius: 50%;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
  }
  .AZ-post-page .post-next .post-nav-text,
  .AZ-post-page .post-prev .post-nav-text {
    display: none;
  }
  .AZ-title-wrapper {
    padding: 5px;
    gap: 10px;
  }
  .AZ-title-wrapper .section-title {
    font-size: 16px;
    
  }
  .box-wrapper {
    border: none;
    padding: 0;
    background-color: transparent;
    border-radius: 0;
    box-shadow: 0;
  }
  .AZ-header .search-nav {
    background: #ebeffa;
    width: 100%;
    min-width: 100%;
    border-radius: 0;
    height: 60px;
  }
  .AZ-header .tabs {
    background: #f5f5f5;
  }
  .AZ-header .tabs li {
    width: 50%;
  }
  .AZ-header .tabs .tab-link {
    width: 100%;
    border-radius: 0;
    font-size: 14px;
    padding: 10px;
  }
  .AZ-header .tabs .tab-link.active {
    background: #e3e3e3;
  }
  .AZ-header .tabs .tab-link::after {
    top: unset;
    bottom: 0;
  }
  .AZ-header .nav-item {
    border-bottom: 1px solid rgb(228, 228, 228);
  }
  .AZ-header .nav-link {
    padding: 10px;
  }
  .AZ-product-card_horizontal .product-card-img {
    min-width: 40%;
    width: 40%;
  }
  .AZ-slider-section .slider-title {
    font-size: 22px;
  }
}
@media screen and (max-width: 767px) {
  .AZ-product-card {
    padding: 10px;
  }
  .AZ-product-card .buy-btn {
    padding: 5px 18px 5px 10px;
    font-size: 14px;
  }
  .AZ-product-card .buy-btn span {
    font-size: 14px;
  }
  .AZ-product-card .product-card-links {
    width: 30px;
    height: 30px;
  }
  .AZ-product-card .product-card-links a {
    font-size: 16px;
  }
  .AZ-product-card .discount-tag {
    font-size: 10px;
  }
  .AZ-product-card .product-card-header {
    border-radius: 15px;
  }
  .AZ-category-section .category-title {
    bottom: 10px;
    font-size: 10px;
    border-radius: 20px;
    padding: 5px;
  }
  .AZ-slider-section .slider-title {
    font-size: 16px;
    margin-bottom: 10px;
  }
    .AZ-blog-section .AZ-blog-card .blog-card-title {
            font-size: 14px;
    }
    .AZ-blog-section .AZ-blog-card .blog-card-body {
        padding: 15px;
        gap: 5px;
    }
    .AZ-blog-section .AZ-blog-card .read-more-btn {
            font-size: 13px;
    }
}

.section-title {
  width: max-content;
  white-space: nowrap;
}

.price{
  background-color: unset !important;
}