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

.selected_store{
    padding: 0 1rem;
}

.selected_store strong{
    font-weight: bold;
}


#order_stores{
    border: 1px solid lightgrey;
    padding: 0.5rem 1rem;
}

p.store_button{
    text-align: center
}

.store_container{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    padding: 1rem 0.8rem;
}

@media all and (max-width: 635px) {
    .store_container{
        grid-template-columns: 1fr;
    }
}

.store_container .store_card{
    margin: 0 0.5rem 1rem 0.5rem;
    /*cursor: pointer;*/
    border: 1px solid lightgrey;
}

.store_container .store_card:hover{
    border-color: #25A3FA;
}

.store_container .store_card .store_name, .selected_store #selected_store.selected{
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: #25A3FA;
}

.store_container .store_card .address{
    text-align: center;
    font-weight: 600;
    padding: 0.5rem;
}

.store_card.active{
    background: #25A3FA;
}

.store_card.active .store_name, .store_card.active .address{
    color: white;
}