body {
  font-family: var(--main-typo);
}

#wrapper {
    display : flex !important;
}

#footer {
    display : block !important;
}

.slider__dot {
    width         : 15px;
    height        : 15px;
    margin-right  : 10px;
    margin-bottom : 5px;

    cursor        : pointer;

    border-radius : 100%;
    border        : 2px solid var(--header-nav-bg-color);
    background    : var(--header-nav-bg-color);
    transition    : all 0.3s;
}

.slider__dot:last-child {
    margin-right : 0;
}

.slider__dot.active {
    background : transparent;
}

.btn.btn-primary {
    background : #039edf;
    /*background : var(--main-dark-color);*/
    background : var(--light-main-color);
    /*border     : 1px solid #000;*/
    border     : 1px solid var(--light-main-color);
    transition : all 0.3s;
    box-shadow : none;
}

.block-promo .promo-input + button.btn.btn-primary {
  background: var(--main-dark-color);
  border: 1px solid var(--main-dark-color);
  border-radius: 0px;
}

.block-promo .promo-input + button.btn.btn-primary:hover {
  color      : var(--main-dark-color);
  background : white;
}
/*.type-BEER .btn.btn-primary:not(.disabled) {*/
/*    background : var(--beer-light-main-color);*/
/*    border     : 1px solid var(--beer-light-main-color);*/
/*}*/

.btn.btn-primary:hover {
    background : white;
    /*color      : var(--main-dark-color);*/
    color      : var(--light-main-color);
}

.btn.disabled, .btn:disabled {
    cursor     : not-allowed;
    opacity    : 1;
    border     : 1px solid rgba(0, 0, 0, 0.12);
    background : #f8f9fb;
    color      : #7a7a7a;
}

.btn.btn-primary.disabled:hover,
.btn.btn-primary:disabled:hover {
    border     : 1px solid #f8f9fb;
    background : #f8f9fb;
    color      : #039edf;
    color      : var(--light-main-color);
}

.btn-secondary {
  font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
  font-weight: 400;
  border-radius: 5px;
  text-transform: none;
  padding: 0.75rem 1.75rem;
  transition: all 0.35s ease-in-out;
}

.btn-secondary:hover {
  background: #000;
  color: #fff;
}

.slick-list {
    width : 100%;
    max-width: 100vw;
}

.slick-slider {
  display : none !important;
}

.slick-slider.slick-initialized {
  display : flex !important;
}

.slick-slider .slick-arrow {
  cursor   : pointer;
  position : absolute;

  fill     : transparent;
  stroke   : #d3d3d3;
}

.slick-slider .slick-arrow.slick-prev {
  left : 0;
}

.slick-slider .slick-arrow.slick-next {
  right : 0;
}

.slick-slider .slick-list {
  min-width : 100%;
}

.slick-slider .slick-track {
  display : flex;
  /**align-items: center;**/
}

.slick-slider.slick-vertical .slick-track {
  display : block;
}

.slick-slider .slick-track .slick-slide {
  height : auto;
}

.slider-container.home .slick-slider .slick-track .slick-slide {
  height : 100%;
}

.slick-slider .slick-slide > div,
.slick-slide > div .product-miniature {
  height : 100%;
}

@media (min-width : 768px) {
    .slider__dot {
        width         : 10px;
        height        : 10px;
        margin-right  : 10px;
        margin-bottom : 0;
    }
}
/*
#toasts__wrapper {
    position : fixed;
    top   : 60px;
    top   : 0px;
    right    : 50px;
    color    : white;
    z-index  : 10;
    max-width: 380px;
}

 */

#toasts__wrapper {
    position : absolute;
    top   : 100%;
    right    : 0;
    color    : white;
    z-index  : 10;
    max-width: 380px;
}

.toast__wrapper {
    background    : var(--light-main-color);
    background    : #ffffff;
    color         : #232323;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    font-size     : 16px;
    padding       : 0 20px;
    height        : 0;
    /*line-height   : 3em;*/
    overflow      : hidden;
    opacity       : 0;
    transition    : all 0.3s, opacity 0.2s;
    border: 1px solid var(--main-dark-color);
  min-width: 380px;
}

.toast__wrapper + .toast__wrapper {
    margin-top : 10px;
}

.toast__wrapper.visible {
    opacity : 1;
    height  : 18em;
}

.toast__wrapper.hide {
    opacity    : 0;
    height     : 0;
    margin-top : 0;
}

.toast__inner {
    display     : flex;
    align-items : center;
}

.toast__icon {
    margin-right : 0.75em;
    display      : flex;
    align-items  : center;
}

.toast__icon i {
    display    : inline-block;
    width      : 2em;
    height     : 2em;
    content    : url(../../img/icons/cart.svg);
    object-fit : contain;
    transform  : scaleX(-1);
}

.tooltip > .tooltip-inner {
  background-color: var(--header-nav-bg-color) !important;
  color: #fff;
}

/* dernier produit ajouté */


#header .toast__wrapper .btn.btn-primary {
  border-radius: 5px;
  color: white;
}

#header .toast__wrapper .btn.btn-primary:hover {
  color: var(--light-main-color);
}


.toast__wrapper .product-added {
  text-align: center;
  font-weight: 500;
  font-size: 20px;
  padding: 20px 0;
  border-bottom: 1px solid #eeeeee;
  margin-bottom: 10px;
}

.toast__wrapper .cart-product .description {
  width: calc(100% - 120px);
  display: inline-block;
  margin-left: 15px;
}

.toast__wrapper .cart-product .product-name {
  font-size: 16px;
  display: block;
  line-height: 14px;
  margin-top: 10px;
}

.toast__wrapper .cart-product .cart-controls {
  line-height: 30px;
}

.toast__wrapper .cart-product .contenant {
  font-size: 14px;
  padding: 8px 2px 8px 8px ;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  background-color: #ECEFF1;
  border-right: 1px solid #D0D7DC;
}

.toast__wrapper .cart-product .product-price {
  font-size: 12px;
  display: block;
  line-height: 20px;
  margin: 15px 0;
}

.toast__wrapper .cart-product .product-price span {
  font-size: 21px;
  color: var(--light-main-color);
  font-weight: bold;
}

.toast__wrapper .cart-product .tarif {
  font-size: 14px;
  padding: 8px 8px 8px 5px ;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  background-color: #ECEFF1;
  font-weight: bold;
}

.toast__wrapper .cart-product .product-price span {
  font-size: 21px;
  color: var(--light-main-color);
  font-weight: bold;
}

body#category .tooltip > .tooltip-inner:before {
  border-top-color: var(--header-nav-bg-color) !important;
}

body#product .tooltip > .tooltip-inner:before {
  border-left-color: var(--header-nav-bg-color) !important;
}

/*
--------------------------------------
Univers
--------------------------------------
*/

#universe-description {
  font-family: var(--second-typo);
  text-align: left;
  max-width: 60%;
  margin: auto;
}

/*
--------------------------------------
Product info
--------------------------------------
*/

.info-product-list li:not(:last-of-type) {
  margin-bottom: 0.5em;
}

.info-product-item {
  display: inline-flex;
  align-items: center;
  background-color: #F6F6F6;
  border-radius: 5px;
  width: 100%;
  padding: 0.5em;
}

.info-product-conditioning {
  background: #0C364D;
  color: #fff;
  border-radius: 9px;
  padding: 1em;
  margin-right: 1em;
}

.info-product-comment {
  font-style: italic;
  margin: 0;
}

.info-product-content span {
  color: #918586;
}

/*
--------------------------------------
Vignettes
--------------------------------------
*/

.medailles-container .note-vivino {
   display: flex;
   flex-direction: column;
   align-items: center;
   background: #fff;
   border-radius: 50%;
   width: 80px;
   padding: 0.25em 0;
   margin-bottom: 5px;
}

.medailles-container img {
  object-fit: contain;
  max-width: 80px;
  max-height: 60px;
}

/*
--------------------------------------
Ohm cart popup
--------------------------------------
*/

#ohmcartpopup-wrapper .body .cart-url {
  border-radius: 5px;
  background-color: var(--light-main-color);
  padding: 10px 30px;
  border: 1px solid var(--light-main-color);
}

/*.info-product-container .info-product-conditioning-title span > span {*/
/*  font-weight: 500;*/
/*  color: #fff;*/
/*  border-radius: 5px;*/
/*  padding: 2px 5px;*/
/*}*/

/*.info-product-container .info-product-conditioning-title .blanche {*/
/*  background-color: #678aab;*/
/*}*/

/*.info-product-container .info-product-conditioning-title .blonde {*/
/*  background-color: #cb8d0e;*/
/*}*/

/*.info-product-container .info-product-conditioning-title .ambree {*/
/*  background-color: #94450e;*/
/*}*/

/*.info-product-container .info-product-conditioning-title .brune {*/
/*  background-color: #382602;*/
/*}*/

/*.info-product-container .info-product-conditioning-title .triple {*/
/*  background-color: #0c1e2a;*/
/*}*/

/*.info-product-container .info-product-conditioning-title .paleale {*/
/*  background-color: #b2c052;*/
/*}*/

/*.info-product-container .info-product-conditioning-title .ipa {*/
/*  background-color: #a9925d;*/
/*}*/

/*.info-product-container .info-product-conditioning-title .aromatisee {*/
/*  background-color: #523179;*/
/*}*/

/*.info-product-container .info-product-conditioning-title .abbaye {*/
/*  background-color: #5e3431;*/
/*}*/

/*.info-product-container .info-product-conditioning-title .sansalcool {*/
/*  background-color: #70ae8b;*/
/*}*/

.custom-radio input[type=radio]:checked + span {
  background-color: #1e1e20;
}

.page-content.page-cms li {
  list-style-type: disc;
}

.page-content.page-cms ul {
  padding-left: 40px;
}

/*
--------------------------------------
Chevron miniature et listing
--------------------------------------
*/

.qty__input-wrapper {
  position: relative;
}

.qty__input-wrapper:after {
  position: absolute;
  content: url(../../img/icons/chevron-down.png);
  pointer-events: none;
  right: 7px;
  top: 15px;
}

@media (any-hover: hover) {

  .qty__input-wrapper {
    --chevronRotation: 180deg;
  }

  .qty__input-wrapper:after {
    transform: rotate(var(--chevronRotation));
  }

}

/*
--------------------------------------
CE Editor Active
--------------------------------------
*/

.elementor-editor-active #content-wrapper {
  width: 100%;
}

/*
--------------------------------------
Cookies
--------------------------------------
*/

.ch2-icon {
  position: fixed;
  z-index: 508;
  left: 10px !important;
  bottom: 100px !important;
  opacity: 0 !important;
}

.cookies-modale--is-visible .ch2-container {
  background: rgba(0,0,0,.5);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 700000;
}

/*
--------------------------------------
Search
--------------------------------------
*/

#module-ambjolisearch-jolisearch .page-not-found {
   margin-top: 1em;
}

#module-ambjolisearch-jolisearch section#products h4 {
   text-align: center;
}

#module-ambjolisearch-jolisearch section#products #search_widget {
    float: unset !important;
}

#module-ambjolisearch-jolisearch section#products .go-back-btn-container {
   text-align: center;
   margin-bottom: 2em;
}

#module-ambjolisearch-jolisearch section#products .go-back-btn-container a {
   display: inline-flex;
   align-items: center;
   gap: 10px;
   background: var(--main-dark-color);
   border-radius: 5px;
}

#module-ambjolisearch-jolisearch section#products input[type="text"] {
   border: 2px solid var(--main-dark-color);
}

#module-ambjolisearch-jolisearch section#products form i {
   top: 30%;
}
