@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&display=swap');
@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/Poppins/Poppins-Regular.ttf);
}
@font-face {
  font-family: myFont2;
  src: url(../font/Poppins/Poppins-Bold.ttf);
}
@font-face {
  font-family: myFont3;
  src: url(../font/Poppins/Poppins-Light.ttf);
}
@font-face {
  font-family: myFont4;
  src: url(../font/Poppins/Poppins-SemiBold.ttf);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primaryColor: #0250c4;
  --secondaryColor: #faa61b;
  --secondaryTextColor: rgb(141, 141, 141);
  --thirdColor: #faa61b;
  --fourthColor: #f96464;
  --fifthColor: #f19f24;
}

body {
  font-family:"Montserrat", sans-serif;
  background: rgb(246, 246, 246);
}

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


.title {
  font-size: 3.5em;
  color: var(--primaryColor);
}
@media (max-width: 1800px) {
  .title {
    font-size: 3em;
  }
}
@media (max-width: 768px) {
  .title {
    font-size: 2.5em;
  }
}
@media (max-width: 480px) {
  .title {
    font-size: 2em;
  }
}
main {
  overflow: hidden;
}

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

.pageLoader {
  position: fixed;
  z-index: 300;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  background: white;
  display: flex;
  justify-content: center;
  align-items: center;
}
.pageLoader .pageLoaderThumbnail {
  width: 100px;
}
.pageLoader .pageLoaderThumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.deletePopup {
  position: fixed;
  width: 400px;
  background: white;
  padding: 20px;
  border-radius: 10px;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
  z-index: 200;
  display: none;
}
@media (max-width: 500px) {
  .deletePopup {
    width: 95%;
  }
}
.deletePopup .deletePopupThumbnail {
  width: 100%;
  height: 150px;
  overflow: hidden;
}
.deletePopup .deletePopupThumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.deletePopup .deletePopupDetails {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.deletePopup .deletePopupDetails p {
  font-size: 18px;
  text-align: center;
  margin-top: 20px;
  font-weight: 500;
}
.deletePopup .deletePopupDetails .deletePopupBtnArea {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
}
.deletePopup .deletePopupDetails .deletePopupBtnArea .closeDeletePopup {
  flex: 0 0 48%;
  padding: 14px;
  background: #eee;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  margin-top: 20px;
  transition: 0.3s;
}
.deletePopup .deletePopupDetails .deletePopupBtnArea .closeDeletePopup:hover {
  transition: 0.3s;
  opacity: 0.7;
}
.deletePopup .deletePopupDetails .deletePopupBtnArea .submitDeletePopup {
  flex: 0 0 48%;
  padding: 14px;
  background: #EA5455;
  color: white;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  margin-top: 20px;
  transition: 0.3s;
}
.deletePopup .deletePopupDetails .deletePopupBtnArea .submitDeletePopup:hover {
  transition: 0.3s;
  opacity: 0.7;
}




/************

nav {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  border-bottom: 1px solid var(--secondaryColor);
}
nav .navMain {
  width: 100%;
  height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  nav .navMain {
    height: 60px;
  }
}
nav .navMain .navLogo {
  text-decoration: none;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
}
nav .navMain .navLogo img{
	width:70px;
	height: 70px;
	object-fit :contain;
}
@media (max-width: 768px) {
  nav .navMain .navLogo img{
    width: 50px;
    height: 50px;
  }
}
nav .navMain .navLogo h2 {
  font-size: 25px;
  text-transform: uppercase;
  background: linear-gradient(var(--primaryColor) 0%, var(--secondaryColor) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


*********/


nav {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
	background :var(--thirdColor);
}
nav .navMain {
  width: 100%;
  height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  nav .navMain {
    height: 60px;
  }
}
nav .navMain .navLogo {
  text-decoration: none;
  display: flex;
  justify-content: flex-start;
  align-items: center;
	height :80px;
	gap: 10px;
}
@media (max-width: 768px) {
  nav .navMain .navLogo {
    height: 60px;
  }
}
nav .navMain .navLogo .navLogoImg{
	width: 80px;
	height: 80px;
}
@media (max-width: 768px) {
  nav .navMain .navLogo .navLogoImg{
	width: 60px;
	height: 60px;
  }
}
nav .navMain .navLogo img{
	width :100%;
	height :100%;
	object-fit: contain;
}
nav .navMain .navLogo .navLogoText{
	font-size: 2em;
	font-weight: 600;
	color: var(--primaryColor);
}
@media (max-width: 768px) {
	nav .navMain .navLogo .navLogoText{
		font-size: 1.6em;
	}
}
nav .navMain .navLogo h2 {
  font-size: 25px;
  text-transform: uppercase;
  background: linear-gradient(var(--primaryColor) 0%, var(--secondaryColor) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: myFont4;
}
nav .navMain .navTitle{
	display: flex;
	align-items:center;
	/*background: var(--thirdColor);*/
	padding: 6px 30px;
	border-radius :10px;
}
nav .navMain .navTitle h1{
	font-size: 40px;
	font-weight: 800;
	color:white;
	font-style: italic;
}
@media(max-width:1350px){
	nav .navMain .navTitle h1{
		font-size: 25px;
	}
}
@media(max-width:1250px){
	nav .navMain .navTitle h1{
		font-size: 20px;
	}
}
@media(max-width:1150px){
	nav .navMain .navTitle h1{
		font-size: 16px;
	}
}
@media(max-width:1050px){
	nav .navMain .navTitle{
		display: none;
	}
}
nav .navLink {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
	background: var(--primaryColor);
}
@media (max-width: 1315px) {
  nav .navLink {
    display: none;
  }
}
nav .navLink ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
nav .navLink ul li {
  list-style: none;
}
nav .navLink ul li a {
  text-decoration: none;
  font-size: 14px;
  color: white;
  display: flex;
  transition: 0.3s;
  padding: 10px 0px;
  white-space: pre;
  border-bottom: 3px solid rgba(255, 255, 255, 0);
	cursor: pointer;
}
nav .navLink ul li a:hover {
  transition: 0.3s;
  border-bottom: 3px solid  #ffa666;
}
nav .navLink ul li .navLinkActive {
  border-bottom: 3px solid #ffa666;
}
nav .navLink ul .navDropDown{
	position: relative;
}
nav .navLink ul .navDropDown:hover .navDropDownPopup{
	display: block;
}
nav .navLink ul .navDropDown .navDropDownPopup{
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	min-width: 150px;
	background: var(--secondaryColor);
	box-shadow: 0 0 20px #00000012;
	display: none;
}
nav .navLink ul .navDropDown .navDropDownPopup a{
	padding: 10px 15px;
	display :flex;
}
nav .navLink ul .navDropDown .navDropDownPopup a:hover{
	border-color: var(--primaryColor);
}
nav .navMain .navCol3 {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 50px;
}
nav .navMain .navCol3 .navContact {
  display: flex;
  justify-content: center;
  align-content: center;
}
@media (max-width: 480px) {
  nav .navMain .navCol3 .navContact {
    display: none;
  }
}
nav .navMain .navCol3 .navContact a {
  text-decoration: none;
  background: linear-gradient(var(--primaryColor), var(--secondaryColor));
  color: white;
  padding: 10px 30px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  transition: 0.3s;
}
nav .navMain .navCol3 .navContact a:hover {
  transition: 0.3s;
  transform: translateY(-5px);
  opacity: 0.8;
}
nav .navMain .navCol3 .navContact a h3 {
  font-size: 14px;
}
nav .navMain .navCol3 .navContact a i {
  border-left: 1px solid var(--thirdColor);
  margin-left: 20px;
  padding-left: 10px;
  font-size: 16px;
  line-height: 1;
	color: var(--thirdColor);
}
nav .navMain .navCol3 .navBar {
  display: flex;
  justify-content: center;
  align-content: center;
}
@media(max-width:1315px){
	nav .navMain .navCol3 .navBar{
		display: flex;
	}
}
nav .navMain .navCol3 .navBar .navBarBox {
  width: 35px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  transition: 0.3s;
}
nav .navMain .navCol3 .navBar .navBarBox:hover {
  transition: 0.3s;
  transform: translateY(-5px);
  opacity: 0.8;
}
nav .navMain .navCol3 .navBar .navBarBox span {
  width: 100%;
  height: 2px;
  background: black;
}
nav .navMain .navPforile{
	display :flex;
	justify-content :center;
	align-items: center;
}
nav .navMain .navPforile .navPforileBox{
	display :flex;
	justify-content :center;
	align-items: center;
	gap: 5px;
	background: #eee;
	border-radius: 50px;
	cursor: pointer;
	padding: 5px;
}
nav .navMain .navPforile .navPforileBox .navPforileBoxThumbnail{
	width: 35px;
	height: 35px;
	border-radius :50%;
	overflow :hidden;
	background: white;
}
nav .navMain .navPforile .navPforileBox .navPforileBoxThumbnail img{
	width :100%;
	height: 100%;
	object-fit: cover;
}
nav .navMain .navPforile .navPforileBox .navPforileBoxIcon{
	display :flex;
	justify-content :center;
	align-items: center;
}
nav .navMain .navPforile .navPforileBox .navPforileBoxIcon span{
	font-size: 22px;
}
.slideUp {
  transform: translateY(-80px);
  transition: 0.5s ease-out;
}

.slideDown {
  transform: translateY(0px);
  transition: 0.5s ease-out;
}

.navActive {
  background: white;
}



#dashboard {
  width: 100%;
}

#loginSection {
  width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 50px 5%;
}
#loginSection .loginLogo {
  width: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
#loginSection .loginLogo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
#loginSection .backBtn {
  display: flex;
  width: 650px;
}
@media (max-width: 650px) {
  #loginSection .backBtn {
    width: 100%;
  }
}
#loginSection .backBtn a {
  text-decoration: none;
  display: flex;
  align-items: center;
  color: var(--primaryColor);
  font-size: 20px;
}
@media (max-width: 480px) {
  #loginSection .backBtn a {
    font-size: 18px;
  }
}
#loginSection .backBtn a:hover {
  text-decoration: underline;
}
#loginSection .backBtn a span {
  margin-right: 10px;
  font-size: 22px;
}
@media (max-width: 480px) {
  #loginSection .backBtn a span {
    font-size: 20px;
  }
}
#loginSection form {
  width: 450px;
  margin-top: 80px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 500px) {
  #loginSection form {
    width: 100%;
  }
}
#loginSection form h2 {
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 10px;
}
#loginSection form .formGroup {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-top: 20px;
}
#loginSection form .formGroup label {
  font-size: 14px;
  font-weight: 500;
  opacity: 0.7;
}
#loginSection form .formGroup input {
  width: 100%;
  height: 45px;
  border-radius: 5px;
  border: 1px solid #ccc;
  padding: 0px 20px;
  outline: none;
  margin-top: 5px;
  font-size: 18px;
}
#loginSection form .formGroup input:focus {
  border: 1px solid var(--primaryColor);
}
#loginSection form .formGroup input[type=password] {
  letter-spacing: 15px;
  padding-right: 40px;
}
#loginSection form .formGroup .formPassword {
  position: relative;
}
#loginSection form .formGroup .formPassword .togglePassword {
  position: absolute;
  top: 15px;
  right: 15px;
  cursor: pointer;
  color: var(--primaryColor);
  font-size: 20px;
}
#loginSection form .formGroup .message {
  width: 100%;
  margin-top: 5px;
  background: #eee;
  font-size: 12px;
  padding: 8px 15px;
  border-radius: 5px;
}
#loginSection form .forgotPsd {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  margin-top: 20px;
}
#loginSection form .forgotPsd a {
  text-align: right;
  display: flex;
  text-decoration: none;
  color: black;
  font-size: 14px;
  font-weight: 500;
}
#loginSection form .forgotPsd a span {
  color: var(--secondaryColor);
  margin-left: 10px;
}
#loginSection form .frotpsdPage {
  justify-content: center;
}
#loginSection form .formBtnArea {
  width: 100%;
  margin-top: 30px;
}
#loginSection form .formBtnArea button {
  width: 100%;
  padding: 16px;
  border: none;
  outline: none;
  background: var(--primaryColor);
  color: white;
  font-size: 16px;
  border-radius: 5px;
  font-weight: 500;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.3s;
}
#loginSection form .formBtnArea button:hover {
  transition: 0.3s;
  opacity: 0.7;
}

.sidemenu {
  position: fixed;
  z-index: 200;
  height: 100vh;
  width: 300px;
  background: white;
  top: 0px;
  right: -110%;
  transition: 0.3s;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.031372549);
}
@media (max-width: 500px) {
  .sidemenu {
    width: 100%;
  }
}
.sidemenu .sidemenuHead {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 10px 20px;
}
.sidemenu .sidemenuHead .closeSidemenu {
  font-size: 25px;
}
.sidemenu .sidemenuProfile {
  padding: 10px 20px;
  display: flex;
}
.sidemenu .sidemenuProfile .sidemenuProfileBox {
  width: 100%;
  background: #eee;
  padding: 14px 20px;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
}
.sidemenu .sidemenuProfile .sidemenuProfileBox .sidemenuProfileBoxThumbnail {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background: var(--primaryColor);
}
.sidemenu .sidemenuProfile .sidemenuProfileBox .sidemenuProfileBoxThumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sidemenu .sidemenuProfile .sidemenuProfileBox .sidemenuProfileContent {
  display: flex;
  align-items: center;
  width: calc(100% - 55px);
  color: black;
}
.sidemenu .sidemenuProfile .sidemenuProfileBox .sidemenuProfileContent h4 {
  width: 100%;
  font-size: 18px;
  font-weight: 500;
  height: 25px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  color: black;
}
.sidemenu .sidemenuLink {
  width: 100%;
  padding: 10px;
  height: calc(100% - 50px);
  overflow-y: auto;
}
@media (max-width: 1024px) {
  .sidemenu .sidemenuLink {
    padding: 10px 20px;
    height: calc(100% - 180px);
  }
}
.sidemenu .sidemenuLink ul {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.sidemenu .sidemenuLink ul li {
  list-style: none;
}
.sidemenu .sidemenuLink ul li a {
  text-decoration: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  color: black;
  border-radius: 10px;
  margin-top: 5px;
  transition: 0.3s;
}
.sidemenu .sidemenuLink ul li a:hover {
  transition: 0.3s;
  background: #E5E0FF;
}
.sidemenu .sidemenuLink ul li a:hover .sidemenuLinkIcon {
  background: white;
  transition: 0.3s;
}
.sidemenu .sidemenuLink ul li a .sidemenuLinkIcon {
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(238, 238, 238, 0.8980392157);
  border-radius: 10px;
  transition: 0.3s;
}
.sidemenu .sidemenuLink ul li a .sidemenuLinkIcon span {
  font-size: 14px;
}
.sidemenu .sidemenuLink ul li a p {
  width: calc(100% - 50px);
  font-size: 14px;
  font-weight: 500;
}
.sidemenu .sidemenuLink ul li .sidemenuLinkActive {
  background: #E5E0FF;
}
.sidemenu .sidemenuLink ul li .sidemenuLinkActive:hover .sidemenuLinkIcon {
  background: var(--primaryColor);
  color: white;
}
.sidemenu .sidemenuLink ul li .sidemenuLinkActive .sidemenuLinkIcon {
  background: var(--primaryColor);
  color: white;
}
.sidemenu .sidemenuFooter {
  width: 100%;
  padding: 10px 20px;
}
.sidemenu .sidemenuFooter .canvasFooterDesigned {
  display: flex;
  align-items: center;
  font-size: 10px;
  font-weight: 500;
}
@media (max-width: 480px) {
  .sidemenu .sidemenuFooter .canvasFooterDesigned {
    font-size: 10px;
  }
}
.sidemenu .sidemenuFooter .canvasFooterDesigned i {
  margin-left: 10px;
}
.sidemenu .sidemenuFooter .canvasFooterDesigned a {
  text-decoration: none;
  margin-left: 10px;
}
.sidemenu .sidemenuFooter .canvasFooterDesigned a .footerStripLogo {
  width: 50px;
}
@media (max-width: 480px) {
  .sidemenu .sidemenuFooter .canvasFooterDesigned a .footerStripLogo {
    width: 50px;
  }
}
.sidemenu .sidemenuFooter .canvasFooterDesigned a .footerStripLogo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  filter: grayscale(1);
}

.sidemenuActive {
	transition: 0.3s;
	right: 0px;
}






.sidemenu2 {
  position: fixed;
  background: white;
  top: 0;
  right: -450px;
  width: 400px;
  z-index: 210;
  height: 100vh;
  transition: 0.3s;
}
@media (max-width: 480px) {
  .sidemenu2 {
    width: 100%;
  }
}
.sidemenu2 .sidemenu2Head {
  width: 100%;
  background: var(--secondaryColor);
  padding: 20px 20px;
  display: flex;
  justify-content: flex-end;
  position: relative;
  flex-direction: column;
}
.sidemenu2 .sidemenu2Head .sidemenuHeadLogo{
	display: flex;
	align-items: center;
	gap: 10px;
}
.sidemenu2 .sidemenu2Head .sidemenuHeadLogo .sidemenuHeadLogoImg{
	width: 45px;
	height: 45px;
}
.sidemenu2 .sidemenu2Head .sidemenuHeadLogo .sidemenuHeadLogoImg img{
	width :100%;
	height :100%;
	object-fit :contain;
}
.sidemenu2 .sidemenu2Head .sidemenuHeadLogo h2 {
  font-size: 25px;
  color: var(--primaryColor);
  line-height: 1;
}
.sidemenu2 .sidemenu2Head p {
  font-size: 14px;
  color: white;
  opacity: 0.7;
	margin-top :4px;
}
.sidemenu2 .sidemenu2Head .closeSidemenu2 {
  font-size: 16px;
  cursor: pointer;
  color: white;
  position: absolute;
  top: 20px;
  right: 20px;
  transition: 0.3s;
}
.sidemenu2 .sidemenu2Head .closeSidemenu2:hover {
  transition: 0.3s;
  transform: translateY(-5px);
}
.sidemenu2 .sidemenu2Link {
  width: 100%;
  display: flex;
  flex-direction: column;
  max-height: calc(100vh - 110px);
  overflow-y: auto;
}
.sidemenu2 .sidemenu2Link ul {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 20px;
  gap: 5px;
	border-top :1px solid #eee;
}
.sidemenu2 .sidemenu2Link ul:nth-of-type(1){
	border-top: none;
}
.sidemenu2 .sidemenu2Link ul li {
  list-style: none;
}
.sidemenu2 .sidemenu2Link ul li a {
  text-decoration: none;
  color: black;
  padding: 8px 0px;
  display: flex;
  background: white;
  justify-content: space-between;
  align-items: center;
  transition: 0.3s;
  /*border: 1px solid white;*/
  border-radius: 50px;
}
.sidemenu2 .sidemenu2Link ul li a:hover {
  transition: 0.3s;
  /*border: 1px solid var(--primaryColor);*/
  color: var(--primaryColor);
  transform: translateY(-5px);
}
.sidemenu2 .sidemenu2Link ul li a:hover i {
  color: var(--primaryColor);
  transition: 0.3s;
}
.sidemenu2 .sidemenu2Link ul li a p {
  font-size: 16px;
  line-height: normal;
}
.sidemenu2 .sidemenu2Link ul li a i {
  font-size: 12px;
  color: var(--secondaryTextColor);
  transition: 0.3s;
}
.sidemenu2 .sidemenu2Link ul li .sidemenu2LinkActive {
  /*border: 1px solid var(--primaryColor);*/
  color: var(--primaryColor);
}
.sidemenu2 .sidemenu2Link ul li .sidemenu2LinkActive i {
  color: var(--primaryColor);
}
.sidemenu2 .sidemenu2Link ul li .sidemenu2DorpDown{
	width: 100%;
	display: flex;
	flex-direction :column;
	height: 0;
	transition: .3s;
	overflow: hidden;
}
.sidemenu2 .sidemenu2Link ul li .sidemenu2DorpDownActive{
	height: auto;
	transition: .3s;
}
.sidemenu2 .sidemenu2Link ul li .sidemenu2DorpDown a{
	padding-left: 20px;
	opacity: .6;
}
.sidemenu2 .sidemenu2Link ul .sdemenu2PaymentArea{
	width :100%;
	border :1px solid #ccc;
	padding: 20px;
	border-radius :10px;
}
.sidemenu2 .sidemenu2Link ul .sdemenu2PaymentArea p{
	font-size :14px;
}
.sidemenu2 .sidemenu2Link ul .sdemenu2PaymentArea .sdemenu2PaymentBtn{
	width :100%;
	padding: 12px;
	display :flex;
	justify-content :center;
	align-items :center;
	border-radius: 10px;
	background: #1087dd;
	color: white;
	font-size: 16px;
	text-align :center;
	margin-top :4px;
	cursor: pointer;
	transition:.3s;
}
.sidemenu2 .sidemenu2Link ul .sdemenu2PaymentArea .sdemenu2PaymentBtn:hover{
	transition:.3s;
	background: #1087dd;
}

.sidemenu2Active {
  right: 0;
  transition: 0.3s;
}





.sectionLoader{
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  right: 0;
  background: white;
  z-index: 9;
  display: none;
}
@media (max-width: 1024px) {
  .sectionLoader {
    width: 100%;
  }
}
.sectionLoader .sectionLoaderIcon{
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.sectionLoader .sectionLoaderIcon .sectionLoaderIconBox{
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 5px solid var(--primaryColor);
  border-top-color: #eeee;
  animation: serachRotate 1s infinite linear;
}
@keyframes serachRotate {
  100%{
    transform: rotate(1turn);
  }
}

.audioPopup {
  position: fixed;
  width: 400px;
  background: white;
  border-radius: 10px;
  padding: 30px 20px 0px 20px;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  z-index: 200;
  display: none;
}
@media (max-width: 500px) {
  .audioPopup {
    width: 100%;
    top: inherit;
    bottom: 0;
    left: 0;
    transform: inherit;
    border-radius: 10px 10px 0px 0px;
  }
}
.audioPopup .transcriptWindow {
  position: absolute;
  width: 700px;
  background: white;
  border-radius: 10px;
  padding: 20px;
  transform: translateY(-50%);
  top: 50%;
  left: 410px;
  z-index: 200;
  display: none;
}
@media (max-width: 1800px) {
  .audioPopup .transcriptWindow {
    width: 500px;
  }
}
@media (max-width: 1024px) {
  .audioPopup .transcriptWindow {
    left: 0px;
    top: 0%;
    width: 100%;
    transform: translateY(0);
    padding: 15px;
    border-bottom: 1px solid #eee;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
}
.audioPopup .transcriptWindow .transcriptWindowHead {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.audioPopup .transcriptWindow .transcriptWindowHead h1 {
  font-size: 20px;
  font-weight: 600;
  width: 100%;
}
@media (max-width: 1024px) {
  .audioPopup .transcriptWindow .transcriptWindowHead h1 {
    font-size: 18px;
  }
}
.audioPopup .transcriptWindow .transcriptWindowHead .closeTranscriptWindow {
  cursor: pointer;
  font-size: 20px;
}
.audioPopup .transcriptWindow .transcriptWindowBody {
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  border-top: 1px solid #eee;
  padding-top: 20px;
  margin-top: 20px;
}
@media (max-width: 1800px) {
  .audioPopup .transcriptWindow .transcriptWindowBody {
    max-height: 75vh;
  }
}
@media (max-width: 1024px) {
  .audioPopup .transcriptWindow .transcriptWindowBody {
    padding-top: 15px;
    margin-top: 15px;
    max-height: 300px;
  }
}
.audioPopup .transcriptWindow .transcriptWindowBody p {
  font-size: 14px;
  line-height: 1.7;
}
.audioPopup .closeAudioPopup {
  position: absolute;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #fff;
  right: 20px;
  top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.0784313725);
  cursor: pointer;
  transition: 0.3s;
}
.audioPopup .closeAudioPopup:hover {
  transition: 0.3s;
  background: rgb(238, 119, 0);
  color: white;
}
.audioPopup .audioPopupThumbnail {
  width: 100%;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background: #FEFCF3;
  border-radius: 10px;
  transition: 0.3s;
}
@media (max-width: 500px) {
  .audioPopup .audioPopupThumbnail {
    background: #fdf9e3;
  }
}
.audioPopup .audioPopupThumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.audioPopup .audioPopupThumbnail .sound-wave {
  height: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  gap: 2px;
}
@media (max-width: 500px) {
  .audioPopup .audioPopupThumbnail .sound-wave {
    gap: 1px;
  }
}
.audioPopup .audioPopupThumbnail .sound-wave .bar {
  animation-name: wave-lg;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  animation-direction: alternate;
  background: #FAAB78;
  height: 10px;
  width: 1px;
}
.audioPopup .audioPopupThumbnail .sound-wave .bar:nth-child(-n+7), .audioPopup .audioPopupThumbnail .sound-wave .bar:nth-last-child(-n+7) {
  animation-name: wave-md;
}
.audioPopup .audioPopupThumbnail .sound-wave .bar:nth-child(-n+3), .audioPopup .audioPopupThumbnail .sound-wave .bar:nth-last-child(-n+3) {
  animation-name: wave-sm;
}
@keyframes wave-sm {
  0% {
    opacity: 0.35;
    height: 10px;
  }
  100% {
    opacity: 1;
    height: 25px;
  }
}
@keyframes wave-md {
  0% {
    opacity: 0.35;
    height: 15px;
  }
  100% {
    opacity: 1;
    height: 50px;
  }
}
@keyframes wave-lg {
  0% {
    opacity: 0.35;
    height: 15px;
  }
  100% {
    opacity: 1;
    height: 70px;
  }
}
@media (max-width: 1024px) {
  .audioPopup .audioPopupThumbnailActive {
    height: 250px;
    transition: 0.3s;
  }
}
.audioPopup .audio-player {
  width: 100%;
  background: #fff;
  color: black;
  font-size: 0.75em;
  font-weight: 500;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  margin-top: 20px;
}
.audioPopup .audio-player .audioHead {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.audioPopup .audio-player .audioHead .name {
  height: 16px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  width: 80%;
}
.audioPopup .audio-player .audioHead .time {
  display: flex;
}
.audioPopup .audio-player .audioHead .time > * {
  padding: 2px;
}
.audioPopup .audio-player .timeline {
  background: rgb(219, 213, 203);
  width: 100%;
  position: relative;
  cursor: pointer;
  border-radius: 20px;
  overflow: hidden;
  height: 15px;
  margin-top: 10px;
}
.audioPopup .audio-player .timeline .progress {
  background: coral;
  width: 0%;
  height: 100%;
  transition: 0.25s;
}
.audioPopup .audio-player .attr {
  width: 100%;
  margin-top: 10px;
}
.audioPopup .audio-player .attr p {
  font-size: 10px;
  opacity: 0.7;
}
.audioPopup .audio-player .controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
}
.audioPopup .audio-player .controls > * {
  display: flex;
  justify-content: center;
  align-items: center;
}
.audioPopup .audio-player .controls .restartBtn {
  color: var(--primaryColor);
  font-size: 22px;
  background: #eee;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.audioPopup .audio-player .controls .toggle-play.play {
  cursor: pointer;
  color: white;
  font-size: 25px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--primaryColor);
  transition: 0.3s;
}
.audioPopup .audio-player .controls .toggle-play.play:hover {
  transition: 0.3s;
  background: var(--secondaryColor);
}
.audioPopup .audio-player .controls .toggle-play.pause {
  cursor: pointer;
  color: white;
  font-size: 25px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--primaryColor);
  transition: 0.3s;
}
.audioPopup .audio-player .controls .toggle-play.pause:hover {
  transition: 0.3s;
  background: var(--secondaryColor);
}
.audioPopup .audio-player .controls .volume-container {
  cursor: pointer;
  position: relative;
  z-index: 2;
}
.audioPopup .audio-player .controls .volume-container .volume-button {
  height: 26px;
  display: flex;
  align-items: center;
}
.audioPopup .audio-player .controls .volume-container .volume-button .volume {
  color: var(--primaryColor);
  font-size: 18px;
  background: #eee;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.audioPopup .audio-player .controls .volume-container .volume-slider {
  position: absolute;
  z-index: -1;
  right: 30px;
  width: 80px;
  height: 8px;
  background: rgb(219, 213, 203);
  transition: 0.25s;
  border-radius: 20px;
  overflow: hidden;
}
@media (max-width: 500px) {
  .audioPopup .audio-player .controls .volume-container .volume-slider {
    width: 50px;
  }
}
.audioPopup .audio-player .controls .volume-container .volume-slider .volume-percentage {
  background: coral;
  height: 100%;
  width: 75%;
}
.audioPopup .audioPopupQuestion {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-top: 20px;
  border-top: 1px solid #eee;
  padding-top: 20px;
}
.audioPopup .audioPopupQuestion .audioPopupQuestionHead {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.audioPopup .audioPopupQuestion .audioPopupQuestionHead .viewAudioQuestion {
  padding: 10px 20px;
  background: #898AA6;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 500;
  width: -moz-fit-content;
  width: fit-content;
  cursor: pointer;
  color: white;
  transition: 0.3s;
}
.audioPopup .audioPopupQuestion .audioPopupQuestionHead .viewAudioQuestion:hover {
  transition: 0.3s;
  opacity: 0.7;
}
@media (max-width: 500px) {
  .audioPopup .audioPopupQuestion .audioPopupQuestionHead .viewAudioQuestion:hover {
    opacity: 1;
  }
}
.audioPopup .audioPopupQuestion .audioPopupQuestionHead .transcriptBtn {
  padding: 10px 20px;
  background: #FF9551;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 500;
  width: -moz-fit-content;
  width: fit-content;
  cursor: pointer;
  color: white;
  margin-left: auto;
  transition: 0.3s;
}
.audioPopup .audioPopupQuestion .audioPopupQuestionHead .transcriptBtn:hover {
  transition: 0.3s;
  opacity: 0.7;
}
@media (max-width: 500px) {
  .audioPopup .audioPopupQuestion .audioPopupQuestionHead .transcriptBtn:hover {
    opacity: 1;
  }
}
.audioPopup .audioPopupQuestion .audioPopupQuestionBox {
  width: 100%;
  background: #F9F9F9;
  border-radius: 10px;
  margin-top: 10px;
  overflow-y: auto;
  visibility: hidden;
  opacity: 0;
  padding: 15px 10px;
  max-height: 0px;
  transition: 0.5s ease-in-out;
}
@media (max-width: 500px) {
  .audioPopup .audioPopupQuestion .audioPopupQuestionBox {
    background: #ededed;
  }
}
.audioPopup .audioPopupQuestion .audioPopupQuestionBox ul {
  width: 100%;
  display: flex;
  flex-direction: column;
  border-top: 1px solid white;
  margin-top: 20px;
  padding-top: 20px;
}
.audioPopup .audioPopupQuestion .audioPopupQuestionBox ul:nth-of-type(1) {
  border-top: none;
  margin-top: 0px;
  padding-top: 0px;
}
.audioPopup .audioPopupQuestion .audioPopupQuestionBox ul li {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 20px;
}
.audioPopup .audioPopupQuestion .audioPopupQuestionBox ul li:nth-of-type(1) {
  margin-top: 0;
}
.audioPopup .audioPopupQuestion .audioPopupQuestionBox ul li .audioPopupQuestionIcon {
  width: 30px;
  height: 30px;
  border-radius: 50px;
  background: #E9DAC1;
  display: flex;
  justify-content: center;
  align-items: center;
  color: black;
  font-size: 12px;
  font-weight: 500;
}
.audioPopup .audioPopupQuestion .audioPopupQuestionBox ul li .qn {
  background: #FFB3B3;
}
.audioPopup .audioPopupQuestion .audioPopupQuestionBox ul li .ans {
  background: #CDF0EA;
}
.audioPopup .audioPopupQuestion .audioPopupQuestionBox ul li p {
  width: calc(100% - 45px);
  line-height: 1.5;
  font-weight: 500;
  font-size: 14px;
}
.audioPopup .audioPopupQuestion .audioPopupQuestionBox ul li .viewAudioAnswer {
  width: calc(100% - 45px);
}
.audioPopup .audioPopupQuestion .audioPopupQuestionBox ul li .viewAudioAnswer .viewAudioAnswerBtn {
  font-size: 12px;
  font-weight: 500;
  background: var(--secondaryColor);
  color: white;
  padding: 6px 16px;
  border-radius: 6px;
  width: -moz-fit-content;
  width: fit-content;
  cursor: pointer;
  transition: 0.3s;
}
.audioPopup .audioPopupQuestion .audioPopupQuestionBox ul li .viewAudioAnswer .viewAudioAnswerBtn:hover {
  transition: 0.3s;
  opacity: 0.7;
}

.audioPopup .audioPopupQuestion .audioPopupQuestionBox ul li .viewAudioAnswer .viewAudioAnswerDetails {
  width: 100%;
  background: white;
  padding: 10px;
  padding-top: 40px;
  border-radius: 10px;
  position: relative;
  display: none;
}
.audioPopup .audioPopupQuestion .audioPopupQuestionBox ul li .viewAudioAnswer .viewAudioAnswerDetails .closeViewAudioAnswerDetails {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 14px;
  cursor: pointer;
  background: #eee;
  border-radius: 50px;
  width: 22px;
  height: 22px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.audioPopup .audioPopupQuestion .audioPopupQuestionBoxActive {
  max-height: 30vh;
  transition: 0.5s ease-in-out;
  visibility: visible;
  opacity: 1;
  margin-bottom: 30px;
}


.videoPopup {
  position: fixed;
  width: 70%;
  background: white;
  border-radius: 10px;
  padding: 30px;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  z-index: 200;
  display: none;
}
@media (max-width: 1800px) {
  .videoPopup {
    width: 90%;
  }
}
@media (max-width: 500px) {
  .videoPopup {
    width: 100%;
    top: inherit;
    bottom: 0;
    left: 0;
    transform: inherit;
    border-radius: 0px;
    padding: 50px 0px 10px 0px;
  }
}
.videoPopup .closeVideoPopup {
  position: absolute;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #fff;
  right: 20px;
  top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.0784313725);
  cursor: pointer;
  transition: 0.3s;
}
@media (max-width: 500px) {
  .videoPopup .closeVideoPopup {
    top: 12px;
  }
}
.videoPopup .closeVideoPopup:hover {
  transition: 0.3s;
  background: rgb(238, 119, 0);
  color: white;
}
.videoPopup .videoPopupMain {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.videoPopup .videoPopupMain .videoPopupThumbnail {
  flex: 0 0 50%;
  height: 450px;
  background: black;
  border-radius: 10px;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .videoPopup .videoPopupMain .videoPopupThumbnail {
    flex: 100%;
    height: 300px;
  }
}
@media (max-width: 500px) {
  .videoPopup .videoPopupMain .videoPopupThumbnail {
    border-radius: 0px;
    height: 220px;
  }
}
.videoPopup .videoPopupMain .videoPopupThumbnail iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.videoPopup .videoPopupMain .videoPopupDetails {
  flex: 0 0 45%;
  display: flex;
  flex-direction: column;
  max-height: 450px;
  overflow-y: auto;
}
@media (max-width: 1024px) {
  .videoPopup .videoPopupMain .videoPopupDetails {
    flex: 100%;
    max-height: calc(100vh - 400px);
    margin-top: 30px;
  }
}
@media (max-width: 500px) {
  .videoPopup .videoPopupMain .videoPopupDetails {
    padding: 10px;
    margin-top: 20px;
    max-height: calc(100vh - 360px);
  }
  .videoPopup .videoPopupMain .videoPopupDetails::-webkit-scrollbar {
    width: 0px;
    height: 0px;
  }
}
.videoPopup .videoPopupMain .videoPopupDetails h1 {
  font-size: 25px;
  font-weight: 600;
}
.videoPopup .videoPopupMain .videoPopupDetails p {
  font-size: 14px;
  line-height: 1.7;
  margin-top: 10px;
}
.videoPopup .videoPopupMain .videoPopupDetails .attr {
  margin-top: 15px;
}
.videoPopup .videoPopupMain .videoPopupDetails .attr span {
  font-size: 12px;
  font-weight: 500;
}
.videoPopup .videoPopupMain .videoPopupDetails .videoPopupQuestion {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-top: 20px;
  border-top: 1px solid #eee;
  padding-top: 20px;
}
.videoPopup .videoPopupMain .videoPopupDetails .videoPopupQuestion .videoPopupQuestionHead {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.videoPopup .videoPopupMain .videoPopupDetails .videoPopupQuestion .videoPopupQuestionHead .viewVideoQuestion {
  padding: 10px 20px;
  background: #898AA6;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 500;
  width: -moz-fit-content;
  width: fit-content;
  cursor: pointer;
  color: white;
  transition: 0.3s;
}
.videoPopup .videoPopupMain .videoPopupDetails .videoPopupQuestion .videoPopupQuestionHead .viewVideoQuestion:hover {
  transition: 0.3s;
  opacity: 0.7;
}
@media (max-width: 500px) {
  .videoPopup .videoPopupMain .videoPopupDetails .videoPopupQuestion .videoPopupQuestionHead .viewVideoQuestion:hover {
    opacity: 1;
  }
}
.videoPopup .videoPopupMain .videoPopupDetails .videoPopupQuestion .videoPopupQuestionHead .transcriptBtn {
  padding: 10px 20px;
  background: #FF9551;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 500;
  width: -moz-fit-content;
  width: fit-content;
  cursor: pointer;
  color: white;
  margin-left: auto;
  transition: 0.3s;
}
.videoPopup .videoPopupMain .videoPopupDetails .videoPopupQuestion .videoPopupQuestionHead .transcriptBtn:hover {
  transition: 0.3s;
  opacity: 0.7;
}
@media (max-width: 500px) {
  .videoPopup .videoPopupMain .videoPopupDetails .videoPopupQuestion .videoPopupQuestionHead .transcriptBtn:hover {
    opacity: 1;
  }
}
.videoPopup .videoPopupMain .videoPopupDetails .videoPopupQuestion .videoPopupQuestionBox {
  width: 100%;
  background: #F9F9F9;
  border-radius: 10px;
  margin-top: 10px;
  overflow-y: auto;
  visibility: hidden;
  opacity: 0;
  padding: 15px 10px;
  max-height: 0px;
  transition: 0.5s ease-in-out;
}
@media (max-width: 500px) {
  .videoPopup .videoPopupMain .videoPopupDetails .videoPopupQuestion .videoPopupQuestionBox {
    background: #ededed;
  }
}
.videoPopup .videoPopupMain .videoPopupDetails .videoPopupQuestion .videoPopupQuestionBox ul {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.videoPopup .videoPopupMain .videoPopupDetails .videoPopupQuestion .videoPopupQuestionBox ul li {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 20px;
}
.videoPopup .videoPopupMain .videoPopupDetails .videoPopupQuestion .videoPopupQuestionBox ul li:nth-of-type(1) {
  margin-top: 0;
}
.videoPopup .videoPopupMain .videoPopupDetails .videoPopupQuestion .videoPopupQuestionBox ul li .videoPopupQuestionIcon {
  width: 30px;
  height: 30px;
  border-radius: 50px;
  background: #E9DAC1;
  display: flex;
  justify-content: center;
  align-items: center;
  color: black;
  font-size: 12px;
  font-weight: 500;
}
.videoPopup .videoPopupMain .videoPopupDetails .videoPopupQuestion .videoPopupQuestionBox ul li .qn {
  background: #FFB3B3;
}
.videoPopup .videoPopupMain .videoPopupDetails .videoPopupQuestion .videoPopupQuestionBox ul li .ans {
  background: #CDF0EA;
}
.videoPopup .videoPopupMain .videoPopupDetails .videoPopupQuestion .videoPopupQuestionBox ul li p {
  width: calc(100% - 45px);
  line-height: 1.5;
  font-weight: 500;
  font-size: 14px;
}
.videoPopup .videoPopupMain .videoPopupDetails .videoPopupQuestion .videoPopupQuestionBox ul li .viewVideoAnswer {
  width: calc(100% - 45px);
}

.videoPopup .videoPopupMain .videoPopupDetails .videoPopupQuestion .videoPopupQuestionBox ul li .viewVideoAnswer .viewVideoAnswerBtn {
  font-size: 12px;
  font-weight: 500;
  background: var(--secondaryColor);
  color: white;
  padding: 10px 20px;
  border-radius: 50px;
  width: -moz-fit-content;
  width: fit-content;
  cursor: pointer;
}
.videoPopup .videoPopupMain .videoPopupDetails .videoPopupQuestion .videoPopupQuestionBox ul li .viewVideoAnswer .viewVideoAnswerDetails {
  width: 100%;
  background: white;
  padding: 10px;
  padding-top: 40px;
  border-radius: 10px;
  position: relative;
  display: none;
}
.videoPopup .videoPopupMain .videoPopupDetails .videoPopupQuestion .videoPopupQuestionBox ul li .viewVideoAnswer .viewVideoAnswerDetails .closeViewVideoAnswerDetails {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 14px;
  cursor: pointer;
  background: #eee;
  border-radius: 50px;
  width: 22px;
  height: 22px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.videoPopup .videoPopupMain .videoPopupDetails .videoPopupQuestion .videoPopupQuestionBox ul li .viewVideoAnswer .viewVideoAnswerBtn {
  font-size: 12px;
  font-weight: 500;
  background: var(--secondaryColor);
  color: white;
  padding: 6px 16px;
  border-radius: 6px;
  width: -moz-fit-content;
  width: fit-content;
}
.videoPopup .videoPopupMain .videoPopupDetails .videoPopupQuestion .videoPopupQuestionBoxActive {
  max-height: 100%;
  transition: 0.5s ease-in-out;
  visibility: visible;
  opacity: 1;
  margin-bottom: 30px;
}
@media (max-width: 1024px) {
  .videoPopup .videoPopupMain .videoPopupDetails .videoPopupQuestion .videoPopupQuestionBoxActive {
    max-height: 30vh;
  }
}
@media (max-width: 500px) {
  .videoPopup .videoPopupMain .videoPopupDetails .videoPopupQuestion .videoPopupQuestionBoxActive {
    margin-bottom: 0px;
  }
}
.videoPopup .transcriptWindow {
  position: absolute;
  width: 48%;
  background: white;
  border-radius: 10px;
  padding: 20px;
  bottom: 0;
  right: 0;
  overflow: hidden;
  z-index: 200;
  display: none;
}
@media (max-width: 1024px) {
  .videoPopup .transcriptWindow {
    width: 100%;
  }
}
@media (max-width: 500px) {
  .videoPopup .transcriptWindow {
    border-radius: 0px;
  }
}
.videoPopup .transcriptWindow .transcriptWindowHead {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.videoPopup .transcriptWindow .transcriptWindowHead h1 {
  font-size: 20px;
  font-weight: 600;
  width: 100%;
}
@media (max-width: 1024px) {
  .videoPopup .transcriptWindow .transcriptWindowHead h1 {
    font-size: 18px;
  }
}
.videoPopup .transcriptWindow .transcriptWindowHead .closeTranscriptWindow {
  cursor: pointer;
  font-size: 20px;
}
.videoPopup .transcriptWindow .transcriptWindowBody {
  width: 100%;
  overflow-y: auto;
  border-top: 1px solid #eee;
  padding-top: 20px;
  margin-top: 20px;
  max-height: 425px;
  min-height: 425px;
}
@media (max-width: 1024px) {
  .videoPopup .transcriptWindow .transcriptWindowBody {
    max-height: 220px;
    min-height: auto;
  }
}
@media (max-width: 768px) {
  .videoPopup .transcriptWindow .transcriptWindowBody {
    max-height: 220px;
  }
}
@media (max-width: 480px) {
  .videoPopup .transcriptWindow .transcriptWindowBody {
    padding-top: 15px;
    margin-top: 15px;
    max-height: 250px;
  }
  .videoPopup .transcriptWindow .transcriptWindowBody::-webkit-scrollbar {
    width: 0px;
    height: 0px;
  }
}
.videoPopup .transcriptWindow .transcriptWindowBody p {
  font-size: 14px;
  line-height: 1.7;
}







.teleprompterPopup {
  position: fixed;
  width: 70%;
  background: white;
  border-radius: 10px;
  padding: 30px;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  z-index: 200;
  display: none;
}
@media (max-width: 1800px) {
  .teleprompterPopup {
    width: 90%;
  }
}
@media (max-width: 500px) {
  .teleprompterPopup {
    width: 100%;
    top: inherit;
    bottom: 0;
    left: 0;
    transform: inherit;
    border-radius: 0px;
    padding: 50px 0px 10px 0px;
  }
}
.teleprompterPopup .closeteleprompterPopup {
  position: absolute;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #fff;
  right: 20px;
  top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.0784313725);
  cursor: pointer;
  transition: 0.3s;
}
@media (max-width: 500px) {
  .teleprompterPopup .closeteleprompterPopup {
    top: 12px;
  }
}
.teleprompterPopup .closeteleprompterPopup:hover {
  transition: 0.3s;
  background: rgb(238, 119, 0);
  color: white;
}
.teleprompterPopup .teleprompterPopupMain {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.teleprompterPopup .teleprompterPopupMain .teleprompterPopupThumbnail {
  flex: 0 0 50%;
  height: 450px;
  background: black;
  border-radius: 10px;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .teleprompterPopup .teleprompterPopupMain .teleprompterPopupThumbnail {
    flex: 100%;
    height: 300px;
  }
}
@media (max-width: 500px) {
  .teleprompterPopup .teleprompterPopupMain .teleprompterPopupThumbnail {
    border-radius: 0px;
    height: 220px;
  }
}
.teleprompterPopup .teleprompterPopupMain .teleprompterPopupThumbnail iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.teleprompterPopup .teleprompterPopupMain .teleprompterPopupDetails {
  flex: 0 0 45%;
  display: flex;
  flex-direction: column;
  max-height: 450px;
  overflow-y: auto;
}
@media (max-width: 1024px) {
  .teleprompterPopup .teleprompterPopupMain .teleprompterPopupDetails {
    flex: 100%;
    max-height: calc(100vh - 400px);
    margin-top: 30px;
  }
}
@media (max-width: 500px) {
  .teleprompterPopup .teleprompterPopupMain .teleprompterPopupDetails {
    padding: 10px;
    margin-top: 20px;
    max-height: calc(100vh - 360px);
  }
  .teleprompterPopup .teleprompterPopupMain .teleprompterPopupDetails::-webkit-scrollbar {
    width: 0px;
    height: 0px;
  }
}
.teleprompterPopup .teleprompterPopupMain .teleprompterPopupDetails h1 {
  font-size: 25px;
  font-weight: 600;
}
.teleprompterPopup .teleprompterPopupMain .teleprompterPopupDetails p {
  font-size: 14px;
  line-height: 1.7;
  margin-top: 10px;
}
.teleprompterPopup .teleprompterPopupMain .teleprompterPopupDetails .attr {
  margin-top: 15px;
}
.teleprompterPopup .teleprompterPopupMain .teleprompterPopupDetails .attr span {
  font-size: 12px;
  font-weight: 500;
}
.teleprompterPopup .teleprompterPopupMain .teleprompterPopupDetails .teleprompterPopupQuestion {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-top: 20px;
  border-top: 1px solid #eee;
  padding-top: 20px;
}
.teleprompterPopup .teleprompterPopupMain .teleprompterPopupDetails .teleprompterPopupQuestion .videoPopupQuestionHead {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.videoPopup .videoPopupMain .videoPopupDetails .videoPopupQuestion .videoPopupQuestionHead .viewVideoQuestion {
  padding: 10px 20px;
  background: #898AA6;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 500;
  width: -moz-fit-content;
  width: fit-content;
  cursor: pointer;
  color: white;
  transition: 0.3s;
}
.videoPopup .videoPopupMain .videoPopupDetails .videoPopupQuestion .videoPopupQuestionHead .viewVideoQuestion:hover {
  transition: 0.3s;
  opacity: 0.7;
}
@media (max-width: 500px) {
  .videoPopup .videoPopupMain .videoPopupDetails .videoPopupQuestion .videoPopupQuestionHead .viewVideoQuestion:hover {
    opacity: 1;
  }
}
.videoPopup .videoPopupMain .videoPopupDetails .videoPopupQuestion .videoPopupQuestionHead .transcriptBtn {
  padding: 10px 20px;
  background: #FF9551;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 500;
  width: -moz-fit-content;
  width: fit-content;
  cursor: pointer;
  color: white;
  margin-left: auto;
  transition: 0.3s;
}
.videoPopup .videoPopupMain .videoPopupDetails .videoPopupQuestion .videoPopupQuestionHead .transcriptBtn:hover {
  transition: 0.3s;
  opacity: 0.7;
}
@media (max-width: 500px) {
  .videoPopup .videoPopupMain .videoPopupDetails .videoPopupQuestion .videoPopupQuestionHead .transcriptBtn:hover {
    opacity: 1;
  }
}
.videoPopup .videoPopupMain .videoPopupDetails .videoPopupQuestion .videoPopupQuestionBox {
  width: 100%;
  background: #F9F9F9;
  border-radius: 10px;
  margin-top: 10px;
  overflow-y: auto;
  visibility: hidden;
  opacity: 0;
  padding: 15px 10px;
  max-height: 0px;
  transition: 0.5s ease-in-out;
}
@media (max-width: 500px) {
  .videoPopup .videoPopupMain .videoPopupDetails .videoPopupQuestion .videoPopupQuestionBox {
    background: #ededed;
  }
}
.videoPopup .videoPopupMain .videoPopupDetails .videoPopupQuestion .videoPopupQuestionBox ul {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.videoPopup .videoPopupMain .videoPopupDetails .videoPopupQuestion .videoPopupQuestionBox ul li {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 20px;
}
.videoPopup .videoPopupMain .videoPopupDetails .videoPopupQuestion .videoPopupQuestionBox ul li:nth-of-type(1) {
  margin-top: 0;
}
.videoPopup .videoPopupMain .videoPopupDetails .videoPopupQuestion .videoPopupQuestionBox ul li .videoPopupQuestionIcon {
  width: 30px;
  height: 30px;
  border-radius: 50px;
  background: #E9DAC1;
  display: flex;
  justify-content: center;
  align-items: center;
  color: black;
  font-size: 12px;
  font-weight: 500;
}
.videoPopup .videoPopupMain .videoPopupDetails .videoPopupQuestion .videoPopupQuestionBox ul li .qn {
  background: #FFB3B3;
}
.videoPopup .videoPopupMain .videoPopupDetails .videoPopupQuestion .videoPopupQuestionBox ul li .ans {
  background: #CDF0EA;
}
.videoPopup .videoPopupMain .videoPopupDetails .videoPopupQuestion .videoPopupQuestionBox ul li p {
  width: calc(100% - 45px);
  line-height: 1.5;
  font-weight: 500;
  font-size: 14px;
}
.videoPopup .videoPopupMain .videoPopupDetails .videoPopupQuestion .videoPopupQuestionBox ul li .viewVideoAnswer {
  width: calc(100% - 45px);
}

.videoPopup .videoPopupMain .videoPopupDetails .videoPopupQuestion .videoPopupQuestionBox ul li .viewVideoAnswer .viewVideoAnswerBtn {
  font-size: 12px;
  font-weight: 500;
  background: var(--secondaryColor);
  color: white;
  padding: 10px 20px;
  border-radius: 50px;
  width: -moz-fit-content;
  width: fit-content;
  cursor: pointer;
}
.videoPopup .videoPopupMain .videoPopupDetails .videoPopupQuestion .videoPopupQuestionBox ul li .viewVideoAnswer .viewVideoAnswerDetails {
  width: 100%;
  background: white;
  padding: 10px;
  padding-top: 40px;
  border-radius: 10px;
  position: relative;
  display: none;
}
.videoPopup .videoPopupMain .videoPopupDetails .videoPopupQuestion .videoPopupQuestionBox ul li .viewVideoAnswer .viewVideoAnswerDetails .closeViewVideoAnswerDetails {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 14px;
  cursor: pointer;
  background: #eee;
  border-radius: 50px;
  width: 22px;
  height: 22px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.videoPopup .videoPopupMain .videoPopupDetails .videoPopupQuestion .videoPopupQuestionBox ul li .viewVideoAnswer .viewVideoAnswerBtn {
  font-size: 12px;
  font-weight: 500;
  background: var(--secondaryColor);
  color: white;
  padding: 6px 16px;
  border-radius: 6px;
  width: -moz-fit-content;
  width: fit-content;
}
.videoPopup .videoPopupMain .videoPopupDetails .videoPopupQuestion .videoPopupQuestionBoxActive {
  max-height: 100%;
  transition: 0.5s ease-in-out;
  visibility: visible;
  opacity: 1;
  margin-bottom: 30px;
}
@media (max-width: 1024px) {
  .videoPopup .videoPopupMain .videoPopupDetails .videoPopupQuestion .videoPopupQuestionBoxActive {
    max-height: 30vh;
  }
}
@media (max-width: 500px) {
  .videoPopup .videoPopupMain .videoPopupDetails .videoPopupQuestion .videoPopupQuestionBoxActive {
    margin-bottom: 0px;
  }
}
.videoPopup .transcriptWindow {
  position: absolute;
  width: 48%;
  background: white;
  border-radius: 10px;
  padding: 20px;
  bottom: 0;
  right: 0;
  overflow: hidden;
  z-index: 200;
  display: none;
}
@media (max-width: 1024px) {
  .videoPopup .transcriptWindow {
    width: 100%;
  }
}
@media (max-width: 500px) {
  .videoPopup .transcriptWindow {
    border-radius: 0px;
  }
}
.videoPopup .transcriptWindow .transcriptWindowHead {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.videoPopup .transcriptWindow .transcriptWindowHead h1 {
  font-size: 20px;
  font-weight: 600;
  width: 100%;
}
@media (max-width: 1024px) {
  .videoPopup .transcriptWindow .transcriptWindowHead h1 {
    font-size: 18px;
  }
}
.videoPopup .transcriptWindow .transcriptWindowHead .closeTranscriptWindow {
  cursor: pointer;
  font-size: 20px;
}
.videoPopup .transcriptWindow .transcriptWindowBody {
  width: 100%;
  overflow-y: auto;
  border-top: 1px solid #eee;
  padding-top: 20px;
  margin-top: 20px;
  max-height: 425px;
  min-height: 425px;
}
@media (max-width: 1024px) {
  .videoPopup .transcriptWindow .transcriptWindowBody {
    max-height: 220px;
    min-height: auto;
  }
}
@media (max-width: 768px) {
  .videoPopup .transcriptWindow .transcriptWindowBody {
    max-height: 220px;
  }
}
@media (max-width: 480px) {
  .videoPopup .transcriptWindow .transcriptWindowBody {
    padding-top: 15px;
    margin-top: 15px;
    max-height: 250px;
  }
  .videoPopup .transcriptWindow .transcriptWindowBody::-webkit-scrollbar {
    width: 0px;
    height: 0px;
  }
}
.videoPopup .transcriptWindow .transcriptWindowBody p {
  font-size: 14px;
  line-height: 1.7;
}





/* .videoPopup {
  position: fixed;
  width: 70%;
  background: white;
  border-radius: 10px;
  padding: 30px;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  z-index: 200;
  display: none;
}
@media (max-width: 1800px) {
  .videoPopup {
    width: 90%;
  }
}
@media (max-width: 500px) {
  .videoPopup {
    width: 100%;
    top: inherit;
    bottom: 0;
    left: 0;
    transform: inherit;
    border-radius: 0px;
    padding: 50px 0px 10px 0px;
  }
}
.videoPopup .closeVideoPopup {
  position: absolute;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #fff;
  right: 20px;
  top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.0784313725);
  cursor: pointer;
  transition: 0.3s;
}
@media (max-width: 500px) {
  .videoPopup .closeVideoPopup {
    top: 12px;
  }
}
.videoPopup .closeVideoPopup:hover {
  transition: 0.3s;
  background: rgb(238, 119, 0);
  color: white;
}
.videoPopup .videoPopupMain {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.videoPopup .videoPopupMain .videoPopupThumbnail {
  flex: 0 0 50%;
  height: 450px;
  background: black;
  border-radius: 10px;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .videoPopup .videoPopupMain .videoPopupThumbnail {
    flex: 100%;
    height: 300px;
  }
}
@media (max-width: 500px) {
  .videoPopup .videoPopupMain .videoPopupThumbnail {
    border-radius: 0px;
    height: 220px;
  }
}
.videoPopup .videoPopupMain .videoPopupThumbnail iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.videoPopup .videoPopupMain .videoPopupDetails {
  flex: 0 0 45%;
  display: flex;
  flex-direction: column;
  max-height: 450px;
  overflow-y: auto;
}
@media (max-width: 1024px) {
  .videoPopup .videoPopupMain .videoPopupDetails {
    flex: 100%;
    max-height: calc(100vh - 400px);
    margin-top: 30px;
  }
}
@media (max-width: 500px) {
  .videoPopup .videoPopupMain .videoPopupDetails {
    padding: 10px;
    margin-top: 20px;
    max-height: calc(100vh - 360px);
  }
  .videoPopup .videoPopupMain .videoPopupDetails::-webkit-scrollbar {
    width: 0px;
    height: 0px;
  }
}
.videoPopup .videoPopupMain .videoPopupDetails h1 {
  font-size: 25px;
  font-weight: 600;
}
.videoPopup .videoPopupMain .videoPopupDetails p {
  font-size: 14px;
  line-height: 1.7;
  margin-top: 10px;
}
.videoPopup .videoPopupMain .videoPopupDetails .attr {
  margin-top: 15px;
}
.videoPopup .videoPopupMain .videoPopupDetails .attr span {
  font-size: 12px;
  font-weight: 500;
}
.videoPopup .videoPopupMain .videoPopupDetails .videoPopupQuestion {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-top: 20px;
  border-top: 1px solid #eee;
  padding-top: 20px;
}
.videoPopup .videoPopupMain .videoPopupDetails .videoPopupQuestion .viewVideoQuestion {
  padding: 10px 20px;
  background: #898AA6;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 500;
  width: -moz-fit-content;
  width: fit-content;
  cursor: pointer;
  color: white;
  transition: 0.3s;
}
.videoPopup .videoPopupMain .videoPopupDetails .videoPopupQuestion .viewVideoQuestion:hover {
  transition: 0.3s;
  opacity: 0.7;
}
@media (max-width: 500px) {
  .videoPopup .videoPopupMain .videoPopupDetails .videoPopupQuestion .viewVideoQuestion:hover {
    opacity: 1;
  }
}
.videoPopup .videoPopupMain .videoPopupDetails .videoPopupQuestion .videoPopupQuestionBox {
  width: 100%;
  background: #F9F9F9;
  border-radius: 10px;
  margin-top: 10px;
  overflow-y: auto;
  visibility: hidden;
  opacity: 0;
  padding: 15px 10px;
  max-height: 0px;
  transition: 0.5s ease-in-out;
}
@media (max-width: 500px) {
  .videoPopup .videoPopupMain .videoPopupDetails .videoPopupQuestion .videoPopupQuestionBox {
    background: #ededed;
  }
}
.videoPopup .videoPopupMain .videoPopupDetails .videoPopupQuestion .videoPopupQuestionBox ul {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.videoPopup .videoPopupMain .videoPopupDetails .videoPopupQuestion .videoPopupQuestionBox ul li {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 20px;
}
.videoPopup .videoPopupMain .videoPopupDetails .videoPopupQuestion .videoPopupQuestionBox ul li:nth-of-type(1) {
  margin-top: 0;
}
.videoPopup .videoPopupMain .videoPopupDetails .videoPopupQuestion .videoPopupQuestionBox ul li .videoPopupQuestionIcon {
  width: 30px;
  height: 30px;
  border-radius: 50px;
  background: #E9DAC1;
  display: flex;
  justify-content: center;
  align-items: center;
  color: black;
  font-size: 12px;
  font-weight: 500;
}
.videoPopup .videoPopupMain .videoPopupDetails .videoPopupQuestion .videoPopupQuestionBox ul li .qn {
  background: #FFB3B3;
}
.videoPopup .videoPopupMain .videoPopupDetails .videoPopupQuestion .videoPopupQuestionBox ul li .ans {
  background: #CDF0EA;
}
.videoPopup .videoPopupMain .videoPopupDetails .videoPopupQuestion .videoPopupQuestionBox ul li p {
  width: calc(100% - 45px);
  line-height: 1.5;
  font-weight: 500;
  font-size: 14px;
}
.videoPopup .videoPopupMain .videoPopupDetails .videoPopupQuestion .videoPopupQuestionBox ul li .viewVideoAnswer {
  width: calc(100% - 45px);
}
.videoPopup .videoPopupMain .videoPopupDetails .videoPopupQuestion .videoPopupQuestionBox ul li .viewVideoAnswer .viewVideoAnswerBtn {
  font-size: 12px;
  font-weight: 500;
  background: var(--secondaryColor);
  color: white;
  padding: 10px 20px;
  border-radius: 50px;
  width: -moz-fit-content;
  width: fit-content;
}
.videoPopup .videoPopupMain .videoPopupDetails .videoPopupQuestion .videoPopupQuestionBoxActive {
  max-height: 100%;
  transition: 0.5s ease-in-out;
  visibility: visible;
  opacity: 1;
  margin-bottom: 30px;
}
@media (max-width: 1024px) {
  .videoPopup .videoPopupMain .videoPopupDetails .videoPopupQuestion .videoPopupQuestionBoxActive {
    max-height: 30vh;
  }
}
@media (max-width: 500px) {
  .videoPopup .videoPopupMain .videoPopupDetails .videoPopupQuestion .videoPopupQuestionBoxActive {
    margin-bottom: 0px;
  }
} */
.pdfViewerPopup {
  position: fixed;
  width: 70%;
  background: white;
  border-radius: 10px;
  z-index: 250;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  display: none;
}
@media (max-width: 1024px) {
  .pdfViewerPopup {
    width: 80%;
  }
}
@media (max-width: 768px) {
  .pdfViewerPopup {
    width: 95%;
  }
}
@media (max-width: 480px) {
  .pdfViewerPopup {
    width: 100%;
    top: inherit;
    bottom: 0;
    transform: inherit;
    left: 0;
  }
}
.pdfViewerPopup .closePdfViewerPopup {
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 20px;
  cursor: pointer;
}
.pdfViewerPopup .pdfViewerPopupBody {
  width: 100%;
  padding: 20px;
  margin-top: 50px;
  height: 75vh;
}
.pdfViewerPopup .pdfViewerPopupBody iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}


.PDFPopup {
  position: fixed;
  width: 50%;
  background: white;
  border-radius: 10px;
  padding: 30px 20px 0px 20px;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  z-index: 200;
  display: none;
}
@media (max-width: 1800px) {
  .PDFPopup {
    width: 70%;
  }
}
@media (max-width: 1024px) {
  .PDFPopup {
    width: 90%;
  }
}
@media (max-width: 500px) {
  .PDFPopup {
    width: 100%;
    top: inherit;
    bottom: 0;
    left: 0;
    transform: inherit;
    border-radius: 10px 10px 0px 0px;
  }
}
.PDFPopup .closePDFPopup {
  position: absolute;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #fff;
  right: 20px;
  top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.0784313725);
  cursor: pointer;
  transition: 0.3s;
}
@media (max-width: 500px) {
  .PDFPopup .closePDFPopup {
    top: 12px;
  }
}
.PDFPopup .closePDFPopup:hover {
  transition: 0.3s;
  background: rgb(238, 119, 0);
  color: white;
}
.PDFPopup .PDFPopupThumbnail {
  width: 100%;
  max-height: 50vh;
  background: rgba(238, 238, 238, 0.2745098039);
  border-radius: 10px;
  overflow-y: auto;
  padding: 10px;
}
@media (max-width: 500px) {
  .PDFPopup .PDFPopupThumbnail {
    max-height: 250px;
  }
}
.PDFPopup .PDFPopupThumbnail iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.PDFPopup .PDFPopupThumbnail p {
  font-size: 18px;
  line-height: 1.7;
}
.PDFPopup .PDFPopupDetails {
  width: 100%;
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  max-height: 38vh;
  min-height: 38vh;
  overflow-y: auto;
}
.PDFPopup .PDFPopupDetails h1 {
  font-size: 25px;
  font-weight: 600;
}
.PDFPopup .PDFPopupDetails .attr {
  margin-top: 15px;
}
.PDFPopup .PDFPopupDetails .attr span {
  font-size: 12px;
  font-weight: 500;
}
.PDFPopup .PDFPopupDetails .PDFPopupQuestion {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-top: 20px;
  border-top: 1px solid #eee;
  padding-top: 20px;
}
.PDFPopup .PDFPopupDetails .PDFPopupQuestion .viewPDFQuestion {
  padding: 10px 20px;
  background: #898AA6;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 500;
  width: -moz-fit-content;
  width: fit-content;
  cursor: pointer;
  color: white;
  transition: 0.3s;
}
.PDFPopup .PDFPopupDetails .PDFPopupQuestion .viewPDFQuestion:hover {
  transition: 0.3s;
  opacity: 0.7;
}
@media (max-width: 500px) {
  .PDFPopup .PDFPopupDetails .PDFPopupQuestion .viewPDFQuestion:hover {
    opacity: 1;
  }
}
.PDFPopup .PDFPopupDetails .PDFPopupQuestion .PDFPopupQuestionBox {
  width: 100%;
  background: #F9F9F9;
  border-radius: 10px;
  margin-top: 10px;
  overflow-y: auto;
  visibility: hidden;
  opacity: 0;
  padding: 15px 10px;
  max-height: 0px;
  transition: 0.5s ease-in-out;
}
@media (max-width: 500px) {
  .PDFPopup .PDFPopupDetails .PDFPopupQuestion .PDFPopupQuestionBox {
    background: #ededed;
  }
}
.PDFPopup .PDFPopupDetails .PDFPopupQuestion .PDFPopupQuestionBox ul {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.PDFPopup .PDFPopupDetails .PDFPopupQuestion .PDFPopupQuestionBox ul li {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 20px;
}
.PDFPopup .PDFPopupDetails .PDFPopupQuestion .PDFPopupQuestionBox ul li:nth-of-type(1) {
  margin-top: 0;
}
.PDFPopup .PDFPopupDetails .PDFPopupQuestion .PDFPopupQuestionBox ul li .PDFPopupQuestionIcon {
  width: 30px;
  height: 30px;
  border-radius: 50px;
  background: #E9DAC1;
  display: flex;
  justify-content: center;
  align-items: center;
  color: black;
  font-size: 12px;
  font-weight: 500;
}
.PDFPopup .PDFPopupDetails .PDFPopupQuestion .PDFPopupQuestionBox ul li .qn {
  background: #FFB3B3;
}
.PDFPopup .PDFPopupDetails .PDFPopupQuestion .PDFPopupQuestionBox ul li .ans {
  background: #CDF0EA;
}

.PDFPopup .PDFPopupDetails .PDFPopupQuestion .PDFPopupQuestionBox ul li .PDFPopupQuestionSection {
  width: calc(100% - 45px);
  display: flex;
  flex-direction: column;
}
.PDFPopup .PDFPopupDetails .PDFPopupQuestion .PDFPopupQuestionBox ul li .PDFPopupQuestionSection p {
  line-height: 1.5;
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 10px;
}
.PDFPopup .PDFPopupDetails .PDFPopupQuestion .PDFPopupQuestionBox ul li .PDFPopupQuestionSection .viewPDFBtn {
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 500;
  background: #3E6D9C;
  color: white;
  border-radius: 6px;
  cursor: pointer;
  width: -moz-fit-content;
  width: fit-content;
  transition: 0.3s;
}
.PDFPopup .PDFPopupDetails .PDFPopupQuestion .PDFPopupQuestionBox ul li .PDFPopupQuestionSection .viewPDFBtn:hover {
  transition: 0.3s;
  opacity: 0.7;
}
.PDFPopup .PDFPopupDetails .PDFPopupQuestion .PDFPopupQuestionBox ul li .viewPDFBtn {
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 500;
  background: #3E6D9C;
  color: white;
  border-radius: 6px;
  cursor: pointer;
  width: -moz-fit-content;
  width: fit-content;
  transition: 0.3s;
}
.PDFPopup .PDFPopupDetails .PDFPopupQuestion .PDFPopupQuestionBox ul li .viewPDFBtn:hover {
  transition: 0.3s;
  opacity: 0.7;
}

.PDFPopup .PDFPopupDetails .PDFPopupQuestion .PDFPopupQuestionBox ul li .viewPDFAnswer {
  width: calc(100% - 45px);
	display: flex;
	flex-direction :column;
	gap: 10px;
}
.PDFPopup .PDFPopupDetails .PDFPopupQuestion .PDFPopupQuestionBox ul li .viewPDFAnswer .viewPDFAnswerBtn {
  font-size: 12px;
  font-weight: 500;
  background: var(--secondaryColor);
  color: white;
  padding: 6px 16px;
  border-radius: 6px;
  width: -moz-fit-content;
  width: fit-content;
  cursor: pointer;
}
.PDFPopup .PDFPopupDetails .PDFPopupQuestion .PDFPopupQuestionBox ul li .viewPDFAnswer .viewPDFAnswerDetails {
  width: 100%;
  background: white;
  padding: 10px;
  padding-top: 40px;
  border-radius: 10px;
  position: relative;
  display: none;
}
.PDFPopup .PDFPopupDetails .PDFPopupQuestion .PDFPopupQuestionBox ul li .viewPDFAnswer .viewPDFAnswerDetails .closeViewPDFAnswerDetails {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 14px;
  cursor: pointer;
  background: #eee;
  border-radius: 50px;
  width: 22px;
  height: 22px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.PDFPopup .PDFPopupDetails .PDFPopupQuestion .PDFPopupQuestionBoxActive {
  max-height: 30vh;
  transition: 0.5s ease-in-out;
  visibility: visible;
  opacity: 1;
  margin-bottom: 30px;
}

.reactivatePopup {
  position: fixed;
  width: 600px;
  background: white;
  border-radius: 10px;
  padding: 20px;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  z-index: 160;
  display: none;
}
@media (max-width: 500px) {
  .reactivatePopup {
    width: 90%;
  }
}
.reactivatePopup .closeReactivatePopup {
  position: absolute;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #fff;
  right: 20px;
  top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.0784313725);
  cursor: pointer;
  transition: 0.3s;
}
@media (max-width: 500px) {
  .PDFPopup .closeReactivatePopup {
    top: 12px;
  }
}
.reactivatePopup .closeReactivatePopup:hover {
  transition: 0.3s;
  background: rgb(238, 119, 0);
  color: white;
}
.reactivatePopup form {
  width: 100%;
  display: flex;
  margin-top: 25px;
  flex-direction: column;
}
.reactivatePopup form h1 {
  font-size: 20px;
  font-weight: 500;
}
.reactivatePopup form .formGroup {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-top: 30px;
}
.reactivatePopup form .formGroup label {
  font-size: 14px;
  font-weight: 500;
}
.reactivatePopup form .formGroup input {
  width: 100%;
  height: 45px;
  border-radius: 5px;
  padding: 0px 20px;
  border: 1px solid #ccc;
  outline: none;
  background: white;
  margin-top: 5px;
}
.reactivatePopup form .formGroup input:focus {
  border: 1px solid var(--primaryColor);
}
.reactivatePopup .reactivatePopupLink{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.reactivatePopup .reactivatePopupLink p{
  font-size: 14px;
  margin-top: 5px;
}
.reactivatePopup .reactivatePopupLink a{
  font-size: 14px;
  text-decoration: none;
  background: #0070ff;
  color: white;
  text-decoration: none;
  padding: 7px 15px;
  border-radius: 5px;
  display: flex;
  transition: .3s;
}
.reactivatePopup .reactivatePopupLink a:hover{
  transition: .3s;
  opacity: .7;
}
.reactivatePopup form .formBtnArea {
  width: 100%;
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.reactivatePopup form .formBtnArea .closeReactivatePopup {
  flex: 0 0 48%;
  padding: 12px;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  background: #eee;
  transition: 0.3s;
}
.reactivatePopup form .formBtnArea .closeReactivatePopup:hover {
  opacity: 0.7;
  transition: 0.3s;
}
.reactivatePopup form .formBtnArea .submitReactivatePopup {
  flex: 0 0 48%;
  padding: 12px;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  background: var(--primaryColor);
  color: white;
  border: none;
  outline: none;
  transition: 0.3s;
}
.reactivatePopup form .formBtnArea .submitReactivatePopup:hover {
  opacity: 0.7;
  transition: 0.3s;
}

.canvas {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.canvas .canvasHead {
  width: 100%;
  height: 70px;
  background: white;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.031372549);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
}
@media (max-width: 480px) {
  .canvas .canvasHead {
    height: 60px;
  }
}
.canvas .canvasHead .canvasHeadLogo {
  float: left;
  height: 70px;
	width: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}
@media (max-width: 480px) {
  .canvas .canvasHead .canvasHeadLogo {
    height: 60px;
	width: 60px;
  }
}
.canvas .canvasHead .canvasHeadLogo img {
  width: 90%;
  height: 90%;
  -o-object-fit: contain;
     object-fit: contain;
}
.canvas .canvasHead .applicationSearch{
  display: flex;
  float: left;
  justify-content: center;
    align-items: center;
    height: 70px;
    margin-left: 100px;
}
@media(max-width:650px){
	.canvas .canvasHead .applicationSearch{
		position: fixed;
		width: 100%;
		background: white;
		margin-left: 0;
		left: 0;
		top: 60px;
		height: 60px;
		border-top: 1px solid #eeee;
		padding: 0px 5%;
	}
}
@media(max-width:650px){
	.canvas .canvasHead .applicationSearch input{
		width :100% !important; 
	}
}
.canvas .canvasHead .applicationSearch input{
  width: 200px;
  height: 40px;
  border: 1px solid #aaa;
  border-radius: 5px 0px 0px 5px;
  outline: none;
  padding: 0px 15px;
  font-size: 14px;
}
.canvas .canvasHead .applicationSearch button{
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 0px 5px 5px 0px;
  outline: none;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--primaryColor);
  color: white;
  font-size: 14px;
  cursor: pointer;
  transition: .3s;
}
.canvas .canvasHead .applicationSearch button:hover{
  transition: .3s;
  opacity: .7;
}
.canvas .canvasHead .navProfile {
  float: right;
  height: 70px;
  display: flex;
  align-items: center;
}
@media (max-width: 1024px) {
  .canvas .canvasHead .navProfile {
    display: none;
  }
}
.canvas .canvasHead .navProfile:hover .navProfileDropDownPopup {
  display: block;
  transition: 0s;
}
.canvas .canvasHead .navProfile .navProfileThumbnail {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: white;  
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.canvas .canvasHead .navProfile .navProfileThumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.canvas .canvasHead .navProfile .navProfileContent {
  margin-left: 10px;
  display: flex;
  align-items: center;
}
.canvas .canvasHead .navProfile .navProfileContent h4 {
  max-width: 180px;
  font-size: 18px;
  font-weight: 500;
  height: 25px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.canvas .canvasHead .navProfile .navProfileContent .profileDownIcon {
  margin-left: 10px;
  cursor: pointer;
}
.canvas .canvasHead .navProfile .navProfileContent .profileDownIcon span {
  font-size: 20px;
  margin-top: 5px;
  opacity: 0.7;
}
.canvas .canvasHead .navProfile .navProfileDropDownPopup {
  position: fixed;
  z-index: 20;
  right: 2.5%;
  top: 70px;
  background: white;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  width: 300px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.0235294118);
  border: 1px solid rgba(238, 238, 238, 0.4823529412);
  display: none;
  transition: 0s;
}
.canvas .canvasHead .navProfile .navProfileDropDownPopup ul {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.canvas .canvasHead .navProfile .navProfileDropDownPopup ul li {
  list-style: none;
}
.canvas .canvasHead .navProfile .navProfileDropDownPopup ul li:nth-of-type(1) a {
  border-top: none;
}
.canvas .canvasHead .navProfile .navProfileDropDownPopup ul li a {
  text-decoration: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  color: black;
  transition: 0.3s;
  border-top: 1px solid rgba(238, 238, 238, 0.4823529412);
}
.canvas .canvasHead .navProfile .navProfileDropDownPopup ul li a:hover {
  transition: 0.3s;
  background: rgba(238, 238, 238, 0.2941176471);
}
.canvas .canvasHead .navProfile .navProfileDropDownPopup ul li a .navLinkIcon span {
  font-size: 16px;
  color: rgb(140, 140, 140);
}
.canvas .canvasHead .navProfile .navProfileDropDownPopup ul li a p {
  font-size: 14px;
  width: calc(100% - 30px);
  font-weight: 500;
}
.canvas .canvasHead .navBar {
  display: none;
  height: 60px;
  justify-content: center;
  align-items: center;
  float: right;
}
@media (max-width: 1024px) {
  .canvas .canvasHead .navBar {
    display: flex;
  }
}
.canvas .canvasHead .navBar .navBarBox {
  width: 30px;
  display: flex;
  flex-direction: column;
}
.canvas .canvasHead .navBar .navBarBox span {
  width: 100%;
  height: 2.5px;
  background: black;
  border-radius: 5px;
}
.canvas .canvasBody {
  /*width: calc(100% - 310px);*/
  margin-top: 124px;
  /*margin-left: 310px;*/
	width :100%;
	padding-bottom: 100px;
}
@media (max-width: 1315px) {
  .canvas .canvasBody {
  margin-top: 80px;
  }
}
@media (max-width: 1024px) {
  .canvas .canvasBody {
    width: 100%;
    margin-left: 0px;
  }
}
@media (max-width: 480px) {
  .canvas .canvasBody {
    margin-top: 70px;
  }
}


.canvasBodyHead2{
	position: fixed;
    top: 60px;
    z-index: 10;
    width: 100% !important;
    background: rgb(246, 246, 246);
    padding: 10px 7.5%;
	left:0%;
}






.canvas .canvasBody .canvasBodyHead {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}
.canvas .canvasBody .canvasBodyHead .titleName {
  width: 100%;
  padding-right: 20px;
  font-size: 25px;
  font-weight: 600;
  height: 30px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
@media (max-width: 500px) {
  .canvas .canvasBody .canvasBodyHead .titleName {
    font-size: 18px;
    height: 20px;
  }
}
.canvas .canvasBody .canvasBodyHead .BtnArea {
  display: flex;
  align-items: center;
}
.canvas .canvasBody .canvasBodyHead .BtnArea .addBtn {
  text-decoration: none;
  padding: 10px 25px;
  background: var(--primaryColor);
  color: white;
  border-radius: 10px;
  display: flex;
  white-space: pre;
  font-size: 14px;
  font-weight: 500;
  transition: 0.3s;
}
.canvas .canvasBody .canvasBodyHead .BtnArea .addBtn:hover {
  transition: 0.3s;
  opacity: 0.7;
}
.canvas .canvasBody .canvasBodyHead .filterTable {
  margin-left: auto;
  display: flex;
  align-items: center;
}
.canvas .canvasBody .canvasBodyHead .filterTable .filterTableBtn {
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--fifthColor);
  color: white;
  font-size: 16px;
  border: none;
  outline: none;
  border-radius: 5px;
  margin-left: 10px;
  cursor: pointer;
  transition: 0.2s;
}
.canvas .canvasBody .canvasBodyHead .filterTable .filterTableBtn:hover {
  opacity: 0.7;
  transition: 0.2s;
}




.canvas .canvasBody .dashboardList {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
}
.canvas .canvasBody .dashboardList::after {
  content: "";
  height: 0;
  width: 24%;
}
@media (max-width: 1024px) {
  .canvas .canvasBody .dashboardList::after {
    width: 32%;
  }
}
.canvas .canvasBody .dashboardList .dummyDiv {
  flex: 0 0 24%;
  height: 0;
}
@media (max-width: 1024px) {
  .canvas .canvasBody .dashboardList .dummyDiv {
    flex: 0 0 32%;
  }
}
.canvas .canvasBody .dashboardList .dashboardListBox {
  flex: 0 0 48%;
  padding: 30px;
  background: var(--primaryColor);
  border-radius: 10px;
  margin-top: 20px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  border: 1px solid white;
  transition: 0.3s;
	position: relative;
	overflow: hidden;
	z-index:0;
}
.canvas .canvasBody .dashboardList .dashboardListBox::before{
	position: absolute;
	content: '';
	width: 200px;
	height: 200px;
	bottom: -50px;
	right: -100px;
	border-radius: 50%;
	background: var(--secondaryColor);
	z-index:-1;
	opacity: .2;
}
.canvas .canvasBody .dashboardList .dashboardListBox::after{
	position: absolute;
	content: '';
	width: 400px;
	height: 400px;
	bottom: -50px;
	right: -100px;
	border-radius: 50%;
	background: white;
	z-index:-1;
	opacity: .2;
}
.canvas .canvasBody .dashboardList .dashboardListBox:hover {
  transition: 0.3s;
  border: 1px solid #ccc;
}
.canvas .canvasBody .dashboardList .dashboardListBox:hover .dashboardListBoxIcon {
  background: var(--primaryColor);
  transition: 0.3s;
}
.canvas .canvasBody .dashboardList .dashboardListBox:hover .dashboardListBoxIcon span {
  color: white;
  transition: 0.3s;
}
/*@media (max-width: 1024px) {
  .canvas .canvasBody .dashboardList .dashboardListBox {
    flex: 0 0 32%;
  }
}*/
@media (max-width: 768px) {
  .canvas .canvasBody .dashboardList .dashboardListBox {
    padding: 20px;
  }
}
@media (max-width: 480px) {
  .canvas .canvasBody .dashboardList .dashboardListBox {
    flex: 100%;
  }
}
.canvas .canvasBody .dashboardList .dashboardListBox .dashboardListBoxIcon {
  width: 80px;
  height: 80px;
  background: var(--secondaryColor);
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .canvas .canvasBody .dashboardList .dashboardListBox .dashboardListBoxIcon {
    width: 40px;
  height: 40px;
  }
}
.canvas .canvasBody .dashboardList .dashboardListBox .dashboardListBoxIcon span {
  font-size: 35px;
  color: white;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .canvas .canvasBody .dashboardList .dashboardListBox .dashboardListBoxIcon span {
    font-size: 30px;
  }
}
.canvas .canvasBody .dashboardList .dashboardListBox h2 {
  font-size: 30px;
  font-weight: 500;
  margin-top: 15px;
  color: white;
}
@media (max-width: 768px) {
  .canvas .canvasBody .dashboardList .dashboardListBox h2 {
    font-size: 25px;
  }
}
.canvas .canvasBody .dateBoxList {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
}
.canvas .canvasBody .dateBoxList::after {
  content: "";
  height: 0;
  width: 24%;
}
.canvas .canvasBody .dateBoxList .dummyDiv {
  flex: 0 0 24%;
  height: 0;
}
@media (max-width: 768px) {
  .canvas .canvasBody .dateBoxList .dummyDiv {
    flex: 0 0 32%;
  }
}
.canvas .canvasBody .dateBoxList .dateBox {
  flex: 0 0 24%;
  text-decoration: none;
  padding: 20px;
  background: white;
  border-radius: 10px;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  border: 1px solid white;
  transition: 0.3s;
  position: relative;
  z-index: 0;
}
.canvas .canvasBody .dateBoxList .dateBox .dateBoxLink {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  text-decoration: none;
}
.canvas .canvasBody .dateBoxList .dateBox:hover {
  transition: 0.3s;
  border: 1px solid #ccc;
}
@media (max-width: 768px) {
  .canvas .canvasBody .dateBoxList .dateBox {
    flex: 0 0 32%;
  }
}
@media (max-width: 500px) {
  .canvas .canvasBody .dateBoxList .dateBox {
    flex: 100%;
  }
}
.canvas .canvasBody .dateBoxList .dateBox p {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  color: black;
}
.canvas .canvasBody .dateBoxList .dateBox p span {
  font-size: 14px;
  margin-right: 15px;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: #eee;
}
.canvas .canvasBody .dateBoxList .dateBox h2 {
  font-size: 25px;
  font-weight: 600;
  margin-top: 20px;
  color: black;
}
.canvas .canvasBody .dateBoxList .dateBox .dateBoxBtn {
  position: absolute;
  width: 25px;
  height: 30px;
  border: 1px solid #eee;
  border-radius: 5px;
  right: 10px;
  top: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  color: #6c6c6c;
  z-index: 1;
  cursor: pointer;
  transition: 0.3s;
}
.canvas .canvasBody .dateBoxList .dateBox .dateBoxBtn:hover {
  transition: 0.3s;
  background: #eee;
}
.canvas .canvasBody .dateBoxList .dateBox .dateBoxBtn .dateBoxDropdownMenu {
  position: absolute;
  right: 0;
  background: white;
  border-radius: 5px;
  border: 1px solid #eee;
  top: 100%;
  z-index: 2;
  display: none;
}
.canvas .canvasBody .dateBoxList .dateBox .dateBoxBtn .dateBoxDropdownMenu a {
  width: 100%;
  display: flex;
  text-decoration: none;
  padding: 8px 15px;
  color: black;
  font-size: 14px;
  font-weight: 500;
  transition: 0.3s;
}
.canvas .canvasBody .dateBoxList .dateBox .dateBoxBtn .dateBoxDropdownMenu a:hover {
  transition: 0.3s;
  background: rgba(238, 238, 238, 0.4784313725);
}
.note-editable1{
  background: white;
}
.canvas .canvasBody .emptyPage {
  width: 100%;
  min-height: 80vh;
  display: none;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.canvas .canvasBody .emptyPage .emptyPageThumbnail {
  width: 200px;
  height: 200px;
  border-radius: 10px;
  overflow: hidden;
}
@media (max-width: 500px) {
  .canvas .canvasBody .emptyPage .emptyPageThumbnail {
    width: 150px;
    height: 150px;
  }
}
.canvas .canvasBody .emptyPage .emptyPageThumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.canvas .canvasBody .emptyPage p {
  font-size: 20px;
  font-weight: 500;
  text-align: center;
  margin-top: 20px;
}
.canvas .canvasBody .canvasBreadcrumbs {
  width: 100%;
  display: flex;
  align-items: center;
  overflow-x: auto;
  margin-top: 10px;
}
.canvas .canvasBody .canvasBreadcrumbs::-webkit-scrollbar {
  width: 0px;
  height: 0px;
}
.canvas .canvasBody .canvasBreadcrumbs a {
  text-decoration: none;
  color: black;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  white-space: pre;
  opacity: 0.7;
}
@media (max-width: 480px) {
  .canvas .canvasBody .canvasBreadcrumbs a {
    font-size: 12px;
  }
}
.canvas .canvasBody .canvasBreadcrumbs a span {
  font-size: 14px;
  margin-right: 10px;
}
@media (max-width: 480px) {
  .canvas .canvasBody .canvasBreadcrumbs a span {
    font-size: 12px;
  }
}
.canvas .canvasBody .canvasBreadcrumbs p {
  font-size: 14px;
  font-weight: 500;
  margin: 0px 15px;
  opacity: 0.5;
}
@media (max-width: 480px) {
  .canvas .canvasBody .canvasBreadcrumbs p {
    font-size: 12px;
  }
}
.canvas .canvasBody .canvasForm {
  width: 100%;
}
.canvas .canvasBody .canvasForm form {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.canvas .canvasBody .canvasForm form .canvasFormBox {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
  background: white;
  margin-top: 10px;
  padding: 0px 30px 30px 30px;
  border-radius: 10px;
}
.canvas .canvasBody .canvasForm form .canvasFormBox:nth-of-type(1) {
  margin-top: 20px;
}
@media (max-width: 500px) {
  .canvas .canvasBody .canvasForm form .canvasFormBox {
    padding: 0px 20px 20px 20px;
  }
}
.canvas .canvasBody .canvasForm form .canvasFormBox::after {
  content: "";
  height: 0;
  width: 24%;
}
@media (max-width: 1024px) {
  .canvas .canvasBody .canvasForm form .canvasFormBox::after {
    width: 32%;
  }
}
.canvas .canvasBody .canvasForm form .canvasFormBox .dummyDiv {
  flex: 0 0 24%;
  height: 0;
}
@media (max-width: 1024px) {
  .canvas .canvasBody .canvasForm form .canvasFormBox .dummyDiv {
    flex: 0 0 32%;
  }
}
.canvas .canvasBody .canvasForm form .canvasFormBox .formGroup {
  flex: 0 0 24%;
  display: flex;
  flex-direction: column;
  margin-top: 30px;
}
@media (max-width: 1024px) {
  .canvas .canvasBody .canvasForm form .canvasFormBox .formGroup {
    flex: 0 0 32%;
  }
}
@media (max-width: 768px) {
  .canvas .canvasBody .canvasForm form .canvasFormBox .formGroup {
    flex: 0 0 48%;
  }
}
@media (max-width: 500px) {
  .canvas .canvasBody .canvasForm form .canvasFormBox .formGroup {
    flex: 100%;
    margin-top: 20px;
  }
}
.canvas .canvasBody .canvasForm form .canvasFormBox .formGroup label {
  font-size: 14px;
  font-weight: 500;
}
.canvas .canvasBody .canvasForm form .canvasFormBox .formGroup input {
  width: 100%;
  height: 45px;
  border-radius: 5px;
  padding: 0px 20px;
  border: 1px solid #ccc;
  background: white;
  outline: none;
  margin-top: 5px;
}
.canvas .canvasBody .canvasForm form .canvasFormBox .formGroup input:focus {
  border: 1px solid var(--primaryColor);
}
.canvas .canvasBody .canvasForm form .canvasFormBox .formGroup .formPassword {
  position: relative;
}
.canvas .canvasBody .canvasForm form .canvasFormBox .formGroup .formPassword .togglePassword {
  position: absolute;
  top: 15px;
  right: 15px;
  cursor: pointer;
  color: var(--primaryColor);
  font-size: 20px;
}
.canvas .canvasBody .canvasForm form .canvasFormBox .formGroup .custom-select{
  position: relative;
	width :100%;
}
.canvas .canvasBody .canvasForm form .canvasFormBox .formGroup .custom-select .select-box {
  position: relative;
  display: flex;
  cursor: pointer;
	width :100%;
	align-items: center;
  height: 45px;
  border-radius: 5px;
  padding: 0px 20px;
  border: 1px solid #ccc;
  background: white;
  outline: none;
  margin-top: 5px;
}
.canvas .canvasBody .canvasForm form .canvasFormBox .formGroup .custom-select .selected-items {
  display: inline-block;
	width :100%;
  overflow: hidden;
  text-overflow: ellipsis;
}
.canvas .canvasBody .canvasForm form .canvasFormBox .formGroup .custom-select .fa-caret-down {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}
.canvas .canvasBody .canvasForm form .canvasFormBox .formGroup .custom-select .select-options {
  position: absolute;
  z-index: 1;
  padding: 0;
  margin: 0;
  border-radius: 5px;
  background: #fff;
  border: 1px solid #ccc;
  display: none;
	width :100%;
	overflow: hidden;
  max-height: 300px;
  overflow-y: auto;
}
.canvas .canvasBody .canvasForm form .canvasFormBox .formGroup .custom-select .select-options li {
  list-style: none;
	padding: 5px 5px 0px 5px;
}
.canvas .canvasBody .canvasForm form .canvasFormBox .formGroup .custom-select .select-options li input[type="checkbox"] {
  margin-right: 5px;
	display: none;
}
.canvas .canvasBody .canvasForm form .canvasFormBox .formGroup .custom-select .select-options li label{
	cursor: pointer;
	width :100%;
	padding: 10px;
	display :flex;
	transition: .2s;
	border-radius: 5px;
}
.canvas .canvasBody .canvasForm form .canvasFormBox .formGroup .custom-select .select-options li label:hover{
	transition: .2s;
	background: #eee;
}
.canvas .canvasBody .canvasForm form .canvasFormBox .formGroup .custom-select .select-options li input:checked + label{
	background: var(--primaryColor);
	color: white;
}
.customCheckboxMain{
  width: 100%;
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 15px;
}
.customCheckboxMain .customCheckbox{
  display: flex;
}
.customCheckboxMain .customCheckbox input{
  display: none;
}
.customCheckboxMain .customCheckbox label{
  display: flex;
  position: relative;
  align-items: center;
  font-size: 14px;
  padding-left: 25px;
  cursor: pointer;
}
.customCheckboxMain .customCheckbox label::after{
  position: absolute;
  content: '';
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 2px solid blue;
  left: 0;
}
.customCheckboxMain .customCheckbox label::before{
  position: absolute;
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: blue;
  left: 4px;
  display: none;
}
.customCheckboxMain .customCheckbox input:checked ~ label::before{
  display: block;
}




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





.canvas .canvasBody .canvasForm form .canvasFormBox .formBtnArea {
  width: 100%;
  margin-top: 30px;
  border-top: 1px solid #eee;
  padding-top: 30px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
@media (max-width: 500px) {
  .canvas .canvasBody .canvasForm form .canvasFormBox .formBtnArea {
    padding-top: 20px;
    margin-top: 20px;
  }
}
.canvas .canvasBody .canvasForm form .canvasFormBox .formBtnArea .formSaveBtn {
  padding: 12px 30px;
  background: var(--primaryColor);
  color: white;
  font-size: 16px;
  border-radius: 10px;
  cursor: pointer;
  border: none;
  outline: none;
  font-weight: 500;
  transition: 0.3s;
}
@media (max-width: 500px) {
  .canvas .canvasBody .canvasForm form .canvasFormBox .formBtnArea .formSaveBtn {
    width: 100%;
    font-size: 18px;
  }
}
.canvas .canvasBody .canvasForm form .canvasFormBox .formBtnArea .formSaveBtn:hover {
  transition: 0.3s;
  opacity: 0.7;
}
.canvas .canvasBody .canvasForm form .canvasFormBox .audioFileUpload {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-top: 30px;
}
@media (max-width: 500px) {
  .canvas .canvasBody .canvasForm form .canvasFormBox .audioFileUpload {
    margin-top: 20px;
  }
}
.canvas .canvasBody .canvasForm form .canvasFormBox .audioFileUpload label {
  font-size: 14px;
  font-weight: 500;
}
.canvas .canvasBody .canvasForm form .canvasFormBox .audioFileUpload .audioFileUploadBox {
  width: 100%;
  background: #F9F5EB;
  border-radius: 10px;
  padding: 40px 20px;
  margin-top: 5px;
  border: 2px dashed #ffccae;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transition: 0.3s;
}
.canvas .canvasBody .canvasForm form .canvasFormBox .audioFileUpload .audioFileUploadBox:hover {
  border: 2px dashed var(--primaryColor);
  background: #E5E0FF;
  transition: 0.3s;
}
.canvas .canvasBody .canvasForm form .canvasFormBox .audioFileUpload .audioFileUploadBox:hover .audioFileUploadBoxIcon {
  background: var(--primaryColor);
  transition: 0.3s;
}
.canvas .canvasBody .canvasForm form .canvasFormBox .audioFileUpload .audioFileUploadBox:hover .audioFileUploadBoxIcon span {
  color: white;
  transition: 0.3s;
}
@media (max-width: 500px) {
  .canvas .canvasBody .canvasForm form .canvasFormBox .audioFileUpload .audioFileUploadBox {
    padding: 20px;
  }
}
.canvas .canvasBody .canvasForm form .canvasFormBox .audioFileUpload .audioFileUploadBox input {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 10;
  cursor: pointer;
  opacity: 0;
}
.canvas .canvasBody .canvasForm form .canvasFormBox .audioFileUpload .audioFileUploadBox p {
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  margin-top: 20px;
}
@media (max-width: 500px) {
  .canvas .canvasBody .canvasForm form .canvasFormBox .audioFileUpload .audioFileUploadBox p {
    font-size: 14px;
  }
}
.canvas .canvasBody .canvasForm form .canvasFormBox .audioFileUpload .audioFileUploadBox .audioFileUploadBoxIcon {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ffccae;
  border-radius: 10px;
  transition: 0.3s;
}
.canvas .canvasBody .canvasForm form .canvasFormBox .audioFileUpload .audioFileUploadBox .audioFileUploadBoxIcon span {
  font-size: 25px;
  color: #EA5455;
  transition: 0.3s;
}
.canvas .canvasBody .canvasForm form .canvasFormBox .audioFileUpload .audioFileUploadBox .fileName {
  font-size: 14px;
  font-weight: 500;
  margin-top: 20px;
  text-align: center;
  color: var(--secondaryTextColor);
  height: 20px;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.canvas .canvasBody .canvasForm form .canvasFormBox .audioFileUpload .audioPlayer {
  width: 100%;
  margin-top: 10px;
}
.canvas .canvasBody .canvasForm form .canvasFormBox .audioFileUpload .audioPlayer audio {
  width: 100%;
}
.canvas .canvasBody .canvasForm form .canvasFormBox .pdfFileUpload {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-top: 30px;
}
@media (max-width: 500px) {
  .canvas .canvasBody .canvasForm form .canvasFormBox .pdfFileUpload {
    margin-top: 20px;
  }
}
.canvas .canvasBody .canvasForm form .canvasFormBox .pdfFileUpload label {
  font-size: 14px;
  font-weight: 500;
}
.canvas .canvasBody .canvasForm form .canvasFormBox .pdfFileUpload .pdfFileUploadBox {
  width: 100%;
  background: #F9F5EB;
  border-radius: 10px;
  padding: 40px 20px;
  margin-top: 5px;
  border: 2px dashed #ffccae;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transition: 0.3s;
}
.canvas .canvasBody .canvasForm form .canvasFormBox .pdfFileUpload .pdfFileUploadBox:hover {
  border: 2px dashed var(--primaryColor);
  background: #E5E0FF;
  transition: 0.3s;
}
.canvas .canvasBody .canvasForm form .canvasFormBox .pdfFileUpload .pdfFileUploadBox:hover .pdfFileUploadBoxIcon {
  background: var(--primaryColor);
  transition: 0.3s;
}
.canvas .canvasBody .canvasForm form .canvasFormBox .pdfFileUpload .pdfFileUploadBox:hover .pdfFileUploadBoxIcon span {
  color: white;
  transition: 0.3s;
}
@media (max-width: 500px) {
  .canvas .canvasBody .canvasForm form .canvasFormBox .pdfFileUpload .pdfFileUploadBox {
    padding: 20px;
  }
}
.canvas .canvasBody .canvasForm form .canvasFormBox .pdfFileUpload .pdfFileUploadBox input {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 10;
  cursor: pointer;
  opacity: 0;
}
.canvas .canvasBody .canvasForm form .canvasFormBox .pdfFileUpload .pdfFileUploadBox p {
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  margin-top: 20px;
}
@media (max-width: 500px) {
  .canvas .canvasBody .canvasForm form .canvasFormBox .pdfFileUpload .pdfFileUploadBox p {
    font-size: 14px;
  }
}
.canvas .canvasBody .canvasForm form .canvasFormBox .pdfFileUpload .pdfFileUploadBox .pdfFileUploadBoxIcon {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ffccae;
  border-radius: 10px;
  transition: 0.3s;
}
.canvas .canvasBody .canvasForm form .canvasFormBox .pdfFileUpload .pdfFileUploadBox .pdfFileUploadBoxIcon span {
  font-size: 25px;
  color: #EA5455;
  transition: 0.3s;
}
.canvas .canvasBody .canvasForm form .canvasFormBox .pdfFileUpload .pdfFileUploadBox .pdfFileName {
  font-size: 14px;
  font-weight: 500;
  margin-top: 20px;
  text-align: center;
  color: var(--secondaryTextColor);
  height: 20px;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.canvas .canvasBody .canvasForm form .canvasFormBox .pdfFileUpload .pdfFileList {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.canvas .canvasBody .canvasForm form .canvasFormBox .pdfFileUpload .pdfFileList .pdfFileBox {
  width: 100px;
  background: #FEFBE9;
  border-radius: 10px;
  margin-top: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  flex-direction: column;
  margin-right: 10px;
  position: relative;
}
.canvas .canvasBody .canvasForm form .canvasFormBox .pdfFileUpload .pdfFileList .pdfFileBox .closePdfFileBox {
  position: absolute;
  width: 25px;
  height: 25px;
  border-radius: 50px;
  background: white;
  border: 1px solid #eee;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  cursor: pointer;
  top: -5px;
  right: -5px;
  z-index: 2;
  transition: 0.3s;
}
.canvas .canvasBody .canvasForm form .canvasFormBox .pdfFileUpload .pdfFileList .pdfFileBox .closePdfFileBox:hover {
  transition: 0.3s;
  background: #EA5455;
  color: white;
}
.canvas .canvasBody .canvasForm form .canvasFormBox .pdfFileUpload .pdfFileList .pdfFileBox img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.canvas .canvasBody .canvasForm form .canvasFormBox .pdfFileUpload .pdfFileList .pdfFileBox .pdfFileName {
  font-size: 14px;
  font-weight: 500;
  margin-top: 10px;
  height: 22px;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.canvas .canvasBody .canvasForm form .canvasFormBox .dargFileDivActive {
  border: 2px dashed var(--primaryColor) !important;
  background: #E5E0FF !important;
  transition: 0.3s !important;
}
.canvas .canvasBody .canvasForm form .canvasFormBox .dargFileDivActive .fileUploadBoxIcon {
  background: var(--primaryColor) !important;
  transition: 0.3s !important;
}
.canvas .canvasBody .canvasForm form .canvasFormBox .dargFileDivActive .fileUploadBoxIcon span {
  color: white !important;
  transition: 0.3s !important;
}
.canvas .canvasBody .canvasForm form .canvasFormBox .formGroupTextarea {
  flex: 100%;
  display: flex;
  flex-direction: column;
  margin-top: 30px;
}
@media (max-width: 1024px) {
  .canvas .canvasBody .canvasForm form .canvasFormBox .formGroupTextarea {
    flex: 0 0 32%;
  }
}
@media (max-width: 768px) {
  .canvas .canvasBody .canvasForm form .canvasFormBox .formGroupTextarea {
    flex: 0 0 48%;
  }
}
@media (max-width: 500px) {
  .canvas .canvasBody .canvasForm form .canvasFormBox .formGroupTextarea {
    flex: 100%;
    margin-top: 20px;
  }
}
.canvas .canvasBody .canvasForm form .canvasFormBox .formGroupTextarea label {
  font-size: 14px;
  font-weight: 500;
}
.canvas .canvasBody .canvasForm form .canvasFormBox .formGroupTextarea textarea {
  width: 100%;
  height: 100px;
  border-radius: 5px;
  padding: 10px 20px;
  border: 1px solid #ccc;
  outline: none;
  margin-top: 5px;
}
.canvas .canvasBody .canvasForm form .canvasFormBox .formGroupTextarea textarea:focus {
  border: 1px solid var(--primaryColor);
}
.canvas .canvasBody .canvasForm form .canvasFormBox .formGroupTextarea .note-editor {
  margin-top: 5px;
}
.canvas .canvasBody .canvasForm form .canvasFormBox .canvasFormBoxHead {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 20px;
  border-bottom: 1px solid #eee;
  padding-bottom: 20px;
}
.canvas .canvasBody .canvasForm form .canvasFormBox .canvasFormBoxHead .addMoreBtn {
  padding: 10px 20px;
  background: #59CE8F;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 500;
  color: white;
  cursor: pointer;
  transition: 0.3s;
}
.canvas .canvasBody .canvasForm form .canvasFormBox .canvasFormBoxHead .addMoreBtn:hover {
  transition: 0.3s;
  opacity: 0.7;
}
.canvas .canvasBody .canvasForm form .canvasFormBox .templateList {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.canvas .canvasBody .canvasForm form .canvasFormBox .templateList .templateListBox {
  width: 100%;
  padding: 10px;
  background: #E8F9FD;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  margin-top: 10px;
}
.canvas .canvasBody .canvasForm form .canvasFormBox .templateList .templateListBox .templateListBoxFooter {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 10px;
}
.canvas .canvasBody .canvasForm form .canvasFormBox .templateList .templateListBox .templateListBoxFooter .closeTemplateBtn {
  padding: 10px 20px;
  background: #EB1D36;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 500;
  color: white;
  cursor: pointer;
  transition: 0.3s;
}
.canvas .canvasBody .canvasForm form .canvasFormBox .templateList .templateListBox .templateListBoxFooter .closeTemplateBtn:hover {
  transition: 0.3s;
  opacity: 0.7;
}
.canvas .canvasBody .materialList {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
}
.canvas .canvasBody .materialList::after {
  content: "";
  height: 0;
  width: 24%;
}
.canvas .canvasBody .materialList .dummyDiv {
  flex: 0 0 24%;
  height: 0;
}
@media (max-width: 768px) {
  .canvas .canvasBody .materialList .dummyDiv {
    flex: 0 0 32%;
  }
}
.canvas .canvasBody .materialList .materialBox {
  flex: 0 0 24%;
  text-decoration: none;
  padding: 20px;
  background: white;
  border-radius: 10px;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  border: 1px solid white;
  transition: 0.3s;
}
.canvas .canvasBody .materialList .materialBox:hover {
  transition: 0.3s;
  border: 1px solid #ccc;
}
@media (max-width: 768px) {
  .canvas .canvasBody .materialList .materialBox {
    flex: 0 0 32%;
  }
}
@media (max-width: 480px) {
  .canvas .canvasBody .materialList .materialBox {
    flex: 0 0 48%;
    padding: 10px;
  }
}
.canvas .canvasBody .materialList .materialBox .courseMaterialBoxThumbnail {
  width: 100%;
  height: 170px;
}
@media (max-width: 480px) {
  .canvas .canvasBody .materialList .materialBox .courseMaterialBoxThumbnail {
    height: 150px;
  }
}
.canvas .canvasBody .materialList .materialBox .courseMaterialBoxThumbnail video {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.canvas .canvasBody .materialList .materialBox .courseMaterialBoxDetails {
  width: 100%;
  padding: 14px;
  margin-top: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: rgba(238, 238, 238, 0.3019607843);
  border-radius: 10px;
  transition: 0.3s;
}
.canvas .canvasBody .materialList .materialBox .courseMaterialBoxDetails p {
  font-size: 18px;
  font-weight: 500;
  color: black;
  text-align: center;
  transition: 0.3s;
}
@media (max-width: 480px) {
  .canvas .canvasBody .materialList .materialBox .courseMaterialBoxDetails p {
    font-size: 16px;
  }
}
.canvas .canvasBody .courseCaseList {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
}
.canvas .canvasBody .courseCaseList::after {
  content: "";
  height: 0;
  width: 24%;
}
.canvas .canvasBody .courseCaseList .dummyDiv {
  flex: 0 0 24%;
  height: 0;
}
@media (max-width: 1024px) {
  .canvas .canvasBody .courseCaseList .dummyDiv {
    flex: 0 0 32%;
  }
}
.canvas .canvasBody .courseCaseList .courseCaseBox {
  flex: 0 0 24%;
  text-decoration: none;
  padding: 20px;
  background: white;
  border-radius: 10px;
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid white;
  transition: 0.3s;
}
.canvas .canvasBody .courseCaseList .courseCaseBox:hover {
  transition: 0.3s;
  border: 1px solid #ccc;
}
@media (max-width: 1024px) {
  .canvas .canvasBody .courseCaseList .courseCaseBox {
    flex: 0 0 32%;
  }
}
@media (max-width: 768px) {
  .canvas .canvasBody .courseCaseList .courseCaseBox {
    flex: 0 0 48%;
  }
}
@media (max-width: 480px) {
  .canvas .canvasBody .courseCaseList .courseCaseBox {
    flex: 100%;
  }
}
.canvas .canvasBody .courseCaseList .courseCaseBox .courseCaseBoxIcon {
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  border: 1px solid #ccc;
  overflow: hidden;
}
.canvas .canvasBody .courseCaseList .courseCaseBox .courseCaseBoxIcon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.canvas .canvasBody .courseCaseList .courseCaseBox p {
  font-size: 20px;
  font-weight: 500;
  color: black;
  width: calc(100% - 80px);
}

.canvas .canvasBody .dateBoxList .courseCategory{
	width: 100%;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.canvas .canvasBody .dateBoxList .courseCategory .dummyDiv{
	flex: 0 0 18%;
	height: 0;
}
@media(max-width:1800px){
	.canvas .canvasBody .dateBoxList .courseCategory .dummyDiv{
		flex: 0 0 24%;
	}
}
@media(max-width:1024px){
	.canvas .canvasBody .dateBoxList .courseCategory .dummyDiv{
		flex: 0 0 32%;
	}
}
@media(max-width:768px){
	.canvas .canvasBody .dateBoxList .courseCategory .dummyDiv{
		flex: 0 0 48%;
	}
}
.canvas .canvasBody .dateBoxList .courseCategory .courseCategoryBox{
	flex: 0 0 18%;
	text-decoration: none;
	border: 1px solid #eee;
	border-radius: 10px;
	padding: 20px;
	margin-top: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	position: relative;
	background: white;
	transition: .3s;
}
.canvas .canvasBody .dateBoxList .courseCategory .courseCategoryBox:hover{
	border: 1px solid #000;
	transition: .3s;
}
@media(max-width:1800px){
	.canvas .canvasBody .dateBoxList .courseCategory .courseCategoryBox{
		flex: 0 0 24%;
	}
}
@media(max-width:1024px){
	.canvas .canvasBody .dateBoxList .courseCategory .courseCategoryBox{
		flex: 0 0 32%;
	}
}
@media(max-width:768px){
	.canvas .canvasBody .dateBoxList .courseCategory .courseCategoryBox{
		flex: 0 0 48%;
	}
}
@media(max-width:480px){
	.canvas .canvasBody .dateBoxList .courseCategory .courseCategoryBox{
		flex: 100%;
	}
}
.courseCategoryBoxLink{
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
}
.audioSection .courseCategoryIcon{
	background: #c8f8ff !important;
}
.videoSection .courseCategoryIcon{
	background: #0dff003d !important;
}
.PDFSection .courseCategoryIcon{
	background: #ff606036 !important;
}
.canvas .canvasBody .dateBoxList .courseCategory .courseCategoryBox .courseCategoryIcon{
	position: absolute;
	left: 20px;
	top: 20px;
	width: 30px;
	height: 30px;
	border-radius: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	color: black;
	background: #c8f8ff;
	z-index: 2;
}
.canvas .canvasBody .dateBoxList .courseCategory .courseCategoryBox .courseCategoryIcon span{
	font-size: 18px;
}
.canvas .canvasBody .dateBoxList .courseCategory .courseCategoryBox .courseCategoryBoxIcon{
	width: 100%;
	height: 80px;
}
@media(max-width:768px){
	.canvas .canvasBody .dateBoxList .courseCategory .courseCategoryBox .courseCategoryBoxIcon{
		height: 60px;
	}
}
.canvas .canvasBody .dateBoxList .courseCategory .courseCategoryBox .courseCategoryBoxIcon img{
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.canvas .canvasBody .dateBoxList .courseCategory .courseCategoryBox .courseCategoryBoxContent{
	width: 100%;
	padding: 10px;
	border-radius: 10px;
	margin-top: 20px;
	background: #eeeeee4d;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}
.canvas .canvasBody .dateBoxList .courseCategory .courseCategoryBox p{
	color: black;
	font-size: 16px;
	font-weight: 500;
	text-align: center !important;
	overflow: hidden;
	height: 20px;
	width: 100%;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
}

.canvas .canvasBody .dateBoxList .courseCategory .dateBoxBtn {
  position: absolute;
  width: 25px;
  height: 25px;
  border: 1px solid #eee;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  background: white;
  color: #6c6c6c;
  z-index: 1;
  cursor: pointer;
  transition: 0.3s;
  right: 20px;
  top: 10px;
}
@media (max-width: 500px) {
  .canvas .canvasBody .dateBoxList .courseCategory .dateBoxBtn {
    right: 10px;
  }
}
.canvas .canvasBody .dateBoxList .courseCategory .dateBoxBtn:hover {
  transition: 0.3s;
  background: #eee;
}
.canvas .canvasBody .dateBoxList .courseCategory .dateBoxBtn .dateBoxDropdownMenu {
  position: absolute;
  right: 0;
  background: white;
  border-radius: 5px;
  border: 1px solid #eee;
  top: 100%;
  z-index: 2;
  display: none;
}
.canvas .canvasBody .dateBoxList .courseCategory .dateBoxBtn .dateBoxDropdownMenu a {
  width: 100%;
  display: flex;
  text-decoration: none;
  padding: 8px 15px;
  color: black;
  font-size: 14px;
  font-weight: 500;
  transition: 0.3s;
}
.canvas .canvasBody .dateBoxList .courseCategory .dateBoxBtn .dateBoxDropdownMenu a:hover {
  transition: 0.3s;
  background: rgba(238, 238, 238, 0.4784313725);
}

.canvas .canvasBody .audioSection {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
  padding-bottom: 50px;
}
.canvas .canvasBody .audioSection::after {
  content: "";
  height: 0;
  width: 19%;
}
@media (max-width: 1024px) {
  .canvas .canvasBody .audioSection::after {
    width: 24%;
  }
}
@media (max-width: 768px) {
  .canvas .canvasBody .audioSection::after {
    width: 32%;
  }
}
@media (max-width: 480px) {
  .canvas .canvasBody .audioSection::after {
    width: 48%;
  }
}
.canvas .canvasBody .audioSection .dummyDiv {
  flex: 0 0 19%;
}
@media (max-width: 1024px) {
  .canvas .canvasBody .audioSection .dummyDiv {
    flex: 0 0 24%;
  }
}
@media (max-width: 768px) {
  .canvas .canvasBody .audioSection .dummyDiv {
    flex: 0 0 32%;
  }
}
@media (max-width: 480px) {
  .canvas .canvasBody .audioSection .dummyDiv {
    flex: 0 0 48%;
  }
}
.canvas .canvasBody .audioSection .courseCaseBox {
  flex: 0 0 19%;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  border-radius: 10px;
  cursor: pointer;
  border: 1px solid #eee;
  background: white;
  position: relative;
  z-index: 0;
}
.canvas .canvasBody .audioSection .courseCaseBox:hover .courseCaseBoxAudioBtn {
  transition: 0.3s;
  border: 2px solid var(--primaryColor);
  background: white;
}
.canvas .canvasBody .audioSection .courseCaseBox:hover .courseCaseBoxAudioBtn span {
  transition: 0.3s;
  color: var(--primaryColor);
}
@media (max-width: 1024px) {
  .canvas .canvasBody .audioSection .courseCaseBox {
    flex: 0 0 24%;
  }
}
@media (max-width: 768px) {
  .canvas .canvasBody .audioSection .courseCaseBox {
    flex: 0 0 32%;
  }
}
@media (max-width: 480px) {
  .canvas .canvasBody .audioSection .courseCaseBox {
    flex: 0 0 48%;
    padding: 10px;
  }
}
.canvas .canvasBody .audioSection .courseCaseBox .dateBoxBtn {
  position: absolute;
  width: 25px;
  height: 25px;
  border: 1px solid #eee;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  background: white;
  color: #6c6c6c;
  z-index: 1;
  cursor: pointer;
  transition: 0.3s;
  right: 20px;
  top: 10px;
}
@media (max-width: 500px) {
  .canvas .canvasBody .audioSection .courseCaseBox .dateBoxBtn {
    right: 10px;
  }
}
.canvas .canvasBody .audioSection .courseCaseBox .dateBoxBtn:hover {
  transition: 0.3s;
  background: #eee;
}
.canvas .canvasBody .audioSection .courseCaseBox .dateBoxBtn .dateBoxDropdownMenu {
  position: absolute;
  right: 0;
  background: white;
  border-radius: 5px;
  border: 1px solid #eee;
  top: 100%;
  z-index: 2;
  display: none;
}
.canvas .canvasBody .audioSection .courseCaseBox .dateBoxBtn .dateBoxDropdownMenu a {
  width: 100%;
  display: flex;
  text-decoration: none;
  padding: 8px 15px;
  color: black;
  font-size: 14px;
  font-weight: 500;
  transition: 0.3s;
}
.canvas .canvasBody .audioSection .courseCaseBox .dateBoxBtn .dateBoxDropdownMenu a:hover {
  transition: 0.3s;
  background: rgba(238, 238, 238, 0.4784313725);
}
.canvas .canvasBody .audioSection .courseCaseBox .audioPlayBtnBox {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
.canvas .canvasBody .audioSection .courseCaseBox .courseCaseBoxAudioBtn {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  padding: 20px;
  border-radius: 10px;
  transition: 0.3s;
  background: #FEBE8C;
  border: 2px solid #FEBE8C;
  margin-top: 20px;
}
.canvas .canvasBody .audioSection .courseCaseBox .courseCaseBoxAudioBtn span {
  font-size: 5em;
  color: #fff;
}
@media (max-width: 1800px) {
  .canvas .canvasBody .audioSection .courseCaseBox .courseCaseBoxAudioBtn span {
    font-size: 4em;
  }
}
@media (max-width: 500px) {
  .canvas .canvasBody .audioSection .courseCaseBox .courseCaseBoxAudioBtn {
    margin-top: 30px;
  }
}
.canvas .canvasBody .audioSection .courseCaseBox p {
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  margin-top: 20px;
  max-height: 25px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
@media (max-width: 1800px) {
  .canvas .canvasBody .audioSection .courseCaseBox p {
    font-size: 16px;
    max-height: 20px;
  }
}
@media (max-width: 500px) {
  .canvas .canvasBody .audioSection .courseCaseBox p {
    margin-top: 15px;
  }
}
.canvas .canvasBody .audioSection .courseCaseBox .questions {
  padding: 8px 20px;
  font-size: 12px;
  font-weight: 500;
  border-radius: 50px;
  cursor: pointer;
  margin-top: 15px;
  background: rgba(238, 238, 238, 0.737254902);
  transition: 0.3s;
  display: none;
}
@media (max-width: 1800px) {
  .canvas .canvasBody .audioSection .courseCaseBox .questions {
    padding: 9px 25px;
  }
}
.canvas .canvasBody .audioSection .courseCaseBox .questions:hover {
  background: var(--primaryColor);
  transition: 0.3s;
  color: white;
}
.canvas .canvasBody .videoSection {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
  padding-bottom: 50px;
}
.canvas .canvasBody .videoSection::after {
  content: "";
  height: 0;
  width: 19%;
}
@media (max-width: 1024px) {
  .canvas .canvasBody .videoSection::after {
    width: 32%;
  }
}
@media (max-width: 768px) {
  .canvas .canvasBody .videoSection::after {
    flex: 48%;
  }
}
@media (max-width: 480px) {
  .canvas .canvasBody .videoSection::after {
    width: 100%;
  }
}
.canvas .canvasBody .videoSection .dummyDiv {
  flex: 0 0 19%;
}
@media (max-width: 1024px) {
  .canvas .canvasBody .videoSection .dummyDiv {
    flex: 0 0 32%;
  }
}
@media (max-width: 768px) {
  .canvas .canvasBody .videoSection .dummyDiv {
    flex: 0 0 48%;
  }
}
@media (max-width: 480px) {
  .canvas .canvasBody .videoSection .dummyDiv {
    flex: 100%;
  }
}
.canvas .canvasBody .videoSection .courseCaseBox {
  flex: 0 0 19%;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
  border-radius: 10px;
  cursor: pointer;
  border: 1px solid #eee;
  background: white;
  position: relative;
  z-index: 0;
}
@media (max-width: 1024px) {
  .canvas .canvasBody .videoSection .courseCaseBox {
    flex: 0 0 32%;
  }
}
@media (max-width: 768px) {
  .canvas .canvasBody .videoSection .courseCaseBox {
    flex: 0 0 48%;
  }
}
@media (max-width: 480px) {
  .canvas .canvasBody .videoSection .courseCaseBox {
    flex: 100%;
    padding: 10px;
  }
}
.canvas .canvasBody .videoSection .courseCaseBox:hover .courseCaseBoxAudioBtn {
  transition: 0.3s;
  border: 2px solid var(--primaryColor);
  background: white;
}
.canvas .canvasBody .videoSection .courseCaseBox:hover .courseCaseBoxAudioBtn span {
  transition: 0.3s;
  color: var(--primaryColor);
}
.canvas .canvasBody .videoSection .courseCaseBox .dateBoxBtn {
  position: absolute;
  width: 25px;
  height: 25px;
  border: 1px solid #eee;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  background: white;
  color: #6c6c6c;
  z-index: 1;
  cursor: pointer;
  transition: 0.3s;
  right: 20px;
  top: 10px;
}
@media (max-width: 500px) {
  .canvas .canvasBody .videoSection .courseCaseBox .dateBoxBtn {
    right: 10px;
  }
}
.canvas .canvasBody .videoSection .courseCaseBox .dateBoxBtn:hover {
  transition: 0.3s;
  background: #eee;
}
.canvas .canvasBody .videoSection .courseCaseBox .dateBoxBtn .dateBoxDropdownMenu {
  position: absolute;
  right: 0;
  background: white;
  border-radius: 5px;
  border: 1px solid #eee;
  top: 100%;
  z-index: 2;
  display: none;
}
.canvas .canvasBody .videoSection .courseCaseBox .dateBoxBtn .dateBoxDropdownMenu a {
  width: 100%;
  display: flex;
  text-decoration: none;
  padding: 8px 15px;
  color: black;
  font-size: 14px;
  font-weight: 500;
  transition: 0.3s;
}
.canvas .canvasBody .videoSection .courseCaseBox .dateBoxBtn .dateBoxDropdownMenu a:hover {
  transition: 0.3s;
  background: rgba(238, 238, 238, 0.4784313725);
}
.canvas .canvasBody .videoSection .courseCaseBox .videoPlayBtnBox {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
.canvas .canvasBody .videoSection .courseCaseBox .courseCaseBoxAudioBtn {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  padding: 20px;
  border-radius: 10px;
  transition: 0.3s;
  background: #7286D3;
  border: 2px solid #7286D3;
  margin-top: 20px;
}
@media (max-width: 768px) {
  .canvas .canvasBody .videoSection .courseCaseBox .courseCaseBoxAudioBtn {
    height: 150px;
  }
}
@media (max-width: 500px) {
  .canvas .canvasBody .videoSection .courseCaseBox .courseCaseBoxAudioBtn {
    margin-top: 30px;
  }
}
.canvas .canvasBody .videoSection .courseCaseBox .courseCaseBoxAudioBtn span {
  font-size: 5em;
  color: white;
}
@media (max-width: 1800px) {
  .canvas .canvasBody .videoSection .courseCaseBox .courseCaseBoxAudioBtn span {
    font-size: 4em;
  }
}
.canvas .canvasBody .videoSection .courseCaseBox p {
  font-size: 18px;
  font-weight: 500;
  text-align: left;
  margin-top: 20px;
  max-height: 25px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
@media (max-width: 1800px) {
  .canvas .canvasBody .videoSection .courseCaseBox p {
    font-size: 16px;
    max-height: 20px;
  }
}
@media (max-width: 500px) {
  .canvas .canvasBody .videoSection .courseCaseBox p {
    margin-top: 15px;
  }
}
.canvas .canvasBody .videoSection .courseCaseBox h6 {
  font-size: 12px;
  font-weight: 500;
  text-align: left;
  margin-top: 8px;
  max-height: 35px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  opacity: 0.6;
  line-height: 1.5;
}
.canvas .canvasBody .videoSection .courseCaseBox .questions {
  padding: 8px 20px;
  font-size: 12px;
  font-weight: 500;
  border-radius: 50px;
  cursor: pointer;
  margin-top: 15px;
  background: rgba(238, 238, 238, 0.737254902);
  transition: 0.3s;
  display: none;
}
@media (max-width: 1800px) {
  .canvas .canvasBody .videoSection .courseCaseBox .questions {
    padding: 9px 25px;
  }
}
.canvas .canvasBody .videoSection .courseCaseBox .questions:hover {
  background: var(--primaryColor);
  transition: 0.3s;
  color: white;
}
.canvas .canvasBody .PDFSection {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
  padding-bottom: 50px;
}
.canvas .canvasBody .PDFSection::after {
  content: "";
  height: 0;
  width: 19%;
}
@media (max-width: 1024px) {
  .canvas .canvasBody .PDFSection::after {
    width: 24%;
  }
}
@media (max-width: 768px) {
  .canvas .canvasBody .PDFSection::after {
    width: 32%;
  }
}
@media (max-width: 480px) {
  .canvas .canvasBody .PDFSection::after {
    width: 48%;
  }
}
.canvas .canvasBody .PDFSection:hover .courseCaseBoxAudioBtn {
  transition: 0.3s;
  border: 2px solid var(--primaryColor);
  background: white;
}
.canvas .canvasBody .PDFSection:hover .courseCaseBoxAudioBtn span {
  transition: 0.3s;
  color: var(--primaryColor);
}
.canvas .canvasBody .PDFSection .dummyDiv {
  flex: 0 0 19%;
}
@media (max-width: 1024px) {
  .canvas .canvasBody .PDFSection .dummyDiv {
    flex: 0 0 24%;
  }
}
@media (max-width: 768px) {
  .canvas .canvasBody .PDFSection .dummyDiv {
    flex: 0 0 32%;
  }
}
@media (max-width: 480px) {
  .canvas .canvasBody .PDFSection .dummyDiv {
    flex: 0 0 48%;
  }
}
.canvas .canvasBody .PDFSection .courseCaseBox {
  flex: 0 0 19%;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  border-radius: 10px;
  cursor: pointer;
  background: white;
  border: 1px solid #eee;
  position: relative;
  z-index: 0;
}
@media (max-width: 1024px) {
  .canvas .canvasBody .PDFSection .courseCaseBox {
    flex: 0 0 24%;
  }
}
@media (max-width: 768px) {
  .canvas .canvasBody .PDFSection .courseCaseBox {
    flex: 0 0 32%;
  }
}
@media (max-width: 480px) {
  .canvas .canvasBody .PDFSection .courseCaseBox {
    flex: 0 0 48%;
    padding: 10px;
  }
}
.canvas .canvasBody .PDFSection .courseCaseBox .dateBoxBtn {
  position: absolute;
  width: 25px;
  height: 25px;
  border: 1px solid #eee;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  background: white;
  color: #6c6c6c;
  z-index: 1;
  cursor: pointer;
  transition: 0.3s;
  right: 20px;
  top: 10px;
}
@media (max-width: 500px) {
  .canvas .canvasBody .PDFSection .courseCaseBox .dateBoxBtn {
    right: 10px;
  }
}
.canvas .canvasBody .PDFSection .courseCaseBox .dateBoxBtn:hover {
  transition: 0.3s;
  background: #eee;
}
.canvas .canvasBody .PDFSection .courseCaseBox .dateBoxBtn .dateBoxDropdownMenu {
  position: absolute;
  right: 0;
  background: white;
  border-radius: 5px;
  border: 1px solid #eee;
  top: 100%;
  z-index: 2;
  display: none;
}
.canvas .canvasBody .PDFSection .courseCaseBox .dateBoxBtn .dateBoxDropdownMenu a {
  width: 100%;
  display: flex;
  text-decoration: none;
  padding: 8px 15px;
  color: black;
  font-size: 14px;
  font-weight: 500;
  transition: 0.3s;
}
.canvas .canvasBody .PDFSection .courseCaseBox .dateBoxBtn .dateBoxDropdownMenu a:hover {
  transition: 0.3s;
  background: rgba(238, 238, 238, 0.4784313725);
}
.canvas .canvasBody .PDFSection .courseCaseBox .pdfPlayBtnBox {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
.canvas .canvasBody .PDFSection .courseCaseBox .courseCaseBoxAudioBtn {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  padding: 20px;
  border-radius: 10px;
  transition: 0.3s;
  background: #86C8BC;
  border: 2px solid #86C8BC;
  margin-top: 20px;
}
@media (max-width: 500px) {
  .canvas .canvasBody .PDFSection .courseCaseBox .courseCaseBoxAudioBtn {
    margin-top: 30px;
  }
}
.canvas .canvasBody .PDFSection .courseCaseBox .courseCaseBoxAudioBtn span {
  font-size: 5em;
  color: white;
}
@media (max-width: 1800px) {
  .canvas .canvasBody .PDFSection .courseCaseBox .courseCaseBoxAudioBtn span {
    font-size: 4em;
  }
}
.canvas .canvasBody .PDFSection .courseCaseBox p {
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  margin-top: 20px;
  max-height: 25px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
@media (max-width: 1800px) {
  .canvas .canvasBody .PDFSection .courseCaseBox p {
    font-size: 16px;
    max-height: 20px;
  }
}
@media (max-width: 500px) {
  .canvas .canvasBody .PDFSection .courseCaseBox p {
    margin-top: 15px;
  }
}
.canvas .canvasBody .PDFSection .courseCaseBox .questions {
  padding: 8px 20px;
  font-size: 12px;
  font-weight: 500;
  border-radius: 50px;
  cursor: pointer;
  margin-top: 15px;
  background: rgba(238, 238, 238, 0.737254902);
  transition: 0.3s;
  display: none;
}
@media (max-width: 1800px) {
  .canvas .canvasBody .PDFSection .courseCaseBox .questions {
    padding: 9px 25px;
  }
}
.canvas .canvasBody .PDFSection .courseCaseBox .questions:hover {
  background: var(--primaryColor);
  transition: 0.3s;
  color: white;
}
.canvas .canvasBody .reportsList {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
}
.canvas .canvasBody .reportsList::after {
  content: "";
  height: 0;
  width: 24%;
}
@media (max-width: 1024px) {
  .canvas .canvasBody .reportsList::after {
    width: 32%;
  }
}
@media (max-width: 768px) {
  .canvas .canvasBody .reportsList::after {
    width: 48%;
  }
}
.canvas .canvasBody .reportsList .dummyDiv {
  flex: 0 0 24%;
  height: 0;
}
@media (max-width: 1024px) {
  .canvas .canvasBody .reportsList .dummyDiv {
    flex: 0 0 32%;
  }
}
@media (max-width: 768px) {
  .canvas .canvasBody .reportsList .dummyDiv {
    flex: 0 0 48%;
  }
}
@media (max-width: 500px) {
  .canvas .canvasBody .reportsList .dummyDiv {
    flex: 100%;
  }
}
.canvas .canvasBody .reportsList .reportsBox {
  flex: 0 0 24%;
  background: white;
  padding: 20px;
  border-radius: 10px;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  border: 1px solid white;
  transition: 0.3s;
}
.canvas .canvasBody .reportsList .reportsBox:hover {
  border: 1px solid #ccc;
  transition: 0.3s;
}
@media (max-width: 1024px) {
  .canvas .canvasBody .reportsList .reportsBox {
    flex: 0 0 32%;
  }
}
@media (max-width: 768px) {
  .canvas .canvasBody .reportsList .reportsBox {
    flex: 0 0 48%;
  }
}
@media (max-width: 500px) {
  .canvas .canvasBody .reportsList .reportsBox {
    flex: 100%;
  }
}
.canvas .canvasBody .reportsList .reportsBox .reportsBoxIcon {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  background: #eee;
  border-radius: 10px;
  color: black;
}
.canvas .canvasBody .reportsList .reportsBox p {
  font-size: 18px;
  font-weight: 500;
  margin-top: 20px;
  color: black;
}
.canvas .canvasBody .tableSection {
  width: 100%;
  margin-top: 20px;
  background: white;
  padding: 20px;
  border-radius: 10px;
  overflow-x: auto;
  padding-bottom: 100px;
}
.canvas .canvasBody .tableSection table {
  width: 100%;
  border-collapse: collapse;
  border-top-right-radius: 5px;
  border-top-left-radius: 5px;
  overflow: hidden;
}
.canvas .canvasBody .tableSection table thead {
  width: 100%;
}
.canvas .canvasBody .tableSection table thead tr {
  width: 100%;
}
.canvas .canvasBody .tableSection table thead tr th {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  background: black;
  color: white;
  text-align: left;
  white-space: pre;
}
.canvas .canvasBody .tableSection table tbody {
  width: 100%;
}
.canvas .canvasBody .tableSection table tbody tr {
  width: 100%;
}
.canvas .canvasBody .tableSection table tbody tr:nth-child(even) {
  background: #FEFBE9;
}
.canvas .canvasBody .tableSection table tbody tr td {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-align: left;
  color: rgb(54, 54, 54);
}
.canvas .canvasBody .tableSection table tbody tr td .tableAction {
  width: 100%;
  display: flex;
  align-items: center;
}
.canvas .canvasBody .tableSection table tbody tr td .tableAction .tableViewBtn {
  width: 25px;
  height: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #39B5E0;
  border-radius: 5px;
  transition: 0.3s;
  cursor: pointer;
  text-decoration: none;
  margin-right: 10px;
}
.canvas .canvasBody .tableSection table tbody tr td .tableAction .tableViewBtn:hover {
  transition: 0.3s;
  opacity: 0.7;
}
.canvas .canvasBody .tableSection table tbody tr td .tableAction .tableViewBtn span {
  font-size: 14px;
  color: white;
}
.canvas .canvasBody .tableSection table tbody tr td .tableAction .tableBlockBtn {
  width: 25px;
  height: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #EB455F;
  border-radius: 5px;
  transition: 0.3s;
  cursor: pointer;
  text-decoration: none;
  margin-right: 10px;
}
.canvas .canvasBody .tableSection table tbody tr td .tableAction .tableBlockBtn:hover {
  transition: 0.3s;
  opacity: 0.7;
}
.canvas .canvasBody .tableSection table tbody tr td .tableAction .tableBlockBtn span {
  font-size: 14px;
  color: white;
}
.canvas .canvasBody .tableSection table tbody tr td .tableAction .tableReactivateBtn {
  width: 25px;
  height: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #59CE8F;
  border-radius: 5px;
  transition: 0.3s;
  cursor: pointer;
  text-decoration: none;
  margin-right: 10px;
}
.canvas .canvasBody .tableSection table tbody tr td .tableAction .tableReactivateBtn:hover {
  transition: 0.3s;
  opacity: 0.7;
}
.canvas .canvasBody .tableSection table tbody tr td .tableAction .tableReactivateBtn span {
  font-size: 14px;
  color: white;
}
.canvas .canvasBody .tableSection table tbody .blockTr {
  background: #ffdddd !important;
}
.canvas .canvasBody .studentDetails {
  width: 100%;
  margin-top: 10px;
  padding: 30px 30px;
  border-radius: 10px;
  background: white;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
@media (max-width: 500px) {
  .canvas .canvasBody .studentDetails {
    padding: 15px;
  }
}
.canvas .canvasBody .studentDetails .studentDetailsThumbnail {
  width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

@media (max-width: 768px) {
  .canvas .canvasBody .studentDetails .studentDetailsThumbnail {
    width: 100%;
  }
}

.canvas .canvasBody .studentDetails .studentDetailsThumbnail .studentDetailsThumbnailBox {
  width: 200px;
  /*height: 200px;*/
  border-radius: 20px;
  background: #eee;
  border: 5px solid #eee;
  /*box-shadow: 0 0 10px rgba(0, 0, 0, 0.0666666667);*/
  overflow: hidden;
}
.canvas .canvasBody .studentDetails .studentDetailsThumbnail .studentDetailsThumbnailBox img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
	    transform: scale(1.05);
}
@media(max-width:667px){
	.canvas .canvasBody .studentDetails .studentDetailsThumbnail .studentDetailsThumbnailBox {
      width: 180px;
	  /* height: 200px; */
	  border-radius: 20px;
	  background: #eee;
	  border: 5px solid #eee;
	  /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.0666666667); */
	  overflow: hidden;
	}
	.canvas .canvasBody .studentDetails .studentDetailsThumbnail .studentDetailsThumbnailBox img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    transform: scale(1.05);
}
}
.canvas .canvasBody .studentDetails .studentDetailsThumbnail h2 {
  font-size: 20px;
  font-weight: 500;
  text-align: center;
  margin-top: 20px;
}
.canvas .canvasBody .studentDetails .studentDetailsThumbnail h4 {
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  margin-top: 4px;
	color :#808080;
}
.canvas .canvasBody .studentDetails .studentDetailsThumbnail h5 {
  font-weight: 600;
  font-size: 18px;
  margin-top: 16px;
  background: #ebf6ff;
  padding: 5px 20px;
  border-radius: 50px;
}
.canvas .canvasBody .studentDetails .studentDetailsThumbnail .blockMessage {
  padding: 7px 20px;
  font-size: 14px;
  font-weight: 500;
  background: red;
  border-radius: 5px;
  color: white;
  margin-top: 20px;
  display: none;
}
.canvas .canvasBody .studentDetails .studentDetailsProfile {
  width: calc(100% - 350px);
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  /*border: 1px solid #eee;*/
	    background: #f8fbff;
}
@media (max-width: 768px) {
  .canvas .canvasBody .studentDetails .studentDetailsProfile {
    width: 100%;
    margin-top: 20px;
  }
}
.canvas .canvasBody .studentDetails .studentDetailsProfile .studentDetailsProfileHead {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 10px;
}
@media (max-width: 768px) {
  .canvas .canvasBody .studentDetails .studentDetailsProfile .studentDetailsProfileHead {
    order: 2;
  }
}
.canvas .canvasBody .studentDetails .studentDetailsProfile .studentDetailsProfileHead .editBtn {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 5px;
  cursor: pointer;
  background: blue;
  color: white;
  transition: 0.3s;
  margin-left: 10px;
}
.canvas .canvasBody .studentDetails .studentDetailsProfile .studentDetailsProfileHead .editBtn:hover {
  transition: 0.3s;
  opacity: 0.7;
}
@media(max-width:480px){
	.canvas .canvasBody .studentDetails .studentDetailsProfile .studentDetailsProfileHead .editBtn{
		position: fixed;
		bottom: 0px;
		left: 0;
		width :100%;
		border-radius :0;
		z-index :10;
		    margin-left: 0;
    text-align: center;
    padding: 14px;
	}
}

.canvas .canvasBody .studentDetails .studentDetailsProfile .studentDetailsProfileHead .blockBtn {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 5px;
  cursor: pointer;
  background: #EB455F;
  color: white;
  transition: 0.3s;
  margin-left: 10px;
}
.canvas .canvasBody .studentDetails .studentDetailsProfile .studentDetailsProfileHead .blockBtn:hover {
  transition: 0.3s;
  opacity: 0.7;
}
.canvas .canvasBody .studentDetails .studentDetailsProfile .studentDetailsProfileHead .reactivateBtn {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 5px;
  cursor: pointer;
  background: #59CE8F;
  color: white;
  transition: 0.3s;
  margin-left: 10px;
}
.canvas .canvasBody .studentDetails .studentDetailsProfile .studentDetailsProfileHead .reactivateBtn:hover {
  transition: 0.3s;
  opacity: 0.7;
}
.canvas .canvasBody .studentDetails .studentDetailsProfile .studentDetailsProfileBody {
  width: 100%;
  /*border-top: 1px solid #eee;*/
  padding: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
}
@media (max-width: 768px) {
  .canvas .canvasBody .studentDetails .studentDetailsProfile .studentDetailsProfileBody {
    order: 1;
    /*border-top: none;
    border-bottom: 1px solid #eee;*/
  }
}
.canvas .canvasBody .studentDetails .studentDetailsProfile .studentDetailsProfileBody::after {
  content: "";
  height: 0;
  width: 32%;
}
.canvas .canvasBody .studentDetails .studentDetailsProfile .studentDetailsProfileBody .formGroup {
  flex: 0 0 32%;
  display: flex;
  flex-direction: column;
  margin-top: 20px;
}
@media (max-width: 1024px) {
  .canvas .canvasBody .studentDetails .studentDetailsProfile .studentDetailsProfileBody .formGroup {
    flex: 0 0 48%;
  }
}
@media (max-width: 500px) {
  .canvas .canvasBody .studentDetails .studentDetailsProfile .studentDetailsProfileBody .formGroup {
    flex: 100%;
  }
}
.canvas .canvasBody .studentDetails .studentDetailsProfile .studentDetailsProfileBody .formGroup:nth-of-type(1), .canvas .canvasBody .studentDetails .studentDetailsProfile .studentDetailsProfileBody .formGroup:nth-of-type(2), .canvas .canvasBody .studentDetails .studentDetailsProfile .studentDetailsProfileBody .formGroup:nth-of-type(3) {
  margin-top: 0;
}
@media (max-width: 1024px) {
  .canvas .canvasBody .studentDetails .studentDetailsProfile .studentDetailsProfileBody .formGroup:nth-of-type(3) {
    margin-top: 30px;
  }
}
@media (max-width: 500px) {
  .canvas .canvasBody .studentDetails .studentDetailsProfile .studentDetailsProfileBody .formGroup:nth-of-type(2) {
    margin-top: 30px;
  }
}
.canvas .canvasBody .studentDetails .studentDetailsProfile .studentDetailsProfileBody .formGroup label {
  font-size: 12px;
  font-weight: 500;
  opacity: 0.7;
}
.canvas .canvasBody .studentDetails .studentDetailsProfile .studentDetailsProfileBody .formGroup p {
  font-size: 16px;
  font-weight: 500;
  margin-top: 4px;
	line-height: calc(16px * 1.5);
}
.canvas .canvasFooter {
  width: 100%;
  border-top: 1px solid rgba(238, 238, 238, 0.4823529412);
  padding: 10px 0px;
  background: white;
}
.canvas .canvasFooter .canvasFooterMain {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.canvas .canvasFooter .canvasFooterMain .canvasFooterContact {
  display: flex;
  align-items: center;
}
.canvas .canvasFooter .canvasFooterMain .canvasFooterContact p {
  font-size: 14px;
  font-weight: 500;
}
@media (max-width: 480px) {
  .canvas .canvasFooter .canvasFooterMain .canvasFooterContact p {
    font-size: 10px;
  }
}
.canvas .canvasFooter .canvasFooterMain .canvasFooterContact a {
  text-decoration: none;
  padding: 8px 15px;
  border-radius: 8px;
  background: var(--primaryColor);
  color: white;
  font-size: 14px;
  margin-left: 10px;
  font-weight: 400;
  transition: 0.3s;
}
@media (max-width: 480px) {
  .canvas .canvasFooter .canvasFooterMain .canvasFooterContact a {
    font-size: 10px;
    padding: 7px 10px;
    border-radius: 5px;
  }
}
.canvas .canvasFooter .canvasFooterMain .canvasFooterContact a:hover {
  transition: 0.3s;
  opacity: 0.7;
}
.canvas .canvasFooter .canvasFooterMain .canvasFooterDesigned {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
}
@media (max-width: 480px) {
  .canvas .canvasFooter .canvasFooterMain .canvasFooterDesigned {
    font-size: 10px;
  }
}
.canvas .canvasFooter .canvasFooterMain .canvasFooterDesigned i {
  margin-left: 10px;
}
.canvas .canvasFooter .canvasFooterMain .canvasFooterDesigned a {
  text-decoration: none;
  margin-left: 10px;
}
.canvas .canvasFooter .canvasFooterMain .canvasFooterDesigned a .footerStripLogo {
  width: 60px;
}
@media (max-width: 480px) {
  .canvas .canvasFooter .canvasFooterMain .canvasFooterDesigned a .footerStripLogo {
    width: 50px;
  }
}
.canvas .canvasFooter .canvasFooterMain .canvasFooterDesigned a .footerStripLogo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  filter: grayscale(1);
}/*# sourceMappingURL=style.css.map */

.canvas .canvasBody .canvasForm form .canvasFormBox .formFileUpload {
  width: 100%;
  margin-top: 20px;
}
.canvas .canvasBody .canvasForm form .canvasFormBox .formFileUpload .uploadFileBtnBox {
  width: 30%;
}
.canvas .canvasBody .canvasForm form .canvasFormBox .formFileUpload .uploadFileBtnBox .uploadFileBtn {
  display: inline-block;
  font-weight: 600;
  color: #fff;
  text-align: center;
  min-width: 116px;
  padding: 12px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 1px solid;
  background-color: var(--secondaryColor);
  border-color: var(--secondaryColor);
  border-radius: 10px;
  line-height: 26px;
  font-size: 14px;
  width: 100%;
}
.canvas .canvasBody .canvasForm form .canvasFormBox .formFileUpload .uploadFileBtnBox .uploadFileBtn:hover {
  background-color: unset;
  color: var(--secondaryColor);
  transition: all 0.3s ease;
}
.canvas .canvasBody .canvasForm form .canvasFormBox .formFileUpload .uploadFileBtnBox .uploadFileBtn .uploadInputFile {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}
.canvas .canvasBody .canvasForm form .canvasFormBox .formFileUpload .uploadImgWrap {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.canvas .canvasBody .canvasForm form .canvasFormBox .formFileUpload .uploadImgWrap .imgBgBox {
  width: 200px;
  height: 150px;
  margin-top: 20px;
  margin-right: 10px;
  background: #eee;
  border-radius: 10px;
}
.canvas .canvasBody .canvasForm form .canvasFormBox .formFileUpload .uploadImgWrap .imgBgBox .imgBg {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}
.canvas .canvasBody .canvasForm form .canvasFormBox .formFileUpload .uploadImgWrap .imgBgBox .imgBg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.canvas .canvasBody .canvasForm form .canvasFormBox .formFileUpload .uploadImgWrap .imgBgBox .uploadImgClose {
  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 .canvasBody .canvasForm form .canvasFormBox .formFileUpload .uploadImgWrap .imgBgBox .uploadImgClose:after {
  content: "✖";
  font-size: 14px;
  color: white;
}

.canvas .loginSection {
  width: 100%;
  background: white;
  padding: 50px 5%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
	background: url('../images/loginBg.jpg');
	background-size: cover;
	background-repeat: no-repeat;
	background-position :center;
	position: relative;
	z-index:0;
}
.canvas .loginSection::after{
	position: absolute;
	content: '';
	top:0;
	left:0;
	width:100%;
	height: 100%;
	z-index: -1;
	background: #0000004d;
}
.canvas .loginSection .loginSectionBox {
  width: 500px;
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  overflow: hidden;
  background: white;
 
}
@media (max-width: 480px) {
  .canvas .loginSection .loginSectionBox {
    width: 100%;
  }
}
.canvas .loginSection .loginSectionBox .loginSectionBoxThumbnail {
  width: 100%;
  /*height: 240px;*/
	padding: 40px;
	display:flex;
	flex-direction: column;
	justify-content: center;
	background: var(--secondaryColor);
	position: relative;
	z-index: 0;
}
@media(max-width: 480px){
	.canvas .loginSection .loginSectionBox .loginSectionBoxThumbnail {
		padding: 20px;
	}
}
.canvas .loginSection .loginSectionBox .loginSectionBoxThumbnail::after{
	position: absolute;
	z-index: -1;
	content: '';
	width: 200px;
	height :100%;
	bottom: 0;
	right: 0;
	background: url(../images/loginMedicine.png);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center right;
}
.canvas .loginSection .loginSectionBox .loginSectionBoxThumbnail h1{
	font-size: 25px;
	font-weight: 500;
	color: white;
	line-height: 1.5;
	/*width: 70%;*/
}
@media(max-width: 480px){
	.canvas .loginSection .loginSectionBox .loginSectionBoxThumbnail h1{
		font-size: 20px;
		/*width: 75%;*/
	}
}
/*@media (max-width: 480px) {
  .canvas .loginSection .loginSectionBox .loginSectionBoxThumbnail {
    height: 150px;
  }
}*/
.canvas .loginSection .loginSectionBox .loginSectionBoxThumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.canvas .loginSection .loginSectionBox .loginSectionBoxForm {
  width: 100%;
  padding: 40px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 480px) {
  .canvas .loginSection .loginSectionBox .loginSectionBoxForm {
    padding: 20px 20px 40px 20px;
  }
}
.canvas .loginSection .loginSectionBox .loginSectionBoxForm .loginTitle {
  width: 100%;
}
.canvas .loginSection .loginSectionBox .loginSectionBoxForm .loginTitle h2 {
  font-size: 18px;
  font-weight: 400;
}
.canvas .loginSection .loginSectionBox .loginSectionBoxForm .loginTitle p {
  font-size: 14px;
  color: var(--secondaryTextColor);
  margin-top: 7px;
  display: flex;
}
.canvas .loginSection .loginSectionBox .loginSectionBoxForm .loginTitle p:nth-child(2) {
  margin-top: 15px;
}
.canvas .loginSection .loginSectionBox .loginSectionBoxForm .loginTitle p span {
  width: 10px;
  height: 1px;
}
.canvas .loginSection .loginSectionBox .loginSectionBoxForm .loginTitle .optText {
  font-size: 16px;
  color: black;
  margin-top: 20px;
  font-weight: 400;
  display: flex;
  flex-wrap: wrap;
	gap:10px;
}
.canvas .loginSection .loginSectionBox .loginSectionBoxForm .loginTitle .optText h5 {
  font-size: 16px;
  color: black;
  font-weight: 400;
  display: flex;
}
.canvas .loginSection .loginSectionBox .loginSectionBoxForm .loginTitle .optText h5 span {
  width: 10px;
  height: 1px;
}
.canvas .loginSection .loginSectionBox .loginSectionBoxForm form {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-top: 20px;
}
.canvas .loginSection .loginSectionBox .loginSectionBoxForm form .formGroup {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-top: 20px;
}
.canvas .loginSection .loginSectionBox .loginSectionBoxForm form .formGroup label {
  font-size: 14px;
  font-weight: 500;
  color: var(--secondaryTextColor);
}
.canvas .loginSection .loginSectionBox .loginSectionBoxForm form .formGroup h6{
	font-size :12px;
	margin-top: 5px;
	font-weight: 400;
	background: #eeeeee5e;
    padding: 4px 10px;
    border-radius: 5px;
}
.canvas .loginSection .loginSectionBox .loginSectionBoxForm form .formGroup input {
  width: 100%;
  height: 50px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 5px;
  outline: none;
  padding: 0px 15px;
  font-size: 14px;
}
.canvas .loginSection .loginSectionBox .loginSectionBoxForm form .formGroup input:focus {
  border: 1px solid var(--secondaryTextColor);
}
.canvas .loginSection .loginSectionBox .loginSectionBoxForm form .formGroup .formPassword {
  position: relative;
}
.canvas .loginSection .loginSectionBox .loginSectionBoxForm form .formGroup .formPassword .togglePassword {
  position: absolute;
  right: 2%;
  top: 18px;
  font-size: 20px;
  cursor: pointer;
}
.canvas .loginSection .loginSectionBox .loginSectionBoxForm form .formGroup .errorAlert {
  margin-top: 10px;
  padding: 10px 15px;
  background: rgba(255, 0, 0, 0.045);
  border: 1px solid var(--fourthColor);
  color: var(--fourthColor);
  font-size: 12px;
  border-radius: 5px;
  font-weight: 500;
  display: none;
}
.canvas .loginSection .loginSectionBox .loginSectionBoxForm form .forgotPsd{
	width: 100%;
	display :flex;
	align-items: center;
	justify-content: flex-end;
	margin-top: 20px;
}
.canvas .loginSection .loginSectionBox .loginSectionBoxForm form .forgotPsd a{
	font-size: 14px;
	color: #00a0dd;
    font-weight: 500;
}
.canvas .loginSection .loginSectionBox .loginSectionBoxForm form .forgotPassword {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 25px;
}
.canvas .loginSection .loginSectionBox .loginSectionBoxForm form .forgotPassword a {
  text-decoration: none;
  font-size: 14px;
  color: var(--primaryColor);
  font-weight: 500;
}
.canvas .loginSection .loginSectionBox .loginSectionBoxForm form .forgotPassword a:hover {
  color: var(--secondaryColor);
}
.canvas .loginSection .loginSectionBox .loginSectionBoxForm form .formBtnArea {
  width: 100%;
  margin-top: 25px;
}
.canvas .loginSection .loginSectionBox .loginSectionBoxForm form .formBtnArea button {
  width: 100%;
  padding: 18px;
  border: none;
  outline: none;
  background: var(--primaryColor);
  color: white;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
}
.canvas .loginSection .loginSectionBox .loginSectionBoxForm form .formBtnArea button:hover {
  transition: 0.2s;
  opacity: 0.7;
}
.canvas .loginSection .loginSectionBox .loginSectionBoxForm form .formBtnArea button span {
  margin-left: 10px;
  font-size: 16px;
}
.canvas .loginSection .loginSectionBox .loginSectionBoxForm form .formFooterLink {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
}
.canvas .loginSection .loginSectionBox .loginSectionBoxForm form .formFooterLink h4 {
  font-size: 14px;
  font-weight: 500;
}
.canvas .loginSection .loginSectionBox .loginSectionBoxForm form .formFooterLink h4 a {
  text-decoration: none;
  color: var(--primaryColor);
  margin-left: 5px;
}
.canvas .loginSection .loginSectionBox .loginSectionBoxForm form .formOTPGroup {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}
.canvas .loginSection .loginSectionBox .loginSectionBoxForm form .formOTPGroup input {
  width: 24%;
  height: 45px;
  border: 1px solid #ccc;
  border-radius: 5px;
  outline: none;
  text-align: center;
  font-size: 20px;
}
.canvas .loginSection .loginSectionBox .loginSectionBoxForm form .formOTPGroup input:focus {
  border: 1px solid var(--primaryColor);
}
.canvas .loginSection .loginSectionBox .loginSectionBoxForm form .formOTPGroup .errorOtp {
  border: 1px solid var(--fourthColor);
  color: var(--fourthColor);
}
.canvas .loginSection .loginSectionBox .loginSectionBoxForm form .otpTimer {
  width: 100%;
  margin-top: 10px;
  display: flex;
  justify-content: flex-end;
}
.canvas .loginSection .loginSectionBox .loginSectionBoxForm form .otpTimer p {
  font-size: 14px;
  font-weight: 500;
}
.canvas .loginSection .loginSectionBox .loginSectionBoxForm form .otpTimer .resendOtpBtn {
  background: var(--secondaryColor);
  color: white;
  font-size: 12px;
  padding: 7px 15px;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.2s;
  display: none;
}
.canvas .loginSection .loginSectionBox .loginSectionBoxForm form .otpTimer .resendOtpBtn:hover {
  transition: 0.2s;
  opacity: 0.7;
}

#innerGalleryList {
  width: 100%;
}
#innerGalleryList .innerGalleryListBtnArea {
  width: 100%;
  justify-content: center;
  align-items: center;
  display: flex;
}
#innerGalleryList .innerGalleryListBtnArea a {
  text-decoration: none;
  background: #f6f5f8;
  padding: 6px 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 50px;
  font-size: 14px;
  color: var(--primaryColor);
  font-family: myFont4;
  margin-top: 10px;
  transition: 0.3s;
  width: -moz-fit-content;
  width: fit-content;
}
#innerGalleryList .innerGalleryListBtnArea a:hover {
  transition: 0.3s;
  transform: translateY(-5px);
  background: var(--primaryColor);
  color: white;
}
#innerGalleryList .innerGalleryListBtnArea a i {
  line-height: 0.5;
  font-size: 16px;
}
#innerGalleryList .innerGalleryListMain {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-top: 60px;
  -moz-column-gap: 40px;
       column-gap: 40px;
  row-gap: 80px;
}
@media (max-width: 480px) {
  #innerGalleryList .innerGalleryListMain {
    row-gap: 20px;
  }
}
#innerGalleryList .innerGalleryListMain .innerGalleryListBox {
  width: calc(25% - 30px);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: 0.3s;
}
@media (max-width: 1315px) {
  #innerGalleryList .innerGalleryListMain .innerGalleryListBox {
    width: calc(33.3333333333% - 27px);
  }
}
@media (max-width: 768px) {
  #innerGalleryList .innerGalleryListMain .innerGalleryListBox {
    width: calc(50% - 20px);
  }
}
@media (max-width: 480px) {
  #innerGalleryList .innerGalleryListMain .innerGalleryListBox {
    width: 100%;
  }
}
#innerGalleryList .innerGalleryListMain .innerGalleryListBox:hover {
  transition: 0.3s;
  transform: translateY(-10px);
}
#innerGalleryList .innerGalleryListMain .innerGalleryListBox:hover .innerGalleryListBoxThumbnail img {
  transform: scale(1.05);
  transition: 0.3s;
}
#innerGalleryList .innerGalleryListMain .innerGalleryListBox .innerGalleryListBoxThumbnail {
  width: 100%;
  height: 250px;
  background: #eee;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
@media (max-width: 1800px) {
  #innerGalleryList .innerGalleryListMain .innerGalleryListBox .innerGalleryListBoxThumbnail {
    height: 220px;
  }
}
#innerGalleryList .innerGalleryListMain .innerGalleryListBox .innerGalleryListBoxThumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s;
}
#innerGalleryList .innerGalleryListMain .innerGalleryListBox .innerGalleryListBoxDetails {
  width: 100%;
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
#innerGalleryList .innerGalleryListMain .innerGalleryListBox .innerGalleryListBoxDetails p {
  color: black;
  text-align: center;
  font-size: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}


.uploadFormPopup {
  position: fixed;
  z-index: 207;
  background: white;
  border-radius: 20px;
  width: 500px;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  display: none;
}
@media (max-width: 520px) {
  .uploadFormPopup {
    width: 95%;
  }
}
.uploadFormPopup form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.uploadFormPopup form .formGroupMain {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 30px;
  padding-bottom: 0;
}
@media (max-width: 480px) {
  .uploadFormPopup form .formGroupMain {
    padding: 20px;
  }
}
.uploadFormPopup form .formGroupMain .formGroup {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.uploadFormPopup form .formGroupMain .formGroup label {
  font-size: 16px;
  color: var(--secondaryTextColor);
}
.uploadFormPopup form .formGroupMain .formGroup input {
  width: 100%;
  height: 45px;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 0px 15px;
  outline: none;
  margin-top: 5px;
  font-size: 18px;
}
.uploadFormPopup form .formGroupMain .formGroup input:focus {
  border-color: black;
}
.uploadFormPopup form .formGroupMain .formGroup .formGroupFileUpload {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.uploadFormPopup form .formGroupMain .formGroup .formGroupFileUpload .uploadBtn {
  width: 100%;
  background: #AACB73;
  color: white;
  padding: 20px;
  border-radius: 10px;
  margin-top: 5px;
  font-size: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 15px;
  cursor: pointer;
  transition: 0.3s;
}
.uploadFormPopup form .formGroupMain .formGroup .formGroupFileUpload .uploadBtn:hover {
  transition: 0.3s;
  transform: translateY(-5px);
  opacity: 0.7;
}
.uploadFormPopup form .formGroupMain .formGroup .formGroupFileUpload .uploadBtn i {
  line-height: 0.5;
}
.uploadFormPopup form .formGroupMain .formGroup .formGroupFileUpload #file-input {
  display: none;
}
.uploadFormPopup form .formGroupMain .formGroup .formGroupFileUpload .benevolent-fund-file-input {
  display: none;
}
.uploadFormPopup form .formGroupMain .formGroup .formGroupFileUpload .filePreview {
  width: 100%;
  display: flex;
  display: flex;
  flex-direction: column;
}
.uploadFormPopup form .formGroupMain .formGroup .formGroupFileUpload .filePreview .filePreviewBox {
  width: 100%;
  margin-top: 10px;
  background: #f3fff4;
  padding: 5px 10px;
  border-radius: 5px;
  display: none;
  align-items: center;
  justify-content: space-between;
}
.uploadFormPopup form .formGroupMain .formGroup .formGroupFileUpload .filePreview .filePreviewBox .filePreviewName {
  width: calc(100% - 40px);
  font-size: 14px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.uploadFormPopup form .formGroupMain .formGroup .formGroupFileUpload .filePreview .filePreviewBox .closeFileBtn {
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  outline: none;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  background: rgb(255, 229, 229);
  color: red;
  font-size: 14px;
  transition: 0.3s;
}
.uploadFormPopup form .formGroupMain .formGroup .formGroupFileUpload .filePreview .filePreviewBox .closeFileBtn:hover {
  transition: 0.3s;
  transform: translateY(-5px);
}
.uploadFormPopup form .formGroupMain .formGroup .formGroupFileUpload .filePreview .filePreviewBox .closeFileBtn i {
  line-height: 0.5;
}
.uploadFormPopup form .formBtnArea {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 5px;
  border-top: 1px solid #ddd;
  padding: 30px;
  padding-top: 20px;
}
@media (max-width: 480px) {
  .uploadFormPopup form .formBtnArea {
    padding: 20px;
  }
}
.uploadFormPopup form .formBtnArea .closeUploadFormPopup {
  flex: 0 0 32%;
  background: #eee;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  border-radius: 10px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}
.uploadFormPopup form .formBtnArea .closeUploadFormPopup:hover {
  transition: 0.3s;
  transform: translateY(-5px);
}
.uploadFormPopup form .formBtnArea .submitUploadFormPopup {
  flex: 0 0 65%;
  background: linear-gradient(var(--primaryColor), var(--secondaryColor));
  color: white;
  border: none;
  outline: none;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  border-radius: 10px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}
.uploadFormPopup form .formBtnArea .submitUploadFormPopup:hover {
  transition: 0.3s;
  transform: translateY(-5px);
  opacity: 0.7;
}

.galleryFolder{
  flex: 0 0 24%;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 0;
  background: white;
  margin-top: 40px;
}
.galleryFolder .galleryFolderLink{
  text-decoration: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.galleryFolder .galleryFolderThumbnail{
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 10px;
  background: #eee;
  display: flex;
}
.galleryFolder .galleryFolderThumbnail img{
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
}
.galleryFolder .galleryFolderDetails{
  width: 100%;
  padding: 20px;
  display: flex;
  flex-direction: column;
}
.galleryFolder .galleryFolderDetails p{
  font-size: 16px;
  font-weight: 500;
  color: black;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.galleryFolder .galleryFolderDetails .galleryFolderDetailsBtnArea{
  width: 100%;
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.galleryFolder .galleryFolderDetails .galleryFolderDetailsBtnArea a{
  text-decoration: none;
  padding: 5px 15px;
  border-radius: 5px;
  font-size: 14px;
  transition: .3s;
  z-index:2;
}
.galleryFolder .galleryFolderDetails .galleryFolderDetailsBtnArea a:hover{
  transition: .3s;
  opacity: .7;
}
.galleryFolder .galleryFolderDetails .galleryFolderDetailsBtnArea .viewBtn{
  background: rgb(0, 60, 255);
  color: white;
}
.galleryFolder .galleryFolderDetails .galleryFolderDetailsBtnArea .editBtn{
  background: rgb(0, 190, 73);
  color: white;
}
.galleryFolder .galleryFolderDetails .galleryFolderDetailsBtnArea .deleteBtn{
  background: rgb(231, 35, 0);
  color: white;
}



.memberDirectory{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 40px 0px 100px 0px;
	margin-top :20px;
}
@media(max-width:480px){
  .memberDirectory {
	  gap: 10px;
	margin-top :10px;
  }
}
.memberDirectory .memberDirectoryBox{
  width: calc(100% / 4 - 15px);
  display: flex;
  position: relative;
  z-index: 0;
  background: white;
  transition: .3s;
}
@media(max-width:1440px){
  .memberDirectory .memberDirectoryBox{
    width: calc(100% / 3 - 14px);
  }
}
@media(max-width:1024px){
  .memberDirectory .memberDirectoryBox{
    width: calc(100% / 2 - 10px);
  }
}
@media(max-width:768px){
  .memberDirectory .memberDirectoryBox{
    width: 100%;
  }
}
.memberDirectory .memberDirectoryBox:hover{
  transition: .3s;
  transform: translateY(-10px);
}
@media(max-width:768px){
	.memberDirectory .memberDirectoryBox:hover{
  		transform: translateY(0px);
	}
}
.memberDirectory .memberDirectoryBox .memberDirectoryBoxLink{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.memberDirectory .memberDirectoryBox .memberDirectoryBoxThumbnail{
  width: 100px;
  height: 100%;
  overflow: hidden;
  background: #eee;
  display: flex;
  position: relative;
}
.memberDirectory .memberDirectoryBox .memberDirectoryBoxThumbnail img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.memberDirectory .memberDirectoryBox .memberDirectoryBoxDetails{
  width: 100%;
  padding: 15px;
  display: flex;
  flex-direction: column;
	position :relative;
	overflow: hidden;
}
.memberDirectory .memberDirectoryBox .memberDirectoryBoxDetails h2{
  font-size: 14px;
  font-weight: 600;
}
.memberDirectory .memberDirectoryBox .memberDirectoryBoxDetails h3{
  font-size: 12px;
  font-weight: 500;
}
.memberDirectory .memberDirectoryBox .memberDirectoryBoxDetails h4{
  font-size: 12px;
  font-weight: 600;
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.memberDirectory .memberDirectoryBox .memberDirectoryBoxDetails h4 span{
  font-size: 14px;
}
.memberDirectory .memberDirectoryBox .memberDirectoryBoxDetails h5{
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}
.memberDirectory .memberDirectoryBox .memberDirectoryBoxDetails h5 span{
  font-size: 14px;
}
.memberDirectoryBoxDetailsFoot{
	width :100%;
	display :flex;
	justify-content: space-between;
	align-items: center;
  margin-top: 10px;
}
.memberDirectory .memberDirectoryBox .memberDirectoryBoxDetails .memberDirectoryBoxSocialLinks{
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  gap: 20px;
	margin-left :auto;
}
.memberDirectory .memberDirectoryBox .memberDirectoryBoxDetails .memberDirectoryBoxSocialLinks a{
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}
.memberDirectory .memberDirectoryBox .memberDirectoryBoxDetails .memberDirectoryBoxSocialLinks a span{
  font-size: 16px;
  color: black;
}
.memberDirectoryPhonePopup{
  width: 400px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: fixed;
  top: 40%;
  padding: 16px;
  background: white;
	transform: translate(-50%, -50%);
  left: 50%;
  z-index: 200;
	border-radius: 10px;
	display: none;
}
@media(max-width :480px){
	.memberDirectoryPhonePopup{
		width: 90%;
	}
}
.memberDirectoryPhonePopup .memberDirectoryPhonePopupHead{
	width :100%;
	display :flex;
	align-items :center;
	justify-content: space-between;
}
.memberDirectoryPhonePopup .memberDirectoryPhonePopupHead h3{
	font-size: 16px;
	font-weight: 500;
	color: #343434;
}
.memberDirectoryPhonePopup .memberDirectoryPhonePopupHead .closeMemberDirectoryPhonePopup{
  cursor: pointer;
}
.memberDirectoryPhonePopup .memberDirectoryPhonePopupHead .closeMemberDirectoryPhonePopup span{
  font-size: 20px;
}
.memberDirectoryPhonePopup .memberDirectoryPhonePopupBody{
	width :100%;
	display :flex;
	flex-direction :column;
	margin-top :8px;
}
.memberDirectoryPhonePopup .memberDirectoryPhonePopupBody a{
  text-decoration: none;
  color: black;
  font-weight: 600;
  width: fit-content;
	font-size :14px;
	padding: 12px 12px;
	width :100%;
	border-top :1px solid #eee;
}
.memberDirectoryPhonePopup .memberDirectoryPhonePopupBody a:nth-of-type(1){
	border-top :none;
}




.filterSection {
  position: fixed;
  right: -150%;
  top: 0;
  z-index: 110;
  width: 450px;
  height: 100vh;
  background: white;
  transition: 0.2s;
}
@media(max-width: 480px){
	.filterSection{
		width :100%;
	}
}
.filterSection .filterSectionHead {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: white;
  height: 60px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.039);
  padding: 10px 30px;
  display: flex;
  align-items: center;
}
.filterSection .filterSectionHead h1 {
  font-size: 22px;
  display: flex;
  align-items: center;
  font-weight: 500;
}
.filterSection .filterSectionHead h1 i {
  font-size: 20px;
  margin-right: 10px;
}
.filterSection .filterSectionBody {
  position: absolute;
  top: 60px;
  width: 100%;
  height: calc(100vh - 120px);
  left: 0;
  overflow-y: auto;
  padding: 20px 30px;
}
.filterSection .filterSectionBody .filterSectionBodyBox {
  width: 100%;
  border-top: 1px solid #eee;
  padding-top: 30px;
  margin-top: 30px;
  display: flex;
  flex-direction: column;
}
.filterSection .filterSectionBody .filterSectionBodyBox:nth-child(1) {
  border-top: none;
  padding-top: 0px;
  margin-top: 0px;
}
.filterSection .filterSectionBody .filterSectionBodyBox h2 {
  font-size: 14px;
  font-weight: 500;
}
.filterSection .filterSectionBody .filterSectionBodyBox .filterSectionBodyCheckbox {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 10px;
}
.filterSection .filterSectionBody .filterSectionBodyBox .filterSectionBodyCheckbox .formGroup {
  flex: 0 0 48%;
  display: block;
  margin-top: 20px;
}
.filterSection .filterSectionBody .filterSectionBodyBox .filterSectionBodyCheckbox .formGroup input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}
.filterSection .filterSectionBody .filterSectionBodyBox .filterSectionBodyCheckbox .formGroup label {
  position: relative;
  cursor: pointer;
  font-size: 12px;
  font-weight: 500;
  width: 100%;
  height: 25px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.filterSection .filterSectionBody .filterSectionBodyBox .filterSectionBodyCheckbox .formGroup label:before {
  content: "";
  -webkit-appearance: none;
  background-color: transparent;
  border: 2px solid var(--primaryColor);
  border-radius: 6px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
  padding: 10px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 10px;
}
.filterSection .filterSectionBody .filterSectionBodyBox .filterSectionBodyCheckbox .formGroup input:checked + label:after {
  content: "";
  display: block;
  position: absolute;
  top: 3px;
  left: 9px;
  width: 5px;
  height: 12px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.filterSection .filterSectionBody .filterSectionBodyBox .filterSectionBodyCheckbox .formGroup input:checked + label:before {
  background: var(--primaryColor);
}
.filterSection .filterSectionFooter {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 60px;
  background: white;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.039);
  padding: 10px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.filterSection .filterSectionFooter .closeFilter {
  flex: 0 0 48%;
  height: 40px;
  border-radius: 10px;
  background: #eee;
  color: black;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  transition: 0.2s;
}
.filterSection .filterSectionFooter .closeFilter:hover {
  transition: 0.2s;
  opacity: 0.7;
}
.filterSection .filterSectionFooter .applyFilter {
  flex: 0 0 48%;
  height: 40px;
  border-radius: 10px;
  background: var(--primaryColor);
  color: white;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  transition: 0.2s;
}
.filterSection .filterSectionFooter .applyFilter:hover {
  transition: 0.2s;
  opacity: 0.7;
}

.filterSectionActive {
  right: 0;
  transition: 0.2s;
}





#contact {
  width: 100%;
  padding: 100px 0px;
  background: #fff;
	/*background: var(--primaryColor);*/
}
@media (max-width: 768px) {
  #contact {
    padding: 80px 0px;
  }
}
#contact .contactMain {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
#contact .contactMain h2 {
  text-align: center;
}
#contact .contactMain p {
  font-size: 16px;
  text-align: center;
  width: 50%;
  margin-top: 30px;
	line-height:1.5;
}
@media (max-width: 768px) {
  #contact .contactMain p {
    width: 90%;
  }
}
#contact .contactMain .contactMainDetails {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-top: 60px;
}
#contact .contactMain .contactMainDetails .contactMainDetailsBox {
  width: 100%;
  display: flex;
  flex-direction: column;
}
#contact .contactMain .contactMainDetails .contactMainDetailsBox ul {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 50px;
       column-gap: 50px;
  row-gap: 50px;
}
@media (max-width: 1800px) {
  #contact .contactMain .contactMainDetails .contactMainDetailsBox ul {
    -moz-column-gap: 30px;
         column-gap: 30px;
    row-gap: 30px;
  }
}
#contact .contactMain .contactMainDetails .contactMainDetailsBox ul li {
  width: calc(33.3333333333% - 34px);
  list-style: none;
  display: flex;
  flex-direction: column;
  /*background: rgba(255, 255, 255, 0.11);*/
	background: rgb(0 0 0 / 3%);
  padding: 20px 30px;
  border-radius: 20px;
}
@media (max-width: 1800px) {
  #contact .contactMain .contactMainDetails .contactMainDetailsBox ul li {
    width: calc(33.3333333333% - 20px);
  }
}
@media (max-width: 1315px) {
  #contact .contactMain .contactMainDetails .contactMainDetailsBox ul li {
    width: calc(50% - 15px);
  }
}
@media (max-width: 768px) {
  #contact .contactMain .contactMainDetails .contactMainDetailsBox ul li {
    width: 100%;
  }
}
#contact .contactMain .contactMainDetails .contactMainDetailsBox ul li .contacCol1 {
  display: flex;
  flex-direction: column;
}
#contact .contactMain .contactMainDetails .contactMainDetailsBox ul li .contacCol1 i {
  font-size: 25px;
	color: var(--secondaryColor);
}
#contact .contactMain .contactMainDetails .contactMainDetailsBox ul li .contacCol1 span {
  font-size: 25px;
	color: var(--secondaryColor);
}
#contact .contactMain .contactMainDetails .contactMainDetailsBox ul li .contacCol1 h6 {
  font-size: 16px;
	margin-top: 10px;
	color: var(--secondaryColor);
	font-weight: 500;
}
#contact .contactMain .contactMainDetails .contactMainDetailsBox ul li .contacCol2 {
  border-top: 1px solid rgb(216 216 216 / 64%);
  display: flex;
  flex-direction: column;
  margin-top: 20px;
  padding-top: 20px;
}
#contact .contactMain .contactMainDetails .contactMainDetailsBox ul li .contacCol2 a {
  color: black;
  text-decoration: none;
  font-size: 22px;
  margin-top: 5px;
  transition: 0.3s;
  width: -moz-fit-content;
  width: fit-content;
	font-weight: 400;
}
@media (max-width: 480px) {
  #contact .contactMain .contactMainDetails .contactMainDetailsBox ul li .contacCol2 a {
    font-size: 18px;
  }
}
#contact .contactMain .contactMainDetails .contactMainDetailsBox ul li .contacCol2 a:hover {
  transition: 0.3s;
	color: var(--thirdColor);
  transform: translateY(-5px);
}
#contact .contactMain .contactMainDetails .contactMainDetailsBox ul li .contacCol2 h3 {
  color: black;
  font-size: 25px;
  margin-top: 5px;
	font-weight: 400;
}
@media (max-width: 480px) {
  #contact .contactMain .contactMainDetails .contactMainDetailsBox ul li .contacCol2 h3 {
    font-size: 20px;
  }
}





footer {
  width: 100%;
  padding: 80px 0px 20px 0px;
	border-top :5px solid var(--thirdColor);
  background: var(--primaryColor);
}
footer .footerMain {
  width: 100%;
  border-bottom: 1px solid var(--thirdColor);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 50px;
}
footer .footerMain .footerMap {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-bottom: 80px;
}
footer .footerMain .footerMap h2 {
  color: white;
  font-size: 25px;
}
@media (max-width: 1800px) {
  footer .footerMain .footerMap h2 {
    font-size: 22px;
  }
}
footer .footerMain .footerMap .footerMapBox {
  width: 100%;
  height: 300px;
  background: #eee;
  margin-top: 20px;
}
@media (max-width: 480px) {
  footer .footerMain .footerMap .footerMapBox {
    height: 250px;
  }
}
footer .footerMain .footerMap .footerMapBox iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
footer .footerMain .footerCol1 {
  flex: 0 0 30%;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1024px) {
  footer .footerMain .footerCol1 {
    flex: 0 0 45%;
  }
}
@media (max-width: 480px) {
  footer .footerMain .footerCol1 {
    flex: 100%;
  }
}
footer .footerMain .footerCol1 .footerLogo{
	width :fit-content;
	height :100px;
	border-radius: 10px;
	padding :10px 20px;
	background: white;
    display: flex;
    align-items: center;
    gap: 15px;
}
footer .footerMain .footerCol1 .footerLogo img{
	width :100%;
	height :100%;
	object-fit: contain;
}
footer .footerMain .footerCol1 .footerLogo .footerLogoText{
	font-size: 2em;
	font-weight: 600;
	color: var(--primaryColor);
}
@media (max-width: 768px) {
footer .footerMain .footerCol1 .footerLogo .footerLogoText{
		font-size: 1.6em;
	}
}
footer .footerMain .footerCol1 h2 {
  color: white;
  font-size: 30px;
}
footer .footerMain .footerCol1 p {
  font-size: 16px;
  line-height: 1.5;
  color: rgb(216, 216, 216);
  margin-top: 20px;
}
footer .footerMain .footerCol1 span {
  margin-top: 60px;
  font-size: 14px;
  color: rgb(196, 196, 196);
}
footer .footerMain .footerCol1 .footerSocailLinks {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}
footer .footerMain .footerCol1 .footerSocailLinks a {
  text-decoration: none;
}
footer .footerMain .footerCol1 .footerSocailLinks a:hover svg {
  transition: 0.2s;
  fill: var(--thirdColor);
}
footer .footerMain .footerCol1 .footerSocailLinks a svg {
  width: 25px;
  height: 25px;
  fill: white;
  transition: 0.2s;
}
footer .footerMain .footerCol {
  flex: 0 0 15%;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1800px) {
  footer .footerMain .footerCol:nth-last-of-type(1) {
    flex: 0 0 20%;
  }
}
@media (max-width: 1024px) {
  footer .footerMain .footerCol {
    flex: 0 0 45%;
  }
  footer .footerMain .footerCol:nth-last-of-type(1) {
    flex: 0 0 45%;
    margin-top: 60px;
  }
  footer .footerMain .footerCol:nth-last-of-type(2) {
    margin-top: 60px;
  }
}
@media (max-width: 480px) {
  footer .footerMain .footerCol {
    flex: 100%;
    margin-top: 60px;
  }
}
footer .footerMain .footerCol h3 {
  color: white;
  font-size: 25px;
}
@media (max-width: 1800px) {
  footer .footerMain .footerCol h3 {
    font-size: 22px;
  }
}
footer .footerMain .footerCol ul {
  width: 100%;
  display: flex;
	flex-wrap: wrap;
  margin-top: 30px;
  gap: 20px;
}
@media (max-width: 1800px) {
  footer .footerMain .footerCol ul {
    gap: 15px;
  }
}
footer .footerMain .footerCol ul li {
	width :100%;
  list-style: none;
}
footer .footerMain .footerCol ul li a {
  text-decoration: none;
  color: rgb(255, 255, 255);
  font-size: 18px;
  transition: 0.2s;
}
@media (max-width: 1800px) {
  footer .footerMain .footerCol ul li a {
    font-size: 18px;
  }
}
footer .footerMain .footerCol ul li a:hover {
  transition: 0.2s;
  color: var(--thirdColor);
}
footer .footerMain .footerCol span {
  margin-top: 30px;
  font-size: 14px;
  color: rgb(196, 196, 196);
}
footer .footerMain .footerCol p {
  font-size: 16px;
  line-height: 1.5;
  color: rgb(255, 255, 255);
  margin-top: 10px;
}
footer .footerMain .footerCol a {
  text-decoration: none;
  font-size: 16px;
  line-height: 1.5;
  color: rgb(255, 255, 255);
  margin-top: 10px;
  transition: 0.2s;
}
footer .footerMain .footerCol a:hover {
  transition: 0.2s;
  color: var(--primaryColor);
}





footer .footerMain .footerCol4 {
  flex: 0 0 15%;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1024px) {
  footer .footerMain .footerCol4 {
    flex: 0 0 45%;
    margin-top: 60px;
  }
}
@media (max-width: 480px) {
  footer .footerMain .footerCol4 {
    flex: 100%;
  }
}
footer .footerMain .footerCol4 h3 {
  color: white;
  font-size: 25px;
}
@media (max-width: 1800px) {
  footer .footerMain .footerCol4 h3 {
    font-size: 22px;
  }
}
footer .footerMain .footerCol4 ul {
  width: 100%;
  display: flex;
	flex-wrap: wrap;
  margin-top: 30px;
  gap: 20px;
}
@media (max-width: 1800px) {
  footer .footerMain .footerCol4 ul {
    gap: 15px;
  }
}
footer .footerMain .footerCol4 ul li {
	width :calc(100% / 2 - 10px);
  list-style: none;
}
@media (max-width: 1800px) {
  footer .footerMain .footerCol4 ul li{
	width :calc(100% / 2 - 7.5px);
  }
}
footer .footerMain .footerCol4 ul li a {
  text-decoration: none;
  color: rgb(255, 255, 255);
  font-size: 18px;
  transition: 0.2s;
}
@media (max-width: 1800px) {
  footer .footerMain .footerCol4 ul li a {
    font-size: 18px;
  }
}
footer .footerMain .footerCol4 ul li a:hover {
  transition: 0.2s;
  color: var(--thirdColor);
}
footer .footerMain .footerCol4 span {
  margin-top: 30px;
  font-size: 14px;
  color: rgb(196, 196, 196);
}
footer .footerMain .footerCol4 p {
  font-size: 16px;
  line-height: 1.5;
  color: rgb(255, 255, 255);
  margin-top: 10px;
}
footer .footerMain .footerCol4 a {
  text-decoration: none;
  font-size: 16px;
  line-height: 1.5;
  color: rgb(255, 255, 255);
  margin-top: 10px;
  transition: 0.2s;
}
footer .footerMain .footerCol4 a:hover {
  transition: 0.2s;
  color: var(--thirdColor);
}




footer .footerStrip {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 20px;
}
@media (max-width: 480px) {
  footer .footerStrip {
    justify-content: center;
    gap: 10px;
  }
}
footer .footerStrip p {
  color: white;
  font-size: 16px;
  line-height: 1.4;
}
@media (max-width: 480px) {
  footer .footerStrip p {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
  }
  footer .footerStrip p span {
    display: none;
  }
}
footer .footerStrip p a {
  color: var(--primaryColor);
}
footer .footerStrip p a:hover {
  text-decoration: none;
}
footer .footerStrip .desined {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
footer .footerStrip .desined i {
  color: white;
}
footer .footerStrip .desined .footerStripLogo {
  width: 60px;
}
footer .footerStrip .desined .footerStripLogo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}


/*memberdirectorysearch*/
.memberDirectorySearch {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 0px 20px;
  background: white;
	margin-top: 60px;
}
.canvas .canvasBody .memberDirectorySearch .memberDirectorySearchIcon {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.canvas .canvasBody .memberDirectorySearch .memberDirectorySearchIcon i {
  line-height: 0.5;
  font-size: 20px;
  color: #bbb;
}
.canvas .canvasBody .memberDirectorySearch input {
  width: calc(100% - 85px);
  height: 70px;
  border: none;
  outline: none;
  font-size: 20px;
  padding: 0px 30px 0px 10px;
}
.canvas .canvasBody .memberDirectorySearch input::-moz-placeholder {
  color: #bbb;
}
.canvas .canvasBody .memberDirectorySearch input::placeholder {
  color: #bbb;
}
.canvas .canvasBody .memberDirectorySearch button {
  width: 45px;
  height: 45px;
  border: none;
  outline: none;
  cursor: pointer;
  border-radius: 50%;
  background: var(--primaryColor);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 25px;
  transition: 0.3s;
}
.canvas .canvasBody .memberDirectorySearch button:hover {
  transition: 0.3s;
  transform: translateY(-5px);
  opacity: 0.7;
}
.canvas .canvasBody .memberDirectorySearch button i {
  line-height: 0.5;
}