/**
* 2020-2021 DoMyWebsite
*
* 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    DoMyWebsite <contact@domywebsite.fr>
*  @copyright 2020-2021 DoMyWebsite
*  @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.
*/

/******************
* CONSENT POPUP **
******************/

/***
* Big alert
*/
.tarteaucitronAlertBigTop {
  top: 0;
}

.tarteaucitronAlertBigBottom {
  bottom: 0;
}

#tarteaucitronRoot #tarteaucitronAlertBig {
  /* background: #fff; */
  color: #000;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 4px 24px, rgba(0, 0, 0, 0.05) 0px 2px 6px;
  display: none;
  font-size: 15px;
  left: 0;
  position: fixed;
  box-sizing: content-box;
  z-index: 2147483645;
  margin: auto;
  width: 100%;
}

#tarteaucitronRoot #tarteaucitronAlertBig #tarteaucitronDisclaimerAlert img {
  padding: 20px;
}

#tarteaucitronRoot.bottomleft #tarteaucitronAlertBig {
  bottom: 10px;
  top: auto;
  left: 8px;
  right: auto;
  transform: initial;
  max-width: 350px;
  width: Calc(100% - 16px);
  min-width: 0;
}

#tarteaucitronRoot.bottomright #tarteaucitronAlertBig {
  bottom: 10px;
  top: auto;
  right: 8px;
  left: auto;
  transform: initial;
  border-radius: 8px;
  max-width: 350px;
  width: Calc(100% - 16px);
  min-width: 0;
}

#tarteaucitronRoot.middle #tarteaucitronAlertBig {
  width: 60%;
  min-width: 285px;
  height: auto;
  margin: auto;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 9000px #000;
}

#tarteaucitronRoot.middle.tarteaucitronBeforeVisible:before {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 999;
  opacity: 1;
}

@media screen and (max-width: 900px) {
  #tarteaucitronRoot.middle #tarteaucitronAlertBig button {
    margin: 0 auto 10px!important;
    display: block!important;
  }
}

/***
* Disclaimer Alert
*/

#tarteaucitronRoot #tarteaucitronDisclaimerAlert {
  padding: 15px 30px;
  /* color: #666666; */
}

span#tarteaucitronDisclaimerAlert {
  padding: 20px;
  display: inline-block;
}

/***
* Buttons
*/

#tarteaucitronCloseCross {
  position:absolute;
  cursor: pointer;
  right: 0;
  padding: 10px;
  font-size: 15px;
}

#tarteaucitronRoot .button_group_action {
  display: flex;
  justify-content: space-around;
  border-top: 1px solid rgb(150, 150, 150, 0.2);
}

#tarteaucitronRoot.top #tarteaucitronAlertBig .button_group_action {
  border-bottom: 1px solid rgb(150, 150, 150, 0.2);
}

#tarteaucitronRoot .button_group_action .button_action {
  padding: 10px;
  width: 100%;
  background-color: transparent;
  border: none;
}

#tarteaucitronRoot .button_group_action .button_action:hover {
  cursor: pointer;
}

#tarteaucitronRoot .button_group_action .button_action:first-child {
  border-right: 1px solid rgb(150, 150, 150, 0.2);
  border-bottom-left-radius: 8px;
}

#tarteaucitronRoot .button_group_action .button_action:last-child {
  border-left: 1px solid rgb(150, 150, 150, 0.2);
  border-bottom-right-radius: 8px;
}

#tarteaucitronRoot .button_group_action .button_action {
  /* color: #7a7a7a; */
  font-size: 12px;
}

#tarteaucitronRoot .button_group_action .button_action:last-child {
  /* color: #2196F3; */
  font-size: 15px;
  font-weight: bold;
}

.privacy_url {
  text-align: right;
  padding: 1px 10px;
  font-style: italic;
  font-size: 10px;
}

.privacy_url #tarteaucitronPrivacyUrl {
  background: transparent;
  border: none;
}

.privacy_url #tarteaucitronPrivacyUrl:hover {
  cursor: pointer;
}

#tarteaucitronCloseCross i{
  color: #000;
}

/***
* Animations
*/

.p-slideinright, .p-slideinleft, .p-slideinup, .p-slideindown {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

/***FadeIn***/
.p-fadein {
  -webkit-animation: fadein 1s; /* Safari, Chrome and Opera > 12.1 */
  -moz-animation: fadein 1s; /* Firefox < 16 */
  -ms-animation: fadein 1s; /* Internet Explorer */
  -o-animation: fadein 1s; /* Opera < 12.1 */
  animation: fadein 1s;
}

@keyframes fadein {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Firefox < 16 */
@-moz-keyframes fadein {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Internet Explorer */
@-ms-keyframes fadein {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Opera < 12.1 */
@-o-keyframes fadein {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/****slideInLeft***/

.bottomright .p-slideinleft, .bottomleft .p-slideinleft {
  -webkit-animation-name: slideInLeftPopup;
  animation-name: slideInLeftPopup;
}

.middle .p-slideinleft {
  -webkit-animation-name: slideInLeftMiddle;
  animation-name: slideInLeftMiddle;
}

.top .p-slideinleft, .bottom .p-slideinleft {
  -webkit-animation-name: slideInLeftFixed;
  animation-name: slideInLeftFixed;
}

@-webkit-keyframes slideInLeftFixed {
  from { -webkit-transform: translate3d(-200%, 0, 0);transform: translate3d(-200%, 0, 0);opacity: 0; }
  to { -webkit-transform: translate3d(-200%, 0, 0);transform: translate3d(0%, 0, 0);opacity: 1; }
}

@keyframes slideInLeftFixed {
  from { -webkit-transform: translate3d(-200%, -50%, 0);transform: translate3d(-200%, 0, 0);opacity: 0; }
  to { -webkit-transform: translate3d(-200%, 0, 0);transform: translate3d(0, 0, 0);opacity: 1; }
}

@-webkit-keyframes slideInLeftMiddle {
  from { -webkit-transform: translate3d(-200%, -50%, 0);transform: translate3d(-200%, -50%, 0);opacity: 0; }
  to { -webkit-transform: translate3d(-50%, -50%, 0);transform: translate3d(-50%, -50%, 0);opacity: 1; }
}

@keyframes slideInLeftMiddle {
  from { -webkit-transform: translate3d(-200%, -50%, 0);transform: translate3d(-200%, -50%, 0);opacity: 0; }
  to { -webkit-transform: translate3d(-50%, -50%, 0);transform: translate3d(-50%, -50%, 0);opacity: 1; }
}

@-webkit-keyframes slideInLeftPopup {
  from { -webkit-transform: translate3d(-100%, 0, 0);transform: translate3d(-100%, 0, 0);opacity: 0; }
  to { -webkit-transform: translate3d(-100%, 0, 0);transform: translate3d(2%, 0, 0);opacity: 1; }
}

@keyframes slideInLeftPopup {
  from { -webkit-transform: translate3d(-100%, 0, 0);transform: translate3d(-100%, 0, 0);opacity: 0; }
  to { -webkit-transform: translate3d(2%, 0, 0);transform: translate3d(2%, 0, 0);opacity: 1; }
}

/****slideInRight***/

.bottomright .p-slideinright, .bottomleft .p-slideinright {
  -webkit-animation-name: slideInRightPopup;
  animation-name: slideInRightPopup;
}

.middle .p-slideinright {
  -webkit-animation-name: slideInRightMiddle;
  animation-name: slideInRightMiddle;
}

.top .p-slideinright, .bottom .p-slideinright {
  -webkit-animation-name: slideInRightFixed;
  animation-name: slideInRightFixed;
}

@-webkit-keyframes slideInRightFixed {
  from { -webkit-transform: translate3d(300%, 0, 0);transform: translate3d(300%, 0, 0);opacity: 0; }
  to { -webkit-transform: translate3d(300%, 0, 0);transform: translate3d(0%, 0, 0);opacity: 1; }
}

@keyframes slideInRightFixed {
  from { -webkit-transform: translate3d(300%, -50%, 0);transform: translate3d(300%, 0, 0);opacity: 0; }
  to { -webkit-transform: translate3d(300%, 0, 0);transform: translate3d(0, 0, 0);opacity: 1; }
}

@-webkit-keyframes slideInRightMiddle {
  from { -webkit-transform: translate3d(300%, -50%, 0);transform: translate3d(300%, -50%, 0);opacity: 0; }
  to { -webkit-transform: translate3d(300%, -50%, 0);transform: translate3d(-50%, -50%, 0);opacity: 1; }
}

@keyframes slideInRightMiddle {
  from { -webkit-transform: translate3d(300%, -50%, 0);transform: translate3d(300%, -50%, 0);opacity: 0; }
  to { -webkit-transform: translate3d(300%, -50%, 0);transform: translate3d(-50%, -50%, 0);opacity: 1; }
}

@-webkit-keyframes slideInRightPopup {
  from { -webkit-transform: translate3d(300%, 0, 0);transform: translate3d(300%, 0, 0);opacity: 0; }
  to { -webkit-transform: translate3d(300%, 0, 0);transform: translate3d(2%, 0, 0);opacity: 1; }
}

@keyframes slideInRightPopup {
  from { -webkit-transform: translate3d(300%, 0, 0);transform: translate3d(300%, 0, 0);opacity: 0; }
  to { -webkit-transform: translate3d(300%, 0, 0);transform: translate3d(2%, 0, 0);opacity: 1; }
}

/****slideInUp***/

.middle .p-slideinup {
  -webkit-animation-name: slideInUpMiddle;
  animation-name: slideInUpMiddle;
}

.top .p-slideinup, .bottom .p-slideinup, .bottomright .p-slideinup, .bottomleft .p-slideinup {
  -webkit-animation-name: slideInUpFixed;
  animation-name: slideInUpFixed;
}

@-webkit-keyframes slideInUpFixed {
  from { -webkit-transform: translate3d(0, -200%, 0);transform: translate3d(0, -200%, 0);opacity: 0;}
  to { -webkit-transform: translate3d(0, 0, 0);transform: translate3d(0, 0, 0);opacity: 1;}
}

@keyframes slideInUpFixed {
  from { -webkit-transform: translate3d(0, -200%, 0);transform: translate3d(0, -200%, 0);opacity: 0; }
  to { -webkit-transform: translate3d(0, 0, 0);transform: translate3d(0, 0, 0);opacity: 1; }
}

@-webkit-keyframes slideInUpMiddle {
  from { -webkit-transform: translate3d(-50%, -200%, 0);transform: translate3d(-50%, -200%, 0);opacity: 0; }
  to { -webkit-transform: translate3d(-50%, -50%, 0);transform: translate3d(-50%, -50%, 0);opacity: 1; }
}

@keyframes slideInUpMiddle {
  from { -webkit-transform: translate3d(-50%, -200%, 0);transform: translate3d(-50%, -200%, 0);opacity: 0; }
  to { -webkit-transform: translate3d(-50%, -50%, 0);transform: translate3d(-50%, -50%, 0);opacity: 1; }
}

/****slideInDown***/

.middle .p-slideindown {
  -webkit-animation-name: slideInDownMiddle;
  animation-name: slideInDownMiddle;
}

.top .p-slideindown, .bottom .p-slideindown, .bottomleft .p-slideindown, .bottomright .p-slideindown {
  -webkit-animation-name: slideInDownFixed;
  animation-name: slideInDownFixed;
}

@-webkit-keyframes slideInDownFixed {
  from { -webkit-transform: translate3d(0, 200%, 0);transform: translate3d(0, 200%, 0);opacity: 0;}
  to { -webkit-transform: translate3d(0, 0, 0);transform: translate3d(0, 0, 0);opacity: 1;}
}

@keyframes slideInDownFixed {
  from { -webkit-transform: translate3d(0, 200%, 0);transform: translate3d(0, 200%, 0);opacity: 0; }
  to { -webkit-transform: translate3d(0, 0, 0);transform: translate3d(0, 0, 0);opacity: 1; }
}

@-webkit-keyframes slideInDownMiddle {
  from { -webkit-transform: translate3d(-50%, 200%, 0);transform: translate3d(-50%, 200%, 0);opacity: 0; }
  to { -webkit-transform: translate3d(-50%, -50%, 0);transform: translate3d(-50%, -50%, 0);opacity: 1; }
}

@keyframes slideInDownMiddle {
  from { -webkit-transform: translate3d(-50%, 200%, 0);transform: translate3d(-50%, 200%, 0);opacity: 0; }
  to { -webkit-transform: translate3d(-50%, -50%, 0);transform: translate3d(-50%, -50%, 0);opacity: 1; }
}


/******************
** SERVICE POPUP **
******************/

/***
* Common value
*/

.tarteaucitron-modal-open{
    overflow: hidden;
    height: 100%;
}

#tarteaucitronRoot button#tarteaucitronBack {
  background: #eee;
}

#tarteaucitron .clear {
  clear: both;
}

#tarteaucitron a {
  color: inherit;
  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
}

#tarteaucitron strong {
  font-size: 22px;
  font-weight: 500;
}

#tarteaucitron .tarteaucitronH1 {
  font-size: 13px;
  display: block;
  font-weight: bold;
}

#tarteaucitron .tarteaucitronH2 {
  font-size: 15px;
  font-weight: bold;
  display: block;
}

#tarteaucitron .tarteaucitronH3 {
  font-size: 18px;
  font-weight: bold;
  display: block;
}

.cookie-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

/***
* Control panel
*/
#tarteaucitronBack {
  background: #fff;
  display: none;
  height: 100%;
  left: 0;
  opacity: 0.7;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 2147483646;
}

#tarteaucitron {
  display: none;
  max-height: 80%;
  left: 50%;
  margin: 0 auto 0 -430px;
  padding: 0;
  position: fixed;
  top: 6%;
  width: 860px;
  z-index: 2147483647;
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 4px 24px, rgba(0, 0, 0, 0.05) 0px 2px 6px;
}

#tarteaucitron .tarteaucitronBorder {
  height: auto;
  overflow: auto;
}

#tarteaucitron #tarteaucitronDisclaimer {
  color: #555;
  font-size: 12px;
  margin: 15px auto 0;
  width: 80%;
}

#tarteaucitron #tarteaucitronServices {
  color: rgb(102, 102, 102);
  padding: 10px 20px;
}

#tarteaucitron #tarteaucitronServices .tarteaucitron-toggle-group {
  font-size: 13px;
  border: 1px solid rgb(172, 172, 172);
  border-radius: 5px;
  background-color: rgb(191, 191, 191, 0.1);
  color: inherit;
  padding: 0 5px;
}

#tarteaucitron #tarteaucitronServices .badgeServices {
  color: #fff;
  background-color: #17a2b8;
  display: inline-block;
  padding: .25em .4em;
  font-size: 75%;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: .25rem;
  transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

#tarteaucitron #tarteaucitronServices .tarteaucitronHidden {
  display: none;
  position: relative;
}

#tarteaucitronCookiesList .tarteaucitronH3.tarteaucitronTitle {
  width: 100%;
  box-sizing: border-box;
}

#tarteaucitronRoot #tarteaucitronServices .tarteaucitronTitle .catToggleBtn, #tarteaucitronRoot #tarteaucitronServices .tarteaucitronTitle .mandatoryToggleBtn {
  border: 1px solid rgb(172, 172, 172);
  border-radius: 8px;
  width: 100%;
  color: inherit;
  background-color: rgb(172, 172, 172, 0.04);
  margin-bottom: 5px;
}

#tarteaucitronRoot #tarteaucitronServices .tarteaucitronTitle .mandatoryToggleBtn:hover {
  cursor: default;
}

#tarteaucitron #tarteaucitronServices .tarteaucitronMainLine .tarteaucitronName a,
#tarteaucitron #tarteaucitronServices .tarteaucitronTitle a {
  color: #fff;
  font-weight: 500;
}

#tarteaucitron #tarteaucitronServices .tarteaucitronMainLine .tarteaucitronName a:hover,
#tarteaucitron #tarteaucitronServices .tarteaucitronTitle a:hover {
  text-decoration: none !important;
}

#tarteaucitron #tarteaucitronServices .tarteaucitronMainLine .tarteaucitronName a {
  font-size: 22px;
}

#tarteaucitron #tarteaucitronServices .tarteaucitronTitle a {
  font-size: 14px;
}

#tarteaucitronAlertSmall #tarteaucitronCookiesListContainer #tarteaucitronCookiesList .tarteaucitronTitle {
  padding: 5px 10px;
  margin: 0;
}

#tarteaucitron #tarteaucitronInfo,
#tarteaucitron #tarteaucitronServices .tarteaucitronDetails {
  color: inherit;
  display: none;
  font-size: 12px;
  font-weight: 500;
  margin-top: 0;
  max-width: 270px;
  padding: 20px;
  position: absolute;
  z-index: 2147483647;
  text-align: left;
  width: auto;
  background: rgb(251, 251, 251);
  box-shadow: rgba(0, 0, 0, 0.15) 0px 4px 24px, rgba(0, 0, 0, 0.05) 0px 2px 6px;
  border: 1px dotted rgba(0, 0, 0, 0.1);
}

#tarteaucitron #tarteaucitronInfo a {
  color: inherit;
  text-decoration: underline;
}

#tarteaucitron #tarteaucitronServices .tarteaucitronLine {
  margin: 0;
  overflow: hidden;
  padding: 15px 5px;
}

#tarteaucitron #tarteaucitronServices .tarteaucitronServiceCat {
  border-top: 1px dotted rgba(0, 0, 0, 0.1);
}

#tarteaucitron #tarteaucitronServices .tarteaucitronServiceCat:first-child {
  border-top: none;
}

#tarteaucitron #tarteaucitronServices .tarteaucitronBorder ul.sub_services {
  border-radius: 8px;
  border: 2px solid rgba(0, 0, 0, 0.04);
  overflow: hidden;
  padding: 0;
  background-color: transparent;
  margin-bottom: 5px;
}

#tarteaucitron #tarteaucitronServices .tarteaucitronBorder ul.sub_services li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

#tarteaucitron #tarteaucitronServices .tarteaucitronBorder .tarteaucitronLine.tarteaucitronIsDenied {
background-color: rgba(0, 0, 0, 0.03);
}

#tarteaucitron #tarteaucitronServices .tarteaucitronMainLine {
  margin-bottom: 0;
  margin-top: 21px;
  position: relative;
}

#tarteaucitron #tarteaucitronServices .tarteaucitronMainLine .tarteaucitronName {
  margin-left: 15px;
  margin-top: 2px;
}

#tarteaucitron #tarteaucitronServices .tarteaucitronMainLine .tarteaucitronName button {
  color: #fff;
}

#tarteaucitron #tarteaucitronServices .tarteaucitronMainLine .tarteaucitronAsk {
  margin-top: 0px !important;
}

#tarteaucitron #tarteaucitronServices .tarteaucitronLine .tarteaucitronName {
  display: inline-block;
  float: left;
  margin-left: 10px;
  text-align: left;
  width: 50%;
}

#tarteaucitron #tarteaucitronServices .tarteaucitronLine .tarteaucitronName .serviceImg {
  margin-right: 5px;
}

#tarteaucitron #tarteaucitronServices .tarteaucitronLine .tarteaucitronName.tarteaucitronServiceName {
  line-height: 1;
}

#tarteaucitron #tarteaucitronServices .tarteaucitronLine .tarteaucitronName.tarteaucitronServiceCatName {
  line-height: 1.5;
}

#tarteaucitron #tarteaucitronServices .tarteaucitronLine .tarteaucitronName.tarteaucitronServiceName i {
  margin-right: 3px;
}

#tarteaucitron #tarteaucitronServices .tarteaucitronLine .tarteaucitronName a:hover {
  text-decoration: underline;
}

#tarteaucitron #tarteaucitronServices .tarteaucitronLine .tarteaucitronAsk {
  display: inline-block;
  float: right;
  margin: 7px 15px 0;
  text-align: right;
}

#tarteaucitron #tarteaucitronServices .tarteaucitronLine .tarteaucitronAsk .tarteaucitronDeny,
.tac_activate .tarteaucitronAllow {
  background: gray;
  border-radius: 4px;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  padding: 6px 10px;
  text-align: center;
  text-decoration: none;
  width: auto;
  border: 0;
}

#tarteaucitron #tarteaucitronServices #tarteaucitronAllAllowed.tarteaucitronIsSelected {
  background-color: #1B870B;
  opacity: 1;
}

#tarteaucitron #tarteaucitronServices #tarteaucitronAllDenied.tarteaucitronIsSelected,
#tarteaucitron #tarteaucitronServices #tarteaucitronAllDenied2.tarteaucitronIsSelected {
  background-color: #9C1A1A;
  opacity: 1;
}

#tarteaucitron #tarteaucitronServices .tarteaucitronLine .tarteaucitronName .tarteaucitronListCookies {
  font-size: 12px;
}

#tarteaucitron #tarteaucitronMainLineOffset .tarteaucitronName {
  width: auto!important;
  margin-left: 0!important;
  font-size: 14px;
}
span#tarteaucitronDisclaimerAlert {
  padding: 0 10px;
  display: inline-block;
}

/***
* Responsive layout for the control panel
*/
@media screen and (max-width:479px) {
  #tarteaucitron .tarteaucitronLine .tarteaucitronName {
    width: 90% !important;
  }

  #tarteaucitron .tarteaucitronLine .tarteaucitronAsk {
    float: left !important;
    margin: 10px 15px 5px;
  }
}

@media screen and (max-width:767px) {
  #tarteaucitronAlertSmall #tarteaucitronCookiesListContainer, #tarteaucitron {
    background: #fff;
    border: 0 !important;
    bottom: 0 !important;
    height: 100% !important;
    left: 0 !important;
    margin: 0 !important;
    max-height: 100% !important;
    max-width: 100% !important;
    top: 0 !important;
    width: 100% !important;
  }

  #tarteaucitron .tarteaucitronBorder {
    border: 0 !important;
  }

  #tarteaucitronAlertSmall #tarteaucitronCookiesListContainer #tarteaucitronCookiesList {
    border: 0 !important;
  }

  #tarteaucitron #tarteaucitronServices .tarteaucitronTitle {
    text-align: left !important;
  }

  .tarteaucitronName .tarteaucitronH2 {
    max-width: 80%;
  }

  #tarteaucitron #tarteaucitronServices .tarteaucitronLine .tarteaucitronAsk {
    text-align: center !important;
  }

  #tarteaucitron #tarteaucitronServices .tarteaucitronLine .tarteaucitronAsk button {
    margin-bottom: 5px;
  }
}

@media screen and (min-width:768px) and (max-width:991px) {
  #tarteaucitron {
    border: 0 !important;
    left: 0 !important;
    margin: 0 5% !important;
    max-height: 80% !important;
    width: 90% !important;
  }
}

/***
 * Small alert
 */

.tarteaucitronAlertSmallTop,.tarteaucitronAlertSmallBottom {
    bottom: 0;
}

#tarteaucitronAlertSmall {
    background: #333;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 4px 24px, rgba(0, 0, 0, 0.05) 0px 2px 6px;
    display: none;
    padding: 0;
    position: fixed;
    right: 0;
    text-align: center;
    width: auto;
    z-index: 2147483646;
}

#tarteaucitronAlertSmall #tarteaucitronManagerSA {
    color: #fff;
    cursor: pointer;
    border: none;
    display: inline-block;
    font-size: 11px !important;
    padding: 13px 10px 8px;
    background-color: transparent;
}

#tarteaucitronAlertSmall #tarteaucitronManagerSA:hover {
    background: rgba(255, 255, 255, 0.1);
}

#tarteaucitronAlertSmall #tarteaucitronManagerSA #tarteaucitronDot {
    background-color: gray;
    border-radius: 5px;
    display: block;
    height: 8px;
    margin-bottom: 1px;
    margin-top: 5px;
    overflow: hidden;
    width: 100%;
}

#tarteaucitronAlertSmall #tarteaucitronManagerSA #tarteaucitronDot #tarteaucitronDotGreen,
#tarteaucitronAlertSmall #tarteaucitronManagerSA #tarteaucitronDot #tarteaucitronDotYellow,
#tarteaucitronAlertSmall #tarteaucitronManagerSA #tarteaucitronDot #tarteaucitronDotRed {
    display: block;
    float: left;
    height: 100%;
    width: 0%;
}

#tarteaucitronAlertSmall #tarteaucitronManagerSA #tarteaucitronDot #tarteaucitronDotGreen {
    background-color: #1B870B;
}

#tarteaucitronAlertSmall #tarteaucitronManagerSA #tarteaucitronDot #tarteaucitronDotYellow {
    background-color: #FBDA26;
}

#tarteaucitronAlertSmall #tarteaucitronManagerSA #tarteaucitronDot #tarteaucitronDotRed {
    background-color: #9C1A1A;
}

#tarteaucitronAlertSmall #tarteaucitronCookiesNumber {
    background: transparent;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-size: 30px;
    padding: 0px 10px;
    vertical-align: top;
    border: none;
}

#tarteaucitronAlertSmall #tarteaucitronCookiesNumber:hover {
    background: rgba(255, 255, 255, 0.1);
}

#tarteaucitronAlertSmall #tarteaucitronCookiesListContainer {
    display: none;
    max-height: 70%;
    max-width: 500px;
    position: fixed;
    right: 0;
    width: 100%;
}

#tarteaucitronAlertSmall #tarteaucitronCookiesListContainer #tarteaucitronCookiesList {
    background: #fff;
    border: 1px solid rgba(51, 51, 51, 0.23);
    color: #333;
    font-size: 11px;
    height: auto;
    overflow: auto;
    text-align: left;
}

#tarteaucitronAlertSmall #tarteaucitronCookiesListContainer #tarteaucitronCookiesList strong {
    color: #333;
}

#tarteaucitronAlertSmall #tarteaucitronCookiesListContainer #tarteaucitronCookiesTitle {
    background: #333;
    border: 1px solid rgba(51, 51, 51, 0.23);
    color: white;
    margin-top: 21px;
    padding: 13px 0 9px 13px;
    text-align: left;
}

#tarteaucitronAlertSmall #tarteaucitronCookiesListContainer #tarteaucitronCookiesTitle strong {
    color: #fff;
    font-size: 16px;
}

#tarteaucitronAlertSmall #tarteaucitronCookiesListContainer #tarteaucitronCookiesList .tarteaucitronCookiesListMain {
    padding: 7px 5px 10px;
    word-wrap: break-word;
}

#tarteaucitronAlertSmall #tarteaucitronCookiesListContainer #tarteaucitronCookiesList .tarteaucitronCookiesListMain:hover {
    background: rgba(51, 51, 51, 0.2);
}

#tarteaucitronAlertSmall #tarteaucitronCookiesListContainer #tarteaucitronCookiesList .tarteaucitronCookiesListMain a {
    color: #333;
    text-decoration: none;
}

#tarteaucitronAlertSmall #tarteaucitronCookiesListContainer #tarteaucitronCookiesList .tarteaucitronCookiesListMain .tarteaucitronCookiesListLeft {
    display: inline-block;
    width: 50%;
}

#tarteaucitronAlertSmall #tarteaucitronCookiesListContainer #tarteaucitronCookiesList .tarteaucitronCookiesListMain .tarteaucitronCookiesListLeft a strong {
    color: darkred;
}

#tarteaucitronAlertSmall #tarteaucitronCookiesListContainer #tarteaucitronCookiesList .tarteaucitronCookiesListMain .tarteaucitronCookiesListRight {
    color: #333;
    display: inline-block;
    font-size: 11px;
    margin-left: 10%;
    vertical-align: top;
    width: 30%;
}

#tarteaucitronAlertSmall .tarteaucitronCookiesListLeft .purgeBtn {
  background-color: rgb(179, 77, 67);
  border: 1px solid black;
  width: 18px;
  height: 18px;
  border-radius: 5px;
}

#tarteaucitronAlertSmall .tarteaucitronCookiesListLeft .purgeBtn i {
  font-size: 15px;
  color: white;
}

/***
 * Icon
 */
.tarteaucitronIconBottomRight {
    bottom: 0;
    right: 0;
}
.tarteaucitronIconBottomLeft {
    bottom: 0;
    left: 0;
}
.tarteaucitronIconTopRight {
    top: 0;
    right: 0;
}
.tarteaucitronIconTopLeft {
    top: 0;
    left: 0;
}

.tarteaucitronIconTopLeft #tarteaucitronManager {
    border-radius: 2px 7px 7px 2px;
}

.tarteaucitronIconTopRight #tarteaucitronManager {
    border-radius: 7px 2px 2px 7px;
}

.tarteaucitronIconBottomLeft #tarteaucitronManager {
    border-radius: 7px 7px 2px 2px;
}

.tarteaucitronIconBottomRight #tarteaucitronManager {
    border-radius: 7px 7px 2px 2px;
}

#tarteaucitronIcon {
    background: transparent;
    position: fixed;
    display: none;
    width: auto;
    z-index: 2147483646;
}
#tarteaucitronIcon #tarteaucitronManager {
    color: transparent;
    cursor: pointer;
    display: inline-block;
    background-color: transparent;
    padding: 8px 10px 8px;
    border: none;
}
#tarteaucitronIcon #tarteaucitronManager img {
    width: 50px;
    height: 50px;
}

#tarteaucitronRoot .tarteaucitronCross::before {
    content: '\2717';
    display: inline-block;
    color: white;
}

#tarteaucitronRoot .tarteaucitronCheck::before {
    content: '\2713';
    display: inline-block;
    color: white;
}

#tarteaucitronRoot .tarteaucitronPlus::before {
    content: '\271b';
    display: inline-block;
    color: white;
}

/***
* Custom Switch toggle
*/

/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 25px;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 19px;
  width: 19px;
  left: 4px;
  bottom: 3px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  /* background-color: #2196F3; */
}

input:disabled + .slider {
  filter: grayscale(80%);
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(18px);
  -ms-transform: translateX(18px);
  transform: translateX(18px);
}
