

/* Fil d'Ariane */
	.breadcrumb span, .breadcrumb a {
		font-size: 1.2rem;
    color: var(--gray-700);
	}

/* Menu */
.nested{
}
	.nested nav{
	}
  @media (max-width: 1199px) {
    .nested nav{
      position: fixed;
      bottom: -100%;
      left: 0;
      z-index: 11;
      background: var(--white);
      height: 100vh;
      width: 100%;
      overflow-y: scroll;
      padding: 15px calc((100vw - 960px)/2);
      transform-origin: left;
      transition: bottom .5s ease-in-out;
    }
    .nested nav.open {
      bottom: 0;
    }
  }
  @media (max-width: 991px) {
    .nested nav {
      padding: 15px calc((100vw - 720px)/2);
    }
  }
  @media (max-width: 767px) {
    .nested nav {
      padding: 75px 30px 15px;
    }
  }
		.nested ul.firstLevel {
			display: flex;
			margin: 0;
			justify-content: flex-end;
		}
    @media (max-width: 1199px) {
      .nested ul.firstLevel {
        flex-direction: column;
        align-items: flex-start;
      }
    }
    @media (min-width: 1200px) {
			.nested ul.firstLevel > li:not(:first-child) {
				margin: 0 0 0 22px;
			}
      .nested ul.firstLevel {
        align-items: center;
      }
    }
			.nested ul.firstLevel > li {
				padding: 10px 0 10px 0;
				position: relative;
        margin-bottom: 0;
			}
      @media (max-width: 1199px) {
        .nested ul.firstLevel > li {
          margin-bottom: 20px;
        }
        .nested ul.firstLevel > li:last-child {
          margin-bottom: 30px;
        }
      }
				.nested ul.firstLevel > li > a {
					font-size: 1.4rem;
          text-transform: uppercase;
          color: var(--black);
          transition: color .2s;
				}
				.nested ul.firstLevel > li > a:hover {
          color: var(--color-primary);
				}
				.nested ul.firstLevel > li > ul {
					position: absolute;
					margin: 0;
					top: 100%;
					left: 0;
					background-color: #000;
					min-width: 250px;
					display: flex;
					flex-direction: column;
					height: 0;
					opacity: 0;
					overflow: hidden;
					transform: translateY(-10px);
					transition: transform .5s, opacity .5s;
				}
				.nested ul.firstLevel > li.itemRight > ul {
					left: initial;
					right: 0;
				}
				.nested ul.firstLevel > li:hover > ul {
					transform: translateY(0);
					opacity: 1;
					height: initial;
				}
				.nested ul.firstLevel > li > ul{
					z-index: 10000;
				}
					.nested ul.firstLevel > li > ul > li {
						padding: 0;
						display: flex;
						align-items: center;
					}
						.nested ul.firstLevel > li > ul > li > a {
							color: #fff;
							padding: 7px 10px 7px 10px;
							display: block;
							height: 100%;
							width: 100%;
						}
						.nested ul.firstLevel > li > ul > li > a:hover {
							background-color: grey;
						}

/*03 MINI-TABLETTE et MOBILE */
@media screen and (max-width: 767px), (max-device-width: 767px){
	span.mobile-buton.absolute {
		width: 40px;
		height: 40px;
		top: 0;
		left: 0;
	}
}


body .mm-menu_offcanvas {
	max-width: 80vw;
}
/* Pagination */
.tool-pagination {
  background-color: var(--gray-100);
  padding: 8px 20px;
}
.tool-pagination .pages{
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
}
.tool-pagination .pages li{
	padding: 0;
  margin-bottom: 0;
}
.tool-pagination .pages li:not(:first-child){
	margin-left: 10px;
}
.tool-pagination .pages li::before{
	display: none;
}
.tool-pagination .pages li a,
.tool-pagination .pages li .page-number{
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--white);
	color: var(--white);
	min-width: 36px;
	height: 36px;
  font-size: 1.4rem;
  font-weight: var(--bold);
  color: var(--gray-200);
}

.tool-pagination .pages li .page-number.current{
	background-color: var(--color-primary);
}

.tool-pagination .pages li a.next,
.tool-pagination .pages li a.prev {
  padding: 0 10px;
  text-transform: uppercase;
}
.tool-pagination .pages li a.next span {
  transform: rotate(-90deg);
  font-size: 3px;
  margin-left: 7px;
}
.tool-pagination .pages li a.prev span {
  transform: rotate(90deg);
  font-size: 3px;
  margin-right: 7px;
}

/* Menu produit */
#access__product {
  margin-right: 22px;
}
@media (max-width: 991px) {
  #access__product {
    display: none;
  }
  .nested__container {
    width: 0;
  }
}
li.nav-main-itemProduct {
  position: relative;
}
  li.nav-main-itemProduct .secondLevel {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 4;
    background-color: var(--white);
    margin: 0;
    padding: 35px 55px 100px;
    transform: translateX(-100%);
    transition: transform .2s;
  }
  @media (min-width: 992px) {
    li.nav-main-itemProduct .secondLevel {
      width: 36%;
      padding: 35px 80px 100px;
    }
  }
  li.nav-main-itemProduct .secondLevelProduct.show-menu .secondLevel {
    transform: translateX(0);
  }
    li.nav-main-itemProduct .secondLevel>li:not(.secondLevelProduct-logo) {
      margin-bottom: 22px;
    }
    @media (min-width: 768px) {
      li.nav-main-itemProduct .secondLevel>li:not(.secondLevelProduct-logo) {
        margin-bottom: 32px;
      }
    }
    li.nav-main-itemProduct .secondLevel.menu-clicked>li:not(.secondLevelProduct-logo) {
      max-height: 0;
      transition: max-height .4s;
      overflow: hidden;
      margin: 0;
    }
    li.nav-main-itemProduct .secondLevel.menu-clicked>li.sfhover {
      max-height: 800px;
      transition: max-height .4s;
    }
      li.nav-main-itemProduct .secondLevel > li > a {
        font-size: 2.5rem;
        font-family: 'permanent marker';
        color: var(--color-primary);
      }
      @media (min-width: 768px) {
        li.nav-main-itemProduct .secondLevel > li > a {
          font-size: 4rem;
        }
      }
      li.nav-main-itemProduct .secondLevel > li.menu-item-has-children > span {
        display: none;
        align-items: center;
        font-size: 1.4rem;
        font-weight: var(--bold);
        color: var(--color-primary);
        margin-bottom: 30px;
        text-transform: uppercase;
        font-family: var(--font-primary) !important;
        cursor: pointer;
      }
      li.nav-main-itemProduct .secondLevel>li.menu-item-has-children.sfhover>span {
        display: flex;
      }
      li.nav-main-itemProduct .secondLevel>li>span::before {
        margin-right: 12px;
        font-weight: var(--regular);
        font-family: icomoon !important;
      }
  li.nav-main-itemProduct .thirdLevel {
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s;
  }
  li.nav-main-itemProduct .secondLevel>li.menu-item-has-children.sfhover .thirdLevel {
    max-height: 800px;
    transition: max-height .4s;
    margin-top: 25px;
  }
  @media (min-width: 768px) {
    li.nav-main-itemProduct .secondLevel>li.menu-item-has-children.sfhover .thirdLevel {
      margin-top: 45px;
    }
  }
    li.nav-main-itemProduct .thirdLevel li{
      padding: 0;
      margin-bottom: 16px;
    }
    @media (min-width: 768px) {
      li.nav-main-itemProduct .thirdLevel li{
        margin-bottom: 32px;
      }
    }
      li.nav-main-itemProduct .thirdLevel li a{
        font-size: 1.8rem;
        color: var(--gray-600);
      }
      @media (min-width: 768px) {
        li.nav-main-itemProduct .thirdLevel li a{
          font-size: 2.2rem;
        }
      }

@media (min-width: 992px) {
  .secondLevelProduct.show-menu::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .7);
    z-index: 3;
  }
}

.secondLevelProduct-logo {
  display: flex;
  align-items: center;
  padding: 0;
  margin-bottom: 50px;
}
  .secondLevelProduct-logo > span {
    font-size: 16px;
    color: var(--color-primary);
    margin-left: -26px;
    margin-right: 13px;
    cursor: pointer;
  }
  @media (min-width: 768px) {
    .secondLevelProduct-logo > span {
      font-size: 22px;
      margin-right: 26px;
    }
  }

@media (max-width: 767px) {
  .secondLevelProduct-logo a img {
    max-width: 97px;
  }
}

@media (max-width: 1199px) {
  .nav-main-itemProduct {
    width: 100%;
  }
    .nav-main-itemProduct > a {
      width: 100%;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
      .nav-main-itemProduct > a span.icon-arrow-long{
        transform: scaleX(-1);
        color: var(--color-primary);
        margin-right: 20px;
      }
}
