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


/* Cookie */


#cookie {
    background: #000;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 999;
}

#cookie .content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 95%;
    margin: 30px auto;
    z-index: 30;
}

#cookie .content .content-text {
    width: 58%;
}

#cookie .content .content-text p.title {
    font-family: 'Red Hat Display';
    font-size: 29px;
    font-weight: bold;
    color: #fff;
}

#cookie .content .content-text p.text {
    font-family: 'Red Hat Display';
    font-size: 18px;
    font-weight: normal;
    color: #fff;
    margin: 0;
}

#cookie .content .btn {
    display: flex;
    flex-direction: column;
    padding: 0;
}

#cookie .content .btn button {
    width: 100%;
    margin: 10px 0;
}

#cookie .content .btn .btn-cookie {
    font-family: 'Red Hat Display';
    font-weight: 600;
    font-size: 13px;
    background: #ee8f3b;
    text-align: center;
    text-transform: uppercase;
    color: #fff;
    border: 1px solid #ee8f3b;
    padding: 10px 30px;
    transition: 300ms;
    cursor: pointer;
}

#cookie .content .btn .btn-cookie:hover {
    background: transparent;
    color: #ee8f3b;
}

#cookie .content .btn .btn-perso {
    font-family: 'Red Hat Display';
    font-weight: 600;
    font-size: 13px;
    background: #000000;
    text-align: center;
    text-transform: uppercase;
    color: #fff;
    border: 1px solid #fff;
    padding: 10px 30px;
    transition: 300ms;
    cursor: pointer;
}

#cookie .content .btn .btn-perso:hover {
    background: #fff;
    color: #000;
}

@media (max-width: 800px) {
    #cookie .content {
        flex-direction: column;
    }
    #cookie .content .content-text {
        width: 100%;
    }
}

@media (max-width: 400px) {
    #cookie .content .content-text p.title {
        line-height: 30px;
    }
}


.encart_cookie {
    position: fixed;
    z-index: 1000;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    display: none;
    /* overflow-y: scroll; */
    max-width: 96%;
    width: 1275px;
}
.encart_cookie .close_cookie {
    position: absolute;
    right: 15px;
    top: 15px;
    cursor: pointer;
}
.encart_cookie .head_cookie {
    background: black;
    padding: 55px 50px 40px 50px;
    display: flex;
    align-items: center;
}
.encart_cookie .bottom_cookie {
    background: white;
    padding: 50px;
}
.encart_cookie .head_cookie .text_cookie h2 {
    color: white;
    font-size: 24px;
    font-weight: bold;
    margin: 0;
    margin-bottom: 20px;
}
.encart_cookie .head_cookie .text_cookie p {
    color: white;
    font-size: 16px;
}
.encart_cookie .bottom_cookie input {
    display: none;
}
.un_choix label {
    cursor: pointer;
}
.un_choix input:checked ~ label:after {background: #EE8F3B;}
.un_choix label {
    padding-left: 50px;
    position: relative;
}
.un_choix label:after {
    content: "";
    position: absolute;
    left: 0;
    width: 25px;
    height: 25px;
    background: #7B7B7B;
    top: 0;
}
.un_choix input:checked ~ label {
    color: #EE8F3B;
}
.un_choix input:checked ~ label:before {content: '\f00c';font-family: fontawesome;color: white;left: 4px;top: 2px;position: absolute;z-index: 9;}
.un_choix label h3 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 5px;
}

.un_choix label p {
    font-size: 16px;
    color: #000000;
    line-height: 21px;
}
.les_btns {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
    margin-bottom: 15px;
}
.les_btns .retour_cookie {
    width: 238px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #7B7B7B;
    cursor: pointer;
    font-size: 13px;
    color: #7B7B7B;
    transition: 0.3s;
}
.les_btns .retour_cookie:hover {
    background: #7B7B7B;
    color: white;
}
.les_btns .accepter_cookie {
    width: 238px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #EE8F3B;
    cursor: pointer;
    font-size: 13px;
    transition: 0.3s;
    background: #EE8F3B;
    color: white;
}
.les_btns > * {
    margin: 0 15px;
}
.les_btns .accepter_cookie:hover {
    background: white;
    color: #EE8F3B;
}
.accept_retour_cookie p {
    color: #707070;
    text-align: center;
}

.accept_retour_cookie p a {
    color: #707070;
    text-decoration: underline;
}


@media (max-width: 991px) {
	.encart_cookie .head_cookie img {
	  display: none;
	}
	.accept_retour_cookie .les_btns {
	  margin-top: 10px;
	}
	.encart_cookie .head_cookie .text_cookie p {
	  line-height: 1.2;
	}
	.un_choix label p {
	  line-height: 1.2;
	}
}

@media (max-width: 800px) {
	.encart_cookie .head_cookie {
        padding: 40px 30px 30px 30px;
    }
    .encart_cookie .bottom_cookie {
        padding: 40px 30px 30px 30px;
    }
    .un_choix label {
        padding-left: 40px;
    }
}

@media (max-width: 600px) {
	.encart_cookie .head_cookie {
        padding: 40px 20px 10px 20px;
    }

    .encart_cookie .head_cookie .text_cookie p {
        font-size: 14px;
        text-align: justify;
        line-height: 1;
    }

    .encart_cookie .head_cookie .text_cookie h2 {
        margin-bottom: 10px;
    }

    .un_choix label:after {
        width: 18px;
        height: 18px;
    }

    .un_choix input:checked ~ label:before {
        left: 3px;
        top: 0px;
        font-size: 12px;
    }

    .encart_cookie .bottom_cookie {
        padding: 20px 18px 30px 18px;
    }

    .un_choix label h3 {
        font-size: 15px;
    }

    .un_choix label p {
        font-size: 14px;
        line-height: 1;
        margin-bottom: 10px;
    }

    .les_btns .retour_cookie {
        width: 50%;
        height: 38px;
    }

    .les_btns .accepter_cookie {
        width: 50%;
        height: 38px;
    }

    .accept_retour_cookie p {
        font-size: 14px;
    }
    .un_choix label {
        padding-left: 30px;
    }
}