#payment-form form {
  width: 30vw;
  min-width: 500px;
  align-self: center;
  box-shadow: 0px 0px 0px 0.5px rgba(50, 50, 93, 0.1),
    0px 2px 5px 0px rgba(50, 50, 93, 0.1), 0px 1px 1.5px 0px rgba(0, 0, 0, 0.07);
  border-radius: 7px;
  padding: 40px;
}

.hidden {
  display: none;
}

#payment-message {
  color: rgb(105, 115, 134);
  font-size: 16px;
  line-height: 20px;
  padding-top: 12px;
  text-align: center;
}

#payment-element {
  margin-bottom: 24px;
}


/******STRIPE********/
#submit-stripe, #btn-efectivo{
  background: var(--red-color);
  font-family: var(--font-titles-bold) !important;
  font-weight: 900;
  font-size: .9rem;
  border-radius: 0;
  width: 100%;
  border: none;
  height: 40px;
  color: #FFF;
}
#button-text{
  font-family: var(--font-titles-bold) !important;
}
#submit-stripe:target,#btn-efectivo:target,#submit-stripe:focus,#btn-efectivo:focus{
outline: none !important;
box-shadow: none !important;
}
.paypal-button{
  border-radius: 0 !important;
  height: 40px !important;
}
#card-element iframe
{
  height: 42px !important; 
}
#alternate-button-container,#stripe-button-container{
  padding-top: 30px;
}
.input-stripe {
  border: 1px gainsboro solid !important;
  border-radius: 0 !important;
  color: #8a8f93;
  font-size: .8rem;
}
#message-stripe{
  text-align: center;
  margin-top: 10px;
}
#submit-stripe:hover {
  filter: contrast(115%);
}
#submit-stripe:disabled {
  opacity: 0.5;
  cursor: default;
}
.paypal-button.paypal-button-shape-rect {
  border-radius: 0px !important;
}
@media only screen and (max-width: 600px) {
  #payment-form form {
    width: 80vw;
    min-width: initial;
  }
 
}