/** $string - svg */
/** add unique id image url */
/** https://webdesign.tutsplus.com/tutorials/an-introduction-to-error-handling-in-sass--cms-19996 */
/** get breakpoint */
/** font size */
/** keyframe */
.woocommerce ul.products li.product .price {
  font-size: 1.125rem;
}
@media only screen and (min-width: 48rem) {
  .woocommerce ul.products li.product .price {
    font-size: 1.25rem;
  }
}
@media only screen and (min-width: 64rem) {
  .woocommerce ul.products li.product .price {
    font-size: 1.5625rem;
  }
}

li.product {
  position: relative;
}

.item-product {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  height: auto;
}
.item-product .product-inner {
  position: relative;
  border-radius: 10px;
  padding: 10px 10px 0;
  background: rgba(255, 255, 255, 0.5411764706);
  border: 1px solid #e9e9e9;
  display: flex;
  flex-direction: column;
  flex: auto;
}
.item-product .product-inner:hover .thumb img {
  transform: translate(-50%, -50%) scale(1.02);
}
.item-product .product-inner .thumb {
  overflow: hidden;
  border-radius: 10px;
  background-color: #ffffff;
}
.item-product .product-inner .thumb::before {
  content: "";
  display: block;
  padding-top: 80%;
}
.item-product .product-inner .thumb img {
  margin: 0 !important;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  transition: all 0.3s ease;
}
.item-product .product-inner .product-inf {
  padding: 12px 4px;
  display: flex;
  flex-direction: column;
  flex: auto;
}
.item-product .product-inner .product-inf .title {
  line-height: 1.4;
  margin-bottom: 15px;
  font-weight: bold;
  font-size: 18px;
}
.item-product .product-inner .product-inf .title a {
  color: #0f1e5c;
}
.item-product .product-inner .product-inf .title a {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: initial;
}
@supports (-webkit-line-clamp: 2) {
  .item-product .product-inner .product-inf .title a {
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
  }
}
.item-product .product-inner .product-inf .title a:hover {
  color: #0d175c;
}
.item-product .product-inner .product-inf .product-specs {
  list-style: none;
  padding: 0;
  margin: 0 0 15px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.item-product .product-inner .product-inf .product-specs::before, .item-product .product-inner .product-inf .product-specs::after {
  content: none;
}
.item-product .product-inner .product-inf .product-specs .spec-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #4f4f4f;
  font-size: 14px;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  width: 100%;
}
@media only screen and (min-width: 96rem) {
  .item-product .product-inner .product-inf .product-specs .spec-item {
    font-size: 15px;
  }
}
.item-product .product-inner .product-inf .product-specs .spec-item .spec-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.item-product .product-inner .product-inf .product-specs .spec-item .spec-icon img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain;
  position: static !important;
  transform: none !important;
}
.item-product .product-inner .product-inf .product-specs .spec-item .spec-text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
}
.item-product .product-inner .product-inf .product-specs .spec-item .spec-text strong {
  font-weight: 500;
  color: #4f4f4f;
}
.item-product .product-inner .product-inf .product-divider {
  border: none;
  border-top: 1px solid #000000;
  margin: 20px 0;
}
.item-product .product-inner .product-inf .product-meta-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  margin-top: auto;
}
.item-product .product-inner .product-inf .product-meta-footer .product-price-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.item-product .product-inner .product-inf .product-meta-footer .product-price-box .price-label {
  color: #828282;
  font-size: 13px;
  line-height: 1.2;
  margin-bottom: 2px;
}
.item-product .product-inner .product-inf .product-meta-footer .product-price-box .price-value,
.item-product .product-inner .product-inf .product-meta-footer .product-price-box .price-contact,
.item-product .product-inner .product-inf .product-meta-footer .product-price-box .amount {
  color: #0f1e5c !important;
  font-size: 13px !important;
  font-weight: bold !important;
  line-height: 1.2;
  display: inline-block;
}
@media only screen and (min-width: 96rem) {
  .item-product .product-inner .product-inf .product-meta-footer .product-price-box .price-value,
  .item-product .product-inner .product-inf .product-meta-footer .product-price-box .price-contact,
  .item-product .product-inner .product-inf .product-meta-footer .product-price-box .amount {
    font-size: 15px !important;
  }
}
.item-product .product-inner .product-inf .product-meta-footer .product-price-box .price {
  margin: 0 !important;
  padding: 0 !important;
  display: inline-block !important;
}
.item-product .product-inner .product-inf .product-meta-footer .product-price-box .price del {
  display: none !important;
}
.item-product .product-inner .product-inf .product-meta-footer .product-price-box .price ins {
  display: inline-block !important;
  text-decoration: none !important;
}
.item-product .product-inner .product-inf .product-meta-footer .view-detail-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: #0f1e5c;
  color: #ffffff !important;
  border: none;
  border-radius: 6px;
  padding: 8px 12px 8px 14px;
  font-weight: 600;
  font-size: 13px;
  line-height: 1.4;
  transition: all 0.3s ease;
  margin: 0 !important;
  flex-shrink: 0;
}
@media only screen and (min-width: 96rem) {
  .item-product .product-inner .product-inf .product-meta-footer .view-detail-btn {
    font-size: 15px;
  }
}
.item-product .product-inner .product-inf .product-meta-footer .view-detail-btn svg {
  transition: transform 0.3s ease;
}
.item-product .product-inner .product-inf .product-meta-footer .view-detail-btn:hover {
  background-color: #0d175c;
  color: #ffffff !important;
}
.item-product .product-inner .product-inf .product-meta-footer .view-detail-btn:hover svg {
  transform: translateX(4px);
}

.woocommerce nav.woocommerce-pagination ul.page-numbers {
  border: none;
  margin: 40px 0 0;
}
.woocommerce nav.woocommerce-pagination ul.page-numbers::before {
  content: none;
}
.woocommerce nav.woocommerce-pagination ul.page-numbers li {
  border: none;
  margin: 0 8px;
}
.woocommerce nav.woocommerce-pagination ul.page-numbers li a,
.woocommerce nav.woocommerce-pagination ul.page-numbers li span {
  font-weight: 400;
  border-radius: 4px;
  color: #707070;
  padding: 0;
  border: 1px solid #c7c7c7;
  font-size: 16px;
  position: relative;
}
.woocommerce nav.woocommerce-pagination ul.page-numbers li a,
.woocommerce nav.woocommerce-pagination ul.page-numbers li span {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.woocommerce nav.woocommerce-pagination ul.page-numbers li a,
.woocommerce nav.woocommerce-pagination ul.page-numbers li span {
  width: 2.375rem;
  height: 2.375rem;
}
.woocommerce nav.woocommerce-pagination ul.page-numbers li span {
  text-decoration: none !important;
}

.woocommerce nav.woocommerce-pagination ul li a:focus,
.woocommerce nav.woocommerce-pagination ul li a:hover,
.woocommerce nav.woocommerce-pagination ul li span.current {
  color: #ffffff;
  font-weight: 600;
  border: 1px solid #0d175c;
  background-color: #0d175c;
}

body.woocommerce .onsale {
  min-height: unset;
  min-width: unset;
  padding: 5px 12px;
  background-color: #f9ac44;
  top: 20px !important;
  right: 26px !important;
  left: auto;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
  color: #ffffff;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.archive-product {
  position: relative;
  margin-bottom: 30px;
}
.archive-product {
  padding-bottom: 1.25rem;
}
@media only screen and (min-width: 48rem) {
  .archive-product {
    padding-bottom: 2.5rem;
  }
}
@media only screen and (min-width: 64rem) {
  .archive-product {
    padding-bottom: 3.75rem;
  }
}
.archive-product .main-taxonomy-product {
  padding-top: 1.875rem;
}
@media only screen and (min-width: 48rem) {
  .archive-product .main-taxonomy-product {
    padding-top: 2.5rem;
  }
}
@media only screen and (min-width: 64rem) {
  .archive-product .main-taxonomy-product {
    padding-top: 3.75rem;
  }
}
.archive-product .main-taxonomy-product .grid-products {
  padding-top: 0.3125rem;
}
@media only screen and (min-width: 64rem) {
  .archive-product .main-taxonomy-product .grid-products {
    padding-top: 0.9375rem;
  }
}
@media only screen and (max-width: 63.99875rem) {
  .archive-product .main-taxonomy-product .grid-products {
    flex-direction: column-reverse;
    gap: 20px;
  }
}
.archive-product .main-taxonomy-product .grid-products aside.sidebar {
  width: 23%;
  position: relative;
}
.archive-product .main-taxonomy-product .grid-products aside.sidebar {
  padding-right: 0;
}
@media only screen and (min-width: 64rem) {
  .archive-product .main-taxonomy-product .grid-products aside.sidebar {
    padding-right: 0.9375rem;
  }
}
@media only screen and (min-width: 96rem) {
  .archive-product .main-taxonomy-product .grid-products aside.sidebar {
    width: 25%;
  }
}
@media only screen and (max-width: 63.99875rem) {
  .archive-product .main-taxonomy-product .grid-products aside.sidebar {
    width: 100%;
  }
}
.archive-product .main-taxonomy-product .grid-products aside.sidebar .widget-sidebar {
  position: -webkit-sticky;
  position: sticky;
  top: 110px;
}
@media only screen and (max-width: 63.99875rem) {
  .archive-product .main-taxonomy-product .grid-products aside.sidebar .widget-sidebar {
    position: relative;
    top: 0;
  }
}
.archive-product .main-taxonomy-product .grid-products aside.sidebar .filters-container .filter-title {
  font-size: 1.125rem;
}
@media only screen and (min-width: 64rem) {
  .archive-product .main-taxonomy-product .grid-products aside.sidebar .filters-container .filter-title {
    font-size: 1.25rem;
  }
}
.archive-product .main-taxonomy-product .grid-products aside.sidebar .filters-container .filter-checkbox .filter-item label {
  display: block;
  width: 100%;
}
.archive-product .main-taxonomy-product .grid-products aside.sidebar .filters-container .filter-checkbox .filter-item label input {
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  width: 16px;
  height: 16px;
  border: 1px solid #bfbfbf;
  border-radius: 2px;
  background-color: transparent;
  transform: translateY(-2px);
}
.archive-product .main-taxonomy-product .grid-products aside.sidebar .filters-container .filter-checkbox .filter-item label input[type=checkbox]:checked {
  background-color: #000c36;
  border-color: #000c36;
}
.archive-product .main-taxonomy-product .grid-products aside.sidebar .filters-container .filter-checkbox .filter-item label input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.archive-product .main-taxonomy-product .grid-products aside.sidebar .filters-container .filter-checkbox .filter-item label .term-label {
  color: #3c3c3c;
  width: calc(100% - 25px);
  padding-left: 4px;
  position: relative;
}
.archive-product .main-taxonomy-product .grid-products aside.sidebar .filters-container .filter-checkbox .filter-item label .term-label .item-count {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  border-radius: 30px;
  border: 1px solid #bfbfbf;
  font-size: 12px;
  line-height: normal;
  color: #000000;
  padding: 4px 15px;
}
.archive-product .main-taxonomy-product .grid-products aside.sidebar .filters-container .apply-filters {
  display: block !important;
  background-color: #e0dac9;
  border-radius: 4px;
  padding: 13px 24px;
  font-size: 14px;
  font-weight: 600;
  color: #000c36;
  transition: all 0.3s;
}
.archive-product .main-taxonomy-product .grid-products aside.sidebar .filters-container .apply-filters:hover {
  cursor: pointer;
  background-color: #000c36;
  color: #e0dac9;
}
@media only screen and (max-width: 47.99875rem) {
  .archive-product .main-taxonomy-product .grid-products aside.sidebar .yith-wcan-filters {
    background-color: #ffffff;
  }
}
@media only screen and (max-width: 47.99875rem) {
  .archive-product .main-taxonomy-product .grid-products aside.sidebar .yith-wcan-filters .filters-container {
    margin-top: 35px;
  }
}
@media only screen and (max-width: 47.99875rem) {
  .archive-product .main-taxonomy-product .grid-products aside.sidebar .yith-wcan-filters .filters-container .clear-selection {
    display: none;
  }
}
.archive-product .main-taxonomy-product .grid-products aside.sidebar .yith-wcan-filters .filters-container form > .mobile-only {
  display: none !important;
}
.archive-product .main-taxonomy-product .grid-products aside.sidebar .yith-wcan-filters .filters-container form .btn-primary {
  color: #000c36;
}
@media only screen and (max-width: 47.99875rem) {
  .archive-product .main-taxonomy-product .grid-products aside.sidebar .yith-wcan-filters .main-modal-button {
    color: #ffffff;
  }
}
.archive-product .main-taxonomy-product .grid-products aside.sidebar .widget_media_image {
  margin-top: 1.25rem;
}
@media only screen and (min-width: 64rem) {
  .archive-product .main-taxonomy-product .grid-products aside.sidebar .widget_media_image {
    margin-top: 1.875rem;
  }
}
.archive-product .main-taxonomy-product .grid-products aside.sidebar .widget_media_image a {
  display: block;
}
.archive-product .main-taxonomy-product .grid-products aside.sidebar .widget_media_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}
.archive-product .main-taxonomy-product .grid-products .col-products {
  width: 77%;
}
.archive-product .main-taxonomy-product .grid-products .col-products {
  padding-left: 0;
}
@media only screen and (min-width: 64rem) {
  .archive-product .main-taxonomy-product .grid-products .col-products {
    padding-left: 0.625rem;
  }
}
@media only screen and (min-width: 96rem) {
  .archive-product .main-taxonomy-product .grid-products .col-products {
    width: 75%;
  }
}
@media only screen and (max-width: 63.99875rem) {
  .archive-product .main-taxonomy-product .grid-products .col-products {
    width: 100%;
  }
}
.archive-product .main-taxonomy-product .grid-products .col-products ul.products {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.archive-product .main-taxonomy-product .grid-products .col-products ul.products::before, .archive-product .main-taxonomy-product .grid-products .col-products ul.products::after {
  content: none;
}
@media only screen and (max-width: 63.99875rem) {
  .archive-product .main-taxonomy-product .grid-products .col-products ul.products {
    gap: 12px;
    margin: 0;
  }
}
.archive-product .main-taxonomy-product .grid-products .col-products ul.products li.product {
  width: calc(25% - 15px);
  float: none;
  display: flex;
  flex-direction: column;
  margin: 0;
  cursor: pointer;
}
@media only screen and (max-width: 63.99875rem) {
  .archive-product .main-taxonomy-product .grid-products .col-products ul.products li.product {
    width: calc(33.3333333333% - 8px);
  }
}
@media only screen and (max-width: 47.99875rem) {
  .archive-product .main-taxonomy-product .grid-products .col-products ul.products li.product {
    width: calc(50% - 6px);
  }
}
@media only screen and (max-width: 39.99875rem) {
  .archive-product .main-taxonomy-product .grid-products .col-products ul.products li.product {
    width: 100%;
  }
}
.archive-product .main-taxonomy-product .grid-products .col-products ul.products li.product .woocommerce-loop-product__link {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 8px;
}
.archive-product .main-taxonomy-product .grid-products .col-products ul.products li.product .woocommerce-loop-product__link:hover .woocommerce-loop-product__title {
  color: #0d175c;
}
.archive-product .main-taxonomy-product .grid-products .col-products ul.products li.product .woocommerce-loop-product__link:hover img {
  transform: scale(1.04);
  transition: all 0.3s;
}
.archive-product .main-taxonomy-product .grid-products .col-products ul.products li.product .woocommerce-loop-product__link img {
  object-fit: cover;
  margin-bottom: 0;
  transform: scale(1);
  transition: all 0.3s;
}
.archive-product .main-taxonomy-product .grid-products .col-products ul.products li.product .woocommerce-loop-product__title {
  flex: auto;
  text-align: left;
  line-height: 1.4;
  font-weight: 400;
  padding: 10px 0 0;
  margin-bottom: 5px;
  position: relative;
  transition: all 0.4s ease;
  font-size: 16px;
}
.archive-product .main-taxonomy-product .grid-products .col-products ul.products li.product .woocommerce-loop-product__title {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: initial;
}
@supports (-webkit-line-clamp: 2) {
  .archive-product .main-taxonomy-product .grid-products .col-products ul.products li.product .woocommerce-loop-product__title {
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
  }
}
.archive-product .main-taxonomy-product .grid-products .col-products ul.products li.product .item-product .product-inf .price {
  font-size: 1rem;
}
@media only screen and (min-width: 48rem) {
  .archive-product .main-taxonomy-product .grid-products .col-products ul.products li.product .item-product .product-inf .price {
    font-size: 1.125rem;
  }
}
@media only screen and (min-width: 64rem) {
  .archive-product .main-taxonomy-product .grid-products .col-products ul.products li.product .item-product .product-inf .price {
    font-size: 1.25rem;
  }
}
.archive-product .page-description {
  margin: 30px 0;
}
.archive-product .term-tax-custom {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 30px;
  position: relative;
  overflow: hidden;
  max-width: 85%;
  margin: 0 auto 30px;
}
@media only screen and (max-width: 63.99875rem) {
  .archive-product .term-tax-custom {
    max-width: 100%;
    padding: 20px;
  }
}
.archive-product .term-tax-custom .term-description {
  color: #2e0805;
}
.archive-product .term-tax-custom .term-description #ez-toc-container {
  background: #fffbf0;
  border-radius: 12px;
  border: none;
  padding: 0;
}
.archive-product .term-tax-custom .term-description #ez-toc-container .ez-toc-title-container {
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  padding: 12px;
  background: #fff6dd;
  font-weight: 600;
  color: #0d175c;
}
.archive-product .term-tax-custom .term-description #ez-toc-container .ez-toc-title-container {
  font-size: 1.125rem;
}
@media only screen and (min-width: 64rem) {
  .archive-product .term-tax-custom .term-description #ez-toc-container .ez-toc-title-container {
    font-size: 1.25rem;
  }
}
.archive-product .term-tax-custom .term-description #ez-toc-container .ez-toc-title-container .ez-toc-title {
  position: relative;
  line-height: normal;
}
.archive-product .term-tax-custom .term-description #ez-toc-container .ez-toc-title-container .ez-toc-title::before {
  content: "";
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAoCAYAAACM/rhtAAAACXBIWXMAABYlAAAWJQFJUiTwAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAN0SURBVHgB7Vi/TttgEL+zHdEKQi0Ic8MTEOYuydatvAHhCZpKDaRTYGqAobwB4Q3gCRKWrqVjJ9ytUhNqNY0UFNvXOzu23ACxFWonlfob/Of7jvDz3Xd/EcZQ0XU9o9pbCsIrQCgAQR6SBIHJ/+fKITg77vaa49sYfnmbWyqqhKe8modZgMBApJ1G51fbXwoI7q5mtxGhGRI2+XpOSF8hQSDBBl8LYaUoBOX33d5ZQNDVHGDLJ0boHBx1+ieQInZXFiuISp0Z6R4xKokmXYJ7q9lr9wuYnGM7pWOzfwUzQFVfLCiq0nJJsrlvbXVTra5my2zasgiw5t4d3/TPYUb4OBh+e/E0c4uIL4WkgvRFYW/ddneZcdpmvQ9HN8zBO//A3LYUfim4OwifYU5AABfuA8KG4h9KApp47ir6k7w4E6QBJMO9cwxW4sjv5pbrC1rmWjxdHKrGZCElaFECNV3PE9j7wQJ7O6mZOsBgR173clkJT0WYAn4omSQTqUEbhvrdX6Y8pIRIDQ4hYyyQbYQjPRKe+c+SQzk9XcIUQMsyomQiCZ6YpslmLjmqvc8mecap7/Kw22/6+/cl+L+JSIKChmkafCvDDBDLi2eJuScYy8SC6hrnbKK8YlnNhjkwICXEIujGOpJYx26iZeq1nBbEr+raYoEIdZgClqVdiRPCYwhKCQRjgZgAK3xry7NCygeYMlBrmlXyf+ch/PtnUIpXNnEbQlpiQwdlmWM5b1RtOhMP2MRRMrHO4GGnV6pxYeuQo5MD7XDFnXT1HduLGwlnjIfwP1A/FrFM7NaEqi0tYf6hCUBSiEWQybX8cosbmSJX2PpR56fryV5XOF19GCcrRRIc9SH58BqHGVk7GRHmrhCLMA00rc1XY5JI5BnULM24s0jwA1JCpAalFqzllg44vdXdBRnw2MMDf19iJCSIWF7MhcE+Wuo6Z41NGUekW80gnwHuP7nPeD5JcFRVpwJ34uXN3UyFux4vVfGYAeYG6E07eJjATogXo1Wdw0cFZoy9leXXfkiT7hFl5Lug2p9Gi6aDPH77Ph/jt8Nub12RilbGriMZnQvQ1iw0KZoLyDF8TsEIWMopQjgN/oK/QIbbPFRKdOo1cs4tn5i3Bjt+9fTHEJ3jXZHmdYgehqdN2uaRayH8ZYlAwhxHEnHWga2ejzdRvwFc62kmHJ8eygAAAABJRU5ErkJggg==");
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 10px;
  display: inline-block;
  transform: translateY(1px);
}
.archive-product .term-tax-custom .term-description #ez-toc-container .ez-toc-title-container .ez-toc-title::before {
  width: 1.25rem;
  height: 1.25rem;
}
.archive-product .term-tax-custom .term-description #ez-toc-container nav {
  padding: 20px;
}
.archive-product .term-tax-custom .term-description #ez-toc-container nav ul li.ez-toc-page-1 {
  border-bottom: 1px dashed #c7c7c7;
  padding-bottom: 8px;
}
.archive-product .term-tax-custom .term-description #ez-toc-container nav ul li a {
  font-weight: 400;
  color: #4f0d09;
}
.archive-product .term-tax-custom .custom-excerpt {
  display: none;
}
.archive-product .term-tax-custom .mask {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100%;
  left: 0;
  background: linear-gradient(360deg, #f7f7f7 21.51%, rgba(247, 247, 247, 0) 71.7%);
}
.archive-product .term-tax-custom .btn_show {
  margin-top: 0;
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

@keyframes loopflicker {
  0% {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  20% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  40% {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  60% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
}
.bottom-product-archive {
  position: relative;
}
.bottom-product-archive {
  padding-top: 0.9375rem;
}
@media only screen and (min-width: 48rem) {
  .bottom-product-archive {
    padding-top: 1.25rem;
  }
}
@media only screen and (min-width: 64rem) {
  .bottom-product-archive {
    padding-top: 1.875rem;
  }
}
.bottom-product-archive {
  padding-bottom: 3.125rem;
}
@media only screen and (min-width: 48rem) {
  .bottom-product-archive {
    padding-bottom: 5rem;
  }
}
@media only screen and (min-width: 64rem) {
  .bottom-product-archive {
    padding-bottom: 6.25rem;
  }
}
.bottom-product-archive .title-viewed,
.bottom-product-archive .recently-viewed-products {
  padding: 40px 0;
}
@media only screen and (max-width: 47.99875rem) {
  .bottom-product-archive .title-viewed,
  .bottom-product-archive .recently-viewed-products {
    padding: 30px 0;
  }
}
.bottom-product-archive .swiper-container .swiper-slide {
  width: 25%;
  padding: 0 10px;
}
@media only screen and (min-width: 96rem) {
  .bottom-product-archive .swiper-container .swiper-slide {
    width: 20%;
  }
}
@media only screen and (max-width: 63.99875rem) {
  .bottom-product-archive .swiper-container .swiper-slide {
    width: 50%;
  }
}
@media only screen and (max-width: 39.99875rem) {
  .bottom-product-archive .swiper-container .swiper-slide {
    width: 100%;
  }
}
@media only screen and (max-width: 47.99875rem) {
  .bottom-product-archive .swiper-container .swiper-slide .product-item {
    padding: 0;
    padding-bottom: 10px;
  }
}
.bottom-product-archive .related-products {
  padding-bottom: 20px;
}
.bottom-product-archive .related-products .heading-title {
  margin-bottom: 1.25rem;
}
@media only screen and (min-width: 64rem) {
  .bottom-product-archive .related-products .heading-title {
    margin-bottom: 1.875rem;
  }
}
@media only screen and (max-width: 47.99875rem) {
  .bottom-product-archive .related-products .container {
    padding-left: 0;
    padding-right: 0;
  }
}
@media only screen and (max-width: 47.99875rem) {
  .bottom-product-archive .related-products .swiper-controls .swiper-button {
    top: 45%;
  }
}
.bottom-product-archive .related-products .swiper-controls .swiper-button.swiper-button-prev {
  left: -25px;
}
@media only screen and (max-width: 47.99875rem) {
  .bottom-product-archive .related-products .swiper-controls .swiper-button.swiper-button-prev {
    left: 5px;
  }
}
@media only screen and (max-width: 39.99875rem) {
  .bottom-product-archive .related-products .swiper-controls .swiper-button.swiper-button-prev {
    left: 0px;
  }
}
.bottom-product-archive .related-products .swiper-controls .swiper-button.swiper-button-next {
  right: -25px;
}
@media only screen and (max-width: 47.99875rem) {
  .bottom-product-archive .related-products .swiper-controls .swiper-button.swiper-button-next {
    right: 5px;
  }
}
@media only screen and (max-width: 39.99875rem) {
  .bottom-product-archive .related-products .swiper-controls .swiper-button.swiper-button-next {
    right: 0px;
  }
}
.bottom-product-archive .related-products .swiper-controls .swiper-pagination {
  bottom: -60px;
}
@media only screen and (max-width: 47.99875rem) {
  .bottom-product-archive .related-products .swiper-controls .swiper-pagination {
    bottom: -52px;
  }
}
.bottom-product-archive .widget_recently_viewed_products > span {
  display: block;
  text-align: center;
  color: #0d175c;
  margin-bottom: 15px;
}
.bottom-product-archive .widget_recently_viewed_products > span {
  font-size: 1.5rem;
}
@media only screen and (min-width: 64rem) {
  .bottom-product-archive .widget_recently_viewed_products > span {
    font-size: 1.75rem;
  }
}
.bottom-product-archive .product_list_widget li::before {
  content: none;
}

body.single-product .section-breadcrumb {
  margin-bottom: 0;
}
@media only screen and (min-width: 64rem) {
  body.single-product .section-breadcrumb {
    margin-bottom: 1.875rem;
  }
}
@media only screen and (max-width: 47.99875rem) {
  body.single-product .section-breadcrumb {
    padding-bottom: 10px;
  }
}
body.single-product .woocommerce-notices-wrapper {
  font-size: 15px;
}
body.single-product .woocommerce-notices-wrapper .woocommerce-message {
  background-color: #f7f7f7;
  border: none;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.05);
  margin-top: 0;
  padding: 10px 10px 10px 15px;
  margin-bottom: 20px;
  border-radius: 5px;
}
body.single-product .woocommerce-notices-wrapper .woocommerce-message::before {
  content: "";
  background-color: #ff6805;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 24 24"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10s10-4.48 10-10S17.52 2 12 2zm-2 15l-5-5l1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z"></path></svg>');
          mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 24 24"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10s10-4.48 10-10S17.52 2 12 2zm-2 15l-5-5l1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z"></path></svg>');
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  width: 12px;
  height: 12px;
  margin-right: 8px;
  position: static;
}
body.single-product .woocommerce-notices-wrapper .woocommerce-message a.button {
  color: #ff6805;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  order: 100;
  float: right;
  padding: 0;
  background: none;
  line-height: 1.7;
}
body.single-product .product-type-variable .product-details .summary.entry-summary {
  display: flex;
  flex-direction: column;
}
body.single-product .product-type-variable .product-details .summary.entry-summary .variations_form {
  margin-top: 0;
  gap: 0;
}
body.single-product .product-type-variable .product-details .summary.entry-summary .variations_form table.variations tbody tr th.label label {
  font-weight: 600;
}
body.single-product .product-type-variable .product-details .summary.entry-summary .variations_form table.variations tbody tr th.label label {
  font-size: 1rem;
}
@media only screen and (min-width: 64rem) {
  body.single-product .product-type-variable .product-details .summary.entry-summary .variations_form table.variations tbody tr th.label label {
    font-size: 1.25rem;
  }
}
body.single-product .product-type-variable .product-details .summary.entry-summary .variations_form table.variations tbody tr th.label .woo-selected-variation-item-name {
  display: none;
}
body.single-product .product-type-variable .product-details .summary.entry-summary .variations_form table.variations tbody tr td.value {
  position: relative;
  padding: 0;
  width: -webkit-fit-content !important;
  width: fit-content !important;
}
body.single-product .product-type-variable .product-details .summary.entry-summary .variations_form table.variations tbody tr td.value .variable-items-wrapper .variable-item {
  background: #0d175c;
  color: #ffffff;
  border-radius: 10px;
  border: none;
  padding: 0 10px;
  font-weight: 600;
  height: 50px;
}
body.single-product .product-type-variable .product-details .summary.entry-summary .variations_form table.variations tbody tr td.value .variable-items-wrapper .variable-item {
  font-size: 1rem;
}
@media only screen and (min-width: 64rem) {
  body.single-product .product-type-variable .product-details .summary.entry-summary .variations_form table.variations tbody tr td.value .variable-items-wrapper .variable-item {
    font-size: 1.25rem;
  }
}
body.single-product .product-type-variable .product-details .summary.entry-summary .variations_form table.variations tbody tr td.value .variable-items-wrapper .variable-item.selected {
  background: #ff6805;
  box-shadow: 0 0 0 1px #ff6805;
}
body.single-product .product-type-variable .product-details .summary.entry-summary .variations_form table.variations tbody tr td.value .reset_variations {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -40px;
  text-decoration: underline;
  color: #707070;
}
body.single-product .product-type-variable .product-details .summary.entry-summary .variations_form .single_variation_wrap .woocommerce-variation.single_variation {
  margin: 30px 0;
}
body.single-product .product-type-variable .product-details .summary.entry-summary .variations_form .single_variation_wrap .woocommerce-variation-description {
  display: none;
}
body.single-product .product-type-variable .product-details .summary.entry-summary .variations_form .single_variation_wrap .woocommerce-variation-add-to-cart {
  display: flex;
  margin-top: 20px;
}
@media only screen and (max-width: 47.99875rem) {
  body.single-product .product-type-variable .product-details .summary.entry-summary .variations_form .single_variation_wrap .woocommerce-variation-add-to-cart {
    flex-wrap: wrap;
    gap: 12px;
  }
}
body.single-product .product-details {
  position: relative;
  display: flex;
}
@media only screen and (max-width: 63.99875rem) {
  body.single-product .product-details {
    flex-wrap: wrap;
  }
}
body.single-product .product-details .onsale {
  display: none;
  position: absolute;
  z-index: 2;
  font-size: 13px;
  color: #fff;
  background-color: #ff6805;
  font-weight: 400;
  padding: 0 5px;
  border-radius: 5px;
  pointer-events: none;
  top: 15px;
  left: 15px;
}
body.single-product .product-details .woocommerce-product-gallery-wrapper {
  width: 55%;
  height: -webkit-fit-content;
  height: fit-content;
}
@media only screen and (max-width: 63.99875rem) {
  body.single-product .product-details .woocommerce-product-gallery-wrapper {
    width: 100%;
  }
}
body.single-product .product-details .woocommerce-product-gallery-wrapper .woocommerce-product-gallery {
  float: none;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
@media only screen and (max-width: 47.99875rem) {
  body.single-product .product-details .woocommerce-product-gallery-wrapper .woocommerce-product-gallery {
    margin-bottom: 5px;
  }
}
body.single-product .product-details .woocommerce-product-gallery-wrapper .woocommerce-product-gallery .wpg__images {
  width: 100%;
}
body.single-product .product-details .woocommerce-product-gallery-wrapper .woocommerce-product-gallery .wpg__images .swiper-slide .wpg__image {
  position: relative;
  border-radius: 15px;
}
body.single-product .product-details .woocommerce-product-gallery-wrapper .woocommerce-product-gallery .wpg__images .swiper-slide .wpg__image .image-popup {
  background-color: transparent;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  height: 1.875rem;
  position: absolute;
  right: 10px;
  top: 10px;
  width: 1.875rem;
  z-index: 97;
  opacity: 0.1;
  display: none;
}
body.single-product .product-details .woocommerce-product-gallery-wrapper .woocommerce-product-gallery .wpg__images .swiper-slide .wpg__image .image-popup::before {
  content: none;
}
body.single-product .product-details .woocommerce-product-gallery-wrapper .woocommerce-product-gallery .wpg__images .swiper-slide .wpg__image .res.ar-16-9, body.single-product .product-details .woocommerce-product-gallery-wrapper .woocommerce-product-gallery .wpg__images .swiper-slide .wpg__image .res.ar\[1-1\] {
  padding-top: 72%;
  aspect-ratio: unset;
}
body.single-product .product-details .woocommerce-product-gallery-wrapper .woocommerce-product-gallery .wpg__images .swiper-slide .wpg__image .res img {
  object-fit: cover;
  border-radius: 15px;
  width: 100%;
  height: 100% !important;
}
body.single-product .product-details .woocommerce-product-gallery-wrapper .woocommerce-product-gallery .wpg__images .swiper-button {
  display: none;
}
body.single-product .product-details .woocommerce-product-gallery-wrapper .woocommerce-product-gallery .wpg__thumbs {
  width: 100%;
  margin-top: 20px;
}
body.single-product .product-details .woocommerce-product-gallery-wrapper .woocommerce-product-gallery .wpg__thumbs .wpg__thumbs-slider-wrapper {
  position: relative;
  width: 100%;
}
body.single-product .product-details .woocommerce-product-gallery-wrapper .woocommerce-product-gallery .wpg__thumbs .swiper-thumbs {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
@media only screen and (max-width: 63.99875rem) {
  body.single-product .product-details .woocommerce-product-gallery-wrapper .woocommerce-product-gallery .wpg__thumbs .swiper-thumbs {
    height: auto;
  }
}
body.single-product .product-details .woocommerce-product-gallery-wrapper .woocommerce-product-gallery .wpg__thumbs .swiper-button {
  border: none;
  padding: 0;
  color: #0f172a;
  z-index: 2;
  position: absolute;
  top: 50% !important;
  bottom: unset !important;
  transform: translateY(-50%);
  margin: 0;
}
body.single-product .product-details .woocommerce-product-gallery-wrapper .woocommerce-product-gallery .wpg__thumbs .swiper-button {
  width: 2.125rem;
  height: 2.125rem;
}
@media only screen and (max-width: 63.99875rem) {
  body.single-product .product-details .woocommerce-product-gallery-wrapper .woocommerce-product-gallery .wpg__thumbs .swiper-button {
    width: 1.875rem;
    height: 1.875rem;
  }
}
body.single-product .product-details .woocommerce-product-gallery-wrapper .woocommerce-product-gallery .wpg__thumbs .swiper-button::before {
  width: 1.25rem;
  height: 1.25rem;
}
@media only screen and (max-width: 63.99875rem) {
  body.single-product .product-details .woocommerce-product-gallery-wrapper .woocommerce-product-gallery .wpg__thumbs .swiper-button::before {
    width: 1.125rem;
    height: 1.125rem;
  }
}
body.single-product .product-details .woocommerce-product-gallery-wrapper .woocommerce-product-gallery .wpg__thumbs .swiper-button.swiper-button-prev {
  left: -12px;
}
@media only screen and (max-width: 47.99875rem) {
  body.single-product .product-details .woocommerce-product-gallery-wrapper .woocommerce-product-gallery .wpg__thumbs .swiper-button.swiper-button-prev {
    left: -5px;
  }
}
body.single-product .product-details .woocommerce-product-gallery-wrapper .woocommerce-product-gallery .wpg__thumbs .swiper-button.swiper-button-prev::before {
  transform: rotate(0deg);
}
body.single-product .product-details .woocommerce-product-gallery-wrapper .woocommerce-product-gallery .wpg__thumbs .swiper-button.swiper-button-next {
  right: -12px;
  left: unset;
}
@media only screen and (max-width: 47.99875rem) {
  body.single-product .product-details .woocommerce-product-gallery-wrapper .woocommerce-product-gallery .wpg__thumbs .swiper-button.swiper-button-next {
    right: -5px;
  }
}
body.single-product .product-details .woocommerce-product-gallery-wrapper .woocommerce-product-gallery .wpg__thumbs .swiper-button.swiper-button-next::before {
  transform: rotate(180deg);
}
body.single-product .product-details .woocommerce-product-gallery-wrapper .woocommerce-product-gallery .wpg__thumbs .swiper-slide {
  height: auto !important;
}
body.single-product .product-details .woocommerce-product-gallery-wrapper .woocommerce-product-gallery .wpg__thumbs .swiper-slide .wpg__thumb {
  transition: 0.2s ease;
  border-radius: 7px;
}
body.single-product .product-details .woocommerce-product-gallery-wrapper .woocommerce-product-gallery .wpg__thumbs .swiper-slide.swiper-slide-thumb-active .wpg__thumb, body.single-product .product-details .woocommerce-product-gallery-wrapper .woocommerce-product-gallery .wpg__thumbs .swiper-slide:hover .wpg__thumb {
  border: 2px solid #0d175c;
}
body.single-product .product-details .woocommerce-product-gallery-wrapper .woocommerce-product-gallery .wpg__thumbs .swiper-slide .res.ar-16-9 {
  aspect-ratio: 3/2;
}
body.single-product .product-details .woocommerce-product-gallery-wrapper .woocommerce-product-gallery .wpg__thumbs .swiper-slide .res img {
  object-fit: cover;
  height: 100% !important;
}
body.single-product .product-details .summary.entry-summary {
  margin-bottom: 0 !important;
}
body.single-product .product-details .summary.entry-summary {
  padding-left: 0;
}
@media only screen and (min-width: 64rem) {
  body.single-product .product-details .summary.entry-summary {
    padding-left: 3.125rem;
  }
}
@media only screen and (min-width: 64rem) {
  body.single-product .product-details .summary.entry-summary {
    flex: 1 1 0;
  }
}
@media only screen and (max-width: 63.99875rem) {
  body.single-product .product-details .summary.entry-summary {
    flex: 1 1 0;
    padding-top: 20px;
  }
}
body.single-product .product-details .summary.entry-summary .product_title {
  position: relative;
  line-height: 1.4;
  text-transform: uppercase;
  color: #0d175c;
}
body.single-product .product-details .summary.entry-summary .product_title {
  margin-bottom: 0.75rem;
}
@media only screen and (min-width: 64rem) {
  body.single-product .product-details .summary.entry-summary .product_title {
    margin-bottom: 1.25rem;
  }
}
body.single-product .product-details .summary.entry-summary .product_title {
  font-size: 1.25rem;
}
@media only screen and (min-width: 64rem) {
  body.single-product .product-details .summary.entry-summary .product_title {
    font-size: 2.375rem;
  }
}
@media only screen and (min-width: 96rem) {
  body.single-product .product-details .summary.entry-summary .product_title {
    font-size: 42px;
  }
}
body.single-product .product-details .summary.entry-summary .product-meta-list-new {
  border: 1px solid #e9e9e9;
  border-radius: 16px;
  padding: 16px 24px;
  background-color: #f6f6f6;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
body.single-product .product-details .summary.entry-summary .product-meta-list-new .meta-row {
  display: flex;
  align-items: center;
  padding: 2px 0 8px;
  border-bottom: 0.84px solid;
  border-image-source: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.15) 50%, rgba(0, 0, 0, 0) 100%);
  border-image-slice: 1;
  gap: 16px;
}
body.single-product .product-details .summary.entry-summary .product-meta-list-new .meta-row:first-child {
  padding-top: 0;
}
body.single-product .product-details .summary.entry-summary .product-meta-list-new .meta-row:last-child {
  border-bottom: none;
  border-image-source: none;
}
body.single-product .product-details .summary.entry-summary .product-meta-list-new .meta-row .meta-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0f1e5c;
  flex-shrink: 0;
}
body.single-product .product-details .summary.entry-summary .product-meta-list-new .meta-row .meta-label {
  font-weight: bold;
  color: #0f1e5c;
  width: 40%;
}
body.single-product .product-details .summary.entry-summary .product-meta-list-new .meta-row .meta-label {
  font-size: 0.875rem;
}
@media only screen and (min-width: 64rem) {
  body.single-product .product-details .summary.entry-summary .product-meta-list-new .meta-row .meta-label {
    font-size: 0.9375rem;
  }
}
body.single-product .product-details .summary.entry-summary .product-meta-list-new .meta-row .meta-value {
  font-weight: 500;
  color: #0f1e5c;
  width: 55%;
}
body.single-product .product-details .summary.entry-summary .product-meta-list-new .meta-row .meta-value {
  font-size: 0.875rem;
}
@media only screen and (min-width: 64rem) {
  body.single-product .product-details .summary.entry-summary .product-meta-list-new .meta-row .meta-value {
    font-size: 0.9375rem;
  }
}
body.single-product .product-details .summary.entry-summary .woocommerce-product-details__short-description {
  font-size: 16px;
  font-weight: 400;
  color: #2a2a2a;
  text-align: justify;
  padding: 8px 0 20px;
}
body.single-product .product-details .summary.entry-summary .woocommerce-product-details__short-description strong {
  color: #000000;
}
body.single-product .product-details .summary.entry-summary .custom-variation-wrap {
  position: relative;
}
body.single-product .product-details .summary.entry-summary .custom-variation-wrap .btn-buy-now {
  width: 100%;
  margin-top: 5px;
}
body.single-product .product-details .summary.entry-summary form.cart {
  font-size: 15px;
  margin: 20px 0 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
body.single-product .product-details .summary.entry-summary form.cart {
  grid-gap: 0.625rem;
  gap: 0.625rem;
}
body.single-product .product-details .summary.entry-summary form.cart::before, body.single-product .product-details .summary.entry-summary form.cart::after {
  content: none;
}
body.single-product .product-details .summary.entry-summary form.cart table.variations {
  border-collapse: unset;
}
body.single-product .product-details .summary.entry-summary form.cart table.variations tbody {
  background: transparent;
}
body.single-product .product-details .summary.entry-summary form.cart table.variations th {
  padding: 0;
}
body.single-product .product-details .summary.entry-summary form.cart .quantity input[type=button] {
  display: none;
}
body.single-product .product-details .summary.entry-summary form.cart .quantity input[type=number] {
  height: 44px;
  padding: 5px 5px 5px 16px;
  border: 1px solid #3c3c3c;
  border-radius: 4px;
  background-color: transparent;
}
body.single-product .product-details .summary.entry-summary form.cart .quantity input[type=number].qty::-webkit-inner-spin-button,
body.single-product .product-details .summary.entry-summary form.cart .quantity input[type=number].qty::-webkit-outer-spin-button {
  opacity: 1 !important;
  height: 40px;
}
body.single-product .product-details .summary.entry-summary form.cart .quantity input[type=number].qty::-webkit-inner-spin-button {
  -webkit-filter: brightness(0.9);
          filter: brightness(0.9);
}
body.single-product .product-details .summary.entry-summary form.cart .quantity input[type=number].qty {
  width: 100px;
  text-align: left;
  font-weight: 600;
  color: #3c3c3c;
  -moz-appearance: textfield;
}
body.single-product .product-details .summary.entry-summary form.cart button.single_add_to_cart_button,
body.single-product .product-details .summary.entry-summary form.cart button[name=add-to-cart] {
  height: 44px;
  width: 310px;
  background-color: transparent;
  border: 1px solid #0d175c;
  border-radius: 4px;
  color: #0d175c;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s;
}
@media only screen and (max-width: 39.99875rem) {
  body.single-product .product-details .summary.entry-summary form.cart button.single_add_to_cart_button,
  body.single-product .product-details .summary.entry-summary form.cart button[name=add-to-cart] {
    padding: 0 15px;
    width: 100%;
    margin-bottom: 10px;
  }
}
body.single-product .product-details .summary.entry-summary form.cart button.single_add_to_cart_button::after,
body.single-product .product-details .summary.entry-summary form.cart button[name=add-to-cart]::after {
  content: "";
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAoCAYAAACM/rhtAAAACXBIWXMAABYlAAAWJQFJUiTwAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAOdEVYdFNvZnR3YXJlAEZpZ21hnrGWYwAAA+JJREFUeAHtWE1S1EAUfq+TWIhgtTstFdsTgCdwKC+gJ1BPgO4QrSJWAbITl+7kBMAJGE7gcAIbwSp2tjBQ1Myk29f5I8MkM5CZsOKrSk0n/abz9fvr9wJwg+GAMAIsTD5+Qwu9NogiXNQYaQDWV473f8CQGIrgPL8vmL61QYvM5M0TSalbrdnVs0MJJVGaYExumxYQ8UKKCG3RkNM1DfFzS/KUHT1bU0pBCbhQEqg9H1MS+tvy0cG77Pynu1M+kVu0MuN6guaUDyVQWoNE4C8R4AbNzsq//VqezMfJJ9vkkHZOnbCjp2W0yKAEFvjDGROZEoyGtSI54+j1eMjHgQsogSuZ+B3nfOyMcwiCmVT3FLnzE49qefKokSdjo3VtfkyoszGlrqJJHERovDMxh4g1ImIjlcNooMCYRoBmF1qdtX5RXkjw490p6/SLIyRVCNKuv9I8+Jw3l0twYWJqERn46QKIO3bHJCwNM4qBY010ZYfXEAhrdvJfEVrFmOlBJHsIfph8/JIhbsS3Ehl7u6RkHSqAz4Voa70NSS7VenapeVDPyvREMQM2FwqThrwWm62KXEhQSekxNouxNchSi718sn/ggsd5i7QPm/6ZlFAxLElN53Z4Q2a3gZmd70ozLWgLBCccazBbRYvaY87Rt34au/MgeLVy8qcxjBww0wAdeVuUL1Uq16VB3fFS9o5jCoOAXurTD7fHGDJnblg53XHkOaFOlwa7CDK3nZLSAQooRrpDA2ZnWDkXg5SUBlcVEtTgpZPksIX5b/no9xpa56arX813WbmkjrQ4BSWzc10+uEoOS0WACosA0AL64LLRfRm5MC9Gw55jkOUIS/vrGJyGawLG7zL26LuAvGomEorO3msBooneZbAnMPMIJo7NqfoQUDFsKkpLN4D6xfkegqhZGnnoBZVr0Q289B0O0z15soeg62ZSQ3yqVAmdcaUmNAcTpKNHGYS9aJIJqBgUIM/jYSOvkGX5f4p8gUL/OVSMJEDI//by5ot6kmsJlEEBYpGvwUygMC+oQUUYFCDh+/MeLjVlPanRELAyMwcIL+OhWlLdhWqCwrbTGIx2RItcrNFGhWTzZN7CQqKQIEVX0h/w6MvAaBH2PXGpT9rYLJLr23ZSZ/cL4kWo6n3/haoTGAHijvFrfCup6nkKZQj6d8RMx9HbmUizZt/S9HkN7HVJUAfHwzUopYRFiO3oopcrt8We9WstBn6bsSTbjrZdnoDRQnoBe+WfyEY/IQcGoN5Why9u37Na26OdP6BH92EYIO6SVr5TN/fWPx7clJX6umX72c4VNOpGKSu87FEKN7jBOf4DDnWgu3tgdMIAAAAASUVORK5CYII=");
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
}
body.single-product .product-details .summary.entry-summary form.cart button.single_add_to_cart_button::after,
body.single-product .product-details .summary.entry-summary form.cart button[name=add-to-cart]::after {
  width: 1.25rem;
  height: 1.25rem;
}
body.single-product .product-details .summary.entry-summary form.cart button.single_add_to_cart_button:hover,
body.single-product .product-details .summary.entry-summary form.cart button[name=add-to-cart]:hover {
  background: #0d175c;
  color: #ffffff;
}
body.single-product .product-details .summary.entry-summary form.cart button.single_add_to_cart_button:hover::after,
body.single-product .product-details .summary.entry-summary form.cart button[name=add-to-cart]:hover::after {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
body.single-product .product-details .summary.entry-summary .product_meta {
  position: relative;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e0e0e0;
  display: flex;
  align-items: center;
  gap: 30px;
}
body.single-product .product-details .summary.entry-summary .product_meta {
  font-size: 0.875rem;
}
@media only screen and (min-width: 64rem) {
  body.single-product .product-details .summary.entry-summary .product_meta {
    font-size: 1rem;
  }
}
@media only screen and (max-width: 39.99875rem) {
  body.single-product .product-details .summary.entry-summary .product_meta {
    gap: 20px;
  }
}
body.single-product .product-details .summary.entry-summary .product_meta > * {
  display: block;
}
body.single-product .product-details .summary.entry-summary .product_meta > *:not(:last-child) {
  padding-bottom: 8px;
  margin-bottom: 8px;
}
body.single-product .product-details .summary.entry-summary .product_meta .sku_wrapper {
  position: relative;
  font-weight: 400;
  padding-bottom: 0;
  margin-bottom: 0;
  color: #707070;
}
body.single-product .product-details .summary.entry-summary .product_meta .sku_wrapper.rating_wrapper::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -15px;
  background-color: #c7c7c7;
  width: 1px;
  height: 80%;
}
@media only screen and (max-width: 39.99875rem) {
  body.single-product .product-details .summary.entry-summary .product_meta .sku_wrapper.rating_wrapper::after {
    left: -10px;
  }
}
body.single-product .product-details .summary.entry-summary .product_meta .sku_wrapper .sku {
  color: #0d175c;
  font-weight: 500;
}
body.single-product .product-details .summary.entry-summary .product_meta .posted_in {
  position: relative;
  font-weight: 400;
  display: none;
}
body.single-product .product-details .summary.entry-summary .product_meta .posted_in::before {
  content: "";
  background-color: #ff6805;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 24 24"><path d="M4 10.5c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5s1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5zm0-6c-.83 0-1.5.67-1.5 1.5S3.17 7.5 4 7.5S5.5 6.83 5.5 6S4.83 4.5 4 4.5zm0 12c-.83 0-1.5.68-1.5 1.5s.68 1.5 1.5 1.5s1.5-.68 1.5-1.5s-.67-1.5-1.5-1.5zM7 19h14v-2H7v2zm0-6h14v-2H7v2zm0-8v2h14V5H7z"></path></svg>');
          mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 24 24"><path d="M4 10.5c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5s1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5zm0-6c-.83 0-1.5.67-1.5 1.5S3.17 7.5 4 7.5S5.5 6.83 5.5 6S4.83 4.5 4 4.5zm0 12c-.83 0-1.5.68-1.5 1.5s.68 1.5 1.5 1.5s1.5-.68 1.5-1.5s-.67-1.5-1.5-1.5zM7 19h14v-2H7v2zm0-6h14v-2H7v2zm0-8v2h14V5H7z"></path></svg>');
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  width: 15px;
  height: 13px;
  margin-right: 5px;
}
body.single-product .product-details .summary.entry-summary .product_meta .posted_in a {
  font-weight: 600;
}
body.single-product .product-details .summary.entry-summary .product_meta .tagged_as {
  position: relative;
  font-weight: 400;
}
body.single-product .product-details .summary.entry-summary .product_meta .tagged_as::before {
  content: "";
  background-color: #ff6805;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 640 512"><path d="M497.941 225.941L286.059 14.059A48 48 0 0 0 252.118 0H48C21.49 0 0 21.49 0 48v204.118a48 48 0 0 0 14.059 33.941l211.882 211.882c18.744 18.745 49.136 18.746 67.882 0l204.118-204.118c18.745-18.745 18.745-49.137 0-67.882zM112 160c-26.51 0-48-21.49-48-48s21.49-48 48-48s48 21.49 48 48s-21.49 48-48 48zm513.941 133.823L421.823 497.941c-18.745 18.745-49.137 18.745-67.882 0l-.36-.36L527.64 323.522c16.999-16.999 26.36-39.6 26.36-63.64s-9.362-46.641-26.36-63.64L331.397 0h48.721a48 48 0 0 1 33.941 14.059l211.882 211.882c18.745 18.745 18.745 49.137 0 67.882z"></path></svg>');
          mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 640 512"><path d="M497.941 225.941L286.059 14.059A48 48 0 0 0 252.118 0H48C21.49 0 0 21.49 0 48v204.118a48 48 0 0 0 14.059 33.941l211.882 211.882c18.744 18.745 49.136 18.746 67.882 0l204.118-204.118c18.745-18.745 18.745-49.137 0-67.882zM112 160c-26.51 0-48-21.49-48-48s21.49-48 48-48s48 21.49 48 48s-21.49 48-48 48zm513.941 133.823L421.823 497.941c-18.745 18.745-49.137 18.745-67.882 0l-.36-.36L527.64 323.522c16.999-16.999 26.36-39.6 26.36-63.64s-9.362-46.641-26.36-63.64L331.397 0h48.721a48 48 0 0 1 33.941 14.059l211.882 211.882c18.745 18.745 18.745 49.137 0 67.882z"></path></svg>');
  margin-right: 5px;
  width: 15px;
  height: 15px;
}
body.single-product .product-details .summary.entry-summary .product_meta .tagged_as a {
  font-weight: 600;
}
body.single-product .product-details .summary.entry-summary .single-variation-discount {
  display: none !important;
}
body.single-product .product-details .summary.entry-summary .onsale {
  width: -webkit-fit-content;
  width: fit-content;
  height: 30px;
  border-radius: 4px;
  padding: 5px 20px;
  font-weight: 400;
  color: #000c36;
  position: relative;
  top: 0 !important;
  left: 0 !important;
  min-width: auto;
  min-height: auto;
  font-size: 14px;
  line-height: normal;
  margin-bottom: 0px;
  background: linear-gradient(180deg, rgba(231, 56, 58, 0.1) 0%, rgba(195, 49, 49, 0.1) 51.01%, rgba(149, 37, 31, 0.1) 100%);
}
body.single-product .product-details .summary.entry-summary .onsale {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
body.single-product .product-details .summary.entry-summary .price {
  margin-bottom: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
body.single-product .product-details .summary.entry-summary .price {
  grid-gap: 0.625rem;
  gap: 0.625rem;
}
body.single-product .product-details .summary.entry-summary .price .woocommerce-Price-amount.amount {
  color: #0d175c;
}
body.single-product .product-details .summary.entry-summary .price .woocommerce-Price-amount.amount {
  font-size: 1.375rem;
}
@media only screen and (min-width: 48rem) {
  body.single-product .product-details .summary.entry-summary .price .woocommerce-Price-amount.amount {
    font-size: 1.5rem;
  }
}
@media only screen and (min-width: 64rem) {
  body.single-product .product-details .summary.entry-summary .price .woocommerce-Price-amount.amount {
    font-size: 2.25rem;
  }
}
body.single-product .product-details .summary.entry-summary .price .woocommerce-Price-amount.amount .woocommerce-Price-currencySymbol {
  transform: translate(4px, -10px);
  display: inline-block;
}
body.single-product .product-details .summary.entry-summary .price .woocommerce-Price-amount.amount .woocommerce-Price-currencySymbol {
  font-size: 1.125rem;
}
@media only screen and (min-width: 64rem) {
  body.single-product .product-details .summary.entry-summary .price .woocommerce-Price-amount.amount .woocommerce-Price-currencySymbol {
    font-size: 1.375rem;
  }
}
body.single-product .product-details .summary.entry-summary .price span[aria-hidden=true] {
  color: #0d175c;
}
body.single-product .product-details .summary.entry-summary .price span.amount {
  color: #0d175c;
}
body.single-product .product-details .summary.entry-summary .price span.amount {
  font-size: 1.125rem;
}
@media only screen and (min-width: 48rem) {
  body.single-product .product-details .summary.entry-summary .price span.amount {
    font-size: 1.25rem;
  }
}
@media only screen and (min-width: 64rem) {
  body.single-product .product-details .summary.entry-summary .price span.amount {
    font-size: 1.375rem;
  }
}
body.single-product .product-details .summary.entry-summary .price ins {
  order: 1;
  text-decoration: none;
  color: #0d175c;
}
body.single-product .product-details .summary.entry-summary .price ins {
  font-size: 1.375rem;
}
@media only screen and (min-width: 64rem) {
  body.single-product .product-details .summary.entry-summary .price ins {
    font-size: 2rem;
  }
}
body.single-product .product-details .summary.entry-summary .price ins .woocommerce-Price-currencySymbol {
  font-size: 1.125rem;
}
@media only screen and (min-width: 64rem) {
  body.single-product .product-details .summary.entry-summary .price ins .woocommerce-Price-currencySymbol {
    font-size: 1.375rem;
  }
}
body.single-product .product-details .summary.entry-summary .price del {
  order: 2;
  opacity: 1;
  color: #0d175c;
  font-weight: 400;
}
body.single-product .product-details .summary.entry-summary .price del {
  font-size: 1rem;
}
@media only screen and (min-width: 64rem) {
  body.single-product .product-details .summary.entry-summary .price del {
    font-size: 1.25rem;
  }
}
body.single-product .product-details .summary.entry-summary .price del .woocommerce-Price-amount.amount {
  color: #0d175c;
  font-weight: 400;
}
body.single-product .product-details .summary.entry-summary .price del .woocommerce-Price-amount.amount {
  font-size: 0.9375rem;
}
@media only screen and (min-width: 64rem) {
  body.single-product .product-details .summary.entry-summary .price del .woocommerce-Price-amount.amount {
    font-size: 1rem;
  }
}
body.single-product .product-details .summary.entry-summary .product-contact {
  display: flex;
  gap: 16px;
  margin-top: 20px;
}
body.single-product .product-details .summary.entry-summary .product-contact .btn-request,
body.single-product .product-details .summary.entry-summary .product-contact .btn-consult {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 12px 24px;
  font-weight: bold;
  color: #ffffff;
  text-decoration: none;
  transition: background-color 0.3s, transform 0.3s;
}
body.single-product .product-details .summary.entry-summary .product-contact .btn-request,
body.single-product .product-details .summary.entry-summary .product-contact .btn-consult {
  font-size: 0.875rem;
}
@media only screen and (min-width: 64rem) {
  body.single-product .product-details .summary.entry-summary .product-contact .btn-request,
  body.single-product .product-details .summary.entry-summary .product-contact .btn-consult {
    font-size: 0.9375rem;
  }
}
body.single-product .product-details .summary.entry-summary .product-contact .btn-request,
body.single-product .product-details .summary.entry-summary .product-contact .btn-consult {
  flex: 1;
}
body.single-product .product-details .summary.entry-summary .product-contact .btn-request svg,
body.single-product .product-details .summary.entry-summary .product-contact .btn-consult svg {
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
body.single-product .product-details .summary.entry-summary .product-contact .btn-request svg,
body.single-product .product-details .summary.entry-summary .product-contact .btn-consult svg {
  width: 1rem;
  height: 1rem;
}
body.single-product .product-details .summary.entry-summary .product-contact .btn-request {
  background-color: #0f1e5c;
}
body.single-product .product-details .summary.entry-summary .product-contact .btn-request:hover {
  background-color: #ff6805;
}
body.single-product .product-details .summary.entry-summary .product-contact .btn-request:hover svg {
  transform: translate(2px, -2px);
}
body.single-product .product-details .summary.entry-summary .product-contact .btn-consult {
  background-color: #ff6e00;
}
body.single-product .product-details .summary.entry-summary .product-contact .btn-consult:hover {
  background-color: #cc5800;
}
body.single-product .product-details .summary.entry-summary .product-contact .btn-consult:hover svg {
  transform: scale(1.1);
}
body.single-product .product-details .summary.entry-summary .product-detail-tabs {
  margin-top: 1.25rem;
}
@media only screen and (min-width: 64rem) {
  body.single-product .product-details .summary.entry-summary .product-detail-tabs {
    margin-top: 1.875rem;
  }
}
body.single-product .product-details .summary.entry-summary .product-detail-tabs .wc-tabs-wrapper .tabs.wc-tabs {
  padding-left: 0;
  border-bottom: 2px solid #bfbfbf;
}
body.single-product .product-details .summary.entry-summary .product-detail-tabs .wc-tabs-wrapper .tabs.wc-tabs::before, body.single-product .product-details .summary.entry-summary .product-detail-tabs .wc-tabs-wrapper .tabs.wc-tabs::after {
  content: none;
}
body.single-product .product-details .summary.entry-summary .product-detail-tabs .wc-tabs-wrapper .tabs.wc-tabs li {
  background: transparent;
  border: none;
  padding: 12px 0 6px;
  margin: 0 20px 0 0;
}
body.single-product .product-details .summary.entry-summary .product-detail-tabs .wc-tabs-wrapper .tabs.wc-tabs li:last-child {
  margin-right: 0;
}
body.single-product .product-details .summary.entry-summary .product-detail-tabs .wc-tabs-wrapper .tabs.wc-tabs li.active::before, body.single-product .product-details .summary.entry-summary .product-detail-tabs .wc-tabs-wrapper .tabs.wc-tabs li.active::after {
  content: none;
}
body.single-product .product-details .summary.entry-summary .product-detail-tabs .wc-tabs-wrapper .tabs.wc-tabs li.active {
  border-bottom: 2px solid #340a10;
}
body.single-product .product-details .summary.entry-summary .product-detail-tabs .wc-tabs-wrapper .tabs.wc-tabs li.active a {
  color: #340a10;
}
body.single-product .product-details .summary.entry-summary .product-detail-tabs .wc-tabs-wrapper .tabs.wc-tabs li a {
  padding: 0;
  font-weight: 500;
  line-height: 1.4;
  color: #707070;
  text-align: left;
  width: 100%;
}
body.single-product .product-details .summary.entry-summary .product-detail-tabs .wc-tabs-wrapper .tabs.wc-tabs li a {
  font-size: 1.125rem;
}
@media only screen and (min-width: 64rem) {
  body.single-product .product-details .summary.entry-summary .product-detail-tabs .wc-tabs-wrapper .tabs.wc-tabs li a {
    font-size: 1.375rem;
  }
}
body.single-product .product-details .summary.entry-summary .product-detail-tabs .wc-tabs-wrapper .wc-tab {
  color: #3c3c3c;
  margin-bottom: 0;
}
body.single-product .product-details .summary.entry-summary .product-detail-tabs .wc-tabs-wrapper .wc-tab > h2 {
  display: none;
}
body.single-product .product-details .summary.entry-summary .product-detail-tabs .wc-tabs-wrapper .wc-tab ul {
  padding-left: 25px;
}
body.single-product .product-details .summary.entry-summary .product-detail-tabs .wc-tabs-wrapper .wc-tab ul li {
  margin-bottom: 6px;
}
body.single-product .product-details .summary.entry-summary .product-detail-tabs .wc-tabs-wrapper .wc-tab ul li:last-child {
  margin-bottom: 0;
}
body.single-product .product-main-desc {
  padding-bottom: 40px;
}
body.single-product .product-main-desc {
  padding-top: 0;
}
@media only screen and (min-width: 64rem) {
  body.single-product .product-main-desc {
    padding-top: 2.5rem;
  }
}
body.single-product .product-main-desc .container p {
  color: #333333;
  text-align: justify;
  line-height: 1.6;
}
body.single-product .product-after-summary {
  padding-bottom: 30px;
}
body.single-product .product-after-summary {
  padding-top: 1.875rem;
}
@media only screen and (min-width: 64rem) {
  body.single-product .product-after-summary {
    padding-top: 3.125rem;
  }
}
body.single-product .product-after-summary .wrapper {
  padding-top: 0;
}
@media only screen and (min-width: 64rem) {
  body.single-product .product-after-summary .wrapper {
    padding-top: 2.5rem;
  }
}
body.single-product .product-after-summary .wrapper .col-content {
  width: 70%;
}
body.single-product .product-after-summary .wrapper .col-content {
  padding-right: 0;
}
@media only screen and (min-width: 64rem) {
  body.single-product .product-after-summary .wrapper .col-content {
    padding-right: 0.9375rem;
  }
}
@media only screen and (max-width: 63.99875rem) {
  body.single-product .product-after-summary .wrapper .col-content {
    width: 100%;
  }
}
body.single-product .product-after-summary .wc-tabs-wrapper {
  border: 1px solid #e9e9e9;
  border-radius: 8px;
  padding: 30px;
  background-color: #fff;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}
body.single-product .product-after-summary .wc-tabs-wrapper {
  margin-top: 0.625rem;
}
@media only screen and (min-width: 48rem) {
  body.single-product .product-after-summary .wc-tabs-wrapper {
    margin-top: 0.9375rem;
  }
}
@media only screen and (min-width: 64rem) {
  body.single-product .product-after-summary .wc-tabs-wrapper {
    margin-top: 1.875rem;
  }
}
@media only screen and (max-width: 47.99875rem) {
  body.single-product .product-after-summary .wc-tabs-wrapper {
    padding: 24px 12px;
  }
}
body.single-product .product-after-summary .wc-tabs-wrapper .wc-tabs {
  display: flex;
  gap: 15px;
  padding: 0 !important;
  margin: 0 !important;
  padding-bottom: 12px !important;
  border-bottom: 1px solid #ededed;
  position: relative;
}
body.single-product .product-after-summary .wc-tabs-wrapper .wc-tabs::after {
  content: none !important;
}
@media only screen and (max-width: 47.99875rem) {
  body.single-product .product-after-summary .wc-tabs-wrapper .wc-tabs {
    flex-wrap: wrap;
  }
}
body.single-product .product-after-summary .wc-tabs-wrapper .wc-tabs::before {
  content: none !important;
}
body.single-product .product-after-summary .wc-tabs-wrapper .wc-tabs li {
  text-align: center;
  border: none !important;
  margin: 0 30px 0 0 !important;
  padding: 0 0 6px 0 !important;
  background-color: transparent !important;
  border-radius: 0 !important;
  z-index: 2 !important;
  line-height: normal;
  position: relative;
}
body.single-product .product-after-summary .wc-tabs-wrapper .wc-tabs li::before, body.single-product .product-after-summary .wc-tabs-wrapper .wc-tabs li::after {
  content: none !important;
}
body.single-product .product-after-summary .wc-tabs-wrapper .wc-tabs li.active {
  color: #a67342 !important;
}
body.single-product .product-after-summary .wc-tabs-wrapper .wc-tabs li.active::after {
  content: "" !important;
  position: absolute;
  bottom: -13px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #a67342;
  border-radius: 99px;
}
body.single-product .product-after-summary .wc-tabs-wrapper .wc-tabs li.active a {
  color: #a67342 !important;
}
body.single-product .product-after-summary .wc-tabs-wrapper .wc-tabs li a {
  width: 100%;
  padding: 0 !important;
  font-weight: bold !important;
  color: #4f4f4f !important;
}
body.single-product .product-after-summary .wc-tabs-wrapper .wc-tabs li a {
  font-size: 1rem;
}
@media only screen and (min-width: 48rem) {
  body.single-product .product-after-summary .wc-tabs-wrapper .wc-tabs li a {
    font-size: 1.125rem;
  }
}
@media only screen and (min-width: 64rem) {
  body.single-product .product-after-summary .wc-tabs-wrapper .wc-tabs li a {
    font-size: 1.25rem;
  }
}
body.single-product .product-after-summary .wc-tabs-wrapper .wc-tabs li a {
  text-transform: none;
}
body.single-product .product-after-summary .wc-tabs-wrapper .wc-tab {
  margin-top: 25px;
  margin-bottom: 0px;
  color: #4f4f4f;
  line-height: 1.6;
}
@media only screen and (max-width: 47.99875rem) {
  body.single-product .product-after-summary .wc-tabs-wrapper .wc-tab {
    line-height: 1.5;
  }
}
body.single-product .product-after-summary .wc-tabs-wrapper .wc-tab a {
  color: #ff6805;
}
body.single-product .product-after-summary .wc-tabs-wrapper .wc-tab#tab-description > h2:first-child {
  display: none !important;
}
body.single-product .product-after-summary .wc-tabs-wrapper .wc-tab#tab-description .tab-description-inner {
  position: relative;
  transition: max-height 0.4s ease;
  font-size: 16px;
}
body.single-product .product-after-summary .wc-tabs-wrapper .wc-tab#tab-description .tab-description-inner > h2:first-child {
  display: none !important;
}
body.single-product .product-after-summary .wc-tabs-wrapper .wc-tab#tab-description .tab-description-inner.has-collapsed-content {
  max-height: 250px;
  overflow: hidden;
}
body.single-product .product-after-summary .wc-tabs-wrapper .wc-tab#tab-description .tab-description-inner.has-collapsed-content::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
  pointer-events: none;
  transition: opacity 0.3s;
}
body.single-product .product-after-summary .wc-tabs-wrapper .wc-tab#tab-description .tab-description-inner.is-expanded {
  max-height: none !important;
}
body.single-product .product-after-summary .wc-tabs-wrapper .wc-tab#tab-description .tab-description-inner.is-expanded::after {
  opacity: 0 !important;
}
body.single-product .product-after-summary .wc-tabs-wrapper .wc-tab#tab-description .read-more-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
body.single-product .product-after-summary .wc-tabs-wrapper .wc-tab#tab-description .read-more-wrapper .btn-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: none;
  color: #4f4f4f;
  font-weight: 600;
  cursor: pointer;
  padding: 8px 16px;
}
body.single-product .product-after-summary .wc-tabs-wrapper .wc-tab#tab-description .read-more-wrapper .btn-read-more {
  font-size: 0.875rem;
}
@media only screen and (min-width: 64rem) {
  body.single-product .product-after-summary .wc-tabs-wrapper .wc-tab#tab-description .read-more-wrapper .btn-read-more {
    font-size: 0.9375rem;
  }
}
body.single-product .product-after-summary .wc-tabs-wrapper .wc-tab#tab-description .read-more-wrapper .btn-read-more {
  transition: color 0.2s;
}
body.single-product .product-after-summary .wc-tabs-wrapper .wc-tab#tab-description .read-more-wrapper .btn-read-more:hover {
  color: #ff6805;
}
body.single-product .product-after-summary .wc-tabs-wrapper .wc-tab#tab-description .read-more-wrapper .btn-read-more svg {
  transition: transform 0.3s ease;
  width: 12px;
  height: 12px;
  stroke: currentColor;
  stroke-width: 2.5;
  fill: none;
}
body.single-product .product-after-summary .wc-tabs-wrapper .wc-tab#tab-description .read-more-wrapper .btn-read-more.is-expanded svg {
  transform: rotate(180deg);
}
body.single-product .product-after-summary .wc-tabs-wrapper .wc-tab #reviews {
  display: flex;
  flex-flow: row wrap;
}
body.single-product .product-after-summary .wc-tabs-wrapper .wc-tab #reviews {
  grid-gap: 1.875rem;
  gap: 1.875rem;
}
@media only screen and (min-width: 64rem) {
  body.single-product .product-after-summary .wc-tabs-wrapper .wc-tab #reviews #comments {
    flex: 0 0 60%;
    max-width: 60%;
  }
}
@media only screen and (max-width: 63.99875rem) {
  body.single-product .product-after-summary .wc-tabs-wrapper .wc-tab #reviews #comments {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
body.single-product .product-after-summary .wc-tabs-wrapper .wc-tab #reviews #comments .woocommerce-Reviews-title > span {
  color: #0d175c;
}
body.single-product .product-after-summary .wc-tabs-wrapper .wc-tab #reviews #comments .commentlist {
  list-style: none;
  margin: 0;
  padding: 1.25rem;
  background-color: #f5f5f5;
  border-radius: 10px;
}
@media only screen and (max-width: 47.99875rem) {
  body.single-product .product-after-summary .wc-tabs-wrapper .wc-tab #reviews #comments .commentlist {
    padding: 0;
  }
}
body.single-product .product-after-summary .wc-tabs-wrapper .wc-tab #reviews #comments .commentlist .comment_container {
  display: flex;
}
body.single-product .product-after-summary .wc-tabs-wrapper .wc-tab #reviews #comments .commentlist .comment_container {
  grid-gap: 0.9375rem;
  gap: 0.9375rem;
}
body.single-product .product-after-summary .wc-tabs-wrapper .wc-tab #reviews #comments .commentlist .comment_container > .avatar {
  aspect-ratio: 1/1;
  border-radius: 50%;
  position: relative;
  padding: 0;
}
body.single-product .product-after-summary .wc-tabs-wrapper .wc-tab #reviews #comments .commentlist .comment_container > .avatar {
  width: 3.125rem;
  height: 3.125rem;
}
@media only screen and (max-width: 47.99875rem) {
  body.single-product .product-after-summary .wc-tabs-wrapper .wc-tab #reviews #comments .commentlist .comment_container > .avatar {
    width: 2.5rem;
    height: 2.5rem;
  }
}
body.single-product .product-after-summary .wc-tabs-wrapper .wc-tab #reviews #comments .commentlist .comment_container > .comment-text {
  position: relative;
  top: -4px;
  margin: 0;
  padding: 0;
  border: none;
  flex: 1 1 0;
}
body.single-product .product-after-summary .wc-tabs-wrapper .wc-tab #reviews #comments .commentlist .comment_container > .comment-text .meta {
  margin-bottom: 5px;
}
body.single-product .product-after-summary .wc-tabs-wrapper .wc-tab #reviews #comments .commentlist .comment_container > .comment-text .meta .woocommerce-review__dash {
  font-size: 13px;
}
body.single-product .product-after-summary .wc-tabs-wrapper .wc-tab #reviews #comments .commentlist .comment_container > .comment-text .meta .woocommerce-review__published-date {
  font-size: 13px;
}
body.single-product .product-after-summary .wc-tabs-wrapper .wc-tab #reviews #comments .commentlist .comment_container > .comment-text .description {
  font-size: 15px;
  line-height: 1.6;
}
body.single-product .product-after-summary .wc-tabs-wrapper .wc-tab #reviews #comments .commentlist .comment_container > .comment-text .description p {
  line-height: inherit;
}
body.single-product .product-after-summary .wc-tabs-wrapper .wc-tab #reviews #comments .commentlist > :where(li.review, li.comment) {
  background-color: #fff;
  border-radius: 10px;
  padding: 20px;
  margin: 0;
}
@media only screen and (max-width: 47.99875rem) {
  body.single-product .product-after-summary .wc-tabs-wrapper .wc-tab #reviews #comments .commentlist > :where(li.review, li.comment) {
    padding: 10px;
  }
}
body.single-product .product-after-summary .wc-tabs-wrapper .wc-tab #reviews #comments .commentlist > :where(li.review, li.comment):not(:last-child) {
  margin-bottom: 15px;
}
body.single-product .product-after-summary .wc-tabs-wrapper .wc-tab #reviews #comments .commentlist > :where(li.review, li.comment) .children {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-top: 10px;
  padding-left: 50px;
}
@media only screen and (max-width: 47.99875rem) {
  body.single-product .product-after-summary .wc-tabs-wrapper .wc-tab #reviews #comments .commentlist > :where(li.review, li.comment) .children {
    padding-left: 10px;
  }
}
body.single-product .product-after-summary .wc-tabs-wrapper .wc-tab #reviews #comments .commentlist > :where(li.review, li.comment) .children > li.comment {
  background-color: #fafafa;
  border: 1px solid #f0f0f0;
  border-radius: 8px;
  padding: 15px;
}
@media only screen and (min-width: 64rem) {
  body.single-product .product-after-summary .wc-tabs-wrapper .wc-tab #reviews #review_form_wrapper {
    flex: 1 1 0;
  }
}
@media only screen and (max-width: 63.99875rem) {
  body.single-product .product-after-summary .wc-tabs-wrapper .wc-tab #reviews #review_form_wrapper {
    flex: 0 0 100%;
    max-width: 100%;
    order: -1;
  }
}
body.single-product .product-after-summary .wc-tabs-wrapper .wc-tab #reviews #review_form_wrapper #review_form {
  position: -webkit-sticky;
  position: sticky;
  top: 50px;
}
body.single-product .product-after-summary .wc-tabs-wrapper .wc-tab #reviews #review_form_wrapper #respond #reply-title {
  font-weight: 600;
}
body.single-product .product-after-summary .wc-tabs-wrapper .wc-tab #reviews #review_form_wrapper #respond #reply-title #cancel-comment-reply-link {
  font-size: 13px;
  color: #ff6805;
  font-weight: 400;
}
body.single-product .product-after-summary .wc-tabs-wrapper .wc-tab #reviews #review_form_wrapper #respond #commentform .comment-form-rating {
  margin-top: 10px;
}
body.single-product .product-after-summary .wc-tabs-wrapper .wc-tab #reviews #review_form_wrapper #respond #commentform .comment-form-rating {
  display: flex;
  flex-flow: row wrap;
}
body.single-product .product-after-summary .wc-tabs-wrapper .wc-tab #reviews #review_form_wrapper #respond #commentform .comment-form-rating {
  grid-gap: 0.625rem;
  gap: 0.625rem;
}
body.single-product .product-after-summary .wc-tabs-wrapper .wc-tab #reviews #review_form_wrapper #respond #commentform .comment-form-rating > label {
  font-size: 15px;
}
body.single-product .product-after-summary .wc-tabs-wrapper .wc-tab #reviews #review_form_wrapper #respond #commentform .comment-form-rating > label .required {
  color: #ff6805;
}
body.single-product .product-after-summary .wc-tabs-wrapper .wc-tab #reviews #review_form_wrapper #respond #commentform .comment-form-rating select#rating {
  border: 0;
  clip: rect(0, 0, 0, 0);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
  white-space: nowrap;
}
body.single-product .product-after-summary .wc-tabs-wrapper .wc-tab #reviews #review_form_wrapper #respond #commentform .comment-form-comment {
  margin-top: 10px;
  margin-bottom: 5px;
}
body.single-product .product-after-summary .wc-tabs-wrapper .wc-tab #reviews #review_form_wrapper #respond #commentform .comment-form-comment > label {
  display: none;
}
body.single-product .product-after-summary .wc-tabs-wrapper .wc-tab #reviews #review_form_wrapper #respond #commentform .comment-form-comment > label .required {
  color: #ff6805;
}
body.single-product .product-after-summary .wc-tabs-wrapper .wc-tab #reviews #review_form_wrapper #respond #commentform .comment-form-comment textarea {
  padding: 10px;
  font-size: 15px;
  border-radius: 8px;
  width: 100%;
}
body.single-product .product-after-summary .wc-tabs-wrapper .wc-tab #reviews #review_form_wrapper #respond #commentform .comment-form-comment textarea:focus {
  border: 1px solid #0d175c;
}
body.single-product .product-after-summary .wc-tabs-wrapper .wc-tab #reviews #review_form_wrapper #respond #commentform .form-submit [type=submit] {
  color: #fff;
  font-weight: 500;
  height: 40px;
  border: none;
  padding: 0 15px;
  border-radius: 5px;
}
body.single-product .product-after-summary .wc-tabs-wrapper .wc-tab #reviews .clear {
  border: 0;
  clip: rect(0, 0, 0, 0);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
  white-space: nowrap;
}
body.single-product .product-after-summary .wc-tabs-wrapper .woocommerce-Tabs-panel .tab-description-inner .wp-caption-text {
  padding-top: 10px;
  font-style: italic;
  font-weight: 400;
}
body.single-product .product-after-summary .wc-tabs-wrapper .woocommerce-Tabs-panel .product-description-flex-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
body.single-product .product-after-summary .wc-tabs-wrapper .woocommerce-Tabs-panel .product-description-flex-container .product-main-content-col {
  width: calc(68% - 10px);
}
@media only screen and (max-width: 47.99875rem) {
  body.single-product .product-after-summary .wc-tabs-wrapper .woocommerce-Tabs-panel .product-description-flex-container .product-main-content-col {
    width: 100%;
  }
}
body.single-product .product-after-summary .related.products {
  padding: 40px 0 80px;
  position: relative;
  z-index: 99;
}
body.single-product .product-after-summary .related.products .heading-title {
  margin-bottom: 1.25rem;
}
@media only screen and (min-width: 64rem) {
  body.single-product .product-after-summary .related.products .heading-title {
    margin-bottom: 2.5rem;
  }
}
body.single-product .product-after-summary .related.products .swiper-wrapper .swiper-slide {
  padding: 0 6px;
  width: 33.3333333333%;
}
@media only screen and (max-width: 47.99875rem) {
  body.single-product .product-after-summary .related.products .swiper-wrapper .swiper-slide {
    width: 50%;
  }
}
@media only screen and (max-width: 47.99875rem) {
  body.single-product .product-after-summary .related.products .swiper-wrapper .swiper-slide {
    width: 100%;
  }
}
body.single-product .product-after-summary .related.products .swiper-wrapper .swiper-slide .product-item .product-content .title {
  font-size: 16px !important;
}
body.single-product .product-after-summary .related.products .swiper-wrapper .swiper-slide .product-item .product-content .title::after {
  content: none;
}
body.single-product .product-after-summary .related.products .swiper-wrapper .swiper-slide .product-item .product-content .price-product {
  margin: 0;
}
body.single-product .product-after-summary .related.products .swiper-wrapper .swiper-slide .product-item .product-content .btn-link {
  margin-top: 0.625rem;
}
@media only screen and (min-width: 64rem) {
  body.single-product .product-after-summary .related.products .swiper-wrapper .swiper-slide .product-item .product-content .btn-link {
    margin-top: 0.9375rem;
  }
}
body.single-product .product-after-summary .related.products .swiper-controls .swiper-button::before {
  background-color: transparent !important;
  border: none !important;
  color: #383838 !important;
}
body.single-product .product-after-summary .related.products .swiper-controls .swiper-button.swiper-button-prev {
  left: -30px;
}
@media only screen and (max-width: 39.99875rem) {
  body.single-product .product-after-summary .related.products .swiper-controls .swiper-button.swiper-button-prev {
    left: -22px;
  }
}
body.single-product .product-after-summary .related.products .swiper-controls .swiper-button.swiper-button-next {
  right: -30px;
}
@media only screen and (max-width: 39.99875rem) {
  body.single-product .product-after-summary .related.products .swiper-controls .swiper-button.swiper-button-next {
    right: -22px;
  }
}
body.single-product .product-after-summary .related.products .swiper-controls .swiper-pagination {
  bottom: -60px;
}
body.single-product .product-after-summary .related.products .swiper-controls .swiper-pagination .swiper-pagination-bullet {
  width: 15px;
  height: 4px;
  border-radius: 100px;
  background-color: #595550;
}
body.single-product .product-after-summary .related.products .swiper-controls .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 30px;
  height: 4px;
  background-color: #110d0e;
}

.wc-block-components-product-metadata {
  display: none;
}

.wc-block-cart__submit-container a,
.wc-block-components-checkout-place-order-button a {
  background-color: #ff6805;
  color: #ffffff;
}
.wc-block-cart__submit-container a:hover,
.wc-block-components-checkout-place-order-button a:hover {
  background-color: #0d175c;
}

body.woocommerce-cart .meta-single {
  display: none;
}
body.woocommerce-cart section.section-page .content {
  max-width: 100%;
}
body.woocommerce-cart section.section-page .content .woocommerce {
  display: flex;
  flex-wrap: wrap;
}
body.woocommerce-cart section.section-page .content .woocommerce .woocommerce-notices-wrapper {
  width: 100%;
}
body.woocommerce-cart section.section-page .content .woocommerce form.woocommerce-cart-form {
  width: 65%;
}
@media only screen and (max-width: 63.99875rem) {
  body.woocommerce-cart section.section-page .content .woocommerce form.woocommerce-cart-form {
    width: 100%;
  }
}
body.woocommerce-cart section.section-page .content .woocommerce form.woocommerce-cart-form table.woocommerce-cart-form__contents {
  padding: 20px 15px;
}
@media only screen and (max-width: 47.99875rem) {
  body.woocommerce-cart section.section-page .content .woocommerce form.woocommerce-cart-form table.woocommerce-cart-form__contents {
    padding: 15px 10px;
  }
}
body.woocommerce-cart section.section-page .content .woocommerce form.woocommerce-cart-form table.woocommerce-cart-form__contents thead {
  display: none;
}
body.woocommerce-cart section.section-page .content .woocommerce form.woocommerce-cart-form table.woocommerce-cart-form__contents tbody {
  border: none;
  background: transparent;
}
body.woocommerce-cart section.section-page .content .woocommerce form.woocommerce-cart-form table.woocommerce-cart-form__contents tbody tr {
  display: flex;
  width: 100%;
  margin-bottom: 20px;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width: 39.99875rem) {
  body.woocommerce-cart section.section-page .content .woocommerce form.woocommerce-cart-form table.woocommerce-cart-form__contents tbody tr {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}
body.woocommerce-cart section.section-page .content .woocommerce form.woocommerce-cart-form table.woocommerce-cart-form__contents tbody tr:last-child {
  margin-bottom: 0;
  border-top: 1px solid rgba(204, 204, 204, 0.5490196078);
  padding-top: 15px;
}
body.woocommerce-cart section.section-page .content .woocommerce form.woocommerce-cart-form table.woocommerce-cart-form__contents tbody tr:last-child td.actions {
  width: 100%;
  padding: 0;
}
body.woocommerce-cart section.section-page .content .woocommerce form.woocommerce-cart-form table.woocommerce-cart-form__contents tbody tr:last-child td.actions .coupon {
  float: none;
  display: flex;
}
@media only screen and (max-width: 39.99875rem) {
  body.woocommerce-cart section.section-page .content .woocommerce form.woocommerce-cart-form table.woocommerce-cart-form__contents tbody tr:last-child td.actions .coupon {
    flex-wrap: wrap;
  }
}
body.woocommerce-cart section.section-page .content .woocommerce form.woocommerce-cart-form table.woocommerce-cart-form__contents tbody tr:last-child td.actions .coupon .input-text {
  height: 42px;
  border-radius: 6px;
  width: 80%;
  padding: 0 12px;
  font-weight: 600;
  float: none;
  margin-right: 10px;
}
@media only screen and (max-width: 39.99875rem) {
  body.woocommerce-cart section.section-page .content .woocommerce form.woocommerce-cart-form table.woocommerce-cart-form__contents tbody tr:last-child td.actions .coupon .input-text {
    width: 100%;
    height: 38px;
    margin-right: 0;
    margin-bottom: 10px;
  }
}
body.woocommerce-cart section.section-page .content .woocommerce form.woocommerce-cart-form table.woocommerce-cart-form__contents tbody tr:last-child td.actions .coupon .button {
  flex: auto;
  height: 42px;
  border-radius: 6px;
  background: #ff6805;
  color: #ffffff;
}
body.woocommerce-cart section.section-page .content .woocommerce form.woocommerce-cart-form table.woocommerce-cart-form__contents tbody tr:last-child td.actions .coupon .button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(149, 37, 31, 0.4);
}
@media only screen and (max-width: 39.99875rem) {
  body.woocommerce-cart section.section-page .content .woocommerce form.woocommerce-cart-form table.woocommerce-cart-form__contents tbody tr:last-child td.actions .coupon .button {
    height: 38px;
  }
}
body.woocommerce-cart section.section-page .content .woocommerce form.woocommerce-cart-form table.woocommerce-cart-form__contents tbody tr:last-child td.actions button[name=update_cart] {
  display: none;
}
body.woocommerce-cart section.section-page .content .woocommerce form.woocommerce-cart-form table.woocommerce-cart-form__contents tbody tr:nth-child(even) {
  background-color: transparent;
}
body.woocommerce-cart section.section-page .content .woocommerce form.woocommerce-cart-form table.woocommerce-cart-form__contents tbody tr td {
  border-top: none;
}
@media only screen and (max-width: 47.99875rem) {
  body.woocommerce-cart section.section-page .content .woocommerce form.woocommerce-cart-form table.woocommerce-cart-form__contents tbody tr td {
    text-align: left !important;
  }
}
body.woocommerce-cart section.section-page .content .woocommerce form.woocommerce-cart-form table.woocommerce-cart-form__contents tbody tr td::before {
  content: none;
}
body.woocommerce-cart section.section-page .content .woocommerce form.woocommerce-cart-form table.woocommerce-cart-form__contents tbody tr td.product-subtotal {
  display: none;
}
body.woocommerce-cart section.section-page .content .woocommerce form.woocommerce-cart-form table.woocommerce-cart-form__contents tbody tr td.product-thumbnail {
  order: 1;
  width: 82px;
  padding: 0;
  border-radius: 12px;
}
@media only screen and (max-width: 47.99875rem) {
  body.woocommerce-cart section.section-page .content .woocommerce form.woocommerce-cart-form table.woocommerce-cart-form__contents tbody tr td.product-thumbnail {
    display: block;
    width: 100px;
  }
}
body.woocommerce-cart section.section-page .content .woocommerce form.woocommerce-cart-form table.woocommerce-cart-form__contents tbody tr td.product-thumbnail a {
  display: block;
  height: 100%;
  border-radius: 12px;
  background-color: #ffffff;
}
body.woocommerce-cart section.section-page .content .woocommerce form.woocommerce-cart-form table.woocommerce-cart-form__contents tbody tr td.product-thumbnail a img {
  width: 80px;
  height: 100%;
  object-fit: contain;
}
@media only screen and (max-width: 47.99875rem) {
  body.woocommerce-cart section.section-page .content .woocommerce form.woocommerce-cart-form table.woocommerce-cart-form__contents tbody tr td.product-thumbnail a img {
    width: 100px;
  }
}
body.woocommerce-cart section.section-page .content .woocommerce form.woocommerce-cart-form table.woocommerce-cart-form__contents tbody tr td.product-name {
  order: 2;
  max-width: 310px;
}
@media only screen and (max-width: 47.99875rem) {
  body.woocommerce-cart section.section-page .content .woocommerce form.woocommerce-cart-form table.woocommerce-cart-form__contents tbody tr td.product-name {
    max-width: 240px;
  }
}
@media only screen and (max-width: 39.99875rem) {
  body.woocommerce-cart section.section-page .content .woocommerce form.woocommerce-cart-form table.woocommerce-cart-form__contents tbody tr td.product-name {
    max-width: 220px;
    padding-left: 20px;
  }
}
body.woocommerce-cart section.section-page .content .woocommerce form.woocommerce-cart-form table.woocommerce-cart-form__contents tbody tr td.product-name a {
  color: #2e0805;
}
body.woocommerce-cart section.section-page .content .woocommerce form.woocommerce-cart-form table.woocommerce-cart-form__contents tbody tr td.product-name .variation {
  margin-top: 5px;
  color: #707070;
  font-size: 14px;
}
body.woocommerce-cart section.section-page .content .woocommerce form.woocommerce-cart-form table.woocommerce-cart-form__contents tbody tr td.product-quantity {
  order: 3;
  min-width: 120px;
}
@media only screen and (max-width: 39.99875rem) {
  body.woocommerce-cart section.section-page .content .woocommerce form.woocommerce-cart-form table.woocommerce-cart-form__contents tbody tr td.product-quantity {
    padding-left: 0;
  }
}
body.woocommerce-cart section.section-page .content .woocommerce form.woocommerce-cart-form table.woocommerce-cart-form__contents tbody tr td.product-quantity .quantity {
  border: 1px solid #e6e6e6;
  border-radius: 8px;
  float: none;
  width: -webkit-fit-content;
  width: fit-content;
  padding: 6px 12px;
}
@media only screen and (max-width: 39.99875rem) {
  body.woocommerce-cart section.section-page .content .woocommerce form.woocommerce-cart-form table.woocommerce-cart-form__contents tbody tr td.product-quantity .quantity {
    padding-left: 0;
  }
}
body.woocommerce-cart section.section-page .content .woocommerce form.woocommerce-cart-form table.woocommerce-cart-form__contents tbody tr td.product-quantity .quantity input {
  border-radius: 0px;
  height: 40px;
  padding: 0 15px;
  width: 100%;
  min-width: unset;
  max-width: unset;
  font-size: 15px;
  font-weight: 500;
  -webkit-appearance: none;
          appearance: none;
  background-color: transparent;
  border: 1px solid #3a3637;
}
body.woocommerce-cart section.section-page .content .woocommerce form.woocommerce-cart-form table.woocommerce-cart-form__contents tbody tr td.product-quantity .quantity input::-webkit-outer-spin-button, body.woocommerce-cart section.section-page .content .woocommerce form.woocommerce-cart-form table.woocommerce-cart-form__contents tbody tr td.product-quantity .quantity input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
body.woocommerce-cart section.section-page .content .woocommerce form.woocommerce-cart-form table.woocommerce-cart-form__contents tbody tr td.product-quantity .quantity input.minus, body.woocommerce-cart section.section-page .content .woocommerce form.woocommerce-cart-form table.woocommerce-cart-form__contents tbody tr td.product-quantity .quantity input.plus {
  padding: 0;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  background-color: #e8fef4;
  color: #0d175c;
  margin: 0 -5px;
}
body.woocommerce-cart section.section-page .content .woocommerce form.woocommerce-cart-form table.woocommerce-cart-form__contents tbody tr td.product-quantity .quantity input.minus, body.woocommerce-cart section.section-page .content .woocommerce form.woocommerce-cart-form table.woocommerce-cart-form__contents tbody tr td.product-quantity .quantity input.plus {
  width: 2.125rem;
  height: 2.125rem;
}
body.woocommerce-cart section.section-page .content .woocommerce form.woocommerce-cart-form table.woocommerce-cart-form__contents tbody tr td.product-quantity .quantity input[type=number] {
  border: none;
  width: 50px;
  padding: 0;
  height: 34px;
}
@media only screen and (max-width: 47.99875rem) {
  body.woocommerce-cart section.section-page .content .woocommerce form.woocommerce-cart-form table.woocommerce-cart-form__contents tbody tr td.product-quantity .quantity input[type=number] {
    width: 34px;
  }
}
body.woocommerce-cart section.section-page .content .woocommerce form.woocommerce-cart-form table.woocommerce-cart-form__contents tbody tr td.product-price {
  order: 4;
  min-width: 150px;
  text-align: center !important;
}
@media only screen and (max-width: 63.99875rem) {
  body.woocommerce-cart section.section-page .content .woocommerce form.woocommerce-cart-form table.woocommerce-cart-form__contents tbody tr td.product-price {
    min-width: 120px;
  }
}
@media only screen and (max-width: 39.99875rem) {
  body.woocommerce-cart section.section-page .content .woocommerce form.woocommerce-cart-form table.woocommerce-cart-form__contents tbody tr td.product-price {
    min-width: 100px;
  }
}
body.woocommerce-cart section.section-page .content .woocommerce form.woocommerce-cart-form table.woocommerce-cart-form__contents tbody tr td.product-price .woocommerce-Price-amount {
  font-weight: 600;
  color: #0d175c;
}
body.woocommerce-cart section.section-page .content .woocommerce form.woocommerce-cart-form table.woocommerce-cart-form__contents tbody tr td.product-price .woocommerce-Price-amount {
  font-size: 1.0625rem;
}
@media only screen and (min-width: 64rem) {
  body.woocommerce-cart section.section-page .content .woocommerce form.woocommerce-cart-form table.woocommerce-cart-form__contents tbody tr td.product-price .woocommerce-Price-amount {
    font-size: 1.25rem;
  }
}
body.woocommerce-cart section.section-page .content .woocommerce form.woocommerce-cart-form table.woocommerce-cart-form__contents tbody tr td.product-remove {
  order: 5;
}
body.woocommerce-cart section.section-page .content .woocommerce form.woocommerce-cart-form table.woocommerce-cart-form__contents tbody tr td.product-remove a.remove {
  position: relative;
  font-size: 0;
}
body.woocommerce-cart section.section-page .content .woocommerce form.woocommerce-cart-form table.woocommerce-cart-form__contents tbody tr td.product-remove a.remove::before {
  content: "";
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 24 24"><g fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M4 7h16"></path><path d="M10 11v6"></path><path d="M14 11v6"></path><path d="M5 7l1 12a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2l1-12"></path><path d="M9 7V4a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1v3"></path></g></svg>');
          mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 24 24"><g fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M4 7h16"></path><path d="M10 11v6"></path><path d="M14 11v6"></path><path d="M5 7l1 12a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2l1-12"></path><path d="M9 7V4a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1v3"></path></g></svg>');
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  background: #727272;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
body.woocommerce-cart section.section-page .content .woocommerce form.woocommerce-cart-form table.woocommerce-cart-form__contents tbody tr td.product-remove a.remove::before {
  width: 1.25rem;
  height: 1.25rem;
}
body.woocommerce-cart section.section-page .content .woocommerce form.woocommerce-cart-form table.woocommerce-cart-form__contents tbody tr td.product-remove a.remove::before {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
body.woocommerce-cart section.section-page .content .woocommerce form.woocommerce-cart-form .cart-summary-actions .btn-main svg,
body.woocommerce-cart section.section-page .content .woocommerce form.woocommerce-cart-form .cart-summary-actions .btn-main path {
  fill: #ffffff;
}
body.woocommerce-cart section.section-page .content .woocommerce form.woocommerce-cart-form .cart-summary-actions .btn-main span {
  padding-left: 5px;
}
body.woocommerce-cart section.section-page .content .woocommerce .cart-collaterals {
  width: 35%;
}
body.woocommerce-cart section.section-page .content .woocommerce .cart-collaterals {
  padding-left: 0;
}
@media only screen and (min-width: 64rem) {
  body.woocommerce-cart section.section-page .content .woocommerce .cart-collaterals {
    padding-left: 1.875rem;
  }
}
@media only screen and (max-width: 63.99875rem) {
  body.woocommerce-cart section.section-page .content .woocommerce .cart-collaterals {
    padding-top: 30px;
    width: 100%;
  }
}
body.woocommerce-cart section.section-page .content .woocommerce .cart-collaterals::before, body.woocommerce-cart section.section-page .content .woocommerce .cart-collaterals::after {
  content: none;
}
body.woocommerce-cart section.section-page .content .woocommerce .cart-collaterals .cart_totals {
  float: none;
  width: 100%;
}
body.woocommerce-cart section.section-page .content .woocommerce .cart-collaterals .cart_totals > h2 {
  font-weight: 600;
}
body.woocommerce-cart section.section-page .content .woocommerce .cart-collaterals .cart_totals > h2 {
  font-size: 1.375rem;
}
@media only screen and (min-width: 48rem) {
  body.woocommerce-cart section.section-page .content .woocommerce .cart-collaterals .cart_totals > h2 {
    font-size: 1.625rem;
  }
}
@media only screen and (min-width: 64rem) {
  body.woocommerce-cart section.section-page .content .woocommerce .cart-collaterals .cart_totals > h2 {
    font-size: 1.875rem;
  }
}
body.woocommerce-cart section.section-page .content .woocommerce .cart-collaterals .cart_totals table th {
  width: 45%;
}
body.woocommerce-cart section.section-page .content .woocommerce .cart-collaterals .cart_totals table a {
  color: #f7951d;
  text-decoration: underline;
}
body.woocommerce-cart .wc-block-grid.wp-block-product-new.wp-block-woocommerce-product-new.wc-block-product-new {
  display: none;
}
body.woocommerce-cart a.checkout-button.button.alt.wc-forward {
  background-color: #ff6805;
}
body.woocommerce-cart a.checkout-button.button.alt.wc-forward:hover {
  background-color: #000c36;
}
body.woocommerce-cart table.cart td.actions .input-text {
  width: 150px;
}
body.woocommerce-cart .wc-block-cart-items__header-product {
  visibility: visible !important;
  background: #f9f9f9 !important;
}
body.woocommerce-cart .wc-block-cart-items th {
  padding: 8px 16px 8px 16px;
}
body.woocommerce-cart .wc-block-cart-items .wc-block-cart-item__image img {
  height: 120px;
  object-fit: contain;
}

body.woocommerce-checkout .woocommerce-info {
  display: none;
}
body.woocommerce-checkout section.section-page .content {
  max-width: 95%;
}
@media only screen and (max-width: 47.99875rem) {
  body.woocommerce-checkout section.section-page .content {
    max-width: 100%;
  }
}
body.woocommerce-checkout section.section-page .content .meta-single {
  display: none;
}
body.woocommerce-checkout button.wc-block-components-checkout-place-order-button {
  background-color: #ff6805;
  color: #ffffff;
}
@media only screen and (max-width: 39.99875rem) {
  body.woocommerce-checkout .form-row {
    width: 100%;
  }
}
body.woocommerce-checkout #order_comments_field textarea {
  height: 150px;
}
body.woocommerce-checkout button#place_order {
  background: #f7951d;
}
body.woocommerce-checkout #order_review_heading {
  padding-top: 20px;
}

.custom-cart-wrapper {
  display: flex;
}
@media only screen and (max-width: 63.99875rem) {
  .custom-cart-wrapper {
    flex-wrap: wrap;
  }
}
.custom-cart-wrapper .woocommerce:first-child {
  width: 63%;
  padding-right: 20px;
}
@media only screen and (max-width: 63.99875rem) {
  .custom-cart-wrapper .woocommerce:first-child {
    width: 100%;
    padding-right: 0;
  }
}
.custom-cart-wrapper .woocommerce:first-child form.woocommerce-cart-form table.woocommerce-cart-form__contents {
  border: none;
  margin: 0;
  border-radius: 0;
}
.custom-cart-wrapper .woocommerce:first-child form.woocommerce-cart-form table.woocommerce-cart-form__contents thead {
  display: none;
}
.custom-cart-wrapper .woocommerce:first-child form.woocommerce-cart-form table.woocommerce-cart-form__contents tbody {
  border: none;
  background: transparent;
}
.custom-cart-wrapper .woocommerce:first-child form.woocommerce-cart-form table.woocommerce-cart-form__contents tbody tr {
  display: flex;
  width: 100%;
  margin-bottom: 20px;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width: 39.99875rem) {
  .custom-cart-wrapper .woocommerce:first-child form.woocommerce-cart-form table.woocommerce-cart-form__contents tbody tr {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}
.custom-cart-wrapper .woocommerce:first-child form.woocommerce-cart-form table.woocommerce-cart-form__contents tbody tr:last-child {
  margin-bottom: 0;
  display: none;
}
.custom-cart-wrapper .woocommerce:first-child form.woocommerce-cart-form table.woocommerce-cart-form__contents tbody tr:nth-child(even) {
  background-color: transparent;
}
.custom-cart-wrapper .woocommerce:first-child form.woocommerce-cart-form table.woocommerce-cart-form__contents tbody tr td {
  border-top: none;
}
@media only screen and (max-width: 47.99875rem) {
  .custom-cart-wrapper .woocommerce:first-child form.woocommerce-cart-form table.woocommerce-cart-form__contents tbody tr td {
    text-align: left !important;
  }
}
.custom-cart-wrapper .woocommerce:first-child form.woocommerce-cart-form table.woocommerce-cart-form__contents tbody tr td::before {
  content: none;
}
.custom-cart-wrapper .woocommerce:first-child form.woocommerce-cart-form table.woocommerce-cart-form__contents tbody tr td.product-subtotal {
  display: none;
}
.custom-cart-wrapper .woocommerce:first-child form.woocommerce-cart-form table.woocommerce-cart-form__contents tbody tr td.product-thumbnail {
  order: 1;
  width: 82px;
  padding: 0;
  border-radius: 12px;
}
@media only screen and (max-width: 47.99875rem) {
  .custom-cart-wrapper .woocommerce:first-child form.woocommerce-cart-form table.woocommerce-cart-form__contents tbody tr td.product-thumbnail {
    display: block;
    width: 100px;
  }
}
.custom-cart-wrapper .woocommerce:first-child form.woocommerce-cart-form table.woocommerce-cart-form__contents tbody tr td.product-thumbnail a {
  display: block;
  height: 100%;
  border-radius: 12px;
  background-color: #ffffff;
}
.custom-cart-wrapper .woocommerce:first-child form.woocommerce-cart-form table.woocommerce-cart-form__contents tbody tr td.product-thumbnail a img {
  width: 80px;
  height: 100%;
  object-fit: contain;
}
@media only screen and (max-width: 47.99875rem) {
  .custom-cart-wrapper .woocommerce:first-child form.woocommerce-cart-form table.woocommerce-cart-form__contents tbody tr td.product-thumbnail a img {
    width: 100px;
  }
}
.custom-cart-wrapper .woocommerce:first-child form.woocommerce-cart-form table.woocommerce-cart-form__contents tbody tr td.product-name {
  order: 2;
  max-width: 310px;
}
@media only screen and (max-width: 47.99875rem) {
  .custom-cart-wrapper .woocommerce:first-child form.woocommerce-cart-form table.woocommerce-cart-form__contents tbody tr td.product-name {
    max-width: 260px;
  }
}
@media only screen and (max-width: 39.99875rem) {
  .custom-cart-wrapper .woocommerce:first-child form.woocommerce-cart-form table.woocommerce-cart-form__contents tbody tr td.product-name {
    max-width: 310px;
  }
}
@media only screen and (max-width: 26.24875rem) {
  .custom-cart-wrapper .woocommerce:first-child form.woocommerce-cart-form table.woocommerce-cart-form__contents tbody tr td.product-name {
    max-width: 230px;
  }
}
.custom-cart-wrapper .woocommerce:first-child form.woocommerce-cart-form table.woocommerce-cart-form__contents tbody tr td.product-name a {
  color: #2e0805;
}
.custom-cart-wrapper .woocommerce:first-child form.woocommerce-cart-form table.woocommerce-cart-form__contents tbody tr td.product-name .variation {
  margin-top: 5px;
  color: #707070;
  font-size: 14px;
}
.custom-cart-wrapper .woocommerce:first-child form.woocommerce-cart-form table.woocommerce-cart-form__contents tbody tr td.product-quantity {
  order: 3;
  min-width: 120px;
}
@media only screen and (max-width: 39.99875rem) {
  .custom-cart-wrapper .woocommerce:first-child form.woocommerce-cart-form table.woocommerce-cart-form__contents tbody tr td.product-quantity {
    padding-left: 0;
  }
}
.custom-cart-wrapper .woocommerce:first-child form.woocommerce-cart-form table.woocommerce-cart-form__contents tbody tr td.product-quantity .quantity {
  border: 1px solid #e6e6e6;
  border-radius: 8px;
  float: none;
  width: -webkit-fit-content;
  width: fit-content;
  padding: 6px 12px;
}
.custom-cart-wrapper .woocommerce:first-child form.woocommerce-cart-form table.woocommerce-cart-form__contents tbody tr td.product-quantity .quantity input {
  border-radius: 0px;
  height: 40px;
  padding: 0 15px;
  width: 100%;
  min-width: unset;
  max-width: unset;
  font-size: 15px;
  font-weight: 500;
  -webkit-appearance: none;
          appearance: none;
  background-color: transparent;
  border: 1px solid #3a3637;
}
.custom-cart-wrapper .woocommerce:first-child form.woocommerce-cart-form table.woocommerce-cart-form__contents tbody tr td.product-quantity .quantity input::-webkit-outer-spin-button, .custom-cart-wrapper .woocommerce:first-child form.woocommerce-cart-form table.woocommerce-cart-form__contents tbody tr td.product-quantity .quantity input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.custom-cart-wrapper .woocommerce:first-child form.woocommerce-cart-form table.woocommerce-cart-form__contents tbody tr td.product-quantity .quantity input.minus, .custom-cart-wrapper .woocommerce:first-child form.woocommerce-cart-form table.woocommerce-cart-form__contents tbody tr td.product-quantity .quantity input.plus {
  padding: 0;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  background-color: #e8fef4;
  color: #0d175c;
  margin: 0 -5px;
}
.custom-cart-wrapper .woocommerce:first-child form.woocommerce-cart-form table.woocommerce-cart-form__contents tbody tr td.product-quantity .quantity input.minus, .custom-cart-wrapper .woocommerce:first-child form.woocommerce-cart-form table.woocommerce-cart-form__contents tbody tr td.product-quantity .quantity input.plus {
  width: 2.125rem;
  height: 2.125rem;
}
.custom-cart-wrapper .woocommerce:first-child form.woocommerce-cart-form table.woocommerce-cart-form__contents tbody tr td.product-quantity .quantity input[type=number] {
  border: none;
  width: 50px;
  padding: 0;
  height: 34px;
}
@media only screen and (max-width: 47.99875rem) {
  .custom-cart-wrapper .woocommerce:first-child form.woocommerce-cart-form table.woocommerce-cart-form__contents tbody tr td.product-quantity .quantity input[type=number] {
    width: 34px;
  }
}
.custom-cart-wrapper .woocommerce:first-child form.woocommerce-cart-form table.woocommerce-cart-form__contents tbody tr td.product-price {
  order: 4;
  min-width: 150px;
  text-align: center !important;
}
@media only screen and (max-width: 47.99875rem) {
  .custom-cart-wrapper .woocommerce:first-child form.woocommerce-cart-form table.woocommerce-cart-form__contents tbody tr td.product-price {
    min-width: 120px;
  }
}
.custom-cart-wrapper .woocommerce:first-child form.woocommerce-cart-form table.woocommerce-cart-form__contents tbody tr td.product-price .woocommerce-Price-amount {
  font-weight: 600;
  color: #0d175c;
}
.custom-cart-wrapper .woocommerce:first-child form.woocommerce-cart-form table.woocommerce-cart-form__contents tbody tr td.product-price .woocommerce-Price-amount {
  font-size: 1.0625rem;
}
@media only screen and (min-width: 64rem) {
  .custom-cart-wrapper .woocommerce:first-child form.woocommerce-cart-form table.woocommerce-cart-form__contents tbody tr td.product-price .woocommerce-Price-amount {
    font-size: 1.25rem;
  }
}
.custom-cart-wrapper .woocommerce:first-child form.woocommerce-cart-form table.woocommerce-cart-form__contents tbody tr td.product-remove {
  order: 5;
}
.custom-cart-wrapper .woocommerce:first-child form.woocommerce-cart-form table.woocommerce-cart-form__contents tbody tr td.product-remove a.remove {
  position: relative;
  font-size: 0;
}
.custom-cart-wrapper .woocommerce:first-child form.woocommerce-cart-form table.woocommerce-cart-form__contents tbody tr td.product-remove a.remove::before {
  content: "";
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 24 24"><g fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M4 7h16"></path><path d="M10 11v6"></path><path d="M14 11v6"></path><path d="M5 7l1 12a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2l1-12"></path><path d="M9 7V4a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1v3"></path></g></svg>');
          mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 24 24"><g fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M4 7h16"></path><path d="M10 11v6"></path><path d="M14 11v6"></path><path d="M5 7l1 12a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2l1-12"></path><path d="M9 7V4a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1v3"></path></g></svg>');
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  background: #727272;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.custom-cart-wrapper .woocommerce:first-child form.woocommerce-cart-form table.woocommerce-cart-form__contents tbody tr td.product-remove a.remove::before {
  width: 1.25rem;
  height: 1.25rem;
}
.custom-cart-wrapper .woocommerce:first-child form.woocommerce-cart-form table.woocommerce-cart-form__contents tbody tr td.product-remove a.remove::before {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.custom-cart-wrapper .woocommerce:last-child {
  width: 37%;
  background: #f2edde;
  padding: 20px;
  border-radius: 12px;
}
@media only screen and (max-width: 63.99875rem) {
  .custom-cart-wrapper .woocommerce:last-child {
    width: 100%;
  }
}
@media only screen and (max-width: 63.99875rem) {
  .custom-cart-wrapper .woocommerce:last-child {
    padding: 12px;
  }
}
.custom-cart-wrapper .woocommerce:last-child .woocommerce-form-coupon-toggle,
.custom-cart-wrapper .woocommerce:last-child #order_review_heading {
  display: none;
}
.custom-cart-wrapper .woocommerce:last-child #order_review table {
  display: none;
}
.custom-cart-wrapper .woocommerce:last-child #order_review .custom-shipping-title {
  color: #ff6805;
  font-weight: 600;
  text-transform: capitalize;
  margin-top: 20px;
}
.custom-cart-wrapper .woocommerce:last-child #order_review .custom-shipping-title {
  font-size: 1.125rem;
}
@media only screen and (min-width: 64rem) {
  .custom-cart-wrapper .woocommerce:last-child #order_review .custom-shipping-title {
    font-size: 1.25rem;
  }
}
.custom-cart-wrapper .woocommerce:last-child #order_review #payment {
  background-color: transparent;
  border-radius: 0;
}
.custom-cart-wrapper .woocommerce:last-child #order_review #payment ul.payment_methods {
  padding: 0;
  border-bottom: none;
}
.custom-cart-wrapper .woocommerce:last-child #order_review #payment ul.payment_methods .payment_box {
  display: none !important;
}
.custom-cart-wrapper .woocommerce:last-child #order_review #payment ul.payment_methods input:checked {
  accent-color: #0d175c;
}
.custom-cart-wrapper .woocommerce:last-child #order_review #payment ul.payment_methods input:checked + label {
  font-weight: 500;
  color: #0d175c;
}
.custom-cart-wrapper .woocommerce:last-child #order_review #payment .form-row.place-order .woocommerce-terms-and-conditions-wrapper {
  display: none;
}
.custom-cart-wrapper .woocommerce:last-child #order_review #payment button#place_order {
  width: 100%;
  float: left;
  margin-top: 20px;
  height: 44px;
  color: #ffffff;
  background: #ff6805;
  transition: all 0.4s ease;
  box-shadow: 0 4px 12px rgba(149, 37, 31, 0.25);
  padding: 0 26px;
  border-radius: 8px;
  font-weight: 500;
  position: relative;
  line-height: 1;
  text-transform: capitalize;
}
.custom-cart-wrapper .woocommerce:last-child #order_review #payment button#place_order {
  font-size: 0.9375rem;
}
@media only screen and (min-width: 64rem) {
  .custom-cart-wrapper .woocommerce:last-child #order_review #payment button#place_order {
    font-size: 1rem;
  }
}
.custom-cart-wrapper .woocommerce:last-child #order_review #payment button#place_order {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
@media only screen and (max-width: 63.99875rem) {
  .custom-cart-wrapper .woocommerce:last-child #order_review #payment button#place_order {
    height: 38px;
  }
}
@media only screen and (max-width: 47.99875rem) {
  .custom-cart-wrapper .woocommerce:last-child #order_review #payment button#place_order {
    height: 36px;
    padding: 5px 20px;
    margin-bottom: 0;
    margin-top: 5px;
  }
}
.custom-cart-wrapper .woocommerce:last-child #order_review #payment button#place_order:hover {
  color: #ffffff;
  background: linear-gradient(180deg, #ff4b4b 0%, #d93d3d 50%, #b53030 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(149, 37, 31, 0.4);
}
.custom-cart-wrapper .woocommerce:last-child #order_review #payment button#place_order::after {
  content: "";
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 16 16"><g fill="none"><path d="M2.5 7.5a.5.5 0 1 0 0 1h9.697l-4.031 3.628a.5.5 0 1 0 .668.744l5-4.5a.5.5 0 0 0 0-.744l-5-4.5a.5.5 0 0 0-.668.744L12.197 7.5H2.5z" fill="currentColor"></path></g></svg>');
          mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 16 16"><g fill="none"><path d="M2.5 7.5a.5.5 0 1 0 0 1h9.697l-4.031 3.628a.5.5 0 1 0 .668.744l5-4.5a.5.5 0 0 0 0-.744l-5-4.5a.5.5 0 0 0-.668.744L12.197 7.5H2.5z" fill="currentColor"></path></g></svg>');
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  background: #ffffff;
  display: inline-block;
  margin-left: 10px;
}
.custom-cart-wrapper .woocommerce:last-child #order_review #payment button#place_order::after {
  width: 1.25rem;
  height: 1.25rem;
}
.custom-cart-wrapper .woocommerce:last-child #customer_details .col-1 {
  width: 100%;
  float: none;
}
.custom-cart-wrapper .woocommerce:last-child #customer_details .col-1 .form-row-first,
.custom-cart-wrapper .woocommerce:last-child #customer_details .col-1 .form-row-last {
  float: none;
  width: 48%;
}
@media only screen and (max-width: 39.99875rem) {
  .custom-cart-wrapper .woocommerce:last-child #customer_details .col-1 .form-row-first,
  .custom-cart-wrapper .woocommerce:last-child #customer_details .col-1 .form-row-last {
    width: 100%;
  }
}
.custom-cart-wrapper .woocommerce:last-child #customer_details .col-1 .woocommerce-billing-fields > h3 {
  color: #ff6805;
  font-weight: 600;
  text-transform: capitalize;
  margin-top: 20px;
}
.custom-cart-wrapper .woocommerce:last-child #customer_details .col-1 .woocommerce-billing-fields > h3 {
  font-size: 1.125rem;
}
@media only screen and (min-width: 64rem) {
  .custom-cart-wrapper .woocommerce:last-child #customer_details .col-1 .woocommerce-billing-fields > h3 {
    font-size: 1.25rem;
  }
}
.custom-cart-wrapper .woocommerce:last-child #customer_details .col-1 .woocommerce-billing-fields__field-wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0 15px;
}
.custom-cart-wrapper .woocommerce:last-child #customer_details .col-1 #billing_last_name_field {
  width: 48%;
}
@media only screen and (max-width: 39.99875rem) {
  .custom-cart-wrapper .woocommerce:last-child #customer_details .col-1 #billing_last_name_field {
    width: 100%;
  }
}
.custom-cart-wrapper .woocommerce:last-child #customer_details .col-1 #billing_address_1_field {
  width: 100%;
}
.custom-cart-wrapper .woocommerce:last-child #customer_details .col-2 {
  float: none;
  width: 100%;
}
.custom-cart-wrapper .woocommerce:last-child #customer_details .col-2 .woocommerce-shipping-fields {
  display: none;
}
.custom-cart-wrapper .woocommerce:last-child #customer_details input,
.custom-cart-wrapper .woocommerce:last-child #customer_details textarea,
.custom-cart-wrapper .woocommerce:last-child #customer_details select {
  background: #fffbf0;
  border-radius: 4px;
  font-size: 14px;
  color: #707070;
  padding: 10px;
}
.custom-cart-wrapper .woocommerce:last-child #customer_details option {
  background: #fffbf0;
}
.custom-cart-wrapper .custom-cart-summary {
  border-radius: 8px;
  background-color: #f2edde;
  padding: 20px;
}
.custom-cart-wrapper .custom-cart-summary {
  margin-top: 0.9375rem;
}
@media only screen and (min-width: 64rem) {
  .custom-cart-wrapper .custom-cart-summary {
    margin-top: 1.25rem;
  }
}
.custom-cart-wrapper .custom-cart-summary .title {
  color: #ff6805;
  font-weight: 600;
  line-height: 1.4;
}
.custom-cart-wrapper .custom-cart-summary .title {
  font-size: 1.125rem;
}
@media only screen and (min-width: 64rem) {
  .custom-cart-wrapper .custom-cart-summary .title {
    font-size: 1.25rem;
  }
}
.custom-cart-wrapper .custom-cart-summary .item-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}
.custom-cart-wrapper .custom-cart-summary .item-row.item-totals {
  margin-bottom: 0;
}
.custom-cart-wrapper .custom-cart-summary .item-row .label {
  font-size: 16px;
  color: #2e0805;
}
.custom-cart-wrapper .custom-cart-summary .item-row .value {
  color: #404040;
  line-height: normal;
}
.custom-cart-wrapper .custom-cart-summary .item-row .value {
  font-size: 1.125rem;
}
@media only screen and (min-width: 64rem) {
  .custom-cart-wrapper .custom-cart-summary .item-row .value {
    font-size: 1.25rem;
  }
}
.custom-cart-wrapper .custom-cart-summary .item-row .value.value-price {
  font-weight: 600;
  color: #c72216;
}
@media only screen and (max-width: 63.99875rem) {
  .custom-cart-wrapper .cart-summary-actions {
    margin-bottom: 20px;
  }
}
.custom-cart-wrapper .cart-summary-actions .btn-main {
  background: transparent;
  border: 1px solid #4f0801;
  color: #4f0801;
  border-radius: 8px;
  box-shadow: none;
  flex-direction: row-reverse;
}
.custom-cart-wrapper .cart-summary-actions .btn-main::after {
  background: #4f0801;
  margin-left: 0;
  margin-right: 10px;
  transform: rotate(180deg);
}
.custom-cart-wrapper .cart-summary-actions .btn-main:hover {
  background: #4f0801;
  color: #ffffff;
}
.custom-cart-wrapper .cart-summary-actions .btn-main:hover::after {
  background: #ffffff;
}

.custom-reviews-section {
  padding-top: 40px;
}
.custom-reviews-section .woocommerce-noreviews {
  display: none;
}
.custom-reviews-section .cr-reviews-ajax-comments .cr-summaryBox-wrap .cr-overall-rating-wrap .cr-ajax-reviews-add-review {
  background: #ff6805 !important;
  color: #fff !important;
  padding: 15px 30px !important;
  font-size: 16px !important;
  border: 1px solid #000c36 !important;
  border-radius: 10px;
}
.custom-reviews-section .cr-reviews-ajax-comments .cr-summaryBox-wrap table {
  background: transparent;
}
.custom-reviews-section .cr-reviews-ajax-comments .cr-summaryBox-wrap table tbody {
  background: transparent;
}
.custom-reviews-section .cr-reviews-ajax-comments .cr-summaryBox-wrap table tbody tr:nth-child(even) {
  background: transparent;
}
.custom-reviews-section .cr-reviews-ajax-comments .cr-summaryBox-wrap table .ivole-meter {
  border: none;
  box-shadow: none;
  background: #e3e3e3;
  border-radius: 30px;
  height: 10px;
}
.custom-reviews-section .cr-reviews-ajax-comments .cr-summaryBox-wrap table .ivole-meter .ivole-meter-bar {
  box-shadow: none;
}
.custom-reviews-section .cr-ajax-search,
.custom-reviews-section .cr-count-row {
  display: none !important;
}
.custom-reviews-section .cr-ajax-reviews-list {
  margin-top: 40px;
}

.cr-review-form-submit {
  background: #ff6805 !important;
  color: #fff !important;
  padding: 10px 30px !important;
  font-size: 14px !important;
  border: 1px solid #000c36 !important;
  border-radius: 10px;
}

.sidebar-category-box {
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  margin-bottom: 24px;
}
.sidebar-category-box .sidebar-category-header {
  background-color: #0f1e5c;
  color: #ffffff;
  padding: 12px 20px;
  font-weight: bold;
  margin: 0;
  text-transform: uppercase;
}
.sidebar-category-box .sidebar-category-header {
  font-size: 1rem;
}
@media only screen and (min-width: 48rem) {
  .sidebar-category-box .sidebar-category-header {
    font-size: 1.0625rem;
  }
}
@media only screen and (min-width: 64rem) {
  .sidebar-category-box .sidebar-category-header {
    font-size: 1.125rem;
  }
}
.sidebar-category-box .parent-category-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sidebar-category-box .parent-category-list .parent-category-item {
  padding: 20px 15px;
  border-bottom: 1px solid #e0e0e0;
}
.sidebar-category-box .parent-category-list .parent-category-item:last-child {
  border-bottom: none;
}
.sidebar-category-box .parent-category-list .parent-category-item .parent-category-title {
  color: #ff6e00;
  text-transform: uppercase;
  font-weight: bold;
  margin: 0 0 8px 0;
  font-size: 16px;
}
@media only screen and (min-width: 96rem) {
  .sidebar-category-box .parent-category-list .parent-category-item .parent-category-title {
    font-size: 17px;
  }
}
.sidebar-category-box .parent-category-list .parent-category-item .child-category-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sidebar-category-box .parent-category-list .parent-category-item .child-category-list .child-category-item {
  border-bottom: 1px solid #f2f2f2;
}
.sidebar-category-box .parent-category-list .parent-category-item .child-category-list .child-category-item:last-child {
  border-bottom: none;
}
.sidebar-category-box .parent-category-list .parent-category-item .child-category-list .child-category-item .child-category-link-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}
.sidebar-category-box .parent-category-list .parent-category-item .child-category-list .child-category-item .child-category-link-wrap a {
  color: #0f1e5c;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s;
  font-size: 15px;
}
@media only screen and (min-width: 96rem) {
  .sidebar-category-box .parent-category-list .parent-category-item .child-category-list .child-category-item .child-category-link-wrap a {
    font-size: 16px;
  }
}
.sidebar-category-box .parent-category-list .parent-category-item .child-category-list .child-category-item .child-category-link-wrap a:hover {
  color: #0d175c;
}
.sidebar-category-box .parent-category-list .parent-category-item .child-category-list .child-category-item .child-category-link-wrap .submenu-toggle-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  cursor: pointer;
  color: #666666;
}
.sidebar-category-box .parent-category-list .parent-category-item .child-category-list .child-category-item .child-category-link-wrap .submenu-toggle-btn svg {
  transition: transform 0.3s ease;
}
.sidebar-category-box .parent-category-list .parent-category-item .child-category-list .child-category-item.is-open .submenu-toggle-btn svg {
  transform: rotate(180deg);
}
.sidebar-category-box .parent-category-list .parent-category-item .child-category-list .child-category-item.is-active > .child-category-link-wrap a {
  color: #0d175c;
}
.sidebar-category-box .parent-category-list .parent-category-item .child-category-list .child-category-item .sub-child-category-list {
  display: none;
  list-style: none;
  padding: 8px 15px;
  margin: 0 0 12px 0;
  background-color: #f9f9f9;
  border-radius: 6px;
}
.sidebar-category-box .parent-category-list .parent-category-item .child-category-list .child-category-item .sub-child-category-list .sub-child-category-item {
  padding: 6px 0;
}
.sidebar-category-box .parent-category-list .parent-category-item .child-category-list .child-category-item .sub-child-category-list .sub-child-category-item a {
  color: #4f4f4f;
  text-decoration: none;
  transition: color 0.3s;
}
.sidebar-category-box .parent-category-list .parent-category-item .child-category-list .child-category-item .sub-child-category-list .sub-child-category-item a {
  font-size: 0.875rem;
}
@media only screen and (min-width: 64rem) {
  .sidebar-category-box .parent-category-list .parent-category-item .child-category-list .child-category-item .sub-child-category-list .sub-child-category-item a {
    font-size: 0.9375rem;
  }
}
.sidebar-category-box .parent-category-list .parent-category-item .child-category-list .child-category-item .sub-child-category-list .sub-child-category-item a:hover {
  color: #0d175c;
}
.sidebar-category-box .parent-category-list .parent-category-item .child-category-list .child-category-item .sub-child-category-list .sub-child-category-item.is-active a {
  color: #0d175c;
  font-weight: bold;
}

.sidebar-cta-box {
  background-color: #0d175c;
  border-radius: 5px;
  padding: 16px 20px;
  text-align: center;
  color: #ffffff;
  margin-bottom: 24px;
}
.sidebar-cta-box .cta-title {
  color: #ffffff;
  font-weight: bold;
  text-transform: uppercase;
  margin: 0 0 15px 0;
  line-height: 1.4;
}
.sidebar-cta-box .cta-title {
  font-size: 1rem;
}
@media only screen and (min-width: 64rem) {
  .sidebar-cta-box .cta-title {
    font-size: 1.125rem;
  }
}
.sidebar-cta-box .cta-desc {
  color: #f2f2f2;
  margin: 0 0 16px 0;
  line-height: 1.6;
}
.sidebar-cta-box .cta-desc {
  font-size: 0.875rem;
}
@media only screen and (min-width: 64rem) {
  .sidebar-cta-box .cta-desc {
    font-size: 0.9375rem;
  }
}
.sidebar-cta-box .cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ffffff;
  border-radius: 6px;
  padding: 6px 20px;
  color: #ffffff;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}
.sidebar-cta-box .cta-btn {
  font-size: 0.875rem;
}
@media only screen and (min-width: 64rem) {
  .sidebar-cta-box .cta-btn {
    font-size: 0.9375rem;
  }
}
.sidebar-cta-box .cta-btn svg {
  transition: transform 0.3s ease;
}
.sidebar-cta-box .cta-btn:hover {
  background-color: #ffffff;
  color: #0f1e5c;
  border-color: #ffffff;
}
.sidebar-cta-box .cta-btn:hover svg {
  transform: translateX(4px);
}

.grid-products.no-sidebar aside.sidebar {
  display: none !important;
}
.grid-products.no-sidebar .col-products {
  width: 100% !important;
  padding-left: 0 !important;
}
.grid-products.no-sidebar .col-products ul.products li.product {
  width: calc(20% - 19.2px) !important;
}
@media only screen and (max-width: 63.99875rem) {
  .grid-products.no-sidebar .col-products ul.products li.product {
    width: calc(25% - 9px) !important;
  }
}
@media only screen and (max-width: 47.99875rem) {
  .grid-products.no-sidebar .col-products ul.products li.product {
    width: calc(50% - 8px) !important;
  }
}
@media only screen and (max-width: 39.99875rem) {
  .grid-products.no-sidebar .col-products ul.products li.product {
    width: 100% !important;
  }
}

.subcategory-section {
  margin-bottom: 1.25rem;
}
@media only screen and (min-width: 64rem) {
  .subcategory-section {
    margin-bottom: 1.875rem;
  }
}
.subcategory-section:last-child {
  margin-bottom: 0;
}
.subcategory-section .subcategory-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.subcategory-section .subcategory-section-title {
  font-weight: bold;
  text-transform: uppercase;
  margin: 0;
}
.subcategory-section .subcategory-section-title {
  font-size: 1.125rem;
}
@media only screen and (min-width: 48rem) {
  .subcategory-section .subcategory-section-title {
    font-size: 1.25rem;
  }
}
@media only screen and (min-width: 64rem) {
  .subcategory-section .subcategory-section-title {
    font-size: 1.375rem;
  }
}
.subcategory-section .subcategory-section-title a {
  color: #0f1e5c;
  text-decoration: none;
  transition: color 0.3s;
}
.subcategory-section .subcategory-section-title a:hover {
  color: #0d175c;
}
.subcategory-section .view-all-link {
  display: inline-flex;
  align-items: center;
  color: #0f1e5c;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s;
}
.subcategory-section .view-all-link {
  font-size: 0.875rem;
}
@media only screen and (min-width: 64rem) {
  .subcategory-section .view-all-link {
    font-size: 0.9375rem;
  }
}
.subcategory-section .view-all-link svg {
  transition: transform 0.3s ease;
}
.subcategory-section .view-all-link:hover {
  color: #0d175c;
}
.subcategory-section .view-all-link:hover svg {
  transform: translateX(4px);
}

.archive-heading-title {
  text-transform: uppercase;
  margin: 10px 0 30px;
}
@media only screen and (max-width: 47.99875rem) {
  .archive-heading-title {
    margin: 0 0 20px;
  }
}