body {
   font-family: "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 15px;
    line-height: 1.42857;
    color: #666;
    background-color: #fff;
}
.weblink a{
  text-decoration: none;
}
.btn-stripe{
    width: 100%;
    margin-bottom: 1.8rem;
    border-radius: 4px;
    /* height: 100%; */
    font-size: 20px;
    background-color: #646ede;
}
.testMode{
  display: none;
}
/* CSS for Credit Card Payment form */
.credit-card-box .panel-title {
    display: inline;
    font-weight: bold;
}
.credit-card-box .form-control.error {
    border-color: red;
    outline: 0;
    box-shadow: inset 0 1px 1px rgba(0,0,0,0.075),0 0 8px rgba(255,0,0,0.6);
}
.credit-card-box label.error {
  font-weight: bold;
  color: red;
  padding: 2px 8px;
  margin-top: 2px;
}
.credit-card-box .payment-errors {
  font-weight: bold;
  color: red;
  padding: 2px 8px;
  margin-top: 2px;
}
.credit-card-box label {
    display: block;
}
/* The old "center div vertically" hack */
.credit-card-box .display-table {
    display: table;
}
.credit-card-box .display-tr {
    display: table-row;
}
.credit-card-box .display-td {
    display: table-cell;
    vertical-align: middle;
    width: 50%;
}
/* Just looks nicer */
.credit-card-box .panel-heading img {
    min-width: 180px;
}
/**/
.payment-type h4 {
  margin: 0;
}
.payment-type .types {
  margin: 25px 0;
	 display:flex;
}
.payment-type .types .type {
  margin-right: 1rem;
  width: 30%;
  position: relative;
  background: #f2f4f7;
  border: 2px solid #e8ebed;
  padding: 25px;
  box-sizing: border-box;
  border-radius: 6px;
  cursor: pointer;
  text-align: center;
  transition: all 0.5s ease;
}
.payment-type .types .type:hover {
  border-color: #28333b;
}
.payment-type .types .type:hover .logo,
.payment-type .types .type:hover p {
  color: #28333b;
}
.payment-type .types .type.selected {
  border-color: #40b3ff;
  background: rgba(64,179,255,0.1);
}
.payment-type .types .type.selected .logo {
  color: #40b3ff;
}
.payment-type .types .type.selected p {
  color: #28333b;
}
/*
.payment-type .types .type.selected::after {
  content: '\f00c';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  height: 40px;
  width: 40px;
  top: -21px;
  right: -21px;
  background: #fff;
  border: 2px solid #40b3ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}*/
.payment-type .types .type .logo,
.payment-type .types .type p {
  transition: all 0.5s ease;
}
.payment-type .types .type .logo {
  font-size: 48px;
  color: #8a959c;
}
.payment-type .types .type p {
  margin-bottom: 0;
  font-size: 10px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #8a959c;
}
/**/