/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Sep 07 2025 | 16:06:03 */
 .cotizador {
      display: flex;
      align-items: center;
      gap: 8px;
      font-family: Arial, sans-serif;
	 justify-content: space-between;
    }

    .input-wrapper {
      display: flex;
      align-items: center;
      border: 1px solid #ccc;
      border-radius: 4px;
      overflow: hidden;
    }

    .input-wrapper input {
      border: none;
      padding: 8px 12px;
      width: 70px;
      text-align: right;
      font-size: 16px;
      outline: none;
	  width: 100%;
	  padding:7px!important;
    }

    .input-wrapper span {
      background: #f3f4f6;
      padding: 8px 10px;
      font-size: 14px;
      border-left: 1px solid #ccc;
    }

	.producto_card h2 { 
		min-height:36px!important;
	}

    .cotizador button {
     	background: #083656;
   	 	border: none;
		padding: 10px 20px;
    	font-size: 14px;
    	font-weight: bold;
    	cursor: pointer;
    	border-radius: 4px;
    	transition: background 0.3s ease;
    	text-transform: uppercase;
    	color: #FFF;
    }

    .cotizador button:hover {
      background:#67a9de;
	  border-radius: 4px;
    }


	.btn-ver-cotizador {
		background: #67A9DE;
		color: #FFF;
		padding: 10px 20px;
		font-size: 14px;
    	font-weight: bold;
		text-transform: uppercase;
		border-radius: 5px;
	}

	.btn-ver-cotizador:hover {
		color: #FFF;
	}
