.text-blue {
  color: #3a6b48;
}

.text-green {
  color: #356342;
}

.text-red {
  color: #FF0060;
}

.text-yellow {
  color: #F7C04A;
}

.text-gray {
  color: #61677A;
}

.bg-blue {
  background-color: #3a6b48;
}

.bg-green {
  background-color: #356342;
}

.bg-red {
  background-color: #FF0060;
}

.bg-yellow {
  background-color: #F7C04A;
}

.bg-gray {
  background-color: #61677A;
}

@font-face {
  font-family: "IRANSans";
  font-weight: 500;
  src: url("./fonts/ttf/IRANSansWeb(FaNum).ttf");
  /* IE9 Compat Modes */
  src: url("./fonts/eot/IRANSansWeb(FaNum).eot") format("embedded-opentype"), url("./fonts/woff2/IRANSansWeb(FaNum).woff2") format("woff2"), url("./fonts/woff/IRANSansWeb(FaNum).woff") format("woff");
  /* Safari, Android, iOS */
}
@font-face {
  font-family: "IRANSans";
  font-weight: bold;
  src: url("./fonts/ttf/IRANSansWeb(FaNum)_Bold.ttf");
  /* IE9 Compat Modes */
  src: url("./fonts/eot/IRANSansWeb(FaNum)_Bold.eot") format("embedded-opentype"), url("./fonts/woff2/IRANSansWeb(FaNum)_Bold.woff2") format("woff2"), url("./fonts/woff/IRANSansWeb(FaNum)_Bold.woff") format("woff");
  /* Safari, Android, iOS */
}
@font-face {
  font-family: "IRANSans";
  font-weight: 400;
  src: url("./fonts/ttf/IRANSansWeb(FaNum)_Light.ttf");
  /* IE9 Compat Modes */
  src: url("./fonts/eot/IRANSansWeb(FaNum)_Light.eot") format("embedded-opentype"), url("./fonts/woff2/IRANSansWeb(FaNum)_Light.woff2") format("woff2"), url("./fonts/woff/IRANSansWeb(FaNum)_Light.woff") format("woff");
  /* Safari, Android, iOS */
}
@font-face {
  font-family: "IRANSans";
  font-weight: 600;
  src: url("./fonts/ttf/IRANSansWeb(FaNum)_Medium.ttf");
  /* IE9 Compat Modes */
  src: url("./fonts/eot/IRANSansWeb(FaNum)_Medium.eot") format("embedded-opentype"), url("./fonts/woff2/IRANSansWeb(FaNum)_Medium.woff2") format("woff2"), url("./fonts/woff/IRANSansWeb(FaNum)_Medium.woff") format("woff");
  /* Safari, Android, iOS */
}
body,
html {
  padding: 0;
  margin: 0;
  font-family: "IRANSans";
  font-weight: 500;
  direction: rtl;
  text-align: right;
  font-size: 16px;
}

* {
  box-sizing: border-box;
  outline: 0;
}

a:hover {
  text-decoration: none;
  color: inherit;
}

a {
  color: inherit;
}

input,
textarea {
  background-color: transparent;
  border: none;
}

button {
  background: none;
  border: none;
}

button,
a {
  transition: 0.3s;
  outline: 0 !important;
}

button:focus {
  outline: 0 !important;
}

button[disabled]:hover {
  box-shadow: none !important;
  transform: unset !important;
}

input,
textarea {
  outline: none !important;
}

.font-bold {
  font-weight: bold;
}

.text-one-line {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.text-xs {
  font-size: 0.6em;
}

.button-primary {
  background-color: #3a6b48;
  color: #ffffff;
  display: inline-flex;
  justify-content: center;
  padding: 10px 25px;
  border-radius: 5px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  min-width: 150px;
}
.button-primary:hover {
  background-color: #F7C04A;
}

.input-holder label {
  display: block;
  margin-bottom: 8px;
}
.input-holder input,
.input-holder textarea {
  width: 100%;
  border: 1px solid rgba(97, 103, 122, 0.2);
  border-radius: 10px;
  padding: 10px;
  resize: none;
}
.input-holder .err {
  font-size: 0.9em;
  color: #FF0060;
  padding-top: 2px;
}
.input-holder .err:empty {
  padding-top: 0;
}

.section .section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 5px;
  border-bottom: 3px solid rgba(63, 73, 127, 0.15);
  padding-bottom: 5px;
  position: relative;
  margin-bottom: 25px;
}
.section .section-header .section-title {
  color: #3a6b48;
}
.section .section-header::after {
  content: "";
  position: absolute;
  background-color: #3a6b48;
  width: 200px;
  height: 3px;
  right: 0;
  bottom: -3px;
}
.section .section-header.green .section-title {
  color: #356342;
}
.section .section-header.green::after {
  content: "";
  position: absolute;
  background-color: #356342;
  width: 200px;
  height: 3px;
  right: 0;
  bottom: -3px;
}

.slider .arrows {
  display: flex;
  gap: 5px;
}
.slider .arrows .arrow {
  height: 35px;
  width: 35px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px;
  color: #ffffff;
}
.slider .arrows .arrow:hover {
  background-color: #F7C04A;
}
.slider .arrows .arrow.swiper-button-disabled {
  opacity: 0.7;
}
@media only screen and (max-width: 575px) {
  .slider .arrows .arrow {
    height: 30px;
    width: 30px;
  }
}

header {
  padding-top: 80px;
  margin-bottom: 45px;
}
header #navigation {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 9;
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.1);
  border-bottom: 2px solid #ffffff;
  background-color: #356342;
  padding: 5px 0;
}
header .w-mobile-full {
  width: auto;
}
@media only screen and (max-width: 768px) {
  header .w-mobile-full {
    width: 100%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  header .w-mobile-full {
    width: 100%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  header .w-mobile-full {
    width: 100%;
  }
}
header .outline-menu {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 98;
  cursor: pointer;
  display: none;
}
header .navigation-links {
  display: flex;
  align-items: center;
  gap: 5px;
  position: static;
  color: #ffffff;
  transition: 0.3s;
}
header .navigation-links .navigation-link {
  padding: 10px;
}
header .navigation-links .navigation-link:hover {
  color: #F7C04A;
}
header .btn-user {
  background-color: rgba(255, 255, 255, 0.2);
  padding: 10px 15px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}
header .btn-user:hover {
  background-color: rgba(255, 255, 255, 0.4);
}
header .btn-user i {
  font-size: 20px;
}
header .btn-responsive-menu {
  background-color: rgba(255, 255, 255, 0.2);
  padding: 10px 14px;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s;
  position: relative;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  align-items: center;
}
header .btn-responsive-menu i {
  font-size: 20px;
}
header .btn-responsive-menu:hover {
  background-color: rgba(255, 255, 255, 0.4);
}
header .btn-cart {
  background-color: rgba(255, 255, 255, 0.2);
  padding: 10px 14px;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s;
  position: relative;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  position: relative;
}
header .btn-cart::after {
  content: "";
  width: 300px;
  height: 10px;
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
}
header .btn-cart .cart-icon {
  font-size: 20px;
  transform: translateY(2px);
  display: inline-block;
}
header .btn-cart .counter {
  position: absolute;
  height: 20px;
  width: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: #FF0060;
  color: #ffffff;
  font-size: 0.75em;
  line-height: 0;
  font-weight: bold;
  top: 4px;
  right: 4px;
}
header .btn-cart .cart-details {
  background-color: #ffffff;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: 285px;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
  border-radius: 5px;
  z-index: 2;
  transform: scaleY(0);
  transition: 0.3s ease-in-out;
  transform-origin: 100% 0;
}
header .btn-cart .cart-details .cart-items {
  padding: 5px 8px;
  max-height: 230px;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: var(--thumbBG) var(--scrollbarBG);
}
header .btn-cart .cart-details .cart-items::-webkit-scrollbar {
  width: 5px;
  border-radius: 6px;
  background-color: rgba(97, 103, 122, 0.2);
}
header .btn-cart .cart-details .cart-items::-webkit-scrollbar-thumb {
  border-radius: 6px;
  border: 3px solid var(--scrollbarBG);
  background-color: rgba(97, 103, 122, 0.5);
}
header .btn-cart .cart-details .cart-items .item {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 10px 0;
}
header .btn-cart .cart-details .cart-items .item:last-child {
  border-bottom: none;
}
header .btn-cart .cart-details .cart-items .item .img {
  width: 85px;
  height: 85px;
  min-width: 85px;
  min-height: 85px;
  border: 1px solid rgba(0, 0, 0, 0.25);
  border-radius: 5px;
  padding: 2px;
}
header .btn-cart .cart-details .cart-items .item .img img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
header .btn-cart .cart-details .cart-items .item .item-name {
  overflow: hidden;
  font-weight: bold;
  font-size: 0.9em;
  position: relative;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  display: -webkit-box;
  width: 100%;
}
header .btn-cart .cart-details .cart-items .item .btn-delete-item {
  background-color: rgba(97, 103, 122, 0.15);
  color: rgba(97, 103, 122, 0.5);
  padding: 2px 6px;
  border-radius: 5px;
  font-size: 0.95em;
}
header .btn-cart .cart-details .cart-items .item .btn-delete-item:hover {
  color: #FF0060;
}
header .btn-cart .cart-details .cart-items .item .btn-delete-item i {
  transform: translateY(2px);
}
header .btn-cart .cart-details .cart-items .item .price {
  font-size: 0.85em;
}
header .btn-cart .cart-details .total {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 5px;
  padding: 15px 0;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.05);
}
header .btn-cart .cart-details .total .btn-checkout {
  background-color: #3a6b48;
  padding: 8px 25px;
  border-radius: 25px;
  color: #ffffff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}
header .btn-cart .cart-details .total .btn-checkout:hover {
  background-color: #F7C04A;
}
header .btn-cart:hover {
  background-color: rgba(255, 255, 255, 0.4);
}
header .btn-cart:hover::after {
  display: block;
}
header .btn-cart:hover .cart-details {
  transform: scaleY(1);
}
header .btn-categories {
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
}
header .btn-categories::after {
  content: "";
  width: 100%;
  height: 10px;
  position: absolute;
  top: 100%;
  left: 0;
}
header .btn-categories .btn-header {
  padding: 10px;
}
header .btn-categories .btn-header:hover {
  color: #F7C04A;
}
header .btn-categories .arrow {
  transition: 0.3s;
}
header .btn-categories .categories-items {
  position: absolute;
  background-color: #ffffff;
  top: calc(100% + 5px);
  right: 0;
  width: calc(100% + 200px);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  border-radius: 5px;
  z-index: 99;
  transform-origin: 100% 0;
  display: none;
}
header .btn-categories .categories-items .item {
  color: #61677A;
}
header .btn-categories .categories-items .item .link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px;
}
header .btn-categories .categories-items .item .link i {
  width: 25px;
  text-align: center;
}
header .btn-categories .categories-items .item .link:hover {
  color: #3a6b48;
  background-color: #F5F5F8;
}
header .btn-categories .categories-items .item.active .link {
  background-color: #F5F5F8;
}
@media only screen and (max-width: 768px) {
  header .btn-categories .categories-items .item.active .link {
    background-color: transparent;
  }
}
header .btn-categories .dropdown {
  position: static;
}
header .btn-categories .dropdown .link {
  position: relative;
}
header .btn-categories .dropdown .link .arrow-icon {
  position: absolute;
  left: 10px;
  top: 14px;
  transform: rotate(90deg);
  font-size: 0.8em;
  transition: 0.3s;
  line-height: 0;
}
header .btn-categories .dropdown .dropdown-items {
  font-size: 0.95em;
  padding: 10px;
  position: absolute;
  right: calc(100% - 2px);
  top: 0;
  background-color: #F5F5F8;
  box-shadow: -5px 0 10px rgba(0, 0, 0, 0.15);
  width: 100%;
  min-height: 100%;
  overflow: hidden;
  border-radius: 5px;
  display: none;
}
header .btn-categories .dropdown .dropdown-items .link {
  padding: 5px !important;
  gap: 5px;
  opacity: 0.9;
}
header .btn-categories .dropdown:hover .dropdown-items {
  transform: scaleX(1);
}
header .btn-categories.active .arrow {
  transform: rotate(180deg);
}
header .btn-close {
  font-size: 22px;
  color: #61677A;
  transition: 0.3s;
}
header .btn-close:hover {
  color: #FF0060;
}
header .navigation {
  border-bottom: 1px solid #D8D9DA;
  padding: 10px 0;
}
header .search-input {
  border: 1px solid rgba(97, 103, 122, 0.2);
  background-color: #F7F7F8;
  color: #61677A;
  padding: 8px 10px;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .search-input button {
  width: 30px;
  min-width: 30px;
}
header .search-input button i {
  color: #61677A;
  font-size: 20px;
  transform: translateY(2px);
}
header .search-input input {
  max-width: 100%;
  width: 200px;
}
@media only screen and (max-width: 768px) {
  header {
    padding-top: 65px;
    margin-bottom: 35px;
  }
  header #navigation {
    padding: 10px 0;
  }
  header .navigation-links {
    display: block;
    gap: 25px;
    position: fixed;
    width: 275px;
    height: 100%;
    background-color: #ffffff;
    box-shadow: -5px 0 12px rgba(0, 0, 0, 0.1);
    top: 0;
    right: -100%;
    z-index: 99;
    color: #3a6b48;
    padding: 15px;
  }
  header .navigation-links .navigation-link {
    display: block;
    padding: 10px 5px;
    border-bottom: 1px solid rgba(63, 73, 127, 0.2);
  }
  header .btn-responsive-menu {
    display: flex !important;
  }
  header #navigation.active .outline-menu {
    display: block;
  }
  header #navigation.active .navigation-links {
    right: 0;
  }
  header .btn-categories .arrow {
    transform: rotate(90deg);
  }
  header .btn-categories .btn-header {
    border-bottom: 1px solid rgba(63, 73, 127, 0.2);
  }
  header .btn-categories .categories-items {
    position: static;
    width: 100%;
    box-shadow: none;
    font-size: 0.95em;
  }
  header .btn-categories .categories-items .item {
    border-bottom: 1px solid rgba(63, 73, 127, 0.2);
  }
  header .btn-categories .categories-items .item .link:hover {
    color: #F7C04A;
    background-color: transparent;
  }
  header .btn-categories .categories-items .item.active .link {
    background-color: transparent;
  }
  header .btn-categories .dropdown.active .arrow-icon {
    transform: rotate(0);
  }
  header .btn-categories .dropdown .dropdown-items {
    position: static;
    background-color: transparent;
    box-shadow: none;
    padding: 0 15px 0 0;
  }
  header .btn-categories .dropdown .dropdown-items .link:last-child {
    margin-bottom: 5px;
  }
  header .btn-categories.active .arrow {
    transform: rotate(0);
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  header {
    padding-top: 65px;
  }
  header #navigation {
    padding: 10px 0;
  }
  header .navigation-links {
    display: block;
    gap: 25px;
    position: fixed;
    width: 300px;
    height: 100%;
    background-color: #ffffff;
    box-shadow: -5px 0 12px rgba(0, 0, 0, 0.1);
    top: 0;
    right: -100%;
    z-index: 99;
    color: #3a6b48;
    padding: 15px;
  }
  header .navigation-links .navigation-link {
    display: block;
    padding: 10px 5px;
    border-bottom: 1px solid rgba(63, 73, 127, 0.2);
  }
  header .btn-responsive-menu {
    display: flex !important;
  }
  header #navigation.active .outline-menu {
    display: block;
  }
  header #navigation.active .navigation-links {
    right: 0;
  }
  header .btn-categories .arrow {
    transform: rotate(90deg);
  }
  header .btn-categories .btn-header {
    border-bottom: 1px solid rgba(63, 73, 127, 0.2);
  }
  header .btn-categories .categories-items {
    position: static;
    width: 100%;
    box-shadow: none;
    font-size: 0.95em;
  }
  header .btn-categories .categories-items .item {
    border-bottom: 1px solid rgba(63, 73, 127, 0.2);
  }
  header .btn-categories .categories-items .item .link:hover {
    color: #F7C04A;
    background-color: transparent;
  }
  header .btn-categories .categories-items .item.active .link {
    background-color: transparent;
  }
  header .btn-categories .dropdown.active .arrow-icon {
    transform: rotate(0);
  }
  header .btn-categories .dropdown .dropdown-items {
    position: static;
    background-color: transparent;
    box-shadow: none;
    padding: 0 15px 0 0;
  }
  header .btn-categories .dropdown .dropdown-items .link:last-child {
    margin-bottom: 5px;
  }
  header .btn-categories.active .arrow {
    transform: rotate(0);
  }
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  header {
    padding-top: 65px;
  }
  header #navigation {
    padding: 10px 0;
  }
  header .navigation-links {
    display: block;
    gap: 25px;
    position: fixed;
    width: 300px;
    height: 100%;
    background-color: #ffffff;
    box-shadow: -5px 0 12px rgba(0, 0, 0, 0.1);
    top: 0;
    right: -100%;
    z-index: 99;
    color: #3a6b48;
    padding: 15px;
  }
  header .navigation-links .navigation-link {
    display: block;
    padding: 10px 5px;
    border-bottom: 1px solid rgba(63, 73, 127, 0.2);
  }
  header .btn-responsive-menu {
    display: flex !important;
  }
  header #navigation.active .outline-menu {
    display: block;
  }
  header #navigation.active .navigation-links {
    right: 0;
  }
  header .btn-categories .arrow {
    transform: rotate(90deg);
  }
  header .btn-categories .btn-header {
    border-bottom: 1px solid rgba(63, 73, 127, 0.2);
  }
  header .btn-categories .categories-items {
    position: static;
    width: 100%;
    box-shadow: none;
    font-size: 0.95em;
  }
  header .btn-categories .categories-items .item {
    border-bottom: 1px solid rgba(63, 73, 127, 0.2);
  }
  header .btn-categories .categories-items .item .link:hover {
    color: #F7C04A;
    background-color: transparent;
  }
  header .btn-categories .categories-items .item.active .link {
    background-color: transparent;
  }
  header .btn-categories .dropdown.active .arrow-icon {
    transform: rotate(0);
  }
  header .btn-categories .dropdown .dropdown-items {
    position: static;
    background-color: transparent;
    box-shadow: none;
    padding: 0 15px 0 0;
  }
  header .btn-categories .dropdown .dropdown-items .link:last-child {
    margin-bottom: 5px;
  }
  header .btn-categories.active .arrow {
    transform: rotate(0);
  }
}

footer {
  background-color: #F5F5F5;
  padding-top: 45px;
}
footer .container {
  position: relative;
}
footer .links-list {
  margin-bottom: 25px;
}
footer .links-list .title {
  margin-bottom: 10px;
}
footer .links-list ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
footer .links-list li {
  margin-bottom: 8px;
}
footer .links-list li a:hover {
  color: #3a6b48;
}
footer .links-list P,
footer .links-list ul {
  font-size: 1.05em;
  color: rgba(0, 0, 0, 0.8);
  text-align: justify;
}
footer .contact-us {
  background-color: #ffffff;
  border-radius: 15px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  padding: 0 20px 20px 20px;
  margin-bottom: 25px;
}
footer .contact-us img {
  width: 100%;
  max-width: 300px;
  margin: auto;
  display: block;
}
footer .contact-us .title {
  margin-bottom: 16px;
}
footer .contact-us .social-networks {
  display: flex;
  justify-content: center;
  gap: 10px;
}
footer .contact-us .social-networks .social-network {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 1px solid #3a6b48;
  padding: 2px;
  color: #3a6b48;
  font-size: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
footer .contact-us .social-networks .social-network:hover {
  background-color: #3a6b48;
  color: #ffffff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}
footer .copyright {
  background-color: rgba(0, 0, 0, 0.05);
  padding: 15px 0;
  text-align: center;
}

h1 {
  font-weight: bold;
  font-size: 24px;
  line-height: 40px;
}

h2 {
  font-weight: bold;
  font-size: 22px;
  line-height: 38px;
}

h3 {
  font-weight: bold;
  font-size: 20px;
  line-height: 36px;
}

h4 {
  font-weight: bold;
  font-size: 18px;
  line-height: 34px;
}

h5 {
  font-weight: bold;
  font-size: 16px;
  line-height: 32px;
}

@media only screen and (max-width: 575px) {
  body {
    font-size: 14px;
  }
  h1 {
    font-size: 22px;
  }
  h2 {
    font-size: 20px;
  }
  h3 {
    font-size: 18px;
  }
  h4 {
    font-size: 16px;
  }
  h5 {
    font-size: 14px;
  }
}
.header-slider {
  margin-bottom: 35px;
  margin-top: -45px;
}
.header-slider img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.header-slider .swiper .swiper-pagination {
  bottom: 20px !important;
  top: unset !important;
}
.header-slider .swiper .swiper-pagination-bullet {
  background-color: #ffffff;
  width: 10px;
  height: 10px;
}
.header-slider .swiper .swiper-pagination-bullet-active {
  width: 20px;
  border-radius: 25px;
}
@media only screen and (max-width: 768px) {
  .header-slider {
    margin-top: 0px;
  }
}
@media only screen and (max-width: 575px) {
  .header-slider .swiper .swiper-pagination {
    bottom: 8px !important;
  }
  .header-slider .swiper .swiper-pagination-bullet {
    background-color: #ffffff;
    width: 8px;
    height: 8px;
  }
  .header-slider .swiper .swiper-pagination-bullet-active {
    width: 20px;
    border-radius: 25px;
  }
}

.services {
  margin-bottom: 20px;
}
.services .service {
  margin-bottom: 25px;
}
.services .service-icon {
  width: 125px;
  height: 125px;
  padding: 25px;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  display: block;
  margin: auto;
  margin-bottom: 16px;
  background-color: #356342;
}
.services .service-icon svg {
  width: 100%;
  height: 100%;
  fill: #ffffff;
}
@media only screen and (max-width: 575px) {
  .services {
    margin-bottom: 10px;
  }
  .services .service-icon {
    width: 75px;
    height: 75px;
    padding: 20px;
  }
}

.categories {
  background-color: #356342;
  padding: 30px 0;
  margin-bottom: 45px;
}
    .categories .categories-items {
        display: flex;
        gap: 5px;
        justify-content: space-around;
        flex-wrap: wrap;
    }
.categories .categories-items .category {
  text-align: center;
  color: #ffffff;
}
.categories .categories-items .category .icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  padding: 20px;
  margin: 10px;
  transition: 0.3s;
  background-color: rgba(0, 0, 0, 0.2);
  transition: 0.3s;
}
.categories .categories-items .category .icon svg {
  height: 100%;
  width: 100%;
  fill: #ffffff;
}
.categories .categories-items .category .title {

  transition: 0.3s;
}
.categories .categories-items .category:hover .icon {
  background-color: #F7C04A;
}
.categories .categories-items .category:hover .title {
  color: #F7C04A;
}
@media only screen and (max-width: 575px) {
  .categories {
    margin-bottom: 35px;
  }
  .categories .categories-items .category .icon {
    width: 80px;
    height: 80px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .categories .categories-items .category .icon {
    width: 120px;
    height: 120px;
    padding: 25px;
  }
}

.products-slider {
  margin-bottom: 45px;
}
.products-slider .product {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  margin: 10px;
  padding: 10px;
  display: block;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  position: relative;
}
.products-slider .product .img {
  margin-bottom: 10px;
}
.products-slider .product .img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.products-slider .product .title {
  margin-bottom: 24px;
}
.products-slider .product .discount {
  background-color: #FF0060;
  font-size: 0.8em;
  padding: 4px 10px;
  border-radius: 25px;
  color: #ffffff;
  font-weight: bold;
  position: absolute;
  top: 10px;
  left: 10px;
}
.products-slider .product .price {
  font-size: 0.9em;
  position: relative;
  padding-top: 22px;
}
.products-slider .product .price .prev-price {
  text-decoration: line-through;
  position: absolute;
  top: 0;
}
.products-slider .product .price .current-price {
  font-size: 1.3em;
  font-weight: bold;
}
.products-slider .product .add-to-cart {
  height: 38px;
  width: 38px;
  padding: 5px;
  border-radius: 50%;
  background-color: #356342;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  font-size: 18px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}
.products-slider .product .add-to-cart:hover {
  background-color: #F7C04A;
}
.products-slider .product:hover {
  box-shadow: 0 0 10px 3px rgba(63, 73, 127, 0.1);
  color: #3a6b48;
}
.products-slider .product:hover .add-to-cart {
  background-color: #F7C04A;
}
@media only screen and (max-width: 575px) {
  .products-slider {
    margin-bottom: 35px;
  }
  .products-slider .product {
    margin: 5px;
  }
  .products-slider .product .title {
    font-size: 14px !important;
    margin-bottom: 14px;
  }
  .products-slider .product .discount {
    font-size: 0.8em;
    padding: 2px 8px;
    top: 5px;
    left: 5px;
  }
  .products-slider .product .price {
    padding-top: 18px;
    font-size: 0.8em;
  }
  .products-slider .product .add-to-cart {
    display: none;
  }
  .products-slider .product:hover {
    box-shadow: 0 0 5px 3px rgba(63, 73, 127, 0.1);
  }
}

.projects-slider {
  margin-bottom: 35px;
}
.projects-slider .project {
  position: relative;
  display: block;
}
.projects-slider .project .img {
  height: 300px;
  overflow: hidden;
  margin-bottom: 16px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}
.projects-slider .project .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.projects-slider .project .description {
  position: absolute;
  bottom: 20px;
  padding: 8px 20px;
  left: 0;
  z-index: 9;
  background-color: #F7C04A;
  font-weight: bold;
  border-radius: 0 0 10px 0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}
@media only screen and (max-width: 575px) {
  .projects-slider {
    margin-bottom: 25px;
  }
}

.banner {
  margin-bottom: 45px;
}
.banner a {
  display: block;
}
.banner img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}
@media only screen and (max-width: 575px) {
  .banner {
    margin-bottom: 35px;
  }
}

.blog-slider {
  margin-bottom: 45px;
}
.blog-slider .blog-item {
  margin-bottom: 5px;
}
.blog-slider .blog-item .img {
  height: 250px;
  overflow: hidden;
  margin-bottom: 16px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}
.blog-slider .blog-item .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.blog-slider .blog-item .title {
  margin-bottom: 10px;
}
.blog-slider .blog-item .description {
  min-height: 70px;
  text-align: justify;
  margin-bottom: 16px;
  font-size: 0.95em;
  opacity: 0.85;
  overflow: hidden;
  position: relative;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  display: -webkit-box;
}
.blog-slider .blog-item .date {
  color: #3a6b48;
}
.blog-slider .blog-item .view {
  background-color: #356342;
  color: #ffffff;
  border-radius: 25px;
  padding: 5px 25px;
  font-size: 0.9em;
}
.blog-slider .blog-item .view:hover {
  background-color: #F7C04A;
}
@media only screen and (max-width: 575px) {
  .blog-slider {
    margin-bottom: 35px;
  }
}

.brands {
  margin-bottom: 25px;
}
.brands .brand {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(0, 0, 0, 0.1);
  height: 100px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  margin-bottom: 25px;
}
.brands .brand img {
  -o-object-fit: cover;
     object-fit: cover;
  max-width: 100%;
  max-height: 100%;
}
.brands .brand:hover {
  box-shadow: 0 0 10px 3px rgba(63, 73, 127, 0.1);
}

.single-product {
  padding: 15px;
  border-radius: 10px;
  display: flex;
  gap: 16px;
  border: 1px solid rgba(97, 103, 122, 0.2);
}
.single-product .product-image {
  width: 350px;
  min-width: 350px;
}
.single-product .product-image .img-container {
  height: 350px;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  cursor: zoom-in;
}
.single-product .product-image .img-container img {
  width: 100% !important;
  height: 100% !important;
  -o-object-fit: cover;
     object-fit: cover;
}
.single-product .product-image .img-container .icon-zoom {
  position: absolute;
  top: 5px;
  right: 5px;
  z-index: 1;
  color: #3a6b48;
}
.single-product .product-image .small-images-slider {
  margin-bottom: 16px;
}
.single-product .product-image .small-images-slider .swiper-slide {
  width: 75px;
  height: 75px;
}
.single-product .product-image .small-images-slider img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 1px solid rgba(97, 103, 122, 0.2);
  border-radius: 5px;
  cursor: pointer;
}
.single-product .btn-share, .single-product .btn-love {
  background-color: rgba(97, 103, 122, 0.2);
  color: #61677A;
  height: 44px;
  width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  border-radius: 5px;
  cursor: pointer;
}
.single-product .btn-share:hover, .single-product .btn-love:hover {
  color: #3a6b48;
}
.single-product .btn-share {
  position: relative;
}
.single-product .btn-share::after {
  content: "";
  width: 100%;
  height: 10px;
  position: absolute;
  bottom: 100%;
  left: 0;
}
.single-product .btn-share .social-networks {
  position: absolute;
  background-color: #3a6b48;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  transform: scaleY(0);
  transition: 0.3s ease-in-out;
  transform-origin: 100% 100%;
  bottom: calc(100% + 5px);
  text-align: center;
  padding: 5px 0;
  border-radius: 5px;
  z-index: 9;
}
.single-product .btn-share .social-networks .social-network {
  padding: 5px;
  font-size: 20px;
  width: 100%;
  color: #ffffff;
}
.single-product .btn-share .social-networks .social-network:hover {
  color: #F7C04A;
}
.single-product .btn-share:hover .social-networks {
  transform: scaleY(1);
}
.single-product .details {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.single-product .details .select-input {
  background-color: rgba(97, 103, 122, 0.05);
  border: 1px solid rgba(97, 103, 122, 0.4);
  min-width: 150px;
  padding: 5px 10px;
  border-radius: 5px;
  cursor: pointer;
}
.single-product .details .colors {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}
.single-product .details .colors .color {
  border: 1px solid rgba(97, 103, 122, 0.4);
  background-color: rgba(97, 103, 122, 0.05);
  display: flex;
  gap: 8px;
  padding: 5px 8px;
  border-radius: 5px;
  align-items: center;
  font-size: 0.9em;
  cursor: pointer;
  transition: 0.3s;
}
.single-product .details .colors .color.active {
  border-color: #3a6b48;
}
.single-product .details .colors .color .circle {
  border: 1px solid rgba(97, 103, 122, 0.4);
  height: 20px;
  width: 20px;
  border-radius: 50%;
}
.single-product .details .price {
  font-size: 1.3em;
  font-weight: bold;
}
.single-product .details .update-date {
  font-size: 0.9em;
  color: #3a6b48;
}
.single-product .details .more-details {
  font-size: 0.9em;
}
.single-product .details .counter {
  background-color: rgba(97, 103, 122, 0.2);
  border-radius: 5px;
  display: flex;
}
.single-product .details .counter .value {
  padding: 10px 0;
  min-width: 22px;
  text-align: center;
}
.single-product .details .counter button {
  padding: 0 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #61677A;
}
.single-product .details .counter button:hover {
  color: #3a6b48;
}
@media only screen and (max-width: 768px) {
  .single-product {
    flex-direction: column;
  }
  .single-product .product-image {
    width: 100%;
    min-width: 100%;
  }
  .single-product .product-image .img-container {
    height: auto;
  }
  .single-product .product-image .small-images-slider .swiper-slide {
    width: 65px;
    height: 65px;
  }
  .single-product .details .colors .color .circle {
    height: 18px;
    width: 18px;
  }
  .single-product .btn-share, .single-product .btn-love {
    height: 35px;
    width: 35px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .single-product .product-image {
    width: 400px;
    min-width: 400px;
  }
  .single-product .product-image .img-container {
    height: 400px;
  }
}

.information-box {
  border: 1px solid rgba(97, 103, 122, 0.15);
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.15);
  margin-bottom: 25px;
  border-radius: 10px;
}
.information-box .information-navigation {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(97, 103, 122, 0.15);
  margin-bottom: 15px;
}
.information-box .information-navigation .navigation-item {
  width: 33%;
  text-align: center;
  padding: 20px 5px;
  position: relative;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}
.information-box .information-navigation .navigation-item:hover {
  color: #3a6b48;
}
.information-box .information-navigation .navigation-item:nth-child(n+2) {
  border-right: 1px solid rgba(97, 103, 122, 0.15);
}
.information-box .information-navigation .navigation-item::after {
  content: "";
  width: 50px;
  height: 5px;
  background-color: #3a6b48;
  position: absolute;
  left: calc(50% - 25px);
  bottom: -2px;
  border-radius: 10px;
  opacity: 0;
  transition: 0.3s;
}
.information-box .information-navigation .navigation-item.active {
  color: #3a6b48;
}
.information-box .information-navigation .navigation-item.active::after {
  opacity: 1;
}
.information-box .information-body {
  padding: 20px;
}
.information-box .information-body p {
  text-align: justify;
}
.information-box .information-body .body-item {
  display: none;
}
.information-box .information-body .body-item:nth-child(1) {
  display: block;
}
.information-box .flex-table {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 0;
}
.information-box .flex-table .flex-row {
  width: 100%;
  display: flex;
  background-color: rgba(83, 145, 101, 0.05);
  border-radius: 5px;
}
.information-box .flex-table .flex-row:nth-child(odd) {
  background-color: rgba(83, 145, 101, 0.1);
}
.information-box .flex-table .flex-row .col-key, .information-box .flex-table .flex-row .col-value {
  padding: 15px;
}
.information-box .flex-table .flex-row .col-key {
  min-width: 175px;
  max-width: 175px;
  font-weight: 600;
}
@media only screen and (max-width: 575px) {
  .information-box .flex-table .flex-row .col-key {
    min-width: 125px;
    max-width: 125px;
  }
}

.comments .comment {
  border: 1px solid rgba(97, 103, 122, 0.2);
  border-radius: 10px;
  padding: 15px;
  margin-bottom: 25px;
}
.comments .comment .user-info {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 10px;
}
.comments .comment .user-info .user-img {
  height: 60px;
  width: 60px;
  border-radius: 50%;
  overflow: hidden;
}
.comments .comment .user-info .user-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.comments .comment .user-info .user-name {
  font-weight: 600;
  margin-bottom: 2px;
}
.comments .comment .comment-date {
  font-style: italic;
  color: #61677A;
  font-size: 0.85em;
}
.comments .comment .comment-replay {
  padding: 20px 30px 0 0;
}
.comments .comment .likes {
  padding-top: 10px;
  display: flex;
  justify-content: end;
  gap: 5px;
}
.comments .comment .likes .like {
  background-color: rgba(83, 145, 101, 0.2);
  color: #356342;
  display: flex;
  justify-content: center;
  gap: 5px;
  padding: 8px;
  border-radius: 5px;
  line-height: 1em;
}
.comments .comment .likes .like:hover {
  background-color: #356342;
  color: #ffffff;
}
.comments .comment .likes .dislike {
  background-color: rgba(255, 0, 96, 0.2);
  color: #FF0060;
}
.comments .comment .likes .dislike:hover {
  background-color: #FF0060;
}
@media only screen and (max-width: 575px) {
  .comments .comment .user-info .user-img {
    height: 50px;
    width: 50px;
  }
}

.advantages .item, .disadvantages .item {
  display: flex;
  gap: 5px;
  align-items: center;
}
.advantages .item i, .disadvantages .item i {
  font-size: 0.9em;
}

.outside-box {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 98;
  cursor: pointer;
  display: none;
}
.outside-box.active {
  display: block;
}

.modal-box {
  z-index: 99;
  transition: 0.5s;
}

.filters {
  margin-bottom: 25px;
}
.filters .price-range {
  height: 6px;
  border: none !important;
  background-color: rgba(63, 73, 127, 0.2);
}
.filters .price-range .ui-slider-handle {
  border-radius: 50% !important;
  top: -6px !important;
  height: 16px !important;
  width: 16px !important;
}
.filters .price-range .ui-state-active {
  background-color: #ffffff;
  border: 1px solid #3a6b48;
}
.filters .price-range .ui-widget-header {
  background-color: #3a6b48;
}
.filters .search {
  border: 1px solid rgba(97, 103, 122, 0.2);
  background-color: #F7F7F8;
  border-radius: 10px;
  padding: 10px 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 5px;
}
.filters .search input {
  width: calc(100% - 30px);
  font-size: 0.9em;
}
.filters .search .btn-search {
  width: 30px;
  color: #61677A;
}
.filters .btn-filters, .filters .btn-sorts {
  border: 1px solid rgba(97, 103, 122, 0.2);
  background-color: #F7F7F8;
  border-radius: 10px;
  padding: 10px 25px;
  width: 50%;
  font-weight: 600;
}
.filters .btn-filters:hover, .filters .btn-sorts:hover {
  color: #3a6b48;
}
.filters .checkbox-filters .checkbox-filter {
  display: flex;
  justify-content: space-between;
  gap: 5px;
}
.filters .other-filters .filters-dropdowns {
  box-shadow: rgba(0, 0, 0, 0.07) 2px 2px 3px, rgba(0, 0, 0, 0.07) -2px -1px 2px;
  border-radius: 5px;
  padding: 0 10px;
  position: relative;
}
.filters .other-filters .filters-dropdowns .filters-dropdown {
  overflow: hidden;
  border-bottom: 1px solid rgba(97, 103, 122, 0.1);
  position: relative;
}
.filters .other-filters .filters-dropdowns .filters-dropdown:last-child {
  border-bottom: 0;
}
.filters .other-filters .filters-dropdowns .filters-dropdown::after {
  content: "";
  background-color: #ffffff;
  width: 100%;
  height: 10px;
  position: absolute;
  bottom: 0;
  left: 0;
}
.filters .other-filters .filters-dropdowns .filters-dropdown .header-filters {
  display: flex;
  gap: 5px;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0 15px 0;
  cursor: pointer;
  font-weight: 600;
}
.filters .other-filters .filters-dropdowns .filters-dropdown .header-filters .arrow {
  font-size: 0.9em;
  transition: 0.3s;
  line-height: 0;
  transform: rotate(90deg);
}
.filters .other-filters .filters-dropdowns .filters-dropdown.active .header-filters .arrow {
  transform: rotate(0deg);
}
.filters .other-filters .filters-dropdowns .filters-dropdown .checkbox-filters {
  padding: 5px 10px;
  display: none;
  max-height: 210px;
  overflow: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--thumbBG) var(--scrollbarBG);
}
.filters .other-filters .filters-dropdowns .filters-dropdown .checkbox-filters::-webkit-scrollbar {
  width: 5px;
  border-radius: 6px;
  background-color: rgba(97, 103, 122, 0.2);
}
.filters .other-filters .filters-dropdowns .filters-dropdown .checkbox-filters::-webkit-scrollbar-thumb {
  border-radius: 6px;
  border: 3px solid var(--scrollbarBG);
  background-color: rgba(97, 103, 122, 0.5);
}
.filters .other-filters .filters-dropdowns .filters-dropdown .checkbox-filters .checkbox-filter {
  padding: 5px 0;
  color: #61677A;
  font-size: 0.95em;
}
@media only screen and (max-width: 768px) {
  .filters .other-filters {
    position: fixed;
    background-color: #ffffff;
    box-shadow: 0 -5px 12px rgba(0, 0, 0, 0.1);
    bottom: -100%;
    left: 0;
    width: 100%;
    padding: 15px;
    border-radius: 15px 15px 0 0;
    max-height: calc(100% - 100px);
    overflow: hidden;
  }
  .filters .other-filters.active {
    bottom: 0;
  }
  .filters .other-filters .holder-filter {
    max-height: 450px;
    overflow: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--thumbBG) var(--scrollbarBG);
  }
  .filters .other-filters .holder-filter::-webkit-scrollbar {
    width: 5px;
    border-radius: 6px;
    background-color: rgba(97, 103, 122, 0.2);
  }
  .filters .other-filters .holder-filter::-webkit-scrollbar-thumb {
    border-radius: 6px;
    border: 3px solid var(--scrollbarBG);
    background-color: rgba(97, 103, 122, 0.5);
  }
  .filters .other-filters .filters-dropdowns {
    box-shadow: none;
    border-radius: 0;
    padding: 0;
  }
  .filters .other-filters .filters-dropdowns .filters-dropdown:last-child {
    border-bottom: 1px solid rgba(97, 103, 122, 0.1);
  }
}

.checkbox {
  cursor: pointer;
  display: flex;
  align-items: center;
  position: relative;
}
.checkbox__input {
  position: absolute;
  width: 1.375em;
  height: 1.375em;
  opacity: 0;
  cursor: pointer;
}
.checkbox__input:checked + .checkbox__icon .tick {
  stroke-dashoffset: 0;
}
.checkbox__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  overflow: visible;
}
.checkbox__icon .tick {
  stroke-dasharray: 20px;
  stroke-dashoffset: 20px;
  transition: stroke-dashoffset 0.2s ease-out;
}
.checkbox__label {
  margin-right: 0.5em;
}

.sort-items {
  display: flex;
  gap: 0 15px;
  border: 1px solid rgba(97, 103, 122, 0.2);
  background-color: #F7F7F8;
  padding: 12px 15px;
  border-radius: 10px;
  margin-bottom: 25px;
  font-size: 0.9em;
}
.sort-items .sort-item {
  position: relative;
  display: inline-block;
  color: #61677A;
}
.sort-items .sort-item::after {
  content: " ";
  position: absolute;
  top: calc(100% + 9px);
  border-radius: 10px;
  left: 25%;
  height: 4px;
  width: 50%;
  background-color: #3a6b48;
  opacity: 0;
  transition: 0.3s;
}
.sort-items .sort-item:hover {
  color: #3a6b48;
}
.sort-items .sort-item.active {
  color: #3a6b48;
}
.sort-items .sort-item.active::after {
  opacity: 1;
}
@media only screen and (max-width: 768px) {
  .sort-items {
    position: fixed;
    background-color: #ffffff;
    box-shadow: 0 -5px 12px rgba(0, 0, 0, 0.1);
    bottom: -100%;
    left: 0;
    width: 100%;
    padding: 15px;
    border-radius: 15px 15px 0 0;
    max-height: calc(100% - 100px);
    overflow: hidden;
    margin: 0;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    border: 0;
    font-size: 1em;
  }
  .sort-items.active {
    bottom: 0;
  }
  .sort-items .sort-item {
    padding-bottom: 8px;
    font-weight: 600;
  }
  .sort-items .sort-item::after {
    display: none;
  }
}

.products {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 35px;
}
.products .product {
  width: calc(33.3333333333% - 10px);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  padding: 10px;
  display: block;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  position: relative;
}
.products .product .img {
  margin-bottom: 10px;
}
.products .product .img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.products .product .title {
  margin-bottom: 24px;
}
.products .product .discount {
  background-color: #FF0060;
  font-size: 0.8em;
  padding: 4px 10px;
  border-radius: 25px;
  color: #ffffff;
  font-weight: bold;
  position: absolute;
  top: 10px;
  left: 10px;
}
.products .product .price {
  font-size: 0.9em;
  position: relative;
  padding-top: 22px;
}
.products .product .price .prev-price {
  text-decoration: line-through;
  position: absolute;
  top: 0;
}
.products .product .price .current-price {
  font-size: 1.3em;
  font-weight: bold;
}
.products .product .add-to-cart {
  height: 38px;
  width: 38px;
  padding: 5px;
  border-radius: 50%;
  background-color: #356342;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  font-size: 18px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}
.products .product .add-to-cart:hover {
  background-color: #F7C04A;
}
.products .product:hover {
  box-shadow: 0 0 10px 3px rgba(63, 73, 127, 0.1);
  color: #3a6b48;
}
.products .product:hover .add-to-cart {
  background-color: #F7C04A;
}
@media only screen and (max-width: 768px) {
  .products {
    gap: 10px;
  }
  .products .product {
    width: calc(50% - 5px);
  }
}
@media only screen and (max-width: 575px) {
  .products .product .title {
    font-size: 14px !important;
    margin-bottom: 14px;
  }
  .products .product .discount {
    font-size: 0.8em;
    padding: 2px 8px;
    top: 5px;
    left: 5px;
  }
  .products .product .price {
    padding-top: 18px;
    font-size: 0.8em;
  }
  .products .product .add-to-cart {
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .products {
    gap: 14px;
  }
  .products .product {
    width: calc(50% - 7px);
  }
}

.pagination {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  margin-bottom: 35px;
}
.pagination .page {
  height: 28px;
  width: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(63, 73, 127, 0.2);
  font-size: 0.9em;
}
.pagination .page:hover {
  background-color: #3a6b48;
  color: #ffffff;
}
.pagination .page.active {
  background-color: #3a6b48;
  color: #ffffff;
}
.pagination .btn-page:hover {
  color: #3a6b48;
}/*# sourceMappingURL=style.css.map */

.holder-input .err {
    color: #CD1818;
    font-size: 0.85em;
    padding-top: 4px;
}

.holder-input input, .holder-input textarea, .holder-input .input-file {
    border: 1px solid rgba(97, 103, 122, 0.2);
    width: 100%;
    padding: 18px 15px 12px 15px;
    border-radius: 5px;
    resize: none;
    font-size: 0.95em;
}

.holder-input label {
    position: absolute;
    top: -16px;
    right: 10px;
    background-color: #ffffff;
    padding: 5px;
    font-weight: 600;
}

.holder-input {
    position: relative;
    color: #61677A;
    font-size: 0.9em;
}

.user-panel {
    margin: 35px 0;
}

    .user-panel .sidebar {
        box-shadow: rgba(0, 0, 0, 0.07) 2px 2px 3px, rgba(0, 0, 0, 0.07) -2px -1px 2px;
        border-radius: 5px;
    }

        .user-panel .sidebar .user-details {
            padding: 10px;
            border-bottom: 1px solid rgba(0, 0, 0, 0.07);
            background-color: rgba(97, 103, 122, 0.05);
        }

            .user-panel .sidebar .user-details .img {
                border-radius: 50%;
                overflow: hidden;
                height: 55px;
                width: 55px;
            }

                .user-panel .sidebar .user-details .img img {
                    height: 100%;
                    width: 100%;
                    -o-object-fit: cover;
                    object-fit: cover;
                }

            .user-panel .sidebar .user-details .links {
                text-align: left;
                opacity: 0.7;
                color: #61677A;
            }

                .user-panel .sidebar .user-details .links .logout:hover {
                    color: #CD1818;
                }

                .user-panel .sidebar .user-details .links .edit {
                    color: #61677A;
                }

                    .user-panel .sidebar .user-details .links .edit:hover {
                        color: #1FAB89;
                    }

        .user-panel .sidebar .menu-list {
            padding: 20px 0;
        }

            .user-panel .sidebar .menu-list .menu-link {
                padding: 12px 10px;
                display: block;
                width: 100%;
                color: #61677A;
                border-right: 3px solid transparent;
                text-align: right;
            }

                .user-panel .sidebar .menu-list .menu-link.active {
                    color: #CD1818;
                    border-right: 3px solid #CD1818;
                    background-color: rgba(205, 24, 24, 0.05);
                }

                .user-panel .sidebar .menu-list .menu-link:hover {
                    color: #CD1818;
                    border-right: 3px solid #CD1818;
                }

    .user-panel .content-boxes .content-box {
        box-shadow: rgba(0, 0, 0, 0.07) 2px 2px 3px, rgba(0, 0, 0, 0.07) -2px -1px 2px;
        border-radius: 5px;
        display: none;
    }

        .user-panel .content-boxes .content-box:first-child {
            display: block;
        }

        .user-panel .content-boxes .content-box .header-box {
            background-color: rgba(97, 103, 122, 0.05);
            padding: 15px;
            border-bottom: 1px solid rgba(0, 0, 0, 0.07);
            color: #61677A;
            display: flex;
            justify-content: space-between;
        }

        .user-panel .content-boxes .content-box .body-box {
            padding: 15px;
        }

    .user-panel .content-boxes .btns-call {
        display: flex;
        gap: 10px 15px;
        justify-content: center;
        flex-wrap: wrap;
    }

        .user-panel .content-boxes .btns-call .btn-call {
            background-color: rgba(31, 171, 137, 0.15);
            padding: 10px;
            border-radius: 5px;
        }

            .user-panel .content-boxes .btns-call .btn-call:hover {
                color: #ffffff;
                background-color: #1FAB89;
            }

    .user-panel .content-boxes .filters {
        display: flex;
        flex-wrap: wrap;
        gap: 5px;
    }

        .user-panel .content-boxes .filters .filter {
            border: 1px solid rgba(97, 103, 122, 0.2);
            padding: 4px 14px;
            border-radius: 25px;
            font-size: 0.85em;
        }

            .user-panel .content-boxes .filters .filter.active, .user-panel .content-boxes .filters .filter:hover {
                background-color: #CD1818;
                color: #ffffff;
            }

    .user-panel .content-boxes .custome-tabel .row-head {
        background-color: rgba(31, 171, 137, 0.1);
        font-weight: 600;
        color: #1FAB89;
    }

    .user-panel .content-boxes .custome-tabel .row-even {
        background-color: rgba(97, 103, 122, 0.05);
    }

    .user-panel .content-boxes .custome-tabel .row {
        border: 1px solid rgba(97, 103, 122, 0.3);
        border-bottom: 0;
        position: relative;
    }

        .user-panel .content-boxes .custome-tabel .row:last-child {
            border: 1px solid rgba(97, 103, 122, 0.3);
        }

    .user-panel .content-boxes .custome-tabel .column {
        padding: 10px 0;
        display: flex;
        gap: 5px;
        align-items: center;
        font-size: 0.9em;
        height: 100%;
        flex-wrap: wrap;
    }

        .user-panel .content-boxes .custome-tabel .column .label {
            display: none;
            color: #61677A;
        }

    .user-panel .content-boxes .custome-tabel .btn-download {
        background-color: rgba(18, 72, 107, 0.15);
        padding: 5px 15px;
        color: #12486B;
        border-radius: 25px;
    }

        .user-panel .content-boxes .custome-tabel .btn-download:hover {
            background-color: #12486B;
            color: #ffffff;
        }

    .user-panel .content-boxes .custome-tabel .btn-open-details {
        transition: 0.3;
        padding: 5px;
        transform: rotate(90deg);
        display: inline-block;
    }

        .user-panel .content-boxes .custome-tabel .btn-open-details:hover {
            color: #CD1818;
        }

        .user-panel .content-boxes .custome-tabel .btn-open-details.active {
            transform: rotate(0);
        }

    .user-panel .content-boxes .custome-tabel .btn-open-modal-chart {
        color: #61677A;
        padding: 5px;
    }

        .user-panel .content-boxes .custome-tabel .btn-open-modal-chart:hover {
            color: #1FAB89;
        }

    .user-panel .content-boxes .custome-tabel .details {
        padding: 10px;
        background-color: rgba(97, 103, 122, 0.07);
        border-radius: 5px;
        margin: 10px 0;
        font-size: 0.9em;
        display: none;
    }

@@media only screen and (max-width: 768px) {
    .user-panel .content-boxes .custome-tabel .row {
        padding: 10px 0;
        margin-bottom: 10px;
        border: 1px solid rgba(97, 103, 122, 0.3);
        border-radius: 5px;
    }

    .user-panel .content-boxes .custome-tabel .row-head {
        display: none;
    }

    .user-panel .content-boxes .custome-tabel .column {
        justify-content: space-between !important;
        padding: 5px 0;
    }

        .user-panel .content-boxes .custome-tabel .column .label {
            display: inline-block;
        }

    .user-panel .content-boxes .custome-tabel .details {
        margin: 10px 0 0 0;
    }
}

@@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .user-panel .content-boxes .custome-tabel .column {
        font-size: 0.85em;
    }
}

.user-panel .content-boxes .btn-back {
    color: #61677A;
}

.user-panel .input-dropdown {
    display: flex;
    border: 1px solid rgba(97, 103, 122, 0.2);
    font-size: 0.95em;
    border-radius: 5px;
    position: relative;
}

    .user-panel .input-dropdown .arrow {
        width: 30px;
        line-height: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .user-panel .input-dropdown input {
        width: calc(100% - 30px);
        padding: 10px;
    }

    .user-panel .input-dropdown .dropdown-items {
        position: absolute;
        z-index: 1;
        width: calc(100% + 2px);
        left: -1px;
        top: calc(100% - 3px);
        border: 1px solid rgba(97, 103, 122, 0.2);
        background-color: #ffffff;
        border-radius: 0 0 5px 5px;
        max-height: 250px;
        overflow: auto;
        box-shadow: 0 5px 5px -5px rgba(0, 0, 0, 0.3);
        display: none;
    }

        .user-panel .input-dropdown .dropdown-items .item {
            padding: 10px;
            cursor: pointer;
            font-size: 0.85em;
            border-bottom: 1px solid rgba(97, 103, 122, 0.2);
        }

    .user-panel .input-dropdown .btn-add {
        background-color: rgba(31, 171, 137, 0.1);
        padding: 3px 10px;
        border-radius: 5px;
        border: 1px solid #1FAB89;
    }

        .user-panel .input-dropdown .btn-add:hover {
            background-color: #1FAB89;
            color: #ffffff;
        }

.user-panel .content-boxes .custome-tabel .row-head {
    background-color: rgba(31, 171, 137, 0.1);
    font-weight: 600;
    color: #1FAB89;
}

.user-panel .content-boxes .custome-tabel .row-even {
    background-color: rgba(97, 103, 122, 0.05);
}

.user-panel .content-boxes .custome-tabel .row {
    border: 1px solid rgba(97, 103, 122, 0.3);
    border-bottom: 0;
    position: relative;
}

    .user-panel .content-boxes .custome-tabel .row:last-child {
        border: 1px solid rgba(97, 103, 122, 0.3);
    }

.user-panel .content-boxes .custome-tabel .column {
    padding: 10px 0;
    display: flex;
    gap: 5px;
    align-items: center;
    font-size: 0.9em;
    height: 100%;
    flex-wrap: wrap;
}

    .user-panel .content-boxes .custome-tabel .column .label {
        display: none;
        color: #61677A;
    }

.user-panel .content-boxes .custome-tabel .btn-download {
    background-color: rgba(18, 72, 107, 0.15);
    padding: 5px 15px;
    color: #12486B;
    border-radius: 25px;
}

    .user-panel .content-boxes .custome-tabel .btn-download:hover {
        background-color: #12486B;
        color: #ffffff;
    }

.user-panel .content-boxes .custome-tabel .btn-open-details {
    transition: 0.3;
    padding: 5px;
    transform: rotate(90deg);
    display: inline-block;
}

    .user-panel .content-boxes .custome-tabel .btn-open-details:hover {
        color: #CD1818;
    }

    .user-panel .content-boxes .custome-tabel .btn-open-details.active {
        transform: rotate(0);
    }

.user-panel .content-boxes .custome-tabel .btn-open-modal-chart {
    color: #61677A;
    padding: 5px;
}

    .user-panel .content-boxes .custome-tabel .btn-open-modal-chart:hover {
        color: #1FAB89;
    }

.user-panel .content-boxes .custome-tabel .details {
    padding: 10px;
    background-color: rgba(97, 103, 122, 0.07);
    border-radius: 5px;
    margin: 10px 0;
    font-size: 0.9em;
    display: none;
}

@media only screen and (max-width: 768px) {
    .user-panel .content-boxes .custome-tabel .row {
        padding: 10px 0;
        margin-bottom: 10px;
        border: 1px solid rgba(97, 103, 122, 0.3);
        border-radius: 5px;
    }

    .user-panel .content-boxes .custome-tabel .row-head {
        display: none;
    }

    .user-panel .content-boxes .custome-tabel .column {
        justify-content: space-between !important;
        padding: 5px 0;
    }

        .user-panel .content-boxes .custome-tabel .column .label {
            display: inline-block;
        }

    .user-panel .content-boxes .custome-tabel .details {
        margin: 10px 0 0 0;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .user-panel .content-boxes .custome-tabel .column {
        font-size: 0.85em;
    }
}