/**
 * 2023 wslist
 *
 * 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    Goryachev Dmitry <dariusakafest@gmail.com>
 * @copyright 2023 wslist
 * @license   http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
 */
 
.wslist-button-container {
  display: inline-block !important;
  visibility: visible !important;
  vertical-align: middle;
}

.wslist-button {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  margin: 0 10px 0 0;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.wslist-button:hover {
  transform: scale(1.1);
}

.wslist-button .wslist-icon {
  font-size: 20px;
  color: #7a7a7a;
  transition: color 0.3s ease;
}

.wslist-button.already-added .wslist-icon {
  color: #ff4c4c;
}

.wslist-button:hover .wslist-icon {
  color: #0B9444;
}

.wslist-button.already-added:hover .wslist-icon {
  color: #ff4c4c;
}

.pst-product-tooltip {
  display: none;
}

.wishlist-miniature {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
}

/* Style dla motywu medlife */
.wishlist-miniature .quick-view {
  background: transparent;
  border: none;
  color: #7a7a7a;
  padding: 0;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.wishlist-miniature .quick-view:hover {
  color: #0B9444;
}