/* Styles, specific to the plan config popup */
.plan-config .title-wrap {
	color: #4F4F4F;
	margin-bottom: 30px;
}

.plan-config .title-wrap .plan-name {
	font-size: 50px;
	font-weight: 900;
	letter-spacing: 0.5px;
	margin-bottom: 15px;
}

.plan-config .title-wrap .subject-name {
	position: relative;
	font-size: 30px;
	font-weight: 900;
	letter-spacing: 3px;
	z-index: 1;
}

.plan-config .title-wrap .subject-name::after {
	content: '';
	display: block;
	position: absolute;
	width: calc(100% + 20px);
	height: 11px;
	left: -10px;
	background: #DEF;
	bottom: -4px;
	z-index: -1;
}

.plan-config .title-wrap .billing-cycle {
	font-size: 23px;
	color: #4F4F4F;
}

.plan-config .description {
	font-size: 16px;
	font-weight: 100;
	color: var(--color-text);
	margin-bottom: 20px;
}

.plan-config .quantity-select {
	width: 200px;
	height: 50px;
	background-color: var(--color-white);
	border: 1px solid #ADADAD;
	border-radius: 5px;
	padding: 5px 10px 0 13px;
	margin-bottom: 40px;
}

.plan-config .terms-checkbox-wrap .terms-of-service-checkbox {
	/* TODO: maybe create generic class for those checkboxes scattered around the site */
	width: 22px;
	height: 22px;
	margin-right: 10px;
	margin-top: -2px;
}

.plan-config .terms-checkbox-wrap {
	display: flex;
	margin-top: 2em;
}

.plan-config .action-buttons-wrap {
	margin-top: 45px;
}

.plan-config .plan-20-contacts {
	margin-top: 2em;
	display: flex;
	width: 100%;
	justify-content: space-between;
}

.plan-config .plan-20-contacts .field-label-pair {
	width: 48%;
}

/* Small */
@media screen and (max-width: 950px) {
	.plan-config .description {
		font-size: 14px;
	}
}