/*--     CHECKOUT     --*/
#billing_country_field
{
	display:none;
}
/*Boleta o factura*/
#seccion_opcion_boleta_o_factura
{
	clear:both;
}
#externo_radio_opcion_boleta_o_factura input[type="radio"]{
  display: none;
}
#externo_radio_opcion_boleta_o_factura
{
	display: flex;
	justify-content:space-evenly;
  border-radius: 5px;
}
#externo_radio_opcion_boleta_o_factura .opcion
{
  width: 100%;
	max-width: 160px;
  display: flex;
  align-items: center;
	justify-content:center;
  border-radius: 5px;
  cursor: pointer;
  padding: 6px 10px;
  border: 2px solid lightgrey;
  transition: all 0.3s ease;
}
#externo_radio_opcion_boleta_o_factura .opcion .dot
{
  height: 20px;
  width: 20px;
	margin-right:8px;
  background-color:var(--global-palette9);
  border-radius: 50%;
  position: relative;
}
#externo_radio_opcion_boleta_o_factura .opcion .dot::before
{
  position: absolute;
  content: "";
  top: 4px;
  left: 4px;
  width: 12px;
  height: 12px;
  background: var(--global-palette1);
  border-radius: 50%;
  opacity: 0;
  transform: scale(1.5);
  transition: all 0.3s ease;
}
#radio_opcion_boleta_o_factura_boleta:checked:checked ~ .opcion-1 ,
#radio_opcion_boleta_o_factura_factura:checked:checked ~ .opcion-2 {
  border-color:#0004;
  background-color: var(--global-palette1);
	color:white;
}
#radio_opcion_boleta_o_factura_boleta:checked:checked ~ .opcion-1 .dot::before,
#radio_opcion_boleta_o_factura_factura:checked:checked ~ .opcion-2 .dot::before{
  opacity: 1;
  transform: scale(1);
}
#externo_radio_opcion_boleta_o_factura .opcion span{
  font-size: 20px;
}
/*Número de pedido en order-received*/
.woocommerce ul.order_details li.order strong
{
	font-size:28px;
}
/*-FIN CHECKOUT-*/
