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

#colorselector .title_colorselector span{
    font-size: 1.125rem;
    font-weight: 400;
}
#colorselector {
    margin: 20px 0;
}
#colorselector .title_colorselector {
    margin: 5px 0;
}
#colorselector .selector {
    display: flex;
    list-style: none;
    padding: 0;
    flex-flow: row wrap;
    align-items: center;
    justify-content: left;
}
#colorselector .selector li.selected_item {
    margin: 0;
}
#colorselector .selector li {
    padding: 5px 0;
}
@media screen and (max-width: 425px){
    #colorselector {
        width: 100%;
    }
}
#colorselector .img_icon {
    max-width: 50px;
}

#colorselector span.color {
    border-radius: 50%;
    width: 25px;
    height: 25px;
}

#colorselector a.color_select {
    display: inline-block;
    border: 1px solid #CECECE;
}
#colorselector a.color_select span,
#colorselector a.color_select span:hover {
    border: 1px solid #707070;
    box-shadow: none !important;
    margin: 2px;
}
#colorselector .selected {
    border: 2px solid #101010 !important;
}
#colorselector .selector li:nth-child(even) {
    margin-left: 5px;
    margin-right: 5px;
}
#colorselector .show_more_product_color span {
    cursor: pointer;
    color: black;
    font-weight: bold;
    font-size: 16px;
    height: 100%;
    width: 100%;
    text-align: center;
    line-height: 38px;
}
#colorselector .show_more_product_color {
    width: 50px;
    height: 50px;
    border: 1px solid #252626;
    display: flex;
}