@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap");
@font-face {
  font-family: myFont1;
  src: url("../font/font1/myFont1.ttf");
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primaryColor: #48012d;
  --secondaryColor: #009DAE;
  --secondaryTextColor: rgb(141, 141, 141);
  --thirdColor: #f9fafc;
  --fourthColor: #f96464;
  --fifthColor: #f19f24;
}

body {
  font-family: "Montserrat", sans-serif;
	/*background: #0000001f;*/
}
@media(max-width:400px){
	body{
		background: #ffff;
	}
}

/* width */
::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

/* Track */
::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.048);
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #D4F6CC;
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primaryColor);
}

.container {
  width: 90%;
  margin: 0 auto;
}

a, button, div, span, i, b, h1, h2, h3, h4, h5, h6, p, input, ul, li, select, label, textarea {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  font-family: "Montserrat", sans-serif;
}

input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
  font-family: "Montserrat", sans-serif;
}

input {
  -webkit-tap-highlight-color: transparent;
}

::-webkit-datetime-edit-year-field:not([aria-valuenow]),
::-webkit-datetime-edit-month-field:not([aria-valuenow]),
::-webkit-datetime-edit-day-field:not([aria-valuenow]) {
  color: transparent;
}

video::-internal-media-controls-overlay-cast-button {
  display: none;
}

textarea {
  resize: none;
  font-family: "Montserrat", sans-serif;
}

::-moz-selection {
  color: var(--primaryColor);
  background: transparent;
}

::selection {
  color: var(--primaryColor);
  background: transparent;
}

main {
  overflow: hidden;
}
@media(max-width:768px){
	main{
		width: 400px;
		margin: 0 auto;
	}
}
@media(max-width:480px){
	main{
		width :100%;
	}
}

.shimmer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 105;
  background: rgba(0, 0, 0, 0.486);
  display: none;
}


.idCardPopup{
	position: fixed;
	z-index: 200;
	background: white;
	border-radius: 10px;
	transform: translate(-50%, -50%);
	top: 50%;
	left: 50%;
	width: 500px;
	overflow: hidden;
	display: none;
}
@media(max-width: 480px){
	.idCardPopup{
		width: 95%;
	}
}
.idCardPopup::after{
	position: absolute;
	content: '';
	width:200px;
	height: 200px;
	background: rgb(72 1 45);
	z-index: -1;
	bottom:0;
	right: 0;
	clip-path: polygon(100% 0, 0% 100%, 100% 100%);
}
@media(max-width: 480px){
	.idCardPopup::after{
		width:150px;
		height: 150px;
	}
}
.idCardPopup .closeIdCardPopup{
	position: absolute;
	z-index: 2;
	top: 20px;
	right: 20px;
	cursor: pointer;
}
.idCardPopup .closeIdCardPopup span{
	font-size: 25px;
	color: #bbbb;
	transition: .3s;
}
.idCardPopup .closeIdCardPopup span:hover{
	transition: .3s;
	color: white;
}
.idCardPopup .closeIdCardPopup i{
	font-size: 25px;
	color: #bbbb;
	transition: .3s;
}
.idCardPopup .closeIdCardPopup i:hover{
	transition: .3s;
	color: white;
}
.idCardPopup .idCardPopupHead{
	width: 100%;
	padding: 30px;
	/*padding: 10px;*/
	background: rgb(72 1 45);
	display :flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	border-radius: 0px 0px 40px 40px;
}
@media(max-width: 480px){
	.idCardPopup .idCardPopupHead{
		padding: 15px;
	}
}
.idCardPopup .idCardPopupHead .idCardPopupHeadImg{
	width: 70%;
}
@media(max-width: 480px){
	.idCardPopup .idCardPopupHead .idCardPopupHeadImg{
		width: 50%;
	}
}
.idCardPopup .idCardPopupHead .idCardPopupHeadImg img{
	width: 100%;
	height: 100%;
	object-fit: contain;
	/*height: 80px;
    object-fit: fill;*/
}
.idCardPopup .idCardPopupBody{
	width:100%;
	padding: 20px 30px;
	display: flex;
	align-items: flex-start;
	justify-content :space-between;
}
@media(max-width: 480px){
	.idCardPopup .idCardPopupBody{
		padding: 10px 15px;
	}
}
.idCardPopup .idCardPopupBody .idCardPopupBodyDetail{
	flex: 0 0 65%;
}
.idCardPopup .idCardPopupBody .idCardPopupBodyDetail ul{
	width: 100%;
	display :flex;
	flex-direction :column;
	gap: 15px;
}
.idCardPopup .idCardPopupBody .idCardPopupBodyDetail ul li{
	list-style: none;
	display :flex;
	flex-direction :column;
	gap: 3px;
}
.idCardPopup .idCardPopupBody .idCardPopupBodyDetail ul li h2{
	font-size: 16px;
	font-weight: 600;
	text-transform: uppercase;
}
@media(max-width: 480px){
	.idCardPopup .idCardPopupBody .idCardPopupBodyDetail ul li h2{
		font-size: 12px;
	}
}
.idCardPopup .idCardPopupBody .idCardPopupBodyDetail ul li p{
	font-size: 16px;
	font-weight: 400;
	text-transform: uppercase;
}
@media(max-width: 480px){
	.idCardPopup .idCardPopupBody .idCardPopupBodyDetail ul li p{
		font-size: 12px;
	}
}
.idCardPopup .idCardPopupBody .idCardPopupBodyDetail ul li span{
	font-size: 16px;
	font-weight: 400;
}
@media(max-width: 480px){
	.idCardPopup .idCardPopupBody .idCardPopupBodyDetail ul li span{
		font-size: 12px;
	}
}
.idCardPopup .idCardPopupBody .idCardPopupBodyProfile{
	flex: 0 0 30%;
}
.idCardPopup .idCardPopupBody .idCardPopupBodyProfile .idCardPopupBodyProfileImg{
	width: 100%;
	height: 160px;
	background :#eee;
	border: 2px solid black;
	overflow: hidden;
}
@media(max-width: 480px){
	.idCardPopup .idCardPopupBody .idCardPopupBodyProfile .idCardPopupBodyProfileImg{
		height: 140px;
	}
}
.idCardPopup .idCardPopupBody .idCardPopupBodyProfile .idCardPopupBodyProfileImg img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.otpPopup{
	position: fixed;
	z-index: 200;
	background: white;
	border-radius: 10px;
	padding: 30px;
	transform: translate(-50%, -50%);
	top: 50%;
	left: 50%;
	width: 400px;
	display: none;
}
@media(max-width: 480px){
	.otpPopup{
		width: 90%;
	}
}
.otpPopup h1{
	font-size: 22px;
	font-weight: 600;
}
.otpPopup span{
	font-size: 14px;
	margin-top: 10px;
	display: flex;
}
.otpPopup span b{
	font-weight: 600;
	color: var(--primaryColor);
	margin-left: 10px;
}
.otpPopup h2{
	font-size: 18px;
	font-weight: 600;
	margin-top: 30px;
}
.otpPopup .formGroup{
	width :100%;
	margin-top: 10px;
}
.otpPopup .formGroup .formGroupOtpInput{
	width: 100%;
	display :flex;
	justify-content: space-between;
	gap: 10px;
}
.otpPopup .formGroup #message {
	display: flex;
	align-items: center;
	width: 100%;
	margin-top: 8px;
	border-radius: 5px;
	font-weight: 500;
	font-size: 14px;
}
.otpPopup .formGroup #message.success {
	background: #4dff3222;
	color: #088d04;
	padding: 10px 15px;
}
.otpPopup .formGroup #message.error {
	background: #ff323222;
	color: #ff0000;
	padding: 10px 15px;
}
.otpPopup .formGroup .formGroupOtpInput input{
	width: 100%;
	border: 1px solid #ccc;
	padding: 0;
	font-size: 16px;
	font-weight: 500;
	border-radius: 5px;
	outline: none;
	margin-top: 5px;
	height: 50px;
	background: white;
	text-align: center;
}
.otpPopup .formGroup .formGroupOtpInput input::placeholder{
	font-size: 16px;
	color: #ccc;
}
.otpPopup .formGroup .formGroupOtpInput input[type="password"]{
	letter-spacing: 10px;
	font-size: 20px;
}
.otpPopup .formGroup .formGroupOtpInput input::placeholder{
	letter-spacing: 20px;
}
.otpPopup .formGroup .formGroupOtpInput input:focus{
	border: 1px solid var(--primaryColor);
}
.otpPopup .formGroup .formGroupOtpInput input:disabled{
	background: white;
}
.otpPopup .formGroup input:focus{
	border: 1px solid #000;
}
.otpPopup .resendOtp{
	width: 100%;
	margin-top: 10px;
	display :flex;
	align-items: center;
	justify-content: flex-end;
}
.otpPopup .resendOtp .resendOtpBtn{
	font-size: 16px;
	font-weight: 600;
	color: var(--primaryColor);
	cursor:pointer;
	display: none;
}
.otpPopup .formBtnArea{
	width :100%;
	margin-top: 20px;
}
.otpPopup .formBtnArea button{
	width :100%;
	padding: 16px;
	font-weight: 500;
	color: white;
	background: var(--primaryColor);
	font-size: 16px;
	border-radius: 10px;
	outline: none;
	border: none;
	cursor: pointer;
	text-transform: uppercase;
	transition: .3s all;
}
.otpPopup .formBtnArea button:hover{
	opacity: .7;
}


.existingUserAlert{
	position: fixed;
	z-index: 120;
	width: 400px;
	padding: 20px;
	background: white;
	border-radius: 10px;
	transform: translateX(-50%);
	left: 50%;
	bottom: -110%;
	opacity: 0;
	visibility: hidden;
	display: flex;
	align-items: center;
	justify-content: space-between;;
	align-items: center;
	transition: 0.3s ease all;
}
@media (max-width: 480px) {
  .existingUserAlert {
    width: 90%;
    padding: 20px;
  }
}
.existingUserAlert .existingUserAlertIcon{
	font-size: 20px;
	color: red;
}
.existingUserAlert p{
	width: calc(100% - 30px);
	font-size: 14px;
	font-weight: 500;
}
.existingUserAlertActive {
  bottom: 20px;
  opacity: 1;
  visibility: visible;
  transition: 0.3s ease all;
}

.deletePopup {
  position: fixed;
  z-index: 120;
  width: 400px;
  padding: 40px;
  background: white;
  border-radius: 10px;
  transform: translateX(-50%);
  left: 50%;
  bottom: -110%;
  opacity: 0;
  visibility: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: 0.3s ease all;
}
@media (max-width: 480px) {
  .deletePopup {
    width: 90%;
    padding: 20px;
  }
}
.deletePopup .deletePopupIcon {
  width: 100px;
}
.deletePopup .deletePopupIcon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.deletePopup p {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  margin-top: 20px;
  color: black;
}
.deletePopup span {
  font-size: 14px;
  color: var(--secondaryTextColor);
  margin-top: 10px;
  text-align: center;
}
.deletePopup .deletePopupBtnArea {
  width: 100%;
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.deletePopup .deletePopupBtnArea .closeDeletePopup {
  flex: 0 0 48%;
  padding: 12px;
  text-align: center;
  border-radius: 10px;
  background: #F8F5F1;
  color: black;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  transition: 0.2s;
}
.deletePopup .deletePopupBtnArea .closeDeletePopup:hover {
  transition: 0.2s;
  background: #F4EEE8;
}
.deletePopup .deletePopupBtnArea .confirmDeletePopup {
  flex: 0 0 48%;
  padding: 12px;
  text-align: center;
  border-radius: 10px;
  background: var(--fourthColor);
  color: white;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  transition: 0.2s;
}
.deletePopup .deletePopupBtnArea .confirmDeletePopup:hover {
  transition: 0.2s;
  background: var(--secondaryColor);
}

.deletePopupActive {
  bottom: 20px;
  opacity: 1;
  visibility: visible;
  transition: 0.3s ease all;
}

#dashboard {
  width: 100%;
}

.formSection {
  width: 100%;
  background: var(--thirdColor);
  position: relative;
  z-index: 0;
  height: calc(100vh - 60px);
  margin-top: 60px;
}
@media (max-width: 480px) {
  .formSection {
    margin-top: 60px;
    padding: 50px 0px;
    min-height: calc(100vh - 60px);
  }
}
.formSection .formSectionMain {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  min-height: calc(100vh - 80px);
}
@media (max-width: 480px) {
  .formSection .formSectionMain {
    justify-content: flex-start;
    align-items: flex-start;
    min-height: inherit;
  }
}
.formSection .formSectionMain .form {
  width: 500px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  background: white;
  border-radius: 20px;
}
@media (max-width: 480px) {
  .formSection .formSectionMain .form {
    width: 100%;
    padding: 20px;
  }
}
.formSection .formSectionMain .form h1 {
  font-size: 25px;
  font-weight: 600;
}
.formSection .formSectionMain .form form {
  width: 100%;
  margin-top: 20px;
}
.formSection .formSectionMain .form form .formGroup {
  width: 100%;
  display: flex;
  margin-top: 20px;
  flex-direction: column;
}
.formSection .formSectionMain .form form .formGroup label {
  font-size: 14px;
  font-weight: 500;
  color: var(--secondaryTextColor);
}
.formSection .formSectionMain .form form .formGroup input {
  width: 100%;
  height: 45px;
  margin-top: 5px;
  border: 1px solid #eee;
  outline: none;
  padding: 0px 15px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 10px;
  background: var(--thirdColor);
  caret-color: var(--primaryColor);
}
.formSection .formSectionMain .form form .formGroup input:focus {
  border: 1px solid #ccc;
}
.formSection .formSectionMain .form form .formGroup .passwordinput {
  letter-spacing: 15px;
  padding-right: 40px;
}
.formSection .formSectionMain .form form .formGroup .formPassword {
  position: relative;
}
.formSection .formSectionMain .form form .formGroup .formPassword .togglePassword {
  position: absolute;
  top: 15px;
  right: 15px;
  cursor: pointer;
  color: var(--primaryColor);
  font-size: 20px;
}
.formSection .formSectionMain .form form .forgtPsd {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  margin-top: 20px;
}
.formSection .formSectionMain .form form .forgtPsd a {
  font-size: 14px;
  color: black;
  text-decoration: none;
  font-weight: 500;
  text-align: right;
}
.formSection .formSectionMain .form form .forgtPsd a:hover {
  text-decoration: underline;
}
.formSection .formSectionMain .form form button {
  width: 100%;
  margin-top: 30px;
  padding: 14px;
  background: var(--primaryColor);
  color: white;
  border: none;
  outline: none;
  cursor: pointer;
  border-radius: 15px;
  font-weight: 500;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 2px;
  box-shadow: 0px 5px 20px -2px rgba(0, 76, 255, 0.235);
  transition: 0.3s;
}
.formSection .formSectionMain .form form button:hover {
  box-shadow: none;
  transition: 0.3s;
  background: var(--secondaryColor);
}
.formSection .formSectionMain .form form .disabledBtn {
  cursor: not-allowed;
  opacity: 0.6;
}
.formSection .formSectionMain .form form .loginBottomLine {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-top: 50px;
  font-size: 18px;
  font-weight: 500;
}
.formSection .formSectionMain .form form .loginBottomLine::after {
  position: absolute;
  content: "";
  width: 40%;
  height: 1px;
  left: 0;
  background: linear-gradient(45deg, rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.196), rgb(0, 0, 0));
  border-top-right-radius: 1px;
  border-bottom-right-radius: 1px;
}
.formSection .formSectionMain .form form .loginBottomLine::before {
  position: absolute;
  content: "";
  width: 40%;
  height: 1px;
  right: 0;
  background: linear-gradient(45deg, rgb(0, 0, 0), rgba(0, 0, 0, 0.196), rgba(255, 255, 255, 0));
  border-top-left-radius: 1px;
  border-bottom-left-radius: 1px;
}
.formSection .formSectionMain .form form .loginBottomLink {
  width: 100%;
  margin-top: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.formSection .formSectionMain .form form .loginBottomLink p {
  font-size: 14px;
  margin-top: 0;
  font-weight: 500;
  text-align: center;
  opacity: 1;
}
.formSection .formSectionMain .form form .loginBottomLink p a {
  text-decoration: none;
  color: var(--primaryColor);
}

.sidemenu {
  position: fixed;
  z-index: 10;
  width: 300px;
  background: white;
  height: 100vh;
  top: 0;
  left: 0;
  border-right: 1px solid #ededed;
  transition: 0.2s;
}
@media (max-width: 480px) {
  .sidemenu {
    left: -100%;
    z-index: 100;
  }
}
.sidemenu .closeSidemenu {
  display: none;
}
@media (max-width: 480px) {
  .sidemenu .closeSidemenu {
    display: flex;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 2;
  }
  .sidemenu .closeSidemenu span {
    font-size: 22px;
  }
}
.sidemenu .sidemenuHead {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  top: 20px;
  position: absolute;
  left: 0;
  background: white;
}
.sidemenu .sidemenuHead .sidemenuLogo {
  width: 180px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--primaryColor);
  padding: 10px 20px;
  border-radius: 10px;
  transition: 0.2s;
}
.sidemenu .sidemenuHead .sidemenuLogo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  transition: 0.2s;
}
.sidemenu .sidemenuHead .sidemenuLogo .halfSidImg {
  display: none;
}
.sidemenu .navProfile {
  padding: 5px 10px;
  background: var(--thirdColor);
  display: none;
  justify-content: space-between;
  align-items: center;
  border-radius: 10px;
}
@media (max-width: 480px) {
  .sidemenu .navProfile {
    display: flex;
    margin: 0 auto;
    margin-top: 90px;
    width: 90%;
    padding: 10px 15px;
  }
}
.sidemenu .navProfile .navProfileThumbnail {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  overflow: hidden;
  background: #C8F2EF;
  display: flex;
  justify-content: center;
  align-items: center;
}
.sidemenu .navProfile .navProfileThumbnail img {
  width: 70%;
  height: 70%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sidemenu .navProfile .navProfileContent {
  max-width: 200px;
  margin-left: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: 0.2s;
}
@media (max-width: 480px) {
  .sidemenu .navProfile .navProfileContent {
    max-width: inherit;
    width: calc(100% - 45px);
  }
}
.sidemenu .navProfile .navProfileContent h4 {
  font-size: 14px;
  font-weight: 600;
  max-height: 45px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.sidemenu .navProfile .navProfileContent p {
  font-size: 12px;
  font-weight: 500;
  color: var(--secondaryTextColor);
}
.sidemenu .sidemenuBody {
  width: 100%;
  background: white;
  margin-top: 70px;
  height: calc(100vh - 120px);
  overflow-y: auto;
  transition: 0.2s;
}
@media (max-width: 480px) {
  .sidemenu .sidemenuBody {
    height: calc(100vh - 195px);
    margin-top: 0px;
  }
}
.sidemenu .sidemenuBody ul {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 20px;
}
.sidemenu .sidemenuBody ul li {
  list-style: none;
}
.sidemenu .sidemenuBody ul li a {
  text-decoration: none;
  color: var(--secondaryTextColor);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  margin-top: 15px;
  border-radius: 10px;
  font-weight: 500;
  transition: 0.2s;
}
.sidemenu .sidemenuBody ul li a:hover {
  transition: 0.2s;
  background: var(--thirdColor);
  color: black;
}
.sidemenu .sidemenuBody ul li a .sidemenuIcon {
  margin-right: 15px;
  transition: 0.2s;
}
.sidemenu .sidemenuBody ul li a .sidemenuIcon span {
  font-size: 16px;
  transition: 0.2s;
}
.sidemenu .sidemenuBody ul li a p {
  font-size: 14px;
  transition: 0.2s;
}
.sidemenu .sidemenuBody ul li .sidemenuLinkActive {
  background: var(--thirdColor);
  color: black;
  font-weight: 500;
}
.sidemenu .sidemenuBody ul li .sidemenuLinkActive span {
  color: var(--primaryColor);
}
.sidemenu .sidemenuFooter {
  position: absolute;
  width: 100%;
  padding: 10px 20px;
  display: flex;
  flex-direction: column;
  bottom: 0;
  left: 0;
  background: white;
}
.sidemenu .sidemenuFooter span {
  font-size: 10px;
  color: var(--secondaryTextColor);
  margin-top: 5px;
  transition: 0.2s;
}
.sidemenu .sidemetoggleBtn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -21px;
  width: 20px;
  overflow: hidden;
  height: 100px;
  background: white;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  transition: 0.2s;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  z-index: -1;
}
.sidemenu .sidemetoggleBtn span {
  color: var(--secondaryTextColor);
  font-size: 28px;
  transition: 0.2s;
}
.sidemenu .sidemetoggleBtn .rotate {
  transform: rotate(180deg);
  transition: 0.2s;
}
.sidemenu .sidemetoggleBtnActive {
  right: -21px;
  transition: 0.2s;
}

.sidemenuActive {
  width: 100px !important;
  transition: 0.2s;
}
.sidemenuActive .sidemenuHead .sidemenuLogo {
  width: 60px !important;
  height: 60px !important;
  transition: 0.2s;
}
.sidemenuActive .sidemenuHead .sidemenuLogo img {
  width: 120% !important;
  height: 120% !important;
  transition: 0.2s;
}
.sidemenuActive .sidemenuHead .sidemenuLogo .fullSidImg {
  display: none !important;
}
.sidemenuActive .sidemenuHead .sidemenuLogo .halfSidImg {
  display: block !important;
}
.sidemenuActive .sidemenuBody {
  height: calc(100vh - 130px) !important;
  transition: 0.2s;
}
.sidemenuActive .sidemenuBody ul li a .sidemenuIcon {
  margin-right: 0 !important;
  transition: 0.2s;
}
.sidemenuActive .sidemenuBody ul li a .sidemenuIcon span {
  font-size: 20px !important;
  transition: 0.2s;
}
.sidemenuActive .sidemenuBody ul li a p {
  display: none !important;
  transition: 0.2s;
}
.sidemenuActive .sidemenuFooter .sidemenuProfile .sidemenuProfileContent {
  display: none !important;
  transition: 0.2s;
}
.sidemenuActive .sidemenuFooter span {
  display: none !important;
  transition: 0.2s;
}

.staffListMenu {
  position: fixed;
  top: 20px;
  right: -100%;
  width: 350px;
  height: calc(100vh - 40px);
  background: white;
  z-index: 150;
  overflow: hidden;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  transition: 0.3s;
}
@media (max-width: 480px) {
  .staffListMenu {
    width: 95%;
    top: 10px;
    height: calc(100vh - 2.5%);
  }
}
.staffListMenu .staffListMenuHead {
  width: 100%;
  height: 50px;
  background: white;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.046);
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  display: flex;
  padding: 0px 20px;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
}
.staffListMenu .staffListMenuHead span {
  font-size: 16px;
  margin-right: 15px;
  color: var(--secondaryTextColor);
}
.staffListMenu .staffListMenuHead h2 {
  font-size: 16px;
  font-weight: 500;
}
.staffListMenu .staffListMenuBody {
  height: calc(100vh - 100px);
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-top: 50px;
  padding: 10px 0px;
  justify-content: space-between;
}
.staffListMenu .staffListMenuBody .staffListMenuBodyBox {
  width: 100%;
  display: flex;
  flex-direction: column;
  flex: 0 0 48%;
  overflow: hidden;
  background: white;
}
.staffListMenu .staffListMenuBody .staffListMenuBodyBox:nth-child(1) h3 {
  border-top: none;
}
.staffListMenu .staffListMenuBody .staffListMenuBodyBox h3 {
  font-size: 16px;
  padding: 10px 20px;
  background: white;
  font-weight: 500;
  border-top: 1px solid #ededed;
}
.staffListMenu .staffListMenuBody .staffListMenuBodyBox .staffSearch {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 20px;
  height: 50px;
  background: white;
}
.staffListMenu .staffListMenuBody .staffListMenuBodyBox .staffSearch input {
  width: calc(100% - 50px);
  height: 40px;
  background: var(--thirdColor);
  border: 1px solid var(--thirdColor);
  outline: none;
  padding: 0px 15px;
  font-size: 14px;
  color: black;
  font-weight: 500;
  border-radius: 10px;
}
.staffListMenu .staffListMenuBody .staffListMenuBodyBox .staffSearch input::-moz-placeholder {
  color: #ccc;
}
.staffListMenu .staffListMenuBody .staffListMenuBodyBox .staffSearch input:-ms-input-placeholder {
  color: #ccc;
}
.staffListMenu .staffListMenuBody .staffListMenuBodyBox .staffSearch input::placeholder {
  color: #ccc;
}
.staffListMenu .staffListMenuBody .staffListMenuBodyBox .staffSearch input:focus {
  border: 1px solid #eee;
}
.staffListMenu .staffListMenuBody .staffListMenuBodyBox .staffSearch button {
  width: 40px;
  height: 40px;
  background: var(--primaryColor);
  color: white;
  border: none;
  outline: none;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-size: 18px;
  transition: 0.2s;
}
.staffListMenu .staffListMenuBody .staffListMenuBodyBox .staffSearch button:hover {
  transition: 0.2s;
  background: var(--secondaryColor);
}
.staffListMenu .staffListMenuBody .staffListMenuBodyBox .staffListMenuList {
  width: 100%;
  background: white;
  display: flex;
  height: 100%;
  flex-direction: column;
}
.staffListMenu .staffListMenuBody .staffListMenuBodyBox .staffListMenuList ul {
  overflow-y: auto;
  height: calc(100% - 120px);
  width: 100%;
  padding: 10px 20px;
}
.staffListMenu .staffListMenuBody .staffListMenuBodyBox .staffListMenuList ul li {
  list-style: none;
  display: flex;
  align-items: center;
  padding: 10px 0px;
  border-radius: 10px;
  position: relative;
  z-index: 0;
}
.staffListMenu .staffListMenuBody .staffListMenuBodyBox .staffListMenuList ul li::after {
  position: absolute;
  content: "";
  width: 105%;
  height: 100%;
  top: 0;
  left: -2.5%;
  transition: 0.2s;
  z-index: -1;
  border-radius: 10px;
}
.staffListMenu .staffListMenuBody .staffListMenuBodyBox .staffListMenuList ul li:hover::after {
  transition: 0.2s;
  background: var(--thirdColor);
}
.staffListMenu .staffListMenuBody .staffListMenuBodyBox .staffListMenuList ul li:nth-child(1) {
  margin-top: 0;
}
.staffListMenu .staffListMenuBody .staffListMenuBodyBox .staffListMenuList ul li input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}
.staffListMenu .staffListMenuBody .staffListMenuBodyBox .staffListMenuList ul li label {
  position: relative;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  width: 100%;
  max-height: 45px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.staffListMenu .staffListMenuBody .staffListMenuBodyBox .staffListMenuList ul li label span {
  font-size: 16px;
  color: green;
  margin-left: 10px;
  margin-bottom: -3px;
}
.staffListMenu .staffListMenuBody .staffListMenuBodyBox .staffListMenuList ul li label:before {
  content: "";
  -webkit-appearance: none;
  background-color: transparent;
  border: 2px solid var(--primaryColor);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
  padding: 9px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 10px;
  border-radius: 8px;
}
.staffListMenu .staffListMenuBody .staffListMenuBodyBox .staffListMenuList ul li input:checked + label:after {
  content: "";
  display: block;
  position: absolute;
  top: 4px;
  left: 8px;
  width: 5px;
  height: 9px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.staffListMenu .staffListMenuBody .staffListMenuBodyBox .staffListMenuList ul li input:checked + label:before {
  background: var(--primaryColor);
}
.staffListMenu .staffListMenuBody .staffListMenuBodyBox .staffListMenuList .elseDesign {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: none;
}
.staffListMenu .staffListMenuBody .staffListMenuBodyBox .staffListMenuList .elseDesign .elseDesignthumbnail {
  width: 100%;
  height: 150px;
}
.staffListMenu .staffListMenuBody .staffListMenuBodyBox .staffListMenuList .elseDesign .elseDesignthumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.staffListMenu .staffListMenuBody .staffListMenuBodyBox .staffListMenuList .elseDesign p {
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  margin-top: 10px;
}
.staffListMenu .staffListMenuFooter {
  width: 100%;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  height: 60px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.046);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: white;
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 0px 20px;
}
.staffListMenu .staffListMenuFooter .closeStaffListMenu {
  flex: 0 0 48%;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  border-radius: 10px;
  background: #F8F5F1;
  font-weight: 500;
  cursor: pointer;
  transition: 0.2s;
}
.staffListMenu .staffListMenuFooter .closeStaffListMenu:hover {
  transition: 0.2s;
  background: #F4EEE8;
}
.staffListMenu .staffListMenuFooter .SubmitStaffListMenu {
  flex: 0 0 48%;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  border-radius: 10px;
  background: var(--primaryColor);
  font-weight: 500;
  cursor: pointer;
  color: white;
  transition: 0.2s;
}
.staffListMenu .staffListMenuFooter .SubmitStaffListMenu:hover {
  transition: 0.2s;
  background: var(--secondaryColor);
}

.staffListMenuActive {
  width: 350px;
  height: calc(100vh - 40px);
  transition: 0.3s;
  right: 20px;
}
@media (max-width: 480px) {
  .staffListMenuActive {
    width: 95%;
    right: 2.5%;
    height: calc(100vh - 2.5%);
  }
}

.toasterPopup {
  position: fixed;
  z-index: 100;
  padding: 15px 20px;
  background: white;
  border-radius: 10px;
  bottom: -110%;
  opacity: 0;
  visibility: hidden;
  left: 50%;
  transform: translateX(-50%);
  border: 1px solid var(--primaryColor);
  transition: 0.3s ease all;
}
@media (max-width: 480px) {
  .toasterPopup {
    max-width: 90%;
  }
}
.toasterPopup p {
  font-size: 14px;
  font-weight: 500;
  white-space: pre;
}

.toasterPopupActivity {
  bottom: 20px;
  opacity: 1;
  visibility: visible;
  transition: 0.3s ease all;
}

.remrkPopup {
  position: fixed;
  width: 100%;
  background: white;
  bottom: -100%;
  left: 0;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  z-index: 130;
  padding: 20px;
  display: flex;
  flex-direction: column;
  transition: 0.3s ease all;
}
.remrkPopup h1 {
  font-size: 16px;
  font-weight: 500;
}
.remrkPopup form {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-top: 10px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}
.remrkPopup form .formArea {
  width: 100%;
  display: flex;
  flex-direction: column;
  max-height: 60vh;
  overflow-y: auto;
}
.remrkPopup form .formArea::-webkit-scrollbar {
  width: 0px;
  height: 0px;
}
.remrkPopup form .formArea .formGroup {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-top: 20px;
}
.remrkPopup form .formArea .formGroup:nth-child(1) {
  margin-top: 0;
}
.remrkPopup form .formArea .formGroup label {
  font-size: 12px;
  color: black;
  font-weight: 500;
}
.remrkPopup form .formArea .formGroup input {
  width: 100%;
  height: 50px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 5px;
  outline: none;
  padding: 10px 15px;
  background: white;
  font-size: 16px;
  font-weight: 500;
}
.remrkPopup form .formArea .formGroup input::-moz-placeholder {
  color: var(--secondaryTextColor);
}
.remrkPopup form .formArea .formGroup input:-ms-input-placeholder {
  color: var(--secondaryTextColor);
}
.remrkPopup form .formArea .formGroup input::placeholder {
  color: var(--secondaryTextColor);
}
.remrkPopup form .formArea .formGroup input:focus {
  border: 1px solid var(--primaryColor);
}
.remrkPopup form .formArea .formGroup textarea {
  width: 100%;
  height: 100px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 5px;
  outline: none;
  padding: 10px 15px;
  background: white;
  font-weight: 500;
  font-size: 16px;
}
.remrkPopup form .formArea .formGroup textarea::-moz-placeholder {
  color: var(--secondaryTextColor);
}
.remrkPopup form .formArea .formGroup textarea:-ms-input-placeholder {
  color: var(--secondaryTextColor);
}
.remrkPopup form .formArea .formGroup textarea::placeholder {
  color: var(--secondaryTextColor);
}
.remrkPopup form .formArea .formGroup textarea:focus {
  border: 1px solid var(--primaryColor);
}
.remrkPopup form .formArea .formGroup .viewPreviousRemarkBtn {
  padding: 10px 15px;
  border-radius: 10px;
  background: #DFF3E3;
  font-size: 14px;
  width: 220px;
  text-align: center;
  font-weight: 500;
}
.remrkPopup form .formArea .formGroup .viewPreviousRemarkBtn i {
  margin-right: 7px;
  font-size: 16px;
}
.remrkPopup form .formBtnArea {
  width: 100%;
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.remrkPopup form .formBtnArea .closeRemarkpopup {
  flex: 0 0 40%;
  padding: 16px 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  background: #eee;
}
.remrkPopup form .formBtnArea .submitRemarkpopup {
  flex: 0 0 55%;
  padding: 16px 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  color: white;
  background: var(--primaryColor);
  border: none;
  outline: none;
}

.remarkPopupActive {
  transition: 0.3s ease all;
  bottom: 0;
}

.previousRemarkPopup {
  position: fixed;
  width: 100%;
  background: white;
  bottom: -100%;
  left: 0;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  z-index: 130;
  padding: 20px;
  display: flex;
  flex-direction: column;
  transition: 0.3s ease all;
}
.previousRemarkPopup h1 {
  font-size: 16px;
  font-weight: 500;
}
.previousRemarkPopup .previousRemarkPopupList {
  width: 100%;
  display: flex;
  flex-direction: column;
  max-height: 60vh;
  overflow-y: auto;
  border-top: 1px solid #eee;
  padding-top: 20px;
  margin-top: 20px;
}
.previousRemarkPopup .previousRemarkPopupList::-webkit-scrollbar {
  width: 0px;
  height: 0px;
}
.previousRemarkPopup .previousRemarkPopupList .previousRemarkPopupBox {
  width: 100%;
  border-top: 1px solid #eee;
  padding-top: 20px;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
}
.previousRemarkPopup .previousRemarkPopupList .previousRemarkPopupBox:nth-child(1) {
  border-top: none;
  padding-top: 0px;
  margin-top: 0px;
}
.previousRemarkPopup .previousRemarkPopupList .previousRemarkPopupBox p {
  font-size: 12px;
  line-height: 1.5;
  font-weight: 400;
}
.previousRemarkPopup .previousRemarkPopupList .previousRemarkPopupBox span {
  color: var(--secondaryTextColor);
  font-size: 12px;
  margin-top: 15px;
  font-weight: 500;
}
.previousRemarkPopup .previousRemarkPopupList .previousRemarkPopupBox span i {
  margin-right: 5px;
}
.previousRemarkPopup .previousRemarkPopupList .emptyData {
  width: 100%;
  display: none;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.previousRemarkPopup .previousRemarkPopupList .emptyData .emptyDataThumbnail {
  width: 200px;
}
.previousRemarkPopup .previousRemarkPopupList .emptyData .emptyDataThumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.previousRemarkPopup .previousRemarkPopupList .emptyData p {
  font-size: 18px;
  line-height: 1.5;
  font-weight: 500;
  text-align: center;
  margin-top: 20px;
}
.previousRemarkPopup .previousRemarkPopupBtnArea {
  width: 100%;
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.previousRemarkPopup .previousRemarkPopupBtnArea .closePreviousRemarkPopup {
  flex: 100%;
  padding: 16px 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  background: #eee;
}

.previousRemarkPopupActive {
  transition: 0.3s ease all;
  bottom: 0;
}

.followUpDatePopup {
  position: fixed;
  width: 100%;
  background: white;
  bottom: -100%;
  left: 0;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  z-index: 130;
  padding: 20px;
  display: flex;
  flex-direction: column;
  transition: 0.3s ease all;
}
.followUpDatePopup h1 {
  font-size: 16px;
  font-weight: 500;
}
.followUpDatePopup form {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-top: 10px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}
.followUpDatePopup form .formArea {
  width: 100%;
  display: flex;
  flex-direction: column;
  max-height: 60vh;
  overflow-y: auto;
}
.followUpDatePopup form .formArea::-webkit-scrollbar {
  width: 0px;
  height: 0px;
}
.followUpDatePopup form .formArea .formGroup {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-top: 20px;
}
.followUpDatePopup form .formArea .formGroup:nth-child(1) {
  margin-top: 0;
}
.followUpDatePopup form .formArea .formGroup label {
  font-size: 12px;
  color: black;
  font-weight: 500;
}
.followUpDatePopup form .formArea .formGroup input {
  width: 100%;
  height: 50px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 5px;
  background: white;
  outline: none;
  padding: 10px 15px;
  font-size: 16px;
  font-weight: 500;
}
.followUpDatePopup form .formArea .formGroup input::-moz-placeholder {
  color: var(--secondaryTextColor);
}
.followUpDatePopup form .formArea .formGroup input:-ms-input-placeholder {
  color: var(--secondaryTextColor);
}
.followUpDatePopup form .formArea .formGroup input::placeholder {
  color: var(--secondaryTextColor);
}
.followUpDatePopup form .formArea .formGroup input:focus {
  border: 1px solid var(--primaryColor);
}
.followUpDatePopup form .formArea .formGroup textarea {
  width: 100%;
  height: 100px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 5px;
  background: white;
  outline: none;
  padding: 10px 15px;
  font-weight: 500;
  font-size: 16px;
}
.followUpDatePopup form .formArea .formGroup textarea::-moz-placeholder {
  color: var(--secondaryTextColor);
}
.followUpDatePopup form .formArea .formGroup textarea:-ms-input-placeholder {
  color: var(--secondaryTextColor);
}
.followUpDatePopup form .formArea .formGroup textarea::placeholder {
  color: var(--secondaryTextColor);
}
.followUpDatePopup form .formArea .formGroup textarea:focus {
  border: 1px solid var(--primaryColor);
}
.followUpDatePopup form .formArea .formGroup .viewPreviousRemarkBtn {
  padding: 10px 15px;
  border-radius: 10px;
  background: #DFF3E3;
  font-size: 14px;
  width: 220px;
  text-align: center;
  font-weight: 500;
}
.followUpDatePopup form .formArea .formGroup .viewPreviousRemarkBtn i {
  margin-right: 7px;
  font-size: 16px;
}
.followUpDatePopup form .formBtnArea {
  width: 100%;
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.followUpDatePopup form .formBtnArea .closeFollowUpDatePopup {
  flex: 0 0 40%;
  padding: 16px 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  background: #eee;
}
.followUpDatePopup form .formBtnArea .submitFollowUpDatePopup {
  flex: 0 0 55%;
  padding: 16px 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  color: white;
  background: var(--primaryColor);
  border: none;
  outline: none;
}

.followUpDatePopupActive {
  transition: 0.3s ease all;
  bottom: 0;
}

nav {
  width: 100%;
  position: fixed;
  height: 60px;
  background: white;
  z-index: 10;
  top: 0;
  /*left: 0;*/
	margin: 0 auto;
}
@media(max-width:768px){
	nav{
  		width: 400px;
	}
}
@media(max-width:480px){
	nav{
		width: 100%;
	}
}
nav .navLogo {
  float: left;
  height: 60px;
  width: 60px;
  text-decoration: none;
  display: flex;
  align-items: center;
}
nav .navLogo img {
  width: 90%;
  height: 90%;
  -o-object-fit: contain;
     object-fit: contain;
}
nav .navLogo h1 {
  font-size: 20px;
  font-weight: 600;
  color: black;
}
nav .navProfile {
  float: right;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}
nav .navProfile .navProfileBox {
  width: 35px;
  height: 35px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: #DDF3F5;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid #8ED6FF;
}
nav .navProfile .navProfileBox img {
  width: 80%;
  height: 80%;
  -o-object-fit: contain;
     object-fit: contain;
}

.backBtnStrip{
  width: 100%;
  position: fixed;
  background: #f0fffa;
  z-index: 10;
  top: 60px;
  /*left: 0;*/
	margin: 0 auto;
}
@media(max-width:768px){
	.backBtnStrip{
  		width: 400px;
	}
}
@media(max-width:480px){
	.backBtnStrip{
		width: 100%;
	}
}
.backBtnStrip .backBtnStripMain{
	width :100%;
	display :flex;
	align-items :center;
	height :40px;
}
.backBtnStrip .backBtnStripMain a{
	display :flex;
	align-items :center;
	gap :10px;
	text-decoration: none;
	font-size :14px;
	color: black;
	transition:.3s;
}
.backBtnStrip .backBtnStripMain a:hover{
	transition:.3s;
	color: blue;
}
.backBtnStrip .backBtnStripMain a i{
	font-size: 18px;
}

.footerNav {
  width: 100%;
  position: fixed;
  background: white;
  z-index: 10;
  bottom: 0;
  left: 0;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.033);
}
.footerNav ul {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}
.footerNav ul li {
  list-style: none;
  flex: 0 0 22%;
}
.footerNav ul li a {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--secondaryTextColor);
}
.footerNav ul li a span {
  font-size: 20px;
}
.footerNav ul li a p {
  text-align: center;
  font-size: 12px;
  margin-top: 5px;
}
.footerNav ul li .navLinkActive {
  color: var(--primaryColor);
}
.footerNav ul li .navLinkActive p {
  font-weight: 500;
}

.canvas {
  width: 100%;
  margin-top: 100px;
  padding: 0px 0 20px 0;
  display: flex;
  flex-direction: column;
  /*background: rgb(240, 241, 242);*/
  min-height: calc(100vh - 60px);
  height: 300px; 
  overflow-y: scroll;
}
.canvas h1{
     font-size: 20px;
    font-weight: 500;
    margin-top: 20px;
    border-top: 1px solid #eee;
    padding-top: 20px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    width: 100%;
}
.canvas .searchArea {
  width: 100%;
	position :fixed;
	z-index: 10;
  padding: 0px 0%;
}
.canvas .searchArea .searchAreaBox {
  width: 100%;
  background: white;
  padding: 10px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.canvas .searchArea .searchAreaBox input {
  width: calc(100% - 50px);
  height: 40px;
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 5px 10px;
  outline: none;
}
.canvas .searchArea .searchAreaBox input::-moz-placeholder {
  color: var(--secondaryTextColor);
}
.canvas .searchArea .searchAreaBox input:-ms-input-placeholder {
  color: var(--secondaryTextColor);
}
.canvas .searchArea .searchAreaBox input::placeholder {
  color: var(--secondaryTextColor);
}
.canvas .searchArea .searchAreaBox input:focus {
  border: 1px solid var(--primaryColor);
}
.canvas .searchArea .searchAreaBox button {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  outline: none;
  background: var(--primaryColor);
  color: white;
  border: none;
  font-size: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.canvas .breadCrumbs {
  width: 100%;
  display: flex;
  padding: 10px 5%;
  background: white;
  overflow-x: auto;
}
.canvas .breadCrumbs a {
  text-decoration: none;
  font-size: 12px;
  color: var(--primaryColor);
  font-weight: 500;
  white-space: pre;
}
.canvas .breadCrumbs span {
  font-size: 16px;
  margin: 0px 5px;
  color: var(--secondaryTextColor);
}
.canvas .headListMenu {
  width: 100%;
  padding: 10px 5% 0px 5%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.canvas .headListMenu .printBtn {
  width: 30px;
  height: 30px;
  border-radius: 7px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--secondaryColor);
  color: white;
}
.canvas .headListMenu .printBtn span {
  font-size: 16px;
}
.canvas .homeTitle {
  width: 100%;
  padding: 0px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: white;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}
.canvas .homeTitle .icon {
  width: 100px;
  margin-top: 5px;
}
.canvas .homeTitle .icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.canvas .homeTitle h1 {
  width: calc(100% - 110px);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
}
.canvas .homeTitle h1 span {
  color: var(--primaryColor);
}
.canvas .tilesList {
  width: 100%;
  display: flex;
	justify-content: space-between;
	flex-wrap :wrap;
  	padding: 0px 5%;
	position: relative;
}
.canvas .tilesList::after{
	content: '';
	height: 0;
	width: 32%;
}
.canvas .tilesList .tilesListBox {
  flex: 0 0 32%;
  padding: 20px;
  background: white;
  border-radius: 10px;
  margin-top: 10px;
  box-shadow: 0 0 20px rgb(0 0 0 / 8%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
}
@media(max-width:1024px){
	.canvas .tilesList .tilesListBox{
		flex: 0 0 48%;
	}
}
@media(max-width:768px){
	.canvas .tilesList .tilesListBox{
		flex: 100%;
	}
}
.canvas .tilesList .tilesListBox:nth-child(1) .tilesListBoxIcon {
  background: #EEF1FF;
}
.canvas .tilesList .tilesListBox:nth-child(1) .tilesListBoxIcon span {
  color: #126cd2;
}
.canvas .tilesList .tilesListBox:nth-child(2) .tilesListBoxIcon {
  background: #D6EFED;
}
.canvas .tilesList .tilesListBox:nth-child(2) .tilesListBoxIcon span {
  color: #6E85B7;
}
.canvas .tilesList .tilesListBox:nth-child(3) .tilesListBoxIcon {
  background: #FFEFEF;
}
.canvas .tilesList .tilesListBox:nth-child(3) .tilesListBoxIcon span {
  color: #D77FA1;
}
.canvas .tilesList .tilesListBox .tilesListBoxIcon {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #eee;
}
.canvas .tilesList .tilesListBox .tilesListBoxIcon span {
  font-size: 25px;
  color: black;
}
.canvas .tilesList .tilesListBox .tilesListBoxDetails {
  width: calc(100% - 70px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.canvas .tilesList .tilesListBox .tilesListBoxDetails h2 {
  font-size: 18px;
  font-weight: 500;
  color: black;
}
.canvas .tilesList .tilesListBox .tilesListBoxDetails span {
  font-size: 14px;
  color: var(--secondaryTextColor);
  margin-top: 5px;
}
.canvas .tilesList .tilesListBox .tilesListBoxDetails span b {
  color: #FF7878;
}
.canvas .studentsList {
  width: 100%;
  padding: 0px 5% 50px 5%;
  display: flex;
	flex-direction :column;
	margin-top :70px;
}
.canvas .studentsList #members{
  width: 100%;
  display: flex;
	justify-content: space-between;
	flex-wrap :wrap;
}
.canvas .studentsList .studentsListBox {
  flex: 0 0 49%;
  padding: 10px;
  background: white;
  border-radius: 10px;
  margin-top: 10px;
  box-shadow: 0 0 20px rgb(0 0 0 / 8%);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  position: relative;
}
@media(max-width:768px){
	.canvas .studentsList .studentsListBox {
		flex: 100%;
	}
}
.canvas .studentsList .studentsListBox .innerStudentsBtn {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 0;
}
.canvas .studentsList .studentsListBox .studentsListBoxHead {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.canvas .studentsList .studentsListBox .studentsListBoxHead .studentsListBoxHeadBox1 {
  width: calc(100% - 40px);
}
.canvas .studentsList .studentsListBox .studentsListBoxHead .studentsListBoxHeadBox1 .studentName {
  font-size: 15px;
  font-weight: 600;
  color: black;
  max-height: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.canvas .studentsList .studentsListBox .studentsListBoxHead .studentsListBoxHeadBox1 .studentCourse {
  font-size: 12px;
  color: var(--secondaryTextColor);
  font-weight: 500;
  margin-top: 5px;
  max-height: 15px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.canvas .studentsList .studentsListBox .studentsListBoxHead .studentsListBoxHeadBox2 {
  width: 30px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.canvas .studentsList .studentsListBox .studentsListBoxHead .studentsListBoxHeadBox2 span {
  font-size: 22px;
  color: rgba(0, 0, 0, 0.31);
}
.canvas .studentsList .studentsListBox .studentsListBoxFooter {
  width: 100%;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #eee;
  display: flex;
	gap: 10px;
}
.canvas .studentsList .studentsListBox .studentsListBoxFooter .callBtn {
  width: 100%;
  height: 40px;
  padding: 5px 20px;
  border-radius: 10px;
  background: rgba(72, 174, 63, 0.168627451);
  color: rgb(3, 182, 3);
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  z-index: 1;
  font-size: 14px;
  font-weight: 500;
}
@media(max-width:480px){
	.canvas .studentsList .studentsListBox .studentsListBoxFooter .callBtn {
  		padding: 5px;
	}
}
.canvas .studentsList .studentsListBox .studentsListBoxFooter .callBtn span {
  font-size: 22px;
  margin-right: 10px;
}
@media(max-width:480px){
	.canvas .studentsList .studentsListBox .studentsListBoxFooter .callBtn span {
  		margin-right: 0px;
	}
}
.canvas .studentsList .studentsListBox .studentsListBoxFooter .remarkBtn {
  width: 100%;
  height: 40px;
  padding: 5px 20px;
  border-radius: 10px;
  background: rgba(0, 30, 255, 0.0823529412);
  color: #2470ea;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-size: 25px;
  font-weight: 500;
  z-index: 1;
  cursor: pointer;
}
@media(max-width:480px){
	.canvas .studentsList .studentsListBox .studentsListBoxFooter .remarkBtn {
  		padding: 5px;
	}
}
.canvas .studentsList .studentsListBox .studentsListBoxFooter .remarkViewBtn {
  width: 100%;
  height: 40px;
  padding: 5px 20px;
  border-radius: 10px;
  background: rgba(225, 121, 121, 0.1725490196);
  color: #ce2a2a;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  z-index: 1;
  cursor: pointer;
}
@media(max-width:480px){
	.canvas .studentsList .studentsListBox .studentsListBoxFooter .remarkViewBtn {
  		padding: 5px;
	}
}
.canvas .studentsList .studentsListBox .studentsListBoxFooter .approveBtn{
	width: 100%;
  height: 40px;
  padding: 5px 20px;
  border-radius: 10px;
  background: rgb(5 209 115 / 95%);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  z-index: 1;
  cursor: pointer;
}
.canvas .studentsList .studentsListBox .studentProfileDetails {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 10px;
  border-top: 1px solid #eee;
}
.canvas .studentsList .studentsListBox .studentProfileDetails .studentProfileDetailsBox {
  min-width: 48%;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  margin-top: 10px;
}
.canvas .studentsList .studentsListBox .studentProfileDetails .studentProfileDetailsBox span {
  font-size: 12px;
  color: var(--secondaryTextColor);
}
.canvas .studentsList .studentsListBox .studentProfileDetails .studentProfileDetailsBox p {
  font-size: 16px;
  font-weight: 500;
  margin-top: 5px;
}
.canvas .studentsList .studentsListBox .studentProfileDetails .studentProfileDetailsBox .followUpDateBox {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #FBF8F1;
  padding: 10px 15px;
  border-radius: 10px;
  margin-top: 10px;
}
.canvas .studentsList .studentsListBox .studentProfileDetails .studentProfileDetailsBox .followUpDateBox p {
  margin-top: 0;
  font-size: 14px;
}
.canvas .studentsList .studentsListBox .studentProfileDetails .studentProfileDetailsBox .followUpDateBox p i {
  margin-right: 5px;
}
.canvas .studentsList .studentsListBox .studentProfileDetails .studentProfileDetailsBox .followUpDateBox .editBtn {
  color: white;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  background: #BF9270;
  z-index: 1;
}
.canvas .studentsList .emptyData {
  width: 100%;
  display: none;
  justify-content: center;
  align-items: center;
  flex-direction: column;
	margin-top: 100px;
}
.canvas .studentsList .emptyData .emptyDataThumbnail {
  width: 200px;
}
.canvas .studentsList .emptyData .emptyDataThumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.canvas .studentsList .emptyData p {
  font-size: 18px;
  line-height: 1.5;
  font-weight: 500;
  text-align: center;
  margin-top: 20px;
}
.canvas .studentsList .loadMore {
  width: 100%;
  margin-top: 10px;
  height: 50px;
  position: relative;
  display: none;
  justify-content: center;
  align-items: center;
}
.canvas .studentsList .loadMore .load-circle {
  height: 12px;
  width: 12px;
  background: var(--primaryColor);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 5px;
}
.canvas .studentsList .loadMore .load-circle:nth-child(1) {
  -webkit-animation: wave 2s infinite;
          animation: wave 2s infinite;
}
.canvas .studentsList .loadMore .load-circle:nth-child(2) {
  -webkit-animation: wave 2s infinite 200ms;
          animation: wave 2s infinite 200ms;
}
.canvas .studentsList .loadMore .load-circle:nth-child(3) {
  -webkit-animation: wave 2s infinite 400ms;
          animation: wave 2s infinite 400ms;
}
.canvas .studentsList .loadMore .load-circle:nth-child(4) {
  -webkit-animation: wave 2s infinite 600ms;
          animation: wave 2s infinite 600ms;
}
.canvas .studentsList .loadMore .load-circle:nth-child(5) {
  -webkit-animation: wave 2s infinite 800ms;
          animation: wave 2s infinite 800ms;
}
.canvas .studentsList .loadMore .load-circle:nth-child(6) {
  -webkit-animation: wave 2s infinite 1000ms;
          animation: wave 2s infinite 1000ms;
}
.canvas .studentsList .loadMore .load-circle:nth-child(7) {
  -webkit-animation: wave 2s infinite 1200ms;
          animation: wave 2s infinite 1200ms;
}
@-webkit-keyframes wave {
  0% {
    transform: translateY(0px) scale(1);
  }
  50% {
    transform: translateY(10px) scale(0.75);
  }
  51% {
    transform: translateY(10px) scale(0.75);
  }
  100% {
    transform: translateY(0px) scale(1);
  }
}
@keyframes wave {
  0% {
    transform: translateY(0px) scale(1);
  }
  50% {
    transform: translateY(10px) scale(0.75);
  }
  51% {
    transform: translateY(10px) scale(0.75);
  }
  100% {
    transform: translateY(0px) scale(1);
  }
}
.canvas .studentsList .addMemebrbtn {
	position: fixed;
	bottom: 10px;
	background: var(--primaryColor);
	width: calc(400px - 40px);
	border-radius: 10px;
	padding: 14px;
	text-align: center;
	color: white;
	font-size: 16px;
	font-weight: 500;
	z-index: 100;
	text-decoration: none;
	left: 50%;
    transform: translateX(-50%);
    width: 50%;
}
@media(max-width: 480px){
	.canvas .studentsList .addMemebrbtn {
		width: 90%;
	}
}
.canvas .studentProfile {
  width: 100%;
  background: white;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.033);
  padding: 20px;
  display: flex;
  flex-direction: column;
  margin-top: 10px;
}
.canvas .studentProfile:nth-child(1) {
  margin-top: 0;
}
.canvas .studentProfile .studentName {
  font-size: 22px;
  font-weight: 500;
  color: #fff;
}
.canvas .studentProfile .studentProfileFooter {
  width: 100%;
  margin-top: 10px;
  padding-top: 10px;
  display: flex;
	gap: 10px;
  flex-wrap: wrap;
}
.canvas .studentProfile .studentProfileFooter .callBtn {
  max-width: 31%;
  height: 40px;
  padding: 5px 20px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.21);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  z-index: 1;
  font-size: 14px;
  font-weight: 500;
}
.canvas .studentProfile .studentProfileFooter .callBtn span {
  font-size: 20px;
  margin-right: 10px;
}
.canvas .studentProfile .studentProfileFooter .remarkBtn {
  max-width: 31%;
  height: 40px;
  padding: 5px 20px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.21);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  z-index: 1;
  cursor: pointer;
}
.canvas .studentProfile .studentProfileFooter .remarkViewBtn {
  max-width: 31%;
  height: 40px;
  padding: 5px 20px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.21);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-size: 22px;
  font-weight: 500;
  z-index: 1;
  cursor: pointer;
}
.canvas .studentProfile .studentProfiletitle {
  font-size: 14px;
  font-weight: 500;
  color: var(--primaryColor);
}
.canvas .studentProfile .studentProfileDetails {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 10px;
  border-top: 1px solid #eee;
}
.canvas .studentProfile .studentProfileDetails .studentProfileDetailsBox {
  min-width: 48%;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  margin-top: 20px;
}
.canvas .studentProfile .studentProfileDetails .studentProfileDetailsBox span {
  font-size: 12px;
  color: var(--secondaryTextColor);
}
.canvas .studentProfile .studentProfileDetails .studentProfileDetailsBox p {
  font-size: 14px;
  font-weight: 500;
  margin-top: 5px;
}
.canvas .studentProfile .studentProfileDetails .studentProfileDetailsBox .followUpDateBox {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #FBF8F1;
  padding: 10px 15px;
  border-radius: 10px;
  margin-top: 10px;
}
.canvas .studentProfile .studentProfileDetails .studentProfileDetailsBox .followUpDateBox p {
  margin-top: 0;
  font-size: 14px;
}
.canvas .studentProfile .studentProfileDetails .studentProfileDetailsBox .followUpDateBox p i {
  margin-right: 5px;
}
.canvas .studentProfile .studentProfileDetails .studentProfileDetailsBox .followUpDateBox .editBtn {
  color: white;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  background: #BF9270;
}
.canvas .studentProfile .studentProfileDetails .fileBox {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
  padding: 10px 15px;
  background: #EFF8FF;
  border-radius: 10px;
}
.canvas .studentProfile .studentProfileDetails .fileBox p {
  font-size: 14px;
  font-weight: 500;
}
.canvas .studentProfile .studentProfileDetails .fileBox .downloadBtn {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--primaryColor);
  font-size: 16px;
  color: white;
}
.canvas .studentProfileBanner {
  background: #68A7AD;
  margin-top: 0;
}
.canvas .studentProfileBanner .studentProfileDetails {
  border-top: 1px solid rgba(238, 238, 238, 0.295);
}
.canvas .studentProfileBanner .studentProfileDetails .studentProfileDetailsBox span {
  color: white;
}
.canvas .studentProfileBanner .studentProfileDetails .studentProfileDetailsBox .followUpDateBox {
  background: rgba(238, 238, 238, 0.164);
}
.canvas .studentProfileBanner .studentProfileDetails .studentProfileDetailsBox .followUpDateBox p {
  color: white;
}
.canvas .settingsSection {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 0px 5%;
  margin-top: 10px;
}
.canvas .settingsSection .settingsProfile {
  width: 100%;
  background: white;
  border-radius: 10px;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.canvas .settingsSection .settingsProfile .settingsProfileIcon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #DDF3F5;
  border: 1px solid #8ED6FF;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
.canvas .settingsSection .settingsProfile .settingsProfileIcon img {
  width: 80%;
  height: 80%;
  -o-object-fit: contain;
     object-fit: contain;
}
.canvas .settingsSection .settingsProfile .settingsProfileDetails {
  width: calc(100% - 70px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.canvas .settingsSection .settingsProfile .settingsProfileDetails p {
  font-size: 18px;
  font-weight: 500;
}
.canvas .settingsSection .settingsProfile .settingsProfileDetails span {
  font-size: 12px;
  color: var(--secondaryTextColor);
  margin-top: 5px;
}
.canvas .settingsSection .settingsList {
  width: 100%;
  background: white;
  border-radius: 10px;
  padding: 10px 20px;
  display: flex;
  flex-direction: column;
  margin-top: 10px;
}
.canvas .settingsSection .settingsList ul {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.canvas .settingsSection .settingsList ul li {
  list-style: none;
}
.canvas .settingsSection .settingsList ul li a {
  width: 100%;
  text-decoration: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0px;
}
.canvas .settingsSection .settingsList ul li a span {
  font-size: 18px;
  color: #886F6F;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #FBF8F1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.canvas .settingsSection .settingsList ul li a p {
  width: calc(100% - 60px);
  font-size: 16px;
  font-weight: 500;
  color: black;
}
.canvas .formWraper {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 0px 5%;
  margin-top: 20px;
	padding-bottom: 120px;
}

.canvas .formWraper form {
  width: 100%;
  display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.canvas .formWraper form h1 {
  font-size: 20px;
  font-weight: 500;
  margin-top: 20px;
  border-top: 1px solid #eee;
  padding-top: 20px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
	width: 100%;
}
.canvas .formWraper form h1:nth-child(1) {
  margin-top: 0px;
  border-top: none;
  padding-top: 0px;
}
.canvas .formWraper form h1 a {
  text-decoration: none;
  margin-right: 10px;
  color: black;
  margin-top: 3px;
  opacity: 0.5;
}
.canvas .formWraper form .formGroup {
  flex: 0 0 49%;
  display: flex;
  flex-direction: column;
  margin-top: 20px;
}
@media(max-width:768px){
	.canvas .formWraper form .formGroup {
  		flex: 100%;
	}
}
.canvas .formWraper form .formGroup label {
  font-size: 14px;
  color: black;
  font-weight: 500;
	opacity:.7;
}
.canvas .formWraper form .formGroup input {
  width: 100%;
  background: white;
  border: 1px solid #bbb;
  outline: none;
  margin-top: 5px;
  height: 50px;
  border-radius: 5px;
  padding: 5px 15px;
  font-size: 14px;
  font-weight: 500;
}
.canvas .formWraper form .formGroup input:focus {
  border: 1px solid var(--primaryColor);
}


.canvas .formWraper form .formGroup .customeSingleDropDown {
  width: 100%;
  position: relative;
}
.canvas .formWraper form .formGroup .customeSingleDropDown input {
  width: 100%;
}
.canvas .formWraper form .formGroup .customeSingleDropDown .customeSingleDropDownPopup {
  position: absolute;
  width: 100%;
  background: white;
  border-radius: 5px;
  border: 1px solid #ddd;
  z-index: 10;
  display: none;
  max-height: 200px;
  overflow-y: auto;
}
.canvas .formWraper form .formGroup .customeSingleDropDown .customeSingleDropDownPopup .addNewPrductBtn {
  width: 100%;
  background: rgba(238, 238, 238, 0.4784313725);
  padding: 7px 15px;
  display: flex;
  align-items: center;
  font-size: 14px;
  cursor: pointer;
  font-weight: 500;
}
.canvas .formWraper form .formGroup .customeSingleDropDown .customeSingleDropDownPopup .addNewPrductBtn i {
  color: green;
  font-size: 20px;
  margin-right: 10px;
}
.canvas .formWraper form .formGroup .customeSingleDropDown .customeSingleDropDownPopup ul {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.canvas .formWraper form .formGroup .customeSingleDropDown .customeSingleDropDownPopup ul li {
  list-style: none;
  padding: 7px 15px;
  font-size: 14px;
  cursor: pointer;
  transition: 0.3s;
}
.canvas .formWraper form .formGroup .customeSingleDropDown .customeSingleDropDownPopup ul li:hover {
  transition: 0.3s;
  background: rgba(238, 238, 238, 0.4078431373);
}
.canvas .formWraper form .formGroup .customeSingleDropDown .customeSingleDropDownPopup .resultNotFound {
  width: 100%;
  padding: 20px;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.canvas .formWraper form .formGroup .customeSingleDropDown .customeSingleDropDownPopup .resultNotFound .resultNotFoundThumbnail {
  width: 50px;
}
.canvas .formWraper form .formGroup .customeSingleDropDown .customeSingleDropDownPopup .resultNotFound .resultNotFoundThumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.canvas .formWraper form .formGroup .customeSingleDropDown .customeSingleDropDownPopup .resultNotFound p {
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  color: #7d7d7d;
}
.canvas .formWraper form .formGroup .customeSingleDropDown .customeSingleDropDownPopupUp {
  top: 100%;
  bottom: inherit;
}
.canvas .formWraper form .formGroup .customeSingleDropDown .customeSingleDropDownPopupDown {
  bottom: 100%;
  top: inherit;
}

.canvas .formWraper form .formGroup textarea {
    width: 100%;
    height: 100px;
    margin-top: 5px;
    border: 1px solid #bbb;
    border-radius: 5px;
    background: white;
    outline: none;
    padding: 10px 15px;
    font-weight: 500;
    font-size: 16px;
}
.canvas .formWraper form .formGroup select {
  width: 100%;
  background: white;
  border: 1px solid #bbb;
  outline: none;
  margin-top: 5px;
  height: 50px;
  border-radius: 5px;
  padding: 5px 15px;
  font-size: 14px;
  font-weight: 500;
}
.canvas .formWraper form .formGroup select:focus {
  border: 1px solid var(--primaryColor);
}
.canvas .formWraper form .formGroup input[type=password] {
  letter-spacing: 15px;
}
.canvas .formWraper form .formGroup .passwordinput {
  padding-right: 40px;
}
.canvas .formWraper form .formGroup .formPassword {
  position: relative;
}
.canvas .formWraper form .formGroup .formPassword .togglePassword {
  position: absolute;
  top: 15px;
  right: 15px;
  cursor: pointer;
  color: var(--primaryColor);
  font-size: 20px;
}
.canvas .formWraper form .formBtnArea {
  	width: 50%;
    /* margin-top: 30px; */
    display: flex;
    flex-direction: column;
    position: fixed;
    z-index: 10;
    /* margin: 0 auto; */
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
}
@media(max-width:768px){
	.canvas .formWraper form .formBtnArea {
		width: 90%;
	}
}
.canvas .formWraper form .formBtnArea button {
  width: 100%;
  padding: 16px;
  background: var(--primaryColor);
  color: white;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  border-radius: 10px;
  border: none;
  letter-spacing: 1px;
  outline: none;
  text-transform: uppercase;
}

.loginSection {
  width: 500px;
  height: 100vh;
  padding: 20px 5%;
	position: relative;
	/*background: rgb(240, 241, 242);*/
	display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
	margin: 0 auto;
}
@media(max-width:768px){
.loginSection {
	width: 100%;
	}
}
.loginSection .logo{
	width: 200px;
}
.loginSection .logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.loginSection .logo h1 {
  font-size: 20px;
  font-weight: 600;
  color: black;
  margin-top: 0;
}
.loginSection h1 {
  font-size: 25px;
  font-weight: 500;
  margin-bottom: 20px;
  margin-top: 50px;
}
.loginSection form {
  width: 100%;
  display: flex;
  flex-direction: column;
	margin-bottom: 100px;
}
.loginSection form .formGroup {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-top: 20px;
}
.loginSection form .formGroup label {
  font-size: 14px;
  color: black;
  font-weight: 500;
}
.loginSection form .formGroup input {
  width: 100%;
  background: white;
  border: 1px solid #ddd;
  outline: none;
  margin-top: 5px;
  height: 50px;
  border-radius: 5px;
  padding: 5px 15px;
  font-size: 14px;
  font-weight: 500;
}
.loginSection form .formGroup input:focus {
  border: 1px solid var(--primaryColor);
}
.loginSection form .formGroup input[type=password] {
  letter-spacing: 15px;
}
.loginSection form .formGroup .passwordinput {
  padding-right: 40px;
}
.loginSection form .formGroup .formPassword {
  position: relative;
}
.loginSection form .formGroup .formPassword .togglePassword {
  position: absolute;
  top: 17px;
  right: 15px;
  cursor: pointer;
  color: var(--primaryColor);
  font-size: 20px;
}
.loginSection form .forgtPsd {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  margin-top: 20px;
}
.loginSection form .forgtPsd a {
  font-size: 14px;
  color: black;
  text-decoration: none;
  font-weight: 500;
  text-align: right;
}
.loginSection form .forgtPsd a:hover {
  text-decoration: underline;
}
.loginSection form button {
  width: 100%;
  padding: 16px;
  background: var(--primaryColor);
  color: white;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  border-radius: 10px;
  margin-top: 30px;
  border: none;
  letter-spacing: 1px;
  outline: none;
  text-transform: uppercase;
	cursor: pointer;
	transition: .3s;
}
.loginSection form button:hover{
	transition: .3s;
	opacity:.7;
}
.loginSection .powerdBy{
	width: 100%;
	display :flex;
	justify-content: center;
	align-items :center;
	position: absolute;
	bottom: 45px;
  	padding: 0px 5%;
	left: 0;
}
@media(max-width:480px){
	.loginSection .powerdBy{
		bottom: 65px;
	}
}
.loginSection .powerdBy .powerdByText{
	width: 100%;
	font-size: 12px;
	text-align: center;
	display: flex;
    align-items: center;
    justify-content: center;
}
.loginSection .powerdBy .powerdByText h3{
	font-size: 20px;
	text-align: center;
	font-weight: 500;
}
.loginSection .powerdBy .powerdByText p{
	font-size: 12px;
	text-align: center;
	margin-top :2px;
}
.loginSection .powerdBy .powerdByText .esightlogo{
	width: 70px;
	margin-left: 10px;
}
.loginSection .powerdBy .powerdByText .esightlogo img{
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.printDesingn {
  display: none;
}
.printDesingn .printDesingnBody {
  width: 100%;
  padding-top: 20px;
}
.printDesingn .printDesingnBody table {
  width: 100%;
  border-collapse: collapse;
}
.printDesingn .printDesingnBody table thead {
  width: 100%;
}
.printDesingn .printDesingnBody table thead tr {
  page-break-after: always;
}
.printDesingn .printDesingnBody table thead tr:nth-child(1) th {
  padding: 0;
  background: #fff;
}
.printDesingn .printDesingnBody table thead tr th {
  padding: 4px 6px;
  font-size: 14px;
  font-weight: 500;
  background: #B7CADB;
  color: rgb(0, 0, 0);
}
.printDesingn .printDesingnBody table thead tr th .printDesingnHead {
  width: 100%;
  padding: 20px 5%;
  background: var(--primaryColor);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.printDesingn .printDesingnBody table thead tr th .printDesingnHead h1 {
  font-size: 18px;
  font-weight: 600;
  color: white;
}
.printDesingn .printDesingnBody table tbody {
  width: 100%;
}
.printDesingn .printDesingnBody table tbody tr {
  page-break-inside: avoid;
}
.printDesingn .printDesingnBody table tbody tr:nth-child(1) td {
  border-top: none;
}
.printDesingn .printDesingnBody table tbody tr td {
  padding: 4px 6px;
  font-size: 14px;
  font-weight: 500;
  border-top: 1px solid #eee;
}



.printDesingn .printProfileDetails{
	width :100%;
	page-break-inside: avoid;
}
.printDesingn .printProfileDetails .printProfileDetailsHead{
	width: 100%;
	padding: 0px 5%;
	display :flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	background: var(--primaryColor);
}
.printDesingn .printProfileDetails .printProfileDetailsHead .printProfileDetailsHeadBox1{
	display: flex;
	align-items: center;
	gap :20px;
}
.printDesingn .printProfileDetails .printProfileDetailsHead .printProfileDetailsBodyLogo{
	width: 100px;
	height: 100px;
}
.printDesingn .printProfileDetails .printProfileDetailsHead .printProfileDetailsBodyLogo img{
	width: 100%;
	height: 100%;
	object-fit :contain;
}
.printDesingn .printProfileDetails .printProfileDetailsHead .printProfileDetailsHeadTitleMain{
	display:flex;
}
.printDesingn .printProfileDetails .printProfileDetailsHead .printProfileDetailsHeadTitle .printProfileDetailsHeadTitleMain h1{
	font-size: 2em;
	color: white;
}
.printDesingn .printProfileDetails .printProfileDetailsHead .printProfileDetailsHeadTitle sup{
	font-size: 1em;
	color: white;
	padding-left: 2px;
}
.printDesingn .printProfileDetails .printProfileDetailsHead .printProfileDetailsHeadTitle h3{
	font-size: 1em;
	color: white;
	padding-left: 18px;
}
.printDesingn .printProfileDetails .printProfileDetailsHead .printProfileDetailsHeadBox2{
	width:80px;
}
.printDesingn .printProfileDetails .printProfileDetailsHead .printProfileDetailsHeadBox2 .printProfileDetailsHeadProfileImg{
	width: 100%;
	height: 100px;
	background: #eee;
}
.printDesingn .printProfileDetails .printProfileDetailsHead .printProfileDetailsHeadBox2 .printProfileDetailsHeadProfileImg img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.printDesingn .printProfileDetails .printProfileDetailsBody{
	border-top: 5px solid var(--primaryColor);
	margin-top :10px;
	padding: 50px 5%;
	display :flex;
	flex-direction: column;
}
.printDesingn .printProfileDetails .printProfileDetailsBody .printProfileDetailsBodyTitle{
	width: 100%;
	display :flex;
	flex-direction: column;
}
.printDesingn .printProfileDetails .printProfileDetailsBody .printProfileDetailsBodyTitle h2{
	font-size: 1.8em;
}
.printDesingn .printProfileDetails .printProfileDetailsBody .printProfileDetailsBodyList{
	width: 100%;
	display :flex;
	flex-direction :column;
}
.printDesingn .printProfileDetails .printProfileDetailsBody .printProfileDetailsBodyList h3{
	font-size: 14px;
	margin-top: 20px;
}
.printDesingn .printProfileDetails .printProfileDetailsBody .printProfileDetailsBodyList ul{
	width :100%;
	margin-top: 5px;
	display :flex;
	flex-wrap :wrap;
	justify-content: space-between;
	border: 1px solid #ddd;
}
.printDesingn .printProfileDetails .printProfileDetailsBody .printProfileDetailsBodyList ul li{
	list-style: none;
	display :flex;
	justify-content :space-between;
	align-items: flex-start;
	width: 100%;
	padding: 10px 20px;
	border-top: 1px solid #ddd;
}
.printDesingn .printProfileDetails .printProfileDetailsBody .printProfileDetailsBodyList ul li:nth-of-type(1){
	border-top: none;
}
.printDesingn .printProfileDetails .printProfileDetailsBody .printProfileDetailsBodyList ul li p{
	width: 30%;
	font-size: 16px;
}
.printDesingn .printProfileDetails .printProfileDetailsBody .printProfileDetailsBodyList ul li span{
	font-size: 16px;
}
.printDesingn .printProfileDetails .printProfileDetailsBody .printProfileDetailsBodyList ul li h4{
	width: 65%;
	font-size: 16px;
	font-weight :500;
}
.printDesingn .printProfileDetails .printProfileDetailsBody .printProfileDetailsBodyList ul li .webLink{
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
}

@media print {
  .printDesingn {
    display: block;
  }
  main {
    display: none;
  }
  body {
	  background: white;
  }
}


.canvas  .formWraper form .formTextareaGroup {
  -webkit-box-flex: 100%;
      -ms-flex: 100%;
          flex: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 20px;
}

.canvas  .formWraper form .formTextareaGroup label {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: #686868;
}

.canvas  .formWraper form .formTextareaGroup .upload__box {
  margin-top: 10px;
}

.canvas  .formWraper form .formTextareaGroup .upload__inputfile {
  width: .1px;
  height: .1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}

.canvas  .formWraper form .formTextareaGroup .upload__btn {
  display: inline-block;
  font-weight: 400;
  color: #fff;
  text-align: center;
  width: 200px;
  padding: 5px;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  cursor: pointer;
  border: 2px solid;
  background-color: #48012d;
  border-color: #48012d;
  border-radius: 10px;
  line-height: 26px;
  font-size: 14px;
}

.canvas  .formWraper form .formTextareaGroup .upload__btn:hover {
  background-color: unset;
  color: black;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.canvas  .formWraper form .formTextareaGroup .upload__btn-box {
  margin-bottom: 10px;
}

.canvas  .formWraper form .formTextareaGroup .upload__img-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -10px;
}

.canvas  .formWraper form .formTextareaGroup .upload__img-box {
  width: 200px;
  padding: 0 10px;
  margin-bottom: 12px;
}

.canvas  .formWraper form .formTextareaGroup .upload__img-close {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 10px;
  right: 10px;
  text-align: center;
  line-height: 24px;
  z-index: 1;
  cursor: pointer;
}
                                         
.canvas .formWraper form .formTextareaGroup .upload__img-close:after {
  content: '\2716';
  font-size: 14px;
  color: white;
}

.canvas .formWraper form .formTextareaGroup .img-bg {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  padding-bottom: 100%;
}

/*# sourceMappingURL=style.css.map */