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

#submit-eliv-localisation{
    color: black;
    background-color: #ffcb08;
    padding: 5px 10px;
}
#submit-eliv-localisation:hover{
    color: white;
    background-color: #9a9a9a;
}

#addressInput{
    border: 1px solid #ddd;
    padding: 4px;
}


.degelivraion-block{
    margin: 1rem 0;
}

.degelivraion-block .localisation{
    width: 100%;
    margin: 2rem auto;
    text-align: center;
}

.degelivraion-block .degelivraion-block-inner{
    display: flex;
    height: 430px;
    margin-bottom: 2rem;
}

.degelivraion-block .degelivraion-block-inner .flex-box-inner{
    width: 50%;
}

#map-livraison{
    width: 50%;
    height: 100%;
}

.degelivraion-block .choose-store{
    overflow-y: scroll;
    height: 100%;
}

.degelivraion-block .choose-store .stores-list{
    position:relative;
}

.picked-store{
    position:absolute;
    top:0;
    background-color:white;
    width:90%;
    left:5%;
    padding-top: 0.75rem;
}

.degelivraion-block .block-store{
    box-shadow: 0px 2px 5px #ddd;
    border-top: 0.1rem solid #ddd;
}

.degelivraion-block .block-store:last-child{
    border-bottom: 0.1rem solid #000;
}

.degelivraion-block .block-store .store-info{
    display: flex;
    height: 6rem;
}

.degelivraion-block .block-store .store-info > div{

}

.degelivraion-block .block-store .store-info .input-container{
    width: 20%;
    align-self: center;
    text-align: center;
}

.degelivraion-block .block-store .store-info .global-container{
    width: 80%;
    align-self: center;
}

.degelivraion-block .block-store .store-info input{

}

.degelivraion-block .block-store .store-info label{

}

.degelivraion-block .block-store .store-info label .title-city{
    font-weight: bold;
    font-size: 1.6rem;
    color: #ffcb08;
}

.degelivraion-block .block-store .store-info label .address{
    font-weight: lighter;
    font-size: 1.2rem;
}

.degelivraion-block .block-store .complementary-info{
    padding-left: 20%;
    padding-bottom: 2.3rem;
}

.degelivraion-block .block-store .complementary-info .info-phone{
    font-weight: lighter;
    font-size: 1.1rem;
}

.degelivraion-block .block-store .complementary-info .info-hours{
    margin-top: 0.8rem;
    font-weight: lighter;
    font-size: 1rem;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}

.degelivraion-block .block-store .complementary-info .info-hours .container-date{
    margin-bottom: 0.4rem;
    list-style: disclosure-closed;
    display: block;
    position: relative;
}

.degelivraion-block .block-store .complementary-info .info-hours .container-date:before {
    content: '';
    width: 0;
    display: inline-block;
    height: 0;
    border-top: 0.4rem solid transparent;
    border-bottom: 0.4rem solid transparent;
    border-left: 0.4rem solid black;
    margin-right: 0.3rem;
}

.close-element {
    position: absolute;
    right: 0.8rem;
    top: 0.8rem;
    display: none;
    font-size: 1.2rem;
}

.picked-store .close-element {
    display: block;
    cursor: pointer;
    pointer-events: all;
}


@media only screen and (max-width: 600px) {
    .degelivraion-block .degelivraion-block-inner{
        height: 517px;
        flex-direction: column;
    }
    .degelivraion-block .degelivraion-block-inner .flex-box-inner{
        width: 100%;
        height: 269px;
    }
    #map-livraison{
        width: 100%;
    }
    .degelivraion-block .block-store .store-info{
        height: 4rem;
    }
    .degelivraion-block .block-store .store-info label .title-city{
        font-size: 1.3rem;
    }

    .degelivraion-block .block-store .store-info label .address{
        font-size: 1.0rem;
    }

    .degelivraion-block .block-store .complementary-info{
        padding-bottom: 0;
    }

    .degelivraion-block .block-store .complementary-info .info-phone{
        font-size: 0.9rem;
    }

    .degelivraion-block .block-store .complementary-info .info-hours{
        margin-top: 0.3rem;
        font-size: 0.8rem;
    }
}