/*
Theme Name: Astra Child
Theme URI: https://wpastra.com/
Template: astra
Author: Brainstorm Force
Author URI: https://wpastra.com/about/?utm_source=theme_preview&utm_medium=author_link&utm_campaign=astra_theme
Description: The Astra WordPress theme is lightning-fast and highly customizable. It has over 1 million downloads and the only theme in the world with 5,700+ five-star reviews! It’s ideal for professional web designers, solopreneurs, small businesses, eCommerce, membership sites and any type of website. It offers special features and templates so it works perfectly with all page builders like Spectra, Elementor, Beaver Builder, etc. Fast performance, clean code, mobile-first design and schema markup are all built-in, making the theme exceptionally SEO-friendly. It’s fully compatible with WooCommerce, SureCart and other eCommerce plugins and comes with lots of store-friendly features and templates. Astra also provides expert support for free users. A dedicated team of fully trained WordPress experts are on hand to help with every aspect of the theme. Try the live demo of Astra: https://zipwp.org/themes/astra/
Tags: custom-menu,custom-logo,entertainment,one-column,two-columns,left-sidebar,e-commerce,right-sidebar,custom-colors,editor-style,featured-images,full-width-template,microformats,post-formats,rtl-language-support,theme-options,threaded-comments,translation-ready,blog
Version: 4.11.5.1751683771
Updated: 2025-07-05 02:49:31

*/


.add_to_cart_button,
.single_add_to_cart_button,
.product .cart {
  display: none !important;
}

.uagb-desc-text{
	text-align: justify;
  text-justify: inter-word;
}

/*estilos del indicador economico*/

.valores-economicos {
	width:90%;
	margin: 50px auto;
	padding: 1rem;
	display: flex;
  background-color: #f2f2f2;
	align-items:space-around;
	justify-content: space-evenly;
  border-radius: 8px;
  font-size: 1rem;
}


.search-form-container{
	box-shadow:0px 5px 11px 0px rgba(0,0,0,0.15);
	padding: 5px 0;
	margin: 10% 0 30px 0;
	border-radius: 10px;
}

#filtro-busqueda{
  width: 100%;
  max-width: 1000px; /* opcional */
  margin: 25px auto;
}

#filtro-busqueda input,
#filtro-busqueda select,
#filtro-busqueda button{
	margin: 5px 2px;
}

#filtro-busqueda select {
	min-width: 24%;
	height: 50px;
	border-radius: 5px;
	box-sizing: border-box;
}

#filtro-busqueda input,
#filtro-busqueda button{
	min-width: 15%;
	width: auto;
	height: 50px;
	border-radius: 5px;
  box-sizing: border-box;
}

.btn-limpiar-filtros button {
	background-color:var(--ast-global-color-7);
}

.search-product-card {
	height: 500px;
	border-radius:10px;
	padding:5% 5%;
	margin: 3rem 0;
	box-shadow:0px 5px 11px 0px rgba(0,0,0,0.1);
	display:grid;
	grid-template-columns: 1fr 2fr;
	grid-gap:10px;
}

.search-product-card a img {
	height:100% !important;
	width:80% !important;
	border-radius:5px;
	object-fit: cover !important;
}

/* carusel */
.card {
  background: white;
	width:250px;
	height:430px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem;
}

.card-img-container {
  width: 100%;
  height: 250px;
  overflow: hidden;
  border-radius: 10px;
}

.card-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-details-container {
  text-align: center;
  margin-top: 20px;
}

.card-title {
  font-size: 1.2rem !important;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.card-body {
  font-size: 0.9rem;
  color: #555;
}

.card-body ul {
	margin: 0 auto;
	list-style-type: none;
	max-width: 100%
	display:flex;
	flex-direction: column;
}

.card-body ul li:nth-child(1) {
	margin-bottom: 7px;
}

.card-body ul li:nth-child(3),
.card-body ul li:nth-child(2){
	font-size: 0.7rem;
	opacity: 0.7;
}

#slider {
   margin: 0 auto;
   width: 300px;
   max-width: 100%;
   text-align: center;
}
#slider input[type=radio] {
   display: none;
}
#slider label {
   cursor:pointer;
   text-decoration: none;
}
#slides {
   padding: 10px;
   background: #fff;
   position: relative;
   z-index: 1;
}
#overflow {
   width: 100%;
   overflow: hidden;
}
#slide1:checked ~ #slides .inner {
   margin-left: 0;
}
#slide2:checked ~ #slides .inner {
   margin-left: -100%;
}
#slide3:checked ~ #slides .inner {
   margin-left: -200%;
}
#slide4:checked ~ #slides .inner {
   margin-left: -300%;
}
#slides .inner {
   transition: margin-left 800ms cubic-bezier(0.770, 0.000, 0.175, 1.000);
   width: 400%;
   line-height: 1.2;
   height: 450px;
}
#slides .slide {
   width: 25%;
   float:left;
   display: flex;
   justify-content: center;
   align-items: center;
   height: 100%;
   color: #fff;
}

#controls {
   margin: -180px 0 0 0;
   width: 100%;
   height: 50px;
   z-index: 3;
   position: relative;
}
#controls label {
   transition: opacity 0.2s ease-out;
   display: none;
   width: 50px;
   height: 50px;
   opacity: .4;
}
#controls label:hover {
   opacity: 1;
}
#slide1:checked ~ #controls label:nth-child(2),
#slide2:checked ~ #controls label:nth-child(3),
#slide4:checked ~ #controls label:nth-child(1) {
   float:right;
   margin: 0 -50px 0 0;
   display: block;
}
#slide1:checked ~ #controls label:nth-last-child(2),
#slide2:checked ~ #controls label:nth-last-child(3),
#slide4:checked ~ #controls label:nth-last-child(1) {
   float:left;
   margin: 0 0 0 -50px;
   display: block;
}
#bullets {
   margin: 150px 0 0;
   text-align: center;
}
#bullets label {
   display: inline-block;
   width: 10px;
   height: 10px;
   border-radius:100%;
   background: #ccc;
   margin: 0 10px;
}
#slide1:checked ~ #bullets label:nth-child(1),
#slide2:checked ~ #bullets label:nth-child(2),
#slide3:checked ~ #bullets label:nth-child(3), {
   background: #444;
}
@media screen and (max-width: 900px) {
   #slide1:checked ~ #controls label:nth-child(2),
   #slide2:checked ~ #controls label:nth-child(3),
   #slide4:checked ~ #controls label:nth-child(1),
   #slide1:checked ~ #controls label:nth-last-child(2),
   #slide2:checked ~ #controls label:nth-last-child(3),
   #slide4:checked ~ #controls label:nth-last-child(1) {
      margin: 0;
   }
   #slides {
      max-width: 100% ;
      margin: 0 auto;
   }
}

/* end carusel */

@media screen and (max-width: 800px) {
  .valores-economicos {
    flex-direction: column;
		justify-content: center;
    align-items: center;
  }
	
	.valores-economicos p:nth-child(2){
		margin-bottom: 10px;
	}
	
	.search-form-container {
		margin-top:50px;
	}
	
	#filtro-busqueda{
		margin-bottom: 25px !important;
		padding: 0 5px
	}
	#filtro-busqueda select, 
	#filtro-busqueda input,
	#filtro-busqueda button{
		min-width:100% !important;
		width: 100%;
		height: 50px;
		margin: 5px 0
	}
	
	.search-product-card {
		height: auto;
		padding:5% 5%;
		margin: 1rem 0;
		grid-template-columns: 1fr;
		grid-template-rows: 1.5fr 0.8fr;
		grid-gap:3rem;
	}

	.search-product-card a img {
		height:100% !important;
		width:100% !important;
	}
	
	.product-card-info {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
	}
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}