/**
* 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.
*/
#cookie-bar{
    position: fixed;
    bottom: 0;
    left: 0;
    /* display: none; */
    width: 100%;
    z-index: 10000;
    background-color: #fff;
    box-shadow: 0 -1px 3px 0 rgba(0,0,0,.1);



}
#cookie-bar .control-area p.mobile{
    display: none;
}


#cookie-bar .control-area{
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
}
#cookie-bar .control-area p{

    color: #282828;


    font-size: 12px;
    margin:5px 0;

}
#cookie-bar .control-area{

    padding: 5px 0px;
}

#cookie-bar .control-area .right-cookie .accept_ok:hover{

    color: #333;
    text-decoration: underline;
}
#cookie-bar .control-area .right-cookie .accept_ok{

    border: 2px solid #fff;
    padding: 5px 20px;

    color: #282828;

    font-size: 12px;

}
#cookie-bar .control-area .right-cookie{
    margin-left: auto;

}
#cookie-bar .control-area a:hover{
    cursor: pointer;
}

#cookie-bar .control-area .right-cookie  .readmore:hover{
    text-decoration: underline;

}
#cookie-bar .control-area .right-cookie  .readmore{
    position: relative;
    padding-right: 20px;
    /*margin: 15px;*/
    display: inline-block;
    vertical-align: middle;
    color: #282828;
    font-size: 12px;
    line-height: 20px;
    text-decoration: none;
}

.btn-show-mobile-only{
    display: none;
}
@media (max-width: 767px) {
    #cookie-bar .control-area p.mobile{
        display: block;
    }
    #cookie-bar .control-area p.desktop{
        display: none;
    }

    #cookie-bar .control-area{
        display: inline-block;
    }
    #cookie-bar .control-area p{
        margin:0;
    }

    #cookie-bar .control-area .right-cookie{
        display:none;
    }

    #cookie-bar .control-area .btn-show-mobile-only{
        display: inline-block;
        margin-left: 6px;
    }

    #cookie-bar .control-area .btn-show-mobile-only a:last-child{
        margin-right: 0px;
    }

    #cookie-bar .control-area .btn-show-mobile-only a{
        font-size: 12px;
        margin-right: 10px;
        text-decoration: underline;
        color: #000;
        font-weight: bold;
        text-transform: uppercase;
    }

}

@media (max-width: 480px) {
    #cookie-bar .control-area .btn-show-mobile-only{
        margin-left: 0px;
        margin-top: 5px;
    }
}