body {
  background: url(/onboarding-background.png) fixed;
  background-size: cover;
  background-position: center;
}
.signup-container {
  width: 100vw;
  display: flex;
  justify-content: center;
  margin-top: 80px;
}
.small-card-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 50px;
}
#start-your-trial-header {
  border-radius: var(--card-border-radius) var(--card-border-radius) 0px 0px;
  background-color: #6cb245;
  text-align: center;
  padding: 20px;
  color: white;
  font-size: 20px;
  font-weight: 600;
}
#payment-info-list span {
  font-weight: 600;
}
.small-card {
  position: relative;
  background-color: #e5ecf0;
  padding: 15px;
  border-radius: 5px;
  margin: 10px;
  border: 1px solid #c0cacf;
  cursor: pointer;
}
.small-card-header {
  font-weight: 600;
  color: #8398a2;
  text-align: center;
  font-size: 20px;
  margin-top: 20px;
}
.small-card.selected {
  border: 1px solid #2fa94d;
  background-color: #e0ffe5;
}
.small-card.selected > .small-card-header {
  color: #2fa94d;
}
.step-container {
  padding: 10px;
  padding-top: 30px;
  padding-left: 50px;
}
.step-container .step-number {
  color: #6cb245;
  font-weight: 600;
  font-family: monospace;
  letter-spacing: 1px;
}
.step-container > .step-headline {
  font-size: 20px;
  color: #444447;
  font-weight: 600;
}
.small-card-icon {
  margin: auto;
  width: 80px;
}
.custom-card .small-card-icon img {
  height: 100px;
  width: 100px;
}
.checkmark-icon {
  background-color: #5ca233;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  color: white;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 10px;
}
#next-btn {
  margin-left: auto;
}
.button-row {
  display: flex;
  justify-content: space-between;
  padding: 20px;
}
.button-row > button:nth-child(1) {
  flex: 2;
}
.button-row > button:nth-child(2) {
  flex: 3;
}
form {
  padding: 0px 40px 40px 40px;
}
#part2 {
  width: min(500px, 95vw);
}
.hidden {
  visibility: hidden;
}
.form-row {
  display: flex;
  align-items: center;
}
#previous-btn {
  margin-left: auto;
}
input[type='radio'] {
  opacity: 0;
}
input[type='radio'] + div::before {
  content: '\25EF';
  color: #ccc;
  border-radius: 50%;
  box-shadow: inset 1px 1px 10px #ccc;
}
input[type='radio'] + div > i {
  display: none;
}
label {
  font-size: 16px;
  font-family: sans-serif;
}
input[type='radio']:checked + div::before {
  content: '';
}
input[type='radio']:checked + div > i {
  display: inline;
  background-color: #5ca233;
  border-radius: 50%;
  border: 3px solid #5ca233;
  color: white;
  font-size: 16px;
}
input[type='radio'] + div {
  padding: 10px;
  border-radius: 5px;
  border: 1px solid white;
  margin-top: -30px;
}

input[type='radio']:checked + div {
  border: 1px solid #5cb85c;
  background-color: #e2ffe4;
  color: #5cb85c;
}
#invoice-message {
  padding: 0px 20px 20px 20px;
  font-weight: 600;
}
#choose-payment-info {
  margin-left: 12px;
  font-size: 20px;
}
#choose-payment-container {
  margin-left: -40px;
}
#card-number,
#CVC,
#expiry-date {
  width: 100%;
  background-color: #eef2f6;
  border: 1px solid #e3e8ef;
  border-radius: 5px;
  box-shadow: inset 0px 1px 3px rgba(0, 0, 0, 0.1);
  color: #1b202b;
  padding: 15px;
}
.custom-modal {
  position: fixed;
  top: 0px;
  left: 0px;
  background-color: rgba(0, 0, 0, 0.5);
  height: 100vh;
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
}
.custom-modal .custom-card {
  width: min(80%, 500px);
  --card-border-radius: 5px;
}
.custom-modal .ccard__content {
  height: 30vh;
  overflow-y: scroll;
  box-shadow: inset 0px 1px 4px rgba(0, 0, 0, 0.15);
}
.preview-header-row {
  display: flex;
  justify-content: space-between;
  padding: 20px;
  font-size: 18px;
  font-weight: 700;
}
.custom-modal .custom-primary-btn {
  background-color: #4e82ec;
  border: none;
  margin: auto;
  width: 96%;
}
.custom-modal .custom-primary-btn:active {
  background-color: #2751a7;
  width: 80%;
  margin: auto;
}
#CVC {
  width: 65px;
}
.link-button {
  border: none;
  background: none;
  text-decoration: underline;
  color: #658cfb;
}
#reminders {
  padding: 0px 30px;
}
#reminders ul {
  margin-left: 10px;
  margin-top: -10px;
}
#reminders li {
  line-height: 1.5em;
  margin-left: 10px;
}
div.custom-card div.ccard__head {
  font-size: 18px;
}
.button-row {
  padding: 10px 30px;
}
.custom-modal .custom-card .ccard__content {
  padding: 20px;
}
.custom-card .ccard__content .ccard__head {
  padding: 10px 0px;
}
.custom-primary-btn {
  padding: 10px 50px;
  margin: auto;
}
