.subscriptions-template {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
  padding: 0 10%;
  max-width: 1400px;

  & h3 {
    color: #000;
    font-family: Poppins, sans-serif;
  }

  & button {
    border: 1px solid #bfbfbf;
    background-color: inherit;
    font-family: Poppins, sans-serif;
    padding: 24px 28px;

    &#add-to-cart-button {
      color: #fff;
      background-color: #cc2737;
    }

    &:hover {
      cursor: pointer;
      border: 1px solid #cca541;
    }

    &.active {
      background-color: #cca541;
      color: #fff;
      transition: .2s all ease-in-out;
    }
  }

  & .collection-button {
    display: flex;
    align-items: center;

    > span {
      font-size: 1.875rem;
      line-height: 1.5;
      margin-bottom: 0;
      margin-right: 12px;
      display: block;
    }

    & div {
      text-align: left;

      & span:first-child {
        font-weight: bold;
      }

      & span:nth-child(2) {
        font-size: 1.25rem;
        display: block;
      }
    }
  }

  & .subscription-option-type {
    display: flex;
    flex-direction: column;
    text-align: left;

    & span:first-child {
      font-weight: bold;
      font-size: 2rem;
    }

    & span:nth-child(2) {
      margin-bottom: 15px;
    }

    & span:not(:first-child)  {
      font-size: 1.5rem;
    }
  }

  & .checkout {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    width: 100%;
    padding: 60px 0;

    & button {
      width: 50%;
      max-width: 255px;
      margin-left: auto;
      font-size: 1.6rem;
      border: none;
    }

    & .subscriptions--review_details {
      text-align: left;

      & ul {
        list-style: none;
        margin: 0;
        padding: 0;

        & li {
          color: #111111;
    
          &:first-of-type {
            font-weight: bold;
            font-size: 3.2rem;
          }
        }
      }
    }

    & .wine-quantity, & .wine-type, & .wine-quality {
      color: #cca541;
    }
  }
}

@media screen and (max-width: 768px) {
  .subscriptions-template .checkout {
    flex-direction: column;
    padding: 48px 0;
  }
  .subscriptions-template .checkout .subscriptions--review_details {
    display: block;
    width: 100%;
  }
  .subscriptions-template .checkout button {
    width: 100%;
    max-width: none;
    margin-top: 24px;
  }
}
