.product .content {
  padding: 30px 0;
}

.product_image {
  position: relative;
  margin-bottom: 10px;
}

.product_image_focus {
  margin-bottom: 5px;
}

.product_image_gallery img {
  cursor: pointer;
  display: inline-block;
  width: 90px;
  height: 90px;
  margin: 5px;
  border-radius: 5px;
}

#image-product {
  border-radius: 5px;
}

.product_image_gallery img:hover {
  border: 1px solid var(--primary-color);
}

.j_select_gallery.active {
  border: 2px solid var(--primary-color);
}

.j_select_gallery.active:hover {
  border: 2px solid var(--primary-hover-color);
}

.product_info .breadcrumb {
  padding: 0;
}

.product_info .wc_shipment {
  display: none !important;
}

.product_info_heading {
  margin-bottom: 25px;
  line-height: 25px;
  letter-spacing: 1px;
}

.product_info_heading h1 {
  color: var(--primary-background-text-color);
  font-size: 22px;
}

.product_info_rating {
  width: 100%;
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  border-top: 2px solid var(--secondary-background-text-color);
  margin-top: 10px;
  padding-top: 10px;
}

.product_info_rating p {
  display: inline-block;
  font-size: 1rem;
  margin-right: 3px;
  color: var(--color-product-text);
}

.product_info_rating .rank,
.product_info_rating .favorites,
.product_info_rating .code {
  font-size: 0.875rem;
}

.product_info_price {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: start;
  width: 100%;
}

.product_info_price .price,
.product_info_price .split {
  display: flex;
  align-items: end;
  justify-content: start;
  width: 100%;
  color: var(--secondary-background-text-color);
  gap: 15px;
}

.product_info_price .split .split_value,
.product_info_price .split .split_price_value {
  color: var(--primary-color);
}

.price .old_price {
  font-size: 20px;
  text-decoration: line-through;
  margin-bottom: 3px;
}

.price .new_price {
  color: var(--secondary-background-text-color);
  font-size: 28px;
  font-weight: bold;
}

.split span {
  font-size: 0.875rem;
  color: var(--secondary-background-text-color);
}

.product_footer {
  background-color: var(--secondary-background-color);
}

.product_footer .product_footer_tabs {
  background-color: var(--primary-background-color);
}

.product_footer .product_footer_body {
  min-height: 304px;
}

.product_footer ul {
  display: flex;
  justify-content: space-around;
}

.product_footer ul li {
  flex-grow: 1;
  -webkit-transition: background-color 0.5s;
  -moz-transition: background-color 0.5s;
  -ms-transition: background-color 0.5s;
  -o-transition: background-color 0.5s;
  transition: background-color 0.5s;
}

.product_footer ul li a,
.product_footer ul li button {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  background-color: transparent;
  color: #000000;
  box-shadow: none;
  padding: 10px 0;
  width: 100%;
}

.product_footer ul li button span,
.product_footer ul li button strong {
  font-size: 1rem;
  color: #000000;
}

.product_footer ul li:hover a {
  color: var(--primary-background-text-color);
}

.product_footer ul li a:hover,
.product_footer ul li a.wc_active {
  color: var(--primary-background-text-color);
  border-bottom: 1px solid var(--primary-color);
  font-weight: 600;
}

.product_footer_description p {
  font-size: 0.875rem;
  color: #000000;
  line-height: 25px;
}

.product_footer_description p:not(:last-child) {
  margin-bottom: 10px;
}

.product_footer_description p span {
  display: block;
  color: #000000;
  font-weight: 600;
}

.product_footer_reviews textarea {
  resize: none;
}

.product_footer_reviews select {
  background-size: auto 60%;
}

.products .content {
  padding: 20px 0;
}

.products-items {
  margin: 60px auto 30px auto;
  padding: 0;
}

.products-items-header {
  position: relative;
  display: flex;
  justify-content: space-between;
  border-bottom: 2px solid var(--secondary-background-color);
  padding-bottom: 5px;
}

.products-items-title {
  font-size: 20px;
  line-height: 3rem;
  letter-spacing: 3px;
  margin: 0;
}

.products_item {
  min-height: 410px;
  padding: 5px;
}

.products_item:hover {
  border: 1px solid var(--default-color);
}

.products_item .first {
  visibility: visible;
  opacity: 1;
}

.products_item:hover .first {
  visibility: hidden;
  opacity: 0;
}

.products_item .second {
  visibility: hidden;
  opacity: 0;
}

.products_item:hover .second {
  visibility: visible;
  opacity: 1;
}

.products_item .img-fio {
  opacity: 0;
  max-width: 250px;
  text-align: center;
  margin: auto;
}

.products_item:hover .img-fio {
  opacity: 1;
  transition: 0.3s ease-in;
}

.products_item_image {
  position: relative;
  min-height: 285px;
  overflow: hidden;
}

.products_item_image img {
  height: auto;
  width: 100%;
  position: absolute;
  right: 0;
  left: 0;
  margin: 0;
  transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.products_item_image .products_close {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  position: absolute;
  top: 5px;
  right: 5px;
  background-color: var(--primary-color);
  border-radius: 50%;
  transition: transform 0.3s ease-in-out;
}

.products_item_image .products_close:hover {
  transform: scale(1.05);
  background-color: var(--primary-hover-color);
}

.products_item_image .products_close span {
  font-size: 1rem;
  color: var(--secondary-text-color);
  cursor: pointer;
  margin: 0;
}

.products_item_image .action_purchase,
.products_item_image .action_view {
  width: 55px;
  height: 55px;
  position: absolute;
  right: 10px;
  top: 10px;
}

.products_item_image .action_purchase {
  bottom: 180px;
  transition: right 0.2s ease-in-out;
}

.products_item_image .action_view {
  bottom: 120px;
  transition: right 0.3s ease-in-out;
}

.products_item:hover .products_item_image .action_purchase,
.products_item:hover .products_item_image .action_view {
  opacity: 0.7;
  display: inline-block;
}

.products_item_image .action_purchase a,
.products_item_image .action_view a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  font-size: 0.8125rem;
  font-weight: bold;
  border-radius: 100%;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 0.3s ease-in-out,
    border-top-color 0.3s ease-in-out;
}

.products_item_image .action_purchase a:hover,
.products_item_image .action_view a:hover {
  color: #000000cc;
  background-color: #000000cc;
}

.products_item_image .action_purchase a i,
.products_item_image .action_view a i {
  font-size: 1.5rem;
}

.products_item_title {
  display: flex;
  align-items: center;
  padding: 0 15px;
  margin: 10px 0;
  line-height: 20px;
  height: 40px;
}

.products_item_title a {
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.2px;
  color: var(--secondary-background-text-color);
}

.products_item_title a::first-letter {
  text-transform: uppercase;
}

/*products => item => price*/
.products_item_price {
  padding: 0 15px;
  text-align: left;
}

.products_item_price a {
  font-size: 0.95rem;
  color: var(--color-text-black);
  font-weight: 600;
  text-decoration: none;
}

.hidden_price a {
  color: var(--primary-color) !important;
}

.hidden_price .hidden_price_text {
  font-size: .75rem;
  margin-left: 5px;
}

.hidden_price .hidden_price_text:hover {
  text-decoration: underline;
}

.products_item_price .price {
  margin-bottom: 0;
}

.products_item_price .price a {
  color: var(--primary-color);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
}

.products_item_price a .old_price {
  font-size: 0.75rem;
  color: var(--secondary-background-text-color);
  text-decoration: line-through;
}

.products_item_price .discount {
  margin-left: 10px;
  margin-bottom: 0;
}

.pay_split a span {
  font-size: 1rem;
  font-weight: 300;
  color: var(--secondary-background-text-color);
}

.products_item_price a .installment {
  display: block;
  font-size: 0.9rem;
  color: #000000;
  font-weight: 300;
  margin-top: 10px;
}

.products_item_price .pay_split {
  width: 100%;
}

.products_wrap {
  min-height: 500px;
}

.products_modal {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: calc(100vh - 96px);
  position: fixed;
  background-color: #000000;
  z-index: 998;
}

.products_modal_content {
  display: none;
  width: 90%;
  height: 90%;
  position: relative;
  background-color: white;
}

.products_modal_content .product {
  max-height: calc(100% - 45px);
  overflow-y: auto;
  border-top: 10px solid white;
  border-bottom: 10px solid white;
}

.products_modal_content .product::-webkit-scrollbar {
  width: 5px;
  background-color: white;
}

.products_modal_content .product::-webkit-scrollbar-thumb {
  background-color: transparent;
  box-shadow: 0 0 10px #000000;
  border-radius: 5px;
}

.products_modal_content .product .content {
  width: 95%;
  padding: 0;
}

.products_modal_content_close.modal_pdt_mobile {
  padding: 10px;
  text-align: center;
}

.products_modal_content_close.modal_pdt_mobile span {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: bold;
  text-decoration: none;
  text-transform: uppercase;
  padding: 5px 20px;
  border-radius: 5px;
}

.products_modal_content_close.modal_pdt_mobile span:hover {
  cursor: pointer;
}

.products_modal_content_close.modal_pdt_desktop {
  display: none;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  position: absolute;
  top: -20px;
  left: -20px;
  border-radius: 50%;
  transition: transform 0.3s ease-in-out;
}

.products_modal_content_close.modal_pdt_desktop:hover {
  transform: scale(1.05);
  cursor: pointer;
}

.products_modal_content_close.modal_pdt_desktop i {
  font-size: 1.875rem;
  color: #000000cc;
}

.categories .products .paginator {
  justify-content: flex-end;
}

.categories .products .paginator li span.active {
  display: block;
  width: 40px;
  border-radius: 40px;
  border: 1px solid var(--primary-color);
  color: var(--primary-background-text-color);
}

.categories .products .paginator li span:hover,
.categories .products .paginator li a:hover {
  font-weight: 600;
  color: var(--primary-background-text-color);
}

.categories .products {
  display: flex;
  flex-wrap: wrap;
}

.products .owl-nav {
  width: 100%;
  position: absolute;
  top: 35%;
}

.products .owl-nav .owl-prev,
.products .owl-nav .owl-next {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  position: absolute;
  font-size: 2rem;
  color: #ffffff;
  background-color: #000000cc;
  box-shadow: 0 0 2px #000000;
  transition: background-color 0.2s ease-out, color 0.2s ease-out;
}

.products .owl-nav .owl-prev {
  left: 0;
}

.products .owl-nav .owl-next {
  right: 0;
}

.products .owl-nav .owl-prev:hover,
.products .owl-nav .owl-next:hover {
  background-color: #000000cc;
}

.tags {
  position: absolute;
  top: 5px;
  left: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 28%;
}

.tags .new_product {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background-color: var(--primary-color);
  padding: 3px 0;
}

.tags .new_product p a {
  color: var(--primary-text-color);
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.tags .discount_product {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background-color: var(--primary-color);
  padding: 3px 0;
}

.tags .discount_product p a {
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--primary-text-color);
}

.wishlist_container {
  margin-bottom: 1rem;
}

.wishlist_container .actions_wishlist {
  text-align: center;
  cursor: pointer;
  color: var(--primary-background-text-color);
}

.wishlist_container .actions_wishlist span {
  border-bottom: 1px solid black;
}

/*
BUY SECTION - START
*/

.products_item:hover .btn-comprar {
  transition: 0.2s ease-in;
  opacity: 1;
}

.btn-comprar {
  opacity: 0;
}

.btn-comprar button {
  width: 85%;
  padding: 15px;
  border: none;
  color: #000000;
  text-align: center;
  letter-spacing: 2px;
}

.btn-comprar button:hover {
  background-color: #000000cc;
}

/*
BUY SECTION - END
*/

/*
MEDIA QUERIES - START
*/

/*
1300px
*/
@media (max-width: 81.25em) {
  .products_item {
    min-height: 370px;
  }

  .products_item_image {
    min-height: 250px;
  }

  .footer_links article h1 {
    font-size: 1rem;
  }
}

/*
1200px
*/
@media (min-width: 75em) {
  .products_modal_content .product .content {
    width: 90%;
  }
}

/*
1100px
*/
@media (min-width: 68.75em) {
  .combo .products .products_item {
    width: 24.25% !important;
    margin: 1% 1% 1% 0 !important;
  }

  .combo .products .products_item:nth-of-type(4n + 0) {
    margin-right: 0 !important;
  }
}

/*
992px
*/
@media (min-width: 62em) {
  .header_mobile {
    display: none;
  }

  .header_desktop {
    display: block;
  }

  .products_modal {
    height: 100vh;
  }

  .products_modal_content .product {
    max-height: 100%;
  }

  .products_modal_content .product::-webkit-scrollbar {
    width: 10px;
  }

  .products_modal_content_close.modal_pdt_mobile {
    display: none;
  }

  .products_modal_content_close.modal_pdt_desktop {
    display: flex;
  }

  .product_footer_description {
    max-height: none;
    overflow-y: visible;
    padding-right: 0;
  }
}

/*
850px
*/
@media (min-width: 53.125em) {
  .products .owl-nav {
    display: flex;
    justify-content: space-between;
    width: 125px;
    top: -35px;
    right: 0;
  }

  .products .owl-nav .owl-prev,
  .products .owl-nav .owl-next {
    flex-basis: 60px;
    height: 30px;
    position: initial;
    font-size: 1.875rem;
  }

  .wishlist .products .products_item {
    width: 32.6%;
    margin: 1% 1.1% 1% 0;
  }

  .wishlist .products .products_item:nth-of-type(3n + 0) {
    margin-right: 0;
  }

  .combo .products .products_item {
    width: 32.6%;
    margin: 1% 1.1% 1% 0;
  }

  .combo .products .products_item:nth-of-type(3n + 0) {
    margin-right: 0;
  }
}

/*
850px
*/
@media (min-width: 53.125em) {
  .products .owl-nav {
    display: flex;
    justify-content: space-between;
    width: 125px;
    top: -35px;
    right: 0;
  }

  .products .owl-nav .owl-prev,
  .products .owl-nav .owl-next {
    flex-basis: 60px;
    height: 30px;
    position: initial;
    font-size: 1.875rem;
  }
}

/*
850px
*/
@media (min-width: 53.125em) {
  .combo .products .products_item {
    width: 32.6%;
    margin: 1% 1.1% 1% 0;
  }

  .combo .products .products_item:nth-of-type(3n + 0) {
    margin-right: 0;
  }
}

/*
768px
*/
@media (max-width: 48em) {
  .products_item {
    min-height: 290px;
    margin: 6px 0;
  }

  .products_item .img-fio {
    opacity: 0;
    max-width: 100%;
  }

  .products_item .btn_purchase {
    display: none;
  }

  .products_item_title {
    display: block;
    max-height: 45px;
    overflow: hidden;
    padding: 0 10px;
    margin: 0 0 10px 0;
  }

  .products_item_title a {
    font-size: 0.875rem;
  }

  .products_item_title h4 {
    font-size: 1.5rem;
    line-height: 22px;
  }

  .products_item_image {
    min-height: 180px !important;
  }

  .products_item_image img {
    max-width: 250px !important;
    height: auto;
    margin: auto;
  }

  .products_item_image .action_view,
  .products_item_image .action_purchase {
    display: none;
  }

  .products_item_price {
    padding: 0 10px;
  }

  .products_item_price a {
    font-size: 0.95rem;
  }

  .products_item_price a .old_price {
    font-size: 0.7rem;
  }

  .pay_split a span {
    font-size: 0.875rem;
  }

  .wishlist .products .products_item,
  .categories .products .products_item {
    width: 48%;
    float: left;
    margin: 1%;
  }

  .product_info_rating p {
    margin-left: 0 !important;
  }

  .product_info_rating .rank,
  .product_info_rating .favorites,
  .product_info_rating .code {
    font-size: 0.75rem;
  }

  .product_image_gallery {
    display: flex;
    white-space: nowrap;
    overflow-x: auto;
    max-width: 100%;
    max-height: 100%;
    padding: 15px 0;
  }

  .product_footer ul {
    padding: 0;
  }

  .product_footer ul li a {
    display: flex;
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
    font-size: 0.875rem;
  }

  .product_footer ul li a.wc_active i {
    top: -3.5rem;
    left: 0;
  }

  .tags {
    width: 45%;
  }

  .tags .new_product p a,
  .tags .discount_product p a {
    font-size: 0.575rem;
    line-height: 25px;
  }

  .btn-comprar {
    opacity: 1 !important;
  }
}

/*
500px
*/
@media (min-width: 31.25em) {
  .products_wrap {
    width: 90%;
  }

  .product_image {
    display: inline-block;
    width: 49%;
    vertical-align: top;
    margin: 1% 2% 10px 0;
  }

  .product_footer ul li a {
    padding: 10px 20px;
  }
}

/*
550px and 849px
*/
@media (min-width: 34.375em) and (max-width: 53.0625em) {
  .combo .products .products_item {
    width: 49.5%;
    margin: 1% 1% 1% 0;
  }

  .combo .products .products_item:nth-of-type(2n + 0) {
    margin-right: 0;
  }
}

/*
550px
*/
@media (min-width: 34.375em) {
  .products_wrap {
    width: 100%;
  }

  .products_modal {
    height: calc(100vh - 51px);
  }

  .combo .products .products_item {
    display: inline-block;
    vertical-align: top;
  }
}

@media screen and (max-width: 48em) {
  .products_wrap {
    min-height: 400px;
  }
}

/*
400px
*/
@media (min-width: 25em) {
  .products_wrap {
    width: 90%;
    margin: 0 auto;
  }
}
