/**
* 2007-2024 PrestaShop
*
* NOTICE OF LICENSE
*
* This source file is subject to the Academic Free License (AFL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://opensource.org/licenses/afl-3.0.php
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@prestashop.com so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please refer to http://www.prestashop.com for more information.
*
*  @author    PrestaShop SA <contact@prestashop.com>
*  @copyright 2007-2024 PrestaShop SA
*  @license   http://opensource.org/licenses/afl-3.0.php  Academic Free License (AFL 3.0)
*  International Registered Trademark & Property of PrestaShop SA
*
* Don't forget to prefix your containers with your own identifier
* to avoid any conflicts with others containers.
*/

.product-widget-contact {
        width: 100%;
        /* max-width: 540px; */
        border: 1px solid #989898; /* Borde del contenedor */
        /* box-shadow: 0 2px 5px rgba(0,0,0,0.1); */ /* Sombra para el contenedor */
        margin-top: 10px;
        padding: 0px;
        margin-bottom: 10px;
    }
    .product-widget-contact__title {
        text-align: center; /* Centro el texto */
        padding: 12px 20px; /* Padding para el título */
        font-size: 16px; /* Tamaño de fuente del título */
        background-color: #ececec; /* Color de fondo para el título */
        color: #4f4846; /* Color del texto del título */
        /* border-bottom: 1px solid #b3a091; */ /* Borde debajo del título */
    }
    .product-widget-contact__info {
        display: flex;
        justify-content: space-around; /* Espacio alrededor de los ítems */
        padding: 5px 5px; /* Padding interno */
        background-color: #ffffff; /* Color de fondo para los enlaces */
    }
    .product-widget-contact__link {
        color: #333; /* Color de los enlaces */
        text-decoration: none; /* Sin subrayado en los enlaces */
        font-size: 14px; /* Tamaño de la fuente de los enlaces */
        display: flex;
        align-items: center; /* Alineación de íconos con texto */
    }
    .icon-message, .icon-phone {
        font-size: 20px; /* Tamaño de los íconos */
        margin-right: 8px; /* Espacio a la derecha del ícono */
        font-style: normal;
    }
    .link-span-ct {
        display: inline-block; /* Bloque en línea para mejor control */
    }

    .product-widget-contact__link span{
    position: relative; /* Necesario para posicionar la pseudo-clase */
    overflow: hidden; /* Para mantener la pseudo-elemento dentro del enlace */
    text-decoration: none; /* Opcional: Elimina el subrayado por defecto de los enlaces */
	}

	.product-widget-contact__link span::after {
	    content: '';
	    position: absolute;
	    bottom: 0; /* Alinea la línea en la parte inferior del texto */
	    left: 0;
	    width: 0; /* Comienza sin ninguna extensión */
	    height: 2px; /* Altura de la línea de subrayado */
	    background-color: #000; /* Color de la línea, puedes cambiarlo */
	    transition: width 0.3s ease-in-out; /* Transición suave de la línea */
	}

	.product-widget-contact__link span:hover::after {
	    width: 100%; /* La línea se expande hasta el ancho completo del enlace */
	}

    span#numusersview {
    font-size: 13px;
}