/* CSS Document */
body,
* {
	font-family: 'Open Sans', sans-serif;
}

.layout {
	display: flex;
	height: 100vh;
	overflow: hidden;
}

.main {
	flex-grow: 1;
	margin-top: 64px;
	background: var(--surfaceContainers-surface-container);
	overflow: hidden;
}

.layout .container {
	margin-left: 270px;
	display: flex;
	flex-direction: column;
	height: 100vh;
	width: 100%;
	overflow-y: auto;
	transition: margin-left 0.3s ease;
}

.page-wrapper {
	overflow: auto;
	display: flex;
	flex-direction: column;
	height: calc(100% - 55px);
}

.inner-container {
	max-width: 1258px;
	width: 100%;
	padding: 24px;
	margin: 0 auto;
	flex-grow: 1;
}

.header,
.footer {
	flex-shrink: 0;
}

h2.section-title {
	color: var(--project-primary);
	font-size: 24px;
	font-weight: bold;
	margin: 0 0 16px;
}

.btn {
	border: none;
	border-radius: 25px;
	padding: 10px 24px;
	margin-top: 10px;
	width: 100%;
	text-align: center;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	white-space: nowrap;
	text-decoration: none;
	height: 44px;

	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;

	transition: all 0.2s ease;
}

.btn-text {
	color: var(--project-primary);
	background: none;
	text-decoration: none;
}

.btn-text:hover {
	background: var(--Container-quaternary-container);

}

.btn-text:active {
	background: var(--Container-quaternary-container-variant);

}

.btn-outlined {
	background: none;
	border: 1px solid var(--project-primary);
	color: var(--project-primary);
	text-decoration: none;
}

.btn-outlined-light {
	background: transparent;
	color: #fff;
	border: 1px solid #fff;
}

.btn-outlined-light:hover {
	color: var(--project-primary);
	border: 1px solid var(--outlines-outline-on-botton);
	background: var(--Container-quaternary-container);
}

.btn-outlined-light:active {
	color: var(--project-primary);
	border: 1px solid var(--outlines-outline-on-botton-variant);
	background: var(--Container-quaternary-container-variant);
}

.btn-outlined:hover {
	border: 1px solid var(--outlines-outline-on-botton);
	background: var(--Container-quaternary-container);
}

.btn-outlined:active {
	border: 1px solid var(--outlines-outline-on-botton-variant);
	background: var(--Container-quaternary-container-variant);
}

.btn-primary {
	background: var(--project-primary);
	color: var(--Container-on-primary-container);
}

.btn-primary:hover {
	background: var(--Container-senary-container);
	color: var(--Container-on-senary-container);
	box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.12);
}

.btn-primary:active {
	background: var(--Container-senary-container-variant);
	box-shadow: none;
}

.btn-primary-light {
	background: var(--project-secondary);
	color: var(--project-primary);
}

.btn-primary-light:hover {
	background: var(--container-septenary-container);
}

.btn-primary-light:active {
	background: var(--container-septenary-container-variant);
}

.btn-secondary {
	background: var(--project-secondary);
	color: var(--Container-on-secondary-container);

}

.btn-secondary:hover {
	background: var(--Container-septenary-container);
	color: var(--Container-on-septenary-container);
	box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.12);

}

.btn-secondary:active {
	background: var(--Container-septenary-container-variant);
	color: var(--Container-on-septenary-container);
	box-shadow: none;
}

.btn-disabled {
	background: var(--dim-surface-dim);
	color: var(--dim-on-surface-dim);
	cursor: none;
	pointer-events: none;
}

.btn:disabled {
	background: var(--DIM-surface-dim);
	color: var(--DIM-on-surface-dim)
}

.input-container {
	position: relative;
	width: 100%;
}

.input-container input {
	border: 1px solid var(--outlines-outline);
	background: var(--surfacePrimary-surface-primary);
	color: var(--surfacePrimary-on-surface-primary-variant);
	font-size: 14px;
	width: 100%;
	padding: 32px 12px 12px 12px;
	border-radius: 8px;
	height: 56px;
}

.input-container::placeholder {
	color: var(--surfacePrimary-on-surface-primary-variant);
	font-size: 14px;
}

.input-container input:disabled,
.select-container select:disabled {
	background-color: var(--DIM-surface-dim);
	border-color: var(--outlines-outline-on-surface);
	color: var(--DIM-on-surface-dim);

}

.input-container input:disabled+label {
	color: var(--DIM-on-surface-dim) !important;

}

.input-container label {
	position: absolute;
	left: 12px;
	top: 22px;
	color: #646464;
	transition: all 0.3s ease;
	pointer-events: none;
	font-size: 14px;
}

.input-container input:not(:focus):valid+label,
.select-container select:not(:focus):valid+label {
	color: var(--surfacePrimary-on-surface-primary-variant);
}

.input-container input:not(:focus):disabled+label,
.select-container select:not(:focus):disabled+label {
	opacity: 0.8;
}

.input-container input:focus+label,
.input-container input:not(:placeholder-shown)+label {
	top: 14px;
	left: 12px;
	font-size: 12px;
	color: var(--surfacePrimary-on-surface-primary-variant);
}

.input-container input:focus,
.select-container select:focus {
	outline: none;
	border: 2.5px solid var(--outlines-outline-active);
}

.search-box .search-field {
	position: relative;
	display: flex;
	align-items: flex-end;
	flex: 1;
	min-width: 0;
	height: 32px;
}

.search-box .search-field input {
	width: 100%;
	height: 32px;
	padding: 14px 0 0;
	border: 0;
	background: transparent;
	color: var(--surfacePrimary-on-surface-primary);
	font-size: 14px;
	line-height: 18px;
	outline: none;
}

.search-box .search-field input::placeholder {
	color: transparent;
}

.search-box .search-field label {
	position: absolute;
	top: 50%;
	left: 0;
	max-width: 100%;
	overflow: hidden;
	color: var(--surfacePrimary-on-surface-primary-variant);
	font-size: 14px;
	line-height: 1.2;
	text-overflow: ellipsis;
	white-space: nowrap;
	pointer-events: none;
	transform: translateY(-50%);
	transition: top 0.2s ease, transform 0.2s ease, font-size 0.2s ease;
}

.search-box .search-field input:focus + label,
.search-box .search-field input:not(:placeholder-shown) + label {
	top: 0;
	font-size: 12px;
	transform: translateY(0);
}

.select-container {
	position: relative;
	width: 100%;
	outline: none;
}

.select-container select {
	width: 100%;
	padding: 24px 12px 12px 12px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border: 1px solid #646464;
	border-radius: 4px;
	background-color: white;
	cursor: pointer;
	height: 56px;
	color: var(--surfaceprimary-on-surface-primary-variant);
	font-size: 14px;
}

.select-container select:disabled+label {
	background-color: #f7f7f7;
}


.select-container select:focus+label,
.select-container select:valid+label,
.select-container select:disabled+label {
	top: 18px;
	font-size: 12px;
	color: var(--surfaceprimary-on-surface-primary-variant);
	padding: 0;
}

.input-container input.error,
.select-container select.error,
.select2-container.error .select2-selection,
.token-input input.error {
	border: 1px solid var(--SystemAlert-error);
}

.input-container label.error,
.select-container label.error,
.select2-container.error .select2-selection__placeholder {
	color: var(--SystemAlert-error) !important;
}

.input-container input.error:focus+label,
.input-container input.error:valid+label {
	color: var(--SystemAlert-error);
}

.error-message {
	color: var(--SystemAlert-error);
	font-size: 12px;
	margin-top: 2px;
	margin-left: 12px;
	display: none;
}

.input-container input.error+label+.error-message,
.select-container select.error+label+.error-message {
	display: block;
}

.class-progress {
	display: flex;
	flex-direction: column;
	margin-top: 24px;
}

.class-progress label {
	color: var(--surfacePrimary-on-surface-primary-variant);
	font-size: 14px;
	font-weight: 600;
}

.class-progress label span {
	color: var(--project-primary);
	font-weight: bold;
}

progress {
	border-radius: 8px;
	width: 100%;
	height: 8px;
	margin-top: 8px;
}

progress::-webkit-progress-bar {
	background: var(--dim-surface-dim);
	border-radius: 8px;
}

progress::-webkit-progress-value {
	background: var(--project-secondary);
	border-radius: 8px;
}

.btn:disabled.btn-next img {
	content: url('/assets/images/icon-right-disabled.svg');
	cursor: not-allowed;
}

@media (max-width: 768px) {
	.inner-container {
		padding: 24px 16px;
	}

	.page-wrapper {
		height: calc(100% - 52px);
	}
}
