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

._sd_bloque_licencias__wrapper {
    flex-basis: 50%;
    margin: 0 auto;
    margin-bottom: 0px;
    position: relative;
    flex: 2 1 auto;
    line-height: 22px;
}

._sd_bloque_licencias__view_all {
    cursor: pointer;
    background: #119DA4;
    color: white;
    font-weight: 600;
    padding: 7px 0px;
    border-radius: 6px;
    text-align: center;
    position: relative;
    z-index: 101;
}
._sd_bloque_licencias__view_all > span {
    font-size: 16px;
}
._sd_bloque_licencias__view_all i {
    position: absolute;
    font-size: 14px;
    right: 15px;
    top: 10px;
    transform: rotate(180deg);
    /* text-align: center; */
}
._sd_bloque_licencias__content {
    padding: 60px 25px 25px 25px;
    margin-top: -32px;
    position: absolute;
    width: 100%;
    z-index: 100;
    background: white;
    box-shadow: 0px 0px 4px 0px rgba(0,0,0,0.2);
    border-radius: 15px;
    display: none;
}
._sd_bloque_licencias__wrapper.open ._sd_bloque_licencias__content {
    display: block;
}
._sd_bloque_licencias__list {
    display: grid;
    grid-template-columns: repeat(5,1fr);
    flex-wrap: wrap;
    justify-content: space-between;
    column-gap: 25px;
    row-gap: 25px;
  
}
._sd_bloque_licencias__item {
    font-size: 14px;
    font-weight: 500;
    display: flex;
    gap: 5px;
    align-items: center;
}
._sd_bloque_licencias__buttons {
    width: 50%;
    margin: 0 auto;
    display: flex;
    margin-top: 30px;
    justify-content: space-between;
}
._sd_bloque_licencias__apply{
    color: white;
    background: #119DA4;
    font-weight: 500;
    padding: 7px 22px;
    cursor: pointer;
    border-radius: 4px;
}
._sd_bloque_licencias__reset{
    background: lightgray;
    font-weight: 500;
    padding: 7px 22px;
    cursor: pointer;
    border-radius: 4px;
    color: #111;
}
._sd_bloque_licencias__item .checker span {
    background-image: none !important;
    border-radius: 50%;
    border: 1px solid #111;
    cursor: pointer;
}
._sd_bloque_licencias__item .checker input {
    cursor: pointer;
}
._sd_bloque_licencias__item .checker span.checked {
    box-shadow: inset 0px 0px 0px 3px rgb(255,255,255);
    background: #111;
}
._sd_bloque_licencias__wrapper ~ .text-center {
    display: none;
}