/**
 * store.css
 * Stripe Payments Demo. Created by Romain Huet (@romainhuet).
 */
/*
* {
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: none;
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
    Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
  font-size: 15px;
  line-height: 1.4em;
  color: #525f7f;
}

body {
  display: flex;
  flex-direction: row;
  align-items: center;
  background: #f8fbfd;
}


#main {
  width: 100%;
  height: 100vh;
  text-align: center;
  transition: width 0.3s ease-in-out;
}

#main.checkout:not(.success):not(.error) {
  width: calc(100% - 450px);
}


.header a.shop {
  margin: 30px;
  font-size: 13px;
  font-weight: 500;
  color: #666ee8;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  text-decoration: none;
}


.header a:hover {
  text-decoration: underline;
}
*/

/* Checkout */
/*
#checkout {
  max-width: 480px;
  margin: 0 auto;
  padding: 30px 0;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s, opacity 0.5s linear 0.5s;
}

#main.checkout #checkout {
  visibility: visible;
  opacity: 1;
}
*/

.checkout section {
  display: flex;
  flex-direction: column;
  position: relative;
  text-align: left;
  padding: 0 0;
}

.checkout h1 {
  margin: 0 0 20px 0;
  font-size: 20px;
  font-weight: 500;
}

.checkout h2 {
  margin: 15px 0;
  color: #32325d;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  font-size: 13px;
  font-weight: 500;
}

/* Payment Request */

#payment-request {
  visibility: hidden;
  opacity: 0;
  min-height: 100px;
  padding: 20px 0;
  transition: visibility 0s, opacity 0.3s ease-in;
}

#payment-request.visible {
  visibility: visible;
  opacity: 1;
}

#payment-request-button {  
    max-width: 50%;
    margin: auto;
}

#payment-form {

}

.payment-option {
  margin: 0 -30px;
  padding: 20px 30px 30px;
  border-radius: 4px;
  border: 1px solid #cacaca;
}

/* Form */

fieldset {
  margin-bottom: 20px;
  background: #fff;
  box-shadow: 0 1px 3px 0 rgba(50, 50, 93, 0.15),
    0 4px 6px 0 rgba(112, 157, 199, 0.15);
  border-radius: 4px;
  border: none;
  font-size: 20px;
}

fieldset label {
  position: relative;
  display: flex;
  flex-direction: row;
  height: 42px;
  padding: 10px 0;
  align-items: center;
  justify-content: center;
  color: #8898aa;
  font-weight: 400;
}

fieldset label:not(:last-child) {
  border-bottom: 1px solid #f0f5fa;
}

fieldset label.state {
  display: inline-flex;
  width: 74%;
}

fieldset:not(.with-state) label.state {
  display: none;
}

fieldset label.zip {
  display: inline-flex;
  width: 25%;
  padding-right: 60px;
}

fieldset:not(.with-state) label.zip {
  width: 100%;
}

fieldset label span {
  min-width: 125px;
  padding: 0 15px;
  text-align: right;
}

fieldset .redirect label span {
  width: 100%;
  text-align: center;
}

.payment-instruction {
  display: inline-table;
  margin-top: -32px;
  padding: 0 5px;
  text-align: center;
  background: #eee;
}

p.instruction {
  display: inline-table;
  margin-top: -32px;
  padding: 0 5px;
  text-align: center;
  background: #eee;
}

p.tip {
  margin: -10px auto 10px;
  padding: 5px 0 5px 30px;
  font-size: 14px;
  background: url(/static/img/tip.svg) left center no-repeat;
}

span#generate {
  cursor: pointer;
  color: #525f7f;
  text-decoration: underline;
}
span#generate:hover {
  text-decoration: none;
}

.field {
  flex: 1;
  padding: 0 15px;
  background: transparent;
  font-weight: 400;
  color: #31325f;
  outline: none;
  cursor: text;
}

fieldset .select::after {
  content: '';
  position: absolute;
  width: 9px;
  height: 5px;
  right: 20px;
  top: 50%;
  margin-top: -2px;
  background-image: url(/static/img/dropdown.svg);
  pointer-events: none;
}

.checkout input {
  flex: 1;
  border-style: solid;
  outline: none;
  color: #313b3f;
}

.checkout .card-header {
  padding: 0;
}

select {
  flex: 1;
  border-style: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  color: #313b3f;
  cursor: pointer;
  background: transparent;
}

select:focus {
  color: #666ee8;
}

input:-webkit-autofill,
select:-webkit-autofill {
  -webkit-text-fill-color: #666ee8;
  transition: background-color 100000000s;
  -webkit-animation: 1ms void-animation-out 1s;
}

.StripeElement--webkit-autofill {
  background: transparent !important;
}

#card-element {
  margin-top: -1px;
}

#ideal-bank-element {
  padding: 0;
}

.checkout button {
  width: 100%;
  height: 3em;
}

.checkout.btn-link:hover {
    color: inherit;
    text-decoration: underline;
    background-color: transparent;
    border-color: transparent;
}

/*
button {
  display: block;
  background: #666ee8;
  color: #fff;
  box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
  border-radius: 4px;
  border: 0;
  font-weight: 700;
  width: 100%;
  height: 40px;
  outline: none;
  cursor: pointer;
  transition: all 0.15s ease;
}
*/

.payment-button:focus {
  background: #555abf;
}

button:hover {
  transform: translateY(-1px);
  box-shadow: 0 7px 14px 0 rgba(50, 50, 93, 0.1),
    0 3px 6px 0 rgba(0, 0, 0, 0.08);
}

/* button:active { */
/*   background: #43458b; */
/* } */


/*
.ship-country {
  display: flex;
  align-items: center;
}

.ship-country select {
  margin: 0 -15px 0 -30px;
  padding: 0 15px 0 30px;
}

.shipping-country option::before,
.ship-country::before {
  display: inline-flex;
  content: '';
  width: 21px;
  height: 15px;
  background: url(/static/img/flags.svg);
  background-position: -1000px -1000px;
  background-repeat: no-repeat;
  margin-right: 10px;
}

.ship-country.AD::before {
  background-position: -10px -10px;
}

.ship-country.AE::before {
  background-position: -41px -10px;
}

.ship-country.AG::before {
  background-position: -72px -10px;
}

.ship-country.AM::before {
  background-position: -103px -10px;
}

.ship-country.AR::before {
  background-position: -134px -10px;
}

.ship-country.AT::before {
  background-position: -165px -10px;
}

.ship-country.AU::before {
  background-position: -196px -10px;
}

.ship-country.BE::before {
  background-position: -227px -10px;
}

.ship-country.BF::before {
  background-position: -258px -10px;
}

.ship-country.BG::before {
  background-position: -289px -10px;
}

.ship-country.BO::before {
  background-position: -320px -10px;
}

.ship-country.BR::before {
  background-position: -351px -10px;
}

.ship-country.CA::before {
  background-position: -382px -10px;
}

.ship-country.CD::before {
  background-position: -413px -10px;
}

.ship-country.CG::before {
  background-position: -444px -10px;
}

.ship-country.CH::before {
  background-position: -475px -10px;
}

.ship-country.CL::before {
  background-position: -506px -10px;
}

.ship-country.CM::before {
  background-position: -10px -35px;
}

.ship-country.CN::before {
  background-position: -41px -35px;
}

.ship-country.CO::before {
  background-position: -72px -35px;
}

.ship-country.CR::before {
  background-position: -103px -35px;
}

.ship-country.CZ::before {
  background-position: -134px -35px;
}

.ship-country.DE::before {
  background-position: -165px -35px;
}

.ship-country.DJ::before {
  background-position: -196px -35px;
}

.ship-country.DK::before {
  background-position: -227px -35px;
}

.ship-country.DZ::before {
  background-position: -258px -35px;
}

.ship-country.EC::before {
  background-position: -289px -35px;
}

.ship-country.EE::before {
  background-position: -320px -35px;
}

.ship-country.EG::before {
  background-position: -351px -35px;
}

.ship-country.ES::before {
  background-position: -382px -35px;
}

.ship-country.EU::before {
  background-position: -413px -35px;
}

.ship-country.FI::before {
  background-position: -444px -35px;
}

.ship-country.FO::before {
  background-position: -475px -35px;
}

.ship-country.FR::before {
  background-position: -506px -35px;
}

.ship-country.GA::before {
  background-position: -10px -60px;
}

.ship-country.GB::before {
  background-position: -41px -60px;
}

.ship-country.GL::before {
  background-position: -72px -60px;
}

.ship-country.GM::before {
  background-position: -103px -60px;
}

.ship-country.GR::before {
  background-position: -134px -60px;
}

.ship-country.GT::before {
  background-position: -165px -60px;
}

.ship-country.GU::before {
  background-position: -196px -60px;
}

.ship-country.HK::before {
  background-position: -227px -60px;
}

.ship-country.HN::before {
  background-position: -258px -60px;
}

.ship-country.HT::before {
  background-position: -289px -60px;
}

.ship-country.HU::before {
  background-position: -320px -60px;
}

.ship-country.ID::before {
  background-position: -351px -60px;
}

.ship-country.IE::before {
  background-position: -382px -60px;
}

.ship-country.IL::before {
  background-position: -413px -60px;
}

.ship-country.IM::before {
  background-position: -444px -60px;
}

.ship-country.IN::before {
  background-position: -475px -60px;
}

.ship-country.IQ::before {
  background-position: -506px -60px;
}

.ship-country.IR::before {
  background-position: -10px -85px;
}

.ship-country.IS::before {
  background-position: -41px -85px;
}

.ship-country.IT::before {
  background-position: -72px -85px;
}

.ship-country.JE::before {
  background-position: -103px -85px;
}

.ship-country.JM::before {
  background-position: -134px -85px;
}

.ship-country.JO::before {
  background-position: -165px -85px;
}

.ship-country.JP::before {
  background-position: -196px -85px;
}

.ship-country.KG::before {
  background-position: -227px -85px;
}

.ship-country.KN::before {
  background-position: -258px -85px;
}

.ship-country.KP::before {
  background-position: -289px -85px;
}

.ship-country.KR::before {
  background-position: -320px -85px;
}

.ship-country.KW::before {
  background-position: -351px -85px;
}

.ship-country.KZ::before {
  background-position: -382px -85px;
}

.ship-country.LA::before {
  background-position: -413px -85px;
}

.ship-country.LB::before {
  background-position: -444px -85px;
}

.ship-country.LC::before {
  background-position: -475px -85px;
}

.ship-country.LS::before {
  background-position: -506px -85px;
}

.ship-country.LT::before {
  background-position: -10px -110px;
}

.ship-country.LU::before {
  background-position: -41px -110px;
}

.ship-country.LV::before {
  background-position: -72px -110px;
}

.ship-country.MA::before {
  background-position: -103px -110px;
}

.ship-country.MG::before {
  background-position: -134px -110px;
}

.ship-country.MK::before {
  background-position: -165px -110px;
}

.ship-country.ML::before {
  background-position: -196px -110px;
}

.ship-country.MM::before {
  background-position: -227px -110px;
}

.ship-country.MT::before {
  background-position: -258px -110px;
}

.ship-country.MX::before {
  background-position: -289px -110px;
}

[ship-country="MX"]::before {
  background-position: -289px -110px;
}

.ship-country.MY::before {
  background-position: -320px -110px;
}

.ship-country.NA::before {
  background-position: -351px -110px;
}

.ship-country.NE::before {
  background-position: -382px -110px;
}

.ship-country.NG::before {
  background-position: -413px -110px;
}

.ship-country.NI::before {
  background-position: -444px -110px;
}

.ship-country.NL::before {
  background-position: -475px -110px;
}

.ship-country.NO::before {
  background-position: -506px -110px;
}

.ship-country.NZ::before {
  background-position: -10px -135px;
}

.ship-country.OM::before {
  background-position: -41px -135px;
}

.ship-country.PA::before {
  background-position: -72px -135px;
}

.ship-country.PE::before {
  background-position: -103px -135px;
}

.ship-country.PG::before {
  background-position: -134px -135px;
}

.ship-country.PH::before {
  background-position: -165px -135px;
}

.ship-country.PK::before {
  background-position: -196px -135px;
}

.ship-country.PL::before {
  background-position: -227px -135px;
}

.ship-country.PR::before {
  background-position: -258px -135px;
}

.ship-country.PS::before {
  background-position: -289px -135px;
}

.ship-country.PT::before {
  background-position: -320px -135px;
}

.ship-country.PY::before {
  background-position: -351px -135px;
}

.ship-country.QA::before {
  background-position: -382px -135px;
}

.ship-country.RO::before {
  background-position: -444px -135px;
}

.ship-country.RU::before {
  background-position: -475px -135px;
}

.ship-country.RW::before {
  background-position: -506px -135px;
}

.ship-country.SA::before {
  background-position: -10px -160px;
}

.ship-country.SE::before {
  background-position: -41px -160px;
}

.ship-country.SG::before {
  background-position: -72px -160px;
}

.ship-country.SI::before {
  background-position: -103px -160px;
}

.ship-country.SK::before {
  background-position: -134px -160px;
}

.ship-country.SL::before {
  background-position: -165px -160px;
}

.ship-country.SN::before {
  background-position: -196px -160px;
}

.ship-country.SO::before {
  background-position: -227px -160px;
}

.ship-country.SV::before {
  background-position: -258px -160px;
}

.ship-country.TD::before {
  background-position: -289px -160px;
}

.ship-country.TH::before {
  background-position: -320px -160px;
}

.ship-country.TJ::before {
  background-position: -351px -160px;
}

.ship-country.TL::before {
  background-position: -382px -160px;
}

.ship-country.TR::before {
  background-position: -413px -160px;
}

.ship-country.TW::before {
  background-position: -444px -160px;
}

.ship-country.TZ::before {
  background-position: -475px -160px;
}

.ship-country.UA::before {
  background-position: -506px -160px;
}

.ship-country.US::before {
  background-position: -10px -185px;
}

.shipping-country option[value=US] {
    background-position: -10px -185px;
}

.ship-country.UY::before {
  background-position: -41px -185px;
}

.ship-country.VE::before {
  background-position: -72px -185px;
}

.ship-country.VN::before {
  background-position: -103px -185px;
}

.ship-country.XX::before {
  background-position: -134px -185px;
}

.ship-country.YE::before {
  background-position: -165px -185px;
}

.ship-country.ZA::before {
  background-position: -196px -185px;
}

*/

/* Payment Methods */

#payment-methods {
  margin: 0 0 20px;
  border-bottom: 2px solid #e8e8fb;
}

#payment-methods li {
  display: none;
}

#payment-methods li.visible {
  display: inline-block;
  margin: 0 20px 0 0;
  list-style: none;
}

#payment-methods input {
  display: none;
}

#payment-methods label {
  display: flex;
  flex: 1;
  cursor: pointer;
}

#payment-methods input + label {
  position: relative;
  padding: 5px 0;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 13px;
}

#payment-methods label::before {
  content: '';
  position: absolute;
  width: 100%;
  bottom: -2px;
  left: 0;
  border-bottom: 2px solid #6772e5;
  opacity: 0;
  transform: scaleX(0);
  transition: all 0.25s ease-in-out;
}

#payment-methods label:hover {
  color: #6772e5;
  cursor: pointer;
}

#payment-methods input:checked + label {
  color: #6772e5;
}

#payment-methods label:hover::before,
#payment-methods input:checked + label::before {
  opacity: 1;
  transform: scaleX(1);
}

#payment-methods,
.payment-info {
  display: none;
}

.payment-info:not(.card) {
  margin-bottom: 15px;
}

.payment-info.ideal {
  margin-bottom: 0;
}

#payment-methods.visible,
.payment-info.visible {
  display: block;
}

.payment-info.card.visible,
.payment-info.sepa_debit.visible {
  text-align: center;
}

.payment-info p.notice {
  font-size: 14px;
  color: #8898aa;
  text-align: left;
}

#wechat-qrcode img {
  margin: 0 auto;
}

.element-errors {
  display: inline-flex;
  height: 20px;
  margin: 15px auto 0;
  padding-left: 20px;
  color: #e25950;
  opacity: 0;
  transform: translateY(10px);
  transition-property: opacity, transform;
  transition-duration: 0.35s;
  transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
  background: url(/static/img/error.svg) center left no-repeat;
  background-size: 15px 15px;
}

.element-errors.visible {
  opacity: 1;
  transform: none;
}

#iban-errors {
  margin-top: -20px;
}

/* Order Summary */

#summary {
  position: fixed;
  top: 0;
  right: -450px;
  bottom: 0;
  width: 450px;
  overflow: auto;
  height: 100%;
  background: #fff;
  box-shadow: 0 2px 19px 4px rgba(0, 0, 0, 0.04);
  transition: right 0.3s ease-in-out;
}

#main.checkout:not(.success):not(.error) + #summary {
  right: 0;
}

#summary .header {
  background: #fff;
}

#summary h1 {
  margin: 0 30px;
  line-height: 80px;
  font-weight: 400;
}

#summary p {
  font-size: 16px;
  font-weight: 400;
  margin-top: 10px;
}

#summary .discount p {
  margin-top: 0;
}

#summary .line-item {
  display: flex;
  flex-direction: row;
  padding: 30px 30px 0 30px;
}

#summary .line-item .image {
  display: block;
  width: 80px;
  height: 80px;
  margin-right: 15px;
  background: #f6f9fc;
  border-radius: 3px;
}

#summary .line-item .label {
  flex: 1;
  text-align: left;
}

#summary .line-item .product {
  color: #424770;
}

#summary .line-item .sku {
  font-size: 14px;
  color: #8898aa;
}

#summary .line-item .count,
#summary .line-item .price {
  font-size: 14px;
  padding-left: 10px;
  align-self: right;
  text-align: right;
  line-height: 24px;
}

#summary .line-item .count {
  color: #8898aa;
}

#summary .line-item .price {
  color: #8ba4fe;
  font-weight: bold;
}

#summary .line-item.subtotal {
  margin-top: 30px;
  margin-bottom: 0;
  padding-top: 10px;
  border-top: 1px solid #f3f3ff;
}

#summary .line-item.shipping {
  padding-top: 0;
}

#summary .line-item.total {
  margin-top: 15px;
  margin-bottom: 30px;
  padding-top: 15px;
  font-size: 21px;
  border-top: 1px solid #f3f3ff;
}

#summary .line-item.total .label,
#summary .line-item.total .price {
  color: #424770;
  font-size: 24px;
  font-weight: 400;
  line-height: inherit;
}

#demo {
  padding: 15px;
  margin: -15px -15px 0;
  background: #f6f9fc;
  border-radius: 5px;
}

#demo p.label {
  margin: 0 0 10px;
  color: #666ee8;
}

#demo .note {
  display: block;
  margin: 10px 0 0;
  font-size: 14px;
}

#demo p.note a,
#demo p.note em {
  font-size: 14px;
}

#demo p.note a:hover {
  text-decoration: none;
}

.card-number {
  padding-left: 8px;
  white-space: nowrap;
  font-family: Source Code Pro, monospace;
  color: #0d2b3e;
  font-weight: 500;
}

.card-number span {
  display: inline-block;
  width: 8px;
}

/* Order Confirmation */

#confirmation {
  visibility: hidden;
  opacity: 0;
  background: #f8fbfd;
}

#main.success #confirmation,
#main.error #confirmation {
  visibility: visible;
  opacity: 1;
}

#main.success #order,
#main.error #order {
  visibility: visible;
  opacity: 0;
}

#confirmation .status {
  box-shadow: 0 1px 3px 0 rgba(50, 50, 93, 0.15);
  border-radius: 6px;
}

#confirmation .status.processing {
  display: none;
}

#confirmation .status.success {
  display: none;
}

#confirmation .status.receiver {
  display: none;
}

#confirmation .status.error {
  display: none;
}

#confirmation .status p {
  margin: 0 0 15px;
}

#confirmation .status li {
  margin-bottom: 5px;
  list-style: none;
}

#main.success:not(.processing) #confirmation .status.processing,
#main.success:not(.receiver) #confirmation .status.receiver {
  display: none;
}

#main.processing #confirmation .status.success,
#main.receiver #confirmation .status.success {
  display: none;
}

#main.error #confirmation .status.success,
#main.error #confirmation .status.processing,
#main.error #confirmation .status.receiver {
  display: none;
}

#main.error #confirmation .status.error {
  display: flex;
}

#main.error #confirmation .error-message {
  font-family: monospace;
}


/*
#confirmation {
  display: flex;
  align-items: center;
  position: absolute;
  top: 80px;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  visibility: hidden;
  overflow-x: hidden;
  opacity: 0;
  background: #f8fbfd;
  text-align: left;
  transition: visibility 0s, opacity 0.5s linear 0.5s;
}

#main.success #confirmation,
#main.error #confirmation {
  visibility: visible;
  opacity: 1;
}

#main.success #order,
#main.error #order {
  visibility: visible;
  opacity: 0;
}

#confirmation .status {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 75px 0 275px;
  max-width: 75%;
  height: 350px;
  margin: 100px auto;
  background: #fff url(/static/img/order.svg) 75px center no-repeat;
  box-shadow: 0 1px 3px 0 rgba(50, 50, 93, 0.15);
  border-radius: 6px;
}

#confirmation .status.error {
  display: none;
}

#confirmation .status p {
  margin: 0 0 15px;
}

#confirmation .status li {
  margin-bottom: 5px;
  list-style: none;
}

#main.success:not(.processing) #confirmation .status.processing,
#main.success:not(.receiver) #confirmation .status.receiver {
  display: none;
}

#main.processing #confirmation .status.success,
#main.receiver #confirmation .status.success {
  display: none;
}

#main.error #confirmation .status.success,
#main.error #confirmation .status.processing,
#main.error #confirmation .status.receiver {
  display: none;
}

#main.error #confirmation .status.error {
  display: flex;
}

#main.error #confirmation .error-message {
  font-family: monospace;
}

*/
    
/* Media Queries */

@media only screen and (max-width: 1024px) {
  #main.checkout:not(.success):not(.error) {
    width: calc(100% - 320px);
  }
  #summary {
    width: 320px;
    right: -320px;
  }
  #main.checkout:not(.success):not(.error) + #summary {
    right: 0;
  }
  #summary .line-item p {
    margin-top: 0;
  }
  #summary .line-item .image {
    width: 40px;
    height: 40px;
  }
  #summary .line-item .label {
    margin: 0;
  }
}

@media only screen and (max-width: 800px) {
  #main.checkout:not(.success):not(.error) {
    width: 100%;
  }
  #payment-request {
    padding-top: 0;
    min-height: 80px;
  }
  #summary {
    display: none;
  }
  #confirmation .status {
    width: auto;
    height: auto;
    margin: 30px;
  }

  .thanks img{
    float: none !important;
    margin: auto;
  }

  .thanks .row{
    text-align: center;
  }

  .thanks ul{
    list-style: none;
  }
}

@media only screen and (max-width: 500px) {
  .header {
    height: 60px;
    background-size: 40px 40px;
  }
  .header a.shop,
  .header a.github {
    display: none;
  }
  #payment-request {
    min-height: 0;
    padding-right: 15px;
    padding-left: 15px;
  }
  #payment-form {
    margin: 0;
    padding: 0;
    border-width: 2px 0 0 0;
    border-radius: 0;
  }
  .payment-info span {
    display: none;
  }
  fieldset {
    margin-bottom: 15px;
  }
  fieldset label.state,
  fieldset label.zip {
    display: flex;
    width: inherit;
    padding: 10px 0;
  }
  p.instruction {
    margin-top: -12px;
    font-size: 14px;
  }
  p.tip {
    margin-bottom: 0;
    font-size: 13px;
  }
  .ship-country::before {
    display: none;
  }
  #checkout {
    margin-bottom: 0;
  }
  #confirmation .status {
    width: auto;
    height: auto;
    padding: 120px 15px 15px;
    background: #fff url(/images/order.svg) center 15px no-repeat;
    background-size: 68px 86px;
    box-shadow: 0 1px 3px 0 rgba(50, 50, 93, 0.15);
    border-radius: 6px;
  }
  #confirmation h1 {
    text-align: center;
  }
}

.hidden {
 display:none;
}

.product-qty-display-label {
    width: 100%;
    color: rgb(0, 0, 0);
    margin-bottom: 1.2rem;
}

.product-increment-container {
    align-self: flex-start;
    display: flex;
    flex-wrap: wrap;
    box-sizing: content-box;
    height: 4rem;
    max-width: none;
}

.product-increment-container button,
.product-increment-container input {
    width: 3rem;
    height: 3rem;    
}

.product-incdec-input {
    color: rgb(0, 0, 0);
    background-color: rgb(255, 255, 255);
    cursor: pointer;
    touch-action: manipulation;
    transition-duration: 0.25s;
    transition-timing-function: ease-in-out;
    transition-property: background-color, color;
    display: flex;
    -moz-box-align: center;
    align-items: center;
    -moz-box-pack: center;
    justify-content: center;
    user-select: none;
    text-align: center;
    appearance: none;
    border-color: rgba(0,0,0,.125);
    /* border-color: rgb(0, 0, 0) rgb(0, 0, 0) rgb(0, 0, 0) rgb(0, 0, 0);*/
    border-style: solid solid solid solid;
    border-width: 1px 1px 1px 1px;
    border-image: none 100% / 1 / 0 stretch;
    /* width: 3rem; */
    /* height: 3rem; */
}

.product-qty-display {
    color: rgb(0, 0, 0);
    /* height: 3rem; */
    /* width: 3rem; */
    background-color: transparent;
    text-align: center;
    padding: 0px;
    font-size: 1.4rem;
    /* pointer-events: none; */
    /* appearance: none; */
    box-shadow: none;
    font-family: inherit;
    border-radius: initial;
    border: 1px solid rgba(0,0,0,.125);
    border-style: solid none solid none;
}

/* Chrome, Safari, Edge, Opera */
.product-increment-container input::-webkit-outer-spin-button,
.product-increment-container input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
.product-increment-container input[type=number] {
  -moz-appearance: textfield;
}

.no-border-small{
    border: none;
}

.new-cart-summary > .card-body{
    /* padding-right: 10px; */
    /* padding-left: 10px; */
    /* margin-right: 20px; */
    /* margin-left: 20px; */

    padding-right: 0px;
    padding-left: 0px;
    margin-right: 0px;
    margin-left: 0px;

}

.fields > .form-group {
    margin-bottom: 0.5rem;
}

@media (min-width:400px) and (max-width:1910px) {
    .product-increment-container button{
	float:none !important;
	display:flex;
	justify-content:center;
	align-items:center;
    }
    .product-increment-container button,
    .product-increment-container input{
	width:1.9rem;
	height:1.9rem;
	font-size:15px;
    }

}
