/*
--------------------------------------
Content
--------------------------------------
*/

.btn__with-icon {
	display: flex;
	align-items: center;
	gap: 15px;
}

/*
--------------------------------------
Steps
--------------------------------------
*/

.step-quiz__header {
	display: flex;
	align-items: center;
	gap: 15px;
}

.step-quiz__mention {
	font-size: 18px;
	font-weight: 600;
	color: #fff;
	text-align: center;
	line-height: 50px;
}

/*
--------------------------------------
Results
--------------------------------------
*/

.level-name {
	display: flex;
	flex-direction: column;
	align-items: center;
	font-weight: 700;
	background: linear-gradient(180deg, #52D0E8 0%, #6C91FB 100%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	padding-top: calc(10px + (32 - 10) * ((100vw - 320px) / (1920 - 320)));
}

.level-name__label {
	font-size: 16px;
	letter-spacing: 0.16px;
}

.level-name__value {
	font-size: 35px;
}

.quiz-result__description {
	font-size: 15px;
	font-weight: 400;
	line-height: 150%;
	letter-spacing: 0.15px;
	text-align: center;
}

#btn-upgrade {
	width: 100%;
}

.restart-link {
	font-size: 13px;
	opacity: .5;
	text-align: right;
}

.results-card {
	background-color: #121624;
	border-radius: 7px;
	border: 2px solid transparent;
	background-image: linear-gradient(#121624, #121624),
	linear-gradient(90deg, #52D0E8 0%, #6C91FB 100%);
	background-origin: border-box;
	background-clip: padding-box, border-box;
	padding: 2em;
	margin-top: 1em;
}

.results-card__title-description h2 {
	line-height: 1;
	padding-bottom: .45em;
	margin-top: 0;
}

.results-card__description-items {
	display: flex;
	flex-direction: column;
	padding-bottom: 1.25em;
	row-gap: calc(5px + (10 - 5) * ((100vw - 320px) / (1920 - 320)));
}

.results-card__description-item {
	display: flex;
	align-items: center;
	gap: 10px;
}

.results-card__top-content {
	display: flex;
	flex-direction: column;
}

.results-card__content label {
	display: inline-flex;
	column-gap: 10px;
	font-size: 14px;
	font-weight: 500;
	text-transform: uppercase;
	padding-bottom: 5px;
}

.results-card__content .label-description {
	color: rgba(255, 255, 255, 0.63);
	font-size: 12px;
	text-decoration-line: underline;
	text-decoration-style: solid;
	text-transform: none;
}

#btn-upgrade-submit {
	width: 100%;
}

/*
--------------------------------------
Upgrade -- success message
--------------------------------------
*/

.success-message {
	font-weight: 700;
	font-size: 20px;
	text-align: center;
}