/* Grilla */

.store .form-row{
/*	display: flex;*/
	flex-wrap: wrap;
	margin-bottom: 1rem;
/*	gap: 1rem;*/
}

.store .col-1,
.store .form-row-first,
.store .col-2,
.store .form-row-last{
	width: 100% !important;
}

@media (min-width: 768px){
	.store .col-1,
	.store .form-row-first{
		flex: 0 0 auto;
		width: 50% !important;
	}

	.store .col-2,
	.store .form-row-last{
		flex: 0 0 auto;
		width: 48% !important;
	}
}

/* Forms */


.store form .form-row .input-text{
	font-size: 16px;
	line-height: 1.5em;
}

.store input.input-text,
.store textarea,
.store select {
	display: block;
	width: 100%;
	padding: 0 10px;
	font-size: 16px;
	line-height: 1.5;
	color: #212529;
	font-family: sans-serif;
	background-color: #fff;
	border: 1px solid #ced4da;
	border-radius: 0.375rem;
	transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.store .input-text::placeholder{
	color: #222;
	font-size: 12px;
	text-transform: uppercase;
}

.store input.input-text:focus,
.store textarea:focus,
.store select:focus {
	border-color: #86b7fe;
	outline: 0;
	box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

/* Botones */

.store a.button.alt,
.store button.button,
.store input.button,
.store a.button{
	display: inline-block;
	padding: 12px 25px;
	font-weight: 400;
	color: #fff !important;
	font-size: 16px;
	background-color: #1E2E80;
	border: 1px solid #1E2E80;
	border-radius: 0.375rem;
	transition: background-color 0.15s ease-in-out;
}

.store button.button:hover,
.store input.button:hover,
.store a.button:hover{
	background-color: #F78F1E;
	border-color: #F78F1E;
}

.store .button.checkout-button,
.store .button#place_order{
	width: 100%;
	font-size: 18px;
	padding: 15px 25px;
}



/* Cart */

.store .cart-collaterals .cart_totals,
.woocommerce-page .cart-collaterals .cart_totals{
	float: none;
	width: 100%;
}


/* Framework > Framework */

.page.store .woocommerce-input-wrapper{
	width: 100%;
}


/* Framework > Alerts */


.page.store form .form-row.woocommerce-invalid label {
	color: #a00;
}
.page.store form .form-row.woocommerce-invalid .select2-container,
.page.store form .form-row.woocommerce-invalid input.input-text,
.page.store form .form-row.woocommerce-invalid select {
	border-color: #a00;
}
.page.store form .form-row.woocommerce-validated .select2-container,
.page.store form .form-row.woocommerce-validated input.input-text,
.page.store form .form-row.woocommerce-validated select {
	border-color: #6dc22e;
}

/**

/* Store > Notices */

.store .woocommerce-info,
.store .woocommerce-error,
.store .woocommerce-message{
	border: 0;
}
.store .woocommerce-error{
	background: var(--bs-danger-bg-subtle);
}
.store .woocommerce-error a:hover{
	color: inherit;
	text-decoration: underline;
}

/* Store > Shop Table */

.woocommerce table.shop_table{
	width: 100%;
	background: #fff;
}
.woocommerce table.shop_table th{
	padding: 10px;
	font-weight: 500;
	font-size: 12px;
	color: #adadad;
	text-transform: uppercase;
}
.woocommerce table.shop_table td{
	padding: 10px;
	font-weight: 400;
	font-size: 16px;
	border-top: 1px solid rgba(0,0,0,0.1);
}
.woocommerce table.shop_table td input[type="checkbox"],
.woocommerce table.shop_table td input[type="radio"]{
	margin-right: 6px;
}

.woocommerce table.shop_table td.product-thumbnail{
	display: flex;
	align-items: center;
	line-height: 1.5em;
}
.woocommerce table.shop_table td.product-thumbnail .thumbnail{
	position: relative;
	display: inline-block;
	vertical-align: middle;
	max-width: 80px;
}
.woocommerce table.shop_table td.product-thumbnail .thumbnail img{
	max-width: 100%;
	height: auto;
}
.woocommerce table.shop_table td.product-thumbnail .thumbnail .remove{
	position: absolute;
	top: -12px;
	right: -12px;
	font-size: 25px;
}
.woocommerce table.shop_table td.product-thumbnail .data-product{
	display: inline-block;
	vertical-align: middle;
	padding-left: 20px;
}
.woocommerce table.shop_table td.product-thumbnail .data-product .product-title {
	font-weight: 700;
	font-size: 18px;
	line-height: 42px;
}
.woocommerce table.shop_table td.product-thumbnail .data-product .variation {
	display: flex;
	align-items: center;
	font-size: 15px;
	margin-top: -10px;
}
.woocommerce table.shop_table td.product-thumbnail .data-product .variation dd {
	margin: 0 0 0 6px;
}
.woocommerce table.shop_table td.product-quantity input {
	width: 70px;
	text-align: center;
}
.woocommerce table.shop_table tr.order-total td{
	font-size: 36px;
	font-weight: 300;
}
.woocommerce table.shop_table tr.order-total td strong{
	font-weight: 300;
}

@media screen and (min-width: 992px){
	.woocommerce table.shop_table th.product-name {
		width: 45%;
	}
	.woocommerce table.shop_table td{
		font-size: 18px;
	}
}

@media screen and (max-width: 767px){
	.woocommerce table.shop_table_responsive thead{
/*	    display: none;*/
	}
	.woocommerce table.shop_table_responsive tbody tr:first-child td:first-child{
		border-top: 0;
	}
	.woocommerce table.shop_table_responsive tbody th{
/*	    display: none;*/
	}
	.woocommerce table.shop_table_responsive tr{
		display: block;
		border-bottom: 2px solid #eee;
		border-top: 15px solid #fff;
	}
	.woocommerce table.shop_table_responsive tr td{
		display: block;
		border: 0;
		padding: 5px 0;
	}
	.woocommerce table.shop_table_responsive tr td.product-thumbnail .thumbnail{
		width: 50px;
	}
	.woocommerce table.shop_table_responsive tr td.product-quantity:before,
	.woocommerce table.shop_table_responsive tr td.product-quantity .quantity{
		display: inline-block;
		vertical-align: middle;
	}
	.woocommerce table.shop_table_responsive tr td.product-quantity .quantity input{
		line-height: 32px;
	}

	.woocommerce table.shop_table_responsive tr td.product-remove a{
		display: block;
		padding: 6px 0;
	}
	.woocommerce table.shop_table_responsive tr td .coupon{
		margin: 0 0 24px !important;
	}

	.woocommerce table.shop_table_responsive tr td::before{
		content: attr(data-title) ": ";
		display: inline-block;
		vertical-align: top;
		font-weight: 700;
	}
	.woocommerce table.shop_table_responsive tr td.actions::before,
	.woocommerce table.shop_table_responsive tr td.product-thumbnail::before,
	.woocommerce table.shop_table_responsive tr td.product-remove::before{
/*	    display: none;*/
	}
}



.customer_login .social-login{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 0;
}
.customer_login .social-login li{
	width: 100%;
}
.customer_login .social-login li:first-child{
	margin-bottom: 15px;
}
.customer_login .divisor{
	position: relative;
	font-size: 15px;
	font-weight: 400;
	text-align: center;
	margin: 30px 0;
}
.customer_login .divisor span{
	position: relative;
	display: inline-block;
	vertical-align: middle;
	background: #fff;
	padding: 3px 6px;
	z-index: 2;
}
.customer_login .divisor:after{
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	height: 1px;
	background: #B0B0B0;
}
.customer_login .actions{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
}

@media screen and (min-width: 576px){
	.customer_login .social-login{
		flex-wrap: nowrap;
	}
	.customer_login .social-login li:first-child{
		margin-bottom: 0;
		margin-right: 15px;
	}
}

/* Pages > Store > Cart */

.store.cart table.shop_table.cart thead th{
	padding: 20px 0;
	color: #1E2E80;
	font-size: 16px;
}
.store.cart .woocommerce .coupon{
	position: relative;
	z-index: 2;
}
.store.cart .woocommerce .coupon .input-wrapper{
	display: flex;
}
.store.cart .woocommerce .coupon .input-wrapper .btn{
	white-space: nowrap;
	padding: 0 15px;
	max-width: 105px;
}
@media screen and (min-width: 768px) {
	.store.cart .woocommerce .coupon{
		max-width: 400px;
	}

}
.store .woocommerce-shipping-calculator .shipping-calculator-button{
	display: block;
	padding: 6px 0;
	text-decoration: underline;
}
.store .woocommerce-shipping-calculator .shipping-calculator-form{
	display: flex;
	flex-wrap: wrap;
}
.store .woocommerce-shipping-calculator .shipping-calculator-form p,
.store .woocommerce-shipping-calculator .shipping-calculator-form .form-row{
	width: 100%;
	max-width: 100%;
	flex: 0 0 100%;
	padding: 0;
}

/* Pages > Store > Checkout */


.store.checkout form #customer_details .form-row{
	padding: 0 15px;
}
.store.checkout form #customer_details .notes{
	padding: 15px;
	background: rgba(0,0,0,0.05);
	border-radius: 5px;
}

.page.store.checkout .woocommerce-order .woocommerce-thankyou-order-failed-actions{
	text-align: center;
	margin-bottom: 50px;
}

.page.store.checkout .woocommerce-order .woocommerce-thankyou-order-received{
	display: none;
}
.page.store.checkout .woocommerce-order ul.order_details{
	padding: 15px;
	background: #fff;
	border: 1px solid rgba(0,0,0,0.1);
	border-radius: 5px;
}
.page.store.checkout .woocommerce-order ul.order_details li{
	line-height: 1.5em;
}

.page.store.checkout .woocommerce-order h2{
	margin-bottom: 20px;
}
.page.store.checkout .woocommerce-order address{
	background: #fff;
	padding: 15px;
	border-width: 1px;
	line-height: 1.5em;
	border:1px solid #eaeaea;
	border-radius: 5px;
}
.page.store.checkout .woocommerce-order address p{
	margin-bottom: 0;
}

/* Page > Store > Account */

.store.account .banner-user{
	display: flex;
	align-items: center;
	background: #FAF6EE;
	padding: 25px 0;
	min-height: 250px;
	border-bottom: 1px solid #E7E7E7;
}
.store.account .banner-user .title{
	margin: 0;
}
.store.account .banner-user .title h1{
	margin: 6px 0;
	font-size: 52px;
	line-height: 52px;
	font-weight: 500;
	text-transform: initial;
}
.store.account .banner-user p{
	margin: 0;
	font-weight: 400;
	letter-spacing: -0.69px;
	line-height: 24px;
}
.store.account .banner-user p a{
	color: inherit;
	text-decoration: underline;
}
.store.account .banner-user .subtitle{
	color: #EC1D24;
	font-size: 16px;
	text-transform: uppercase;
}

@media screen and (min-width: 992px){
	.store.account .banner-user{
		align-items: flex-end;
	}
}

.store.account .woocommerce-MyAccount-navigation ul{
	width: 100%;
	margin: 0 0 50px;
	text-align: center;
	white-space: nowrap;
	background: #eee;
	background: rgba(0,0,0,0.05);
	border-radius: 50px;
	overflow: auto;
}
.store.account .woocommerce-MyAccount-navigation ul li{
	display: inline-block;
	vertical-align: middle;
	margin: 0 -1px;
}
.store.account .woocommerce-MyAccount-navigation ul li a{
	position: relative;
	display: block;
	padding: 15px 0;
	margin: 0 15px;
	color: #1E2E80;
	font-size: 12px;
	font-weight: 400;
	text-transform: uppercase;
}
.store.account .woocommerce-MyAccount-navigation ul li a:after{
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 0;
	height: 2px;
	background: #1E2E80;
	transition: 0.3s all;
}
.store.account .woocommerce-MyAccount-navigation ul li.is-active a,
.store.account .woocommerce-MyAccount-navigation ul li.active a{
	color: #1E2E80;
	font-weight: 500;
}
.store.account .woocommerce-MyAccount-navigation ul li a:hover{
	text-decoration: none;
}
.store.account .woocommerce-MyAccount-navigation ul li.is-active a:after,
.store.account .woocommerce-MyAccount-navigation ul li.active a:after,
.store.account .woocommerce-MyAccount-navigation ul li a:hover:after{
	left: 0;
	width: 100%;
}

@media screen and (min-width: 992px){
	.store.account .woocommerce-MyAccount-navigation ul li a{
		padding: 20px 0;
	}
}

.store.account .dashboard-menu{
	justify-content: center;
}
.store.account .dashboard-menu article{
	position: relative;
	padding: 15px;
	color: #1E2E80;
	background: #FFFFFF;
	border-radius: 15px;
	box-shadow: 3px 3px 14px 0 rgba(0,0,0,0.07);
	transition: 0.3s all;
}
.store.account .dashboard-menu article h2{
	padding: 5px 5px 15px;
	margin: 0 0 15px;
	font-size: 21px;
	font-weight: 500;
	border-bottom: 1px solid #E7E7E7;
	border
}
.store.account .dashboard-menu article ul{
	margin: 0;
}
.store.account .dashboard-menu article ul li{
	position: relative;
	display: inline-block;
	vertical-align: middle;
	margin-right: 15px;
}
.store.account .dashboard-menu article ul li:after{
	content: '';
	position: absolute;
	top: calc(50% - 6px);
	right: 0;
	width: 1px;
	height: 12px;
	background: #1E2E80;
}
.store.account .dashboard-menu article ul li:last-child,
.store.account .dashboard-menu article ul li:last-child a{
	margin: 0;
}
.store.account .dashboard-menu article ul li:last-child:after{
	content: none;
}
.store.account .dashboard-menu article ul li a{
	display: block;
	padding: 6px;
	margin-right: 12px;
	font-size: 15px;
}

@media screen and (min-width: 992px){
	.store.account .dashboard-menu article{
		padding: 25px;
	}
	.store.account .dashboard-menu article h2{
		font-size: 42px;
	}
}

.store.account .addresses .address{
	padding: 15px;
}

.store.account .woocommerce-MyAccount-content form{
	max-width: 850px;
	margin-left: auto;
	margin-right: auto;
}
.store.account .woocommerce-MyAccount-content h2{
	margin-bottom: 20px;
}
.store.account .woocommerce-MyAccount-content form fieldset{
	margin: 30px 0;
}

.store.account .woocommerce-MyAccount-content .woocommerce-Address-title{
	margin: 0 0 30px;
}
.store.account .woocommerce-MyAccount-content .woocommerce-Address-title h2{
	margin: 0 0 10px;
}
.store.account .woocommerce-MyAccount-content address{
	background: #fff;
	padding: 15px;
	margin: 0;
	border: 1px solid #eaeaea;
	line-height: 1.5em;
	border-radius: 5px;
}
.store.account .woocommerce-MyAccount-content address p{
	margin-bottom: 0;
}

.store.account .woocommerce-address-fields__field-wrapper{
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(-1 * var(--bs-gutter-y));
    margin-right: calc(-.5 * var(--bs-gutter-x));
    margin-left: calc(-.5 * var(--bs-gutter-x));
    margin-bottom: 30px;
}
.store.account .woocommerce-address-fields__field-wrapper .form-row{
	padding-left: calc(var(--bs-gutter-x) * .5);
	padding-right: calc(var(--bs-gutter-x) * .5);
}


/* Store > Single > Product */


.store.single.product .woocommerce-product-gallery{
	position: relative;
	background-color: #fff;
	border: 1px solid #eaeaea;
}
.store.single.product .woocommerce-product-gallery__trigger{
	position: absolute;
	bottom: 0;
	right: 0;
	padding: 10px;
	font-size: 21px;
}
.store.single.product .woocommerce-product-gallery .woocommerce-product-gallery__wrapper a{
    position: relative;	
	display: block;
    height: 100%;
    width: 100%;
    z-index: 2;
}
.store.single.product .woocommerce-product-gallery .woocommerce-product-gallery__wrapper img{
	width: 100%;
	height: auto;
}

.store.single.product .summary .price{
	margin: 15px 0;
	font-size: 21px;
}
.store.single.product .summary form{
	padding: 15px 0;
}
.store.single.product .summary form .variations{
	margin-bottom: 15px;
}
.store.single.product .summary form .variations .woocommerce-variation-radios{

}
.store.single.product .summary form .variations .woocommerce-variation-radios label{
	font-size: 16px;
	margin-right: 10px;
}

.store.single.product .summary form .quantity{
	margin-bottom: 15px;
}
.store.single.product .summary form .quantity .input-text{
	max-width: 50px;
}

.store.single.product .summary .button{
	
}

.store.single.product .summary .product_meta .sku_wrapper{
	display: none;
}





/* Autocomplete */

.autocomplete-suggestions{
	text-align: left;
	cursor: pointer;
	margin-top: 1px;
	box-shadow: 1px 2px 3px rgba(0,0,0,.1);
	background: #fff;
	border-radius: 0 0 4px 4px;
	position: absolute;
/*    display: none;*/
	z-index: 99999;
	max-height: 254px;
	overflow: hidden;
	overflow-y: auto;
	box-sizing: border-box;
}
.autocomplete-suggestions .autocomplete-suggestion,
.autocomplete-suggestions .autocomplete-link{
	display: block;
	position: relative;
	padding: 6px 12px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	font-size: 14px;
}
.autocomplete-suggestions .autocomplete-suggestion b,
.autocomplete-suggestions .autocomplete-link b{
	font-weight: normal;
	color: #EC1D24;
}
.autocomplete-suggestions .autocomplete-suggestion:hover,
.autocomplete-suggestions .autocomplete-suggestion.selected,
.autocomplete-suggestions .autocomplete-link:hover,
.autocomplete-suggestions .autocomplete-link.selected{
	background: #f0f0f0;
}








/* Select2 */
.select2-container--open .select2-dropdown{
	/*top: 5px;*/
}

.select2-search--dropdown{
	padding: 6px;
}
.select2-container--default .select2-selection--single .select2-selection__rendered{
	background: #fff !important;
	line-height: 32px !important;
}
.select2-container--default .select2-selection--single .select2-selection__arrow{
	height: 32px !important;
	background: url(assets/img/icons/arrow-down.svg) no-repeat center !important;
	background-size: 15px !important;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b{
	display: none !important;
}
.select2-container--default .select2-selection--single{
	border-radius: 0 !important;
	border: 0 !important;
	height: 50px !important;
	box-shadow: 0 0 0 1px #222 !important;
}
.select2-results__option{
	font-size: 12px !important;
}
.select2-container--default .select2-results__option--selected{
	background-color: #eee !important;
	color: #1E2E80 !important;
}
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable{
	background-color: #1E2E80 !important;
	color: #fff !important;	
}

.woocommerce-form-login {
	background-color: #fff;
}

.coupon{
	width: 100%;
	display: flex;
}
.coupon .input-text{
	width: 100%;
	min-width: 200px;
	margin-right: 10px;
}