.product-buy-buttons {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
.product-buy-buttons small {
  display: block;
  margin-top: 0.5em;
  margin-bottom: 1em;
  line-height: 1.4;
}
.product-buy-buttons__item {
  margin: 0;
}
.product-buy-buttons__item.-cart {
  margin-bottom: 30px;
}
.product-buy-buttons__button01, .product-buy-buttons__button02 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background-repeat: no-repeat;
  border-radius: 5px;
  letter-spacing: 0.2em;
  color: #fff !important;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
  text-decoration: none !important;
}
.product-buy-buttons__button01:hover, .product-buy-buttons__button02:hover {
  opacity: 0.7;
}
.product-buy-buttons__button01.-disabled, .product-buy-buttons__button02.-disabled {
  position: relative;
  overflow: hidden;
  cursor: default;
}
.product-buy-buttons__button01.-disabled::before, .product-buy-buttons__button02.-disabled::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(125, 125, 125, 0.8);
}
.product-buy-buttons__button01.-disabled:hover, .product-buy-buttons__button02.-disabled:hover {
  opacity: 1 !important;
}
.product-buy-buttons__button01 {
  background-color: #020203;
  background-image: url("../img/icon-cart.svg"), url("../img/icon-plus.svg");
  background-position: 16px center, right 22px center;
  background-size: 32px auto, 18px auto;
}
.product-buy-buttons__button02 {
  background-color: #76797a;
  background-image: url("../img/icon-external.svg");
  background-position: right 21px center;
  background-size: 19px auto;
}
@media (max-width: 47.9375rem) {
  .product-buy-buttons__item {
    font-size: 1.2rem;
  }
  .product-buy-buttons__item small {
    font-size: 1rem;
  }
  .product-buy-buttons__button01, .product-buy-buttons__button02 {
    height: 39px;
    font-size: 1.2rem;
  }
  .product-buy-buttons__button01 {
    background-size: 22px auto, 18px auto;
  }
}
@media (min-width: 48rem) {
  .product-buy-buttons {
    margin-top: 35px;
    max-width: 306px;
  }
  .product-buy-buttons__item small {
    font-size: 1rem;
  }
  .product-buy-buttons__button01, .product-buy-buttons__button02 {
    width: 306px;
    height: 54px;
    font-size: 1.6rem;
  }
  .product-buy-buttons__button01 a:hover, .product-buy-buttons__button02 a:hover {
    text-decoration: none;
  }
}