#pp-btree-hosted-fields-modal {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  height: 100vh;
  z-index: 100;
}
.pp-btree-hosted-fields-modal-hidden {
	display: none !important;
}
.pp-btree-hosted-fields-bt-modal-frame {
  height: 480px;
  width: 440px;
  margin: auto;
  background-color: #eee;
  z-index: 2;
  border-radius: 6px;
}
.pp-btree-hosted-fields-bt-modal-body {
  height: 400px;
  margin: 0 20px;
  background-color: white;
  border: 1px solid lightgray;
}
.pp-btree-hosted-fields-bt-modal-header, .pp-btree-hosted-fields-bt-modal-footer {
  height: 40px;
  text-align: center;
  line-height: 40px;
}
.pp-btree-hosted-fields-bt-mask {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: black;
  opacity: 0.8;
}

/* Card fields styles */
.braintree-credit-cards tr, 
.braintree-credit-cards td {
	display: block;
	width: 100% !important; //Necessary to override WPSC styling
}
.bt-hosted-field {
  height: 50px;
  box-sizing: border-box;
  width: 100%;
  padding: 12px;
  display: inline-block;
  box-shadow: none;
  font-weight: 600;
  font-size: 14px;
  border-radius: 6px;
  border: 1px solid #dddddd;
  line-height: 20px;
  background: #fcfcfc;
  margin-bottom: 12px;
  background: linear-gradient(to right, white 50%, #fcfcfc 50%);
  background-size: 200% 100%;
  background-position: right bottom;
  transition: all 300ms ease-in-out;
}
.bt-hosted-fields--label {
  font-family: courier, monospace;
  text-transform: uppercase;
  font-size: 17px;
  display: block;
  margin-bottom: 6px;
}			
.braintree-hosted-fields-focused {
  border: 1px solid #64d18a;
  border-radius: 1px;
  background-position: left bottom;
}

.braintree-hosted-fields-invalid {
  border: 1px solid #ed574a;
}

.braintree-hosted-fields-valid {
}