/* ---------------------------------------- FICHIER TWIG LISTE PRODUIT ---------------------------------------- */

/* Breadcrumbs */

.breadcrumb {
  display: flex;
  /* box-shadow: 0 8px 14px -2px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05); */
  padding: 0.75rem 1.25rem;
  border-radius: 35px;
}

.breadcrumb-links {
  display: flex;
  column-gap: 1rem;
  align-items: center;
}
.breadcrumb-links > li:nth-child(n + 4) {
  display: none;
}

.breadcrumb-box {
  display: flex;
  align-items: center;
}

.breadcrumb-link {
  color: #9ca3af;
}
.breadcrumb-box:hover > *:not(.breadcrumb-icon) {
  color: #4f46e5;
}

.breadcrumb-icon,
.breadcrumb-icon-home {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  color: #9ca3af;
}
.breadcrumb-links li:first-child .breadcrumb-text {
  display: none;
}

.breadcrumb-text {
  margin-left: 1rem;
  font-size: 12px;
  line-height: 1.25rem;
  font-weight: 5800 bold;
  color: #6b7280;
}

@media (min-width: 640px) {
  .breadcrumb-links > li:nth-child(n + 4) {
    display: block;
  }

  .breadcrumb-links li:first-child .breadcrumb-text {
    display: block;
  }
}

/* Responsive scrolling navigation  */

/* // ----- Component ----- */
.nav-scroller {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  margin-top: 10x;
  /* background-color: #fff; */
  .nav-scroller-nav {
    position: relative;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    z-index: 1;
    align-self: center;
    /* // Hide scrollbar */
    -ms-overflow-style: none;
    scrollbar-width: none;
    &::-webkit-scrollbar {
      display: none;
    }
  }
  .nav-scroller-content {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    margin: 0;
    padding: 0;
    list-style: none;
    will-change: transform;
    &:not(.no-transition) {
      transition: transform 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
    }
  }
  .nav-scroller-item {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    margin: 0 1rem;
    padding: 0.5rem 1rem;
    color: #000;
    text-decoration: none;
    /* .nav__link__content {
       font-size: 14px;
    } */
    .nav__link__title {
      font-size: 14px;
    }
    .nav__link__subtitle {
      font-size: 6px;
    }
  }
  .nav-scroller-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    /* width: $nav-scroller-btn-width; */
    /* min-height: $nav-scroller-btn-height; */
    /* height: 100%;
    padding: 0.5rem;
    font-size: 1.25rem; */
    color: #000;
    /* background: #fff; */
    border: 0;
    transition: color 0.3s, opacity 0.3s;
    cursor: pointer;
    &:hover {
      color: #666;
    }
    &:focus {
      outline: 0;
    }
    &:not(.active) {
      opacity: 0;
      pointer-events: none;
    }
    .nav-scroller-icon {
      width: 30px;
      display: inline-block;
      position: relative;
      top: -0.1em;
      width: 1em;
      height: 1em;
      fill: currentColor;
      vertical-align: middle;
    }
    &.nav-scroller-btn--left {
      left: 0;
    }
    &.nav-scroller-btn--right {
      right: 0;
    }
  }
}



/* card */

    .product-card {
        position: relative;
        margin: 10px 0px;
        z-index: 1;
        display: block;
        background: #FFFFFF;
        min-width: 270px;
        height: 440px;
        /* box-shadow: 12px 15px 20px 0px rgba(46, 61, 73, 0.15); */
        box-shadow: 5px 5px 5px 0px rgba(46, 61, 73, 0.15);
        border-radius: 0.375rem;
        transition: all 0.3s ease;
    }
    
    .product-card:hover {
        box-shadow: 2px 4px 8px 0px rgba(46, 61, 73, 0.2)
    }
    
    .product-card .card-thumbnail {
        background: #000000;
        /* height: 400px; */
        overflow: hidden;
    }
    
    .product-card .card-thumbnail img {
        display: block;
        width: 120%;
        -webkit-transition: all .3s cubic-bezier(0, .5, .5, 1);
        -o-transition: all .3s cubic-bezier(0, .5, .5, 1);
        transition: all .3s cubic-bezier(0, .5, .5, 1);
    }
    
    .product-card:hover .card-thumbnail img {
        -webkit-transform: scale(1.1);
        -moz-transform: scale(1.1);
        transform: scale(1.1);
        opacity: .6;
    }
    
    .fa-send:before {
        color: #fff;
        position: absolute;
        top: 15px;
        left: 13px;
    }
    
    .product-card .card-content {
        position: absolute;
        bottom: 0;
        background: #FFFFFF;
        width: 100%;
        padding: 20px;
        padding-top: 20px;
        padding-bottom: 20px; 
        -webkti-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        -webkit-transition: all 0.3s cubic-bezier(0.37, 0.75, 0.61, 1.05) 0s;
        -moz-transition: all 0.3s cubic-bezier(0.37, 0.75, 0.61, 1.05) 0s;
        -ms-transition: all 0.3s cubic-bezier(0.37, 0.75, 0.61, 1.05) 0s;
        -o-transition: all 0.3s cubic-bezier(0.37, 0.75, 0.61, 1.05) 0s;
        transition: all 0.3s cubic-bezier(0.37, 0.75, 0.61, 1.05) 0s;
    }
    
    .product-card .card-content .send {
        position: absolute;
        top: -30px;
        right: 10px;
        height: 60px;
        width: 60px;
        background: #197;
        border-radius: 50%;
        cursor: pointer;
        transition: all 1s ease;
        transition-delay: 0.3s;
        opacity: 0;
    }
    
    .product-card:hover .card-content .send {
        opacity: 1;
    }
    
    .product-card .card-content .card-title {
        margin: 0;
        padding: 0 0 10px;
        color: #333333;
        font-size: 20px;
        font-weight: 700;
        text-transform: capitalize;
    }
    
    .product-card .card-content .card-sub-title {
        margin: 0;
        padding: 0 0 20px;
        color: #197;
        font-size: 15px;
        font-weight: 400;
        text-transform: capitalize;
    }
    
    .product-card .card-content .description {
        color: #666666;
        font-size: 12px;
        line-height: 1.8em;
        display: none;
        /* height: 0px; */
    }
    
    .product-card .card-content .post-meta {
        margin: 30px 0 0;
        color: #999999;
    }
    
    .product-card .card-content .post-meta .time-stamp {
        margin-bottom: 5px;
        margin-top: 5px;
        margin-left: 0px;
        margin-right: 0px;
    }

    .product-card .card-content .post-meta a {
        color: inherit;
        text-decoration: none;
    }

    /* BTN HOVER */

.btn-plus {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 15px;
    text-decoration: none;
    color: #000; 
    background-color: transparent; 
    border: 1px solid transparent; 
    border-radius: 25px; 
    transition: background-color 0.3s, color 0.3s; /* Animation de transition */
}

.product-card:hover .btn-plus {
  color: #fff; 
  background-color: #007bff; 
  border: 1px solid #007bff;
}



.product-card:hover span{
  color: #fff;
  transition: background-color 0.8s, color 0.8s; /* Animation de transition */
}

.btn-plus i {
    margin-right: 5px; /* Espacement entre l'icône et le texte */
}




/* others css */
			#timeline {
				list-style: none;
				padding: 0;
				position: relative;
				-moz-box-sizing: border-box;
				-webkit-box-sizing: border-box;
				box-sizing: border-box;
			}
			#timeline:after {
				border: 4px solid;
				border-radius: 50%;
				border-color: #374A67;
				content: "";
				display: block;
				position: absolute;
				left: 17px;
			}
			.timeline-item {
				border-left: 2px solid #282F44;
				margin: 0 20px;
				padding: 0 25px 20px;
				position: relative;
				-moz-box-sizing: border-box;
				-webkit-box-sizing: border-box;
				box-sizing: border-box;
			}
			.timeline-item:before {
				border: 10px solid #374A67;
				border-radius: 50%;
				content: "";
				display: block;
				position: absolute;
				left: -11px;
				width: 20px;
				height: 20px;
				-moz-box-sizing: border-box;
				-webkit-box-sizing: border-box;
				box-sizing: border-box;
			}
			.timeline-body {
				background-color: #fbfbfb;
				padding: 10px 20px;
				position: relative;
				top: -20px;
			}
			.timeline-lead {
				line-height: 2px;
				padding-bottom: 5px;
			}
			.timeline-date {
				font-size: 0.7rem;
				color: #757780;
				letter-spacing: 1px;
				font-weight: 600;
				text-transform: uppercase;
			}
			.timeline-title {
				color: #374A67;
				letter-spacing: 1px;
				font-weight: 700;
			}
			.timeline-content {
				color: #070707;
			}

			.card-group {
				position: relative;
				width: 100%;
				background: white;
				box-shadow: 0 0 0.4rem rgba(0, 0, 0, 0.05);
				border-radius: 0.4rem;
				overflow: hidden;
				box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
				transition: all 0.3s cubic-bezier(0.25,0.8,0.25,1);
			}

			.card-group:hover {
				box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
			}
			.card-group .card-header {
				display: -webkit-box;
				display: flex;
				-webkit-box-orient: vertical;
				-webkit-box-direction: reverse;
				flex-direction: column-reverse;
				height: 100px;
				background-position: center;
				background-size: cover;
				-webkit-transition: height 0.3s;
				transition: height 0.3s;
			}
			.card-group .card-header:hover {
				height: 200px;
			}
			.card-group .card-header:hover + .card-body {
				height: 29px;
			}
			.card-group .card-header .card-title {
				font-size: 16px;
				color: inherit;
				margin: 0;
				padding: 1.2rem 1rem 0.5rem;
				background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(60%, white));
				background: linear-gradient(transparent, white 60%);
			}
			.card-group .card-body {
				height: 150px;
				overflow: hidden;
				padding: 0 1rem;
				-webkit-transition: 0.3s;
				transition: 0.3s;
			}
			.card-group .card-body .sub-text {
				font-size: 0.9rem;
				color: #646b75;
			}
			.card-group .card-link-footer {
				display: block;
				padding: 1rem;
				font-weight: bold;
				color: #d96c0f;
				text-align: center;
				text-decoration: none;
				-webkit-transition: 0.2s;
				transition: 0.2s;
			}
			.card-group .card-link-footer:hover {
				color: white;
				box-shadow: inset 0 -56px 0 #23445e;
				-webkit-transition: 0.2s;
				transition: 0.2s;
			}

			.mt-0 {
				margin-top: 0;
			}

			.mb-1 {
				margin-bottom: 0.4rem;
			}

			.list-episodes {
				list-style: none;
				padding-left: 0;
				margin: 0 -1rem;
				color: #646b75;
			}
			.list-episodes li {
				padding-left: 0.6rem;
			}
			.list-episodes li a {
				display: block;
				text-decoration: none;
				color: inherit;
				padding: 0.4rem 1rem 0.4rem 0.4rem;
				-webkit-transition: -webkit-transform 0.1s;
				transition: -webkit-transform 0.1s;
				transition: transform 0.1s;
				transition: transform 0.1s, -webkit-transform 0.1s;
			}
			.list-episodes li a:hover {
				-webkit-transform: translateX(4px);
				transform: translateX(4px);
				-webkit-transition: -webkit-transform 0.1s;
				transition: -webkit-transform 0.1s;
				transition: transform 0.1s;
				transition: transform 0.1s, -webkit-transform 0.1s;
			}
			.list-episodes li a b {
				font-size: 0.8rem;
				margin-right: 4px;
			}
			.list-episodes li:nth-child(even) div {
				border-radius: 4px 0 0 4px;
				background: rgba(239, 241, 245, 0.9);
			}

.dashed-border {
  border: 1px dashed #ccc; 
  padding: 8px; 
  display: flex; 
  border-radius: 5px;
  align-items: center;
  justify-content: center; 
  height: 100%; 
}

.time-stamp, .card-comment {
  flex: 1; 
  text-align: center; 
  margin: 3px; 
}

.time-price{
  margin-bottom: 70px;
}


.dashed {
  border: 2px dashed #ccc; 
  padding: 16px; 
  display: flex; 
  border-radius: 8px;
  align-items: center;
  justify-content: center; 
  height: 100%; 
}


.dashed p span {
  font-size: 30px;
  font-weight: bold;
}
.dashed p {
  font-size: 30px;
}

.sign-in{
  font-size: 25px;
}

.btn-item a {
  position: relative;
  display: block;
  text-align: center;
  color: #1c79d0;
  font-size: 18px;
  font-weight: bold;
  border-radius: 8px;
  width: 100%;
  height: 84px;
  padding: 25px 0;
  margin: 0 auto;
  border: 2px solid;
  text-decoration: none;
  transition: 0.3s;
}

.btn-item:hover {
  /* background-color: #1585bd93; */
  background-color: #1c79d0b5;
  font-size: 18px;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.8s, color 0.8s; /* Animation de transition */
}

.btn-item:hover a {
  color: #fff;
  transition: background-color 0.8s, color 0.8s; /* Animation de transition */
}

.btn-item a::after {
    content: "→";
    color: #333333;
    position: absolute;
    right: 10px;
    transition: 0.2s;
    top: 50%;
    transform: translateY(-50%);
}

.btn-item:hover a::after {
  content: "→";
  color: #fff;
}

.btn-item a:hover::after {
  right: 5px;
}

.dash{
  padding-top: 10px;
}



/* ---------------------------------------- FICHIER TWIG DETAIL PRODUIT ---------------------------------------- */
.expandable .expand-bar{
	position: absolute;
	z-index: 50!important;
}

				
.cool-link {
  display: inline-block;
  color: #000;
  text-decoration: none;
}

.cool-link::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: #000;
  transition: width .3s;
}

.cool-link:hover::after {
  width: 100%;
}



.box {
  width: 100%;
  height: 300px;
  border-radius: 5px;
  background: #fbfcee;
  position: relative;
  overflow: hidden;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

.wave {
  opacity: .4;
  position: absolute;
  top: 3%;
  left: 50%;
  background: #0af;
  width: 500px;
  height: 500px;
  margin-left: -250px;
  margin-top: -250px;
  -webkit-transform-origin: 50% 48%;
          transform-origin: 50% 48%;
  border-radius: 43%;
  -webkit-animation: drift 3000ms infinite linear;
          animation: drift 3000ms infinite linear;
}

.wave.-three {
  -webkit-animation: drift 5000ms infinite linear;
          animation: drift 5000ms infinite linear;
}

.wave.-two {
  -webkit-animation: drift 7000ms infinite linear;
          animation: drift 7000ms infinite linear;
  opacity: .1;
  background: yellow;
}

.box:after {
  content: '';
  display: block;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, #ee88aa, rgba(221, 238, 255, 0) 80%, rgba(255, 255, 255, 0.5));
  z-index: 11;
  -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.title {
  position: absolute;
  left: 0;
  top: 20px;
  width: 100%;
  z-index: 1;
  line-height: 25px;
  text-align: center;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  color: white;
  text-transform: capitalize;
  font-size: 24px;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
  text-indent: .3em;
}

@-webkit-keyframes drift {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  from {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes drift {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  from {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
a:hover{
	text-decoration: underline;
}