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

#list-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2em;
    padding-top: 0;
}

#list-search-atom_wrapper {
    background: #fff;
    border-radius: 0 0 8px 8px;
    padding: 1em;
    padding-top: 0;
}

#title-container {
    background: #fff;
    border-radius: 8px 8px 0 0;
    padding: 2em 1em;
    padding-bottom: 0;
}

#list-search-atom_length {
    float: right;
    padding: 0.5em;
}

#list-search-atom_length select {
    max-width: 55%;
}

#list-search-atom_filter label {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
}

#list-search-atom_filter label input{
    border: none;
    border-radius: 8px;
    background: #F1EFF1;
    color: #666666;
    height: 35px;
    width: 70%;
    padding: 1.5em;
}

#list-search-atom_filter label .search-icon {
    padding: 0.5em 0.7em;
    background: #E42626;
    color: #FFFFFF;
    border-radius: 0px 5px 5px 0px;
    position: absolute;
    bottom: 0;
    right: 15em;
    height: 42px;
    text-align: center;
}

#list-search-atom_filter label .search-icon i {
    padding-top: 0.2em;
}

#list-search-atom_filter label input:focus-visible{
    outline-offset: 0;
    outline: 0;
}

#list-search-atom_info {
    text-align: end;
}

#list-search-atom_filter label input::placeholder{
    display: block;
    color: #666666;
}

#list-search-atom_paginate {
    display: flex;
    justify-content: center;
    cursor: pointer;
}

#list-search-atom_paginate span a {
    margin: 0 1em;
    color: #201A23;
}

#list-search-atom_paginate span a.current{
    padding: 0.5em 1em;
    background: #201A23;
    color: #FFFFFF;
    border-radius: 25px;
}

#list-search-atom_paginate .next, #list-search-atom_paginate .previous {
   color: #201A23;
   font-size: 30px;
}


td i {
    color: #5ACA3E;
}

h2 {
    margin-bottom: 2em;
}

.table thead th {
    border: none;
}

.list-select-atom {
    display: flex;
    flex-direction: row;
}

.list-select-atom select {
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border-radius: 8px;
    background: #fff;
    color: #E42626;
    border: none;
    outline: none;
}

.list-select-atom select:focus {
    color: #E42626;
    background: #fff;
    outline: none;
}

.list-select-atom select option {
    margin-right: 0.5em;
}

#module-axeciblesatom-ListProductAtomSearch h2 {
    color: #201A23;
}

#module-axeciblesatom-ListProductAtomSearch .btn-add-to-cart {
    left: 12.5em;
}

@media screen and (max-width: 768px) {
    #list-search-atom tr {
        font-size: 14px;
    }
    #list-search-atom_length {
        float: none;
        padding: 0.5em;
        margin-top: 1em;
    }    
    #list-search-atom_filter label {
        display: block;
    }
    #list-search-atom_filter label span {
        display: block;
        text-align: center;
    }
    #list-search-atom_filter label input {
        width: 100%;
        margin-top: 1em;
    }
    #list-search-atom_filter label .search-icon {
        right: 0;
    }
    #list-search-atom_filter label .search-icon i {
        padding-top: 0.1em;
    }
    #list-search-atom_paginate {
        margin-top: 1em;
    }
    #list-search-atom_paginate span a {
        margin: 0 0.5em;
    }
    .list-search-atom-title {
        margin-top: 1em;
        margin-bottom: 1em;
    }
    .list-select-atom {
        flex-direction: column;
    }
    .list-select-atom select {
        margin: 1em 0 !important;
    }
}

