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

.APCCGPosition {
    position: fixed;
    right: 60px;
    /*bottom:15px;*/
    bottom: 9px;
    z-index: 90;
}

/* Popup box BEGIN */
.hover_bkgr_fricc {
    background: rgba(0, 0, 0, .4);
    cursor: pointer;
    display: none;
    height: auto;
    width: auto;
    position: fixed;
    text-align: center;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 100;
}

.hover_bkgr_fricc .helper {
    display: inline-block;
    height: 100%;
    vertical-align: middle;
}

.hover_bkgr_fricc > div {
    background-color: #fff;
    box-shadow: 10px 10px 60px #555;
    display: inline-block;
    height: auto;
    max-width: 551px;
    min-height: 100px;
    vertical-align: middle;
    width: 60%;
    position: relative;
    border-radius: 8px;
    padding: 15px 5%;
}

.popupCloseButton {
    background-color: #fff;
    border: 3px solid #999;
    border-radius: 50px;
    cursor: pointer;
    display: inline-block;
    font-family: arial;
    font-weight: bold;
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 25px;
    line-height: 30px;
    width: 30px;
    height: 30px;
    text-align: center;
}

.popupCloseButton:hover {
    background-color: #ccc;
}

/* Popup box BEGIN */

.tri-state-container {
    display: flex;
    flex-direction: row;
}

@media (max-width: 750px) {
    .tri-state-container {
        flex-direction: row-reverse;
    }

    .APCCGPosition {
        right: 20%;
    }
}

.tri-state-toggle {
    display: flex;
    justify-content: center;
    border: 3px solid;
    border-radius: 50px;
    background-color: #cacaca;
    border-color: #cacaca;
}

.tri-state-toggle-normal {
    display: flex;
    justify-content: center;
    border: 3px solid;
    border-radius: 50px;
    background-color: #b67d0b;
    border-color: #b67d0b;
}

.input-tri-state-toggle {
    height: 15px;
    width: 15px;
    appearance: none;
    background-color: white;
    border-radius: 50%;
    opacity: 0;
}

.input-tri-state-toggle:hover {
    cursor: pointer;
}

.tri-toggle-active {
    opacity: 1;
}

/*
 * New layout
 */
.APCCGPosition label {
    color: white;
    margin-bottom: 0;
    text-align: center;
    padding: 6px;
    font-size: 10px;
    min-width: 30px;
}

.tri-toggle-active + label {
    color: black;
}

.btn-container {
    position: relative;
    margin: 0 4px 0 4px;
}

.btn-container input {
    position: absolute;
}

.tri-toggle-active + label {
    z-index: 10;
    position: inherit;
}

.input-tri-state-toggle {
    height: 100%;
    width: 100%;
}

.input-tri-state-toggle + label {
    transition: 0.5s all;
}

.input-tri-state-toggle:hover + label {
    border-radius: 50%;
    color: black;
    background-color: #fff9;
    border-radius: 50%;
}

.btn-container:nth-child(1) {
    margin-left: 2px;
}

.btn-container:nth-child(3) {
    margin-right: 2px;
}

#one + label
{
    color: transparent;
    text-shadow: 0 0 0 black;
}

.tri-state-toggle-normal #one + label {
    text-shadow: 0 0 0 white;
}