.section-comparateur{
    background-color: #EBEFF2;
}
.comparaison-table {
  width: 100%;
  border-collapse: collapse;
}

.comparaison-table th, .comparaison-table td {
  padding: 8px;
  border: 1px solid #ddd;
  text-align: center;
}

.delete-btn {
  color: red;
  border: none;
  background: none;
  cursor: pointer;
  display: inline-block;
  margin-left: 8px;
}
.delete-btn img{
  position: relative;
  top: -4px;
}
.delete-btn:hover {
  text-decoration: underline;
}
.section-comparateur .col-form-detail{
    display: flex;
    flex-direction: row;
    gap: 32px;
}
.empty-value{
  font-size: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section-comparateur .col-form-detail .col-form-wrapper{
    width: 25%;
    flex: 1 1 auto;
    border-radius: 16px;
    background: #FFF;
    padding: 24px 16px;
    position: relative;
}

.section-comparateur .col-form-detail #col-details{
    width: 75%;
    flex: 1 1 auto;
}
.section-comparateur .col-form-detail #col-details .details-wrapper{
  height: 100%;
}
.section-comparateur .col-form-detail .col-form-wrapper .nombre-pack{
  color: #000;
  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 2.18;
}
.section-comparateur .col-form-detail .col-form-wrapper #selects-wrapper{
  margin-top: 16px;
}
.section-comparateur .col-form-detail .col-form-wrapper #selects-wrapper,
.section-comparateur .col-form-detail .col-form-wrapper .compare-button-wrapper{
  padding: 0 8px;
}
.section-comparateur .col-form-detail .col-form-wrapper  .form-item{
  display: inline-block;
  margin: 0;
  margin-bottom: 16px;
  width: 100%;
}
.section-comparateur .col-form-detail .col-form-wrapper  .form-item .form-control{
  border-radius: 24px;
  border: 1px solid #ACACAC;
  height: 48px;
  color: rgba(113, 113, 113, 0.70);
  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 2.18;
  padding-left: 24px;
  width: 100%;
}
.section-comparateur .col-form-detail .col-form-wrapper  .form-item .form-control:after{display: none;}
.section-comparateur .col-form-detail .col-form-wrapper .wrapper-add-more{position: relative;}
.section-comparateur .col-form-detail .col-form-wrapper .wrapper-add-more .btn-add-more{
  width: 100%;
  margin: 0 auto;
  color: #fff;
  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  border-radius: 24px;
  background: #E2001A url(../img/plus-w.svg) 90% center no-repeat;
  border: 1px solid #E2001A;
  height: 48px;
}
.section-comparateur .col-form-detail .col-form-wrapper .wrapper-add-more .btn-add-more:hover{
  background: #0A2240 url(../img/plus-w.svg) 90% center no-repeat;
  border-color: #0A2240;
  color: #fff;
}
.section-comparateur .col-form-detail .col-form-wrapper .wrapper-add-more{
  display: inline-block;
    width: 100%;
}
.section-comparateur .col-form-detail .col-form-wrapper .wrapper-add-more,
.section-comparateur .col-form-detail .col-form-wrapper .compare-button-wrapper {
  text-align: center;
}
.section-comparateur .col-form-detail .col-form-wrapper .compare-button-wrapper .button{
  width: 100%;
  margin: 0 auto;
  color: #fff;
  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  border-radius: 24px;
  border: 1px solid #0A2240;
  height: 48px;
  margin-top: 16px;
}
.section-comparateur .col-form-detail .col-form-wrapper .compare-button-wrapper .button:hover{
  border-color: #E2001A;
}
.col-form-detail .details-wrapper .selected-products-details{
  display: flex;
  flex-direction: row;
  gap: 32px;
  height: 100%;
  position: relative;
}
.col-form-detail .details-wrapper .selected-products-details .owl-dots{
  position: absolute;
  bottom: -32px;
  left: 50%;
  transform: translateX(-50%);
}
.ajax-progress {
  position: relative;
  width: 48px; /* Largeur totale du loader (8px + 12px + 8px + 12px + 8px) */
  height: 8px;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%);
  background: transparent;
  z-index: 999;
}

/* Styles communs pour les 3 points */
/* .ajax-progress::before,
.ajax-progress::after, */
.ajax-progress .throbber {
  content: "";
  position: absolute;
  top: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #E2001A;
  animation: fade1-anim 0.75s infinite;
}

/* Point gauche */
.ajax-progress::before {
  left: 0;
  animation-delay: 0s;
}

/* Point central */
.ajax-progress .throbber {
  left: 16px; /* 8px (largeur) + 8px (espacement) */
  text-indent: -9999px;
  animation-delay: 0.1s;
}

/* Point droit */
.ajax-progress::after {
  left: 32px; /* 8 + 8 + 8 + 8 */
  animation-delay: 0.2s;
}

/* Masquer le texte */
.ajax-progress .message {
  display: none;
}

/* Animation */
@keyframes fade1-anim {
  0% {
    transform: scale(2);
    opacity: 0;
  }
  45%,
  55% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}

.col-form-detail .details-wrapper .selected-products-details .product-detail>img{
  width: 100%;
  height: 368px;
  object-fit: cover;
  border-radius: 16px;
}
.col-form-detail .details-wrapper .selected-products-details .product-detail{
  /* width: 33.33%; */
  position: relative;
  flex: 1 1 auto;
  border-radius: 16px;
}
.col-form-detail .details-wrapper .selected-products-details .product-detail .col-title-logo{
  background-color: #fff;
  position: absolute;
  bottom: 0;
  transform: translateX(-50%);
  left: 50%;
  width: 100%;
  border-radius: 0 0 16px 16px;
  display: flex;
  /* max-width: 355px; */
}
.col-form-detail .details-wrapper .selected-products-details .product-detail .col-title-logo .col-name{
  width: 50%;
  padding: 16px 24px;
  background-color: #E2001A;
  border-radius: 0 0 0 16px;
}
.col-form-detail .details-wrapper .selected-products-details .product-detail .col-title-logo .name-pack{
  font-size: 18px;
  color: #FFF;
  width: 40%;
  line-height: 1.4;
  text-transform: uppercase;
}
.col-form-detail .details-wrapper .selected-products-details .product-detail .col-title-logo .logo-bh{
  width: 50%;
  padding: 16px 24px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.col-form-detail .details-wrapper .selected-products-details .product-detail .col-title-logo .logo-bh img{
  /* height: 34px;
  object-fit: cover; */
}
.col-form-detail .details-wrapper .selected-products-details .owl-stage,
.col-form-detail .details-wrapper .selected-products-details .owl-stage .owl-item,
.col-form-detail .details-wrapper .selected-products-details .product-detail{
  height: 100%;
}
.pack-comparateur-comparateur .col-table-wrapper:has(.comparison-table){
  margin-top: 56px;
  display: flex;
  flex-direction: column-reverse;
}
.pack-comparateur-comparateur .col-table-wrapper #filter-buttons-compare .form-actions{
  margin-top: 0;
  margin-bottom: 24px;
  display: flex;
  gap: 8px;
  justify-content: flex-end;
}
.pack-comparateur-comparateur .col-table-wrapper #filter-buttons-compare .form-actions .btn{
  border-radius: 16px;
  background: transparent;
  height: 48px;
  padding: 6px 30px;
  color: #0A2240;
  border: 1px solid #ACACAC;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 2.18;
  margin: 0;
}
.pack-comparateur-comparateur .col-table-wrapper #filter-buttons-compare .form-actions .btn.active{
  color: #0A2240;
  background: #fff;
}
.pack-comparateur-comparateur .col-table-wrapper #filter-buttons-compare .form-actions .btn:focus,
.pack-comparateur-comparateur .col-table-wrapper #filter-buttons-compare .form-actions .btn:focus-visible{
  box-shadow: none;
  outline: none;
}
/* .comparison-table.table>thead>tr>th, */
/* .comparison-table.table>tbody>tr>td, */
.comparison-table.table>tbody>tr{
  border: 0;
}
.comparison-table.table>tbody>tr{
  /* border-radius: 10px;
  border: 1px solid #ACACAC;
  margin-top: 16px; */
}

.comparison-table {
  color: #000;
  background: white;
  border-radius: 16px;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 2;
  overflow: hidden;
}
.comparison-table th {
  text-align: left;
  padding: 5px 15px;
  border-bottom: 2px solid #E2001A;
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 2 !important;
  padding: 16px 24px !important;
  vertical-align: middle !important;
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
  font-family: "futura";
    font-weight: 600;
    font-size: 14px;
}

.comparison-table td {
  border-width: 1px 0;
 border-bottom: 1px solid #e3eaf3;
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 2 !important;
  padding: 16px 24px !important;
  vertical-align: middle !important;
  text-align: center;
}
.comparison-table td:first-child,
.comparison-table th:first-child {
  padding: 16px 24px;
    text-align: left;
    text-transform: uppercase;
    font-weight: bold;
        font-size: 14px;
          font-family: "futura";

}
.comparison-table tr td:nth-child(2),
.comparison-table tr th:nth-child(2){
  color: #0A2240;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 2;
  background-color: #eff6ff;
}
.comparison-table tr td:first-child,
.comparison-table th:first-child{
  width: 35%;


}
.comparison-table td:last-child,
.comparison-table th:last-child {
  border-right-width: 1px;
  border-radius: 0 10px 10px 0;
}
.comparison-table thead {
  /* display: table;
  table-layout: fixed;
  width: 100%; */
}
.comparison-table tbody {
  /* display: table;
  table-layout: fixed;
  width: 100%; */
  border-spacing: 0 16px;
}
.comparison-table .cross-icon,.comparison-table .check-icon{
  font-size: 20px;
  color: #801616;
}
.comparison-table .check-icon{
  color: #16801C;
}
.text32 {
  font-size: 32px;
  color: #000;
  font-weight: 700;
  display: block;
}

.text24,.title-24 {
  font-size: 24px;
  color: #000;
  font-weight: 700;
  display: block;
  margin-bottom: 8px;
}

.text16 {
  font-size: 16px;
  color: #000;
  font-weight: 500;
  display: block;
}
@media (max-width: 1439.98px){
  .section-comparateur .col-form-detail .col-form-wrapper{
    width: 33.33%;
  }
  .section-comparateur .col-form-detail #col-details{
    width: 66.66%;
  }
}
@media (max-width: 1199.98px){
  .section-comparateur .col-form-detail .col-form-wrapper,
  .section-comparateur .col-form-detail #col-details{
    width: 50%;
  }
}
@media (max-width: 767.98px) {
  .pack-comparateur-comparateur .col-table-wrapper #filter-buttons-compare .form-actions .btn{
    font-size: 14px;
    height: 40px;
    line-height: 1.18;
  }
  .comparison-table td, .comparison-table th{
    font-size: 14px;
  }
  .pack-comparateur-comparateur .col-table-wrapper #filter-buttons-compare .form-actions{
    flex-wrap: wrap;
  }
    .section-comparateur .col-form-detail .col-form-wrapper,
  .section-comparateur .col-form-detail #col-details{
    width: 100%;
  }
  .section-comparateur .col-form-detail{
    flex-direction: column;
  }
  .py-6{
    padding: 48px 0;
  }
}
