.goodness-donations {
  align-items: center;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  background: #f2f2f2;
  position: relative;
  border-radius: 10px;
}

.goodness-slider-wrapper {
  display: flex;
  overflow: hidden;
  width: 100%;
  max-height: 64px;
}

.goodness-donations .asterisk {
  color: #969696;
}

.goodness-slider-wrapper > .goodness-slider-inner {
  transition: all 1s ease-in-out;
  width: 100%;
  padding-left: 24px;
}

.goodness-slider-wrapper > .goodness-slider-inner > .goodness-slide {
  min-height: 100%;
  display: flex;
  padding-top: 12px;
  padding-bottom: 12px;
}

.goodness-slider-wrapper > .goodness-slider-inner > .goodness-slide .goodness-slide-text {
  color: #3e3331;
  font-size: 13px;
  font-family: 'Inter';
  line-height: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: 12px;
}

.goodness-slider-wrapper
  > .goodness-slider-inner
  > .slide
  .goodness-slide-text
  > .goodness-slide-text-title {
  font-weight: 590;
}

.goodness-slider-wrapper
  > .goodness-slider-inner
  > .goodness-slide
  .goodness-slide-text
  > .goodness-slide-text-content {
  font-weight: 490;
}

.slider-buttons-wrapper {
  display: flex;
  position: absolute;
  flex-direction: column;
  left: 10px;
}

.slider-buttons-wrapper > button {
  all: unset;
  background: #d9d9d9;
  cursor: pointer;
  margin: 3px 0;
  position: relative;
  user-select: none;
  border-radius: 100%;
  height: 6px;
  width: 6px;
}

.slider-buttons-wrapper > button.active {
  background: #05535c;
}

.text-bold {
  font-weight: bold;
}

#goodness-info {
  position: absolute;
  right: 10px;
  top: 12px;
  cursor: pointer;
  height: 18px;
}

/* The Modal */
.goodness-modal {
  font-family: 'Inter';
  display: none;
  position: fixed;
  z-index: 1000;
  padding-top: 10%;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
  padding-left: 20px;
  padding-right: 20px;
}

/* Modal Content */
.goodness-modal-content {
  color: #000000;
  background: #f9f9f9;
  border-radius: 20px;
  position: relative;
  margin: auto;
  padding: 30px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  -webkit-animation-name: animatetop;
  -webkit-animation-duration: 0.4s;
  max-width: fit-content;
  animation-name: animatetop;
  animation-duration: 0.4s;
}

/* Add Animation */
@-webkit-keyframes animatetop {
  from {
    top: -300px;
    opacity: 0;
  }
  to {
    top: 0;
    opacity: 1;
  }
}

@keyframes animatetop {
  from {
    top: -300px;
    opacity: 0;
  }
  to {
    top: 0;
    opacity: 1;
  }
}

.goodness-modal-header {
  position: relative;
  text-align: center;
}

.goodness-modal-header .goodness-modal-close {
  color: #5c5f62;
  font-size: 28px;
  cursor: pointer;
  text-decoration: none;
  position: absolute;
  right: 0;
  line-height: 17px;
  top: 50%;
  transform: translate(0, -50%);
}

.goodness-modal-header .modal-title {
  font-size: 22px;
  font-weight: 600;
  font-family: 'Inter';
}

.goodness-modal-body {
  padding-top: 24px;
  padding-bottom: 25px;
  font-size: 16px;
  line-height: 25.6px;
  max-width: 310px;
}

.goodness-modal-footer {
  text-align: center;
}

#powered-by-goodness {
  margin-top: 18px;
  line-height: 0;
}

.goodness-modal-body .we-are-goodness-link {
  color: #000000;
  margin-left: 4px;
  margin-right: 4px;
}

.goodness-modal-body .we-are-goodness-link.end-of-sentence {
  margin-right: 0px;
}

#thank-hands {
  margin-left: 4px;
}

#thank-hands .thank-hands-icon {
  margin-bottom: -1px;
}

#goodness-donation-amount {
  margin-left: 4px;
  margin-right: 4px;
}

.display-block {
  display: block;
}