.margin-right{
    padding-right : 50px;
}
.margintop-7{
    margin-top: 7rem !important;
}

.paddingbottom-20{
    padding-bottom: 20px;
}
.center{
  text-align: center;
}
.button-81 {
    background-color: #fff;
    border: 0 solid #e2e8f0;
    border-radius: 1.5rem;
    box-sizing: border-box;
    color: #0d172a;
    font-family: "Basier circle",-apple-system,system-ui,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
    font-weight: 600;
    line-height: 1;
    padding: 1rem 1.6rem;
    text-align: center;
    text-decoration: none #0d172a solid;
    text-decoration-thickness: auto;
    transition: all .1s cubic-bezier(.4, 0, .2, 1);
    box-shadow: 0px 1px 2px rgba(166, 175, 195, 0.25);
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    display: flex; /* Ajout de la propriété flex */
    align-items: center; /* Centrage vertical */
}

.button-81:hover {
    background-color: #9333E9;
    color: #fff;
}

@media (min-width: 768px) {
    .button-81 {
        font-size: 1.125rem;
        padding: 1rem 2rem;
    }
}

@media screen and (min-width: 1024px) {
    .displayOnMobile {
      display: none;
    }
  }



/* for_conditions */

.wrap {
  display: flex;
  justify-content: space-around;
  align-items: center;
  box-sizing: border-box;
  height: 100vh;
  padding: 2rem;
  background: rgb(34,193,195);
  background: radial-gradient(circle, rgba(34,193,195,1) 0%, rgba(243,232,253,0.6825323879551821) 65%); 
}

.container {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  padding: 1rem;
  background-color: #fff;
  width: 768px;
  height: 100%;
  border-radius: 0.25rem;
  box-shadow: 0rem 1rem 2rem -0.25rem rgba(0, 0, 0, 0.25);
}
.container__heading {
  padding: 1rem 0;
  border-bottom: 1px solid #ccc;
  text-align: center;
}
.container__heading > h2 {
  font-size: 1.75rem;
  line-height: 1.75rem;
  margin: 0;
}
.container__content {
  flex-grow: 1;
  overflow-y: scroll;
}
.container__nav {
  border-top: 1px solid #ccc;
  text-align: right;
  padding: 2rem 0 1rem;
}
.container__nav > .button {
  background-color: #444499;
  box-shadow: 0rem 0.5rem 1rem -0.125rem rgba(0, 0, 0, 0.25);
  padding: 0.8rem 2rem;
  border-radius: 0.5rem;
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
  transition: transform 0.25s, box-shadow 0.25s;
}
.container__nav > .button:hover {
  box-shadow: 0rem 0rem 1rem -0.125rem rgba(0, 0, 0, 0.25);
  transform: translateY(-0.5rem);
}
.container__nav > small {
  color: #777;
  margin-right: 1rem;
}