.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    /* Ajustez en fonction de la largeur désirée */
    padding: 60px 150px;
}

.image-container {
    width: 100%;
}

.image-start {
  width: 100%;
}

.image-description {
    text-align-last: center;
}

.summary-container {
    display: flex;
    justify-content: space-around;
    width: 100%;
}

.block {
    padding: 10px;
    box-sizing: border-box;
    text-align: center;
    display: grid;
    align-items: center;
}

.summary-icon {
    height: 80px;
    display: block;
}

#somme,
#nomberOfUsers {
    font-size: 34px;
    font-weight: bold;
}

#details-container {
    display: grid;
    row-gap: 10px;
    align-items: center;
    padding: 20px;
    min-width: 100%;
}

.detail-item p {
    margin: 5px 0;
}

.total {
    color: #d70226;
    min-width: 40px;
    padding-left: 5px;
}

.detail-item {
    display: flex;
    align-items: center;
    width: 100%;
    height: 60px;
    padding: 0 10px;
    justify-content: space-between;
    background-color: #d9d9d97d;
    border-radius: 10px;
    font-family: Roboto, sans-serif;
    font-size: 16px;
    font-weight: bold;
}

.cta-header {
    display: flex;
    width: 100%;
    justify-content: center;
    height: 55px;
}

.cta-payment {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.payment-button {
    background-color: #d70226;
    filter: drop-shadow(0 0 0.25rem crimson);
    border: 1px solid #d70226;
    color: white;
    cursor: pointer;
    border-radius: 5px;
    max-width: 320px;
    height: 55px;
}

.cta-header {
    display: flex;
    width: 100%;
    justify-content: center;
    height: 55px;
}

.cta-payment {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.payment-button {
    background-color: #d70226;
    filter: drop-shadow(0 0 0.25rem crimson);
    border: 1px solid #d70226;
    color: white;
    cursor: pointer;
    border-radius: 5px;
    max-width: 320px;
    height: 55px;
}

.payment-link {
    background-color: transparent;
    color: white;
}

.payment-link:hover {
    background-color: transparent;
    color: #d70226;
}

.payment-button:hover {
    background-color: white;
    filter: drop-shadow(0 0 0.25rem crimson);
    border: 1px solid #d70226;
    color: #d70226;
}

.campagne-link {
    background-color: transparent;
    color: #d70226;
    font-weight: bold;
    
}

.campagne-link:hover {
    background-color: transparent;
    color: #d70226;
    
}
.campagne-button {
    border: none;
    background-color: transparent;
}

.campagne-button:hover {
    border-bottom: 1px solid #d70226;
    border-top: none;
    border-left: none;
    border-right: none;
}

.user-image {
    width: 40px;
    height: 40px;
    height: auto;
    margin-right: 20px;
    border-radius: 50%;
    filter: drop-shadow(0 0 0.25rem crimson);
}

.payment-button {
    background-color: #d70226;
    filter: drop-shadow(0 0 0.25rem crimson);
    border: 1px solid #d70226;
    color: white;
    cursor: pointer;
    border-radius: 5px;
}

.payment-link {
    background-color: transparent;
    color: white;
}

.payment-link:hover {
    background-color: transparent;
    color: #d70226;
}

.payment-button:hover {
    background-color: white;
    filter: drop-shadow(0 0 0.25rem crimson);
    border: 1px solid #d70226;
    color: #d70226;
}

.separator {
    height: 2px;
    width: 100%;
    background-color: #cccccc2e;
    margin: 20px 0;
}

@media (max-width: 768px) {
    .container {
        padding: 40px 100px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 20px 10px;
    }
    #details-container {
        display: grid;
        row-gap: 10px;
        align-items: center;
        padding: 0px;
        min-width: 100%;
    }
    .video-container {
        width: 100%;
    }
    .detail-item {
        display: flex;
        align-items: center;
        width: 100%;
        height: 60px;
        padding: 0 10px;
        justify-content: space-between;
        background-color: #d9d9d97d;
        border-radius: 10px;
        font-family: Roboto, sans-serif;
        font-size: 12px;
        font-weight: bold;
    }
    .summary-icon {
        height: 55px;
        display: block;
    }
    #somme,
    #nomberOfUsers {
        font-size: 28px;
        font-weight: bold;
    }
    [role="progressbar"] {
        --percentage: var(--value);
        --primary: #d70226;
        --secondary: #f6b8c3;
        --size: 100px;
        animation: progress 2s 0.5s forwards;
        width: var(--size);
        aspect-ratio: 1;
        border-radius: 50%;
        position: relative;
        overflow: hidden;
        display: grid;
        place-items: center;
    }
    [role="progressbar"]::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: conic-gradient(var(--primary) calc(var(--percentage) * 1%), var(--secondary) 0);
        mask: radial-gradient(white 55%, transparent 0);
        mask-mode: alpha;
        -webkit-mask: radial-gradient(#0000 55%, #000 0);
        -webkit-mask-mode: alpha;
    }
    [role="progressbar"]::after {
        counter-reset: percentage var(--value);
        content: counter(percentage) '%';
        font-family: Helvetica, Arial, sans-serif;
        font-size: calc(var(--size) / 5);
        color: var(--primary);
    }
}

@keyframes progress {
    0% {
        --percentage: 0;
    }
    100% {
        --percentage: var(--value);
    }
}

@property --percentage {
    syntax: '<number>';
    inherits: true;
    initial-value: 0;
}


/*progress bar*/

[role="progressbar"] {
    --percentage: var(--value);
    --primary: #d70226;
    --secondary: #f6b8c3;
    --size: 100px;
    animation: progress 2s 0.5s forwards;
    width: var(--size);
    aspect-ratio: 1;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    display: grid;
    place-items: center;
}

[role="progressbar"]::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: conic-gradient(var(--primary) calc(var(--percentage) * 1%), var(--secondary) 0);
    mask: radial-gradient(white 55%, transparent 0);
    mask-mode: alpha;
    -webkit-mask: radial-gradient(#0000 55%, #000 0);
    -webkit-mask-mode: alpha;
}

[role="progressbar"]::after {
    counter-reset: percentage var(--value);
    content: counter(percentage) '%';
    font-family: Helvetica, Arial, sans-serif;
    font-size: calc(var(--size) / 5);
    color: var(--primary);
}


/* loader liste*/

.table-loader-container {
    width: 100%;
    min-width: 100%;
    height: auto;
}

.table-loader-container .table-loader-item {
    height: 60px;
    width: 100%;
    background-color: #d9d9d97d;
    margin: 10px 0px;
    border-radius: 12px;
}

.table-loader-container .table-loader-item:nth-child(1) {
    animation: 1.3s Animation 0.05s infinite;
}

.table-loader-container .table-loader-item:nth-child(2) {
    animation: 1.3s Animation 0.1s infinite;
}

.table-loader-container .table-loader-item:nth-child(3) {
    animation: 1.3s Animation 0.15s infinite;
}

.table-loader-container .table-loader-item:nth-child(4) {
    animation: 1.3s Animation 0.2s infinite;
}

.table-loader-container .table-loader-item:nth-child(5) {
    animation: 1.3s Animation 0.25s infinite;
}

.table-loader-container .table-loader-item:nth-child(6) {
    animation: 1.3s Animation 0.3s infinite;
}

.table-loader-container .table-loader-item:nth-child(7) {
    animation: 1.3s Animation 0.35s infinite;
}

.table-loader-container .table-loader-item:nth-child(8) {
    animation: 1.3s Animation 0.4s infinite;
}

.table-loader-container .table-loader-item:nth-child(9) {
    animation: 1.3s Animation 0.45s infinite;
}

.table-loader-container .table-loader-item:nth-child(10) {
    animation: 1.3s Animation 0.5s infinite;
}

@keyframes Animation {
    0% {
        opacity: 0.2;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0.2;
    }
}

.tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.tab-button {
    padding: 10px 20px;
    border: none;
    background-color: #eee;
    cursor: pointer;
    border-radius: 5px;
}

.tab-button.active {
    background-color: #007bff;
    color: white;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.buyer-card {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    border: 1px solid #ccc;
    margin-bottom: 5px;
    border-radius: 5px;
}

.see-user {
    color: #007bff;
    text-decoration: underline;
    font-size: 14px;
}

.user-infos {
    display: flex;
    align-items: center;
    gap: 10px;
}

.user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #ccc;
}











.u-section-1 {
    background-image: none;
  }
  
  .u-section-1 .u-sheet-1 {
    min-height: 390px;
  }
  
  .u-section-1 .u-image-1 {
    width: 257px;
    height: 294px;
    margin: 37px auto 0;
  }
  
  .u-section-1 .u-text-1 {
    font-weight: 700;
    font-size: 1.25rem;
    margin: -333px 0 9px;
  } .u-section-2 {
    background-image: none;
  }
  
  .u-section-2 .u-sheet-1 {
    min-height: 1069px;
  }
  
  .u-section-2 .u-text-1 {
    --animation-custom_in-translate_x: 0px;
    --animation-custom_in-translate_y: 0px;
    --animation-custom_in-opacity: 0;
    --animation-custom_in-rotate: 0deg;
    --animation-custom_in-scale: 0.3;
    margin: 30px auto 0;
  }
  
  .u-section-2 .u-text-2 {
    font-size: 1.125rem;
    --animation-custom_in-translate_x: 0px;
    --animation-custom_in-translate_y: 0px;
    --animation-custom_in-opacity: 0;
    --animation-custom_in-rotate: 0deg;
    --animation-custom_in-scale: 0.3;
    width: 839px;
    margin: 17px auto 0;
  }
  
  .u-section-2 .u-group-1 {
    background-image: none;
    height: auto;
    --animation-custom_in-translate_x: 300px;
    --animation-custom_in-translate_y: 0px;
    --animation-custom_in-opacity: 0;
    --animation-custom_in-rotate: 0deg;
    --animation-custom_in-scale: 1;
    margin-top: 0;
    margin-bottom: 0;
    min-height: 748px;
  }
  
  .u-section-2 .u-container-layout-1 {
    padding: 0;
  }
  
  .u-section-2 .u-image-1 {
    width: 349px;
    height: 217px;
    margin: 40px auto 0 30px;
  }
  
  .u-section-2 .u-image-2 {
    width: 348px;
    height: 224px;
    margin: -220px auto 0 389px;
  }
  
  .u-section-2 .u-image-3 {
    width: 356px;
    height: 224px;
    margin: -220px 30px 0 auto;
  }
  
  .u-section-2 .u-image-4 {
    width: 349px;
    height: 233px;
    margin: 3px auto 0 30px;
  }
  
  .u-section-2 .u-image-5 {
    width: 362px;
    height: 219px;
    margin: -226px auto 0 382px;
  }
  
  .u-section-2 .u-image-6 {
    width: 359px;
    height: 233px;
    margin: -226px 26px 0 auto;
  }
  
  .u-section-2 .u-image-7 {
    width: 349px;
    height: 239px;
    margin: 0 auto 0 30px;
  }
  
  .u-section-2 .u-image-8 {
    width: 350px;
    height: 218px;
    margin: -232px auto 0 389px;
  }
  
  .u-section-2 .u-image-9 {
    width: 365px;
    height: 218px;
    margin: -218px 25px 0 auto;
  }
  
  .u-section-2 .u-image-10 {
    height: 200px;
    margin-top: 6px;
    margin-bottom: 0;
  }
  
  @media (max-width: 1199px) {
    .u-section-2 .u-group-1 {
      height: auto;
    }
  
    .u-section-2 .u-image-3 {
      margin-top: 20px;
    }
  
    .u-section-2 .u-image-6 {
      margin-top: 20px;
    }
  
    .u-section-2 .u-image-9 {
      margin-top: 20px;
    }
  }
  
  @media (max-width: 991px) {
    .u-section-2 .u-sheet-1 {
      min-height: 1553px;
    }
  
    .u-section-2 .u-text-2 {
      width: 720px;
    }
  
    .u-section-2 .u-group-1 {
      min-height: 1238px;
    }
  
    .u-section-2 .u-image-1 {
      width: 315px;
      height: 201px;
      margin-right: 385px;
      margin-left: 20px;
    }
  
    .u-section-2 .u-image-2 {
      width: 322px;
      height: 201px;
      margin-top: -201px;
      margin-right: 28px;
      margin-left: auto;
    }
  
    .u-section-2 .u-image-3 {
      width: 315px;
      height: 216px;
      margin-top: 28px;
      margin-right: auto;
      margin-left: 20px;
    }
  
    .u-section-2 .u-image-4 {
      width: 328px;
      height: 216px;
      margin-top: -216px;
      margin-right: 28px;
      margin-left: auto;
    }
  
    .u-section-2 .u-image-5 {
      width: 321px;
      height: 194px;
      margin-top: 28px;
      margin-left: 17px;
    }
  
    .u-section-2 .u-image-6 {
      width: 328px;
      height: 220px;
      margin-top: -207px;
      margin-right: 28px;
    }
  
    .u-section-2 .u-image-7 {
      width: 321px;
      height: 211px;
      margin-top: 15px;
      margin-left: 17px;
    }
  
    .u-section-2 .u-image-8 {
      width: 336px;
      height: 202px;
      margin-top: -211px;
      margin-right: 24px;
      margin-left: auto;
    }
  
    .u-section-2 .u-image-9 {
      margin-top: 40px;
      margin-right: auto;
    }
  
    .u-section-2 .u-image-10 {
      margin-top: 28px;
      margin-bottom: -28px;
    }
  }
  
  @media (max-width: 767px) {
    .u-section-2 .u-text-2 {
      width: 540px;
    }
  
    .u-section-2 .u-image-1 {
      margin-right: 225px;
      margin-left: 0;
    }
  
    .u-section-2 .u-image-2 {
      margin-top: 20px;
    }
  
    .u-section-2 .u-image-4 {
      margin-top: 20px;
    }
  
    .u-section-2 .u-image-6 {
      margin-top: 20px;
    }
  
    .u-section-2 .u-image-8 {
      margin-top: 20px;
    }
  }
  
  @media (max-width: 575px) {
    .u-section-2 .u-sheet-1 {
      min-height: 2418px;
    }
  
    .u-section-2 .u-text-2 {
      width: 340px;
    }
  
    .u-section-2 .u-group-1 {
      min-height: 2095px;
    }
  
    .u-section-2 .u-image-1 {
      margin-top: 42px;
      margin-left: auto;
      margin-right: auto;
    }
  
    .u-section-2 .u-image-2 {
      margin-right: auto;
    }
  
    .u-section-2 .u-image-3 {
      margin-top: 20px;
      margin-left: auto;
    }
  
    .u-section-2 .u-image-4 {
      width: 321px;
      height: 208px;
      margin-right: auto;
    }
  
    .u-section-2 .u-image-5 {
      margin-top: 23px;
      margin-right: 6px;
      margin-left: auto;
    }
  
    .u-section-2 .u-image-6 {
      margin-right: auto;
      margin-left: 4px;
    }
  
    .u-section-2 .u-image-7 {
      margin-top: 20px;
      margin-left: auto;
    }
  
    .u-section-2 .u-image-8 {
      margin-right: auto;
    }
  
    .u-section-2 .u-image-9 {
      height: 203px;
      margin-top: 20px;
      margin-right: initial;
      margin-left: initial;
      width: auto;
    }
  
    .u-section-2 .u-image-10 {
      margin-top: -8px;
      margin-bottom: 0;
    }
  }