.container .row {
  margin: 1.5rem 0;
}

.thumbnail-carousel {
  display: flex;
  align-items: center;
  height: 100%;
}

.thumbnail-images {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  height: 100%;
}

.thumbnail-images img {
  margin-right: 10px;
}

.main-image {
  flex-grow: 1;
}

.availability {
  color: #63C132;
}





.quantity {
  display: flex;
  align-items: center;
  height: 40px;
  margin-bottom: 20px;
}

.quantity-input {
  background-color: #F0F4F5;
  color: black;
  font-size: 16px;
  border: none;
  text-align: center;
  width: 40px;
  height: 100%;
  padding: 0;
  margin: 0;
}

.minus-btn,
.plus-btn {
  background-color: #F0F4F5;
  color: #007DA5;
  border: none;
  width: 24px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}




.cart-card {
  background-color: white;
  padding: 30px;
}

.price {
  font-weight: 500;
  font-size: 30px;
  line-height: 36px;
  margin-bottom: 20px;
}

.availability {
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 19px;
  margin-bottom: 20px;
}

.stock-dot {
  width: 7px;
  height: 7px;
  background-color: #63C132;
  border-radius: 50%;
}


.expedition {
  font-weight: 400;
  font-size: 14px;
}

.teal-blue {
  color: #007DA5;
}





.fiche-container {
  display: flex;
  gap: 24px;
}

.caracteristique {
  background-color: white;
  width: 30vw;
  padding: 16px;
  font-size: 15px;
  font-weight: 400;
}

.fiche-description {
  background-color: white;
  width: 70vw;
  padding: 16px;
  font-size: 15px;
  font-weight: 400;
}

.fiche-title {
  font-weight: 500;
  font-size: 29px;
  line-height: 35px;
  margin-bottom: 16px;
}

.product-title {
  font-style: normal;
  font-weight: 300;
  font-size: 32px;
  line-height: 40px;
  margin-bottom: 20px;
}

.product-description {
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
}

.details {
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
}

.title {
  margin: 40px 0px;
}


h1 {
  font-weight: 300;
  font-size: 48px;
  line-height: 58px;
  text-align: center;
  color: #243746;
  padding: 0 0 5vh;
}

h2 {
  font-weight: 300;
  font-size: 24px;
  line-height: 29px;
  color: #007DA5;
}

#steps {
  padding: 15vh 0 5vh;
  text-align: center;
}

#steps ul {
  margin: auto;
  padding: 0;
  display: flex;
  max-width: 50%;
  justify-content: space-between;
  position: relative;
}

#steps ul li {
  list-style: none;
  text-align: center;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #666;
  background-color: #eff3f4;
}

#steps ul li span {
  display: block;
  background-color: #fff;
  color: #666;
  border: 1px solid #666;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 10px;
  line-height: 0;
  font-weight: 700;
}

#steps ul li span.active {
  background-color: #007da5;
  color: #fff;
  border-color: #007da5;
}

#steps ul:after {
  content: "";
  position: absolute;
  width: 95%;
  height: 1px;
  background-color: #666;
  left: 4%;
  top: 30%;
  transform: translateY(-50%);
  z-index: -1;
}

.cart_products {
  margin-bottom: 15vh;
}

.cart_products .cart_product {
  display: flex;
}

.cart_products .cart_product .image {
  padding: 0 15px 0 0;
}

.cart_products .cart_product .content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.cart_products .cart_product .content .title {
  font-weight: 300;
  font-size: 20px;
  line-height: 24px;
  color: #000;
}

.cart_products .cart_product .content .stock {
  font-weight: 400;
  font-size: 14px;
  line-height: 160%;
}

.cart_products .cart_product .content .stock.in {
  color: #00a07c;
}

.cart_products .cart_product .content .stock.out {
  color: #d22c33;
}

.cart_products .cart_product .content .space {
  flex-grow: 1;
}

.cart_products .cart_product .content .actions ul {
  padding: 0;
  margin: 0;
  display: flex;
}

.cart_products .cart_product .content .actions ul li {
  list-style: none;
  position: relative;
}

.cart_products .cart_product .content .actions ul li:after {
  content: "";
  width: 1px;
  height: 100%;
  background-color: #000;
  position: absolute;
  right: 0;
  top: 0;
}

.cart_products .cart_product .content .actions ul li:last-child::after {
  display: none;
}

.cart_products .cart_product .content .actions ul li:first-child a {
  padding-left: 0;
}

.cart_products .cart_product .content .actions ul li a {
  font-weight: 300;
  font-size: 14px;
  line-height: 160%;
  color: #243746;
  text-decoration: none;
  padding: 15px 25px;
}

.cart_products .cart_product .content .actions ul li a:hover {
  text-decoration: underline;
}

.cart_products .cart_product .qty {
  padding: 0 25px;
}

.cart_products .cart_product .qty select {
  width: 60px;
  border-color: #243746;
  padding: 5px;
}

.cart_products .cart_product .price {
  font-weight: 600;
  font-size: 16px;
  line-height: 160%;
  color: #000;
  padding: 0 10px 0 0;
}

#code_promo .input-group {
  display: flex;
  gap: 10px;
}

#code_promo .input-group input {
  border: 0.5px solid rgba(0, 0, 0, .5);
  padding: 10px;
  flex-grow: 1;
}

#code_promo .input-group button {
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  color: #007da5;
  background-color: #fff;
  padding: 10px 20px;
  text-transform: uppercase;
  border: 1px solid #007da5;
}

#cart_total .line {
  display: flex;
  padding: 10px;
}

#cart_total .line div {
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #000;
}

#cart_total .line div:first-child {
  flex-grow: 1;
}

#cart_total .line.bold div {
  font-weight: 600;
}

#cart_total .space {
  margin: 10px 0;
  border-top: 1px solid #24374680;
}

.cart_valid {
  width: 100%;
  margin: 0 0 15px 0;
  padding: 10px;
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  text-transform: uppercase;
}

#payment_mode .title {
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  color: #243746;
}

#payment_mode ul {
  margin: 30px 40px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

#payment_mode ul li {
  list-style: none;
}

#payment_mode .security {
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  letter-spacing: 0.6px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.wrapper {
  margin: 0 auto;
  width: 80%;
  text-align: center;
}

.image-gallery {
  margin: 0 auto;
  display: flex;
  max-height: 380px;
}

.primary,
.thumbnails {
  display: flex;
  flex-direction: column;
}

.thumbnails {
  width: 100px;
  max-height: 380px;
  overflow-y: auto;
  margin-right: 5px;
}

.thumbnails::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  background-color: #F5F5F5;
}

.thumbnails::-webkit-scrollbar {
  width: 8px;
  background-color: #F5F5F5;
}

.thumbnails::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
  background-color: #7a7676;
}

.primary {
  width: inherit;
  background-color: #ffffff9e;
  background-size: contain;
  /* background-position: center center; */
  background-repeat: no-repeat;
  object-fit: contain;
}

.primary_container {
  width: 273px;
  height: 377px;
}

.thumbnail:hover .thumbnail-image,
.selected .thumbnail-image {
  border: 1px solid white;
  background-color: #ffffff9e;
}

.thumbnail-image {
  width: 80px;
  height: 80px;
  margin: auto auto 5px auto;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: #ffffff9e;
  border: 4px solid transparent;
}

@media only screen and (max-width: 768px) {

  .primary,
  .thumbnails {
    display: flex;
    flex-direction: row;
  }

  .thumbnails {
    width: 273px;
    min-height: 100px;
    overflow-x: auto;
    gap: 5px;
  }



  .image-gallery {
    margin: 0 auto;
    display: flex;
    max-height: initial;
  }
}