@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%;
	-webkit-user-drag: none;
}

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: 600px;
}

.modal-content {
	padding: 20px;
}

.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);
	overflow-y: auto;
	max-height: 300px;
	overflow-x: hidden;
}

.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 10px;
	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:hover {
	background: none;
	color: var(--bg-primary);
}

.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;
}

.cursor-pointer {
	cursor: pointer;
}

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

.w-15 {
	width: 15px !important;
}

.h-15 {
	height: 15px !important;
}

.w-16 {
	width: 16px !important;
}

.h-16 {
	height: 16px !important;
}

.w-15 {
	width: 15px !important;
}

.h-15 {
	height: 15px !important;
}

.w-16 {
	width: 16px !important;
}

.h-16 {
	height: 16px !important;
}

.fs-12 {
	font-size: 12px !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;
}

.fw-700,
.fw-bold {
	font-family: var(--font-family-poppins-700) !important;
}

.w-15 {
	width: 15px !important;
}

.w-33 {
	width: 33.33% !important;
}

.h-15 {
	height: 15px !important;
}

.wh-15 {
	width: 15px !important;
	height: 15px !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,
.custom-input-label.custom-multi-select-input .custom-dropdown-header {
	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;
}

.custom-input-label.custom-multi-select-input input {
	width: 13px;
    height: 13px;
    min-width: auto;
}

.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: cover;
	object-position: center;
}

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

.updalod-photo img {
	object-fit: cover;
	width: 230px !important;
	height: 150px !important;
}

.frame-family-grow .updalod-photo,
.frame-family-grow .updalod-photo img {
    width: 300px !important;
    height: 200px !important;
}

.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);
}

.state-filter-dropdown .custom-dropdown-menu {
    min-width: 220px;
}

.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;
	display: block;
	width: 100%;
	border: 1px solid #BFC1C5;
	border-radius: 4px;
}

.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;
}

p b,
b,
strong {
	font-size: 12.5px;
	font-family: var(--font-family-poppins-700);
}

/* 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;
}

.custom-table.dashboard-custom-table .table-responsive {
	height: auto;
	border: 1px solid #E2E8F0;
}

.custom-table.dashboard-custom-table .table-responsive thead tr th {
	padding: 15px 10px;
	font-size: 12px;
	color: #475569;
	line-height: 18px;
	background: rgba(255, 226, 204, 0.5);
	/* background: #ffd8c0; */
	font-family: var(--font-family-poppins-600);
	min-width: 90px !important;
}

.custom-table.dashboard-custom-table .table-responsive tbody tr td {
	padding: 15px 10px;
	font-size: 12px;
	color: #111111;
	line-height: 18px;
	background: #FFFFFF;
	border-bottom: 1px solid #F1F5F9;
}

.custom-table.dashboard-custom-table .table-responsive tbody tr:last-child td {
	color: #323232;
	border-bottom: none;
	background: #FFF9F2;
}

.badge-pill {
	min-width: 42px;
	font-size: 12px;
	line-height: 18px;
	text-align: center;
	border-radius: 50px;
	align-items: center;
	padding: 3px 8px 1px;
	display: inline-flex;
	letter-spacing: -0.1px;
	justify-content: center;
	font-family: var(--font-family-poppins-700);
}

.badge-pill.pill-sky {
	color: #1E40AF;
	background: #DBEAFE;
}

.badge-pill.pill-neon {
	color: #155E75;
	background: #CFFAFE;
}

.badge-pill.pill-light-yellow {
	color: #92400E;
	background: #FEF3C7;
}

.dashboard-progress-table .custom-table {
	padding: 0px;
}

.dashboard-progress-table .custom-table .table-responsive {
	height: auto;
}

.dashboard-progress-table .custom-pagination {
	width: 100%;
	margin: 0px;
}

.dashboard-progress-table .custom-table .table-responsive thead tr th {
	background: rgba(255, 226, 204, 0.5);
}

/* 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);
}

.user-details p.state-district-name {
	line-height: 15px;
	white-space: wrap;
}

.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-white.outer-graph {
	padding: 10px 0 20px;
	height: calc(100% - 20px);
}

.outer-graph h5.graph-heading {
	font-size: 14px;
	line-height: 22px;
	margin: 0 0 -20px 0;
	padding: 14px 20px 0;
	color: var(--text-black);
	font-family: var(--font-family-poppins-500);
}

.outer-graph .basic-graph {
	margin: 0;
}

.outer-graph .basic-graph>div>div:last-child {
	overflow: auto;
	color: #464646;
	font-size: 14px;
	line-height: 42px;
	text-align: center;
	box-sizing: border-box;
	padding: 6px 15px 10px;
	font-family: 'Poppins-SemiBold';
}

.outer-graph .basic-graph>div>div:last-child table thead tr th {
	min-width: 100px;
}

/* 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.state-w-140px,
.title-bar-select .custom-dropdown-wrapper.district-w-140px,
.title-bar-select .custom-dropdown-wrapper.school-w-140px {
	width: 140px;
}

.title-bar-select .custom-dropdown-wrapper.district-state-w-330px,
.title-bar-select .custom-dropdown-wrapper.school-teacher-state-w-330px,
.title-bar-select .custom-dropdown-wrapper.student-state-w-330px,
.title-bar-select .custom-dropdown-wrapper.hpc-state-w-330px {
	width: 330px;
}

.title-bar-select .custom-dropdown-wrapper.student-state-w-250px {
	width: 250px;
}

.title-bar-select .custom-dropdown-wrapper.school-teacher-district-w-225px,
.title-bar-select .custom-dropdown-wrapper.student-district-w-225px,
.title-bar-select .custom-dropdown-wrapper.hpc-district-w-225px {
	width: 225px;
}

.title-bar-select .custom-dropdown-wrapper.state-w-200px {
	width: 200px;
}

.title-bar-select .custom-dropdown-wrapper.district-w-160px,
.title-bar-select .custom-dropdown-wrapper.school-w-160px {
	width: 160px;
}

.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);
	text-align: center;
}

.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);
}

.part-c {
	font-size: 12px;
	text-align: center;
}

.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);
}

.stage-activity-buttons .modal-dialog {
	max-width: 430px;
}

.stage-activity-buttons .modal-dialog .modal-content {
	padding: 24px;
}

.stage-activity-buttons .modal-dialog .modal-content .modal-header {
	margin: 0 0 5px;
}

.stage-activity-buttons .modal-dialog .modal-content .modal-header h2 {
	font-size: 16px;
	margin: 0 0 10px;
	color: #000000;
	line-height: 20px;
}

.stage-activity-buttons .modal-dialog .modal-content .modal-header h2 i {
	line-height: 20px;
	margin: 0 10px 0 0;
	color: var(--bg-primary);
}

.activity-bank-modal-body select.form-control,
.activity-bank-modal-body input.form-control {
	height: 36px;
	font-size: 12px;
	line-height: 34px;
	border-radius: 4px;
	padding: 0 10px 0 30px;
	border: 1px solid #D1D5DB;
	background: #FFFFFF url(../images/icon_search.png) no-repeat scroll top 11px left 9px / 13px;
}

.activity-bank-modal-body select.form-control {
	padding: 0 30px 0 10px;
	background: #FFFFFF url("../images/icon_arrow_down.png") no-repeat scroll top 15px right 10px / 11px;
}

.search-activity-outer {
	padding: 12px;
	min-height: 225px;
	position: relative;
	border-radius: 4px;
	background: #FFFFFF;
	box-sizing: border-box;
	border: 1px solid #D1D5DB;
}

.search-activity-outer>.spinner-border {
	top: 50%;
	margin: -16px 0 0;
	position: absolute;
	left: calc(50% - 16px);
}

.activity-bank-modal {
	height: 155px;
	overflow-y: auto;
}

.search-activity-outer > .no-data-found {
	width: 100%;
	height: 155px;
	display: flex;
	text-align: center;
	align-items: center;
	transition: all 0.3s;
	justify-content: center;
}

.activity-bank-modal li label {
	display: flex;
	cursor: pointer;
	font-size: 12px;
	color: #000000;
	line-height: 15px;
	border-radius: 5px;
	align-items: center;
	transition: all 0.3s;
	padding: 8px 6px 8px 0;
}

.activity-bank-modal li label:hover {
	background: #ffeee5;
}

.activity-bank-modal li label:hover>input {
	margin: 0 10px 0 0; /* keep consistent to avoid layout shift */
}

.activity-bank-modal li label>input {
	width: 15px;
	height: 15px;
	margin: 0 10px 0 0;
}

.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);
	margin: 0 0 6px 0;
}

.frame-sets figure.birthday-figure,
.frame-years-birth-live {
	overflow: visible;
}

.this-me-upload {
    top: 25%;
    left: 20%;
    z-index: 1;
    padding: 0;
    width: 270px;
    height: 210px;
    position: absolute;
    align-items: center;
    box-sizing: border-box;
    text-align: center;
    transform: rotate(-3deg);
}

.updalod-photo {
	width: 230px;
    height: 150px;
    display: block;
    overflow: hidden;
    margin: 0 auto 10px;
    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;
	overflow: visible !important;
}

.birthday-figure .react-datepicker-wrapper {
	top: 34%;
	left: 14.5%;
	height: 46px;
	border: none;
	font-size: 18px;
	line-height: 46px;
	text-align: center;
	position: absolute;
	/* background: #FFFFFF; */
	width: calc(100% - 38%);
	transform: rotate(9.5deg);
}

.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: 24%;
	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 tbody tr td textarea.td-textarea-350 {
	height: 350px;
}

.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;
	height: 190px;
}

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

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

.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 {
	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;
}

.peer-count {
	position: absolute;
	width: 161px;
	height: 62px;
	right: 10px;
	top: 10px;
	border-radius: 50%;
	background: #F86400;
	display: flex;
	text-align: center;
	justify-content: center;
	align-items: center;
	color: #fff;
	font-size: 16px;
	font-family: var(--font-family-poppins-600);
}

.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 !important;
}

.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;
}

/* Middle Stage
============================================================= */

.block-format {
	position: relative;
}

.block-format h6 {
	font-size: 16px;
	padding: 8px 20px;
	line-height: 24px;
	text-align: center;
	background: #FFC000;
	color: var(--text-black);
	font-family: var(--font-family-poppins-600);
}

.block-detailed-format {
	padding: 20px 20px 20px 5px;
	background: #FBFDDB;
}

.block-details {
	position: relative;
	padding: 0 10px 0 0;
	box-sizing: border-box;
	width: calc(100% - 260px);
}

.block-details .d-flex label {
	font-size: 14px;
	/* margin: 0 0 10px; */
	line-height: 24px;
	padding: 0 8px 0 0;
	white-space: nowrap;
	font-family: var(--font-family-poppins-600);
}

.block-details .d-flex input,
.block-user-details input {
	width: 100%;
	height: 24px;
	border: none;
	font-size: 14px;
	background: none;
	/* margin: 0 0 10px; */
	border-radius: 0;
	line-height: 24px;
	box-sizing: border-box;
	border-bottom: 1px solid #000000;
}

.block-details .d-flex textarea {
	width: 100%;
	border: none;
	resize: none;
	height: 60px;
	overflow: hidden;
	line-height: 27px !important;
	background: url('/images/img_border_bottom_line.png') repeat-y left 0px top -1px / 100% 27px;
}

.block-details .d-flex label.textarea-prefix {
	left: 0;
	top: 0px;
	height: 30px;
	font-size: 12px;
	padding: 1.5px 0;
	position: absolute;
	background: #daffb9;
	letter-spacing: -0.1px;
}

.additional-placeholder {
	position: absolute;
	line-height: 28px;
	left: 236px;
	opacity: 0.6;
	font-family: 'Poppins-Medium';
	pointer-events: none;
}

.additional-placeholder.locale-hi {
	left: 111px;
}

.additional-placeholder.teacher-to-know {
	left: 190px;
}

.additional-placeholder.hidden {
	display: none;
}


.block-user-details {
	overflow: hidden;
	position: relative;
	border-radius: 50%;
}

.block-user-details label,
.block-user-details input,
.block-user-error {
	top: 60px;
	left: 50%;
	position: absolute;
	transform: translateX(-50%);
}

.block-user-details input {
	top: 120px;
	width: 130px;
	text-align: center;
}

.block-user-error {
	width: 150px;
	top: 145px;
	text-align: center;
}

.my-goal-setting.block-format h6 {
	color: var(--text-white);
	background: var(--bg-primary);
}

.my-goal-setting .block-detailed-format {
	padding: 15px;
	background: #FFE7DA;
}

.group-project-work.block-format h6 {
	color: var(--text-white);
	background: #FF761B;
}

.goal-notes-details.block-details {
	gap: 20px;
	padding: 0;
	width: 100%;
	display: flex;
	align-items: center;
}

.goal-notes {
	width: 200px;
	padding: 10px;
	border-radius: 20px;
	box-sizing: border-box;
}

.goal-notes.academic-goal-notes {
	background: #B3D2FF;
	border: 3px solid #398AFF;
}

.goal-notes.personal-goal-notes {
	background: #FFB6E8;
	border: 3px solid #9E2C98;
}

.goal-notes p {
	font-size: 16px;
	/* margin: 0 0 12px; */
	line-height: 24px;
	font-family: var(--font-family-poppins-600);
}

.goal-notes textarea {
	width: 100%;
	border: none;
	resize: none;
	height: 102px;
	overflow: hidden;
	line-height: 30px;
	background: url('/images/img_border_bottom_line.png') repeat-y left 0px top -1px / 100% 30px;
}

.goal-note-details {
	align-items: flex-start;
	width: calc(100% - 200px);
}

.my-learning-block.block-format h6 {
	background: #00B0F0;
	color: var(--text-white);
}

.my-learning-block .block-detailed-format {
	padding: 15px;
	background: #B7ECFF;
}

.my-teacher-block.block-format h6 {
	background: #00B050;
	color: var(--text-white);
}

.my-teacher-block .block-detailed-format {
	padding: 15px;
	background: #DAFFB9;
}

.ambition-card-view {
	margin: 20px 0 40px;
}

.block-details-will.block-format h6 {
	background: #FFBE85;
	color: var(--text-black);
}

.block-details-will .block-detailed-format {
	padding: 15px;
	background: var(--bg-white);
}

.ambition-path {
	position: relative;
	padding: 30px 0 120px;
}

.ambition-values {
	width: 300px;
	padding: 20px;
	display: flex;
	position: absolute;
	border-radius: 15px;
	flex-direction: column;
	box-sizing: border-box;
	border: 3px solid var(--bg-primary);
	background: rgba(225, 90, 17, 0.16);
}

.ambition-values label {
	font-size: 14px;
	line-height: 20px;
	margin: 0 0 15px;
	text-align: center;
	font-family: var(--font-family-poppins-600);
}

.ambition-values textarea {
	width: 100%;
	border: none;
	resize: none;
	height: 150px;
	resize: none;
	overflow: hidden;
	line-height: 30px;
	display: -webkit-box;
	-webkit-line-clamp: 5;
	-webkit-box-orient: vertical;
	background: url('/images/img_border_bottom_line.png') repeat-y left 0px top -1px / 100% 30px;
}

.ambition-values.ambition-values-3 textarea {
	height: 90px;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}

.ambition-values-1 textarea {
	height: 60px;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.ambition-path .ambition-path-box {
	width: 360px;
	margin: 0 auto;
	position: relative;
}

.ambition-path .ambition-path-box img {
	width: 360px;
	height: auto;
}

.ambition-values-1 {
	top: 137px;
	right: -272px;
}

.ambition-values-2 {
	top: 125px;
	left: -296px;
}

.ambition-values-3 {
	bottom: 46px;
	right: -294px;
}

.ambition-values-4 {
	left: -176px;
	bottom: -100px;
}

.literacy-awareness {
	background: #EB99B6 !important;
}

.literacy-sensitivity {
	background: #FBF7B4 !important;
}

.literacy-creativity {
	background: #7DDDFF !important;
}

.border-bottom-0 {
	border-bottom: 0 !important;
}

.border-top-0 {
	border-top: 0 !important;
}

.border-left-0 {
	border-left: 0 !important;
}

.border-right-0 {
	border-right: 0 !important;
}

.hpc-table .table-responsive table tr td table.progress-grid-table {
	background: red;
}

.hpc-table .table-responsive table tr td table.progress-grid-table tr td>h6 {
	font-size: 14px;
	line-height: 24px;
	color: black;
	font-family: var(--font-family-poppins-600);
	text-align: center;
	padding: 8px 10px;
}

.progress-grid-detail {
	display: flex;
	min-height: 96px;
	align-items: center;
	justify-content: center;
	text-align: center;
	line-height: 16px;
	border-radius: 50%;
	box-sizing: border-box;
	padding: 0 5px;
	border: 2px solid #fff;
}

.progress-grid-detail.selected-progress-grid {
	border: 2px solid #ff0000;
}

.performace-leveling-cricle {
	width: 450px;
	height: 450px;
	margin: 0 auto;
	overflow: hidden;
	position: relative;
	border-radius: 50%;
}

.performace-leveling-outer {
	width: 450px;
	height: 450px;
	position: relative;
}

.performace-leveling-outer img {
	width: 450px;
	height: 450px;
}

.performace-leveling-inner {
	width: 295px;
	height: 295px;
	border-radius: 50%;
	position: absolute;
	top: calc(50% - 2px);
	left: calc(50% + 1px);
	transform: translate(-50%, -50%);
}

.level-radio-check {
	z-index: 5;
	width: 15px !important;
	height: 15px !important;
	cursor: pointer !important;
	position: absolute;
	min-width: auto !important;
}

.radio-check-sensi-1 {
	top: 17px;
	left: 194px;
}

.radio-check-sensi-2 {
	top: 45px;
	left: 184px;
}

.radio-check-sensi-3 {
	top: 75px;
	left: 175px;
}

.radio-check-create-1 {
	right: 62px;
	bottom: 28px;
}

.radio-check-create-2 {
	right: 80px;
	bottom: 52px;
}

.radio-check-create-3 {
	right: 98px;
	bottom: 76px;
}

.radio-check-aware-1 {
	left: 8px;
	bottom: 126px;
}

.radio-check-aware-2 {
	left: 38px;
	bottom: 128px;
}

.radio-check-aware-3 {
	left: 66px;
	bottom: 132px;
}

.active-performance-selection {
	fill: #B3B3B3 !important;
}

.ellipsis-line-2 {
	display: -webkit-box !important;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden !important;
	height: 60px !important;
	line-height: 30px !important;
	font-size: 14px !important;
}

.ellipsis-line-4 {
	display: -webkit-box !important;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 4;
	overflow: hidden !important;
	height: 120px !important;
	line-height: 28px !important;
}

.ellipsis-line-3 {
	display: -webkit-box !important;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden !important;
	height: 60px !important;
	line-height: 20px !important;
}

.ellipsis-line-5 {
	display: -webkit-box !important;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 5;
	overflow: hidden !important;
	height: 150px !important;
	line-height: 30px !important;
}

.ellipsis-line-6 {
	display: -webkit-box !important;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 8;
	overflow: hidden !important;
	height: 180px !important;
	line-height: 30px !important;
}

.ellipsis-line-8 {
	display: -webkit-box !important;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 8;
	overflow: hidden !important;
	height: 216px !important;
	line-height: 30px !important;
}

.help-progress-textarea {
	background: url('/images/img_border_bottom_line.png') repeat-y left 0px top -1px / 100% 27px;
	line-height: 27px !important;
}

.block-format.project-work-blue .block-details .d-flex textarea.ellipsis-line-3 {
	height: 84px !important;
}

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

.hpc-summary.block-format h6 {
	background: #FF913B;
	color: var(--text-white);
}

.hpc-summary .block-detailed-format {
	padding: 15px;
	background: #FFE8D8;
}

.hpc-summary .block-detailed-format .goal-note-details {
	font-size: 14px;
	line-height: 21px;
}

.hpc-summary .block-detailed-format .hpc-key-point {
	font-size: 14px;
	line-height: 21px;
	width: 200px;
	box-sizing: border-box;
	padding: 14px 10px;
	border: 1px solid #000;
	line-height: 24px;
	font-family: var(--font-family-poppins-500);
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.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,
	.stage-part-head h5,
	.stage-part-head p {
		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: white;
	z-index: 10;
	opacity: 0.8;
	cursor: not-allowed;
	transition: all 0.3s;
	display: none;
}

.edit-mode-overlay {
	opacity: 1;
	transition: all 0.3s;
}

.edit-mode-overlay input,
.edit-mode-overlay textarea,
.edit-mode-overlay .custom-dropdown-header,
.edit-mode-overlay .working-rating ul li,
.edit-mode-overlay .self-assessment-emoji-selection ul li figure,
.edit-mode-overlay .appropriate-option-select ul li:hover {
	cursor: default;
}

.edit-mode-overlay .custom-dropdown-menu {
	display: none !important;
}

.edit-mode-overlay .working-rating ul li:hover figure::after {
	border: 3px solid transparent;
}

.edit-mode-overlay .working-rating ul li:hover figure img {
	opacity: 0.5;
}

.edit-mode-overlay .working-rating ul li:hover p,
.edit-mode-overlay .self-assessment-emoji-selection ul li.assessment-smiley-yes.self-assessment-yes p,
.edit-mode-overlay .self-assessment-emoji-selection ul li.assessment-smiley-yes:hover p,
.edit-mode-overlay .self-assessment-emoji-selection ul li.assessment-smiley-no.self-assessment-no p,
.edit-mode-overlay .self-assessment-emoji-selection ul li.assessment-smiley-no:hover p,
.edit-mode-overlay .self-assessment-emoji-selection ul li.assessment-smiley-not-sure.self-assessment-not-sure p,
.edit-mode-overlay .self-assessment-emoji-selection ul li.assessment-smiley-not-sure:hover p {
	color: var(--text-black);
}

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

.edit-mode-overlay .working-rating ul li.feed-back-circle figure img {
	opacity: 1;
}

.edit-mode-overlay .working-rating ul li.feed-back-circle p {
	color: #ff0000;
}

.edit-mode-overlay .self-assessment-emoji-selection ul li.assessment-smiley-yes:hover figure,
.edit-mode-overlay .self-assessment-emoji-selection ul li.assessment-smiley-no:hover figure,
.edit-mode-overlay .self-assessment-emoji-selection ul li.assessment-smiley-not-sure:hover figure {
	background: #fff;
}

.edit-mode-overlay .self-assessment-emoji-selection ul li.assessment-smiley-yes.self-assessment-yes figure {
	background: #1bd046;
}

.edit-mode-overlay .self-assessment-emoji-selection ul li.assessment-smiley-no.self-assessment-no figure {
	background: #fa646a;
}

.edit-mode-overlay .self-assessment-emoji-selection ul li.assessment-smiley-not-sure.self-assessment-not-sure figure {
	background: #fff48c;
}

.edit-mode-overlay .self-assessment-emoji-selection ul li.assessment-smiley-yes.self-assessment-yes p {
	color: #43b760;
}


.edit-mode-overlay .self-assessment-emoji-selection ul li.assessment-smiley-no.self-assessment-no p {
	color: #fa5461;
}

.edit-mode-overlay .self-assessment-emoji-selection ul li.assessment-smiley-not-sure.self-assessment-not-sure p {
	color: #f6bc44;
}

.edit-mode-overlay .appropriate-option-select ul li:hover figure .active-circle-smile {
	opacity: 0;
}

.edit-mode-overlay .appropriate-option-select ul li.active-check-smiley figure .active-circle-smile {
	opacity: 1;
}

.edit-mode-overlay .appropriate-option-select ul li:hover p {
	color: #fff;
}

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

.edit-mode-overlay .hpc-table table tbody tr td:hover .circle-option {
	border: 1px solid transparent;
}

.edit-mode-overlay .hpc-table table tbody tr td:hover .circle-option.selected {
	border: 1px solid #E72828;
}

.edit-mode-overlay .login-check>input[type="radio"]:checked+span,
.edit-mode-overlay .login-check>input[type="radio"]:not(:checked)+span {
	cursor: default;
}

.edit-mode-overlay .login-check>input[type="radio"]:not(:checked)+span:hover:before {
	border: 2px solid #000
}

.edit-mode-overlay .label-checkbox-check>input[type="checkbox"]:checked+span,
.edit-mode-overlay .label-checkbox-check>input[type="checkbox"]:not(:checked)+span {
	cursor: default;
}

.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;
}

.hpc-table.hpc-table-part-b table.assessment-rubric-table.table-part-c-overall tbody tr td textarea.preparatory-input-textarea {
	height: 700px;
}

.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: 10px 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;
}

.children-specific-box input.full-width {
	width: 100% !important;
}

.children-specific-box.list-other-input {
	width: calc(100% - 100px);
	margin: 0px;
}

.h-26 {
	min-height: 26px;
}

.feed-names input,
.children-specific-box.list-other-input input {
	width: 100% !important;
}

.children-specific-box.list-other-input input {
	height: 18px !important;
	line-height: 18px !important;
	margin: 2px 0 0;
}

.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,
.need-children-support-check ul.middle-stage-support li:nth-last-child(2) {
	border-bottom: none;
}

.text-area-message {
	border-top: 1px solid #BFC1C5;
	font-style: italic;
	padding: 10px 0 5px;
}

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

.need-children-support-check ul li:last-child {
	width: 100%;
	border-right: none;
}

.other-specific-needs {
	height: 28px;
}

.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;
}

.need-children-support-check.one-line-input-check {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
}

.need-children-support-check.one-line-input-check label {
	padding: 10px;
	display: flex;
	align-items: center;
	gap: 10px;
}

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

.need-children-support-check.one-line-input-check label p {
	font-family: var(--font-family-poppins-500);
}

.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: 112px;
	width: 148px;
	transform: rotate(53deg);
}

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

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

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

.frame-outers .pre-about-me-4 {
	top: 319px;
	z-index: 1;
	left: 253px;
	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: 47%;
	left: 50%;
	width: 240px;
	height: 150px;
	overflow: hidden;
	position: absolute;
	transform: translate(-50%, -40%);
}

.upload-family-photo img {
	max-width: 100%;
    object-fit: cover;
    width: 240px !important;
    height: 150px !important;
}

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

.frame-outers .pre-favorite-things-0 {
	top: 91px;
	left: 94px;
	z-index: 1;
	width: 265px;
	height: 100px;
	resize: none;
	overflow: hidden;
	line-height: 35px;
	letter-spacing: 0.3px;
}

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

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

.text-area-prefix-1,
.text-area-prefix-2,
.text-area-prefix-0 {
	position: absolute;
	top: 94px;
	left: 94px;
	background: white;
	z-index: 9;
	font-size: 16px;
	font-family: var(--font-family-poppins-600);
	line-height: 30px;
	font-weight: bold;
	letter-spacing: 0.1px;
}

.text-area-prefix-1 {
	top: 245px;
}

.text-area-prefix-2 {
	top: 394px;
}

.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;
}

/* Secondary Stage
====================================================================================================== */

.secondary-stage-table {
	position: relative;
}

.hpc-table.secondary-stage-table table thead tr th {
	color: #000000;
	background: #E4EDFF;
	border: 1px solid #000000;
}

.hpc-table.secondary-stage-table table tbody tr td {
	background: #E4EDFF;
	border: 1px solid #000000;
}

.range-level-outer {
	width: 312px;
	margin: 0 auto;
}

.range-level {
	gap: 12px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.range-level button {
	border: none;
	width: 12px;
	height: 12px;
	display: flex;
	min-width: 12px;
	font-size: 21px;
	overflow: hidden;
	background: none;
	text-align: center;
	align-items: center;
	justify-content: center;
	color: rgba(231, 40, 40, 0.5);
}

.range-level button i {
	font-size: 18px;
	font-weight: bold;
	line-height: 12px;
}

.range-level button .fa-plus {
	color: #00CF62;
}

.leveling-color-bars {
	width: 100%;
	display: flex;
	position: relative;
}

.leveling-color-bars input[type="range"] {
	-webkit-appearance: none;
	width: 100%;
	height: 10px;
	border-radius: 10px;
	background: linear-gradient(to right,
			#ff133d 0%,
			#ff133d 20%,
			#FF7500 20%,
			#FF7500 40%,
			#FFCB24 40%,
			#FFCB24 60%,
			#9EDA30 60%,
			#9EDA30 80%,
			#00CF62 80%,
			#00CF62 100%);
	margin: 0;
	outline: none;
	position: relative;
}


.leveling-color-bars input[type="range"]::-webkit-slider-thumb {
	-webkit-appearance: none;
	width: 24px;
	height: 24px;
	cursor: pointer;
	appearance: none;
	border-radius: 50%;
	background: #FFFFFF;
	border: 7px solid #ff1e46;
}

.secondary-stage-table .block-details .d-flex input {
	border-bottom: 1px solid rgba(102, 102, 102, 0.4);
}

.outer-goal-flow {
	position: relative;
}

.goal-set-flow {
	height: 100%;
	position: relative;
	background: #e4edff;
}

.goal-set-flow h5 {
	font-size: 24px;
	margin: 0 0 0 0;
	color: #FD8248;
	text-align: center;
	font-family: var(--font-family-poppins-700);
}

.goal-set-flow h5.outside-goals {
	top: 0;
	left: 0;
	width: 144px;
	height: 42px;
	display: flex;
	padding: 10px;
	position: absolute;
	flex-direction: row;
	align-items: center;
	background: #FFE3D4;
	box-sizing: border-box;
	justify-content: center;
	border: 1px solid #E15A11;
}

.step-to-goal {
	top: 140px;
	left: -50px;
	width: 70px;
	position: absolute;
}

.step-to-year {
	top: 80px;
	left: -50px;
	width: 33px;
	height: auto;
	position: absolute;
	object-fit: contain;
}

.step-to-goal-top {
	top: 20px;
	left: -50px;
	width: 70px;
	position: absolute;
}

.block-format.secondary-stage-block-details h6,
.block-format.secondary-stage-block-details .block-detailed-format {
	background: #E4EDFF;
	padding: 15px 10px 10px;
}

.block-format.secondary-stage-block-details.dark-head h6 {
	background: #BFD6FD;
}

.block-format.secondary-stage-block-details .block-detailed-format {
	padding: 0 15px 25px;
}

.secondary-stage-table .block-details .d-flex textarea,
.secondary-stage-block-details .block-details .d-flex textarea {
	line-height: 30px !important;
	background: url('/images/img_border_bottom_line_light.png') repeat-y left 0px top -1px / 100% 30px;
}

.block-format.secondary-stage-block-details.proud-happy-achievement h6,
.block-format.secondary-stage-block-details.proud-happy-achievement .block-detailed-format {
	background: #FFF1CC;
}

.mh-60 {
	min-height: 60px;
}

.habits-blocks {
	margin: 0 0 20px;
}

.habits-description {
	height: 100%;
	padding: 20px 15px;
	background: #E4EDFF;
}

.habits-description textarea {
	width: 100%;
	border: none;
	resize: none;
	height: 120px;
	margin: 0 0 20px;
	background: none;
	overflow: hidden;
	line-height: 20px;
}

.border-radius-50 {
	border-radius: 50px;
}

.border-radius-lt-50 {
	border-top-left-radius: 50px;
}

.border-radius-rt-50 {
	border-top-right-radius: 50px;
}

.border-radius-lb-50 {
	border-bottom-left-radius: 50px;
}

.border-radius-rb-50 {
	border-bottom-right-radius: 50px;
}

.schedule-time table tbody tr th {
	width: 110px;
	border: none;
	padding: 10px;
	vertical-align: middle;
	color: var(--bg-primary);
	font-family: var(--font-family-poppins-500);
}

.schedule-time table tbody tr td {
	border: none;
	padding: 10px;
	vertical-align: middle;
}

.bg-am {
	background: #FFF1CC;
}

.bg-pm {
	background: #EDEDED;
}

.padding-top-1 {
	padding-top: 1px !important;
}

.padding-top-2 {
	padding-top: 2px !important;
}

.hpc-table table tbody tr td.row-heading {
	color: #FFFFFF !important;
	font-size: 16px !important;
	line-height: 18px !important;
	background: var(--bg-primary) !important;
	border-bottom: 1px solid #fff !important;
	font-family: var(--font-family-poppins-600);
}

.circle-option {
	display: flex;
	cursor: pointer;
	min-height: 140px;
	line-height: 16px;
	border-radius: 50%;
	padding: 10px 15px;
	align-items: center;
	transition: all 0.3s;
	box-sizing: border-box;
	justify-content: center;
	border: 1px solid transparent;
}

/* This handles hover (your original rule) */
.hpc-table table tbody tr td:hover .circle-option {
	border: 1px solid #E72828;
}

.circle-option.selected {
	border: 1px solid #E72828;
}

.hpc-table.online-table-cources {
	border-bottom: 12px solid rgba(166, 161, 161, 0.4);
}

.hpc-table.online-table-cources table thead tr th {
	background: #FFD765;
	color: var(--text-black);
	border: 2px solid #FFD765 !important;
}

.hpc-table.online-table-cources table thead tr.upper-th-header th {
	background: #FFBD00;
	border: 2px solid #FFBD00 !important;
}

.hpc-table.online-table-cources table tbody tr th {
	background: #FFF1CC !important;
	border: 2px solid #FFBD00 !important;
}

.hpc-table.online-table-cources table tbody tr td {
	vertical-align: middle;
	background: #FFFFFF !important;
	border: 2px solid #FFBD00 !important;
}

.hpc-table.online-table-cources table tbody tr td textarea {
	height: 60px;
	line-height: 30px;
}

.hpc-table.online-table-cources table tbody tr td input {
	width: 100%;
	height: 35px;
	padding: 0 12px;
	min-width: 160px;
	line-height: 35px;
	border-radius: 4px;
	border: 1px solid #BFC1C5;
}

.block-format.secondary-stage-block-details.skill-life {
	border: 1px solid var(--bg-primary);
}

.block-format.secondary-stage-block-details.skill-life h6,
.block-format.secondary-stage-block-details.skill-life .block-detailed-format {
	background: #FFE8D8;
}

.skill-life-alert-note {
	max-width: 420px;
	position: relative;
	background: #FFBD00;
	padding: 10px 10px 10px 120px;
}

.skill-life-alert-note img {
	top: -16px;
	left: 10px;
	position: absolute;
}

.skill-life-alert-note p {
	line-height: 24px;
}

.block-format.secondary-stage-block-details.skill-life {
	border: 1px solid var(--bg-primary);
}

.block-format.secondary-stage-block-details.skill-life h6,
.block-format.secondary-stage-block-details.skill-life .block-detailed-format {
	background: #FFE8D8;
}

.skill-life-alert-note {
	max-width: 420px;
	position: relative;
	background: #FFBD00;
	padding: 10px 10px 10px 120px;
}

.skill-life-alert-note img {
	top: -16px;
	left: 10px;
	position: absolute;
}

.skill-life-alert-note p {
	line-height: 24px;
}

.inner-project-work {
	display: flex;
	margin: 0 0 15px;
	position: relative;
	align-items: stretch;
}

.outer-shaper-box {
	position: relative;
}

.outer-shaper-box::before {
	top: 0px;
	right: 0;
	width: 40%;
	z-index: 0;
	content: "";
	height: 100%;
	position: absolute;
	background: rgba(255, 173, 129, 0.3);
}

.shaper-box {
	width: 270px;
	height: 100%;
	display: flex;
	min-height: 90px;
	padding: 30px 30px;
	position: relative;
	align-items: center;
	background: #FF8A41;
	flex-direction: column;
	justify-content: center;
}

.capsule-shape {
	border-radius: 50px;
}

.project-work-area {
	padding: 15px;
	box-sizing: border-box;
	width: calc(100% - 270px);
	background: rgba(255, 173, 129, 0.3);
}

.project-work-area textarea {
	width: 100%;
	resize: none;
	border: none;
	background: transparent;
}

.project-work-area textarea {
	height: 80px !important;
	line-height: 20px !important;
}

.prompt-corner {
	top: 0;
	right: -1px;
	content: "";
	position: absolute;
	border-top: 18px solid #ffe6d9;
	border-left: 18px solid transparent;
	border-right: 18px solid #ffe6d9;
	border-bottom: 18px solid transparent;
}

.prompt-corner.prompt-corner-bl {
	bottom: 0;
	top: auto;
	left: -1px;
	right: auto;
	border-left: 18px solid #FFFFFF;
	border-top: 18px solid transparent;
	border-bottom: 18px solid #FFFFFF;
	border-right: 18px solid transparent;
}

.project-blue-bg .shaper-box {
	background: #2E75B6;
	color: var(--text-white);
}

.project-blue-bg .project-work-area {
	background: #DAE3F3;
}

.project-blue-bg .prompt-corner.prompt-corner-tr {
	border-top: 18px solid #dae3f3;
	border-right: 18px solid #dae3f3;
}

.project-work-area .list-style-type-dice li::marker {
	color: #2E75B6;
}

.project-work-area .list-style-type-dice li input {
	width: 100%;
	height: 20px;
	border: none;
	display: block;
	margin: 0 0 6px;
	line-height: 20px;
	background: transparent;
	border-bottom: 1px solid rgba(102, 102, 102, 0.4);
}

.project-work-area .list-style-type-dice li:last-child input {
	margin: 0;
}

.block-format.project-work-blue h6 {
	color: #FFFFFF;
	background: #2E75B6;
}

.block-format.project-work-blue .block-detailed-format,
.block-format.learner-eflection .block-detailed-format {
	padding: 15px;
	background: #DAE3F3;
}

.block-format.project-work-blue .block-detailed-format .ellipsis-line-5 {
	background: none;
	height: 142px !important;
	line-height: 29px !important;
}

.know-need {
	position: relative;
	padding: 21px 0 0 0;
}

.arrow-filled-tb {
	top: -36px;
	left: 35%;
	position: absolute;
	width: 36px;
	transform: translateX(-50%);
}

.arrow-fille-lr {
	top: 50%;
	left: -35px;
	width: 36px;
	position: absolute;
	transform: translateY(-50%) rotate(-90deg);
}

img.arrow-filled-tb.arrow-filled-tlr {
	top: 50%;
	left: -17px;
}

img.arrow-filled-tb.arrow-filled-tbb {
	top: auto;
	bottom: -25px;
	width: 25px;
}

.arrow-filled-tb.arrow-filled-trl {
	top: 50%;
	left: auto;
	right: -36px;
	transform: rotate(90deg) translateX(0%);
}

.project-resources-needed-text {
	width: calc(100% - 284px);
}

.project-resources-bars,
.project-resources-bars img {
	width: 284px;
	height: auto;
	position: relative;
}

.project-resources-bars textarea {
	position: absolute;
	left: 49px;
	height: 209px;
	top: 58px;
	width: 172px;
	line-height: 30.5px;
	transform: rotate(-7.5deg);
	background: transparent;
	resize: none;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 7;
	overflow: hidden;
	border: none;
}

.project-resources-needed .block-format.project-work-blue .block-detailed-format .ellipsis-line-5 {
	height: 206px !important;
	-webkit-line-clamp: 8;
}

.block-format.learner-eflection h6 {
	background: #8EC3E6;
	color: var(--text-black);
}

.number-count-border input,
.number-count-border div {
	height: 32px;
	padding: 0 5px;
	font-size: 14px;
	min-width: 32px;
	line-height: 32px;
	text-align: center;
	border-radius: 50px;
	box-sizing: border-box;
	border: 1px solid #8EC3E6;
	font-family: var(--font-family-poppins-500);
}

.learner-teacher-assess .number-count-border input,
.learner-teacher-assess .number-count-border div {
	border: 1px solid #FF8A41;
}

.block-format.learner-teacher-assess h6 {
	background: #FFAD7F;
	color: var(--text-black);
}

.block-format.learner-teacher-assess .block-detailed-format {
	padding: 15px;
	background: #FFE7DA;
}

.group-project-work-table table thead tr th {
	background: #FF8A41;
	color: var(--text-white);
	border: 1px solid #E15A11;
}

.group-project-work-table table thead tr th p {
	border-left: 1px solid #ffffff;
}

.group-project-work-table table thead tr th p span {
	height: 34px;
	display: block;
	padding: 0 5px;
	min-width: 34px;
	font-size: 14px;
	margin: 6px 12px;
	line-height: 34px;
	text-align: center;
	border-radius: 50px;
	background: #FFFFFF;
	box-sizing: border-box;
	color: var(--text-black);
	border: 1px solid #E72828;
}

.group-project-work-table table tbody tr td {
	border: 1px solid #666666;
}

.stage-3-cehck-textarea textarea {
	width: 100%;
	height: 96px;
	resize: none;
	overflow: hidden;
	padding: 5px 10px;
	border-radius: 6px;
	box-sizing: border-box;
	background: transparent;
	border: 1px solid #BFC1C5;
	display: -webkit-box !important;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 5;
}

.stage-3-cehck-textarea span {
	font-size: 12px;
	color: #949494;
	line-height: 18px;
}

.stage-3-cehck-textarea div.gap-2 input {
	width: 32px;
	height: 32px;
	font-size: 14px;
	line-height: 32px;
	text-align: center;
	border-radius: 3px;
	background: #FFFFFF;
	box-sizing: border-box;
	border: 1px solid #E15A11;
	font-family: var(--font-family-poppins-500);
}

.group-project-work-table table tbody tr:nth-child(odd) td {
	background: #FFE7DA
}

.block-format.learner-peer-feedback h6 {
	background: #FFD765;
}

.block-format.learner-peer-feedback .block-detailed-format {
	padding: 15px;
	background: #FFF1CC;
}

.learner-peer-feedback .number-count-border input,
.learner-peer-feedback .number-count-border div {
	border: 1px solid #FFD765
}

.block-format.learner-overview-feedback h6 {
	background: #E15A11;
	color: var(--text-white);
}

.learner-overview-stages {
	padding: 20px;
	background: #FFF1E9
}

.learner-overview-stages ol {
	padding: 0 0 0 15px;
}

.learner-overview-stages ol li {
	font-size: 14px;
	line-height: 21px;
	list-style-type: decimal;
}

.overview-stages-table {
	padding: 0 15px;
}

.overview-stages-table table thead tr th {
	min-width: 100px;
	background: #FFF0BF;
	border: 1px solid #FFC000;
}

.overview-stages-table table tbody tr th,
.overview-stages-table table tbody tr td {
	min-width: 100px;
	font-size: 12px;
	border: 1px solid #FFC000;
}

.overview-stages-table table tbody tr td input {
	width: 100px;
	border: none;
	height: 22px;
	display: block;
	margin: 0 auto;
	background: none;
	line-height: 22px;
	text-align: center;
}

.arrow-bt-curved {
	width: 32px;
	margin: -38px 0 0 0;
}

.dark-level-head-check h4 {
	font-size: 16px;
	color: #FFF;
	min-width: 120px;
	padding: 7px 12px 8px;
	text-align: center;
	background: #004773;
}

.learner-overview-stages ol li ul li {
	padding: 0 0 10px;
	position: relative;
	list-style-type: none;
}

.learner-overview-stages ol li ul li>input {
	left: 50%;
	width: 30px;
	height: 20px;
	position: absolute;
	transform: translate(-50%, -50%);
}

.rounded-edges {
	width: 115px;
	padding: 12px;
	height: 100px;
	display: flex;
	font-size: 16px;
	line-height: 24px;
	border-radius: 50%;
	align-items: center;
	background: #FFF48C;
	flex-direction: column;
	justify-content: center;
	box-sizing: border-box;
	border: 1px solid #000000;
	font-family: var(--font-family-poppins-300);
}

.filled-bg-big {
	background: #FFF48C;
}

.filled-bg-pro {
	background: #F4E346;
}

.filled-bg-adv {
	background: #EBCB00;
}

.on-this-project-img {
	top: -100%;
	left: 6px;
	width: 120px;
	position: absolute;
	margin: -20px 0 0 0;
}

.how-on-this-project textarea.ellipsis-line-5 {
	height: 150px !important;
	background: url('/images/img_border_bottom_line.png') repeat-y left 0px top -1px / 100% 30px !important;
}

.how-on-this-project .step-to-year {
	top: 50%;
	left: -34px;
	margin: 30px 0 0 0;
}

.how-on-this-project .step-to-year.step-to-year-right {
	left: auto;
	right: -34px;
}

.orange-prompt-icon {
	right: 30%;
	width: 16px;
	bottom: -16px;
	position: absolute;
}

.border-bottom-primary {
	border-bottom: 1px solid var(--bg-primary) !important;
}

.appreciation-encouragement {
	display: flex;
	align-items: start;
}

.appreciation-encouragement figure {
	width: 300px;
	padding: 0 70px 0 0;
	position: relative;
}

.img-encouragement-arrow {
	top: 35px;
	position: absolute;
	right: -9px;
	width: 95px;
}

.appreciation-encouragement textarea {
	height: 202px;
	border: none;
	resize: none;
	padding: 6px 15px 10px 15px;
	border-radius: 10px;
	background: #DAE3F3;
	box-sizing: border-box;
	width: calc(100% - 300px);
	display: -webkit-box !important;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 7;
	overflow: hidden !important;
	line-height: 27px;
}

.hpc-table.online-table-cources {
	border-bottom: 12px solid rgba(166, 161, 161, 0.4);
}

.hpc-table.online-table-cources table thead tr th {
	background: #FFD765;
	color: var(--text-black);
	border: 2px solid #FFD765 !important;
}

.hpc-table.online-table-cources table thead tr.upper-th-header th {
	background: #FFBD00;
	border: 2px solid #FFBD00 !important;
}

.hpc-table.online-table-cources table tbody tr th {
	background: #FFF1CC !important;
	border: 2px solid #FFBD00 !important;
}

.hpc-table.online-table-cources table tbody tr td {
	vertical-align: middle;
	background: #FFFFFF !important;
	border: 2px solid #FFBD00 !important;
}

.hpc-table.online-table-cources table tbody tr td textarea {
	height: 60px;
	line-height: 30px;
}

.hpc-table.online-table-cources table tbody tr td input {
	width: 100%;
	height: 35px;
	padding: 0 12px;
	min-width: 160px;
	line-height: 35px;
	border-radius: 4px;
	border: 1px solid #BFC1C5;
}

.duration-box-input {
	width: 150px;
	padding: 0 10px;
	background: #FFCEB5;
	box-sizing: border-box;
}

.duration-box-input input {
	width: 100%;
	height: 36px;
	padding: 0px 10px;
	line-height: 36px;
	border-radius: 4px;
	background: #FFFFFF;
	box-sizing: border-box;
	border: 1px solid #BFC1C5;
}

.write-on-paper {
	position: relative;
}

.write-on-paper>img {
	position: relative;
	width: 445px;
}

.write-on-paper>div {
	left: 0;
	top: 74px;
	width: 100%;
	padding: 0 20px;
	max-width: 445px;
	position: absolute;
	font-family: var(--font-family-poppins-600);
}

.write-on-paper>div p {
	width: 100%;
	font-size: 16px;
	color: #C80747;
	line-height: 150%;
	text-align: center;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.write-on-paper>div textarea {
	width: 100%;
	border: none;
	font-size: 14px;
	resize: none;
	margin: 48px 0 0;
	background: none;
	line-height: 30px !important;
	font-family: var(--font-family-poppins-500);
}




.dark-head {
	position: relative;
}

.block-format.secondary-stage-block-details.dark-head.dark-head-bg h6 {
	background: #BFD6FD url("../images/img_cell_mark.png") no-repeat scroll left 0 top 0 / auto 40px;
}

.dark-head img {
	left: 0;
	top: -10px;
	position: absolute;
}

.finish-school-selection {
	padding: 20px 30px 10px;
	border: 2px solid #004773;
}

.finish-school-selection .radio-active-textarea {
	width: 100%;
	border: none;
	resize: none;
	height: 90px;
	overflow: hidden;
	line-height: 27px;
	background: url(/images/img_border_bottom_line.png) repeat-y left 0px top -1px / 100% 27px;
}

.professional-cources .goal-set-flow {
	border: 1px solid #004773;
}

.goal-set-flow.flow-textarea {
	background: #FFFFFF;
}

.flow-textarea h6 {
	color: #FFF;
	font-size: 14px;
	max-width: 300px;
	line-height: 150%;
	padding: 12px 15px;
	text-align: center;
	margin: 0 auto 20px;
	background: #2873C4;
	box-sizing: border-box;
	font-family: var(--font-family-poppins-600);
}

.flow-textarea textarea {
	width: 100%;
	border: none;
	resize: none;
	height: 240px;
	display: block;
	margin: 0 0 20px;
	line-height: 22px;
	box-sizing: border-box;
	font-size: var(--font-size-standard-secondary);
}

.dot {
	margin-top: 13px;
	margin-left: 2px;
	line-height: 1;
}

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

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

	.title-bar-select .custom-dropdown-wrapper.hpc-state-w-330px {
		width: 245px;
	}

}

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

	.title-bar-select .custom-dropdown-wrapper.hpc-state-w-330px,
	.title-bar-select .custom-dropdown-wrapper.hpc-district-w-225px {
		width: 190px;
	}
}

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

	.title-bar-select .custom-dropdown-wrapper.hpc-state-w-330px,
	.title-bar-select .custom-dropdown-wrapper.hpc-district-w-225px {
		width: 150px;
	}
}

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

	.title-bar-select.hpc-filter-selections .custom-dropdown-wrapper {
		width: 120px !important;
		min-width: 120px !important;
	}
	
}

@media screen and (max-width: 1270px) {
	
	.hpc-filter-selections.title-bar-select .custom-dropdown-wrapper {
		width: 100px !important;
		min-width: 100px !important;
	}

}

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

	.title-bar-select .custom-dropdown-wrapper.student-state-w-330px {
		width: 230px;
	}

}

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

	.title-bar-select .custom-dropdown-wrapper.student-state-w-330px,
	.title-bar-select .custom-dropdown-wrapper.student-district-w-225px {
		width: 188px;
	}

}

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

	.title-bar-select .custom-dropdown-wrapper.school-teacher-state-w-330px {
		width: 235px;
	}

	.title-bar-select .custom-dropdown-wrapper.student-state-w-330px,
	.title-bar-select .custom-dropdown-wrapper.student-district-w-225px {
		width: 150px;
	}

}

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

	.title-bar-select .custom-dropdown-wrapper.student-state-w-330px,
	.title-bar-select .custom-dropdown-wrapper.student-district-w-225px {
		width: 120px;
	}

}

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

	.title-bar-select .custom-dropdown-wrapper.mgmt-type,
	.title-bar-select .custom-dropdown-wrapper.mgmt-sub-type {
		width: 115px;
	}

}

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

	.title-bar-select .custom-dropdown-wrapper.mgmt-type-state {
		width: 130px;
	}

}

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

	.title-bar-select .custom-dropdown-wrapper.school-teacher-state-w-330px {
		width: 200px;
	}

	.title-bar-select .custom-dropdown-wrapper.school-teacher-district-w-225px {
		width: 190px;
	}

}

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

}

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

	.title-bar-select .custom-dropdown-wrapper.school-teacher-state-w-330px {
		width: 150px;
	}

}

@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: 1080px) {

	.title-bar-select .custom-dropdown-wrapper.school-teacher-district-w-225px {
		width: 150px;
	}

	.title-bar-select .d-flex.align-items-center.gap-2:last-child > button.custom-btn {
		font-size: 0;
		gap: 0;
	}

	.title-bar-select .d-flex.align-items-center.gap-2:last-child > button.custom-btn > i {
		font-size: initial;
	}

}

@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: 23px;
	}

	.title-bar-select-sp .title-bar-select>div.d-flex.state-filter-dropdown:last-child {
		flex-direction: column;
		padding-top: 0px;
	}

	.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;
	}

	.title-bar-select .d-flex.align-items-center.gap-2:last-child > button.custom-btn {
		gap: 8px;
		font-size: 12px;
		margin: 0 5px 0 0;
	}

}

@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;
	}

}

.academic-head-year-selection {
	height: 32px;
	line-height: 32px;
	padding: 0 25px 0 12px;
	box-sizing: border-box;
	border: 1px solid #D3D3D3;
	border-radius: 3px;
	background: var(--bg-white) url(../images/icon_arrow_down.png) no-repeat scroll right 8px center / 12px;
	width: 285px;
	font-size: 12px;
	margin: 0 0 0 10px;
	font-family: 'Poppins-SemiBold';
	color: var(--bg-primary);
}

.academic-head-year-selection option {
	font-family: 'Poppins-Regular';
	color: var(--text-black);
}

.academic-head-year-selection option {
	font-family: 'Poppins-Regular';
	color: var(--text-black);
}

.academic-head-year-selection option:checked {
	color: rgba(0, 0, 0, 0.5);
	background: #fff;
}

.project-work-area textarea.textarea-h-100 {
	height: 100px !important;
}

.custom-date-label {
	position: relative;
}

.custom-date-label>.fa {
	position: absolute;
	right: 9px;
	top: 50%;
	transform: translateY(-50%);
}

.react-datepicker__navigation-icon::before,
.react-datepicker__year-read-view--down-arrow,
.react-datepicker__month-read-view--down-arrow,
.react-datepicker__month-year-read-view--down-arrow {
	border-color: #ccc;
	border-style: solid;
	border-width: 3px 3px 0 0;
	content: "";
	display: block;
	height: 9px;
	position: absolute;
	top: 6px;
	width: 9px;
}

/* sr-only utility class for accessibility */
.react-datepicker__sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.react-datepicker-wrapper {
	display: inline-block;
	padding: 0;
	border: 0;
	width: 100%;
}

.react-datepicker {
	font-size: 0.8rem;
	background-color: #fff;
	color: #000;
	border: 1px solid #aeaeae;
	border-radius: 0.3rem;
	display: inline-block;
	position: relative;
	line-height: initial;
}

.react-datepicker--time-only .react-datepicker__time-container {
	border-left: 0;
}

.react-datepicker--time-only .react-datepicker__time,
.react-datepicker--time-only .react-datepicker__time-box {
	border-bottom-left-radius: 0.3rem;
	border-bottom-right-radius: 0.3rem;
}

.react-datepicker-popper {
	z-index: 1;
	line-height: 0;
}

.react-datepicker-popper .react-datepicker__triangle {
	stroke: #aeaeae;
}

.react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle {
	fill: #f0f0f0;
	color: #f0f0f0;
}

.react-datepicker-popper[data-placement^=top] .react-datepicker__triangle {
	fill: #fff;
	color: #fff;
}

.react-datepicker__header {
	text-align: center;
	background-color: #f0f0f0;
	border-bottom: 1px solid #aeaeae;
	border-top-left-radius: 0.3rem;
	padding: 8px 0;
	position: relative;
}

.react-datepicker__header--time {
	padding-bottom: 8px;
	padding-left: 5px;
	padding-right: 5px;
}

.react-datepicker__header--time:not(.react-datepicker__header--time--only) {
	border-top-left-radius: 0;
}

.react-datepicker__header:not(.react-datepicker__header--has-time-select) {
	border-top-right-radius: 0.3rem;
}

.react-datepicker__year-dropdown-container--select,
.react-datepicker__month-dropdown-container--select,
.react-datepicker__month-year-dropdown-container--select,
.react-datepicker__year-dropdown-container--scroll,
.react-datepicker__month-dropdown-container--scroll,
.react-datepicker__month-year-dropdown-container--scroll {
	display: inline-block;
	margin: 0 15px;
}

.react-datepicker__current-month,
.react-datepicker-time__header,
.react-datepicker-year-header {
	margin-top: 0;
	color: #000;
	font-weight: bold;
	font-size: 0.944rem;
}

h2.react-datepicker__current-month {
	padding: 0;
	margin: 0;
}

.react-datepicker-time__header {
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
}

.react-datepicker__navigation {
	align-items: center;
	background: none;
	display: flex;
	justify-content: center;
	text-align: center;
	cursor: pointer;
	position: absolute;
	top: 2px;
	padding: 0;
	border: none;
	z-index: 1;
	height: 32px;
	width: 32px;
	text-indent: -999em;
	overflow: hidden;
}

.react-datepicker__navigation--previous {
	left: 2px;
}

.react-datepicker__navigation--next {
	right: 2px;
}

.react-datepicker__navigation--next--with-time:not(.react-datepicker__navigation--next--with-today-button) {
	right: 85px;
}

.react-datepicker__navigation--years {
	position: relative;
	top: 0;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.react-datepicker__navigation--years-previous {
	top: 4px;
}

.react-datepicker__navigation--years-upcoming {
	top: -4px;
}

.react-datepicker__navigation:hover *::before {
	border-color: rgb(165.75, 165.75, 165.75);
}

.react-datepicker__navigation-icon {
	position: relative;
	top: -1px;
	font-size: 20px;
	width: 0;
}

.react-datepicker__navigation-icon--next {
	left: -2px;
}

.react-datepicker__navigation-icon--next::before {
	transform: rotate(45deg);
	left: -7px;
}

.react-datepicker__navigation-icon--previous {
	right: -2px;
}

.react-datepicker__navigation-icon--previous::before {
	transform: rotate(225deg);
	right: -7px;
}

.react-datepicker__month-container {
	float: left;
}

.react-datepicker__year {
	margin: 0.4rem;
	text-align: center;
}

.react-datepicker__year-wrapper {
	display: flex;
	flex-wrap: wrap;
	max-width: 180px;
}

.react-datepicker__year .react-datepicker__year-text {
	display: inline-block;
	width: 4rem;
	margin: 2px;
}

.react-datepicker__month {
	margin: 0.4rem;
	text-align: center;
}

.react-datepicker__month .react-datepicker__month-text,
.react-datepicker__month .react-datepicker__quarter-text {
	display: inline-block;
	width: 4rem;
	margin: 2px;
}

.react-datepicker__input-time-container {
	clear: both;
	width: 100%;
	float: left;
	margin: 5px 0 10px 15px;
	text-align: left;
}

.react-datepicker__input-time-container .react-datepicker-time__caption {
	display: inline-block;
}

.react-datepicker__input-time-container .react-datepicker-time__input-container {
	display: inline-block;
}

.react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__input {
	display: inline-block;
	margin-left: 10px;
}

.react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__input input {
	width: auto;
}

.react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__input input[type=time]::-webkit-inner-spin-button,
.react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__input input[type=time]::-webkit-outer-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__input input[type=time] {
	-moz-appearance: textfield;
}

.react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__delimiter {
	margin-left: 5px;
	display: inline-block;
}

.react-datepicker__time-container {
	float: right;
	border-left: 1px solid #aeaeae;
	width: 85px;
}

.react-datepicker__time-container--with-today-button {
	display: inline;
	border: 1px solid #aeaeae;
	border-radius: 0.3rem;
	position: absolute;
	right: -87px;
	top: 0;
}

.react-datepicker__time-container .react-datepicker__time {
	position: relative;
	background: white;
	border-bottom-right-radius: 0.3rem;
}

.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box {
	width: 85px;
	overflow-x: hidden;
	margin: 0 auto;
	text-align: center;
	border-bottom-right-radius: 0.3rem;
}

.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list {
	list-style: none;
	margin: 0;
	height: calc(195px + 1.7rem / 2);
	overflow-y: scroll;
	padding-right: 0;
	padding-left: 0;
	width: 100%;
	box-sizing: content-box;
}

.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item {
	height: 30px;
	padding: 5px 10px;
	white-space: nowrap;
}

.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item:hover {
	cursor: pointer;
	background-color: #f0f0f0;
}

.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item--selected {
	background-color: #216ba5;
	color: white;
	font-weight: bold;
}

.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item--selected:hover {
	background-color: #216ba5;
}

.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item--disabled {
	color: #ccc;
}

.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item--disabled:hover {
	cursor: default;
	background-color: transparent;
}

.react-datepicker__week-number {
	color: #ccc;
	display: inline-block;
	width: 1.7rem;
	line-height: 1.7rem;
	text-align: center;
	margin: 0.166rem;
}

.react-datepicker__week-number.react-datepicker__week-number--clickable {
	cursor: pointer;
}

.react-datepicker__week-number.react-datepicker__week-number--clickable:not(.react-datepicker__week-number--selected):hover {
	border-radius: 0.3rem;
	background-color: #f0f0f0;
}

.react-datepicker__week-number--selected {
	border-radius: 0.3rem;
	background-color: #216ba5;
	color: #fff;
}

.react-datepicker__week-number--selected:hover {
	background-color: rgb(28.75, 93.2196969697, 143.75);
}

.react-datepicker__day-names {
	white-space: nowrap;
	margin-bottom: -8px;
}

.react-datepicker__week {
	white-space: nowrap;
}

.react-datepicker__day-name,
.react-datepicker__day,
.react-datepicker__time-name {
	color: #000;
	display: inline-block;
	width: 1.7rem;
	line-height: 1.7rem;
	text-align: center;
	margin: 0.166rem;
}

.react-datepicker__day,
.react-datepicker__month-text,
.react-datepicker__quarter-text,
.react-datepicker__year-text {
	cursor: pointer;
}

.react-datepicker__day:not([aria-disabled=true]):hover,
.react-datepicker__month-text:not([aria-disabled=true]):hover,
.react-datepicker__quarter-text:not([aria-disabled=true]):hover,
.react-datepicker__year-text:not([aria-disabled=true]):hover {
	border-radius: 0.3rem;
	background-color: #f0f0f0;
}

.react-datepicker__day--today,
.react-datepicker__month-text--today,
.react-datepicker__quarter-text--today,
.react-datepicker__year-text--today {
	font-weight: bold;
}

.react-datepicker__day--highlighted,
.react-datepicker__month-text--highlighted,
.react-datepicker__quarter-text--highlighted,
.react-datepicker__year-text--highlighted {
	border-radius: 0.3rem;
	background-color: #3dcc4a;
	color: #fff;
}

.react-datepicker__day--highlighted:not([aria-disabled=true]):hover,
.react-datepicker__month-text--highlighted:not([aria-disabled=true]):hover,
.react-datepicker__quarter-text--highlighted:not([aria-disabled=true]):hover,
.react-datepicker__year-text--highlighted:not([aria-disabled=true]):hover {
	background-color: rgb(49.8551020408, 189.6448979592, 62.5632653061);
}

.react-datepicker__day--highlighted-custom-1,
.react-datepicker__month-text--highlighted-custom-1,
.react-datepicker__quarter-text--highlighted-custom-1,
.react-datepicker__year-text--highlighted-custom-1 {
	color: magenta;
}

.react-datepicker__day--highlighted-custom-2,
.react-datepicker__month-text--highlighted-custom-2,
.react-datepicker__quarter-text--highlighted-custom-2,
.react-datepicker__year-text--highlighted-custom-2 {
	color: green;
}

.react-datepicker__day--holidays,
.react-datepicker__month-text--holidays,
.react-datepicker__quarter-text--holidays,
.react-datepicker__year-text--holidays {
	position: relative;
	border-radius: 0.3rem;
	background-color: #ff6803;
	color: #fff;
}

.react-datepicker__day--holidays .overlay,
.react-datepicker__month-text--holidays .overlay,
.react-datepicker__quarter-text--holidays .overlay,
.react-datepicker__year-text--holidays .overlay {
	position: absolute;
	bottom: 100%;
	left: 50%;
	transform: translateX(-50%);
	background-color: #333;
	color: #fff;
	padding: 4px;
	border-radius: 4px;
	white-space: nowrap;
	visibility: hidden;
	opacity: 0;
	transition: visibility 0s, opacity 0.3s ease-in-out;
}

.react-datepicker__day--holidays:not([aria-disabled=true]):hover,
.react-datepicker__month-text--holidays:not([aria-disabled=true]):hover,
.react-datepicker__quarter-text--holidays:not([aria-disabled=true]):hover,
.react-datepicker__year-text--holidays:not([aria-disabled=true]):hover {
	background-color: rgb(207, 82.9642857143, 0);
}

.react-datepicker__day--holidays:hover .overlay,
.react-datepicker__month-text--holidays:hover .overlay,
.react-datepicker__quarter-text--holidays:hover .overlay,
.react-datepicker__year-text--holidays:hover .overlay {
	visibility: visible;
	opacity: 1;
}

.react-datepicker__day--selected,
.react-datepicker__day--in-selecting-range,
.react-datepicker__day--in-range,
.react-datepicker__month-text--selected,
.react-datepicker__month-text--in-selecting-range,
.react-datepicker__month-text--in-range,
.react-datepicker__quarter-text--selected,
.react-datepicker__quarter-text--in-selecting-range,
.react-datepicker__quarter-text--in-range,
.react-datepicker__year-text--selected,
.react-datepicker__year-text--in-selecting-range,
.react-datepicker__year-text--in-range {
	border-radius: 0.3rem;
	background-color: #216ba5;
	color: #fff;
}

.react-datepicker__day--selected:not([aria-disabled=true]):hover,
.react-datepicker__day--in-selecting-range:not([aria-disabled=true]):hover,
.react-datepicker__day--in-range:not([aria-disabled=true]):hover,
.react-datepicker__month-text--selected:not([aria-disabled=true]):hover,
.react-datepicker__month-text--in-selecting-range:not([aria-disabled=true]):hover,
.react-datepicker__month-text--in-range:not([aria-disabled=true]):hover,
.react-datepicker__quarter-text--selected:not([aria-disabled=true]):hover,
.react-datepicker__quarter-text--in-selecting-range:not([aria-disabled=true]):hover,
.react-datepicker__quarter-text--in-range:not([aria-disabled=true]):hover,
.react-datepicker__year-text--selected:not([aria-disabled=true]):hover,
.react-datepicker__year-text--in-selecting-range:not([aria-disabled=true]):hover,
.react-datepicker__year-text--in-range:not([aria-disabled=true]):hover {
	background-color: rgb(28.75, 93.2196969697, 143.75);
}

.react-datepicker__day--keyboard-selected,
.react-datepicker__month-text--keyboard-selected,
.react-datepicker__quarter-text--keyboard-selected,
.react-datepicker__year-text--keyboard-selected {
	border-radius: 0.3rem;
	background-color: rgb(186.25, 217.0833333333, 241.25);
	color: rgb(0, 0, 0);
}

.react-datepicker__day--keyboard-selected:not([aria-disabled=true]):hover,
.react-datepicker__month-text--keyboard-selected:not([aria-disabled=true]):hover,
.react-datepicker__quarter-text--keyboard-selected:not([aria-disabled=true]):hover,
.react-datepicker__year-text--keyboard-selected:not([aria-disabled=true]):hover {
	background-color: rgb(28.75, 93.2196969697, 143.75);
}

.react-datepicker__day--in-selecting-range:not(.react-datepicker__day--in-range,
	.react-datepicker__month-text--in-range,
	.react-datepicker__quarter-text--in-range,
	.react-datepicker__year-text--in-range),
.react-datepicker__month-text--in-selecting-range:not(.react-datepicker__day--in-range,
	.react-datepicker__month-text--in-range,
	.react-datepicker__quarter-text--in-range,
	.react-datepicker__year-text--in-range),
.react-datepicker__quarter-text--in-selecting-range:not(.react-datepicker__day--in-range,
	.react-datepicker__month-text--in-range,
	.react-datepicker__quarter-text--in-range,
	.react-datepicker__year-text--in-range),
.react-datepicker__year-text--in-selecting-range:not(.react-datepicker__day--in-range,
	.react-datepicker__month-text--in-range,
	.react-datepicker__quarter-text--in-range,
	.react-datepicker__year-text--in-range) {
	background-color: rgba(33, 107, 165, 0.5);
}

.react-datepicker__month--selecting-range .react-datepicker__day--in-range:not(.react-datepicker__day--in-selecting-range,
	.react-datepicker__month-text--in-selecting-range,
	.react-datepicker__quarter-text--in-selecting-range,
	.react-datepicker__year-text--in-selecting-range),
.react-datepicker__year--selecting-range .react-datepicker__day--in-range:not(.react-datepicker__day--in-selecting-range,
	.react-datepicker__month-text--in-selecting-range,
	.react-datepicker__quarter-text--in-selecting-range,
	.react-datepicker__year-text--in-selecting-range),
.react-datepicker__month--selecting-range .react-datepicker__month-text--in-range:not(.react-datepicker__day--in-selecting-range,
	.react-datepicker__month-text--in-selecting-range,
	.react-datepicker__quarter-text--in-selecting-range,
	.react-datepicker__year-text--in-selecting-range),
.react-datepicker__year--selecting-range .react-datepicker__month-text--in-range:not(.react-datepicker__day--in-selecting-range,
	.react-datepicker__month-text--in-selecting-range,
	.react-datepicker__quarter-text--in-selecting-range,
	.react-datepicker__year-text--in-selecting-range),
.react-datepicker__month--selecting-range .react-datepicker__quarter-text--in-range:not(.react-datepicker__day--in-selecting-range,
	.react-datepicker__month-text--in-selecting-range,
	.react-datepicker__quarter-text--in-selecting-range,
	.react-datepicker__year-text--in-selecting-range),
.react-datepicker__year--selecting-range .react-datepicker__quarter-text--in-range:not(.react-datepicker__day--in-selecting-range,
	.react-datepicker__month-text--in-selecting-range,
	.react-datepicker__quarter-text--in-selecting-range,
	.react-datepicker__year-text--in-selecting-range),
.react-datepicker__month--selecting-range .react-datepicker__year-text--in-range:not(.react-datepicker__day--in-selecting-range,
	.react-datepicker__month-text--in-selecting-range,
	.react-datepicker__quarter-text--in-selecting-range,
	.react-datepicker__year-text--in-selecting-range),
.react-datepicker__year--selecting-range .react-datepicker__year-text--in-range:not(.react-datepicker__day--in-selecting-range,
	.react-datepicker__month-text--in-selecting-range,
	.react-datepicker__quarter-text--in-selecting-range,
	.react-datepicker__year-text--in-selecting-range) {
	background-color: #f0f0f0;
	color: #000;
}

.react-datepicker__day--disabled,
.react-datepicker__month-text--disabled,
.react-datepicker__quarter-text--disabled,
.react-datepicker__year-text--disabled {
	cursor: default;
	color: #ccc;
}

.react-datepicker__day--disabled .overlay,
.react-datepicker__month-text--disabled .overlay,
.react-datepicker__quarter-text--disabled .overlay,
.react-datepicker__year-text--disabled .overlay {
	position: absolute;
	bottom: 70%;
	left: 50%;
	transform: translateX(-50%);
	background-color: #333;
	color: #fff;
	padding: 4px;
	border-radius: 4px;
	white-space: nowrap;
	visibility: hidden;
	opacity: 0;
	transition: visibility 0s, opacity 0.3s ease-in-out;
}

.react-datepicker__input-container {
	position: relative;
	display: inline-block;
	width: 100%;
}

.react-datepicker__input-container input {
	padding: 0 30px 0 8px;
	cursor: pointer;
}

.react-datepicker__input-container .react-datepicker__calendar-icon {
	position: absolute;
	padding: 0.5rem;
	box-sizing: content-box;
}

.react-datepicker__view-calendar-icon input {
	padding: 6px 10px 5px 25px;
}

.react-datepicker__year-read-view,
.react-datepicker__month-read-view,
.react-datepicker__month-year-read-view {
	border: 1px solid transparent;
	border-radius: 0.3rem;
	position: relative;
}

.react-datepicker__year-read-view:hover,
.react-datepicker__month-read-view:hover,
.react-datepicker__month-year-read-view:hover {
	cursor: pointer;
}

.react-datepicker__year-read-view:hover .react-datepicker__year-read-view--down-arrow,
.react-datepicker__year-read-view:hover .react-datepicker__month-read-view--down-arrow,
.react-datepicker__month-read-view:hover .react-datepicker__year-read-view--down-arrow,
.react-datepicker__month-read-view:hover .react-datepicker__month-read-view--down-arrow,
.react-datepicker__month-year-read-view:hover .react-datepicker__year-read-view--down-arrow,
.react-datepicker__month-year-read-view:hover .react-datepicker__month-read-view--down-arrow {
	border-top-color: rgb(178.5, 178.5, 178.5);
}

.react-datepicker__year-read-view--down-arrow,
.react-datepicker__month-read-view--down-arrow,
.react-datepicker__month-year-read-view--down-arrow {
	transform: rotate(135deg);
	right: -16px;
	top: 0;
}

.react-datepicker__year-dropdown,
.react-datepicker__month-dropdown,
.react-datepicker__month-year-dropdown {
	background-color: #f0f0f0;
	position: absolute;
	width: 50%;
	left: 25%;
	top: 30px;
	z-index: 1;
	text-align: center;
	border-radius: 0.3rem;
	border: 1px solid #aeaeae;
}

.react-datepicker__year-dropdown:hover,
.react-datepicker__month-dropdown:hover,
.react-datepicker__month-year-dropdown:hover {
	cursor: pointer;
}

.react-datepicker__year-dropdown--scrollable,
.react-datepicker__month-dropdown--scrollable,
.react-datepicker__month-year-dropdown--scrollable {
	height: 150px;
	overflow-y: scroll;
}

.react-datepicker__year-option,
.react-datepicker__month-option,
.react-datepicker__month-year-option {
	line-height: 20px;
	width: 100%;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.react-datepicker__year-option:first-of-type,
.react-datepicker__month-option:first-of-type,
.react-datepicker__month-year-option:first-of-type {
	border-top-left-radius: 0.3rem;
	border-top-right-radius: 0.3rem;
}

.react-datepicker__year-option:last-of-type,
.react-datepicker__month-option:last-of-type,
.react-datepicker__month-year-option:last-of-type {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	border-bottom-left-radius: 0.3rem;
	border-bottom-right-radius: 0.3rem;
}

.react-datepicker__year-option:hover,
.react-datepicker__month-option:hover,
.react-datepicker__month-year-option:hover {
	background-color: #ccc;
}

.react-datepicker__year-option:hover .react-datepicker__navigation--years-upcoming,
.react-datepicker__month-option:hover .react-datepicker__navigation--years-upcoming,
.react-datepicker__month-year-option:hover .react-datepicker__navigation--years-upcoming {
	border-bottom-color: rgb(178.5, 178.5, 178.5);
}

.react-datepicker__year-option:hover .react-datepicker__navigation--years-previous,
.react-datepicker__month-option:hover .react-datepicker__navigation--years-previous,
.react-datepicker__month-year-option:hover .react-datepicker__navigation--years-previous {
	border-top-color: rgb(178.5, 178.5, 178.5);
}

.react-datepicker__year-option--selected,
.react-datepicker__month-option--selected,
.react-datepicker__month-year-option--selected {
	position: absolute;
	left: 15px;
}

.react-datepicker__close-icon {
	cursor: pointer;
	background-color: transparent;
	border: 0;
	outline: 0;
	padding: 0 6px 0 0;
	position: absolute;
	top: 0;
	right: 0;
	height: 100%;
	display: table-cell;
	vertical-align: middle;
}

.react-datepicker__close-icon::after {
	cursor: pointer;
	background-color: #216ba5;
	color: #fff;
	border-radius: 50%;
	height: 16px;
	width: 16px;
	padding: 2px;
	font-size: 12px;
	line-height: 1;
	text-align: center;
	display: table-cell;
	vertical-align: middle;
	content: "×";
}

.react-datepicker__close-icon--disabled {
	cursor: default;
}

.react-datepicker__close-icon--disabled::after {
	cursor: default;
	background-color: #ccc;
}

.react-datepicker__today-button {
	background: #f0f0f0;
	border-top: 1px solid #aeaeae;
	cursor: pointer;
	text-align: center;
	font-weight: bold;
	padding: 5px 0;
	clear: left;
}

.react-datepicker__portal {
	position: fixed;
	width: 100vw;
	height: 100vh;
	background-color: rgba(0, 0, 0, 0.8);
	left: 0;
	top: 0;
	justify-content: center;
	align-items: center;
	display: flex;
	z-index: 2147483647;
}

.react-datepicker__portal .react-datepicker__day-name,
.react-datepicker__portal .react-datepicker__day,
.react-datepicker__portal .react-datepicker__time-name {
	width: 3rem;
	line-height: 3rem;
}

@media (max-width: 400px),
(max-height: 550px) {

	.react-datepicker__portal .react-datepicker__day-name,
	.react-datepicker__portal .react-datepicker__day,
	.react-datepicker__portal .react-datepicker__time-name {
		width: 2rem;
		line-height: 2rem;
	}
}

.react-datepicker__portal .react-datepicker__current-month,
.react-datepicker__portal .react-datepicker-time__header {
	font-size: 1.44rem;
}

.react-datepicker__children-container {
	width: 13.8rem;
	margin: 0.4rem;
	padding-right: 0.2rem;
	padding-left: 0.2rem;
	height: auto;
}

.react-datepicker__aria-live {
	position: absolute;
	clip-path: circle(0);
	border: 0;
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	width: 1px;
	white-space: nowrap;
}

.react-datepicker__calendar-icon {
	width: 1em;
	height: 1em;
	vertical-align: -0.125em;
}

/* Hidden validator input for custom dropdowns to leverage native required validation */
.dropdown-native-validator-input {
	position: absolute;
	opacity: 0;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	border: none;
	pointer-events: none;
}

/* Visual emphasis for highlighted dropdown item */
.custom-dropdown-item.highlighted {
	background-color: #f0f6ff;
	outline: 1px solid #9cc2ff;
}

/* Tooltip
============================================================= */

.multi-line-tooltip {
	max-width: 320px; /* constrain width so long text wraps to 3-4 lines */
	white-space: normal;
	overflow-wrap: anywhere;
	word-break: break-word;
	line-height: 1.4;
	text-align: left;
}

.cursor-help {
	cursor: help !important;
}

/* Activity Apply Modal: remove focus outline on listbox container */
.activity-bank-listbox:focus,
.activity-bank-listbox:focus-visible {
	outline: none !important;
	box-shadow: none !important;
}

/* HPC image delete icon overlay */
.hpc-img-delete-btn {
	position: absolute;
	top: 6px;
	right: 6px;
	z-index: 2;
	/* circular red badge */
	width: 32px;
	height: 32px;
	border-radius: 50%;
	border: none;
	padding: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: radial-gradient(circle at 35% 30%, #ff6b6b 0%, #ff4d4f 40%, #e02424 75%, #c41414 100%);
	box-shadow:
		0 2px 6px rgba(0, 0, 0, 0.25),
		inset 0 6px 10px rgba(255, 255, 255, 0.28),
		inset 0 -6px 10px rgba(0, 0, 0, 0.2);
	color: #fff;
	line-height: 1;
	cursor: pointer;
}

/* ensure Bootstrap btn-light doesn’t override our styling */
button.hpc-img-delete-btn.btn,
button.hpc-img-delete-btn.btn-light {
	background: radial-gradient(circle at 35% 30%, #ff6b6b 0%, #ff4d4f 40%, #e02424 75%, #c41414 100%);
	border: none;
	color: #fff;
}

.hpc-img-delete-btn .fa-xmark {
	font-size: 16px;
	color: #fff;
}

.hpc-img-delete-btn:hover {
	transform: scale(1.05);
	filter: brightness(1.05);
}

.hpc-img-delete-btn:active {
	transform: scale(0.95);
}