.right {
  background: #f8f9f8;
  /*  */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1rem;
}

@media (min-width: 660px) {
  .right {
    border-radius: 0 10px 10px 0;
    /* border: 1px solid red; */
  }
}

.right .title {
  margin-bottom: 10px;
  text-transform: uppercase;
}

.right .desc {
  font-size: 1rem;
  color: darkslategrey;
  /* border: 1px solid coral; */
}

.right .desc p {
  margin-bottom: 4px;
}

.right h1 {
  font-size: 20px;
  margin-bottom: 5px;
}

.right h2 {
  font-size: 30px;
  color: #a5252e;
}

/* - - - - - - - - - - - - - - - - - - - -  */
#payment_form {
  margin-top: 10px;
  font-family: "Roboto", sans-serif;
  display: flex;
  flex-direction: column;
  /* border: 1px solid red; */
}

.form-group {
  margin-bottom: 4px;
  display: grid;
  grid-template-columns: 1fr;
  /* border: 1px solid coral; */
}

.form-group label {
  font-size: 1em;
  font-weight: 600;
  color: #63161b;
}

.form-group input {
  padding: 8px;
  border: none;
  border-bottom: 1px solid #353d3f;
  background-color: inherit;
  /*  */
  font-size: 1.3em;
  font-weight: 400;
  letter-spacing: 1px;
  /* border: 1px dashed red; */
}

.form-group select {
  margin: 6px 0;
  padding-left: 8px;
  border: none;
  border-bottom: 1px solid #353d3f;
  background-color: inherit;
  /*  */
  font-size: 1.4em;
  font-weight: 300;
  letter-spacing: 0.025em;
}

.form-group .msg {
  margin-top: 4px;
  font-size: 14px;
  color: #a5252e;
  text-align: center;
  visibility: hidden;
  /* border: 1px solid coral; */
}

.form-group.error .msg {
  visibility: visible;
}

/* - - - - - - - - - - - - - - - - - - - -  */
#payment_form button {
  margin: 10px auto;
  padding: 10px 20px;
  background-color: #a5252e;
  border: 0;
  border-radius: 10px;
  transition: all 0.2s ease;
  cursor: pointer;
  /*  */
  font-family: inherit;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #f8f9f8;
  position: relative;
}

#payment_form button:hover {
  /* width: 150px; */
  transform: scale(1.02);
  background-color: #c02035;
}

#payment_form button:active {
  top: 0.1em;
}

