/********************
	Part - Style global
********************/

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

#wrapper {
  background: #fff;
}

.products-section-title {
  text-align: center;
  margin-bottom: 1.5rem;
}

/********************
	Part - Style général des accordéons
********************/
.js-accordion__container {
  border: 1px solid var(--color-grey-default);
  box-shadow: 2px 2px 11px 0 rgba(0, 0, 0, 0.1);
}

.js-accordions__wrapper .accordion__title {
  background: white;
  color: var(--color-primary);
  padding: 15px;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, .1);
  cursor: pointer;
}

/********************
	Part - fix taille mini d'une page à 100vh hors du checkout
********************/
body:not(#checkout) main {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

body:not(#checkout) #wrapper {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
}

body:not(#checkout) #wrapper .wrapper__inner {
  flex: 1 0 auto;
}

/********************
	Part - class notransition for js
********************/
.notransition,
.notransition * {
  -webkit-transition: none !important;
  -moz-transition: none !important;
  -o-transition: none !important;
  transition: none !important;
}

/********************
	Part - Style all product link
********************/
.all-product-link {
  color: var(--color-grey-font-default);
  font-weight: 700;
  padding: 3px 7px;
  display: inline-block;
}

.section__content .all-product-link {
  margin-top: 1.5rem;
}

.all-product-link:focus,
.all-product-link:hover {
  text-decoration: none;
}

/********************
	Part - Style dropdown
********************/
.dropdown {
  color: var(--color-grey-font-default)
}

.dropdown:hover .expand-more {
  color: #2fb5d2
}

.dropdown .expand-more {
  color: var(--color-black-default);
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none
}

.dropdown .active {
  max-height: 200px;
  overflow-y: hidden;
  visibility: visible
}

.dropdown select {
  -moz-appearance: none;
  border: 0 none;
  outline: 0 none;
  color: var(--color-black-default);
  background: #fff
}

.dropdown-item:focus, .dropdown-item:hover {
  background: none;
  text-decoration: none;
  color: #2fb5d2
}


/********************
	Part - Cookie
********************/
.acbCheckboxContainer {
  display: flex;
}

.acbCheckboxContainer .acbConsentLabel {
  text-align: left;
  margin-left: .33em;
}

/*************************
	Part - Wishlist modals
*************************/
.wishlist-modal.show {
  background: rgba(0, 0, 0, 0.5);
}

.wishlist-modal .modal.fade .modal-dialog.modal-dialog-centered {
  top: 50%;
  left: 50%;
  right: 0;
  bottom: 0;
  transform: translate(-50%, -50%);
  margin: 0;
}

/*************************
	Part - Sliders
*************************/
.swiper-container {
  overflow: hidden;
  min-width: 0;
  max-width: 100%;
}

.swiper-button-next:after, .swiper-button-prev:after {
  color: var(--color-primary);
  font-size: 20px;
}

.swiper-pagination-bullet-active {
  background: var(--color-primary);
}

.swiper-button-next, .swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, -20px);
  left: auto;
}

.swiper-button-prev, .swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, -20px);
  right: auto;
}

/*
--------------------------------------
Blog listing
--------------------------------------
*/

.blog-content {
  padding-top: 3em;
}

.blog-content #prestablog_menu_cat {
  display: none;
}

.blog-content h1.prestablogcat {
  font-size: calc(28px + (38 - 28) * ((100vw - 320px) / (1920 - 320)));
  font-weight: 600;
  text-align: center;
}

.blog-content .blog-list {
  display: grid;
  grid-template-columns: 1fr;
  column-gap: 15px;
  row-gap: 15px;
  padding: 3em 0;
}

.blog-content .block_cont {
  display: flex;
  flex-direction: column;
  background: var(--color-tertiary);
  height: 100%;
}

.blog-content .block_top {
  padding: 0;
}

.blog-content .block_bottom {
  display: flex;
  flex-direction: column;
  row-gap: 15px;
  height: 100%;
  padding: 1em;
}

.blog-content .block_bas a {
  font-weight: 300;
  color: #fff;
  letter-spacing: 0.5px;
}

.blog-content .prestablog_desc {
  font-weight: 300;
  color: #fff;
}

.blog-content .prestablog_more {
  margin-top: auto;
}

