/**
 * 2026 Addify
 *
 * 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    Addify
 *  @copyright 2026 Addify
 *  @license   http://opensource.org/licenses/afl-3.0.php
*/

.option_group .checkbox {
  display: flex;
  align-items: center;
  margin: 5px 0px -2px 0px;
  font-size: 14px;
  cursor: pointer;
}

.specific-checkbox-field {
  display: flex;
  flex-direction: column;
}

.addify-option {
  margin-right: 4px;
}
.option_group .radio {
  display: flex;
  align-items: center;
  margin: 5px 0px -2px 0px;
  font-size: 14px;
  cursor: pointer;
}
/* checkbox, radio */
.option_group .addify-option,
.option_group .addify-radio {
  margin-right: 5px;
}
.description {
  margin-left: 44px;
  font-size: 12px;
  color: #3b2f2f;
}

.image-style {
  margin-right: 5px;
}

.notification-message {
  display: block;
  width: fit-content;
  background-color: var(--bg-color);
  padding: 4px 8px 4px 0px;
  border-radius: 4px;
  margin-top: 8px;
}

.option-description {
  margin: 5px 0px 0px 10px;
  font-size: 12px;
  color: #3b2f2f;
}

/* select */
select {
  width: 80%;
}

/* hide discount and regular price on the cart  */
.cart-item .product-discount {
  display: none !important;
}

/* toooltip icon to show description code */
.tooltip-wrapper {
  position: relative;
  display: inline-block;
}
.tooltip-icon {
  display: inline-block;
  background: #007bff;
  color: white;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  font-size: 12px;
  text-align: center;
  cursor: pointer;
  font-weight: bold;
  line-height: 18px;
  margin-left: 6px;
}
.tooltip-box {
  display: none;
  position: absolute;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #333;
  color: #fff;
  padding: 8px 12px;
  border-radius: 6px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  text-align: left;
  width: 220px;
  white-space: normal;
  word-wrap: break-word;
  overflow-wrap: break-word;
  z-index: 999;
  font-size: 13px;
  line-height: 1.4;
}
.tooltip-wrapper:hover .tooltip-box {
  display: block;
}
.tooltip-box::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 6px;
  border-style: solid;
  border-color: #333 transparent transparent transparent;
}
