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

.variant-popup-button {
                        /* Center the content */
                        align-items: center;
                        display: flex;
                        justify-content: center;

                        /* Spacing */
                        padding: 5px;
                    }

                    .button__arrow {
                        /* Transparent background */
                        background-color: transparent;

                        /* Size */
                        height: 12px;
                        width: 12px;
                    }

                    .button__arrow--up {
                        /* Edges */
                        border-left: 1px solid rgba(0, 0, 0, 0.3);
                        border-top: 1px solid rgba(0, 0, 0, 0.3);
                        transform: translateY(25%) rotate(45deg);
                    }

                    .button__arrow--right {
                        /* Edges */
                        border-right: 1px solid rgba(0, 0, 0, 0.3);
                        border-top: 1px solid rgba(0, 0, 0, 0.3);
                        transform: translateX(-25%) rotate(45deg);
                    }

                    .button__arrow--down {
                        /* Edges */
                        border-bottom: 1px solid rgba(0, 0, 0, 0.3);
                        border-right: 1px solid rgba(0, 0, 0, 0.3);
                        transform: translateY(-25%) rotate(45deg);
                    }

                    .button__arrow--left {
                        /* Edges */
                        border-bottom: 1px solid rgba(0, 0, 0, 0.3);
                        border-left: 1px solid rgba(0, 0, 0, 0.3);
                        transform: translateX(25%) rotate(45deg);
                    }
					
					
					

.popup-overlay {
  /*Hides pop-up when there is no "active" class*/
  visibility: hidden;
  position: absolute;
  background: #ffffff;
  border: 3px solid #666666;
  width: 50%;
  top: 80px;
  z-index: 99;
}

.popup-overlay.active {
  /*displays pop-up when "active" class is present*/
  visibility: visible;
  text-align: center;
}

.popup-content {
  /*Hides pop-up content when there is no "active" class */
  visibility: hidden;
}

.popup-content.active {
  /*Shows pop-up content when "active" class is present */
  visibility: visible;
}

.popup-overlay.active .product-variants-item span.control-label {
	float: left!important;
	width: 120px;
}

.input-color:checked+span {
    border: 2px solid #dee2e6;
}
.select2-container--open{
  z-index: 999999 !important;
}
.custom-select2-new .select2-selection__rendered{ line-height: 35px !important; }