input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  margin-left: 5px;
}

#donation-form {
  display: flex;
  flex-direction: column;
}

/* #dono-bg {
  background-image: url('../images/voorpagina3.jpeg');
  background-size: contain;
  background-position: center top;
  background-repeat: no-repeat;
  width: 100%;
  padding: 20px;
  margin: 0;
} */

.donation-amounts {
  display: flex;
  justify-content: center;
  align-items: center;
}

.donation {
  display: flex;
  align-items: center;
  margin: 2px 0;
  border: 1px solid transparent;
  background-color: transparent;
  padding: 2px;
  width: 100%;
  justify-content: center;
}

.donation:hover .donation-price
{
  background: #95C11F;
  border: #95C11F;
  color: white !important;
  transition: box-shadow .3s;
  text-decoration: none;
}
.donation:focus .donation-price,
.donation.active .donation-price {
  background: #006633;
  color: white !important;
  transition: box-shadow .3s;
  text-decoration: none;
}

.donation-price {
  display: flex;
  min-width: 80px;
  max-width: 126px;
  flex-grow: 1;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  border: 4px solid #006633;
  justify-content: center;
  align-items: center;
  font-size: 200%;
  background: white;
  color: #006633 !important;
}

.donation-prices-div {

  display: flex;
  flex-direction: row;
  justify-content: space-evenly;

}

.d-flex {
  display: flex;
}

.call-to-action-text {
  color: #f07604;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-weight: 800;
  text-align: left;
  font-size: 4.8em;
  margin: 0;
  text-align: center;
  height: 50vw;
  text-shadow: 2px 2px 2px rgba(120, 7, 0, 1);
}

/* Extra small devices (portrait phones, less than 576px)
No media query for `xs` since this is the default in Bootstrap */
/* Small devices (landscape phones, 576px and up) */

@media (max-width: 575.98px) {
  .call-to-action-text {
    font-size: 2em;
  }
}

@media (max-width: 767.98px) {
  #dono-bg {
    flex-direction: column;
    padding: 0px;
  }
}

@media (min-width: 576px) and (max-width: 767.98px) {
  .call-to-action-text {
    font-size: 2.8em;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .call-to-action-text {
    font-size: 3.4em;
  }

  #dono-bg {
    background-size: cover;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .call-to-action-text {
    font-size: 5em;
  }

  #dono-bg {
    background-size: cover;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .call-to-action-text {
    font-size: 5em;
  }

  #dono-bg {
    background-size: cover;
  }
}

.donation-crowd {
  width: 32% !important;
}

.donation-price:focus {
  text-decoration: none !important;
  background: #95C11F;
  color: white !important;
}

.donation-description {
  text-align: justify;
  display: flex;
  align-items: center;
  margin: 0 20px 0 20px;
  font-size: medium;
}

.btn-doneer {
  background-color: #f07604;
  color: white;
  border: none;
  border-radius: 15px;
  padding: 10px;
  width: 100% !important;
  font-size: large;
}

.btn-doneer:disabled,
.btn-doneer:disabled:hover {
  background-color: grey;
  color: white;
  border: none;
  border-radius: 15px;
  padding: 10px;
  width: 100% !important;
  font-size: large;
}

.project-description {
  font-size: large;
  text-align: center;
}

.btn-doneer:hover {
  background-color: #cc6200;
}

.error {
  color: red;
  background-color: #fee;
  border-radius: 10px;
  text-align: center;
  padding: 10px;
  margin-bottom: 20px;
}

.error-border {
  border: 1px solid red !important;
  background: #ffecf0;
}

.donation-wrapper {
  padding: 10px 20px 20px 20px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  background: white;
  border-radius: 20px;
  margin-bottom: 10px;
}

.donation-line {
  margin-top: 1px;
  margin-bottom: 1px;
  border: none;
  border-top: 2px solid #acdbe2;
  color: #fff;
  background-color: #fff;
  width: 70%;
  margin-right: 5%;
}

.sum-donations {
  font-size: xx-large;
  text-align: center;
}

.progress-bar {
  background-color: #008EA5 !important;
}

/* TOGGLE SWITCH STYLES */
.toggle {
  cursor: pointer;
  display: inline-block;
}

.toggle-switch {
  display: inline-block;
  background: #ccc;
  border-radius: 16px;
  width: 58px;
  height: 32px;
  position: relative;
  vertical-align: middle;
  transition: background 0.25s;
}

.toggle-switch:before,
.toggle-switch:after {
  content: "";
}

.toggle-switch:before {
  display: block;
  background: linear-gradient(to bottom, #fff 0%, #eee 100%);
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.25);
  width: 24px;
  height: 24px;
  position: absolute;
  top: 4px;
  left: 4px;
  transition: left 0.25s;
}

.toggle:hover .toggle-switch:before {
  background: linear-gradient(to bottom, #fff 0%, #fff 100%);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.5);
}

.toggle-checkbox:checked+.toggle-switch {
  background: #86ad1b;
}

.toggle-checkbox:checked+.toggle-switch:before {
  left: 30px;
}

.toggle-checkbox {
  position: absolute;
  visibility: hidden;
}

.toggle-label {
  margin-left: 5px;
  position: relative;
  top: 2px;
}

.ProgressBar {
  position: relative;
  width: 100%;
  height: 3em;
  background-color: #008fa553;
  border-radius: 1.5em;
  color: white;
}

/*progress styling*/
.ProgressBar::before {
  content: attr(Dlabel);
  align-content: right;
  display: flex;
  align-items: center;
  position: absolute;
  left: .5em;
  top: .5em;
  bottom: .5em;
  width: calc(var(--width, 0) * 1%);
  min-width: 50px;
  max-width: calc(100% - 1em);
  background-color: #008EA5;
  border-radius: 1em;
  padding: 1em;
}

.update-container {
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border: #008EA5 1px solid;
  padding: 10px;
}

.update-container p {
  margin-bottom: 0px;
}

.md-grid-container {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-gap: 10px;
  margin-bottom: 10px;
}

.md-grid-item h1,
.md-grid-item h2,
.md-grid-item h3,
.md-grid-item h4 {
  color: var(--blue) !important;
}

.md-grid-item span {
  margin-right: 10px;
  color: var(--blue) !important;
}

.md-grid-item {
  background-color: #d8edf1;
  padding: 10px 20px 10px 20px;
  text-align: justify;
}

.md-grid-item>img {
  border-radius: 20px;
}

.donation:hover.donation-kitten {
  border-radius: 120px;
}

a.help:focus {
  outline: none;
}