/* Page width de 60% */
.width-60 {
    width: 60%;
    margin-left: auto;
    margin-right: auto;
}

.contenaire {
    background-color: #ee4848;
    margin-top: 80px;
    padding: 2em;
    color: white;
}
        .contenaire h2 {
            font-size: 3em;
            margin-top: 0;
            margin-bottom: 0;
        }
        .contenaire p {
            font-size: 1.2em;
        }
.dons {
    margin-top: 40px;
}
    .dons-space {
        display: flex;
        flex-direction: row;
        padding-bottom: 20px;
        align-items: center;
        margin-top: 50px;
        justify-content: center;
    }
        #donations a{
            text-decoration: none;
            color: black;
            text-transform: uppercase;
            padding: 1em;
            background-color: #E5E7E9;
        }

        .button2 {
            cursor: pointer;
            display: inline-block;
            transition: all 0.2s ease-in;
            position: relative;
            overflow: hidden;
            z-index: 1;
            color: #090909;
            padding: 0.7em 1.7em;
            font-size: 18px;
            border-radius: 0.5em;
            background: #e8e8e8;
            border: 1px solid #e8e8e8;
            box-shadow: 6px 6px 12px #c5c5c5,
                       -6px -6px 12px #ffffff;
          }
          
          .button2:active {
            color: #666;
            box-shadow: inset 4px 4px 12px #c5c5c5,
                       inset -4px -4px 12px #ffffff;
          }
          
          .button2:before {
            content: "";
            position: absolute;
            left: 50%;
            transform: translateX(-50%) scaleY(1) scaleX(1.25);
            top: 100%;
            width: 140%;
            height: 180%;
            background-color: rgba(0, 0, 0, 0.05);
            border-radius: 50%;
            display: block;
            transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
            z-index: -1;
          }
          
          .button2:after {
            content: "";
            position: absolute;
            left: 55%;
            transform: translateX(-50%) scaleY(1) scaleX(1.45);
            top: 180%;
            width: 160%;
            height: 190%;
            background-color: #0f73ff;
            border-radius: 50%;
            display: block;
            transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
            z-index: -1;
          }
          
          .button2:hover {
            color: #ffffff;
            border: 1px solid #0f73ff;
          }
          
          .button2:hover:before {
            top: -35%;
            background-color: #0f73ff;
            transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
          }
          
          .button2:hover:after {
            top: -45%;
            background-color: #0f73ff;
            transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
          }
          

        .dons-space p {
            text-align: center;
            font-style: italic;
        }
        .dons-space div {
            display: flex;
            flex-direction: column;
        }
.jauge-dons {
    border-bottom: #333 solid 1px;
    padding-bottom: 50px;
    margin-bottom: 100px;
}
.progress-widget {
    width: 70%;
    height: 30px;
    background-color: #eee;
  }
  .progress-bar {
    height: 100%;
    background: linear-gradient(-45deg, #f89b29 0%, #ff0f7b 100% );
    width: 0%; /* Changer en fonction du solde */
  }
  .progress-bar p {
    margin-left: 105%;
    padding-top: 7px;
}

/* Media querie */
@media screen and (max-width: 1224px) {

    /* Image(cible) en bas */
    .dons-space {
        flex-direction: column;
    }
    .dons-space img {
        margin-top: 50px;
    }
}
@media screen and (max-width: 800px) {

    /* width 80% */
    .width-60 {
        width: 80%;
    }
    .progress-widget {
        width: 100%;
      }
}