<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*Los colores de botones de la pagina del carro de compras se manejan desde una funcion*/

body {
    font-family: "Gotham Rounded", sans-serif; /*Para contacto de bordafax*/
      font-style: italic;
  }
  
  .woocommerce-product-details__short-description{
  color: black !important;
  }

  .product_meta a {
  color: black;
  }
  .posted_in, .mfn-checkout-steps {
      color: black !important; 
      }
  
  /* colores de envio de carrito */
  td[data-title="EnvÃ­o"] {
    color: black;
  }
  #shipping_method {
    color: black !important; 
  }
  
  /*Colores para boton agregar al carrito*/
  .single_add_to_cart_button.button.alt, .active .mfn-step-number, .button.alt {
  background-color: #E10B17 !important;
  }
  .mfn-woo-product-title, .price {
      font-weight: bold !important;
  }
 

  #Action_bar {
      background-color: white !important ;
      font-style: normal;
  
  }
  
  #Subheader {
    display: none;
  }
  
  /*Darle color al fondo acorde a los estilos */
  #Content{
      background-color: rgba(30, 77, 129, 0.35) !important;
  
  }
  
  /*Darle color y contorno al precio */
  .woocommerce-Price-amount, .woocommerce-price-suffix{
      color:  white; /*#E10B17*/
      
      /*text-shadow:
          -1px -1px 0 #5E5350,  
           1px -1px 0 #5E5350,
          -1px  1px 0 #5E5350,
           1px  1px 0 #5E5350;*/
  }
  #Top_bar .logo .custom-logo-link {
      padding-top: 15px!important;
  }
   
  #Top_bar .logo .custom-logo-link img {
      content: url(https://bordafax.com/wp-content/uploads/2024/08/Sin-titulo.png) !important;
      width: 120% !important ;
        height: 120% !important;
          padding-bottom: 0;
          max-height: 100px;
  }
  
  /*elimino productos recomendados*/
  .up-sells {
    display: none;
  }
  
  .custom-toolbar ul {
      list-style: none;
      padding: 0;
  }
  
  .custom-toolbar ul li {
      display: inline;
      margin-left: 10px;
  }
  .custom-toolbar a {
      color: #fff;
      text-decoration: none;
  }
  /*Darle formato y sombreado a las imagenes */
  .mask, .image_wrapper  {
      box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2); /* Desplazamiento horizontal, desplazamiento vertical, desenfoque y color de la sombra */
      overflow: hidden; /* Asegura que cualquier contenido adicional no sobresalga del contenedor */
      border-radius: 8px; /* Ajusta el valor segÃºn el redondeo que desees */
     
  }
  
  /*Menu en negrita y color negro al pasar el mouse por arriba */
  .menu_wrapper a:hover {
      color: #E10B17 !important; /* Color del enlace al pasar el mouse */
      text-decoration: underline!important; /* Puedes volver a agregar un subrayado si lo deseas */
      font-weight: bold !important; /* Aplica negrita al pasar el mouse */
          text-decoration: none !important;
  }

.woocommerce-thankyou-order-received {
	color: black !important;
}

/*Modificacion tamaÃ±o logo para mobile*/
@media (max-width: 768px) {  
  .logged-in #Top_bar .logo .custom-logo-link img {
    width: 90% !important;
    height: 80% !important;
		margin-bottom: 20px;
  }
}</pre></body></html>