/**
* 2007-2023 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-2023 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.
*/

.hotspot {

    width: 2rem;
    height: 2rem;
    margin-left: -1rem;
    margin-top: -1rem;
    background: rgba(255, 255, 255, 0.275);
    backdrop-filter: blur(2px);
    border-radius: 50%;
    padding: 0;
    position: absolute;
    visibility: hidden;
    opacity: 0;
    border: 1px solid #ffffff;
    transition: opacity 0.25s ease-in-out;
  }
  .hotspot--left .product-hotpoint {
    left: 0;
  }
  .hotspot--right .product-hotpoint {
    right: 0;
  }
  .hotspot--active,
  .hotspot--active .product-hotpoint {
    z-index: 99999999999;
  }
  .hotspot--visible {
    visibility: visible;
    opacity: 1;
  }
  .hotspot::after {
    content: "";
    position: absolute;
    left: -1px;
    top: -1px;
    display: block;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    padding: 0;
    background-color: #ffffff;
    transform: scale(0.375);
    transition: transform 0.15s ease-in-out, background-color 0.5s ease-in-out;
  }
  .hotspot--loading {
    border-color: transparent;
  }
  .hotspot--loading::after {
    background-color: transparent;
    transform: scale(1);
  }
  .hotspot--loading::before {
    content: "";
    width: 2rem;
    height: 2rem;
    left: -1px;
    top: -1px;
    border-radius: 50%;
    position: absolute;
    border: 1px solid #ffffff;
    border-right-color: transparent;
    animation: spin 0.25s linear infinite;
  }
  
  @keyframes spin {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  
  .product-hotpoint {
    top: 0;
    position: absolute;
    display: grid;
    min-width: 360px;
    width: 100%;
    grid-template-columns: 132px 1fr 48px;
    align-items: center;
    background: #fff;
    z-index: 999;
    border-radius: 0.3125rem;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,.15);
  }
  .product-hotpoint__wrapper {
    padding: 1rem;
    text-align: left;
  }
  .product-hotpoint__name {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
  }
  .product-hotpoint__prices {
    font-size: 1.125rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    grid-gap: 0.5rem;
    color: #2d2525;
  }
  .product-hotpoint__price--discounted {
    color: #e50000;
  }
  .product-hotpoint__price--regular {
    font-size: 75%;
    text-decoration: line-through;
    color: #777777;
  }
  .home-inspiration {
    margin-bottom: 2rem;
  }
  .home-inspiration__image {
    position: relative;
  }
  .hotspot-btn {
    padding: 0.875rem 1.5rem;
    font-weight: 700;
    line-height: 1;
    border-radius: 3rem;
    font-size: .75rem;
    position: absolute;
    left: 0.5rem;
    bottom: 0.5rem;
    color: #555555;
    border: 1px solid #555555;
    background: rgba(255, 255, 255, 0.75);
  }
  .hotspots-modal__item  {
    display: grid;
    grid-template-columns: 80px 1fr 46px;
    align-items: center;
    grid-gap: 1rem;
  }
  .hotspot-btn--loading {
    color: transparent;
  }
  
  .hotspot-btn--loading:after, 
  .hotspot-btn--loading:disabled:after {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    right: 50%;
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    border: 1px solid #333333;
    border-right-color: transparent;
    transform: translate(50%, -50%);
    animation: spinner-btn .5s ease-in-out infinite;
  }
  