.quick-checkout-button {
  display: block;
}

.quick-checkout-button__button {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: var(--color-white);
  font-size: 14px;
  font-weight: var(--font-weight-regular);
  padding: 10px 32px;
  border-radius: 10px;
  border: none;
  width: 100%;
  white-space: nowrap;
  background-color: #03825A;
  transition: background-color 0.2s ease-in-out;
}

.quick-checkout-button__button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.quick-checkout-button__button:hover:not(:disabled) {
  background-color: #026648;
}

.quick-checkout-button__icon {
  width: 20px;
  height: 20px;
}

.quick-checkout-button__text {
  line-height: 1;
}

@media (max-width: 768px) {
  .quick-checkout-button__button {
    padding: 10px 16px;
    font-size: 13px;
  }
}
