.donation-cart {
  padding-top: 15px;

  &__hide {
    display: none;
  }

  &__cost {
    font-weight: 500;
    font-size: .875rem;
    line-height: 1;
    margin-bottom: 20px;
  }

  &__price,
  &__price-value {
    display: inline-block;
  }

  &__description {
    font-weight: 700;
    font-size: .875rem;
    margin-bottom: 5px;
  }

  &__price {
    padding-right: 25px;

    &-value {
      font-size: 0;
    }
  }

  &__currency,
  &__value {
    font-size: .875rem;
  }

  &__holder {
    display: flex;
    flex-wrap: wrap;
  }

  &__btn {
    width: calc(50% - 10px);
    margin-bottom: 15px;

    &:nth-of-type(odd) {
      margin-right: 10px;
    }

    &:nth-of-type(even) {
      margin-left: 10px;
    }

    &.btn-secondary {
      color: $black;
      border-color: $gray;

      &:hover {
        color: $white;
        border-color: $blue;
      }
    }

    &.btn-selected {
      color: $white;
      border-color: $blue;
      background: $blue;
      pointer-events: none;

    }
  }

  .definition.definition:last-of-type {
    margin-bottom: 15px;
  }
}

@include media-breakpoint-up(md) {
  .donation-cart {
    justify-content: space-between;
    padding-top: 30px;

    &:not(.donation-cart__hide) {
      display: flex;
    }

    &__definition {
      max-width: 50%;
    }

    &__details {
      @include make-col(6);
    }

    &__definition {
      padding-right: 15px;
    }

    &__btn {
      width: 72px;
      margin-bottom: 0;

      &:nth-of-type(odd),
      &:nth-of-type(even) {
        margin-left: 0;
        margin-right: 15px;
      }

      &:last-of-type {
        margin-right: 0;
      }
    }
  }
}

@include media-breakpoint-only(lg) {
  .donation-cart {
    &__btn {
      width: 62px;
    }
  }
}
