#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 {
  background: #37a73f;
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-size: 1.1rem;
  border-radius: 10px;
  width: 100%;
  border: none;
  color: #FFF;
  padding: 10px;
}
#submit-stripe:hover {
  background: #05560f !important;
}
#submit-stripe:target{
outline: none;
box-shadow: none;
}
#card-element iframe
{
  height: 42px !important; 
}
.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;
}
@media only screen and (max-width: 600px) {
  #payment-form form {
    width: 80vw;
    min-width: initial;
  }
}