@font-face {
	src: url("../fonts/Poppins/Poppins-ExtraLight.ttf");
	font-family: Poppins-ExtraLight;
}

@font-face {
	src: url("../fonts/Poppins/Poppins-Light.ttf");
	font-family: Poppins-Light;
}

@font-face {
	src: url("../fonts/Poppins/Poppins-Regular.ttf");
	font-family: Poppins-Regular;
}

@font-face {
	src: url("../fonts/Poppins/Poppins-Medium.ttf");
	font-family: Poppins-Medium;
}

@font-face {
	src: url("../fonts/Poppins/Poppins-SemiBold.ttf");
	font-family: Poppins-SemiBold;
}

@font-face {
	src: url("../fonts/Poppins/Poppins-Bold.ttf");
	font-family: Poppins-Bold;
}

@font-face {
	src: url("../fonts/Poppins/Poppins-ExtraBold.ttf");
	font-family: Poppins-ExtraBold;
}

@font-face {
	src: url("../fonts/Poppins/Poppins-Black.ttf");
	font-family: Poppins-Black;
}

@font-face {
	src: url("../fonts/Raleway/Raleway-Medium.ttf");
	font-family: Raleway-Medium;
}

@font-face {
	src: url("../fonts/Raleway/Raleway-Bold.ttf");
	font-family: Raleway-Bold;
}

:root {
	--bg-white: #FFFFFF;
	--bg-black: #000000;
	--bg-danger: #E30000;
	--bg-primary: #E15A11;
	--bg-secondary: #FFF9F2;
	--bg-primary-hover: #D14C04;
	--bg-tertiary: rgba(255, 153, 98, 0.62);

	--border-color: #BDBDBD;

	--text-black: #000000;
	--text-white: #FFFFFF;
	--text-theme: #E15A11;
	--text-danger: #FF0000;
	--text-primary: #212121;
	--text-success: #00934E;
	--text-tertiary: #343434;
	--text-secondary: #333333;

	--font-size-standard: 12px;
	--font-size-standard-secondary: 12px;
	--font-family-poppins-200: Poppins-ExtraLight;
	--font-family-poppins-300: Poppins-Light;
	--font-family-poppins-400: Poppins-Regular;
	--font-family-poppins-500: Poppins-Medium;
	--font-family-poppins-600: Poppins-SemiBold;
	--font-family-poppins-700: Poppins-Bold;
	--font-family-poppins-800: Poppins-ExtraBold;
	--font-family-poppins-900: Poppins-Black;

	--font-family-raleway-400: Raleway-Medium;
	--font-family-raleway-700: Raleway-Bold;
}

body {
	margin: 0;
	padding: 0;
	min-width: 320px;
	line-height: 1.5;
	color: var(--text-black);
	font-size: var(--font-size-standard);
	font-family: var(--font-family-poppins-400);
}

* {
	margin: 0;
	padding: 0;
}

p,
a,
ul,
li,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
div,
body,
table,
input,
figure,
button,
select {
	margin: 0;
	padding: 0;
	transition: all 0.3s ease-in-out;
}

ul,
li {
	list-style: none;
}

a,
a:focus,
a:hover {
	cursor: pointer;
	text-decoration: none;
}

img {
	max-width: 100%;
}

button:focus {
	outline: none;
}

button:disabled {
	cursor: not-allowed;
	opacity: 0.6;
}

::-webkit-scrollbar {
	width: 6px;
	height: 6px;
	cursor: pointer;
}

::-webkit-scrollbar-track {
	border-radius: 5px;
	background: #D9D9D9;
}

::-webkit-scrollbar-thumb {
	border-radius: 5px;
	background: #929292
}

input,
select,
textarea {
	transition: all 0.3s;
}

input:focus,
select:focus,
textarea:focus {
	outline: none;
}

select {
	cursor: pointer;
}

input::placeholder {
	color: #929292;
}

input[type="radio"],
input[type="checkbox"] {
	accent-color: var(--bg-primary);
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

input[type=number] {
	-moz-appearance: textfield;
}

.form-control:focus {
	outline: none;
	box-shadow: none;
	border-color: var(--border-color);
}

.versionNo {
	right: 12px;
	bottom: 14px;
	position: absolute;
	font-size: 11px;
	color: whitesmoke;
}

/* Modal
============================================================= */

.modal {
	background: rgba(28, 28, 28, 0.7);
}

.modal-dialog {
	max-width: 560px;
}

.modal-content {
	padding: 24px;
}

.modal-header {
	border: none;
	border-radius: 0;
	padding: 0 0 10px;
	position: relative;
}

.modal-header h2 {
	font-size: 20px;
	line-height: 30px;
	color: var(--text-theme);
	font-family: var(--font-family-poppins-500);
}

.modal-header .close-modal {
	top: 0;
	right: 0;
	opacity: 0.4;
	font-size: 16px;
	position: absolute;
	color: var(--text-black);
}

.modal-header .close-modal:hover {
	opacity: 0.8;
}

.modal-body {
	padding: 0;
	line-height: 24px;
	font-size: var(--font-size-standard-secondary);
}

.modal-footer {
	gap: 10px;
	border: none;
	padding: 16px 0 0;
}

/* Common/Custom Class
============================================================= */

.inner-section {
	margin: 0 auto;
	max-width: 100%;
	padding: 0 15px;
	box-sizing: border-box;
}

.custom-btn {
	gap: 8px;
	margin: 0;
	height: 30px;
	padding: 0 14px;
	min-width: 110px;
	line-height: 30px;
	text-align: center;
	border-radius: 4px;
	align-items: center;
	display: inline-flex;
	justify-content: center;
	color: var(--text-white);
	background: var(--bg-primary);
	border: 1px solid var(--text-theme);
	font-family: var(--font-family-poppins-500);
	font-size: var(--font-size-standard-secondary);
}

.custom-btn:hover {
	background: #C94600;
	color: var(--text-white);
}

.custom-btn:disabled:hover {
	background: var(--bg-primary);
	color: var(--text-white);
}

.custom-btn-secondary {
	background: none;
	color: var(--text-theme);
	border: 1px solid var(--text-theme);
}

.custom-btn-secondary:hover {
	color: var(--text-white);
	background: var(--bg-primary);
}

.custom-btn-secondary:disabled:hover {
	color: var(--text-theme);
	background: none;
}

.custom-btn-no-broder {
	border: none;
	color: #475467;
	background: none;
}

.custom-btn-danger {
	color: var(--text-white);
	background: var(--bg-danger);
}

.custom-btn-default {
	background: none;
	border: 1px solid #D3D3D3;
	color: var(--text-secondary);
}

.custom-btn-no-broder:disabled:hover {
	color: #475467;
	background: none;
}

.custom-btn-default i {
	color: var(--text-theme);
}

.custom-btn-no-prop {
	padding: 0 !important;
	border: none !important;
	background: none !important;
	color: var(--text-theme) !important;
}

.custom-link {
	border: none;
	padding: 5px 0;
	cursor: pointer;
	background: none;
	line-height: 20px;
	transition: all 0.3s;
	font-size: var(--font-size-standard);
}

.custom-link:hover {
	color: var(--text-theme);
}

button .spinner-grow,
button .spinner-border {
	width: 20px;
	height: 20px;
}

.mw-auto {
	min-width: auto !important;
}

.fs-14 {
	font-size: 14px !important;
}

.fs-16 {
	font-size: 16px !important;
}

.fw-300 {
	font-family: var(--font-family-poppins-200) !important;
}

.fw-300 {
	font-family: var(--font-family-poppins-300) !important;
}

.fw-400 {
	font-family: var(--font-family-poppins-400) !important;
}

.fw-500 {
	font-family: var(--font-family-poppins-500) !important;
}

.fw-600 {
	font-family: var(--font-family-poppins-600) !important;
}

table {
	width: 100%;
	border-collapse: collapse;
}

table thead tr th,
table tbody tr td {
	line-height: 18px;
	padding: 6px 10px;
	position: relative;
	transition: all 0.3s;
	vertical-align: middle;
	font-size: var(--font-size-standard);
	background: rgba(255, 153, 98, 0.34);
}

table thead tr th {
	top: 0;
	z-index: 1;
	position: sticky;
	min-width: 120px;
	background: #ffd8c0;
}

table tbody tr td {
	background: var(--bg-white);
	border: 1px solid #E9E9E9;
	border-top: none;
	border-left: none;
	border-right: none;
	font-family: var(--font-family-poppins-400);
}

.th-filter {
	padding: 0 8px;
	cursor: pointer;
}

.th-filter:hover {
	color: var(--text-theme);
}

.loader {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 9999;
	display: none;
	position: fixed;
	background: rgba(255, 255, 255, 0.96);
}

.loading {
	width: 0;
	top: 50%;
	height: 0;
	left: 50%;
	padding: 15px;
	position: absolute;
	border-radius: 22px;
	border: 6px solid #FEE2D4;
	border-right-color: #FF5900;
	-webkit-animation: rotate 2s infinite linear;
}

@-webkit-keyframes rotate {
	100% {
		-webkit-transform: rotate(360deg);
	}
}

.filter-dropdown {
	top: 100%;
	left: 50px;
	display: flex;
	display: none;
	min-width: 140px;
	position: absolute;
	border-radius: 4px;
	background: #FFFFFF;
	box-sizing: border-box;
	flex-direction: column;
	border: 1px solid rgba(234, 234, 234, 0.7);
	box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.14);
}

.filter-dropdown ul li {
	padding: 10px 12px;
}

.filter-dropdown ul li+li {
	border-top: 1px solid rgba(234, 234, 234, 0.7);
}

.filter-dropdown ul li input {
	width: 15px;
	height: 15px;
	margin: 0 9px 0 0;
}

.filter-dropdown ul li span {
	line-height: 21px;
	letter-spacing: 0.25px;
	width: calc(100% - 24px);
	font-size: var(--font-size-standard);
	font-family: var(--font-family-poppins-400);
}

.table-action {
	margin: 0 0 0 -8px;
}

.table-action a {
	padding: 0 8px;
	color: #B64000;
	display: inline-flex;
	border-left: 1px solid #B64000;
	font-family: var(--font-family-poppins-500);
}

.table-action a:first-child {
	border: none;
}

.custom-table {
	padding: 0 15px;
}

.custom-table .table-responsive {
	margin: 0;
	background: var(--bg-white);
	border: 1px solid #E9E9E9;
	height: calc(100vh - 225px);
	border-radius: 8px 8px 0 0;
	border-top: none;
}

.table-responsive-height-adjust {
	height: calc(100vh - 270px) !important;
}

.custom-input-label {
	width: 100%;
	margin: 0 0 12px;
	position: relative;
}

.custom-input-label label {
	display: block;
	margin: 0 0 2px;
	line-height: 21px;
	position: relative;
	font-size: var(--font-size-standard-secondary);
}

.custom-input-label label sup {
	color: var(--bg-danger);
	font-family: var(--font-family-poppins-500);
}

.custom-input-label input,
.custom-input-label select {
	width: 100%;
	height: 30px;
	display: block;
	padding: 0 8px;
	line-height: 30px;
	border-radius: 4px;
	box-sizing: border-box;
	border: 1px solid #BFC1C5;
	background: var(--bg-white);
	font-size: var(--font-size-standard-secondary);
}

.custom-input-label select {
	line-height: 28px;
}

select {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
}

.custom-input-label select {
	padding: 0 30px 0 10px;
	background: var(--bg-white) url("../images/icon_arrow_down.png") no-repeat scroll right 8px center / 12px;
}

input:read-only {
	cursor: default;
	background: #F5F5F5;
}

select:disabled,
.custom-input-label input:disabled {
	cursor: not-allowed;
	color: var(--text-secondary);
	background: #F5F5F5;
}

.custom-input-label select:has(option[disabled]:checked) {
	color: #94979E;
}

.custom-input-label select option {
	color: var(--text-primary);
}

input[type="file"]:read-only {
	cursor: pointer;
	background: none;
}

.custom-input-label .digits-inputs input {
	width: 35px;
	padding: 0 2px;
	text-align: center;
}

.form-submission {
	margin: 8px 0 0 0;
	padding: 20px 0 0 0;
	border-top: 1px solid #EAEAEA;
}

.text-danger {
	color: var(--text-danger) !important;
}

.text-success {
	color: var(--text-success) !important;
}

.text-initial {
	text-transform: initial !important;
}

.select-years span {
	padding: 0 10px;
	line-height: 21px;
	display: inline-block;
	font-family: var(--font-family-poppins-500);
	font-size: var(--font-size-standard-secondary);
}

.custom-input-label .udise-codes {
	flex-wrap: wrap;
}

.custom-input-label .udise-codes input {
	padding: 0;
	width: 28px;
	border-radius: 0;
	border-left: none;
}

.custom-input-label .udise-codes input:first-child {
	border-left: 1px solid #BFC1C5;
}

.custom-input-file-label {
	position: relative;
	height: calc(100% - 12px);
}

.uploaded-image-preview {
	width: 160px;
	height: 160px;
	overflow: hidden;
	position: relative;
}

.uploaded-image-preview img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
}

.uploaded-image-preview>button {
	left: 50%;
	bottom: 8px;
	position: absolute;
	transform: translateX(-50%);
}

.updalod-photo img {
	width: 100%;
	height: 100% !important;
	object-fit: contain;
}

.heading-set {
	font-size: 14px;
	margin: 0 0 16px;
	padding: 0 0 10px;
	line-height: 24px;
	color: var(--text-secondary);
	border-bottom: 1px solid #EAEAEA;
	font-family: var(--font-family-poppins-500);
}

.custom-pagination {
	gap: 12px;
	height: 28px;
	display: flex;
	margin: 0 15px;
	flex-wrap: wrap;
	padding: 3px 10px;
	line-height: 20px;
	position: relative;
	align-items: center;
	justify-content: center;
	width: calc(100% - 30px);
	border: 1px solid #DFDCDA;
}

.custom-pagination ul,
.custom-pagination ul li {
	display: flex;
	align-items: center;
}

.custom-pagination ul li a {
	height: 20px;
	display: flex;
	color: #545454;
	font-size: 10px;
	min-width: 20px;
	line-height: 20px;
	align-items: center;
	justify-content: center;
	background: var(--bg-white);
	border: 1px solid #DFDCDA;
	border-left: none;
}

.custom-pagination ul li:first-child a {
	border-left: 1px solid #DFDCDA;
}

.custom-pagination ul li a.active,
.custom-pagination ul li a:hover {
	background: #DFDCDA;
}

.number-of-pagination {
	color: #545454;
	font-size: 10px;
	line-height: 20px;
}

.record-counts {
	right: 10px;
	font-size: 11px;
	line-height: 20px;
	position: absolute;
	font-family: var(--font-family-poppins-500);
}

.custom-dropdown-wrapper {
	width: 100%;
	cursor: pointer;
	position: relative;
}

.custom-dropdown-header {
	width: 100%;
	height: 30px;
	display: flex;
	padding: 0 8px;
	cursor: pointer;
	line-height: 30px;
	border-radius: 4px;
	position: relative;
	box-sizing: border-box;
	border: 1px solid #BFC1C5;
	background: var(--bg-white);
	font-size: var(--font-size-standard-secondary);
}

.custom-dropdown-header .dropdown-clear {
	display: none;
}

.custom-dropdown-header label {
	margin: 0;
	width: 100%;
	height: 28px;
	cursor: pointer;
	overflow: hidden;
	line-height: 27px;
	white-space: nowrap;
	padding: 0 14px 0 0;
	text-overflow: ellipsis;
	font-family: var(--font-family-poppins-400);
}

.custom-dropdown-header.no-selection label {
	color: #94979E !important;
}

.title-bar-select .custom-dropdown-header label {
	padding: 0 36px 0 0;
}

.arrow-dropdown {
	right: 0;
	position: absolute;
	padding: 0 2px 0 0;
	box-sizing: border-box;
	width: 26px !important;
	height: 28px !important;
}

.custom-dropdown-menu {
	top: 100%;
	z-index: 9;
	width: 100%;
	margin: 2px 0 0 0;
	position: absolute;
	background: #FFFFFF;
	box-sizing: border-box;
	border-radius: 0 0 6px 6px;
	border: 1px solid #EAEAEA;
}

.dropdown-search-box {
	padding: 5px;
}

.dropdown-search-box input {
	height: 30px;
	padding: 0 8px;
	font-size: 12px;
	line-height: 31px;
}

.options-scroll {
	padding: 0;
	min-height: 0;
	overflow-y: auto;
	max-height: 180px;
}

.custom-dropdown-item {
	cursor: pointer;
	line-height: 18px;
	padding: 6px 10px;
	transition: all 0.3s;
	color: var(--text-black);
	background: var(--bg-white);
	border-bottom: 1px solid #EAEAEA;
	font-size: var(--font-size-standard);
}

.custom-dropdown-item:hover {
	background: #f7f7f7;
}

.custom-dropdown-item:last-child {
	border: none;
}

.no-result-found {
	padding: 10px;
	text-align: center;
}

.error-msg {
	display: block;
	margin: 2px 0 0 0;
	color: var(--text-danger);
	font-size: var(--font-size-standard);
}

.custom-dropdown-wrapper.dropdown-disabled {
	cursor: not-allowed;
}

.custom-dropdown-wrapper.dropdown-disabled .custom-dropdown-header,
.custom-dropdown-wrapper.dropdown-disabled .custom-dropdown-header label {
	cursor: not-allowed;
	background: #F5F5F5;
	color: var(--text-secondary);
}

.custom-dropdown-wrapper.dropdown-disabled .custom-dropdown-header .arrow-dropdown {
	display: none;
}

.pb-10 {
	padding-bottom: 10px !important;
}

.pt-10 {
	padding-top: 10px !important;
}

.pb-20 {
	padding-bottom: 20px !important;
}

.pt-20 {
	padding-top: 20px !important;
}

.text-primary {
	color: var(--bg-primary) !important;
}

/* Top Header
============================================================= */

#top_header {
	height: 40px;
	transition: all 0.3s;
	background: var(--bg-tertiary);
	font-family: var(--font-family-raleway-400);
	font-size: var(--font-size-standard-secondary);
}

.left-side-header {
	font-family: var(--font-family-raleway-700);
}

.govt-name {
	padding: 8px 0;
	line-height: 21px;
	font-size: var(--font-size-standard-secondary);
}

.govt-name img {
	height: 22px;
	margin: 0 10px 0 0;
}

.screen-reader {
	line-height: 21px;
	margin: 0 16px 0 0;
	padding: 0 16px 0 0;
	color: var(--text-black);
	font-size: var(--font-size-standard);
	border-right: 1px solid rgba(0, 0, 0, 0.5);
	font-family: var(--font-family-poppins-400);
}

.screen-reader img {
	width: 20px;
	height: 20px;
	margin: 0 4px 0 0;
	object-fit: contain;
}

.text-resizer a {
	width: 40px;
	height: 40px;
	display: flex;
	border-radius: 4px;
	align-items: center;
	justify-content: center;
}

.text-resizer a img {
	height: 13px;
	opacity: 0.7;
}

.text-resizer a.active,
.text-resizer a:hover {
	background: rgba(225, 90, 17, 0.16);
}

.text-resizer a.active img,
.text-resizer a:hover img {
	opacity: 1;
}

.dark-light-mode {
	margin: 0 12px;
	border-left: 1px solid rgba(0, 0, 0, 0.5);
	border-right: 1px solid rgba(0, 0, 0, 0.5);
}

.dark-light-mode a {
	height: 20px;
	display: flex;
	min-width: 20px;
	padding: 0 12px;
	line-height: 21px;
	align-items: center;
	justify-content: center;
	color: var(--text-black);
	font-size: var(--font-size-standard-secondary) !important;
}

.language-selector select {
	height: 40px;
	border: none;
	background: none;
	line-height: 40px;
	padding: 0 14px 0 10px;
	font-size: var(--font-size-standard);
	font-family: var(--font-family-raleway-700);
	background: url("../images/icon_arrow_down.png") no-repeat scroll right 2px center / 8px;
}

/* Header
============================================================= */

header {
	z-index: 2;
	height: 80px;
	padding: 10px 0;
	position: relative;
	transition: all 0.3s;
	background: #FFFFFF;
	box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.08);
}

.logo img {
	width: auto;
	height: 60px;
	object-fit: contain;
	transition: all 0.3s;
}

.logo img.logo-ncert {
	width: 180px;
	transition: all 0.3s;
	object-position: right;
}

/* Form Control Set
============================================================= */

.form-control-set {
	display: flex;
	padding: 30px 20px;
	position: relative;
	align-items: center;
	box-sizing: border-box;
	justify-content: center;
	min-height: calc(100vh - 120px);
}

.form-curverd-bg {
	top: 0;
	left: 0;
	z-index: 0;
	width: 100%;
	height: 350px;
	position: absolute;
}

.inner-form-control-set {
	z-index: 1;
	position: relative;
}

.inner-form-control-set {
	width: 100%;
	max-width: 440px;
	border-radius: 12px;
	background: #FFFFFF;
	box-sizing: border-box;
	padding: 30px 15px 20px;
	box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.25);
}

.inner-form-control-set h2 {
	margin: 0 0 8px;
	font-size: 24px;
	font-weight: 600;
	line-height: 42px;
	letter-spacing: 0.02em;
	color: var(--text-theme);
	font-family: var(--font-family-poppins-600);
}

.inner-form-control-set h6 {
	color: #576379;
	line-height: 24px;
	letter-spacing: 0.02em;
	font-size: var(--font-size-standard-secondary);
}

.inner-form-control-set ul {
	gap: 30px;
	padding: 0 65px;
	margin: 24px 0 0 0;
}

.inner-form-control-set ul li {
	width: 120px;
}

.inner-form-control-set ul li a {
	display: flex;
	text-align: center;
	align-items: center;
	flex-direction: column;
}

.inner-form-control-set ul li a figure {
	width: 120px;
	height: 120px;
	margin: 0 0 6px;
	overflow: hidden;
	border-radius: 6px;
	transform: scale(1);
	transition: all 0.5s;
}

.inner-form-control-set ul li a figure:hover {
	transform: scale(1.025);
}

.inner-form-control-set ul li a figuer img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.3s;
}

.inner-form-control-set ul li a p {
	width: 100%;
	padding: 0 10px;
	line-height: 20px;
	box-sizing: border-box;
	color: var(--text-black);
	font-family: var(--font-family-poppins-500);
	font-size: var(--font-size-standard-secondary);
}

.inner-form-control-set .form-sets {
	padding: 0 25px;
	margin: 20px 0 0 0;
}

.selected-role-value {
	font-size: 15px;
	color: #4B5563;
	text-align: center;
	font-family: var(--font-family-poppins-500);
}

.input-field-set {
	margin: 0 0 16px;
	position: relative;
}

.input-field-set label {
	margin: 0 0 10px;
	line-height: 24px;
	color: var(--text-black);
	font-size: var(--font-size-standard-secondary);
}

.input-field-set input,
.captcha-question,
.form-control {
	width: 100%;
	height: 40px;
	display: block;
	padding: 0 10px;
	font-size: 14px;
	line-height: 40px;
	border-radius: 4px;
	box-sizing: border-box;
	border: 1px solid var(--border-color);
}

.input-field-set input,
.captcha-question {
	height: 48px;
	line-height: 48px;
}

.form-control {
	font-family: var(--font-family-poppins-400);
}

.captcha-question img {
	width: 88%;
	height: 30px;
	margin: -6px 0 0 0;
	object-fit: contain;
	object-position: center;
}

.input-field-set.input-field-set-lebel-up input {
	border: 2px solid var(--text-theme);
}

.input-field-set.input-field-set-lebel-up span {
	top: -7px;
	left: 10px;
	padding: 0 6px;
	line-height: 16px;
	position: absolute;
	display: inline-flex;
	color: var(--text-theme);
	background: var(--bg-white);
	font-size: var(--font-size-standard);
}

.human-authentication {
	gap: 12px;
	align-items: stretch;
}

.reload-auth {
	min-width: 20px;
	font-size: 18px;
	color: var(--text-theme);
}

.human-authentication p {
	font-size: 18px;
	color: var(--text-black);
	font-family: var(--font-family-poppins-500);
}

.captcha-question {
	display: flex;
	font-size: 18px;
	text-align: center;
	align-items: center;
	justify-content: center;
}

.external-link a {
	line-height: 21px;
	color: var(--text-theme);
	font-family: var(--font-family-poppins-500);
	font-size: var(--font-size-standard-secondary);
}

.input-field-set>button {
	width: 100%;
	height: 40px;
	border: none;
	display: flex;
	padding: 0 15px;
	line-height: 40px;
	border-radius: 4px;
	position: relative;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	color: var(--text-white);
	background: var(--bg-primary);
	font-size: var(--font-size-standard-secondary);
}

.input-field-set>button:hover {
	background: var(--bg-primary-hover);
}

.disabled,
button:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

.input-field-set button.disabled:hover {
	background: var(--bg-primary);
}

.get-otp-code {
	margin: 0 0 12px;
	line-height: 24px;
	color: var(--text-black);
	font-size: var(--font-size-standard);
}

.get-otp-code .count-down {
	font-size: 14px;
	color: var(--text-theme);
	font-family: var(--font-family-poppins-700);
}


/* Dashboard
============================================================= */

.dashboard-box {
	display: flex;
	position: relative;
	align-items: flex-start;
}

/* Sidebar
============================================================= */

#sidebar,
#hpc_sidebar {
	width: 230px;
	position: relative;
	transition: all 0.3s;
	box-sizing: border-box;
	height: calc(100vh - 120px);
	background: var(--bg-primary) url("../images/img_sidebar_watermark.png") no-repeat scroll top 0px left 0px / cover;
}

.inner-sidebar {
	transition: all 0.3s;
}

.sidebar-top-head {
	padding: 12px 10px;
	overflow-y: auto;
	padding: 12px 10px;
	box-sizing: border-box;
	height: calc(100vh - 166px);
}

.user-info {
	margin: 0 0 10px;
}

.user-inner-info {
	border-radius: 4px;
	padding: 8px 10px 5px;
	background: rgba(255, 255, 255, 0.17);
}

.user-details h5 {
	font-size: 14px;
	overflow: hidden;
	line-height: 20px;
	text-overflow: ellipsis;
	color: var(--text-white);
	font-family: var(--font-family-poppins-500);
}

.user-details p {
	font-size: 11px;
	overflow: hidden;
	line-height: 21px;
	white-space: nowrap;
	text-overflow: ellipsis;
	color: var(--text-white);
}

.main-menu li+li {
	margin: 8px 0 0 0;
}

.main-menu li a,
.logout-set ul li a,
.logout-set ul li button {
	width: 100%;
	border: none;
	display: flex;
	border-radius: 4px;
	position: relative;
	background: transparent;
	align-items: flex-start;
	color: var(--text-white);
	padding: 8px 18px 8px 8px;
}

.main-menu li a i,
.logout-set ul li a i,
.logout-set ul li button i {
	width: 16px;
	height: 20px;
	line-height: 21px;
	text-align: center;
	box-sizing: border-box;
	font-size: var(--font-size-standard);
}

.logout-set ul li button img {
	width: 16px;
	height: 20px;
	object-fit: contain;
}

.main-menu li a .item-drop-menu {
	right: 0;
	width: 20px;
	position: absolute;
	transition: all 0.3s;
	transform: rotate(0deg);
}

.main-menu li a.active .item-drop-menu {
	transform: rotate(90deg);
}

.main-menu li a span,
.logout-set ul li a span,
.logout-set ul li button span {
	line-height: 21px;
	display: inline-flex;
	padding: 0 3px 0 8px;
	box-sizing: border-box;
	width: calc(100% - 20px);
	font-size: var(--font-size-standard);
	font-family: var(--font-family-poppins-500);
}

#hpc_sidebar .main-menu li a:hover {
	background: none;
	color: #FFF;
}

.main-menu li a.active,
.main-menu li a:hover,
#hpc_sidebar .main-menu li a.active {
	color: var(--text-theme);
	background: var(--bg-white);
}

.main-menu li a.active span {
	font-family: var(--font-family-poppins-600);
}

.logout-set {
	height: 46px;
	padding: 0 12px;
	box-sizing: border-box;
}

.logout-set ul {
	border-top: 1px solid var(--bg-white);
}

.logout-set ul li a,
.logout-set ul li button {
	width: auto;
	height: 26px;
	padding: 0 8px;
	line-height: 26px;
	margin: 10px 0 0 0;
	align-items: center;
	display: inline-flex;
}

.logout-set ul {
	border-top: 1px solid var(--bg-white);
}

.logout-set ul li a {
	height: 100%;
	align-items: center;
}

#hpc_sidebar .logout-set {
	height: 60px;
}

#hpc_sidebar .logout-set ul li button {
	height: 40px;
	line-height: 40px;
	box-sizing: border-box;
	padding: 0 14px 0 10px;
	color: var(--text-theme);
}

#hpc_sidebar .logout-set ul li button span {
	width: auto;
	font-size: 14px;
	margin: 0 10px 0 0;
	font-family: var(--font-family-poppins-600);
}

#hpc_sidebar .logout-set ul li button i {
	font-size: 14px;
}

.main-menu li ul {
	margin: 8px 0 0 0;
	position: relative;
	padding: 0 0 0 30px;
	transition: all 0.3s;
}

.main-menu>li>ul::before {
	top: 0;
	left: 14.5px;
	width: 3px;
	content: "";
	height: 100%;
	position: absolute;
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.6);
}

.main-menu>li>ul.left-bar-edge::before {
	height: calc(100% - 28px);
}

.main-menu li ul li a {
	padding: 8px 18px 8px 24px;
}

.main-menu li ul li a span {
	padding: 0;
	width: 100%;
}

.main-menu li ul li a::before {
	top: 16px;
	left: 12px;
	width: 4px;
	height: 4px;
	content: "";
	position: absolute;
	background: #FFFFFF;
	border-radius: 50px;
	transition: all 0.3s;
}

.main-menu li a:hover::before {
	background: var(--bg-primary);
}

.back-to-hpc {
	font-size: 14px;
	cursor: pointer;
	margin: 0 0 10px;
	line-height: 24px;
	color: var(--text-white);
	font-family: var(--font-family-poppins-600);
}

.back-to-hpc i {
	width: 24px;
	height: 24px;
	font-size: 20px;
	line-height: 24px;
	margin: 0 10px 0 0;
}

.text-theme {
	color: var(--text-theme);
}

.main-menu li ul li a.part-parent::before {
	top: 8px;
	left: -15px;
	width: 15px;
	height: 10px;
	background: none;
	border-radius: 0 0 0 10px;
	border-left: 3px solid rgba(255, 255, 255, 0.6);
	border-bottom: 3px solid rgba(255, 255, 255, 0.6);
}

.main-menu li ul li a.part-parent {
	padding: 8px 18px 8px 12px;
}

.main-menu li ul.part-parent-children {
	padding: 0 0 0 10px;
}

/* Main
============================================================= */

#main {
	box-sizing: border-box;
	width: calc(100% - 230px);
	height: calc(100vh - 120px);
	background: var(--bg-secondary);
}

#main.hpc-main {
	width: 100%;
	height: auto;
}

.inner-main {
	overflow-y: auto;
	padding: 0 0 15px;
	box-sizing: border-box;
	height: calc(100vh - 120px);
}

.custom-data-scroll {
	padding: 0 15px;
	overflow-y: auto;
	box-sizing: border-box;
	height: calc(100vh - 197px);
}

.data-not-available {
	display: flex;
	text-align: center;
	align-items: center;
	padding: 0 15px 30px;
	flex-direction: column;
	justify-content: center;
}

.data-not-available img {
	width: 180px;
	height: 180px;
	object-fit: contain;
}

.data-not-available p {
	margin: 0 auto;
	font-size: 12px;
	color: #666666;
	max-width: 600px;
	line-height: 22px;
}

/* Page Dashboard 
============================================================= */

.page-dashboard {
	padding: 20px;
	overflow: hidden;
	overflow-y: auto;
	height: calc(100vh - 120px);
}

#main.hpc-main .page-dashboard {
	padding: 0;
	height: auto;
	overflow: visible;
}

.outer-white {
	padding: 20px;
	margin: 0 0 16px;
	border-radius: 8px;
	position: relative;
	background: var(--bg-white);
	border: 1px solid rgba(0, 0, 0, 0.001);
	box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.05);
}

.stage-details {
	overflow: hidden;
	border-radius: 10px;
}

.stage-details figure {
	height: 120px;
	overflow: hidden;
}

.stage-details figure img {
	width: 100%;
	height: 120px;
	object-fit: cover;
	object-position: top;
	border-radius: 10px 10px 0 0;
}

.stage-name-count {
	padding: 8px 10px;
	text-align: center;
	color: var(--text-white);
	background: var(--bg-primary);
}

.stage-name-count h4 {
	font-size: 18px;
	line-height: 30px;
	color: var(--text-white);
	font-family: var(--font-family-poppins-600);
}

.stage-name-count p {
	line-height: 21px;
	color: var(--text-white);
	font-weight: var(--font-family-poppins-500);
	font-size: var(--font-size-standard-secondary);
}

.outer-graph figure img {
	width: 100%;
}

/* Title Bar 
============================================================= */

.title-bar {
	padding: 0 15px;
}

.inner-title-bar {
	height: 52px;
	padding: 10px 0;
	margin: 0 0 10px;
	box-sizing: border-box;
	border-bottom: 1px solid #EAEAEA;
}

.title-head .title-icon {
	width: auto;
	height: 30px;
	display: flex;
	font-size: 16px;
	line-height: 30px;
	align-items: center;
	color: var(--text-theme);
}

.title-bar-sequence {
	padding: 0 0 0 12px;
}

.title-bar-sequence li,
.title-bar-sequence li a {
	font-size: 14px;
	line-height: 30px;
	position: relative;
	margin: 0 12px 0 0;
	color: var(--text-primary);
	font-family: var(--font-family-poppins-500);
}

.title-bar-sequence li+li {
	padding: 0 0 0 16px;
	background: url("../images/icon_arrow_right.png") no-repeat scroll left 0px top 9px / 5px;
}

.title-bar-sequence li+li::before {
	font-size: 14px;
	line-height: 30px;
	margin: 0 12px 0 0;
	font-family: var(--font-family-poppins-500);
}

.title-bar-sequence li a {
	margin: 0;
}

.title-bar-sequence li a:hover {
	color: var(--text-theme);
}

.title-actions {
	min-height: 28px;
	padding: 0 0 0 10px;
	border-left: 1px solid #EAEAEA;
}

.custom-action,
.custom-action i {
	width: 28px;
	height: 28px;
	border: none;
	display: flex;
	font-size: 16px;
	line-height: 28px;
	border-radius: 4px;
	align-items: center;
	box-sizing: border-box;
	justify-content: center;
	color: var(--text-white);
	background: var(--bg-primary);
}

.title-bar-head-right {
	gap: 12px;
	display: flex;
	align-items: center;
}

.title-bar-select .custom-dropdown-wrapper {
	width: 190px;
}

.title-bar-select .custom-dropdown-wrapper .custom-dropdown-header .dropdown-clear {
	margin: 0;
	width: 22px;
	right: 26px;
	height: 30px;
	display: block;
	padding: 0 3px 2px;
	position: absolute;
	transition: all 0.3s;
	box-sizing: border-box;
	border-right: 1px solid #EAEAEA;
}

.title-bar-select .custom-dropdown-wrapper .custom-dropdown-header .dropdown-clear:hover {
	fill: var(--text-theme);
}

.page-search {
	position: relative;
}

.page-search input {
	width: 400px;
	height: 30px;
	display: block;
	line-height: 30px;
	border-radius: 4px;
	box-sizing: border-box;
	padding: 0 14px 0 30px;
	border: 1px solid #D3D3D3;
	font-size: var(--font-size-standard);
	background: var(--bg-white) url("../images/icon_search.png") no-repeat scroll left 8px center / 14px;
}

.page-search.manage-school-search input {
	width: 330px;
}

.confirmation-msg {
	line-height: 21px;
	margin: 6px 0 6px 12px;
	color: var(--text-secondary);
	font-size: var(--font-size-standard);
}

/* Note Box
============================================================= */

.note-box {
	gap: 16px;
	display: flex;
	padding: 20px 24px;
	border-radius: 6px;
	background: #FFFAF0;
	box-sizing: border-box;
	flex-direction: column;
	color: var(--text-secondary);
	border-left: 5px solid #E15A11;
	font-size: var(--font-size-standard);
	font-family: var(--font-family-poppins-500);
}

.note-box p span {
	color: var(--text-theme);
}

.note-box ul {
	padding: 0 0 0 20px;
}

.note-box ul li {
	list-style-type: disc;
}

/* Status Badge
============================================================= */

.status-badge {
	height: 24px;
	padding: 0 8px;
	min-width: 96px;
	line-height: 22px;
	border-radius: 4px;
	background: #f8f9fa;
	display: inline-block;
	border: 1px solid #EAEAEA;
	color: var(--text-secondary);
	font-size: var(--font-size-standard);
}

.status-not-assigned {
	color: #FF0000;
	background: #FFE9E9;
	border: 1px solid #FFCBCB;
}

.status-assigned,
.status-completed {
	color: #00934E;
	background: #DBFFEE;
	border: 1px solid #ADFFDA;
}

.status-in-progress {
	color: #664D03;
	background: #FFF3CD;
	border: 1px solid #FFE69C;
}

/* Acadmic Head
============================================================= */

.academic-year-banner {
	padding: 14px 20px;
	background: #FFE2CC;
	margin: -20px -20px 20px;
}

.acadmic-head i {
	width: 24px;
	height: 24px;
	font-size: 16px;
	line-height: 24px;
}

.acadmic-head h5 {
	font-size: 14px;
	line-height: 30px;
	margin: 0 0 0 10px;
	color: var(--text-black);
	font-family: Poppins-SemiBold;
}

.acadmic-head h5 span {
	color: var(--text-theme);
}

/* login Profile Border
============================================================= */

.create-login-ids {
	position: relative;
	border-radius: 8px;
	margin: 10px 0 20px;
	padding: 16px 15px 4px;
	border: 1px solid #EAEAEA;
}

.box-label {
	top: -10px;
	left: 10px;
	z-index: 1;
	color: #979797;
	padding: 0px 8px;
	position: absolute;
	font-family: var(--font-family-poppins-500);
	font-size: var(--font-size-standard-secondary);
	background: linear-gradient(180deg, #FFF9F2 37.5%, #FFF9F2 100%);
}

.login-check {
	position: relative;
}

.login-check>input[type="radio"]:checked,
.login-check>input[type="radio"]:not(:checked) {
	width: 16px;
	z-index: -1;
	height: 16px;
	position: absolute;
}

.login-check>input[type="radio"]:checked+span,
.login-check>input[type="radio"]:not(:checked)+span {
	width: 16px;
	height: 16px;
	cursor: pointer;
	margin: -2px 6px 0 0;
	position: relative;
	display: inline-block;
	color: var(--text-black);
	transition: all 0.2s ease;
	font-family: var(--font-family-poppins-500);
	font-size: var(--font-size-standard-secondary);
}

.login-check>input[type="radio"]:checked+span:before,
.login-check>input[type="radio"]:not(:checked)+span:before {
	top: 0;
	left: 0;
	width: 16px;
	content: '';
	height: 16px;
	position: absolute;
	border-radius: 100%;
	box-sizing: border-box;
	transition: all 0.2s ease;
	border: 2px solid #000000;
}

.login-check>input[type="radio"]:checked+span:before,
.login-check>input[type="radio"]:checked+span:hover:before,
.login-check>input[type="radio"]:not(:checked)+span:hover:before {
	border: 2px solid var(--bg-primary);
}

.login-check>input[type="radio"]:checked+span:after,
.login-check>input[type="radio"]:not(:checked)+span:after {
	top: 50%;
	left: 50%;
	width: 9px;
	height: 9px;
	content: '';
	position: absolute;
	border-radius: 100%;
	transition: all 0.2s ease;
	background: var(--bg-primary);
	transform: translate(-50%, -50%);
}

.login-check>input[type="radio"]:not(:checked)+span:after {
	opacity: 0;
}

.login-check>input[type="radio"]:checked+span:after {
	opacity: 1;
}

.login-check>p {
	line-height: 16px;
}

.label-note {
	color: #757575;
	margin: 4px 0 6px;
	line-height: 18px;
	font-size: var(--font-size-standard);
}

.active-input-check {
	background: #E3F5FF !important;
}

.btn-top-alignment {
	margin: 27px 0 0 0;
}

.info-note-box {
	padding: 14px 16px;
	line-height: 21px;
	border-radius: 6px;
	color: var(--text-secondary);
	font-size: var(--font-size-standard);
	font-family: var(--font-family-poppins-500);
	border: 1px solid rgba(191, 193, 197, 0.87);
}

.info-note-box ul {
	padding: 0 0 0 15px
}

.info-note-box ul li {
	list-style-type: disc;
}

/* HPC Form
============================================================= */

.h5-basic01 {
	font-size: 18px;
	margin: 0 0 10px;
	line-height: 24px;
	color: var(--bg-primary);
	text-transform: uppercase;
	font-family: var(--font-family-poppins-600);
}

.hpc-table .table-responsive {
	margin: 0 0 18px;
}

.hpc-table .table-responsive table {
	margin: 0 0;
}

.hpc-table table thead tr th {
	min-width: auto;
	font-size: 14px;
	padding: 6px 8px;
	line-height: 20px;
	font-weight: normal;
	color: var(--text-white);
	border: 1px solid #BFC1C5;
	background: var(--bg-primary);
	font-family: var(--font-family-poppins-600);
}

.hpc-table table tbody tr td {
	padding: 6px 8px;
	line-height: 20px;
	color: var(--text-black);
	background: var(--bg-white);
	border: 1px solid #BFC1C5;
	font-size: var(--font-size-standard);
}

.hpc-table table tbody tr td input {
	width: 100%;
	height: 22px;
	border: none;
	display: block;
	min-width: 50px;
	line-height: 22px;
	text-align: center;
	font-size: var(--font-size-standard-secondary);
}

.hpc-table table tbody tr td textarea {
	width: 100%;
	border: none;
	height: 46px;
	resize: none;
	display: block;
	line-height: 22px;
	box-sizing: border-box;
	font-size: var(--font-size-standard-secondary);
}

.hpc-table table thead tr td input::placeholder,
.hpc-table table tbody tr td textarea::placeholder {
	color: #94979E;
}

.hpc-table table.hpc-attedance-table thead tr th:first-child {
	min-width: 210px;
}

.first-td-active-bg {
	background: #FDE9D9 !important;
}

.first-td-active-bg-secondary {
	background: #FBD4B4 !important;
}

.first-td-active-bg-tertiary {
	background: #BF504D !important;
}

.hpc-banner-bg-outer {
	padding: 16px;
	border-radius: 6px;
	background: #FFE1D0;
	box-sizing: border-box;
	font-size: var(--font-size-standard-secondary);
}

.list-of-checkbox {
	margin: 0 0 16px;
}

.label-checkbox-check {
	position: relative;
	font-weight: normal;
}

.label-checkbox-check>input[type="checkbox"]:checked,
.label-checkbox-check>input[type="checkbox"]:not(:checked) {
	width: 16px;
	z-index: -1;
	height: 16px;
	position: absolute;
}

.label-checkbox-check>input[type="checkbox"]:checked+span,
.label-checkbox-check>input[type="checkbox"]:not(:checked)+span {
	cursor: pointer;
	line-height: 20px;
	position: relative;
	padding: 0 0 0 25px;
	display: inline-block;
	color: var(--text-black);
	transition: all 0.2s ease;
	font-size: var(--font-size-standard-secondary);
}

.label-checkbox-check>input[type="checkbox"]:checked+span:before,
.label-checkbox-check>input[type="checkbox"]:not(:checked)+span:before {
	left: 0;
	top: 1px;
	width: 18px;
	content: '';
	height: 18px;
	position: absolute;
	border-radius: 3px;
	box-sizing: border-box;
	transition: all 0.2s ease;
	background: var(--bg-white);
	border: 2px solid var(--bg-primary);
}

.label-checkbox-check>input[type="checkbox"]:checked+span:after,
.label-checkbox-check>input[type="checkbox"]:not(:checked)+span:after {
	top: 3px;
	left: 6px;
	content: '';
	width: 6px;
	height: 11px;
	position: absolute;
	display: inline-block;
	transform: rotate(45deg);
	transition: all 0.2s ease;
	border-right: 3px solid var(--bg-primary);
	border-bottom: 3px solid var(--bg-primary);
}

.label-checkbox-check>input[type="checkbox"]:not(:checked)+span:after {
	opacity: 0;
}

.label-checkbox-check>input[type="checkbox"]:checked+span:after {
	opacity: 1;
}

.hpc-textarea {
	width: 100%;
	resize: none;
	padding: 12px;
	height: 65px;
	display: block;
	border-radius: 4px;
	background: #FFFFFF;
	box-sizing: border-box;
	border: 1px solid #BFC1C5;
}

.hpc-forms {
	margin: 0 auto;
	max-width: 1200px;
	padding: 0 15px 20px;
	box-sizing: border-box;
}

.hpc-forms .outer-white {
	box-shadow: none;
	border-radius: 8px;
	background: #FFFFFF;
	box-sizing: border-box;
	border: 1px solid #E4E6E7;
}

.hpc-title-bar {
	top: 0;
	z-index: 99;
	padding: 18px 0;
	position: sticky;
	background: #FFFFFF;
	box-sizing: border-box;
	border-top: 1px solid #EAEAEA;
	box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
}

.hpc-inner-title-bar {
	margin: 0 auto;
	padding: 0 15px;
	max-width: 1200px;
	box-sizing: border-box;
}

.hpc-breadcrumb {
	width: 100%;
	max-width: 270px;
}

.hpc-breadcrumb li,
.hpc-breadcrumb li a {
	font-size: 14px;
	min-height: 24px;
	line-height: 24px;
	position: relative;
}

.hpc-breadcrumb li+li {
	margin: 0 0 0 8px;
	padding: 0 0 0 14px;
	font-family: var(--font-family-poppins-700);
}

.hpc-breadcrumb li+li::before {
	top: 6px;
	left: 2px;
	width: 6px;
	content: "";
	height: 14px;
	position: absolute;
	background: url(../images/icon_arrow_right.png) no-repeat scroll left center / 5px;
}

.hpc-title-head {
	font-size: 18px;
	line-height: 30px;
	text-align: center;
	color: var(--text-theme);
	font-family: var(--font-family-poppins-700);
}

.hpc-student-name {
	font-size: 14px;
	color: #4B5563;
	min-width: 200px;
	text-align: right;
	line-height: 24px;
	font-family: var(--font-family-poppins-500);
}

.stage-redirection-details {
	height: 100%;
	display: flex;
	padding: 14px;
	border-radius: 6px;
	align-items: center;
	flex-direction: column;
	justify-content: center;
	background: var(--bg-white);
	border: 1px solid #F7F7F7;
	box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
}

.stage-redirection-details figure {
	width: 100%;
	height: 160px;
	display: block;
	overflow: hidden;
	margin: 0 0 12px;
	border-radius: 12px;
}

.stage-redirection-details img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 12px;
	object-position: top;
}

.stage-redirection-details a,
.stage-redirection-details button {
	padding: 8px 15px;
	text-align: center;
	border-radius: 4px;
	color: var(--text-white);
	background: var(--bg-primary);
	font-size: var(--font-size-standard);
}

.hpc-activity-head {
	margin: -42px 0 0 0
}

.hpc-activity-head a {
	font-size: 20px;
	color: rgba(0, 0, 0, 0.2);
}

.hpc-activity-head a:hover {
	color: var(--text-theme);
}

.surrounding-form {
	padding: 20px;
	border-radius: 12px;
	background: #FDE4A4;
	box-sizing: border-box;
	border: 1px solid #D9D9D9;
}

.surrounding-form-frames {
	margin: 0 auto;
	max-width: 1100px;
	position: relative;
}

.frame-sets,
.frame-sets figure {
	overflow: hidden;
	position: relative;
}

.frame-sets figure button {
	transform: scale(1.1);
}

.this-me-upload {
	top: 33%;
	left: 20%;
	gap: 10px;
	z-index: 1;
	padding: 0;
	display: flex;
	position: absolute;
	align-items: center;
	flex-direction: column;
	box-sizing: border-box;
	justify-content: center;
	width: calc(100% - 40%);
	transform: rotate(-3deg);
	height: calc(100% - 47%);
}

.updalod-photo {
	width: 100%;
	height: 100%;
	overflow: hidden;
	border-radius: 10px;
}

.upload-year-old {
	top: 0;
	left: 40%;
	width: 150px;
	height: 86px;
	font-size: 24px;
	overflow: hidden;
	position: absolute;
	border-radius: 50%;
	background: #FFFFFF;
	border: 4px solid #f07d04;
}

.birthday-figure {
	right: 0;
	margin: 70px 0 0 0;
	position: absolute !important;
}

.birthday-figure input {
	top: 35.3%;
	left: 18%;
	height: 36px;
	border: none;
	font-size: 18px;
	line-height: 36px;
	text-align: center;
	position: absolute;
	background: #FFFFFF;
	width: calc(100% - 44%);
	transform: rotate(10deg);
}

.live-figure textarea {
	top: 36%;
	left: 12%;
	width: 100%;
	height: 40%;
	border: none;
	resize: none;
	display: block;
	font-size: 24px;
	line-height: 44px;
	padding: 24px 0 0;
	position: absolute;
	box-sizing: border-box;
	background: transparent;
	width: calc(100% - 19%);
	overflow: hidden;
}

.frame-family-grow {
	margin: -60px 0 0 0;
}

.frame-family-grow .this-me-upload {
	top: 26%;
	gap: 20px;
	border-radius: 15px;
	transform: rotate(0);
	width: calc(100% - 30%);
	height: calc(100% - 41%);
}

.frow-up-box input {
	top: 49%;
	left: 11%;
	height: 15%;
	width: 100%;
	border: none;
	display: block;
	font-size: 18px;
	line-height: 7.5%;
	text-align: center;
	position: absolute;
	background: #FFFFFF;
	width: calc(100% - 26%);
}

.friends-input {
	top: 20%;
	left: 31%;
	gap: 19px;
	display: flex;
	position: absolute;
	flex-direction: column;
	width: calc(100% - 44%);
}

.friends-input input {
	width: 100%;
	height: 40px;
	border: none;
	display: block;
	font-size: 18px;
	background: none;
	line-height: 40px;
}

.frame-my-fevorites {
	padding: 40px;
	max-width: 980px;
	position: relative;
	margin: 40px auto 0;
	background: #FFFFFF;
	box-sizing: border-box;
	border-radius: 70px 70px 0 0;
}

.img-star-left {
	top: 20px;
	left: -27px;
	position: absolute;
}

.img-star-right {
	top: -40px;
	right: 64px;
	position: absolute;
}

.frame-my-fevorites ul {
	display: flex;
	gap: 10px 40px;
	flex-wrap: wrap;
}

.frame-my-fevorites ul li {
	gap: 20px;
	display: flex;
	flex-wrap: wrap;
	width: calc(50% - 20px);
}

.frame-my-fevorites ul li div {
	width: 50%;
}

.frame-my-fevorites ul li input {
	border: none;
	height: 40px;
	font-size: 15px;
	line-height: 38px;
	text-align: center;
	box-sizing: border-box;
	padding: 0 10px 0 20px;
	width: calc(50% - 20px);
	background: transparent url("../images/bg_input_fav_.png") no-repeat scroll 0 0 / 100% 40px;
}

.part-activity {
	margin: 20px 0 0 0;
}

.hpc-inner-table thead tr th {
	padding: 8px;
	font-size: 14px;
	list-style: 20px;
	color: var(--text-white);
	background: var(--bg-primary);
	font-family: var(--font-family-poppins-600);
}

.hpc-inner-table thead tr td {
	padding: 8px;
	background: #FFFFFF;
}

.part-b-actions {
	margin: -42px 0 20px 0;
}

.part-b-actions .activity-trash {
	width: 30px;
	border: none;
	height: 30px;
	display: flex;
	font-size: 20px;
	background: none;
	align-items: center;
	justify-content: center;
	color: rgba(0, 0, 0, 0.2);
}

.part-b-actions .activity-trash:hover {
	color: var(--text-theme);
}

.hpc-table.hpc-table-part-b table thead tr th,
.hpc-table.hpc-table-part-b table tbody tr td {
	border: 2px solid var(--bg-primary);
}

.hpc-table table tbody tr td .curricular-goals-checks {
	overflow-y: auto;
	min-height: 200px;
	max-height: 240px;
}

.hpc-table table tbody tr td .curricular-goals-checks ul li+li {
	margin: 12px 0 0;
}

.hpc-table table tbody tr td .curricular-goals-checks ul li input {
	width: 18px;
	height: 18px;
	min-width: auto;
	line-height: 18px;
	margin: 0 10px 0 0;
	transition: all 0.3s;
}

.hpc-table table tbody tr td .curricular-goals-checks ul li label {
	line-height: 18px;
	width: calc(100% - 28px);
}

.curricular-goals-checks ul li strong {
	color: var(--bg-primary);
}

.comment-box {
	font-size: 14px;
	list-style: 22px;
	text-align: center;
	padding: 0 20px 20px;
	color: var(--text-theme);
	font-family: var(--font-family-poppins-600);
	min-height: 200px;
	max-height: 240px;
}

.comment-box img {
	margin: 0 0 10px;
}

.hpc-table.hpc-table-part-b table tbody tr td textarea {
	height: 175px;
}

.hpc-table.hpc-table-part-b table.assessment-rubric-table thead tr th,
.hpc-table.hpc-table-part-b table.assessment-rubric-table tbody tr th,
.hpc-table.hpc-table-part-b table.assessment-rubric-table tbody tr td {
	border: 1px solid var(--bg-primary);
}


.hpc-table.hpc-table-part-b table.assessment-rubric-table thead tr th:first-child {
	min-width: 140px;
}

.hpc-table.hpc-table-part-b table.assessment-rubric-table tbody tr th {
	padding: 8px;
	line-height: 20px;
	text-align: center;
	font-weight: normal;
	background: #FFBE85;
	color: var(--text-black);
	font-family: var(--font-family-poppins-500);
}

.hpc-table.hpc-table-part-b table.assessment-rubric-table tbody tr td textarea {
	min-height: auto;
}

.radio-textarea {
	display: flex;
	align-items: flex-start;
}

.hpc-table table tbody tr td .radio-textarea input {
	width: 16px;
	height: 16px;
	min-width: 16px;
	margin: 0 6px 0 0;
}

.hpc-table table tbody tr td .radio-textarea textarea {
	height: 78px;
	padding: 2px 6px;
	line-height: 18px;
	border-radius: 4px;
	width: calc(100% - 22px);
	border: 1px solid #BFC1C5;
}

.hpc-table.hpc-table-part-b table.assessment-rubric-table.credit-earned-table tbody tr th {
	width: 25%;
}

.hpc-table.hpc-table-part-b table.assessment-rubric-table.credit-earned-table thead tr th {
	width: 20%;
	background: #E36C08;
	border-color: #FABF8F;
}

.hpc-table.hpc-table-part-b table.assessment-rubric-table.credit-earned-table tbody tr th,
.hpc-table.hpc-table-part-b table.assessment-rubric-table.credit-earned-table tbody tr td {
	width: 20%;
	border-color: #FABF8F;
	vertical-align: middle;
}

.hpc-table.hpc-table-part-b table.assessment-rubric-table.credit-earned-table tbody tr td input {
	height: 30px;
	padding: 0 8px;
	text-align: left;
	line-height: 28px;
	border-radius: 4px;
	box-sizing: border-box;
	border: 1px solid #BFC1C5;
}

.hpc-table.hpc-table-part-b table.assessment-rubric-table tbody tr th.appropriate-level {
	width: 40%;
	min-width: 360px;
}

.levels-of-proficiency {
	width: 340px;
	height: 350px;
	margin: 10px auto;
	position: relative;
}

.level-sky {
	top: 0;
	left: 0;
	z-index: 1;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	position: absolute;
	background: url(../images/img_level_sky.jpg) no-repeat scroll center center / cover;
}

.level-mountain {
	left: 50%;
	bottom: 0;
	z-index: 2;
	width: 270px;
	height: 275px;
	position: absolute;
	border-radius: 50%;
	box-sizing: border-box;
	transform: translateX(-50%);
	border: 1px solid #FFFFFF;
	background: url(../images/img_level_mountain.png) no-repeat scroll center center / cover;
}

.level-stream {
	left: 50%;
	bottom: 0;
	z-index: 3;
	width: 170px;
	height: 175px;
	overflow: hidden;
	position: absolute;
	border-radius: 50%;
	box-sizing: border-box;
	transform: translateX(-50%);
	border: 1px solid #FFFFFF;
	background: url(../images/img_level_stream.jpg) no-repeat scroll center center / cover;
}

.levels-of-proficiency>p {
	left: 0;
	top: 100px;
	position: absolute;
}

.levels-of-proficiency>p,
.proficiency-level-inputs p {
	z-index: 9;
	width: 100px;
	font-size: 15px;
	line-height: 22px;
	position: relative;
	margin: 0 0 0 20px;
	color: var(--text-black);
	font-family: var(--font-family-poppins-600);
}

.proficiency-level-inputs {
	top: 10px;
	width: 100px;
	display: flex;
	position: absolute;
	left: calc(50% - 30px);
	flex-direction: column;
}

.leveling-custom-dropdown {
	left: 140px;
	width: 104px;
	position: absolute;
}

.leveling-custom-dropdown .custom-dropdown-header {
	cursor: pointer;
	padding: 0 8px 0 8px;
}

.leveling-custom-dropdown .custom-dropdown-header .fa-angle-down {
	top: 50%;
	right: 3px;
	width: 10px;
	height: 10px;
	font-size: 11px;
	position: absolute;
	transform: translateY(-50%);
}

.leveling-custom-dropdown .custom-dropdown-menu {
	margin: 0;
}

.leveling-custom-dropdown .options-scroll {
	max-height: 98px;
}

.leveling-custom-dropdown .options-scroll .custom-dropdown-item {
	line-height: 14px;
}

.leveling-custom-dropdown .options-scroll .custom-dropdown-item input {
	width: 13px;
	height: 13px;
	min-width: auto;
}

.leveling-custom-dropdown.sky-dropdown {
	top: 34px;
	z-index: 9;
}

.leveling-custom-dropdown.mountain-dropdown {
	top: 110px;
	z-index: 8;
}

.leveling-custom-dropdown.stream-dropdown {
	top: 210px;
	z-index: 7;
}

.proficiency-level-inputs p {
	margin: 0 0 6px 0;
	line-height: 20px;
	font-family: var(--font-family-poppins-500);
}

.hpc-table table tbody tr td .proficiency-level-inputs input,
.proficiency-level-inputs input {
	width: 100%;
	height: 32px;
	display: block;
	padding: 0 8px;
	font-size: 14px;
	text-align: left;
	line-height: 30px;
	border-radius: 4px;
	background: var(--bg-white);
	border: 1px solid #BFC1C5;
}

.show-proficiency-level {
	top: 10px;
	width: 2px;
	z-index: 9;
	left: 120px;
	position: absolute;
	background: #170851;
	height: calc(100% - 25px);
}

.show-proficiency-level::before {
	top: 6px;
	left: 0px;
	content: "";
	width: 13px;
	height: 13px;
	position: absolute;
	box-sizing: border-box;
	border-top: 3px solid #170851;
	border-left: 3px solid #170851;
	transform: rotate(45deg) translateX(-8px);
}

.hpc-table.hpc-table-part-b table.assessment-rubric-table tbody tr td textarea.proficiency-textarea {
	height: 370px;
}

.bottom-picture-info {
	font-size: 14px;
	line-height: 22px;
}

.bottom-picture-info span {
	margin: 0 2px 0 0;
	position: relative;
	font-family: var(--font-family-poppins-600);
}

.bottom-picture-info span::before {
	top: -4px;
	left: -4px;
	content: "";
	position: absolute;
	border-radius: 50%;
	width: calc(100% + 8px);
	height: calc(100% + 8px);
	border: 2px solid #FF0000;
}

.all-assessment-feedback {
	gap: 8px;
	display: flex;
	align-items: stretch;
	padding: 15px 5px 5px;
}

.assessment-name {
	width: 120px;
	font-size: 14px;
	min-width: 120px;
	overflow: hidden;
	color: #FFFFFF;
	line-height: 18px;
	border-radius: 14px;
	box-sizing: border-box;
	font-family: var(--font-family-poppins-500);
}

.self-assessment .assessment-name-bg {
	background: #735AB8;
}

.peer-assessment .assessment-name-bg {
	background: #1B63AE;
}

.assessment-name-bg {
	width: 100%;
	height: 100%;
	display: flex;
	text-align: center;
	padding: 10px 20px;
	align-items: center;
	box-sizing: border-box;
	justify-content: center;
}

.working-head {
	display: flex;
	margin: 0 0 4px;
	font-size: 14px;
	line-height: 18px;
	padding: 4px 24px;
	text-align: center;
	border-radius: 6px;
	align-items: center;
	justify-content: center;
	color: var(--text-white);
}

.working-rating {
	border-radius: 6px;
}

.self-assessment .doing-this-work {
	min-width: 230px;
}

.self-assessment .found-this-work {
	min-width: 230px;
}

.self-assessment .needed-this-work,
.peer-assessment .needed-this-work {
	width: 100%;
}

.self-assessment .doing-this-work .working-head {
	background: #50BF06;
}

.self-assessment .found-this-work .working-head {
	background: #EC6DAC;
}

.self-assessment .needed-this-work .working-head {
	background: #4AB7DE;
}

.peer-assessment .doing-this-work .working-head {
	background: #50BF06;
}

.peer-assessment .found-this-work .working-head {
	background: #EC6DAC;
}

.peer-assessment .needed-this-work .working-head {
	background: #4AB7DE;
}

.doing-this-work .working-rating {
	background: #F1F9E1;
}

.found-this-work .working-rating {
	background: #FEEDF7;
}

.needed-this-work .working-rating {
	background: #EFF6FE;
}

.working-rating ul {
	display: flex;
	padding: 4px 0 8px;
	align-items: stretch;
	justify-content: center;
}

.working-rating ul li {
	width: 75px;
	padding: 0 10px;
	transition: all 0.3s;
}

.working-rating ul li+li {
	border-left: 1px dashed #666666;
}

.working-rating ul li figure {
	padding: 5px;
	margin: 0 0 8px;
	position: relative;
	transition: all 0.3s;
	display: inline-block;
}

.working-rating ul li figure::before {
	left: 50%;
	width: 36px;
	height: 4px;
	content: "";
	bottom: -2px;
	position: absolute;
	transition: all 0.3s;
	transform: translateX(-50%);
	background: url("/images/img_bottom_shadow.png") no-repeat scroll center center / cover;
}

.working-rating ul li figure img {
	width: 45px;
	height: 45px;
	opacity: 0.5;
	object-fit: contain;
	transition: all 0.3s;
}

.needed-this-work .working-rating ul {
	justify-content: flex-start;
}

.needed-this-work .working-rating ul li {
	width: auto;
	min-width: 83px;
}

.needed-this-work .working-rating ul li figure {
	width: 64px;
	height: 64px;
}

.needed-this-work .working-rating ul li figure img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.needed-this-work .working-rating ul li figure::before {
	display: none;
	transition: all 0.3s;
}

.working-rating ul li p {
	line-height: 14px;
	transition: all 0.3s;
	font-family: var(--font-family-poppins-500);
}

.working-rating ul li figure::after {
	top: 0;
	left: 0;
	width: 100%;
	content: "";
	height: 100%;
	position: absolute;
	border-radius: 50%;
	transition: all 0.3s;
	box-sizing: border-box;
	border: 3px solid #ff000000;
}

.working-rating ul li:hover {
	cursor: pointer;
}

.working-rating ul li.feed-back-circle figure::after,
.working-rating ul li:hover figure::after {
	border: 3px solid #ff0000;
}

.working-rating ul li.feed-back-circle figure img,
.working-rating ul li:hover figure img {
	opacity: 1;
}

.working-rating ul li.feed-back-circle p,
.working-rating ul li:hover p {
	color: #ff0000;
}

.needed-this-work .working-rating ul li.teaching-textarea {
	min-width: 200px;
}

.needed-this-work .working-rating ul li.teaching-textarea p {
	padding: 8px 0;
}

.needed-this-work .working-rating ul li.teaching-textarea textarea {
	width: 100%;
	display: block;
	padding: 5px 6px;
	line-height: 18px;
	border: 1px solid #BFC1C5;
	height: 85px;
}

.part-c-summary {
	display: flex;
	margin: 40px 0 0 0;
}

.leveling-summary-head {
	width: 350px;
}

.leveling-summary-head h3 {
	font-size: 25px;
	margin: 0 0 10px;
	line-height: 26px;
	text-align: center;
	color: var(--text-black);
	font-family: var(--font-family-poppins-600);
}

.leveling-summary-head h3 span {
	font-size: 32px;
	color: #CD0000;
	line-height: 26px;
}

.leveling-summary-head .levels-of-proficiency {
	margin: 0 auto 30px;
}

.leveling-summary-tables {
	margin: 0 0 0 20px;
	padding: 0 20px 30px;
	box-sizing: border-box;
	width: calc(100% - 370px);
	background: url("/images/bg_subtract.png") no-repeat scroll bottom center / 100%;
}

.inner-leveling-summary {
	padding: 30px;
	background: #FFE8D4;
}

.inner-leveling-summary ul li {
	margin: 0 0 38px;
}

.inner-leveling-summary ul li:last-child {
	margin: 0 0 0 0;
}

.inner-leveling-summary ul li h6 {
	font-size: 14px;
	margin: 0 0 14px;
	line-height: 20px;
	color: var(--text-black);
	font-family: var(--font-family-poppins-500);
}

.inner-leveling-summary ul li textarea {
	width: 100%;
	resize: none;
	height: 140px;
	padding: 10px;
	display: block;
	background: #FDD3AF;
	box-sizing: border-box;
	border: 1px solid #D9D9D9;
}

.back-menus {
	min-width: 200px;
}

.back-menus a,
.back-menus button {
	gap: 6px;
	border: none;
	display: flex;
	font-size: 14px;
	color: #4B5563;
	background: none;
	line-height: 24px;
	align-items: center;
	font-family: var(--font-family-poppins-500);
}

.back-menus a span,
.back-menus button span {
	text-decoration: underline;
}

.back-menus a:hover,
.back-menus button:hover .back-menus a:hover {
	color: var(--text-theme);
}

.back-menus-btn {
	min-width: 200px;
}

.back-menus-btn {
	gap: 6px;
	display: flex;
	font-size: 14px;
	color: #4B5563;
	line-height: 24px;
	align-items: center;
	font-family: var(--font-family-poppins-500);
}

.back-menus-btn span {
	text-decoration: underline;
}

.back-menus-btn:hover i,
.back-menus-btn:hover span {
	color: var(--text-theme);
}

.stages-steps {
	padding: 0 15px;
	max-width: 1200px;
	margin: 20px auto 0;
	box-sizing: border-box;
}

.stages-steps ul {
	display: flex;
	justify-content: space-between;
}

.stages-steps ul li {
	width: 100%;
	display: flex;
	position: relative;
	flex-direction: column;
}

.stages-steps ul li:last-child {
	width: auto;
}

.stages-steps ul li p {
	z-index: 9;
	width: 34px;
	display: flex;
	font-size: 14px;
	margin: 0 0 20px;
	color: #4B5563;
	line-height: 34px;
	border-radius: 50%;
	position: relative;
	align-items: center;
	background: #E5E7EB;
	justify-content: center;
	font-family: var(--font-family-poppins-600);
}

.part-name {
	left: 0;
	bottom: 0;
	z-index: 9;
	color: #4B5563;
	line-height: 16px;
	position: absolute;
	white-space: nowrap;
	font-family: var(--font-family-poppins-500);
}

.stages-steps ul li:last-child .part-name {
	right: 0;
	left: auto;
}

.stages-steps ul li.active p {
	color: var(--text-white);
	background: var(--bg-primary);
}

.stages-steps ul li.active .part-name {
	color: var(--text-theme);
}

.stages-steps ul li::before {
	left: 0;
	top: 16px;
	z-index: 0;
	width: 100%;
	height: 3px;
	content: "";
	position: absolute;
	background: #E5E7EB;
}

.stages-steps ul li.active.active-arrow::before {
	background: var(--bg-primary);
}

.stages-steps ul li::after {
	top: 11px;
	right: 1px;
	width: 13px;
	content: "";
	z-index: 11;
	height: 13px;
	border-radius: 2px;
	position: absolute;
	box-sizing: border-box;
	transform: rotate(45deg);
	border-left: 7px solid transparent;
	border-bottom: 7px solid transparent;
	border-top: 7px solid #E5E7EB;
	border-right: 7px solid #E5E7EB;
}

.stages-steps ul li:last-child::after {
	display: none;
}

.stages-steps ul li.active.active-arrow::after {
	border-left: 7px solid transparent;
	border-bottom: 7px solid transparent;
	border-top: 7px solid var(--bg-primary);
	border-right: 7px solid var(--bg-primary);
}

.stage-part-head {
	margin: 24px 0;
}

.stage-part-head h5 {
	font-size: 20px;
	line-height: 30px;
	color: var(--text-black);
	font-family: var(--font-family-poppins-600);
}

.stage-activity-buttons {
	padding: 22px 0 0 0;
}

.hpc-action-buttons-submit .custom-btn {
	height: 40px;
	font-size: 14px;
	min-width: 160px;
	line-height: 40px;
}

.list-style-type-dice {
	padding: 0 0 0 16px;
}

.list-style-type-dice li {
	list-style-type: disc;
}

.student-hpc-bg {
	position: relative;
	background: #FFFFFF;
}

.student-hpc-bg>img {
	width: 100%;
}

.inner-student-naming {
	top: 50%;
	left: 100px;
	position: absolute;
	transform: translateY(-60%);
}

.inner-student-naming h1 {
	font-size: 28px;
	color: var(--text-theme);
	font-family: var(--font-family-poppins-500);
}

.inner-student-naming h6 {
	font-size: 18px;
	line-height: 26px;
	margin: 10px 0 20px;
	font-family: var(--font-family-poppins-500);
}

.inner-student-naming button a {
	height: 40px;
	font-size: 14px;
	line-height: 40px;
}

/* 
============================================================= */

/* Dark Mode Theme
============================================================= */

.dark-mode {

	#top_header {
		color: var(--text-white);
		background: var(--bg-black);
	}

	.screen-reader,
	.dark-light-mode a,
	.dark-mode .screen-reader,
	.language-selector select {
		color: var(--text-white);
	}

	.language-selector select {
		background: url("../images/icon_arrow_down_white.png") no-repeat scroll right 2px center / 8px;
	}

	.language-selector select option {
		color: var(--text-secondary);
	}

	.screen-reader img,
	.text-resizer a img {
		-webkit-filter: invert(100%);
		filter: invert(100%);
	}

	.screen-reader,
	.dark-light-mode {
		border-color: rgba(255, 255, 255, 0.5);
	}

	.text-resizer a.active,
	.text-resizer a:hover {
		background: rgb(255 255 255 / 25%);
	}

	.form-control-set {
		background: var(--bg-black);
	}

	#sidebar {
		background: var(--bg-black) url("../images/img_sidebar_watermark.png") no-repeat scroll top 0px left 0px / cover;
	}

	#main {
		background: var(--bg-black);
		border-left: 1px solid rgba(255, 255, 255, 0.2);
	}

	.record-counts,
	.select-years span,
	.number-of-pagination,
	.title-bar-sequence li,
	.title-bar-sequence li a,
	.custom-input-label label,
	.data-not-available p,
	.custom-link {
		color: var(--text-white);
	}

	.custom-dropdown-header label {
		color: var(--text-primary);
	}

	.outer-white .custom-input-label label {
		color: var(--text-black);
	}

	.custom-btn-default,
	.custom-btn-secondary {
		background: var(--bg-white);
	}

	.title-bar-sequence li+li {
		background: url("../images/icon_arrow_right_white.png") no-repeat scroll left 0px top 8px / 5px;
	}

	.info-note-box {
		background: var(--bg-white);
	}

}

/* For readonly forms
====================================================================================================== */

.edit-mode-container {
	position: relative;
}

.edit-mode-overlay::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: gray;
	z-index: 10;
	pointer-events: all;
	opacity: 10%;
}

.disabled-link {
	opacity: 0.5;
	cursor: not-allowed;
}

.input-error {
	border: 1px solid var(--bg-danger) !important;
}

.input-error:focus {
	outline: none;
	box-shadow: 0 0 0 2px rgba(255, 0, 0, 0.3);
}

.required-input {
	color: var(--bg-danger);
	margin: 4px 0 0 0;
	display: block;
}

.title-bar-select-sp {
	position: relative;
	width: 100%;
}

.title-bar-select-sp .filter-btn-sp {
	display: none;
}

.verification-box {
	padding: 50px 30px;
	border: 1px solid #eaeaea;
	border-radius: 10px;
	box-shadow: 0px 0px 10px -6px grey;
	max-width: 700px;
	margin: 0 auto;
}

.verification-box h2 {
	font-size: 25px;
	font-weight: bold;
}

.verification-box p {
	font-size: 14px;
	margin: 10px 0 20px;
}

.description-readar {
	padding: 10px 10px 5px;
}

.description-readar label {
	margin: 5px 0 0 0;
	color: var(--bg-black);
	text-transform: uppercase;
	font-family: var(--font-family-poppins-600);
}

.hpc-attedance-preparatory-table tr td table tr:last-child th,
.hpc-attedance-preparatory-table tr td table tr:last-child td {
	border-bottom: 0 !important;
}

.hpc-attedance-preparatory-table tr td table tr td input[type="radio"] {
	width: 18px !important;
	height: 18px !important;
	margin: 0 auto !important;
	line-height: 18px !important;
	min-width: 18px !important;
}

.hpc-table.hpc-table-part-b table.assessment-rubric-table tbody tr td textarea.preparatory-input-textarea {
	resize: none;
	height: 102px;
	overflow: hidden;
	line-height: 30px;
	background: url('/images/bg_dashed_lines.png') repeat-y left top / 100% 30px;
}

.appropriate-option-select {
	position: relative;
	padding: 16px 20px 0;
}

.appropriate-option-select::after {
	left: 0;
	bottom: 0;
	z-index: 1;
	width: 100%;
	content: "";
	height: 32px;
	position: absolute;
	background: var(--bg-primary);
}

.appropriate-option-select ul {
	display: flex;
	align-items: flex-start;
	justify-content: center;
}

.appropriate-option-select ul li {
	z-index: 9;
	padding: 0 10px 0;
	position: relative;
	text-align: center;
}

.appropriate-option-select ul li figure {
	width: 80px;
	height: 80px;
	padding: 10px;
	margin: 0 0 10px;
	position: relative;
}

.appropriate-option-select ul li figure img {
	width: 60px;
	height: 60px;
	object-fit: contain;
}

.active-circle-smile {
	top: 0px;
	left: 0px;
	opacity: 0;
	width: 80px;
	height: 80px;
	position: absolute;
	border-radius: 50%;
	transition: all 0.3s;
	border: 3px solid #F93C4A;
}

.appropriate-option-select ul li p {
	font-size: 14px;
	line-height: 32px;
	color: var(--text-white);
	font-family: var(--font-family-poppins-600);
}

.appropriate-option-select ul li:hover {
	cursor: pointer;
}

.appropriate-option-select ul li:hover figure .active-circle-smile,
.appropriate-option-select ul li.active-check-smiley figure .active-circle-smile {
	opacity: 1;
}

.appropriate-option-select ul li:hover p,
.appropriate-option-select ul li.active-check-smiley p {
	color: #000000;
	transition: all 0.3s;
}

.ellipsis-circle {
	top: 20px;
	right: 20px;
	width: 161px;
	height: 62px;
	display: flex;
	font-size: 16px;
	border-radius: 50%;
	position: absolute;
	text-align: center;
	align-items: center;
	justify-content: center;
	color: var(--text-white);
	background: var(--bg-primary);
	font-family: var(--font-family-poppins-600);
}

.feedback-bg-names {
	position: relative;
	margin: 30px 0 20px;
}

.feedback-bg-names>img {
	width: 100%;
}

.feed-names {
	top: 50%;
	left: 10px;
	display: flex;
	position: absolute;
	align-items: center;
	width: calc(100% - 20px);
	transform: translateY(-50%);
}

.feed-names p {
	width: 130px;
}

.feed-names>div {
	width: calc(100% - 130px) !important;
	display: flex;
	flex-direction: column;
}

.feed-names input,
.children-specific-box input {
	border: none !important;
	height: 26px !important;
	text-align: left !important;
	background: none !important;
	line-height: 26px !important;
	width: calc(100% - 130px) !important;
	border-bottom: 1px solid rgba(0, 0, 0, 0.7) !important;
}

.feed-names input {
	width: 100% !important;
}

.childrens-resources ul {
	gap: 20px;
	display: flex;
	margin: 30px 0;
	flex-wrap: wrap;
	justify-content: space-between;
}

.childrens-resources ul li {
	gap: 6px;
	display: flex;
	padding: 0 0 24px;
	position: relative;
	align-items: center;
	flex-direction: column;
	justify-content: flex-start;
}

.childrens-resources ul li figure,
.childrens-resources ul li figure img {
	width: 96px;
	height: 96px;
	object-fit: contain;
}

.childrens-resources ul li .label-container {
	gap: 6px;
	width: 140px;
	display: flex;
	padding: 0 0 6px;
	text-align: center;
	flex-direction: column;
}

.childrens-resources ul li .label-container label {
	display: block;
	font-size: 14px;
	line-height: 22px;
	color: var(--bg-black);
	font-family: var(--font-family-poppins-600);
}

.childrens-resources ul li .label-container span {
	display: block;
	font-size: 12px;
	line-height: 18px;
}

.childrens-resources ul li input {
	left: 50%;
	bottom: 0;
	width: 18px;
	height: 18px;
	position: absolute;
	transform: translateX(-50%);
}

.children-specific-box {
	align-items: center !important;
	display: flex;
	margin: 0 0 30px;
}

.children-specific-box>p {
	font-family: var(--font-family-poppins-600);
	width: 180px;
}

.children-specific-box>div {
	width: calc(100% - 180px) !important;
}

.children-specific-box>div input {
	border-width: 2px !important;
	width: 100% !important;
}

.need-children-support-check ul {
	display: flex;
	flex-wrap: wrap;
}

.need-children-support-check ul li {
	width: 50%;
	display: flex;
	align-items: stretch;
	box-sizing: border-box;
	border-bottom: 1px solid var(--bg-primary);
}

.need-children-support-check ul li:last-child {
	border-bottom: none;
}

.need-children-support-check ul li:nth-child(odd) {
	border-right: 1px solid var(--bg-primary);
}

.need-children-support-check ul li label {
	width: 40px;
	display: flex;
	padding: 10px;
	box-sizing: border-box;
	align-items: flex-start;
	justify-content: center;
}

.need-children-support-check ul li label input {
	width: 18px !important;
	height: 18px !important;
	min-width: auto !important;
	line-height: 18px !important;
}

.need-children-support-check ul li .inner-need-children {
	padding: 10px;
	box-sizing: border-box;
	width: calc(100% - 40px);
	border-left: 1px solid var(--bg-primary);
	font-family: var(--font-family-poppins-500);
}

.need-children-support-check .inner-need-children .children-specific-box {
	display: flex;
}

.need-children-support-check .inner-need-children .children-specific-box p {
	width: 60px;
	border: none;
	font-family: var(--font-family-poppins-500);
}

.need-children-support-check .inner-need-children .children-specific-box input {
	border-width: 1px !important;
	width: calc(100% - 60px) !important;
}

.outer-white-preparatory {
	margin: 0 auto;
	max-width: 1080px;
}

.outer-white-preparatory .row {
	gap: 30px;
	justify-content: center;
}

.outer-white-preparatory .row .col-md-6 {
	gap: 20px;
	width: auto;
	display: flex;
	min-width: 480px;
	flex-direction: column;
}

.frame-outers {
	overflow: hidden;
	position: relative;
}

.frame-outers img {
	width: 100%;
	max-width: 440px;
}

.frame-outers input {
	height: 28px;
	border: none;
	font-size: 17px;
	background: none;
	line-height: 28px;
	position: absolute;
	font-family: Poppins-Medium;
}

.frame-outers input.pre-my-name-is {
	top: 60px;
	left: 25px;
	z-index: 1;
	width: 256px;
}

.frame-outers input.pre-my-age-is {
	top: 136px;
	z-index: 1;
	left: 85px;
	width: 90px;
}

.frame-outers .pre-about-me-0 {
	top: 371px;
	z-index: 1;
	left: 117px;
	width: 148px;
	transform: rotate(53deg);
}

.frame-outers .pre-about-me-1 {
	top: 296px;
	z-index: 1;
	left: 130px;
	width: 165px;
	transform: rotate(76deg);
}

.frame-outers .pre-about-me-2 {
	top: 370px;
	z-index: 1;
	left: 224px;
	width: 105px;
	transform: rotate(87deg);
}

.frame-outers .pre-about-me-3 {
	top: 237px;
	z-index: 1;
	left: 205px;
	width: 246px;
	transform: rotate(99deg);
}

.frame-outers .pre-about-me-4 {
	top: 319px;
	z-index: 1;
	left: 256px;
	width: 212px;
	transform: rotate(105.5deg);
}

.frame-outers input.pre-one-person {
	top: 166px;
	left: 32px;
	z-index: 1;
	width: 240px;
}

.frame-outers textarea {
	border: none;
	font-size: 16px;
	background: none;
	position: absolute;
	font-family: Poppins-Medium;
}

.frame-outers textarea.pre-pencil-grow-up {
	top: 64px;
	left: 118px;
	z-index: 1;
	width: 178px;
	height: 88px;
	resize: none;
	overflow: hidden;
	line-height: 30px;
}

.upload-family-photo {
	top: 50%;
	left: 50%;
	width: 240px;
	height: 170px;
	overflow: hidden;
	position: absolute;
	transform: translate(-50%, -40%);
}

.upload-family-photo img {
	width: 100%;
	height: 100%;
	max-width: 100%;
	object-fit: contain;
}

.upload-family-photo-btn {
	left: 50%;
	bottom: 50px;
	overflow: hidden;
	position: absolute;
	transform: translateX(-50%);
}

.frame-outers .pre-favorite-things-0 {
	top: 91px;
	left: 150px;
	z-index: 1;
	width: 210px;
	height: 94px;
	resize: none;
	overflow: hidden;
	line-height: 32px;
}

.frame-outers .pre-favorite-things-1 {
	top: 243px;
	left: 174px;
	z-index: 1;
	width: 186px;
	height: 94px;
	resize: none;
	overflow: hidden;
	line-height: 32px;
}

.frame-outers .pre-favorite-things-2 {
	top: 392px;
	left: 190px;
	z-index: 1;
	width: 170px;
	height: 94px;
	resize: none;
	overflow: hidden;
	line-height: 32px;
}

.frame-outers .pre-0-things {
	top: 104px;
	left: 66px;
	z-index: 1;
	height: 56px;
	resize: none;
	width: 194px;
	overflow: hidden;
	line-height: 28px;
}

.frame-outers .pre-1-things {
	top: 163px;
	left: 66px;
	z-index: 1;
	height: 56px;
	resize: none;
	width: 194px;
	overflow: hidden;
	line-height: 28px;
}

.frame-outers .pre-2-things {
	top: 221px;
	left: 66px;
	z-index: 1;
	height: 56px;
	resize: none;
	width: 194px;
	overflow: hidden;
	line-height: 28px;
}

.self-assessment-emoji-selection {
	padding: 0 30px;
}

.self-assessment-emoji-selection ul li {
	min-width: 130px;
	padding: 10px 26px;
	text-align: center;
}

.self-assessment-emoji-selection ul li+li {
	border-left: 2px dashed #000000;
}

.self-assessment-emoji-selection ul li figure {
	width: 60px;
	height: 60px;
	cursor: pointer;
	overflow: hidden;
	margin: 0 auto 5px;
	border-radius: 50%;
	transition: all 0.3s;
}

.self-assessment-emoji-selection ul li figure img {
	width: 60px;
	height: 60px;
	object-fit: contain;
}

.self-assessment-emoji-selection ul li p {
	font-size: 16px;
	min-width: 76px;
	line-height: 18px;
	transition: all 0.3s;
	font-family: var(--font-family-poppins-600);
}

.self-assessment-emoji-selection ul li.assessment-smiley-yes.self-assessment-yes figure,
.self-assessment-emoji-selection ul li.assessment-smiley-yes:hover figure {
	background: #1bd046;
}

.self-assessment-emoji-selection ul li.assessment-smiley-yes.self-assessment-yes p,
.self-assessment-emoji-selection ul li.assessment-smiley-yes:hover p {
	color: #43b760;
}

.self-assessment-emoji-selection ul li.assessment-smiley-no.self-assessment-no figure,
.self-assessment-emoji-selection ul li.assessment-smiley-no:hover figure {
	background: #fa646a;
}

.self-assessment-emoji-selection ul li.assessment-smiley-no.self-assessment-no p,
.self-assessment-emoji-selection ul li.assessment-smiley-no:hover p {
	color: #fa5461;
}

.self-assessment-emoji-selection ul li.assessment-smiley-not-sure.self-assessment-not-sure figure,
.self-assessment-emoji-selection ul li.assessment-smiley-not-sure:hover figure {
	background: #fff48c;
}

.self-assessment-emoji-selection ul li.assessment-smiley-not-sure.self-assessment-not-sure p,
.self-assessment-emoji-selection ul li.assessment-smiley-not-sure:hover p {
	color: #f6bc44;
}

/* Responsive
====================================================================================================== */

@media screen and (max-width: 1200px) {}

@media screen and (max-width: 1150px) {

	.page-search.manage-school-search input {
		width: 200px;
	}

	.hpc-table .table-responsive table.hpc-attedance-table.hpc-attedance-table-part-b {
		min-width: 1164px;
	}

}

@media screen and (max-width: 1100px) {

	.container-stages .row {
		gap: 20px 0;
	}

	.container-stages .row .col-md-3 {
		width: 50%;
	}

}

@media screen and (max-width: 1040px) {

	.surrounding-form-frames,
	.surrounding-form-frames .frame-sets {
		gap: 20px;
		align-items: center;
		transition: all 0.3s;
		flex-direction: column;
		justify-content: center;
	}

	.surrounding-form-frames .frame-sets {
		gap: 20px;
		width: auto;
		transition: all 0.3s;
	}

	.frame-sets figure img {
		transition: all 0.3s;
		width: 100% !important;
		height: 100% !important;
	}

	.live-figure {
		padding: 0 !important;
		margin: 0 !important;
	}

	.birthday-figure {
		margin: 20px 0 0 0;
		position: relative !important;
	}

	.live-figure textarea {
		top: 22%;
		height: 50%;
	}

	.frame-family-grow {
		margin: 0;
	}

}

.open-close-menu {
	display: none;
}

@media screen and (max-width: 992px) {

	.title-bar,
	.custom-table,
	.inner-section,
	.custom-pagination {
		padding: 0 10px;
	}

	#top_header {
		height: 30px;
	}

	.govt-name {
		padding: 5px 0;
	}

	.govt-name img {
		height: 16px;
		margin: 0 6px 0 0;
	}

	.govt-name span {
		font-size: 10px;
		line-height: 20px;
	}

	.screen-reader,
	.text-resizer {
		display: none !important;
	}

	.language-selector select {
		height: 30px;
		line-height: 30px;
	}

	header {
		height: 46px;
		padding: 6px 0;
	}

	.logo img {
		height: 34px;
		transition: all 0.3s;
	}

	.logo img.logo-moe,
	.logo img.logo-ncert {
		display: none;
	}

	.open-close-menu {
		top: -38px;
		right: 8px;
		z-index: 2;
		width: 30px;
		height: 30px;
		display: flex;
		font-size: 18px;
		line-height: 30px;
		position: absolute;
		border-radius: 4px;
		align-items: center;
		justify-content: center;
		color: var(--text-white);
		background: var(--bg-primary);
	}

	.open-close-menu i {
		width: 32px;
		height: 32px;
		display: flex;
		line-height: 32px;
		text-align: center;
		align-items: center;
		justify-content: center;
	}

	.logo img.logo-ncert {
		width: auto;
	}

	.page-search input {
		width: 200px;
	}

	#main,
	#sidebar,
	.page-dashboard {
		transition: all 0.3s;
		height: calc(100vh - 76px);
	}

	#sidebar {
		top: 0;
		left: -100%;
		width: 100%;
		z-index: 999;
		position: absolute;
	}

	#sidebar.left-show {
		left: 0;
	}

	#sidebar.show-sidebar {
		left: 0;
	}

	#main {
		width: 100%;
	}

	.page-dashboard {
		padding: 10px;
	}

	.outer-white {
		padding: 10px;
	}

	.stage-details figure,
	.stage-details figure img {
		height: 140px;
	}

	.inner-main {
		height: calc(100vh - 76px);
	}

	.custom-table .table-responsive {
		height: calc(100vh - 181px);
	}

	.page-search.manage-school-search input {
		width: auto;
	}

	.custom-data-scroll {
		padding: 0 10px;
		overflow-x: hidden;
		height: calc(100vh - 153px);
	}

	.hpc-title-bar {
		padding: 10px 0;
	}

	.stages-steps {
		margin: 10px auto 0;
	}

	.stage-part-head {
		margin: 10px 0;
	}

	.stage-part-head h5 {
		font-size: 16px;
		margin: 0 0 2px 0;
		line-height: 24px;
	}

	.hpc-inner-title-bar {
		flex-wrap: wrap;
	}

	.hpc-title-head {
		font-size: 13px;
		line-height: 22px;
	}

	.hpc-student-name {
		font-size: var(--font-size-standard);
	}

	.stages-steps ul li p {
		width: 24px;
		height: 24px;
		font-size: 10px;
		line-height: 24px;
	}

	.stages-steps ul li::before {
		top: 13px;
		height: 2px;
	}

	.stages-steps ul li::after {
		top: 9px;
		width: 10px;
		height: 10px;
		border-left: 5px solid transparent;
		border-bottom: 5px solid transparent;
		border-top: 5px solid #E5E7EB;
		border-right: 5px solid #E5E7EB;
	}

	.stages-steps ul li.active::after {
		border-left: 5px solid transparent;
		border-bottom: 5px solid transparent;
		border-top: 5px solid var(--bg-primary);
		border-right: 5px solid var(--bg-primary);
	}

	.part-name {
		font-size: 9px;
		letter-spacing: -0.2px;
	}

	.academic-year-banner {
		padding: 10px;
		margin: -10px -10px 10px;
	}

	.title-bar-select-sp .filter-btn-sp {
		display: block;
		margin: 0 0 12px;
	}

	.title-bar-select-sp .title-bar-select {
		position: absolute;
		right: 0;
		top: calc(100% - 10px);
		z-index: 9;
		background: #fff;
		padding: 10px;
		border-radius: 4px;
		border: 1px solid #eaeaea;
		width: 100%;
		display: none;
	}

	.title-bar-select-sp .title-bar-select>div.d-flex {
		flex-direction: column;
		width: calc(50% - 0.25rem);
		align-items: flex-start !important;
		gap: 2px !important;
	}

	.title-bar-select-sp .title-bar-select>div.d-flex:last-child {
		flex-direction: row;
		padding-top: 29px;
	}

	.title-bar-select-sp .custom-input-label label,
	.title-bar-select-sp .title-bar-select .custom-dropdown-wrapper {
		min-width: 100% !important;
		max-width: 100% !important;
	}
}

@media screen and (max-width: 768px) {

	.form-control-set {
		min-height: calc(100vh - 76px);
	}

	.form-curverd-bg {
		height: 250px;
	}

	.inner-form-control-set {
		padding: 20px 15px;
	}

	.inner-form-control-set h2 {
		font-size: 20px;
		line-height: 30px;
	}

	.inner-form-control-set ul {
		padding: 0;
		gap: 20px 30px;
		margin: 16px 0 0 0;
		justify-content: center !important;
	}

	.inner-form-control-set ul li a p,
	.inner-form-control-set h6 {
		line-height: 18px;
		font-size: var(--font-size-standard);
	}

	.inner-form-control-set .form-sets {
		padding: 0 10px;
		margin: 15px 0 0 0;
	}

	.input-field-set {
		margin: 0 0 14px;
	}

	.input-field-set label {
		margin: 0 0 6px;
		line-height: 18px;
		font-size: var(--font-size-standard);
	}

	.input-field-set input,
	.captcha-question,
	.input-field-set button {
		height: 42px;
		line-height: 42px;
		font-family: var(--font-family-poppins-400);
		font-size: var(--font-size-standard-secondary);
	}

	.external-link a {
		line-height: 18px;
		font-size: var(--font-size-standard);
	}

	.modal-content {
		padding: 14px;
	}

	.modal-header h2 {
		font-size: 16px;
		line-height: 28px;
	}

	.modal-body {
		line-height: 18px;
		font-size: var(--font-size-standard);
	}

	.modal-footer {
		padding: 20px 0 0 0;
	}

	.custom-btn {
		height: 30px;
		padding: 0 10px;
		min-width: auto;
		line-height: 30px;
		font-size: var(--font-size-standard);
		font-family: var(--font-family-poppins-400);
	}

	.page-search.manage-school-search {
		display: none;
	}

	.select-years {
		flex-direction: column;
	}

	.select-years .custom-dropdown-wrapper {
		min-width: 240px;
	}

	.select-years span {
		width: 100%;
		padding: 10px;
		text-align: left;
	}

	.title-bar-sequence li,
	.title-bar-sequence li a {
		font-size: 13px;
	}

	.hpc-action-buttons-submit {
		flex-wrap: wrap;
		padding: 0 !important;
	}

	.hpc-action-buttons-submit .custom-btn {
		height: 30px;
		min-width: auto;
		font-size: 12px;
		line-height: 30px;
		font-family: var(--font-family-poppins-500);
	}

	.stage-activity-buttons {
		padding: 0;
	}

	.hpc-table .table-responsive table {
		min-width: 600px;
	}

	.part-c-summary {
		margin: 0;
		flex-direction: column;
	}

	.leveling-summary-head,
	.leveling-summary-tables {
		width: 100%;
		padding: 0px;
		overflow: hidden;
		margin: 20px 0 0 0;
	}

	.inner-leveling-summary {
		padding: 15px;
	}

	.leveling-summary-head h3 {
		font-size: 20px;
	}

	.leveling-summary-head h3 span {
		font-size: 24px;
	}

	.inner-leveling-summary ul li {
		margin: 0 0 15px;
	}

	.inner-leveling-summary ul li h6 {
		font-size: 14px;
		margin: 0 0 8px;
	}

	.hpc-table table thead tr th {
		padding: 6px;
		font-size: 12px;
		line-height: 18px;
	}

	.hpc-table table tbody tr th,
	.hpc-table table tbody tr td {
		font-size: 11px;
	}

	.title-bar-sequence li {
		display: none;
	}

	.title-bar-sequence li:first-child {
		display: inline-flex;
	}

	.frame-my-fevorites {
		padding: 20px;
	}

	.frame-my-fevorites ul li {
		gap: 0;
		width: 100%;
	}

	.frame-my-fevorites ul li input {
		width: 50%;
	}

}

@media screen and (max-width: 700px) {

	.student-hpc-bg {
		padding: 30px 20px;
		background: #FFFFFF url("../images/bg_hpc_student_sp.png") no-repeat scroll top center / cover;
	}

	.student-hpc-bg>img {
		display: none;
	}

	.inner-student-naming {
		position: static;
		text-align: center;
		transform: translateY(0%);
	}

	.inner-student-naming h1 {
		font-size: 22px;
	}

	.inner-student-naming h6 {
		font-size: 14px;
		line-height: 20px;
		margin: 10px 0 20px;
	}

	.inner-student-naming button a {
		height: 35px;
		padding: 0 12px;
		font-size: 13px;
		line-height: 35px;
	}

	.surrounding-form {
		padding: 10px 10px 15px;
	}

	.surrounding-form-frames .frame-sets {
		padding: 0;
	}

}

@media screen and (max-width: 640px) {

	.container-stages .row .col-md-3 {
		width: 100%;
	}

	.page-search {
		display: none;
	}

	.back-menus,
	.back-menus-btn {
		min-width: auto;
	}

	.hpc-student-name {
		width: 100%;
		min-width: auto;
	}

	.title-bar-select .custom-dropdown-wrapper {
		display: none;
	}

	.title-bar-select-sp .title-bar-select .custom-dropdown-wrapper {
		display: block;
	}

	.title-bar-select-sp .title-bar-select>div.d-flex {
		width: 100%;
	}

	.title-bar-select-sp .title-bar-select>div.d-flex:last-child {
		padding-top: 6px;
		justify-content: space-between;
	}

	.stages-steps ul li::before {
		top: 11px;
	}

	.stages-steps ul li::after {
		top: 6px;
	}

}

@media screen and (max-width: 480px) {

	.inner-form-control-set ul {
		gap: 20px;
	}

	.human-authentication {
		gap: 6px;
	}

	.captcha-question img {
		width: 100%;
	}

	.hpc-action-buttons-submit .custom-btn i {
		display: none;
	}

	.levels-of-proficiency {
		width: 268px;
		height: 258px;
	}

	.level-mountain {
		width: 200px;
		height: 205px;
	}

	.level-stream {
		width: 130px;
		height: 135px;
	}

	.show-proficiency-level {
		left: 90px;
	}

	.show-proficiency-level::before {
		left: 2px;
		width: 10px;
		height: 10px;
	}

	.levels-of-proficiency>p,
	.proficiency-level-inputs p {
		font-size: 12px;
		line-height: 16px;
		margin: 0 0 0 10px;
	}

	.proficiency-level-inputs p {
		margin: 0 0 6px 0;
		line-height: 12px;
	}

	.leveling-custom-dropdown {
		left: 104px;
	}

	.leveling-custom-dropdown.sky-dropdown {
		top: 24px;
	}

	.leveling-custom-dropdown.mountain-dropdown {
		top: 80px;
	}

	.leveling-custom-dropdown.stream-dropdown {
		top: 150px;
	}

	.acadmic-head h5 {
		gap: 0px 5px;
		display: flex;
		flex-wrap: wrap;
		line-height: 20px;
	}

	.frame-my-fevorites ul li {
		gap: 10px;
		flex-direction: column;
	}

	.frame-my-fevorites ul li div {
		width: 100%;
		text-align: left !important;
	}

	.frame-my-fevorites ul li input {
		width: 100%;
		height: 50px;
		font-size: 16px;
		line-height: 48px;
		background: transparent url(../images/bg_input_fav_.png) no-repeat scroll 0 0 / 100% 50px;
	}

	.frame-my-friends {
		max-width: 268px;
		margin: 0 auto;
	}

	.friends-input {
		gap: 1px;
	}

	.friends-input input {
		height: 30px;
		line-height: 30px;
	}

	.frame-my-fevorites {
		padding: 20px 10px;
		border-radius: 30px 30px 0 0;
	}

	.img-star-left,
	.img-star-right {
		display: none;
	}

}